snm.xml 460 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260067" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60SPRO"
  122. name="60S PRO"
  123. series="60"
  124. latestVersion="0.1"
  125. latestVersionMesh="0.19"
  126. latestVersionVoicePrompt="1.2"
  127. show = "-1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="0" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  268. </productMenu>
  269. <productMenu id="fmradio"
  270. type="1"
  271. url="1" >
  272. </productMenu>
  273. <productMenu id="phone"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="music"
  277. type="1" >
  278. </productMenu>
  279. <productMenu id="musicSharing"
  280. type="0" >
  281. </productMenu>
  282. <productMenu id="deviceSetting"
  283. type="1"
  284. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url=""
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="0"
  303. url=""
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="1" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A1A"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60SEVO"
  321. name="60S EVO"
  322. series="60"
  323. latestVersion="1.0.1"
  324. latestVersionMesh="0.19"
  325. latestVersionVoicePrompt="1.7"
  326. show = "-1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="serialNumber"
  331. type="1" >
  332. </productMenu>
  333. <productMenu id="ota"
  334. type="2" >
  335. <otaLanguages>
  336. <otaLanguage
  337. id="0"
  338. name="English"
  339. package="0"
  340. />
  341. <otaLanguage
  342. id="0"
  343. name="French"
  344. package="1"
  345. />
  346. <otaLanguage
  347. id="0"
  348. name="Spanish"
  349. package="2"
  350. />
  351. <otaLanguage
  352. id="0"
  353. name="Italian"
  354. package="3"
  355. />
  356. <otaLanguage
  357. id="0"
  358. name="German"
  359. package="4"
  360. />
  361. <otaLanguage
  362. id="0"
  363. name="Dutch"
  364. package="5"
  365. />
  366. <otaLanguage
  367. id="0"
  368. name="Russian"
  369. package="6"
  370. />
  371. <otaLanguage
  372. id="0"
  373. name="Chinese"
  374. package="7"
  375. />
  376. <otaLanguage
  377. id="0"
  378. name="Korean"
  379. package="8"
  380. />
  381. <otaLanguage
  382. id="0"
  383. name="Japanese"
  384. package="9"
  385. />
  386. <otaLanguage
  387. id="0"
  388. name="Finnish"
  389. package="10"
  390. />
  391. <otaLanguage
  392. id="0"
  393. name="Polish"
  394. package="11"
  395. />
  396. </otaLanguages>
  397. <otaPackages>
  398. <package
  399. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0.img"
  400. size="5183988"
  401. />
  402. <package
  403. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fr-FR.img"
  404. size="5183988"
  405. />
  406. <package
  407. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-es-ES.img"
  408. size="5183988"
  409. />
  410. <package
  411. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-it-IT.img"
  412. size="5183988"
  413. />
  414. <package
  415. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-de-DE.img"
  416. size="5183988"
  417. />
  418. <package
  419. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-nl-NL.img"
  420. size="5183988"
  421. />
  422. <package
  423. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ru-RU.img"
  424. size="5183988"
  425. />
  426. <package
  427. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-cmn-CN.img"
  428. size="5183988"
  429. />
  430. <package
  431. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ko-KR.img"
  432. size="5183988"
  433. />
  434. <package
  435. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ja-JP.img"
  436. size="5183988"
  437. />
  438. <package
  439. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fi-FI.img"
  440. size="5183988"
  441. />
  442. <package
  443. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-pl-PL.img"
  444. size="5183988"
  445. />
  446. </otaPackages>
  447. </productMenu>
  448. <productMenu id="sip"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="illusion"
  452. type="1" >
  453. </productMenu>
  454. <productMenu id="meshIntercom"
  455. type="30" >
  456. </productMenu>
  457. <productMenu id="meshIntercom+"
  458. type="3"
  459. url="2" >
  460. </productMenu>
  461. <productMenu id="waveIntercom"
  462. type="1" >
  463. </productMenu>
  464. <productMenu id="bluetoothIntercom"
  465. type="1"
  466. url="2" >
  467. </productMenu>
  468. <productMenu id="bluetoothIntercomGrouping"
  469. type="0" >
  470. </productMenu>
  471. <productMenu id="fmradio"
  472. type="1"
  473. url="1" >
  474. </productMenu>
  475. <productMenu id="phone"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="music"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="musicSharing"
  482. type="0" >
  483. </productMenu>
  484. <productMenu id="deviceSetting"
  485. type="1"
  486. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  487. </productMenu>
  488. <productMenu id="quickGuide"
  489. type="0"
  490. url=""
  491. size="1.12MB" >
  492. </productMenu>
  493. <productMenu id="userGuide"
  494. type="1"
  495. url=""
  496. size="2.0MB" >
  497. </productMenu>
  498. <productMenu id="videoGuide"
  499. type="0"
  500. url=""
  501. size="3.41MB" >
  502. </productMenu>
  503. <productMenu id="connectGuide"
  504. type="0"
  505. url=""
  506. size="1.12MB" >
  507. </productMenu>
  508. <productMenu id="volume"
  509. type="16" >
  510. </productMenu>
  511. <productMenu id="soundMode"
  512. type="1" >
  513. </productMenu>
  514. <productMenu id="battery"
  515. type="1" >
  516. </productMenu>
  517. <productID id="6A15"
  518. />
  519. <productGroupable type="0"
  520. />
  521. </product>
  522. <product id="60S"
  523. name="60S"
  524. series="60"
  525. latestVersion="1.2.8"
  526. latestVersionMesh="1.2"
  527. latestVersionVoicePrompt="1.5"
  528. show = "1" >
  529. <productMenu id="protocol"
  530. type="2" >
  531. </productMenu>
  532. <productMenu id="ota"
  533. type="2" >
  534. <otaLanguages>
  535. <otaLanguage
  536. id="0"
  537. name="English"
  538. package="0"
  539. />
  540. <otaLanguage
  541. id="0"
  542. name="French"
  543. package="1"
  544. />
  545. <otaLanguage
  546. id="0"
  547. name="Spanish"
  548. package="2"
  549. />
  550. <otaLanguage
  551. id="0"
  552. name="Italian"
  553. package="3"
  554. />
  555. <otaLanguage
  556. id="0"
  557. name="German"
  558. package="4"
  559. />
  560. <otaLanguage
  561. id="0"
  562. name="Dutch"
  563. package="5"
  564. />
  565. <otaLanguage
  566. id="0"
  567. name="Russian"
  568. package="6"
  569. />
  570. <otaLanguage
  571. id="0"
  572. name="Chinese"
  573. package="7"
  574. />
  575. <otaLanguage
  576. id="0"
  577. name="Korean"
  578. package="8"
  579. />
  580. <otaLanguage
  581. id="0"
  582. name="Japanese"
  583. package="9"
  584. />
  585. <otaLanguage
  586. id="0"
  587. name="Finnish"
  588. package="10"
  589. />
  590. <otaLanguage
  591. id="0"
  592. name="Polish"
  593. package="11"
  594. />
  595. </otaLanguages>
  596. <otaPackages>
  597. <package
  598. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  599. size="5183988"
  600. />
  601. <package
  602. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  603. size="5183988"
  604. />
  605. <package
  606. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  607. size="5183988"
  608. />
  609. <package
  610. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  611. size="5183988"
  612. />
  613. <package
  614. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  615. size="5183988"
  616. />
  617. <package
  618. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  619. size="5183988"
  620. />
  621. <package
  622. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  623. size="5183988"
  624. />
  625. <package
  626. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  643. size="5183988"
  644. />
  645. </otaPackages>
  646. </productMenu>
  647. <productMenu id="sip"
  648. type="1" >
  649. </productMenu>
  650. <productMenu id="illusion"
  651. type="1" >
  652. </productMenu>
  653. <productMenu id="meshIntercom"
  654. type="30" >
  655. </productMenu>
  656. <productMenu id="meshIntercom+"
  657. type="3"
  658. url="2" >
  659. </productMenu>
  660. <productMenu id="waveIntercom"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="bluetoothIntercom"
  664. type="1"
  665. url="2" >
  666. </productMenu>
  667. <productMenu id="bluetoothIntercomGrouping"
  668. type="0" >
  669. </productMenu>
  670. <productMenu id="fmradio"
  671. type="1"
  672. url="1" >
  673. </productMenu>
  674. <productMenu id="phone"
  675. type="1" >
  676. </productMenu>
  677. <productMenu id="music"
  678. type="1" >
  679. </productMenu>
  680. <productMenu id="musicSharing"
  681. type="0" >
  682. </productMenu>
  683. <productMenu id="deviceSetting"
  684. type="1"
  685. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" > <!--NS_60_09-->
  686. <productMenuURL version="1.2.6"
  687. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  688. />
  689. <productMenuURL version="1.2.3"
  690. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  691. />
  692. </productMenu>
  693. <productMenu id="quickGuide"
  694. type="0"
  695. url=""
  696. size="1.12MB" >
  697. </productMenu>
  698. <productMenu id="userGuide"
  699. type="1"
  700. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  701. size="2.0MB" >
  702. </productMenu>
  703. <productMenu id="videoGuide"
  704. type="0"
  705. url=""
  706. size="3.41MB" >
  707. </productMenu>
  708. <productMenu id="connectGuide"
  709. type="1"
  710. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  711. size="1.12MB" >
  712. </productMenu>
  713. <productMenu id="volume"
  714. type="16" >
  715. </productMenu>
  716. <productMenu id="volume+"
  717. type="2"
  718. url="0x6004" >
  719. <productMenuURL version="1.2.3"
  720. url="0x6004"
  721. />
  722. </productMenu>
  723. <productMenu id="soundMode"
  724. type="0" >
  725. </productMenu>
  726. <productMenu id="battery"
  727. type="1" >
  728. </productMenu>
  729. <productID id="6A0D"
  730. />
  731. <productGroupable type="0"
  732. />
  733. </product>
  734. <product id="60S"
  735. name="60S"
  736. series="60"
  737. latestVersion="1.2.8"
  738. latestVersionMesh="1.2"
  739. latestVersionVoicePrompt="1.5"
  740. show = "-1" >
  741. <productMenu id="protocol"
  742. type="2" >
  743. </productMenu>
  744. <productMenu id="ota"
  745. type="2" >
  746. <otaLanguages>
  747. <otaLanguage
  748. id="0"
  749. name="English"
  750. package="0"
  751. />
  752. <otaLanguage
  753. id="0"
  754. name="French"
  755. package="1"
  756. />
  757. <otaLanguage
  758. id="0"
  759. name="Spanish"
  760. package="2"
  761. />
  762. <otaLanguage
  763. id="0"
  764. name="Italian"
  765. package="3"
  766. />
  767. <otaLanguage
  768. id="0"
  769. name="German"
  770. package="4"
  771. />
  772. <otaLanguage
  773. id="0"
  774. name="Dutch"
  775. package="5"
  776. />
  777. <otaLanguage
  778. id="0"
  779. name="Russian"
  780. package="6"
  781. />
  782. <otaLanguage
  783. id="0"
  784. name="Chinese"
  785. package="7"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="Korean"
  790. package="8"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Japanese"
  795. package="9"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Finnish"
  800. package="10"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="Polish"
  805. package="11"
  806. />
  807. </otaLanguages>
  808. <otaPackages>
  809. <package
  810. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  811. size="5183988"
  812. />
  813. <package
  814. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  815. size="5183988"
  816. />
  817. <package
  818. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  819. size="5183988"
  820. />
  821. <package
  822. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  823. size="5183988"
  824. />
  825. <package
  826. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  827. size="5183988"
  828. />
  829. <package
  830. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  831. size="5183988"
  832. />
  833. <package
  834. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  835. size="5183988"
  836. />
  837. <package
  838. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  839. size="5183988"
  840. />
  841. <package
  842. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  843. size="5183988"
  844. />
  845. <package
  846. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  847. size="5183988"
  848. />
  849. <package
  850. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  851. size="5183988"
  852. />
  853. <package
  854. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  855. size="5183988"
  856. />
  857. </otaPackages>
  858. </productMenu>
  859. <productMenu id="wa"
  860. type="0" >
  861. </productMenu>
  862. <productMenu id="sip"
  863. type="1" >
  864. </productMenu>
  865. <productMenu id="led"
  866. type="0" >
  867. </productMenu>
  868. <productMenu id="illusion"
  869. type="1" >
  870. </productMenu>
  871. <productMenu id="meshIntercom"
  872. type="30" >
  873. </productMenu>
  874. <productMenu id="meshIntercom+"
  875. type="3"
  876. url="2" >
  877. <productMenuURL version="1.0.2"
  878. url="10"
  879. />
  880. </productMenu>
  881. <productMenu id="waveIntercom"
  882. type="1" >
  883. <productMenuType version="1.0.9"
  884. type="0"
  885. />
  886. </productMenu>
  887. <productMenu id="bluetoothIntercom"
  888. type="1"
  889. url="2" >
  890. </productMenu>
  891. <productMenu id="bluetoothIntercomGrouping"
  892. type="0" >
  893. </productMenu>
  894. <productMenu id="fmradio"
  895. type="1"
  896. url="1" >
  897. </productMenu>
  898. <productMenu id="phone"
  899. type="1" >
  900. </productMenu>
  901. <productMenu id="music"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="musicSharing"
  905. type="0" >
  906. </productMenu>
  907. <productMenu id="deviceSetting"
  908. type="1"
  909. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" ><!--NS_60_09-->
  910. <productMenuURL version="1.2.6"
  911. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  912. />
  913. <productMenuURL version="1.2.3"
  914. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  915. />
  916. <productMenuURL version="1.0.2"
  917. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  918. />
  919. <productMenuURL version="1.0"
  920. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  921. />
  922. <productMenuURL version="0.9.11"
  923. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  924. />
  925. </productMenu>
  926. <productMenu id="quickGuide"
  927. type="0"
  928. url=""
  929. size="1.12MB" >
  930. </productMenu>
  931. <productMenu id="userGuide"
  932. type="1"
  933. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  934. size="2.0MB" >
  935. </productMenu>
  936. <productMenu id="videoGuide"
  937. type="0"
  938. url=""
  939. size="3.41MB" >
  940. </productMenu>
  941. <productMenu id="connectGuide"
  942. type="1"
  943. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  944. size="1.12MB" >
  945. </productMenu>
  946. <productMenu id="volume"
  947. type="16" >
  948. <productMenuType version="0.9.11"
  949. type="13"
  950. />
  951. </productMenu>
  952. <productMenu id="volume+"
  953. type="2"
  954. url="0x6004" >
  955. <productMenuURL version="1.2.3"
  956. url="0x6004"
  957. />
  958. </productMenu>
  959. <productMenu id="soundMode"
  960. type="0" >
  961. <productMenuType version="0.9.11"
  962. type="0"
  963. />
  964. </productMenu>
  965. <productMenu id="battery"
  966. type="1" >
  967. </productMenu>
  968. <productID id="6A02"
  969. />
  970. <productGroupable type="0"
  971. />
  972. </product>
  973. <product id="60X"
  974. name="60X"
  975. series="60"
  976. latestVersion="0.9.2"
  977. latestVersionMesh="0.19"
  978. latestVersionVoicePrompt="1.5"
  979. show = "-1" >
  980. <productMenu id="protocol"
  981. type="2" >
  982. </productMenu>
  983. <productMenu id="ota"
  984. type="2" >
  985. <otaLanguages>
  986. <otaLanguage
  987. id="0"
  988. name="English"
  989. package="0"
  990. />
  991. <otaLanguage
  992. id="0"
  993. name="French"
  994. package="1"
  995. />
  996. <otaLanguage
  997. id="0"
  998. name="Spanish"
  999. package="2"
  1000. />
  1001. <otaLanguage
  1002. id="0"
  1003. name="Italian"
  1004. package="3"
  1005. />
  1006. <otaLanguage
  1007. id="0"
  1008. name="German"
  1009. package="4"
  1010. />
  1011. <otaLanguage
  1012. id="0"
  1013. name="Dutch"
  1014. package="5"
  1015. />
  1016. <otaLanguage
  1017. id="0"
  1018. name="Russian"
  1019. package="6"
  1020. />
  1021. <otaLanguage
  1022. id="0"
  1023. name="Chinese"
  1024. package="7"
  1025. />
  1026. <otaLanguage
  1027. id="0"
  1028. name="Korean"
  1029. package="8"
  1030. />
  1031. <otaLanguage
  1032. id="0"
  1033. name="Japanese"
  1034. package="9"
  1035. />
  1036. <otaLanguage
  1037. id="0"
  1038. name="Finnish"
  1039. package="10"
  1040. />
  1041. <otaLanguage
  1042. id="0"
  1043. name="Polish"
  1044. package="11"
  1045. />
  1046. </otaLanguages>
  1047. <otaPackages>
  1048. <package
  1049. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1050. size="5183988"
  1051. />
  1052. <package
  1053. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1054. size="5183988"
  1055. />
  1056. <package
  1057. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1058. size="5183988"
  1059. />
  1060. <package
  1061. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1062. size="5183988"
  1063. />
  1064. <package
  1065. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1066. size="5183988"
  1067. />
  1068. <package
  1069. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1070. size="5183988"
  1071. />
  1072. <package
  1073. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1074. size="5183988"
  1075. />
  1076. <package
  1077. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1078. size="5183988"
  1079. />
  1080. <package
  1081. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1082. size="5183988"
  1083. />
  1084. <package
  1085. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1086. size="5183988"
  1087. />
  1088. <package
  1089. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1090. size="5183988"
  1091. />
  1092. <package
  1093. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1094. size="5183988"
  1095. />
  1096. </otaPackages>
  1097. </productMenu>
  1098. <productMenu id="wa"
  1099. type="0" >
  1100. </productMenu>
  1101. <productMenu id="sip"
  1102. type="1" >
  1103. </productMenu>
  1104. <productMenu id="led"
  1105. type="1" >
  1106. </productMenu>
  1107. <productMenu id="illusion"
  1108. type="1" >
  1109. </productMenu>
  1110. <productMenu id="meshIntercom"
  1111. type="30" >
  1112. </productMenu>
  1113. <productMenu id="meshIntercom+"
  1114. type="3"
  1115. url="2" >
  1116. </productMenu>
  1117. <productMenu id="bluetoothIntercom"
  1118. type="1" >
  1119. </productMenu>
  1120. <productMenu id="fmradio"
  1121. type="1"
  1122. url="1" >
  1123. </productMenu>
  1124. <productMenu id="phone"
  1125. type="1" >
  1126. </productMenu>
  1127. <productMenu id="music"
  1128. type="1" >
  1129. </productMenu>
  1130. <productMenu id="musicSharing"
  1131. type="0" >
  1132. </productMenu>
  1133. <productMenu id="deviceSetting"
  1134. type="1"
  1135. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  1136. </productMenu>
  1137. <productMenu id="quickGuide"
  1138. type="0"
  1139. url=""
  1140. size="1.12MB" >
  1141. </productMenu>
  1142. <productMenu id="userGuide"
  1143. type="0"
  1144. url=""
  1145. size="2.0MB" >
  1146. </productMenu>
  1147. <productMenu id="videoGuide"
  1148. type="0"
  1149. url=""
  1150. size="3.41MB" >
  1151. </productMenu>
  1152. <productMenu id="volume"
  1153. type="13" >
  1154. </productMenu>
  1155. <productMenu id="battery"
  1156. type="1" >
  1157. </productMenu>
  1158. <productID id="6A03"
  1159. />
  1160. <productGroupable type="0"
  1161. />
  1162. </product>
  1163. <product id="R35"
  1164. name="R35"
  1165. series="R"
  1166. latestVersion="1.1"
  1167. latestVersionVoicePrompt="1.5"
  1168. show = "-1" >
  1169. <productMenu id="protocol"
  1170. type="2" >
  1171. </productMenu>
  1172. <productMenu id="ota"
  1173. type="2" >
  1174. <otaLanguages>
  1175. <otaLanguage
  1176. id="0"
  1177. name="English"
  1178. package="0"
  1179. />
  1180. <otaLanguage
  1181. id="0"
  1182. name="Chinese"
  1183. package="1"
  1184. />
  1185. <otaLanguage
  1186. id="0"
  1187. name="Chinese Singapore"
  1188. package="2"
  1189. />
  1190. <otaLanguage
  1191. id="0"
  1192. name="Filipino"
  1193. package="3"
  1194. />
  1195. <otaLanguage
  1196. id="0"
  1197. name="Hebrew"
  1198. package="4"
  1199. />
  1200. <otaLanguage
  1201. id="0"
  1202. name="Hindi"
  1203. package="5"
  1204. />
  1205. <otaLanguage
  1206. id="0"
  1207. name="Indonesian"
  1208. package="6"
  1209. />
  1210. <otaLanguage
  1211. id="0"
  1212. name="Japanese"
  1213. package="7"
  1214. />
  1215. <otaLanguage
  1216. id="0"
  1217. name="Korean"
  1218. package="8"
  1219. />
  1220. <otaLanguage
  1221. id="0"
  1222. name="Malay"
  1223. package="9"
  1224. />
  1225. <otaLanguage
  1226. id="0"
  1227. name="Modern Standard Arabic"
  1228. package="10"
  1229. />
  1230. <otaLanguage
  1231. id="0"
  1232. name="Taiwanese"
  1233. package="11"
  1234. />
  1235. <otaLanguage
  1236. id="0"
  1237. name="Tamil"
  1238. package="12"
  1239. />
  1240. <otaLanguage
  1241. id="0"
  1242. name="Thai"
  1243. package="13"
  1244. />
  1245. <otaLanguage
  1246. id="0"
  1247. name="东北话"
  1248. package="14"
  1249. />
  1250. <otaLanguage
  1251. id="0"
  1252. name="广东话"
  1253. package="15"
  1254. />
  1255. <otaLanguage
  1256. id="0"
  1257. name="江浙沪"
  1258. package="16"
  1259. />
  1260. <otaLanguage
  1261. id="0"
  1262. name="四川话"
  1263. package="17"
  1264. />
  1265. <otaLanguage
  1266. id="0"
  1267. name="陕西话"
  1268. package="18"
  1269. />
  1270. </otaLanguages>
  1271. <otaPackages>
  1272. <package
  1273. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1274. size="5183988"
  1275. />
  1276. <package
  1277. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1278. size="5183988"
  1279. />
  1280. <package
  1281. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1282. size="5183988"
  1283. />
  1284. <package
  1285. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1286. size="5183988"
  1287. />
  1288. <package
  1289. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1290. size="5183988"
  1291. />
  1292. <package
  1293. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1294. size="5183988"
  1295. />
  1296. <package
  1297. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1298. size="5183988"
  1299. />
  1300. <package
  1301. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1302. size="5183988"
  1303. />
  1304. <package
  1305. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1306. size="5183988"
  1307. />
  1308. <package
  1309. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1310. size="5183988"
  1311. />
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1346. size="5183988"
  1347. />
  1348. </otaPackages>
  1349. </productMenu>
  1350. <productMenu id="sip"
  1351. type="1" >
  1352. </productMenu>
  1353. <productMenu id="illusion"
  1354. type="1" >
  1355. </productMenu>
  1356. <productMenu id="meshIntercom"
  1357. type="30" >
  1358. </productMenu>
  1359. <productMenu id="meshIntercom+"
  1360. type="3"
  1361. url="2" >
  1362. </productMenu>
  1363. <productMenu id="waveIntercom"
  1364. type="1" >
  1365. </productMenu>
  1366. <productMenu id="phone"
  1367. type="1" >
  1368. </productMenu>
  1369. <productMenu id="music"
  1370. type="1" >
  1371. </productMenu>
  1372. <productMenu id="musicSharing"
  1373. type="0" >
  1374. </productMenu>
  1375. <productMenu id="deviceSetting"
  1376. type="1"
  1377. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" > <!--NS_R35_01-->
  1378. <productMenuURL version="1.0.3"
  1379. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1380. />
  1381. </productMenu>
  1382. <productMenu id="quickGuide"
  1383. type="0"
  1384. url=""
  1385. size="1.12MB" >
  1386. </productMenu>
  1387. <productMenu id="userGuide"
  1388. type="1"
  1389. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1390. size="2.0MB" >
  1391. </productMenu>
  1392. <productMenu id="videoGuide"
  1393. type="0"
  1394. url=""
  1395. size="3.41MB" >
  1396. </productMenu>
  1397. <productMenu id="connectGuide"
  1398. type="0"
  1399. url=""
  1400. size="1.12MB" >
  1401. </productMenu>
  1402. <productMenu id="volume"
  1403. type="16" >
  1404. </productMenu>
  1405. <productMenu id="volume+"
  1406. type="2"
  1407. url="0x6004" >
  1408. </productMenu>
  1409. <productMenu id="soundMode"
  1410. type="0" >
  1411. </productMenu>
  1412. <productMenu id="battery"
  1413. type="1" >
  1414. </productMenu>
  1415. <productID id="6A06"
  1416. />
  1417. <productGroupable type="0"
  1418. />
  1419. </product>
  1420. <product id="COMP1"
  1421. name="BMW COM P1"
  1422. series="60"
  1423. latestVersion="1.0.6"
  1424. latestVersionMesh="0.19"
  1425. latestVersionVoicePrompt="1.0"
  1426. show = "-1" >
  1427. <productMenu id="protocol"
  1428. type="2" >
  1429. </productMenu>
  1430. <productMenu id="ota"
  1431. type="2" >
  1432. <otaLanguages>
  1433. <otaLanguage
  1434. id="0"
  1435. name="English"
  1436. package="0"
  1437. />
  1438. <otaLanguage
  1439. id="0"
  1440. name="French"
  1441. package="1"
  1442. />
  1443. <otaLanguage
  1444. id="0"
  1445. name="Spanish"
  1446. package="2"
  1447. />
  1448. <otaLanguage
  1449. id="0"
  1450. name="Italian"
  1451. package="3"
  1452. />
  1453. <otaLanguage
  1454. id="0"
  1455. name="German"
  1456. package="4"
  1457. />
  1458. <otaLanguage
  1459. id="0"
  1460. name="Dutch"
  1461. package="5"
  1462. />
  1463. <otaLanguage
  1464. id="0"
  1465. name="Russian"
  1466. package="6"
  1467. />
  1468. <otaLanguage
  1469. id="0"
  1470. name="Chinese"
  1471. package="7"
  1472. />
  1473. <otaLanguage
  1474. id="0"
  1475. name="Korean"
  1476. package="8"
  1477. />
  1478. <otaLanguage
  1479. id="0"
  1480. name="Japanese"
  1481. package="9"
  1482. />
  1483. <otaLanguage
  1484. id="0"
  1485. name="Finnish"
  1486. package="10"
  1487. />
  1488. </otaLanguages>
  1489. <otaPackages>
  1490. <package
  1491. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1492. size="5183988"
  1493. />
  1494. <package
  1495. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1496. size="5183988"
  1497. />
  1498. <package
  1499. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1500. size="5183988"
  1501. />
  1502. <package
  1503. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1504. size="5183988"
  1505. />
  1506. <package
  1507. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1508. size="5183988"
  1509. />
  1510. <package
  1511. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1512. size="5183988"
  1513. />
  1514. <package
  1515. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1516. size="5183988"
  1517. />
  1518. <package
  1519. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1520. size="5183988"
  1521. />
  1522. <package
  1523. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1524. size="5183988"
  1525. />
  1526. <package
  1527. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1528. size="5183988"
  1529. />
  1530. <package
  1531. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1532. size="5183988"
  1533. />
  1534. </otaPackages>
  1535. </productMenu>
  1536. <productMenu id="wa"
  1537. type="0" >
  1538. </productMenu>
  1539. <productMenu id="sip"
  1540. type="1" >
  1541. </productMenu>
  1542. <productMenu id="led"
  1543. type="0" >
  1544. </productMenu>
  1545. <productMenu id="illusion"
  1546. type="0" >
  1547. </productMenu>
  1548. <productMenu id="meshIntercom"
  1549. type="30" >
  1550. </productMenu>
  1551. <productMenu id="bluetoothIntercom"
  1552. type="1" >
  1553. </productMenu>
  1554. <productMenu id="bluetoothIntercomGrouping"
  1555. type="0" >
  1556. </productMenu>
  1557. <productMenu id="fmradio"
  1558. type="0" >
  1559. </productMenu>
  1560. <productMenu id="phone"
  1561. type="1" >
  1562. </productMenu>
  1563. <productMenu id="music"
  1564. type="1" >
  1565. </productMenu>
  1566. <productMenu id="musicSharing"
  1567. type="0" >
  1568. </productMenu>
  1569. <productMenu id="deviceSetting"
  1570. type="1"
  1571. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1572. </productMenu>
  1573. <productMenu id="quickGuide"
  1574. type="0"
  1575. url=""
  1576. size="1.12MB" >
  1577. </productMenu>
  1578. <productMenu id="userGuide"
  1579. type="0"
  1580. url=""
  1581. size="2.0MB" >
  1582. </productMenu>
  1583. <productMenu id="videoGuide"
  1584. type="0"
  1585. url=""
  1586. size="3.41MB" >
  1587. </productMenu>
  1588. <productMenu id="volume"
  1589. type="16" >
  1590. </productMenu>
  1591. <productMenu id="battery"
  1592. type="1" >
  1593. </productMenu>
  1594. <productID id="6A80"
  1595. />
  1596. <productGroupable type="0"
  1597. />
  1598. </product>
  1599. <product id="50S"
  1600. name="50S"
  1601. series="50"
  1602. latestVersion="2.7.2"
  1603. show = "1" >
  1604. <productMenu id="protocol"
  1605. type="2" >
  1606. </productMenu>
  1607. <productMenu id="alexa"
  1608. type="0" >
  1609. </productMenu>
  1610. <productMenu id="ota"
  1611. type="0"
  1612. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1613. size="1150234" >
  1614. </productMenu>
  1615. <productMenu id="wa"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="sip"
  1619. type="1" >
  1620. </productMenu>
  1621. <productMenu id="meshIntercom"
  1622. type="30" >
  1623. <productMenuType version="2.1.1"
  1624. type="20"
  1625. />
  1626. </productMenu>
  1627. <productMenu id="meshIntercom+"
  1628. type="3"
  1629. url="2" >
  1630. <productMenuType version="2.5.9"
  1631. type="2"
  1632. />
  1633. <productMenuURL version="2.1.1"
  1634. url="0"
  1635. />
  1636. </productMenu>
  1637. <productMenu id="waveIntercom"
  1638. type="1" >
  1639. <productMenuType version="2.6"
  1640. type="0"
  1641. />
  1642. </productMenu>
  1643. <productMenu id="bluetoothIntercom"
  1644. type="1" >
  1645. </productMenu>
  1646. <productMenu id="phone"
  1647. type="1" >
  1648. </productMenu>
  1649. <productMenu id="music"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="fmradio"
  1653. type="1" >
  1654. </productMenu>
  1655. <productMenu id="deviceSetting"
  1656. type="1"
  1657. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1658. <productMenuURL version="2.5.9"
  1659. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1660. />
  1661. <productMenuURL version="2.1.1"
  1662. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1663. />
  1664. <productMenuURL version="2.0.3"
  1665. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1666. />
  1667. </productMenu>
  1668. <productMenu id="quickGuide"
  1669. type="0"
  1670. url=""
  1671. size="934KB" >
  1672. </productMenu>
  1673. <productMenu id="userGuide"
  1674. type="1"
  1675. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1676. size="1.14MB" >
  1677. </productMenu>
  1678. <productMenu id="videoGuide"
  1679. type="1"
  1680. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1681. size="3.41MB" >
  1682. </productMenu>
  1683. <productMenu id="connectGuide"
  1684. type="1"
  1685. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1686. size="1.12MB" >
  1687. </productMenu>
  1688. <productMenu id="volume"
  1689. type="11" >
  1690. </productMenu>
  1691. <productMenu id="battery"
  1692. type="1" >
  1693. </productMenu>
  1694. <productID id="3210"
  1695. />
  1696. <productGroupable type="0"
  1697. />
  1698. </product>
  1699. <product id="50S"
  1700. name="50S"
  1701. series="50"
  1702. latestVersion="1.5.1"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="alexa"
  1708. type="0" >
  1709. </productMenu>
  1710. <productMenu id="wa"
  1711. type="1" >
  1712. </productMenu>
  1713. <productMenu id="sip"
  1714. type="1" >
  1715. </productMenu>
  1716. <productMenu id="meshIntercom"
  1717. type="30" >
  1718. <productMenuType version="1.2.2"
  1719. type="20"
  1720. />
  1721. </productMenu>
  1722. <productMenu id="meshIntercom+"
  1723. type="3"
  1724. url="2" >
  1725. <productMenuType version="1.4.9"
  1726. type="2"
  1727. />
  1728. <productMenuURL version="1.2.2"
  1729. url="0"
  1730. />
  1731. </productMenu>
  1732. <productMenu id="waveIntercom"
  1733. type="1" >
  1734. <productMenuType version="1.3.9"
  1735. type="0"
  1736. />
  1737. </productMenu>
  1738. <productMenu id="bluetoothIntercom"
  1739. type="1" >
  1740. </productMenu>
  1741. <productMenu id="phone"
  1742. type="1" >
  1743. </productMenu>
  1744. <productMenu id="music"
  1745. type="1" >
  1746. </productMenu>
  1747. <productMenu id="fmradio"
  1748. type="1" >
  1749. </productMenu>
  1750. <productMenu id="deviceSetting"
  1751. type="1"
  1752. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1753. <productMenuURL version="1.4.9"
  1754. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1755. />
  1756. <productMenuURL version="1.3.9"
  1757. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1758. />
  1759. <productMenuURL version="1.2.2"
  1760. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1761. />
  1762. <productMenuURL version="1.1.1"
  1763. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1764. />
  1765. </productMenu>
  1766. <productMenu id="quickGuide"
  1767. type="0"
  1768. url=""
  1769. size="934KB" >
  1770. </productMenu>
  1771. <productMenu id="userGuide"
  1772. type="1"
  1773. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1774. size="1.14MB" >
  1775. </productMenu>
  1776. <productMenu id="videoGuide"
  1777. type="1"
  1778. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1779. size="3.41MB" >
  1780. </productMenu>
  1781. <productMenu id="volume"
  1782. type="11" >
  1783. </productMenu>
  1784. <productMenu id="battery"
  1785. type="1" >
  1786. </productMenu>
  1787. <productID id="3132"
  1788. />
  1789. <productGroupable type="0"
  1790. />
  1791. </product>
  1792. <product id="50R"
  1793. name="50R"
  1794. series="50"
  1795. latestVersion="2.7.1"
  1796. show = "1" >
  1797. <productMenu id="protocol"
  1798. type="2" >
  1799. </productMenu>
  1800. <productMenu id="alexa"
  1801. type="0" >
  1802. </productMenu>
  1803. <productMenu id="ota"
  1804. type="0"
  1805. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1806. size="1150234" >
  1807. </productMenu>
  1808. <productMenu id="wa"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="sip"
  1812. type="1" >
  1813. </productMenu>
  1814. <productMenu id="meshIntercom"
  1815. type="30" >
  1816. <productMenuType version="2.1.1"
  1817. type="20"
  1818. />
  1819. </productMenu>
  1820. <productMenu id="meshIntercom+"
  1821. type="3"
  1822. url="2" >
  1823. <productMenuType version="2.5.9"
  1824. type="2"
  1825. />
  1826. <productMenuURL version="2.1.1"
  1827. url="0"
  1828. />
  1829. </productMenu>
  1830. <productMenu id="waveIntercom"
  1831. type="1" >
  1832. <productMenuType version="2.6"
  1833. type="0"
  1834. />
  1835. </productMenu>
  1836. <productMenu id="bluetoothIntercom"
  1837. type="1" >
  1838. </productMenu>
  1839. <productMenu id="phone"
  1840. type="1" >
  1841. </productMenu>
  1842. <productMenu id="music"
  1843. type="1" >
  1844. </productMenu>
  1845. <productMenu id="fmradio"
  1846. type="1" >
  1847. </productMenu>
  1848. <productMenu id="deviceSetting"
  1849. type="1"
  1850. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1851. <productMenuURL version="2.5.9"
  1852. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1853. />
  1854. <productMenuURL version="2.1.1"
  1855. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1856. />
  1857. <productMenuURL version="2.0"
  1858. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1859. />
  1860. </productMenu>
  1861. <productMenu id="quickGuide"
  1862. type="0"
  1863. url=""
  1864. size="344KB" >
  1865. </productMenu>
  1866. <productMenu id="userGuide"
  1867. type="1"
  1868. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1869. size="3.41MB" >
  1870. </productMenu>
  1871. <productMenu id="videoGuide"
  1872. type="1"
  1873. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1874. size="3.41MB" >
  1875. </productMenu>
  1876. <productMenu id="connectGuide"
  1877. type="1"
  1878. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1879. size="1.12MB" >
  1880. </productMenu>
  1881. <productMenu id="volume"
  1882. type="11" >
  1883. </productMenu>
  1884. <productMenu id="battery"
  1885. type="1" >
  1886. </productMenu>
  1887. <productID id="3218"
  1888. />
  1889. <productGroupable type="0"
  1890. />
  1891. </product>
  1892. <product id="50R"
  1893. name="50R"
  1894. series="50"
  1895. latestVersion="1.5.1"
  1896. show = "-1" >
  1897. <productMenu id="protocol"
  1898. type="2" >
  1899. </productMenu>
  1900. <productMenu id="alexa"
  1901. type="0" >
  1902. </productMenu>
  1903. <productMenu id="wa"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="sip"
  1907. type="1" >
  1908. </productMenu>
  1909. <productMenu id="meshIntercom"
  1910. type="30" >
  1911. <productMenuType version="1.2.2"
  1912. type="20"
  1913. />
  1914. </productMenu>
  1915. <productMenu id="meshIntercom+"
  1916. type="3"
  1917. url="2" >
  1918. <productMenuType version="1.4.9"
  1919. type="2"
  1920. />
  1921. <productMenuURL version="1.2.2"
  1922. url="0"
  1923. />
  1924. </productMenu>
  1925. <productMenu id="waveIntercom"
  1926. type="1" >
  1927. <productMenuType version="1.3.9"
  1928. type="0"
  1929. />
  1930. </productMenu>
  1931. <productMenu id="bluetoothIntercom"
  1932. type="1" >
  1933. </productMenu>
  1934. <productMenu id="phone"
  1935. type="1" >
  1936. </productMenu>
  1937. <productMenu id="music"
  1938. type="1" >
  1939. </productMenu>
  1940. <productMenu id="fmradio"
  1941. type="1" >
  1942. </productMenu>
  1943. <productMenu id="deviceSetting"
  1944. type="1"
  1945. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1946. <productMenuURL version="1.4.9"
  1947. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1948. />
  1949. <productMenuURL version="1.3.9"
  1950. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1951. />
  1952. <productMenuURL version="1.2.2"
  1953. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1954. />
  1955. <productMenuURL version="1.1.1"
  1956. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1957. />
  1958. </productMenu>
  1959. <productMenu id="quickGuide"
  1960. type="0"
  1961. url=""
  1962. size="344KB" >
  1963. </productMenu>
  1964. <productMenu id="userGuide"
  1965. type="1"
  1966. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1967. size="3.41MB" >
  1968. </productMenu>
  1969. <productMenu id="videoGuide"
  1970. type="1"
  1971. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1972. size="3.41MB" >
  1973. </productMenu>
  1974. <productMenu id="volume"
  1975. type="11" >
  1976. </productMenu>
  1977. <productMenu id="battery"
  1978. type="1" >
  1979. </productMenu>
  1980. <productID id="3134"
  1981. />
  1982. <productGroupable type="0"
  1983. />
  1984. </product>
  1985. <product id="50C"
  1986. name="50C"
  1987. series="50"
  1988. latestVersion="1.4.3"
  1989. show = "1" >
  1990. <productMenu id="protocol"
  1991. type="2" >
  1992. </productMenu>
  1993. <productMenu id="ota"
  1994. type="0" >
  1995. </productMenu>
  1996. <productMenu id="wa"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="sip"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="meshIntercom"
  2003. type="30" >
  2004. <productMenuType version="1.1.1"
  2005. type="20"
  2006. />
  2007. </productMenu>
  2008. <productMenu id="meshIntercom+"
  2009. type="3"
  2010. url="2" >
  2011. <productMenuType version="1.3.9"
  2012. type="2"
  2013. />
  2014. <productMenuURL version="1.1.1"
  2015. url="0"
  2016. />
  2017. </productMenu>
  2018. <productMenu id="waveIntercom"
  2019. type="1" >
  2020. <productMenuType version="1.2.9"
  2021. type="0"
  2022. />
  2023. </productMenu>
  2024. <productMenu id="bluetoothIntercom"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="phone"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="music"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="fmradio"
  2034. type="1" >
  2035. </productMenu>
  2036. <productMenu id="deviceSetting"
  2037. type="1"
  2038. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2039. <productMenuURL version="1.3.9"
  2040. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2041. />
  2042. <productMenuURL version="1.1.1"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2044. />
  2045. <productMenuURL version="1.0.1"
  2046. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2047. />
  2048. </productMenu>
  2049. <productMenu id="quickGuide"
  2050. type="0"
  2051. url=""
  2052. size="344KB" >
  2053. </productMenu>
  2054. <productMenu id="userGuide"
  2055. type="1"
  2056. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2057. size="3.41MB" >
  2058. </productMenu>
  2059. <productMenu id="connectGuide"
  2060. type="1"
  2061. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2062. size="1.12MB" >
  2063. </productMenu>
  2064. <productMenu id="volume"
  2065. type="11" >
  2066. </productMenu>
  2067. <productMenu id="battery"
  2068. type="1" >
  2069. </productMenu>
  2070. <productID id="3232"
  2071. />
  2072. <productGroupable type="0"
  2073. />
  2074. </product>
  2075. <product id="PHANTOMXB"
  2076. name="PHANTOM XB"
  2077. series="Helmet"
  2078. latestVersion="1.2.7"
  2079. latestVersionVoicePrompt="1.5"
  2080. show = "-1" >
  2081. <productMenu id="protocol"
  2082. type="2" >
  2083. </productMenu>
  2084. <productMenu id="ota"
  2085. type="2" >
  2086. <otaLanguages>
  2087. <otaLanguage
  2088. id="0"
  2089. name="English"
  2090. package="0"
  2091. />
  2092. <otaLanguage
  2093. id="0"
  2094. name="French"
  2095. package="1"
  2096. />
  2097. <otaLanguage
  2098. id="0"
  2099. name="Spanish"
  2100. package="2"
  2101. />
  2102. <otaLanguage
  2103. id="0"
  2104. name="Italian"
  2105. package="3"
  2106. />
  2107. <otaLanguage
  2108. id="0"
  2109. name="German"
  2110. package="4"
  2111. />
  2112. <otaLanguage
  2113. id="0"
  2114. name="Dutch"
  2115. package="5"
  2116. />
  2117. <otaLanguage
  2118. id="0"
  2119. name="Russian"
  2120. package="6"
  2121. />
  2122. <otaLanguage
  2123. id="0"
  2124. name="Chinese"
  2125. package="7"
  2126. />
  2127. <otaLanguage
  2128. id="0"
  2129. name="Korean"
  2130. package="8"
  2131. />
  2132. <otaLanguage
  2133. id="0"
  2134. name="Japanese"
  2135. package="9"
  2136. />
  2137. <otaLanguage
  2138. id="0"
  2139. name="Finnish"
  2140. package="10"
  2141. />
  2142. <otaLanguage
  2143. id="0"
  2144. name="Polish"
  2145. package="11"
  2146. />
  2147. </otaLanguages>
  2148. <otaPackages>
  2149. <package
  2150. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2151. size="5183988"
  2152. />
  2153. <package
  2154. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2155. size="5183988"
  2156. />
  2157. <package
  2158. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2159. size="5183988"
  2160. />
  2161. <package
  2162. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2163. size="5183988"
  2164. />
  2165. <package
  2166. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2167. size="5183988"
  2168. />
  2169. <package
  2170. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2171. size="5183988"
  2172. />
  2173. <package
  2174. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2175. size="5183988"
  2176. />
  2177. <package
  2178. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2179. size="5183988"
  2180. />
  2181. <package
  2182. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2183. size="5183988"
  2184. />
  2185. <package
  2186. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2187. size="5183988"
  2188. />
  2189. <package
  2190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2191. size="5183988"
  2192. />
  2193. <package
  2194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2195. size="5183988"
  2196. />
  2197. </otaPackages>
  2198. </productMenu>
  2199. <productMenu id="wa"
  2200. type="0" >
  2201. </productMenu>
  2202. <productMenu id="led"
  2203. type="5" >
  2204. </productMenu>
  2205. <productMenu id="led+"
  2206. type="2"
  2207. url="1" >
  2208. </productMenu>
  2209. <productMenu id="meshIntercom"
  2210. type="30" >
  2211. </productMenu>
  2212. <productMenu id="meshIntercom+"
  2213. type="3"
  2214. url="2" >
  2215. </productMenu>
  2216. <productMenu id="waveIntercom"
  2217. type="1" >
  2218. </productMenu>
  2219. <productMenu id="fmradio"
  2220. type="0" >
  2221. </productMenu>
  2222. <productMenu id="phone"
  2223. type="1" >
  2224. </productMenu>
  2225. <productMenu id="music"
  2226. type="1" >
  2227. </productMenu>
  2228. <productMenu id="musicSharing"
  2229. type="0" >
  2230. </productMenu>
  2231. <productMenu id="deviceSetting"
  2232. type="1"
  2233. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2234. <productMenuURL version="1.2.4"
  2235. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2236. />
  2237. </productMenu>
  2238. <productMenu id="quickGuide"
  2239. type="0"
  2240. url=""
  2241. size="1.12MB" >
  2242. </productMenu>
  2243. <productMenu id="userGuide"
  2244. type="1"
  2245. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2246. size="2.0MB" >
  2247. </productMenu>
  2248. <productMenu id="videoGuide"
  2249. type="0"
  2250. url=""
  2251. size="3.41MB" >
  2252. </productMenu>
  2253. <productMenu id="volume"
  2254. type="16" >
  2255. </productMenu>
  2256. <productMenu id="volume+"
  2257. type="2"
  2258. url="0x6004" >
  2259. </productMenu>
  2260. <productMenu id="battery"
  2261. type="1" >
  2262. </productMenu>
  2263. <productID id="6A0F"
  2264. />
  2265. <productGroupable type="0"
  2266. />
  2267. </product>
  2268. <product id="PHANTOMXB"
  2269. name="PHANTOM XB"
  2270. series="Helmet"
  2271. latestVersion="1.2.7"
  2272. latestVersionVoicePrompt="1.5"
  2273. show = "-1" >
  2274. <productMenu id="protocol"
  2275. type="2" >
  2276. </productMenu>
  2277. <productMenu id="ota"
  2278. type="2" >
  2279. <otaLanguages>
  2280. <otaLanguage
  2281. id="0"
  2282. name="English"
  2283. package="0"
  2284. />
  2285. <otaLanguage
  2286. id="0"
  2287. name="French"
  2288. package="1"
  2289. />
  2290. <otaLanguage
  2291. id="0"
  2292. name="Spanish"
  2293. package="2"
  2294. />
  2295. <otaLanguage
  2296. id="0"
  2297. name="Italian"
  2298. package="3"
  2299. />
  2300. <otaLanguage
  2301. id="0"
  2302. name="German"
  2303. package="4"
  2304. />
  2305. <otaLanguage
  2306. id="0"
  2307. name="Dutch"
  2308. package="5"
  2309. />
  2310. <otaLanguage
  2311. id="0"
  2312. name="Russian"
  2313. package="6"
  2314. />
  2315. <otaLanguage
  2316. id="0"
  2317. name="Chinese"
  2318. package="7"
  2319. />
  2320. <otaLanguage
  2321. id="0"
  2322. name="Korean"
  2323. package="8"
  2324. />
  2325. <otaLanguage
  2326. id="0"
  2327. name="Japanese"
  2328. package="9"
  2329. />
  2330. <otaLanguage
  2331. id="0"
  2332. name="Finnish"
  2333. package="10"
  2334. />
  2335. <otaLanguage
  2336. id="0"
  2337. name="Polish"
  2338. package="11"
  2339. />
  2340. </otaLanguages>
  2341. <otaPackages>
  2342. <package
  2343. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2344. size="5183988"
  2345. />
  2346. <package
  2347. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2348. size="5183988"
  2349. />
  2350. <package
  2351. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2352. size="5183988"
  2353. />
  2354. <package
  2355. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2356. size="5183988"
  2357. />
  2358. <package
  2359. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2360. size="5183988"
  2361. />
  2362. <package
  2363. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2364. size="5183988"
  2365. />
  2366. <package
  2367. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2368. size="5183988"
  2369. />
  2370. <package
  2371. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2372. size="5183988"
  2373. />
  2374. <package
  2375. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2376. size="5183988"
  2377. />
  2378. <package
  2379. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2380. size="5183988"
  2381. />
  2382. <package
  2383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2384. size="5183988"
  2385. />
  2386. <package
  2387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2388. size="5183988"
  2389. />
  2390. </otaPackages>
  2391. </productMenu>
  2392. <productMenu id="wa"
  2393. type="0" >
  2394. </productMenu>
  2395. <productMenu id="led"
  2396. type="5" >
  2397. </productMenu>
  2398. <productMenu id="led+"
  2399. type="2"
  2400. url="1" >
  2401. </productMenu>
  2402. <productMenu id="meshIntercom"
  2403. type="30" >
  2404. </productMenu>
  2405. <productMenu id="meshIntercom+"
  2406. type="3"
  2407. url="2" >
  2408. </productMenu>
  2409. <productMenu id="waveIntercom"
  2410. type="1" >
  2411. </productMenu>
  2412. <productMenu id="fmradio"
  2413. type="0" >
  2414. </productMenu>
  2415. <productMenu id="phone"
  2416. type="1" >
  2417. </productMenu>
  2418. <productMenu id="music"
  2419. type="1" >
  2420. </productMenu>
  2421. <productMenu id="musicSharing"
  2422. type="0" >
  2423. </productMenu>
  2424. <productMenu id="deviceSetting"
  2425. type="1"
  2426. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2427. <productMenuURL version="1.2.4"
  2428. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2429. />
  2430. <productMenuURL version="1.2.1"
  2431. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2432. />
  2433. </productMenu>
  2434. <productMenu id="quickGuide"
  2435. type="0"
  2436. url=""
  2437. size="1.12MB" >
  2438. </productMenu>
  2439. <productMenu id="userGuide"
  2440. type="1"
  2441. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2442. size="2.0MB" >
  2443. </productMenu>
  2444. <productMenu id="videoGuide"
  2445. type="0"
  2446. url=""
  2447. size="3.41MB" >
  2448. </productMenu>
  2449. <productMenu id="volume"
  2450. type="16" >
  2451. </productMenu>
  2452. <productMenu id="volume+"
  2453. type="2"
  2454. url="0x6004" >
  2455. </productMenu>
  2456. <productMenu id="battery"
  2457. type="1" >
  2458. </productMenu>
  2459. <productID id="6A0C"
  2460. />
  2461. <productGroupable type="0"
  2462. />
  2463. </product>
  2464. <product id="PHANTOMKV"
  2465. name="PHANTOM KV"
  2466. series="Helmet"
  2467. latestVersion="1.2.2"
  2468. latestVersionVoicePrompt="1.0"
  2469. show = "-1" >
  2470. <productMenu id="protocol"
  2471. type="2" >
  2472. </productMenu>
  2473. <productMenu id="ota"
  2474. type="0" >
  2475. <otaLanguages>
  2476. <otaLanguage
  2477. id="0"
  2478. name="English"
  2479. package="0"
  2480. />
  2481. <otaLanguage
  2482. id="0"
  2483. name="French"
  2484. package="1"
  2485. />
  2486. <otaLanguage
  2487. id="0"
  2488. name="Spanish"
  2489. package="2"
  2490. />
  2491. <otaLanguage
  2492. id="0"
  2493. name="Italian"
  2494. package="3"
  2495. />
  2496. <otaLanguage
  2497. id="0"
  2498. name="German"
  2499. package="4"
  2500. />
  2501. <otaLanguage
  2502. id="0"
  2503. name="Dutch"
  2504. package="5"
  2505. />
  2506. <otaLanguage
  2507. id="0"
  2508. name="Russian"
  2509. package="6"
  2510. />
  2511. <otaLanguage
  2512. id="0"
  2513. name="Chinese"
  2514. package="7"
  2515. />
  2516. <otaLanguage
  2517. id="0"
  2518. name="Korean"
  2519. package="8"
  2520. />
  2521. <otaLanguage
  2522. id="0"
  2523. name="Japanese"
  2524. package="9"
  2525. />
  2526. <otaLanguage
  2527. id="0"
  2528. name="Finnish"
  2529. package="10"
  2530. />
  2531. <otaLanguage
  2532. id="0"
  2533. name="Polish"
  2534. package="11"
  2535. />
  2536. </otaLanguages>
  2537. <otaPackages>
  2538. <package
  2539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2540. size="5183988"
  2541. />
  2542. <package
  2543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2544. size="5183988"
  2545. />
  2546. <package
  2547. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2548. size="5183988"
  2549. />
  2550. <package
  2551. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2552. size="5183988"
  2553. />
  2554. <package
  2555. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2556. size="5183988"
  2557. />
  2558. <package
  2559. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2560. size="5183988"
  2561. />
  2562. <package
  2563. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2564. size="5183988"
  2565. />
  2566. <package
  2567. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2568. size="5183988"
  2569. />
  2570. <package
  2571. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2572. size="5183988"
  2573. />
  2574. <package
  2575. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2576. size="5183988"
  2577. />
  2578. <package
  2579. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2580. size="5183988"
  2581. />
  2582. <package
  2583. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2584. size="5183988"
  2585. />
  2586. </otaPackages>
  2587. </productMenu>
  2588. <productMenu id="wa"
  2589. type="0" >
  2590. </productMenu>
  2591. <productMenu id="led"
  2592. type="5" >
  2593. </productMenu>
  2594. <productMenu id="led+"
  2595. type="2"
  2596. url="1" >
  2597. </productMenu>
  2598. <productMenu id="meshIntercom"
  2599. type="30" >
  2600. </productMenu>
  2601. <productMenu id="meshIntercom+"
  2602. type="3"
  2603. url="2" >
  2604. </productMenu>
  2605. <productMenu id="waveIntercom"
  2606. type="1" >
  2607. </productMenu>
  2608. <productMenu id="fmradio"
  2609. type="0" >
  2610. </productMenu>
  2611. <productMenu id="phone"
  2612. type="1" >
  2613. </productMenu>
  2614. <productMenu id="music"
  2615. type="1" >
  2616. </productMenu>
  2617. <productMenu id="musicSharing"
  2618. type="0" >
  2619. </productMenu>
  2620. <productMenu id="deviceSetting"
  2621. type="1"
  2622. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2623. <productMenuURL version="1.2.4"
  2624. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2625. />
  2626. </productMenu>
  2627. <productMenu id="quickGuide"
  2628. type="0"
  2629. url=""
  2630. size="1.12MB" >
  2631. </productMenu>
  2632. <productMenu id="userGuide"
  2633. type="1"
  2634. url=""
  2635. size="2.0MB" >
  2636. </productMenu>
  2637. <productMenu id="videoGuide"
  2638. type="0"
  2639. url=""
  2640. size="3.41MB" >
  2641. </productMenu>
  2642. <productMenu id="volume"
  2643. type="16" >
  2644. </productMenu>
  2645. <productMenu id="volume+"
  2646. type="2"
  2647. url="0x6004" >
  2648. </productMenu>
  2649. <productMenu id="battery"
  2650. type="1" >
  2651. </productMenu>
  2652. <productID id="6A14"
  2653. />
  2654. <productGroupable type="0"
  2655. />
  2656. </product>
  2657. <product id="PHANTOMKV"
  2658. name="PHANTOM KV"
  2659. series="Helmet"
  2660. latestVersion="1.2.2"
  2661. latestVersionVoicePrompt="1.0"
  2662. show = "-1" >
  2663. <productMenu id="protocol"
  2664. type="2" >
  2665. </productMenu>
  2666. <productMenu id="ota"
  2667. type="0" >
  2668. <otaLanguages>
  2669. <otaLanguage
  2670. id="0"
  2671. name="English"
  2672. package="0"
  2673. />
  2674. <otaLanguage
  2675. id="0"
  2676. name="French"
  2677. package="1"
  2678. />
  2679. <otaLanguage
  2680. id="0"
  2681. name="Spanish"
  2682. package="2"
  2683. />
  2684. <otaLanguage
  2685. id="0"
  2686. name="Italian"
  2687. package="3"
  2688. />
  2689. <otaLanguage
  2690. id="0"
  2691. name="German"
  2692. package="4"
  2693. />
  2694. <otaLanguage
  2695. id="0"
  2696. name="Dutch"
  2697. package="5"
  2698. />
  2699. <otaLanguage
  2700. id="0"
  2701. name="Russian"
  2702. package="6"
  2703. />
  2704. <otaLanguage
  2705. id="0"
  2706. name="Chinese"
  2707. package="7"
  2708. />
  2709. <otaLanguage
  2710. id="0"
  2711. name="Korean"
  2712. package="8"
  2713. />
  2714. <otaLanguage
  2715. id="0"
  2716. name="Japanese"
  2717. package="9"
  2718. />
  2719. <otaLanguage
  2720. id="0"
  2721. name="Finnish"
  2722. package="10"
  2723. />
  2724. <otaLanguage
  2725. id="0"
  2726. name="Polish"
  2727. package="11"
  2728. />
  2729. </otaLanguages>
  2730. <otaPackages>
  2731. <package
  2732. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2733. size="5183988"
  2734. />
  2735. <package
  2736. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2737. size="5183988"
  2738. />
  2739. <package
  2740. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2741. size="5183988"
  2742. />
  2743. <package
  2744. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2745. size="5183988"
  2746. />
  2747. <package
  2748. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2749. size="5183988"
  2750. />
  2751. <package
  2752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2753. size="5183988"
  2754. />
  2755. <package
  2756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2757. size="5183988"
  2758. />
  2759. <package
  2760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2761. size="5183988"
  2762. />
  2763. <package
  2764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2765. size="5183988"
  2766. />
  2767. <package
  2768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2769. size="5183988"
  2770. />
  2771. <package
  2772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2773. size="5183988"
  2774. />
  2775. <package
  2776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2777. size="5183988"
  2778. />
  2779. </otaPackages>
  2780. </productMenu>
  2781. <productMenu id="wa"
  2782. type="0" >
  2783. </productMenu>
  2784. <productMenu id="led"
  2785. type="5" >
  2786. </productMenu>
  2787. <productMenu id="led+"
  2788. type="2"
  2789. url="1" >
  2790. </productMenu>
  2791. <productMenu id="meshIntercom"
  2792. type="30" >
  2793. </productMenu>
  2794. <productMenu id="meshIntercom+"
  2795. type="3"
  2796. url="2" >
  2797. </productMenu>
  2798. <productMenu id="waveIntercom"
  2799. type="1" >
  2800. </productMenu>
  2801. <productMenu id="fmradio"
  2802. type="0" >
  2803. </productMenu>
  2804. <productMenu id="phone"
  2805. type="1" >
  2806. </productMenu>
  2807. <productMenu id="music"
  2808. type="1" >
  2809. </productMenu>
  2810. <productMenu id="musicSharing"
  2811. type="0" >
  2812. </productMenu>
  2813. <productMenu id="deviceSetting"
  2814. type="1"
  2815. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2816. <productMenuURL version="1.2.4"
  2817. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2818. />
  2819. </productMenu>
  2820. <productMenu id="quickGuide"
  2821. type="0"
  2822. url=""
  2823. size="1.12MB" >
  2824. </productMenu>
  2825. <productMenu id="userGuide"
  2826. type="1"
  2827. url=""
  2828. size="2.0MB" >
  2829. </productMenu>
  2830. <productMenu id="videoGuide"
  2831. type="0"
  2832. url=""
  2833. size="3.41MB" >
  2834. </productMenu>
  2835. <productMenu id="volume"
  2836. type="16" >
  2837. </productMenu>
  2838. <productMenu id="volume+"
  2839. type="2"
  2840. url="0x6004" >
  2841. </productMenu>
  2842. <productMenu id="battery"
  2843. type="1" >
  2844. </productMenu>
  2845. <productID id="6A13"
  2846. />
  2847. <productGroupable type="0"
  2848. />
  2849. </product>
  2850. <product id="PHANTOMCamera"
  2851. name="PHANTOM Camera"
  2852. series="Helmet"
  2853. latestVersion="1.0.1"
  2854. latestVersionVoicePrompt="0.4"
  2855. show = "-1" >
  2856. <productMenu id="protocol"
  2857. type="2" >
  2858. </productMenu>
  2859. <productMenu id="ota"
  2860. type="3" >
  2861. <otaLanguages>
  2862. <otaLanguage
  2863. id="0"
  2864. name="English"
  2865. package="0"
  2866. />
  2867. <otaLanguage
  2868. id="0"
  2869. name="French"
  2870. package="1"
  2871. />
  2872. <otaLanguage
  2873. id="0"
  2874. name="Spanish"
  2875. package="2"
  2876. />
  2877. <otaLanguage
  2878. id="0"
  2879. name="Italian"
  2880. package="3"
  2881. />
  2882. <otaLanguage
  2883. id="0"
  2884. name="German"
  2885. package="4"
  2886. />
  2887. <otaLanguage
  2888. id="0"
  2889. name="Dutch"
  2890. package="5"
  2891. />
  2892. <otaLanguage
  2893. id="0"
  2894. name="Russian"
  2895. package="6"
  2896. />
  2897. <otaLanguage
  2898. id="0"
  2899. name="Chinese"
  2900. package="7"
  2901. />
  2902. <otaLanguage
  2903. id="0"
  2904. name="Korean"
  2905. package="8"
  2906. />
  2907. <otaLanguage
  2908. id="0"
  2909. name="Japanese"
  2910. package="9"
  2911. />
  2912. <otaLanguage
  2913. id="0"
  2914. name="Finnish"
  2915. package="10"
  2916. />
  2917. <otaLanguage
  2918. id="0"
  2919. name="Polish"
  2920. package="11"
  2921. />
  2922. </otaLanguages>
  2923. <otaPackages>
  2924. <package
  2925. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2926. size="5183988"
  2927. />
  2928. <package
  2929. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2930. size="5183988"
  2931. />
  2932. <package
  2933. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2934. size="5183988"
  2935. />
  2936. <package
  2937. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2938. size="5183988"
  2939. />
  2940. <package
  2941. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2942. size="5183988"
  2943. />
  2944. <package
  2945. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2946. size="5183988"
  2947. />
  2948. <package
  2949. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2950. size="5183988"
  2951. />
  2952. <package
  2953. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2954. size="5183988"
  2955. />
  2956. <package
  2957. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2958. size="5183988"
  2959. />
  2960. <package
  2961. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2962. size="5183988"
  2963. />
  2964. <package
  2965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2966. size="5183988"
  2967. />
  2968. <package
  2969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2970. size="5183988"
  2971. />
  2972. </otaPackages>
  2973. </productMenu>
  2974. <productMenu id="wa"
  2975. type="0" >
  2976. </productMenu>
  2977. <productMenu id="led"
  2978. type="5" >
  2979. </productMenu>
  2980. <productMenu id="led+"
  2981. type="2"
  2982. url="1" >
  2983. </productMenu>
  2984. <productMenu id="meshIntercom"
  2985. type="30" >
  2986. </productMenu>
  2987. <productMenu id="meshIntercom+"
  2988. type="3"
  2989. url="2" >
  2990. </productMenu>
  2991. <productMenu id="waveIntercom"
  2992. type="1" >
  2993. </productMenu>
  2994. <productMenu id="fmradio"
  2995. type="0" >
  2996. </productMenu>
  2997. <productMenu id="phone"
  2998. type="1" >
  2999. </productMenu>
  3000. <productMenu id="music"
  3001. type="1" >
  3002. </productMenu>
  3003. <productMenu id="musicSharing"
  3004. type="0" >
  3005. </productMenu>
  3006. <productMenu id="deviceSetting"
  3007. type="1"
  3008. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3009. </productMenu>
  3010. <productMenu id="quickGuide"
  3011. type="0"
  3012. url=""
  3013. size="1.12MB" >
  3014. </productMenu>
  3015. <productMenu id="userGuide"
  3016. type="1"
  3017. url=""
  3018. size="2.0MB" >
  3019. </productMenu>
  3020. <productMenu id="videoGuide"
  3021. type="0"
  3022. url=""
  3023. size="3.41MB" >
  3024. </productMenu>
  3025. <productMenu id="volume"
  3026. type="16" >
  3027. </productMenu>
  3028. <productMenu id="battery"
  3029. type="1" >
  3030. </productMenu>
  3031. <productID id="6A10"
  3032. />
  3033. <productGroupable type="0"
  3034. />
  3035. </product>
  3036. <product id="PHANTOMCamera"
  3037. name="PHANTOM Camera"
  3038. series="Helmet"
  3039. latestVersion="1.0.1"
  3040. latestVersionVoicePrompt="0.4"
  3041. show = "-1" >
  3042. <productMenu id="protocol"
  3043. type="2" >
  3044. </productMenu>
  3045. <productMenu id="ota"
  3046. type="3" >
  3047. <otaLanguages>
  3048. <otaLanguage
  3049. id="0"
  3050. name="English"
  3051. package="0"
  3052. />
  3053. <otaLanguage
  3054. id="0"
  3055. name="French"
  3056. package="1"
  3057. />
  3058. <otaLanguage
  3059. id="0"
  3060. name="Spanish"
  3061. package="2"
  3062. />
  3063. <otaLanguage
  3064. id="0"
  3065. name="Italian"
  3066. package="3"
  3067. />
  3068. <otaLanguage
  3069. id="0"
  3070. name="German"
  3071. package="4"
  3072. />
  3073. <otaLanguage
  3074. id="0"
  3075. name="Dutch"
  3076. package="5"
  3077. />
  3078. <otaLanguage
  3079. id="0"
  3080. name="Russian"
  3081. package="6"
  3082. />
  3083. <otaLanguage
  3084. id="0"
  3085. name="Chinese"
  3086. package="7"
  3087. />
  3088. <otaLanguage
  3089. id="0"
  3090. name="Korean"
  3091. package="8"
  3092. />
  3093. <otaLanguage
  3094. id="0"
  3095. name="Japanese"
  3096. package="9"
  3097. />
  3098. <otaLanguage
  3099. id="0"
  3100. name="Finnish"
  3101. package="10"
  3102. />
  3103. <otaLanguage
  3104. id="0"
  3105. name="Polish"
  3106. package="11"
  3107. />
  3108. </otaLanguages>
  3109. <otaPackages>
  3110. <package
  3111. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3112. size="5183988"
  3113. />
  3114. <package
  3115. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3116. size="5183988"
  3117. />
  3118. <package
  3119. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3120. size="5183988"
  3121. />
  3122. <package
  3123. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3124. size="5183988"
  3125. />
  3126. <package
  3127. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3128. size="5183988"
  3129. />
  3130. <package
  3131. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3132. size="5183988"
  3133. />
  3134. <package
  3135. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3136. size="5183988"
  3137. />
  3138. <package
  3139. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3140. size="5183988"
  3141. />
  3142. <package
  3143. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3144. size="5183988"
  3145. />
  3146. <package
  3147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3148. size="5183988"
  3149. />
  3150. <package
  3151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3152. size="5183988"
  3153. />
  3154. <package
  3155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3156. size="5183988"
  3157. />
  3158. </otaPackages>
  3159. </productMenu>
  3160. <productMenu id="wa"
  3161. type="0" >
  3162. </productMenu>
  3163. <productMenu id="led"
  3164. type="5" >
  3165. </productMenu>
  3166. <productMenu id="led+"
  3167. type="2"
  3168. url="1" >
  3169. </productMenu>
  3170. <productMenu id="meshIntercom"
  3171. type="30" >
  3172. </productMenu>
  3173. <productMenu id="meshIntercom+"
  3174. type="3"
  3175. url="2" >
  3176. </productMenu>
  3177. <productMenu id="waveIntercom"
  3178. type="1" >
  3179. </productMenu>
  3180. <productMenu id="fmradio"
  3181. type="0" >
  3182. </productMenu>
  3183. <productMenu id="phone"
  3184. type="1" >
  3185. </productMenu>
  3186. <productMenu id="music"
  3187. type="1" >
  3188. </productMenu>
  3189. <productMenu id="musicSharing"
  3190. type="0" >
  3191. </productMenu>
  3192. <productMenu id="deviceSetting"
  3193. type="1"
  3194. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3195. </productMenu>
  3196. <productMenu id="quickGuide"
  3197. type="0"
  3198. url=""
  3199. size="1.12MB" >
  3200. </productMenu>
  3201. <productMenu id="userGuide"
  3202. type="1"
  3203. url=""
  3204. size="2.0MB" >
  3205. </productMenu>
  3206. <productMenu id="videoGuide"
  3207. type="0"
  3208. url=""
  3209. size="3.41MB" >
  3210. </productMenu>
  3211. <productMenu id="volume"
  3212. type="16" >
  3213. </productMenu>
  3214. <productMenu id="battery"
  3215. type="1" >
  3216. </productMenu>
  3217. <productID id="6A09"
  3218. />
  3219. <productGroupable type="0"
  3220. />
  3221. </product>
  3222. <product id="PHANTOM"
  3223. name="PHANTOM ANC"
  3224. series="Helmet"
  3225. latestVersion="1.2.7"
  3226. latestVersionVoicePrompt="1.5"
  3227. show = "1" >
  3228. <productMenu id="protocol"
  3229. type="2" >
  3230. </productMenu>
  3231. <productMenu id="ota"
  3232. type="2" >
  3233. <productMenuType version="0.6.9"
  3234. type="0"
  3235. />
  3236. <otaLanguages>
  3237. <otaLanguage
  3238. id="0"
  3239. name="English"
  3240. package="0"
  3241. />
  3242. <otaLanguage
  3243. id="0"
  3244. name="French"
  3245. package="1"
  3246. />
  3247. <otaLanguage
  3248. id="0"
  3249. name="Spanish"
  3250. package="2"
  3251. />
  3252. <otaLanguage
  3253. id="0"
  3254. name="Italian"
  3255. package="3"
  3256. />
  3257. <otaLanguage
  3258. id="0"
  3259. name="German"
  3260. package="4"
  3261. />
  3262. <otaLanguage
  3263. id="0"
  3264. name="Dutch"
  3265. package="5"
  3266. />
  3267. <otaLanguage
  3268. id="0"
  3269. name="Russian"
  3270. package="6"
  3271. />
  3272. <otaLanguage
  3273. id="0"
  3274. name="Chinese"
  3275. package="7"
  3276. />
  3277. <otaLanguage
  3278. id="0"
  3279. name="Korean"
  3280. package="8"
  3281. />
  3282. <otaLanguage
  3283. id="0"
  3284. name="Japanese"
  3285. package="9"
  3286. />
  3287. <otaLanguage
  3288. id="0"
  3289. name="Finnish"
  3290. package="10"
  3291. />
  3292. <otaLanguage
  3293. id="0"
  3294. name="Polish"
  3295. package="11"
  3296. />
  3297. </otaLanguages>
  3298. <otaPackages>
  3299. <package
  3300. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3301. size="5183988"
  3302. />
  3303. <package
  3304. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3305. size="5183988"
  3306. />
  3307. <package
  3308. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3309. size="5183988"
  3310. />
  3311. <package
  3312. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3313. size="5183988"
  3314. />
  3315. <package
  3316. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3317. size="5183988"
  3318. />
  3319. <package
  3320. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3321. size="5183988"
  3322. />
  3323. <package
  3324. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3325. size="5183988"
  3326. />
  3327. <package
  3328. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3329. size="5183988"
  3330. />
  3331. <package
  3332. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3333. size="5183988"
  3334. />
  3335. <package
  3336. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3337. size="5183988"
  3338. />
  3339. <package
  3340. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3341. size="5183988"
  3342. />
  3343. <package
  3344. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3345. size="5183988"
  3346. />
  3347. </otaPackages>
  3348. </productMenu>
  3349. <productMenu id="wa"
  3350. type="0" >
  3351. </productMenu>
  3352. <productMenu id="led"
  3353. type="5" >
  3354. </productMenu>
  3355. <productMenu id="led+"
  3356. type="2"
  3357. url="1" >
  3358. </productMenu>
  3359. <productMenu id="meshIntercom"
  3360. type="30" >
  3361. </productMenu>
  3362. <productMenu id="meshIntercom+"
  3363. type="3"
  3364. url="2" >
  3365. <productMenuURL version="1.0.4"
  3366. url="10"
  3367. />
  3368. </productMenu>
  3369. <productMenu id="waveIntercom"
  3370. type="1" >
  3371. <productMenuType version="1.0.9"
  3372. type="0"
  3373. />
  3374. </productMenu>
  3375. <productMenu id="fmradio"
  3376. type="0" >
  3377. </productMenu>
  3378. <productMenu id="phone"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="music"
  3382. type="1" >
  3383. </productMenu>
  3384. <productMenu id="musicSharing"
  3385. type="0" >
  3386. </productMenu>
  3387. <productMenu id="deviceSetting"
  3388. type="1"
  3389. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3390. <productMenuURL version="1.2.4"
  3391. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3392. />
  3393. <productMenuURL version="1.2.1"
  3394. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3395. />
  3396. <productMenuURL version="1.1.2"
  3397. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3398. />
  3399. <productMenuURL version="1.0.4"
  3400. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3401. />
  3402. </productMenu>
  3403. <productMenu id="quickGuide"
  3404. type="0"
  3405. url=""
  3406. size="1.12MB" >
  3407. </productMenu>
  3408. <productMenu id="userGuide"
  3409. type="1"
  3410. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3411. size="2.0MB" >
  3412. </productMenu>
  3413. <productMenu id="videoGuide"
  3414. type="0"
  3415. url=""
  3416. size="3.41MB" >
  3417. </productMenu>
  3418. <productMenu id="volume"
  3419. type="16" >
  3420. </productMenu>
  3421. <productMenu id="volume+"
  3422. type="2"
  3423. url="0x6004" >
  3424. </productMenu>
  3425. <productMenu id="soundMode"
  3426. type="1" >
  3427. <productMenuType version="0.9.11"
  3428. type="0"
  3429. />
  3430. </productMenu>
  3431. <productMenu id="battery"
  3432. type="1" >
  3433. </productMenu>
  3434. <productID id="6A01"
  3435. />
  3436. <productGroupable type="0"
  3437. />
  3438. </product>
  3439. <product id="PHANTOM"
  3440. name="PHANTOM ANC"
  3441. series="Helmet"
  3442. latestVersion="1.2.7"
  3443. latestVersionVoicePrompt="1.5"
  3444. show = "-1" >
  3445. <productMenu id="protocol"
  3446. type="2" >
  3447. </productMenu>
  3448. <productMenu id="ota"
  3449. type="2" >
  3450. <otaLanguages>
  3451. <otaLanguage
  3452. id="0"
  3453. name="English"
  3454. package="0"
  3455. />
  3456. <otaLanguage
  3457. id="0"
  3458. name="French"
  3459. package="1"
  3460. />
  3461. <otaLanguage
  3462. id="0"
  3463. name="Spanish"
  3464. package="2"
  3465. />
  3466. <otaLanguage
  3467. id="0"
  3468. name="Italian"
  3469. package="3"
  3470. />
  3471. <otaLanguage
  3472. id="0"
  3473. name="German"
  3474. package="4"
  3475. />
  3476. <otaLanguage
  3477. id="0"
  3478. name="Dutch"
  3479. package="5"
  3480. />
  3481. <otaLanguage
  3482. id="0"
  3483. name="Russian"
  3484. package="6"
  3485. />
  3486. <otaLanguage
  3487. id="0"
  3488. name="Chinese"
  3489. package="7"
  3490. />
  3491. <otaLanguage
  3492. id="0"
  3493. name="Korean"
  3494. package="8"
  3495. />
  3496. <otaLanguage
  3497. id="0"
  3498. name="Japanese"
  3499. package="9"
  3500. />
  3501. <otaLanguage
  3502. id="0"
  3503. name="Finnish"
  3504. package="10"
  3505. />
  3506. <otaLanguage
  3507. id="0"
  3508. name="Polish"
  3509. package="11"
  3510. />
  3511. </otaLanguages>
  3512. <otaPackages>
  3513. <package
  3514. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3515. size="5183988"
  3516. />
  3517. <package
  3518. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3519. size="5183988"
  3520. />
  3521. <package
  3522. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3523. size="5183988"
  3524. />
  3525. <package
  3526. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3527. size="5183988"
  3528. />
  3529. <package
  3530. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3531. size="5183988"
  3532. />
  3533. <package
  3534. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3535. size="5183988"
  3536. />
  3537. <package
  3538. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3539. size="5183988"
  3540. />
  3541. <package
  3542. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3543. size="5183988"
  3544. />
  3545. <package
  3546. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3547. size="5183988"
  3548. />
  3549. <package
  3550. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3551. size="5183988"
  3552. />
  3553. <package
  3554. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3555. size="5183988"
  3556. />
  3557. <package
  3558. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3559. size="5183988"
  3560. />
  3561. </otaPackages>
  3562. </productMenu>
  3563. <productMenu id="led"
  3564. type="5" >
  3565. </productMenu>
  3566. <productMenu id="led+"
  3567. type="2"
  3568. url="1" >
  3569. </productMenu>
  3570. <productMenu id="meshIntercom"
  3571. type="30" >
  3572. </productMenu>
  3573. <productMenu id="meshIntercom+"
  3574. type="3"
  3575. url="2" >
  3576. </productMenu>
  3577. <productMenu id="waveIntercom"
  3578. type="1" >
  3579. </productMenu>
  3580. <productMenu id="fmradio"
  3581. type="0" >
  3582. </productMenu>
  3583. <productMenu id="phone"
  3584. type="1" >
  3585. </productMenu>
  3586. <productMenu id="music"
  3587. type="1" >
  3588. </productMenu>
  3589. <productMenu id="musicSharing"
  3590. type="0" >
  3591. </productMenu>
  3592. <productMenu id="deviceSetting"
  3593. type="1"
  3594. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3595. <productMenuURL version="1.2.4"
  3596. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3597. />
  3598. </productMenu>
  3599. <productMenu id="quickGuide"
  3600. type="0"
  3601. url=""
  3602. size="1.12MB" >
  3603. </productMenu>
  3604. <productMenu id="userGuide"
  3605. type="1"
  3606. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3607. size="2.0MB" >
  3608. </productMenu>
  3609. <productMenu id="videoGuide"
  3610. type="0"
  3611. url=""
  3612. size="3.41MB" >
  3613. </productMenu>
  3614. <productMenu id="volume"
  3615. type="16" >
  3616. </productMenu>
  3617. <productMenu id="volume+"
  3618. type="2"
  3619. url="0x6004" >
  3620. </productMenu>
  3621. <productMenu id="soundMode"
  3622. type="1" >
  3623. </productMenu>
  3624. <productMenu id="battery"
  3625. type="1" >
  3626. </productMenu>
  3627. <productID id="6A19"
  3628. />
  3629. <productGroupable type="0"
  3630. />
  3631. </product>
  3632. <product id="PHANTOM"
  3633. name="PHANTOM"
  3634. series="Helmet"
  3635. latestVersion="1.2.7"
  3636. latestVersionVoicePrompt="1.5"
  3637. show = "-1" >
  3638. <productMenu id="protocol"
  3639. type="2" >
  3640. </productMenu>
  3641. <productMenu id="ota"
  3642. type="2" >
  3643. <otaLanguages>
  3644. <otaLanguage
  3645. id="0"
  3646. name="English"
  3647. package="0"
  3648. />
  3649. <otaLanguage
  3650. id="0"
  3651. name="French"
  3652. package="1"
  3653. />
  3654. <otaLanguage
  3655. id="0"
  3656. name="Spanish"
  3657. package="2"
  3658. />
  3659. <otaLanguage
  3660. id="0"
  3661. name="Italian"
  3662. package="3"
  3663. />
  3664. <otaLanguage
  3665. id="0"
  3666. name="German"
  3667. package="4"
  3668. />
  3669. <otaLanguage
  3670. id="0"
  3671. name="Dutch"
  3672. package="5"
  3673. />
  3674. <otaLanguage
  3675. id="0"
  3676. name="Russian"
  3677. package="6"
  3678. />
  3679. <otaLanguage
  3680. id="0"
  3681. name="Chinese"
  3682. package="7"
  3683. />
  3684. <otaLanguage
  3685. id="0"
  3686. name="Korean"
  3687. package="8"
  3688. />
  3689. <otaLanguage
  3690. id="0"
  3691. name="Japanese"
  3692. package="9"
  3693. />
  3694. <otaLanguage
  3695. id="0"
  3696. name="Finnish"
  3697. package="10"
  3698. />
  3699. <otaLanguage
  3700. id="0"
  3701. name="Polish"
  3702. package="11"
  3703. />
  3704. </otaLanguages>
  3705. <otaPackages>
  3706. <package
  3707. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3708. size="5183988"
  3709. />
  3710. <package
  3711. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3712. size="5183988"
  3713. />
  3714. <package
  3715. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3716. size="5183988"
  3717. />
  3718. <package
  3719. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3720. size="5183988"
  3721. />
  3722. <package
  3723. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3724. size="5183988"
  3725. />
  3726. <package
  3727. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3728. size="5183988"
  3729. />
  3730. <package
  3731. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3732. size="5183988"
  3733. />
  3734. <package
  3735. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3736. size="5183988"
  3737. />
  3738. <package
  3739. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3740. size="5183988"
  3741. />
  3742. <package
  3743. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3744. size="5183988"
  3745. />
  3746. <package
  3747. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3748. size="5183988"
  3749. />
  3750. <package
  3751. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3752. size="5183988"
  3753. />
  3754. </otaPackages>
  3755. </productMenu>
  3756. <productMenu id="wa"
  3757. type="0" >
  3758. </productMenu>
  3759. <productMenu id="led"
  3760. type="5" >
  3761. </productMenu>
  3762. <productMenu id="led+"
  3763. type="2"
  3764. url="1" >
  3765. </productMenu>
  3766. <productMenu id="meshIntercom"
  3767. type="30" >
  3768. </productMenu>
  3769. <productMenu id="meshIntercom+"
  3770. type="3"
  3771. url="2" >
  3772. </productMenu>
  3773. <productMenu id="waveIntercom"
  3774. type="1" >
  3775. </productMenu>
  3776. <productMenu id="fmradio"
  3777. type="0" >
  3778. </productMenu>
  3779. <productMenu id="phone"
  3780. type="1" >
  3781. </productMenu>
  3782. <productMenu id="music"
  3783. type="1" >
  3784. </productMenu>
  3785. <productMenu id="musicSharing"
  3786. type="0" >
  3787. </productMenu>
  3788. <productMenu id="deviceSetting"
  3789. type="1"
  3790. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3791. <productMenuURL version="1.2.4"
  3792. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3793. />
  3794. </productMenu>
  3795. <productMenu id="quickGuide"
  3796. type="0"
  3797. url=""
  3798. size="1.52MB" >
  3799. </productMenu>
  3800. <productMenu id="userGuide"
  3801. type="1"
  3802. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3803. size="2.01MB" >
  3804. </productMenu>
  3805. <productMenu id="videoGuide"
  3806. type="0"
  3807. url=""
  3808. size="3.46MB" >
  3809. </productMenu>
  3810. <productMenu id="connectGuide"
  3811. type="1"
  3812. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3813. size="1.1MB" >
  3814. </productMenu>
  3815. <productMenu id="volume"
  3816. type="16" >
  3817. </productMenu>
  3818. <productMenu id="volume+"
  3819. type="2"
  3820. url="0x6004" >
  3821. </productMenu>
  3822. <productMenu id="battery"
  3823. type="1" >
  3824. </productMenu>
  3825. <productID id="6A0E"
  3826. />
  3827. <productGroupable type="0"
  3828. />
  3829. </product>
  3830. <product id="PHANTOM"
  3831. name="PHANTOM"
  3832. series="Helmet"
  3833. latestVersion="1.2.7"
  3834. latestVersionVoicePrompt="1.5"
  3835. show = "1" >
  3836. <productMenu id="protocol"
  3837. type="2" >
  3838. </productMenu>
  3839. <productMenu id="ota"
  3840. type="2" >
  3841. <otaLanguages>
  3842. <otaLanguage
  3843. id="0"
  3844. name="English"
  3845. package="0"
  3846. />
  3847. <otaLanguage
  3848. id="0"
  3849. name="French"
  3850. package="1"
  3851. />
  3852. <otaLanguage
  3853. id="0"
  3854. name="Spanish"
  3855. package="2"
  3856. />
  3857. <otaLanguage
  3858. id="0"
  3859. name="Italian"
  3860. package="3"
  3861. />
  3862. <otaLanguage
  3863. id="0"
  3864. name="German"
  3865. package="4"
  3866. />
  3867. <otaLanguage
  3868. id="0"
  3869. name="Dutch"
  3870. package="5"
  3871. />
  3872. <otaLanguage
  3873. id="0"
  3874. name="Russian"
  3875. package="6"
  3876. />
  3877. <otaLanguage
  3878. id="0"
  3879. name="Chinese"
  3880. package="7"
  3881. />
  3882. <otaLanguage
  3883. id="0"
  3884. name="Korean"
  3885. package="8"
  3886. />
  3887. <otaLanguage
  3888. id="0"
  3889. name="Japanese"
  3890. package="9"
  3891. />
  3892. <otaLanguage
  3893. id="0"
  3894. name="Finnish"
  3895. package="10"
  3896. />
  3897. <otaLanguage
  3898. id="0"
  3899. name="Polish"
  3900. package="11"
  3901. />
  3902. </otaLanguages>
  3903. <otaPackages>
  3904. <package
  3905. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3906. size="5183988"
  3907. />
  3908. <package
  3909. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3910. size="5183988"
  3911. />
  3912. <package
  3913. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3914. size="5183988"
  3915. />
  3916. <package
  3917. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3918. size="5183988"
  3919. />
  3920. <package
  3921. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3922. size="5183988"
  3923. />
  3924. <package
  3925. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3926. size="5183988"
  3927. />
  3928. <package
  3929. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3930. size="5183988"
  3931. />
  3932. <package
  3933. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3934. size="5183988"
  3935. />
  3936. <package
  3937. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3938. size="5183988"
  3939. />
  3940. <package
  3941. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3942. size="5183988"
  3943. />
  3944. <package
  3945. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3946. size="5183988"
  3947. />
  3948. <package
  3949. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3950. size="5183988"
  3951. />
  3952. </otaPackages>
  3953. </productMenu>
  3954. <productMenu id="wa"
  3955. type="0" >
  3956. </productMenu>
  3957. <productMenu id="led"
  3958. type="5" >
  3959. <productMenuType version="1.0.1"
  3960. type="4"
  3961. />
  3962. </productMenu>
  3963. <productMenu id="led+"
  3964. type="2"
  3965. url="1" >
  3966. <productMenuType version="1.0.1"
  3967. type="-1"
  3968. />
  3969. </productMenu>
  3970. <productMenu id="meshIntercom"
  3971. type="30" >
  3972. </productMenu>
  3973. <productMenu id="meshIntercom+"
  3974. type="3"
  3975. url="2" >
  3976. <productMenuURL version="1.0.4"
  3977. url="10"
  3978. />
  3979. </productMenu>
  3980. <productMenu id="waveIntercom"
  3981. type="1" >
  3982. <productMenuType version="1.0.9"
  3983. type="0"
  3984. />
  3985. </productMenu>
  3986. <productMenu id="fmradio"
  3987. type="0" >
  3988. </productMenu>
  3989. <productMenu id="phone"
  3990. type="1" >
  3991. </productMenu>
  3992. <productMenu id="music"
  3993. type="1" >
  3994. </productMenu>
  3995. <productMenu id="musicSharing"
  3996. type="0" >
  3997. </productMenu>
  3998. <productMenu id="deviceSetting"
  3999. type="1"
  4000. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  4001. <productMenuURL version="1.2.4"
  4002. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4003. />
  4004. <productMenuURL version="1.2.1"
  4005. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4006. />
  4007. <productMenuURL version="1.0.4"
  4008. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4009. />
  4010. <productMenuURL version="1.0.1"
  4011. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4012. />
  4013. </productMenu>
  4014. <productMenu id="quickGuide"
  4015. type="0"
  4016. url=""
  4017. size="1.12MB" >
  4018. </productMenu>
  4019. <productMenu id="userGuide"
  4020. type="1"
  4021. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4022. size="2.0MB" >
  4023. </productMenu>
  4024. <productMenu id="videoGuide"
  4025. type="0"
  4026. url=""
  4027. size="3.41MB" >
  4028. </productMenu>
  4029. <productMenu id="connectGuide"
  4030. type="1"
  4031. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4032. size="1.12MB" >
  4033. </productMenu>
  4034. <productMenu id="volume"
  4035. type="16" >
  4036. <productMenuType version="1.0"
  4037. type="13"
  4038. />
  4039. </productMenu>
  4040. <productMenu id="volume+"
  4041. type="2"
  4042. url="0x6004" >
  4043. </productMenu>
  4044. <productMenu id="battery"
  4045. type="1" >
  4046. </productMenu>
  4047. <productID id="6A04"
  4048. />
  4049. <productGroupable type="0"
  4050. />
  4051. </product>
  4052. <product id="PHANTOMEasyLink"
  4053. name="PHANTOM EasyLink"
  4054. series="Helmet"
  4055. latestVersion="0.1"
  4056. latestVersionVoicePrompt="1.2"
  4057. show = "-1" >
  4058. <productMenu id="protocol"
  4059. type="2" >
  4060. </productMenu>
  4061. <productMenu id="ota"
  4062. type="0" >
  4063. <otaLanguages>
  4064. <otaLanguage
  4065. id="0"
  4066. name="English"
  4067. package="0"
  4068. />
  4069. <otaLanguage
  4070. id="0"
  4071. name="French"
  4072. package="1"
  4073. />
  4074. <otaLanguage
  4075. id="0"
  4076. name="Spanish"
  4077. package="2"
  4078. />
  4079. <otaLanguage
  4080. id="0"
  4081. name="Italian"
  4082. package="3"
  4083. />
  4084. <otaLanguage
  4085. id="0"
  4086. name="German"
  4087. package="4"
  4088. />
  4089. <otaLanguage
  4090. id="0"
  4091. name="Dutch"
  4092. package="5"
  4093. />
  4094. <otaLanguage
  4095. id="0"
  4096. name="Russian"
  4097. package="6"
  4098. />
  4099. <otaLanguage
  4100. id="0"
  4101. name="Chinese"
  4102. package="7"
  4103. />
  4104. <otaLanguage
  4105. id="0"
  4106. name="Korean"
  4107. package="8"
  4108. />
  4109. <otaLanguage
  4110. id="0"
  4111. name="Japanese"
  4112. package="9"
  4113. />
  4114. <otaLanguage
  4115. id="0"
  4116. name="Finnish"
  4117. package="10"
  4118. />
  4119. <otaLanguage
  4120. id="0"
  4121. name="Polish"
  4122. package="11"
  4123. />
  4124. </otaLanguages>
  4125. <otaPackages>
  4126. <package
  4127. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4128. size="5183988"
  4129. />
  4130. <package
  4131. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4132. size="5183988"
  4133. />
  4134. <package
  4135. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4136. size="5183988"
  4137. />
  4138. <package
  4139. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4140. size="5183988"
  4141. />
  4142. <package
  4143. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4144. size="5183988"
  4145. />
  4146. <package
  4147. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4148. size="5183988"
  4149. />
  4150. <package
  4151. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4152. size="5183988"
  4153. />
  4154. <package
  4155. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4156. size="5183988"
  4157. />
  4158. <package
  4159. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4160. size="5183988"
  4161. />
  4162. <package
  4163. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4164. size="5183988"
  4165. />
  4166. <package
  4167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4168. size="5183988"
  4169. />
  4170. <package
  4171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4172. size="5183988"
  4173. />
  4174. </otaPackages>
  4175. </productMenu>
  4176. <productMenu id="meshIntercom"
  4177. type="30" >
  4178. </productMenu>
  4179. <productMenu id="meshIntercom+"
  4180. type="3"
  4181. url="2" >
  4182. </productMenu>
  4183. <productMenu id="waveIntercom"
  4184. type="1" >
  4185. </productMenu>
  4186. <productMenu id="fmradio"
  4187. type="0" >
  4188. </productMenu>
  4189. <productMenu id="phone"
  4190. type="1" >
  4191. </productMenu>
  4192. <productMenu id="music"
  4193. type="1" >
  4194. </productMenu>
  4195. <productMenu id="musicSharing"
  4196. type="0" >
  4197. </productMenu>
  4198. <productMenu id="deviceSetting"
  4199. type="1"
  4200. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4201. </productMenu>
  4202. <productMenu id="quickGuide"
  4203. type="0"
  4204. url=""
  4205. size="1.12MB" >
  4206. </productMenu>
  4207. <productMenu id="userGuide"
  4208. type="1"
  4209. url=""
  4210. size="2.0MB" >
  4211. </productMenu>
  4212. <productMenu id="videoGuide"
  4213. type="0"
  4214. url=""
  4215. size="3.41MB" >
  4216. </productMenu>
  4217. <productMenu id="connectGuide"
  4218. type="0"
  4219. url=""
  4220. size="1.12MB" >
  4221. </productMenu>
  4222. <productMenu id="volume"
  4223. type="16" >
  4224. </productMenu>
  4225. <productMenu id="battery"
  4226. type="1" >
  4227. </productMenu>
  4228. <productID id="6A18"
  4229. />
  4230. <productGroupable type="0"
  4231. />
  4232. </product>
  4233. <product id="SPIDERXSlim"
  4234. name="SPIDER X Slim"
  4235. series="SPIDER"
  4236. latestVersion="0.9"
  4237. latestVersionVoicePrompt="1.2"
  4238. show = "-1" >
  4239. <productMenu id="protocol"
  4240. type="2" >
  4241. </productMenu>
  4242. <productMenu id="ota"
  4243. type="2" >
  4244. <otaLanguages>
  4245. <otaLanguage
  4246. id="0"
  4247. name="English"
  4248. package="0"
  4249. />
  4250. <otaLanguage
  4251. id="0"
  4252. name="French"
  4253. package="1"
  4254. />
  4255. <otaLanguage
  4256. id="0"
  4257. name="Spanish"
  4258. package="2"
  4259. />
  4260. <otaLanguage
  4261. id="0"
  4262. name="Italian"
  4263. package="3"
  4264. />
  4265. <otaLanguage
  4266. id="0"
  4267. name="German"
  4268. package="4"
  4269. />
  4270. <otaLanguage
  4271. id="0"
  4272. name="Dutch"
  4273. package="5"
  4274. />
  4275. <otaLanguage
  4276. id="0"
  4277. name="Russian"
  4278. package="6"
  4279. />
  4280. <otaLanguage
  4281. id="0"
  4282. name="Chinese"
  4283. package="7"
  4284. />
  4285. <otaLanguage
  4286. id="0"
  4287. name="Korean"
  4288. package="8"
  4289. />
  4290. <otaLanguage
  4291. id="0"
  4292. name="Japanese"
  4293. package="9"
  4294. />
  4295. <otaLanguage
  4296. id="0"
  4297. name="Finnish"
  4298. package="10"
  4299. />
  4300. <otaLanguage
  4301. id="0"
  4302. name="Polish"
  4303. package="11"
  4304. />
  4305. </otaLanguages>
  4306. <otaPackages>
  4307. <package
  4308. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4309. size="5183988"
  4310. />
  4311. <package
  4312. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4313. size="5183988"
  4314. />
  4315. <package
  4316. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4317. size="5183988"
  4318. />
  4319. <package
  4320. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4321. size="5183988"
  4322. />
  4323. <package
  4324. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4325. size="5183988"
  4326. />
  4327. <package
  4328. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4329. size="5183988"
  4330. />
  4331. <package
  4332. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4333. size="5183988"
  4334. />
  4335. <package
  4336. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4337. size="5183988"
  4338. />
  4339. <package
  4340. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4341. size="5183988"
  4342. />
  4343. <package
  4344. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4345. size="5183988"
  4346. />
  4347. <package
  4348. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4349. size="5183988"
  4350. />
  4351. <package
  4352. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4353. size="5183988"
  4354. />
  4355. </otaPackages>
  4356. </productMenu>
  4357. <productMenu id="meshIntercom"
  4358. type="30" >
  4359. </productMenu>
  4360. <productMenu id="meshIntercom+"
  4361. type="3"
  4362. url="2" >
  4363. </productMenu>
  4364. <productMenu id="waveIntercom"
  4365. type="1" >
  4366. </productMenu>
  4367. <productMenu id="fmradio"
  4368. type="1"
  4369. url="1" >
  4370. </productMenu>
  4371. <productMenu id="phone"
  4372. type="1" >
  4373. </productMenu>
  4374. <productMenu id="music"
  4375. type="1" >
  4376. </productMenu>
  4377. <productMenu id="musicSharing"
  4378. type="0" >
  4379. </productMenu>
  4380. <productMenu id="deviceSetting"
  4381. type="1"
  4382. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4383. </productMenu>
  4384. <productMenu id="quickGuide"
  4385. type="0"
  4386. url=""
  4387. size="1.12MB" >
  4388. </productMenu>
  4389. <productMenu id="userGuide"
  4390. type="1"
  4391. url=""
  4392. size="2.0MB" >
  4393. </productMenu>
  4394. <productMenu id="videoGuide"
  4395. type="0"
  4396. url=""
  4397. size="3.41MB" >
  4398. </productMenu>
  4399. <productMenu id="volume"
  4400. type="16" >
  4401. </productMenu>
  4402. <productMenu id="volume+"
  4403. type="2"
  4404. url="0x6004" >
  4405. </productMenu>
  4406. <productMenu id="battery"
  4407. type="1" >
  4408. </productMenu>
  4409. <productID id="6A07"
  4410. />
  4411. <productGroupable type="0"
  4412. />
  4413. </product>
  4414. <product id="XFITM"
  4415. name="X-FIT M"
  4416. series="SPIDER"
  4417. latestVersion="0.1.11"
  4418. latestVersionVoicePrompt="1.1"
  4419. show = "-1" >
  4420. <productMenu id="protocol"
  4421. type="2" >
  4422. </productMenu>
  4423. <productMenu id="ota"
  4424. type="0" >
  4425. <otaLanguages>
  4426. <otaLanguage
  4427. id="0"
  4428. name="English"
  4429. package="0"
  4430. />
  4431. <otaLanguage
  4432. id="0"
  4433. name="French"
  4434. package="1"
  4435. />
  4436. <otaLanguage
  4437. id="0"
  4438. name="Spanish"
  4439. package="2"
  4440. />
  4441. <otaLanguage
  4442. id="0"
  4443. name="Italian"
  4444. package="3"
  4445. />
  4446. <otaLanguage
  4447. id="0"
  4448. name="German"
  4449. package="4"
  4450. />
  4451. <otaLanguage
  4452. id="0"
  4453. name="Dutch"
  4454. package="5"
  4455. />
  4456. <otaLanguage
  4457. id="0"
  4458. name="Russian"
  4459. package="6"
  4460. />
  4461. <otaLanguage
  4462. id="0"
  4463. name="Chinese"
  4464. package="7"
  4465. />
  4466. <otaLanguage
  4467. id="0"
  4468. name="Korean"
  4469. package="8"
  4470. />
  4471. <otaLanguage
  4472. id="0"
  4473. name="Japanese"
  4474. package="9"
  4475. />
  4476. <otaLanguage
  4477. id="0"
  4478. name="Finnish"
  4479. package="10"
  4480. />
  4481. <otaLanguage
  4482. id="0"
  4483. name="Polish"
  4484. package="11"
  4485. />
  4486. </otaLanguages>
  4487. <otaPackages>
  4488. <package
  4489. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4490. size="5183988"
  4491. />
  4492. <package
  4493. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4494. size="5183988"
  4495. />
  4496. <package
  4497. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4498. size="5183988"
  4499. />
  4500. <package
  4501. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4502. size="5183988"
  4503. />
  4504. <package
  4505. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4506. size="5183988"
  4507. />
  4508. <package
  4509. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4510. size="5183988"
  4511. />
  4512. <package
  4513. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4514. size="5183988"
  4515. />
  4516. <package
  4517. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4518. size="5183988"
  4519. />
  4520. <package
  4521. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4522. size="5183988"
  4523. />
  4524. <package
  4525. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4526. size="5183988"
  4527. />
  4528. <package
  4529. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4530. size="5183988"
  4531. />
  4532. <package
  4533. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4534. size="5183988"
  4535. />
  4536. </otaPackages>
  4537. </productMenu>
  4538. <productMenu id="meshIntercom"
  4539. type="30" >
  4540. </productMenu>
  4541. <productMenu id="meshIntercom+"
  4542. type="3"
  4543. url="2" >
  4544. </productMenu>
  4545. <productMenu id="waveIntercom"
  4546. type="1" >
  4547. </productMenu>
  4548. <productMenu id="fmradio"
  4549. type="1"
  4550. url="1" >
  4551. </productMenu>
  4552. <productMenu id="phone"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="music"
  4556. type="1" >
  4557. </productMenu>
  4558. <productMenu id="musicSharing"
  4559. type="0" >
  4560. </productMenu>
  4561. <productMenu id="deviceSetting"
  4562. type="1"
  4563. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4564. </productMenu>
  4565. <productMenu id="quickGuide"
  4566. type="0"
  4567. url=""
  4568. size="1.12MB" >
  4569. </productMenu>
  4570. <productMenu id="userGuide"
  4571. type="1"
  4572. url=""
  4573. size="2.0MB" >
  4574. </productMenu>
  4575. <productMenu id="videoGuide"
  4576. type="0"
  4577. url=""
  4578. size="3.41MB" >
  4579. </productMenu>
  4580. <productMenu id="volume"
  4581. type="16" >
  4582. </productMenu>
  4583. <productMenu id="volume+"
  4584. type="2"
  4585. url="0x6004" >
  4586. </productMenu>
  4587. <productMenu id="battery"
  4588. type="1" >
  4589. </productMenu>
  4590. <productID id="6A17"
  4591. />
  4592. <productGroupable type="0"
  4593. />
  4594. </product>
  4595. <product id="VORTEXMESH"
  4596. name="VORTEX MESH"
  4597. series="Helmet"
  4598. latestVersion="0.1.11"
  4599. latestVersionVoicePrompt="1.1"
  4600. show = "-1" >
  4601. <productMenu id="protocol"
  4602. type="2" >
  4603. </productMenu>
  4604. <productMenu id="ota"
  4605. type="0" >
  4606. <otaLanguages>
  4607. <otaLanguage
  4608. id="0"
  4609. name="English"
  4610. package="0"
  4611. />
  4612. <otaLanguage
  4613. id="0"
  4614. name="French"
  4615. package="1"
  4616. />
  4617. <otaLanguage
  4618. id="0"
  4619. name="Spanish"
  4620. package="2"
  4621. />
  4622. <otaLanguage
  4623. id="0"
  4624. name="Italian"
  4625. package="3"
  4626. />
  4627. <otaLanguage
  4628. id="0"
  4629. name="German"
  4630. package="4"
  4631. />
  4632. <otaLanguage
  4633. id="0"
  4634. name="Dutch"
  4635. package="5"
  4636. />
  4637. <otaLanguage
  4638. id="0"
  4639. name="Russian"
  4640. package="6"
  4641. />
  4642. <otaLanguage
  4643. id="0"
  4644. name="Chinese"
  4645. package="7"
  4646. />
  4647. <otaLanguage
  4648. id="0"
  4649. name="Korean"
  4650. package="8"
  4651. />
  4652. <otaLanguage
  4653. id="0"
  4654. name="Japanese"
  4655. package="9"
  4656. />
  4657. <otaLanguage
  4658. id="0"
  4659. name="Finnish"
  4660. package="10"
  4661. />
  4662. <otaLanguage
  4663. id="0"
  4664. name="Polish"
  4665. package="11"
  4666. />
  4667. </otaLanguages>
  4668. <otaPackages>
  4669. <package
  4670. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4671. size="5183988"
  4672. />
  4673. <package
  4674. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4675. size="5183988"
  4676. />
  4677. <package
  4678. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4679. size="5183988"
  4680. />
  4681. <package
  4682. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4683. size="5183988"
  4684. />
  4685. <package
  4686. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4687. size="5183988"
  4688. />
  4689. <package
  4690. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4691. size="5183988"
  4692. />
  4693. <package
  4694. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4695. size="5183988"
  4696. />
  4697. <package
  4698. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4699. size="5183988"
  4700. />
  4701. <package
  4702. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4703. size="5183988"
  4704. />
  4705. <package
  4706. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4707. size="5183988"
  4708. />
  4709. <package
  4710. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4711. size="5183988"
  4712. />
  4713. <package
  4714. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4715. size="5183988"
  4716. />
  4717. </otaPackages>
  4718. </productMenu>
  4719. <productMenu id="wa"
  4720. type="0" >
  4721. </productMenu>
  4722. <productMenu id="led"
  4723. type="5" >
  4724. </productMenu>
  4725. <productMenu id="led+"
  4726. type="2"
  4727. url="1" >
  4728. </productMenu>
  4729. <productMenu id="meshIntercom"
  4730. type="30" >
  4731. </productMenu>
  4732. <productMenu id="meshIntercom+"
  4733. type="3"
  4734. url="2" >
  4735. </productMenu>
  4736. <productMenu id="waveIntercom"
  4737. type="1" >
  4738. </productMenu>
  4739. <productMenu id="fmradio"
  4740. type="0" >
  4741. </productMenu>
  4742. <productMenu id="phone"
  4743. type="1" >
  4744. </productMenu>
  4745. <productMenu id="music"
  4746. type="1" >
  4747. </productMenu>
  4748. <productMenu id="musicSharing"
  4749. type="0" >
  4750. </productMenu>
  4751. <productMenu id="deviceSetting"
  4752. type="1"
  4753. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4754. </productMenu>
  4755. <productMenu id="quickGuide"
  4756. type="0"
  4757. url=""
  4758. size="1.12MB" >
  4759. </productMenu>
  4760. <productMenu id="userGuide"
  4761. type="1"
  4762. url=""
  4763. size="2.0MB" >
  4764. </productMenu>
  4765. <productMenu id="videoGuide"
  4766. type="0"
  4767. url=""
  4768. size="3.41MB" >
  4769. </productMenu>
  4770. <productMenu id="volume"
  4771. type="16" >
  4772. </productMenu>
  4773. <productMenu id="battery"
  4774. type="1" >
  4775. </productMenu>
  4776. <productID id="6A12"
  4777. />
  4778. <productGroupable type="0"
  4779. />
  4780. </product>
  4781. <product id="MeshOn"
  4782. name="Mesh ON"
  4783. series="60"
  4784. latestVersion="1.0"
  4785. latestVersionVoicePrompt="0.7"
  4786. show = "-1" >
  4787. <productMenu id="protocol"
  4788. type="2" >
  4789. </productMenu>
  4790. <productMenu id="ota"
  4791. type="2" >
  4792. <otaPackages>
  4793. <package
  4794. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0-build2.img"
  4795. size="2945812"
  4796. />
  4797. </otaPackages>
  4798. </productMenu>
  4799. <productMenu id="meshIntercom+"
  4800. type="3"
  4801. url="4" >
  4802. </productMenu>
  4803. <productMenu id="waveIntercom"
  4804. type="0" >
  4805. </productMenu>
  4806. <productMenu id="phone"
  4807. type="0" >
  4808. </productMenu>
  4809. <productMenu id="music"
  4810. type="0" >
  4811. </productMenu>
  4812. <productMenu id="musicSharing"
  4813. type="0" >
  4814. </productMenu>
  4815. <productMenu id="deviceSetting"
  4816. type="1"
  4817. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4818. </productMenu>
  4819. <productMenu id="userGuide"
  4820. type="1"
  4821. url=""
  4822. size="2.0MB" >
  4823. </productMenu>
  4824. <productMenu id="bluetoothHeadset"
  4825. type="1"
  4826. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4827. </productMenu>
  4828. <productMenu id="volume"
  4829. type="0" >
  4830. </productMenu>
  4831. <productMenu id="battery"
  4832. type="1" >
  4833. </productMenu>
  4834. <productID id="684E"
  4835. />
  4836. <productGroupable type="0"
  4837. />
  4838. </product>
  4839. <product id="Impulse"
  4840. name="Impulse"
  4841. series="Helmet"
  4842. latestVersion="1.4.1"
  4843. show = "1" >
  4844. <productMenu id="protocol"
  4845. type="2" >
  4846. </productMenu>
  4847. <productMenu id="alexa"
  4848. type="0" >
  4849. </productMenu>
  4850. <productMenu id="ota"
  4851. type="0" >
  4852. </productMenu>
  4853. <productMenu id="wa"
  4854. type="24" >
  4855. </productMenu>
  4856. <productMenu id="manager"
  4857. type="0" >
  4858. </productMenu>
  4859. <productMenu id="sip"
  4860. type="1" >
  4861. </productMenu>
  4862. <productMenu id="led"
  4863. type="1" >
  4864. <productMenuType version="1.0.1"
  4865. type="2"
  4866. />
  4867. <productMenuType version="1.0"
  4868. type="1"
  4869. />
  4870. </productMenu>
  4871. <productMenu id="meshIntercom"
  4872. type="30" >
  4873. <productMenuType version="1.1.1"
  4874. type="20"
  4875. />
  4876. </productMenu>
  4877. <productMenu id="meshIntercom+"
  4878. type="3"
  4879. url="2" >
  4880. <productMenuType version="1.3.9"
  4881. type="2"
  4882. />
  4883. <productMenuURL version="1.1.1"
  4884. url="0"
  4885. />
  4886. </productMenu>
  4887. <productMenu id="waveIntercom"
  4888. type="1" >
  4889. <productMenuType version="1.3.9"
  4890. type="0"
  4891. />
  4892. </productMenu>
  4893. <productMenu id="bluetoothIntercom"
  4894. type="1" >
  4895. </productMenu>
  4896. <productMenu id="phone"
  4897. type="1" >
  4898. </productMenu>
  4899. <productMenu id="music"
  4900. type="1" >
  4901. </productMenu>
  4902. <productMenu id="fmradio"
  4903. type="1" >
  4904. </productMenu>
  4905. <productMenu id="deviceSetting"
  4906. type="1"
  4907. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4908. <productMenuURL version="1.3.9"
  4909. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4910. />
  4911. <productMenuURL version="1.1.1"
  4912. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4913. />
  4914. <productMenuURL version="1.0.4"
  4915. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4916. />
  4917. </productMenu>
  4918. <productMenu id="quickGuide"
  4919. type="0"
  4920. url=""
  4921. size="344KB" >
  4922. </productMenu>
  4923. <productMenu id="userGuide"
  4924. type="1"
  4925. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4926. size="3.41MB" >
  4927. </productMenu>
  4928. <productMenu id="connectGuide"
  4929. type="1"
  4930. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4931. size="1.12MB" >
  4932. </productMenu>
  4933. <productMenu id="volume"
  4934. type="11" >
  4935. </productMenu>
  4936. <productMenu id="battery"
  4937. type="1" >
  4938. </productMenu>
  4939. <productID id="3148"
  4940. />
  4941. <productGroupable type="0"
  4942. />
  4943. </product>
  4944. <product id="Impulse"
  4945. name="Impulse"
  4946. series="Helmet"
  4947. latestVersion="2.0"
  4948. show = "-1" >
  4949. <productMenu id="protocol"
  4950. type="2" >
  4951. </productMenu>
  4952. <productMenu id="alexa"
  4953. type="0" >
  4954. </productMenu>
  4955. <productMenu id="ota"
  4956. type="0" >
  4957. </productMenu>
  4958. <productMenu id="wa"
  4959. type="8" >
  4960. </productMenu>
  4961. <productMenu id="manager"
  4962. type="0" >
  4963. </productMenu>
  4964. <productMenu id="sip"
  4965. type="1" >
  4966. </productMenu>
  4967. <productMenu id="led"
  4968. type="3" >
  4969. </productMenu>
  4970. <productMenu id="meshIntercom"
  4971. type="20" >
  4972. </productMenu>
  4973. <productMenu id="bluetoothIntercom"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="phone"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="music"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="fmradio"
  4983. type="1" >
  4984. </productMenu>
  4985. <productMenu id="deviceSetting"
  4986. type="1"
  4987. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4988. </productMenu>
  4989. <productMenu id="quickGuide"
  4990. type="1"
  4991. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4992. size="344KB" >
  4993. </productMenu>
  4994. <productMenu id="userGuide"
  4995. type="1"
  4996. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4997. size="3.41MB" >
  4998. </productMenu>
  4999. <productMenu id="volume"
  5000. type="11" >
  5001. </productMenu>
  5002. <productMenu id="battery"
  5003. type="1" >
  5004. </productMenu>
  5005. <productID id="3221"
  5006. />
  5007. <productGroupable type="0"
  5008. />
  5009. </product>
  5010. <product id="Stryker"
  5011. name="Stryker"
  5012. series="Helmet"
  5013. latestVersion="1.4.1"
  5014. show = "1" >
  5015. <productMenu id="protocol"
  5016. type="2" >
  5017. </productMenu>
  5018. <productMenu id="alexa"
  5019. type="0" >
  5020. </productMenu>
  5021. <productMenu id="ota"
  5022. type="0" >
  5023. </productMenu>
  5024. <productMenu id="wa"
  5025. type="40" >
  5026. </productMenu>
  5027. <productMenu id="manager"
  5028. type="0" >
  5029. </productMenu>
  5030. <productMenu id="sip"
  5031. type="1" >
  5032. </productMenu>
  5033. <productMenu id="led"
  5034. type="1" >
  5035. <productMenuType version="1.0.1"
  5036. type="2"
  5037. />
  5038. <productMenuType version="1.0"
  5039. type="1"
  5040. />
  5041. </productMenu>
  5042. <productMenu id="meshIntercom"
  5043. type="30" >
  5044. <productMenuType version="1.1.1"
  5045. type="20"
  5046. />
  5047. </productMenu>
  5048. <productMenu id="meshIntercom+"
  5049. type="3"
  5050. url="2" >
  5051. <productMenuType version="1.3.9"
  5052. type="2"
  5053. />
  5054. <productMenuURL version="1.1.1"
  5055. url="0"
  5056. />
  5057. </productMenu>
  5058. <productMenu id="waveIntercom"
  5059. type="1" >
  5060. <productMenuType version="1.2.9"
  5061. type="0"
  5062. />
  5063. </productMenu>
  5064. <productMenu id="bluetoothIntercom"
  5065. type="1" >
  5066. </productMenu>
  5067. <productMenu id="phone"
  5068. type="1" >
  5069. </productMenu>
  5070. <productMenu id="music"
  5071. type="1" >
  5072. </productMenu>
  5073. <productMenu id="fmradio"
  5074. type="1" >
  5075. </productMenu>
  5076. <productMenu id="deviceSetting"
  5077. type="1"
  5078. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5079. <productMenuURL version="1.3.9"
  5080. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5081. />
  5082. <productMenuURL version="1.1.1"
  5083. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5084. />
  5085. <productMenuURL version="1.0.4"
  5086. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5087. />
  5088. </productMenu>
  5089. <productMenu id="quickGuide"
  5090. type="0"
  5091. url=""
  5092. size="344KB" >
  5093. </productMenu>
  5094. <productMenu id="userGuide"
  5095. type="1"
  5096. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5097. size="3.41MB" >
  5098. </productMenu>
  5099. <productMenu id="connectGuide"
  5100. type="1"
  5101. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5102. size="1.12MB" >
  5103. </productMenu>
  5104. <productMenu id="volume"
  5105. type="11" >
  5106. </productMenu>
  5107. <productMenu id="battery"
  5108. type="1" >
  5109. </productMenu>
  5110. <productID id="3154"
  5111. />
  5112. <productGroupable type="0"
  5113. />
  5114. </product>
  5115. <product id="SRL3Plus"
  5116. name="SRL3 Plus"
  5117. series="60"
  5118. latestVersion="0.9.5"
  5119. latestVersionMesh="0.19"
  5120. latestVersionVoicePrompt="1.2"
  5121. show = "-1" >
  5122. <productMenu id="protocol"
  5123. type="2" >
  5124. </productMenu>
  5125. <productMenu id="ota"
  5126. type="2" >
  5127. <otaLanguages>
  5128. <otaLanguage
  5129. id="0"
  5130. name="English"
  5131. package="0"
  5132. />
  5133. <otaLanguage
  5134. id="0"
  5135. name="French"
  5136. package="1"
  5137. />
  5138. <otaLanguage
  5139. id="0"
  5140. name="Spanish"
  5141. package="2"
  5142. />
  5143. <otaLanguage
  5144. id="0"
  5145. name="Italian"
  5146. package="3"
  5147. />
  5148. <otaLanguage
  5149. id="0"
  5150. name="German"
  5151. package="4"
  5152. />
  5153. <otaLanguage
  5154. id="0"
  5155. name="Dutch"
  5156. package="5"
  5157. />
  5158. <otaLanguage
  5159. id="0"
  5160. name="Russian"
  5161. package="6"
  5162. />
  5163. <otaLanguage
  5164. id="0"
  5165. name="Chinese"
  5166. package="7"
  5167. />
  5168. <otaLanguage
  5169. id="0"
  5170. name="Korean"
  5171. package="8"
  5172. />
  5173. <otaLanguage
  5174. id="0"
  5175. name="Japanese"
  5176. package="9"
  5177. />
  5178. <otaLanguage
  5179. id="0"
  5180. name="Finnish"
  5181. package="10"
  5182. />
  5183. </otaLanguages>
  5184. <otaPackages>
  5185. <package
  5186. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5187. size="5183988"
  5188. />
  5189. <package
  5190. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5191. size="5183988"
  5192. />
  5193. <package
  5194. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5195. size="5183988"
  5196. />
  5197. <package
  5198. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5199. size="5183988"
  5200. />
  5201. <package
  5202. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5203. size="5183988"
  5204. />
  5205. <package
  5206. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5207. size="5183988"
  5208. />
  5209. <package
  5210. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5211. size="5183988"
  5212. />
  5213. <package
  5214. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5215. size="5183988"
  5216. />
  5217. <package
  5218. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5219. size="5183988"
  5220. />
  5221. <package
  5222. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5223. size="5183988"
  5224. />
  5225. <package
  5226. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5227. size="5183988"
  5228. />
  5229. </otaPackages>
  5230. </productMenu>
  5231. <productMenu id="sip"
  5232. type="1" >
  5233. </productMenu>
  5234. <productMenu id="illusion"
  5235. type="1" >
  5236. </productMenu>
  5237. <productMenu id="meshIntercom+"
  5238. type="3"
  5239. url="2" >
  5240. </productMenu>
  5241. <productMenu id="waveIntercom"
  5242. type="1" >
  5243. </productMenu>
  5244. <productMenu id="bluetoothIntercom"
  5245. type="1"
  5246. url="2" >
  5247. </productMenu>
  5248. <productMenu id="bluetoothIntercomGrouping"
  5249. type="0" >
  5250. </productMenu>
  5251. <productMenu id="fmradio"
  5252. type="1"
  5253. url="1" >
  5254. </productMenu>
  5255. <productMenu id="phone"
  5256. type="1" >
  5257. </productMenu>
  5258. <productMenu id="music"
  5259. type="1" >
  5260. </productMenu>
  5261. <productMenu id="musicSharing"
  5262. type="0" >
  5263. </productMenu>
  5264. <productMenu id="deviceSetting"
  5265. type="1"
  5266. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5267. </productMenu>
  5268. <productMenu id="quickGuide"
  5269. type="0"
  5270. url=""
  5271. size="1.12MB" >
  5272. </productMenu>
  5273. <productMenu id="userGuide"
  5274. type="0"
  5275. url=""
  5276. size="2.0MB" >
  5277. </productMenu>
  5278. <productMenu id="videoGuide"
  5279. type="0"
  5280. url=""
  5281. size="3.41MB" >
  5282. </productMenu>
  5283. <productMenu id="volume"
  5284. type="16" >
  5285. </productMenu>
  5286. <productMenu id="soundMode"
  5287. type="1" >
  5288. </productMenu>
  5289. <productMenu id="battery"
  5290. type="1" >
  5291. </productMenu>
  5292. <productID id="6A08"
  5293. />
  5294. <productGroupable type="0"
  5295. />
  5296. </product>
  5297. <product id="SRL3"
  5298. name="SRL3"
  5299. series="SRL"
  5300. latestVersion="1.5"
  5301. show = "1" >
  5302. <productMenu id="protocol"
  5303. type="2" >
  5304. </productMenu>
  5305. <productMenu id="alexa"
  5306. type="0" >
  5307. </productMenu>
  5308. <productMenu id="ota"
  5309. type="0" >
  5310. </productMenu>
  5311. <productMenu id="wa"
  5312. type="1" >
  5313. </productMenu>
  5314. <productMenu id="sip"
  5315. type="1" >
  5316. </productMenu>
  5317. <productMenu id="meshIntercom"
  5318. type="30" >
  5319. </productMenu>
  5320. <productMenu id="meshIntercom+"
  5321. type="3"
  5322. url="2" >
  5323. <productMenuType version="1.3.9"
  5324. type="2"
  5325. />
  5326. </productMenu>
  5327. <productMenu id="waveIntercom"
  5328. type="1" >
  5329. <productMenuType version="1.4.9"
  5330. type="0"
  5331. />
  5332. </productMenu>
  5333. <productMenu id="bluetoothIntercom"
  5334. type="1" >
  5335. </productMenu>
  5336. <productMenu id="phone"
  5337. type="1" >
  5338. </productMenu>
  5339. <productMenu id="music"
  5340. type="1" >
  5341. </productMenu>
  5342. <productMenu id="fmradio"
  5343. type="1" >
  5344. </productMenu>
  5345. <productMenu id="deviceSetting"
  5346. type="1"
  5347. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5348. <productMenuURL version="1.3"
  5349. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5350. />
  5351. </productMenu>
  5352. <productMenu id="quickGuide"
  5353. type="0"
  5354. url=""
  5355. size="344KB" >
  5356. </productMenu>
  5357. <productMenu id="userGuide"
  5358. type="1"
  5359. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5360. size="3.41MB" >
  5361. </productMenu>
  5362. <productMenu id="connectGuide"
  5363. type="1"
  5364. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5365. size="1.12MB" >
  5366. </productMenu>
  5367. <productMenu id="volume"
  5368. type="11" >
  5369. </productMenu>
  5370. <productMenu id="battery"
  5371. type="1" >
  5372. </productMenu>
  5373. <productID id="3219"
  5374. />
  5375. <productGroupable type="0"
  5376. />
  5377. </product>
  5378. <product id="SRL_Mesh"
  5379. name="SRL-Mesh"
  5380. series="SRL"
  5381. latestVersion="1.7.1"
  5382. show = "1" >
  5383. <productMenu id="protocol"
  5384. type="2" >
  5385. </productMenu>
  5386. <productMenu id="alexa"
  5387. type="0" >
  5388. </productMenu>
  5389. <productMenu id="ota"
  5390. type="0" >
  5391. </productMenu>
  5392. <productMenu id="wa"
  5393. type="1" >
  5394. </productMenu>
  5395. <productMenu id="sip"
  5396. type="1" >
  5397. </productMenu>
  5398. <productMenu id="meshIntercom"
  5399. type="30" >
  5400. <productMenuType version="1.1.1"
  5401. type="20"
  5402. />
  5403. </productMenu>
  5404. <productMenu id="meshIntercom+"
  5405. type="3"
  5406. url="2" >
  5407. <productMenuType version="1.5.9"
  5408. type="2"
  5409. />
  5410. <productMenuURL version="1.1.1"
  5411. url="0"
  5412. />
  5413. </productMenu>
  5414. <productMenu id="waveIntercom"
  5415. type="1" >
  5416. <productMenuType version="1.6.9"
  5417. type="0"
  5418. />
  5419. </productMenu>
  5420. <productMenu id="bluetoothIntercom"
  5421. type="1" >
  5422. </productMenu>
  5423. <productMenu id="phone"
  5424. type="1" >
  5425. </productMenu>
  5426. <productMenu id="music"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="fmradio"
  5430. type="1" >
  5431. </productMenu>
  5432. <productMenu id="deviceSetting"
  5433. type="1"
  5434. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5435. <productMenuURL version="1.5"
  5436. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5437. />
  5438. <productMenuURL version="1.1.1"
  5439. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5440. />
  5441. <productMenuURL version="1.0.3"
  5442. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="quickGuide"
  5446. type="0"
  5447. url=""
  5448. size="344KB" >
  5449. </productMenu>
  5450. <productMenu id="userGuide"
  5451. type="1"
  5452. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5453. size="3.41MB" >
  5454. </productMenu>
  5455. <productMenu id="connectGuide"
  5456. type="1"
  5457. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5458. size="1.12MB" >
  5459. </productMenu>
  5460. <productMenu id="volume"
  5461. type="11" >
  5462. </productMenu>
  5463. <productMenu id="battery"
  5464. type="1" >
  5465. </productMenu>
  5466. <productID id="3216"
  5467. />
  5468. <productGroupable type="0"
  5469. />
  5470. </product>
  5471. <product id="SRL_EXT"
  5472. name="SRL-EXT"
  5473. series="SRL"
  5474. latestVersion="1.7.1"
  5475. show = "1" >
  5476. <productMenu id="protocol"
  5477. type="2" >
  5478. </productMenu>
  5479. <productMenu id="alexa"
  5480. type="0" >
  5481. </productMenu>
  5482. <productMenu id="ota"
  5483. type="0" >
  5484. </productMenu>
  5485. <productMenu id="wa"
  5486. type="0" >
  5487. </productMenu>
  5488. <productMenu id="sip"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="meshIntercom"
  5492. type="30" >
  5493. <productMenuType version="1.1.1"
  5494. type="20"
  5495. />
  5496. </productMenu>
  5497. <productMenu id="meshIntercom+"
  5498. type="3"
  5499. url="2" >
  5500. <productMenuType version="1.5.9"
  5501. type="2"
  5502. />
  5503. <productMenuURL version="1.1.1"
  5504. url="0"
  5505. />
  5506. </productMenu>
  5507. <productMenu id="waveIntercom"
  5508. type="1" >
  5509. <productMenuType version="1.6.9"
  5510. type="0"
  5511. />
  5512. </productMenu>
  5513. <productMenu id="bluetoothIntercom"
  5514. type="1" >
  5515. </productMenu>
  5516. <productMenu id="phone"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="music"
  5520. type="1" >
  5521. </productMenu>
  5522. <productMenu id="fmradio"
  5523. type="1" >
  5524. </productMenu>
  5525. <productMenu id="deviceSetting"
  5526. type="1"
  5527. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5528. <productMenuURL version="1.5"
  5529. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5530. />
  5531. <productMenuURL version="1.1.1"
  5532. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5533. />
  5534. <productMenuURL version="1.0.3"
  5535. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5536. />
  5537. </productMenu>
  5538. <productMenu id="quickGuide"
  5539. type="0"
  5540. url=""
  5541. size="344KB" >
  5542. </productMenu>
  5543. <productMenu id="userGuide"
  5544. type="1"
  5545. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5546. size="3.41MB" >
  5547. </productMenu>
  5548. <productMenu id="connectGuide"
  5549. type="1"
  5550. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5551. size="1.12MB" >
  5552. </productMenu>
  5553. <productMenu id="volume"
  5554. type="11" >
  5555. </productMenu>
  5556. <productMenu id="battery"
  5557. type="1" >
  5558. </productMenu>
  5559. <productID id="3212"
  5560. />
  5561. <productGroupable type="0"
  5562. />
  5563. </product>
  5564. <product id="SRL2"
  5565. name="SRL2"
  5566. series="SRL"
  5567. latestVersion="1.0.9"
  5568. show = "1" >
  5569. <productMenu id="protocol"
  5570. type="0">
  5571. </productMenu>
  5572. <productMenu id="sip"
  5573. type="1" >
  5574. </productMenu>
  5575. <productMenu id="bluetoothIntercom"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="intercomSetting"
  5579. type="1" >
  5580. </productMenu>
  5581. <productMenu id="phone"
  5582. type="2" >
  5583. </productMenu>
  5584. <productMenu id="fmradio"
  5585. type="3" >
  5586. </productMenu>
  5587. <productMenu id="deviceSetting"
  5588. type="1"
  5589. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5590. </productMenu>
  5591. <productMenu id="quickGuide"
  5592. type="1"
  5593. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5594. size="846KB" >
  5595. </productMenu>
  5596. <productMenu id="userGuide"
  5597. type="1"
  5598. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5599. size="1.18MB" >
  5600. </productMenu>
  5601. <productMenu id="connectGuide"
  5602. type="1"
  5603. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5604. size="1.12MB" >
  5605. </productMenu>
  5606. <productID id="4530"
  5607. />
  5608. <productGroupable type="1"
  5609. />
  5610. </product>
  5611. <product id="Neotec2"
  5612. name="SRL Neotec2"
  5613. series="SRL"
  5614. latestVersion="1.1.5"
  5615. show = "1" >
  5616. <productMenu id="protocol"
  5617. type="0">
  5618. </productMenu>
  5619. <productMenu id="sip"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="bluetoothIntercom"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="intercomSetting"
  5626. type="1" >
  5627. </productMenu>
  5628. <productMenu id="phone"
  5629. type="2" >
  5630. </productMenu>
  5631. <productMenu id="fmradio"
  5632. type="3" >
  5633. </productMenu>
  5634. <productMenu id="deviceSetting"
  5635. type="1"
  5636. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5637. </productMenu>
  5638. <productMenu id="quickGuide"
  5639. type="0"
  5640. url=""
  5641. size="796KB" >
  5642. </productMenu>
  5643. <productMenu id="userGuide"
  5644. type="1"
  5645. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5646. size="1.90MB" >
  5647. </productMenu>
  5648. <productMenu id="connectGuide"
  5649. type="1"
  5650. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5651. size="1.12MB" >
  5652. </productMenu>
  5653. <productID id="4510"
  5654. />
  5655. <productGroupable type="1"
  5656. />
  5657. </product>
  5658. <product id="SPIDERST2ANC"
  5659. name="SPIDER ST2 ANC"
  5660. series="SPIDER"
  5661. latestVersion="0.5.1"
  5662. latestVersionVoicePrompt="0.2"
  5663. latestVersionMesh="0.8"
  5664. show = "-1" >
  5665. <productMenu id="protocol"
  5666. type="2" >
  5667. </productMenu>
  5668. <productMenu id="ota"
  5669. type="0" >
  5670. <otaPackages>
  5671. <package
  5672. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5673. size="2945812"
  5674. />
  5675. </otaPackages>
  5676. </productMenu>
  5677. <productMenu id="wa"
  5678. type="0" >
  5679. </productMenu>
  5680. <productMenu id="led"
  5681. type="1" >
  5682. </productMenu>
  5683. <productMenu id="meshIntercom"
  5684. type="30" >
  5685. </productMenu>
  5686. <productMenu id="fmradio"
  5687. type="1" >
  5688. </productMenu>
  5689. <productMenu id="phone"
  5690. type="1" >
  5691. </productMenu>
  5692. <productMenu id="music"
  5693. type="1" >
  5694. </productMenu>
  5695. <productMenu id="musicSharing"
  5696. type="0" >
  5697. </productMenu>
  5698. <productMenu id="deviceSetting"
  5699. type="1"
  5700. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5701. </productMenu>
  5702. <productMenu id="quickGuide"
  5703. type="1"
  5704. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5705. size="1.12MB" >
  5706. </productMenu>
  5707. <productMenu id="userGuide"
  5708. type="1"
  5709. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5710. size="2.0MB" >
  5711. </productMenu>
  5712. <productMenu id="videoGuide"
  5713. type="1"
  5714. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5715. size="3.41MB" >
  5716. </productMenu>
  5717. <productMenu id="volume"
  5718. type="12" >
  5719. </productMenu>
  5720. <productMenu id="battery"
  5721. type="1" >
  5722. </productMenu>
  5723. <productID id="6A00"
  5724. />
  5725. <productGroupable type="0"
  5726. />
  5727. </product>
  5728. <product id="SPIDER_ST1"
  5729. name="SPIDER ST1"
  5730. series="SPIDER"
  5731. latestVersion="2.5.1"
  5732. latestVersionVoicePrompt="1.3"
  5733. show = "1" >
  5734. <productMenu id="protocol"
  5735. type="2" >
  5736. </productMenu>
  5737. <productMenu id="alexa"
  5738. type="0" >
  5739. </productMenu>
  5740. <productMenu id="ota"
  5741. type="2" >
  5742. <productMenuType version="2.1.9"
  5743. type="0"
  5744. />
  5745. <otaPackages>
  5746. <package
  5747. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5.1-build2.img"
  5748. size="2945812"
  5749. />
  5750. </otaPackages>
  5751. </productMenu>
  5752. <productMenu id="wa"
  5753. type="0" >
  5754. </productMenu>
  5755. <productMenu id="meshIntercom"
  5756. type="30" >
  5757. <productMenuType version="2.1.1"
  5758. type="20"
  5759. />
  5760. </productMenu>
  5761. <productMenu id="meshIntercom+"
  5762. type="3"
  5763. url="2" >
  5764. <productMenuType version="2.2.9"
  5765. type="2"
  5766. />
  5767. <productMenuURL version="2.1.1"
  5768. url="0"
  5769. />
  5770. </productMenu>
  5771. <productMenu id="waveIntercom"
  5772. type="1" >
  5773. <productMenuType version="2.3.9"
  5774. type="0"
  5775. />
  5776. </productMenu>
  5777. <productMenu id="phone"
  5778. type="1" >
  5779. </productMenu>
  5780. <productMenu id="music"
  5781. type="1" >
  5782. </productMenu>
  5783. <productMenu id="musicSharing"
  5784. type="0" >
  5785. </productMenu>
  5786. <productMenu id="deviceSetting"
  5787. type="1"
  5788. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5789. <productMenuURL version="2.4.9"
  5790. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5791. />
  5792. <productMenuURL version="2.2.2"
  5793. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5794. />
  5795. <productMenuURL version="2.1.1"
  5796. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5797. />
  5798. </productMenu>
  5799. <productMenu id="quickGuide"
  5800. type="0"
  5801. url=""
  5802. size="1.12MB" >
  5803. </productMenu>
  5804. <productMenu id="userGuide"
  5805. type="1"
  5806. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5807. size="2.0MB" >
  5808. </productMenu>
  5809. <productMenu id="videoGuide"
  5810. type="1"
  5811. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5812. size="3.41MB" >
  5813. </productMenu>
  5814. <productMenu id="connectGuide"
  5815. type="1"
  5816. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5817. size="1.12MB" >
  5818. </productMenu>
  5819. <productMenu id="volume"
  5820. type="12" >
  5821. </productMenu>
  5822. <productMenu id="battery"
  5823. type="1" >
  5824. </productMenu>
  5825. <productID id="6800"
  5826. />
  5827. <productGroupable type="0"
  5828. />
  5829. </product>
  5830. <product id="SPIDER_ST1"
  5831. name="SPIDER ST1"
  5832. series="SPIDER"
  5833. latestVersion="1.2.2"
  5834. show = "-1" >
  5835. <productMenu id="protocol"
  5836. type="2" >
  5837. </productMenu>
  5838. <productMenu id="alexa"
  5839. type="0" >
  5840. </productMenu>
  5841. <productMenu id="ota"
  5842. type="0" >
  5843. </productMenu>
  5844. <productMenu id="wa"
  5845. type="0" >
  5846. </productMenu>
  5847. <productMenu id="meshIntercom"
  5848. type="20" >
  5849. </productMenu>
  5850. <productMenu id="phone"
  5851. type="1" >
  5852. </productMenu>
  5853. <productMenu id="music"
  5854. type="1" >
  5855. </productMenu>
  5856. <productMenu id="deviceSetting"
  5857. type="1"
  5858. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5859. </productMenu>
  5860. <productMenu id="quickGuide"
  5861. type="0"
  5862. url=""
  5863. size="1.12MB" >
  5864. </productMenu>
  5865. <productMenu id="userGuide"
  5866. type="1"
  5867. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5868. size="2.0MB" >
  5869. </productMenu>
  5870. <productMenu id="videoGuide"
  5871. type="1"
  5872. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5873. size="3.41MB" >
  5874. </productMenu>
  5875. <productMenu id="volume"
  5876. type="13" >
  5877. <productMenuType version="1.1.6"
  5878. type="14"/>
  5879. </productMenu>
  5880. <productMenu id="battery"
  5881. type="1" >
  5882. </productMenu>
  5883. <productID id="6510"
  5884. />
  5885. <productGroupable type="0"
  5886. />
  5887. </product>
  5888. <product id="SPIDER_RT1"
  5889. name="SPIDER RT1"
  5890. series="SPIDER"
  5891. latestVersion="2.5.1"
  5892. latestVersionVoicePrompt="1.3"
  5893. show = "1" >
  5894. <productMenu id="protocol"
  5895. type="2" >
  5896. </productMenu>
  5897. <productMenu id="alexa"
  5898. type="0" >
  5899. </productMenu>
  5900. <productMenu id="ota"
  5901. type="2" >
  5902. <productMenuType version="2.1.9"
  5903. type="0"
  5904. />
  5905. <otaPackages>
  5906. <package
  5907. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5.1-build2.img"
  5908. size="2945812"
  5909. />
  5910. </otaPackages>
  5911. </productMenu>
  5912. <productMenu id="wa"
  5913. type="0" >
  5914. </productMenu>
  5915. <productMenu id="meshIntercom"
  5916. type="30" >
  5917. <productMenuType version="2.1.1"
  5918. type="20"
  5919. />
  5920. </productMenu>
  5921. <productMenu id="meshIntercom+"
  5922. type="3"
  5923. url="2" >
  5924. <productMenuType version="2.2.9"
  5925. type="2"
  5926. />
  5927. <productMenuURL version="2.1.1"
  5928. url="0"
  5929. />
  5930. </productMenu>
  5931. <productMenu id="waveIntercom"
  5932. type="1" >
  5933. <productMenuType version="2.3.9"
  5934. type="0"
  5935. />
  5936. </productMenu>
  5937. <productMenu id="phone"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="music"
  5941. type="1" >
  5942. </productMenu>
  5943. <productMenu id="musicSharing"
  5944. type="0" >
  5945. </productMenu>
  5946. <productMenu id="deviceSetting"
  5947. type="1"
  5948. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5949. <productMenuURL version="2.4.9"
  5950. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5951. />
  5952. <productMenuURL version="2.2.2"
  5953. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5954. />
  5955. <productMenuURL version="2.1.1"
  5956. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5957. />
  5958. </productMenu>
  5959. <productMenu id="quickGuide"
  5960. type="0"
  5961. url=""
  5962. size="1.12MB" >
  5963. </productMenu>
  5964. <productMenu id="userGuide"
  5965. type="1"
  5966. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5967. size="2.0MB" >
  5968. </productMenu>
  5969. <productMenu id="videoGuide"
  5970. type="1"
  5971. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5972. size="3.41MB" >
  5973. </productMenu>
  5974. <productMenu id="connectGuide"
  5975. type="1"
  5976. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5977. size="1.12MB" >
  5978. </productMenu>
  5979. <productMenu id="volume"
  5980. type="12" >
  5981. </productMenu>
  5982. <productMenu id="battery"
  5983. type="1" >
  5984. </productMenu>
  5985. <productID id="6810"
  5986. />
  5987. <productGroupable type="0"
  5988. />
  5989. </product>
  5990. <product id="SPIDER_RT1"
  5991. name="SPIDER RT1"
  5992. series="SPIDER"
  5993. latestVersion="1.2.2"
  5994. show = "-1" >
  5995. <productMenu id="protocol"
  5996. type="2" >
  5997. </productMenu>
  5998. <productMenu id="alexa"
  5999. type="0" >
  6000. </productMenu>
  6001. <productMenu id="ota"
  6002. type="0" >
  6003. </productMenu>
  6004. <productMenu id="wa"
  6005. type="0" >
  6006. </productMenu>
  6007. <productMenu id="meshIntercom"
  6008. type="20" >
  6009. </productMenu>
  6010. <productMenu id="phone"
  6011. type="1" >
  6012. </productMenu>
  6013. <productMenu id="music"
  6014. type="1" >
  6015. </productMenu>
  6016. <productMenu id="deviceSetting"
  6017. type="1"
  6018. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6019. </productMenu>
  6020. <productMenu id="quickGuide"
  6021. type="0"
  6022. url=""
  6023. size="1.32MB" >
  6024. </productMenu>
  6025. <productMenu id="userGuide"
  6026. type="1"
  6027. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6028. size="1.79MB" >
  6029. </productMenu>
  6030. <productMenu id="videoGuide"
  6031. type="1"
  6032. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6033. size="3.41MB" >
  6034. </productMenu>
  6035. <productMenu id="volume"
  6036. type="13" >
  6037. <productMenuType version="1.1.6"
  6038. type="14"/>
  6039. </productMenu>
  6040. <productMenu id="battery"
  6041. type="1" >
  6042. </productMenu>
  6043. <productID id="6500"
  6044. />
  6045. <productGroupable type="0"
  6046. />
  6047. </product>
  6048. <product id="30K"
  6049. name="30K"
  6050. series="30"
  6051. latestVersion="4.5.1"
  6052. show = "1" >
  6053. <productMenu id="protocol"
  6054. type="2" >
  6055. </productMenu>
  6056. <productMenu id="alexa"
  6057. type="0" >
  6058. </productMenu>
  6059. <productMenu id="wa"
  6060. type="1" >
  6061. </productMenu>
  6062. <productMenu id="sip"
  6063. type="1" >
  6064. </productMenu>
  6065. <productMenu id="meshIntercom"
  6066. type="30" >
  6067. <productMenuType version="4.0.4"
  6068. type="20"
  6069. />
  6070. </productMenu>
  6071. <productMenu id="meshIntercom+"
  6072. type="3"
  6073. url="2" >
  6074. <productMenuType version="4.3.9"
  6075. type="2"
  6076. />
  6077. <productMenuURL version="4.0.4"
  6078. url="0"
  6079. />
  6080. </productMenu>
  6081. <productMenu id="waveIntercom"
  6082. type="1" >
  6083. <productMenuType version="4.4.9"
  6084. type="0"
  6085. />
  6086. </productMenu>
  6087. <productMenu id="bluetoothIntercom"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="phone"
  6091. type="1" >
  6092. </productMenu>
  6093. <productMenu id="music"
  6094. type="1" >
  6095. </productMenu>
  6096. <productMenu id="fmradio"
  6097. type="1" >
  6098. </productMenu>
  6099. <productMenu id="deviceSetting"
  6100. type="1"
  6101. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6102. <productMenuURL version="4.3"
  6103. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6104. />
  6105. <productMenuURL version="4.2"
  6106. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6107. />
  6108. <productMenuURL version="4.0.4"
  6109. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6110. />
  6111. </productMenu>
  6112. <productMenu id="quickGuide"
  6113. type="0"
  6114. url=""
  6115. size="934KB" >
  6116. </productMenu>
  6117. <productMenu id="userGuide"
  6118. type="1"
  6119. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6120. size="1.14MB" >
  6121. </productMenu>
  6122. <productMenu id="connectGuide"
  6123. type="1"
  6124. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6125. size="1.12MB" >
  6126. </productMenu>
  6127. <productMenu id="volume"
  6128. type="11" >
  6129. </productMenu>
  6130. <productMenu id="battery"
  6131. type="1" >
  6132. </productMenu>
  6133. <productID id="3211"
  6134. />
  6135. <productGroupable type="0"
  6136. />
  6137. </product>
  6138. <product id="30K"
  6139. name="30K"
  6140. series="30"
  6141. latestVersion="3.5"
  6142. show = "-1" >
  6143. <productMenu id="protocol"
  6144. type="1"
  6145. url="0">
  6146. </productMenu>
  6147. <productMenu id="wa"
  6148. type="7" >
  6149. </productMenu>
  6150. <productMenu id="sip"
  6151. type="1" >
  6152. </productMenu>
  6153. <productMenu id="meshIntercom"
  6154. type="20" >
  6155. <productMenuType version="2.9.9"
  6156. type="10"
  6157. />
  6158. </productMenu>
  6159. <productMenu id="meshIntercom+"
  6160. type="3"
  6161. url="2" >
  6162. <productMenuType version="3.4.9"
  6163. type="2"
  6164. />
  6165. <productMenuType version="2.9.9"
  6166. type="1"
  6167. />
  6168. <productMenuURL version="3.3.1"
  6169. url="0"
  6170. />
  6171. </productMenu>
  6172. <productMenu id="bluetoothIntercom"
  6173. type="1" >
  6174. </productMenu>
  6175. <productMenu id="phone"
  6176. type="1" >
  6177. </productMenu>
  6178. <productMenu id="music"
  6179. type="1" >
  6180. </productMenu>
  6181. <productMenu id="fmradio"
  6182. type="1" >
  6183. </productMenu>
  6184. <productMenu id="deviceSetting"
  6185. type="1"
  6186. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6187. <productMenuURL version="3.4.9"
  6188. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6189. />
  6190. <productMenuURL version="3.3.1"
  6191. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6192. />
  6193. <productMenuURL version="3.0.1"
  6194. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6195. />
  6196. <productMenuURL version="2.3.1"
  6197. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6198. />
  6199. <productMenuURL version="2.0"
  6200. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6201. />
  6202. <productMenuURL version="1.0.3"
  6203. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6204. />
  6205. </productMenu>
  6206. <productMenu id="quickGuide"
  6207. type="0"
  6208. url=""
  6209. size="1.06MB" >
  6210. </productMenu>
  6211. <productMenu id="userGuide"
  6212. type="1"
  6213. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6214. size="3.15MB" >
  6215. </productMenu>
  6216. <productMenu id="volume"
  6217. type="1" >
  6218. </productMenu>
  6219. <productID id="3110"
  6220. />
  6221. <productGroupable type="0"
  6222. />
  6223. </product>
  6224. <product id="FURY"
  6225. name="FURY"
  6226. series="Helmet"
  6227. latestVersion="1.0"
  6228. show = "-1" >
  6229. <productMenu id="protocol"
  6230. type="2" >
  6231. </productMenu>
  6232. <productMenu id="alexa"
  6233. type="0" >
  6234. </productMenu>
  6235. <productMenu id="ota"
  6236. type="0" >
  6237. </productMenu>
  6238. <productMenu id="wa"
  6239. type="0" >
  6240. </productMenu>
  6241. <productMenu id="meshIntercom"
  6242. type="20" >
  6243. </productMenu>
  6244. <productMenu id="phone"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="music"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="fmradio"
  6251. type="1" >
  6252. </productMenu>
  6253. <productMenu id="deviceSetting"
  6254. type="1"
  6255. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6256. </productMenu>
  6257. <productMenu id="quickGuide"
  6258. type="1"
  6259. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6260. size="1.12MB" >
  6261. </productMenu>
  6262. <productMenu id="userGuide"
  6263. type="1"
  6264. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6265. size="2.0MB" >
  6266. </productMenu>
  6267. <productMenu id="volume"
  6268. type="13" >
  6269. </productMenu>
  6270. <productMenu id="battery"
  6271. type="1" >
  6272. </productMenu>
  6273. <productID id="5552"
  6274. />
  6275. <productGroupable type="0"
  6276. />
  6277. </product>
  6278. <product id="MomentumM"
  6279. name="Momentum EVO"
  6280. series="Helmet"
  6281. latestVersion="2.1.2"
  6282. show = "1" >
  6283. <productMenu id="protocol"
  6284. type="1"
  6285. url="0">
  6286. </productMenu>
  6287. <productMenu id="wa"
  6288. type="3" >
  6289. </productMenu>
  6290. <productMenu id="sip"
  6291. type="1" >
  6292. </productMenu>
  6293. <productMenu id="meshIntercom"
  6294. type="20" >
  6295. <productMenuType version="1.9.9"
  6296. type="10"
  6297. />
  6298. </productMenu>
  6299. <productMenu id="bluetoothIntercom"
  6300. type="1" >
  6301. </productMenu>
  6302. <productMenu id="phone"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="music"
  6306. type="1" >
  6307. </productMenu>
  6308. <productMenu id="fmradio"
  6309. type="1" >
  6310. </productMenu>
  6311. <productMenu id="deviceSetting"
  6312. type="1"
  6313. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6314. <productMenuURL version="1.0.1"
  6315. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6316. />
  6317. </productMenu>
  6318. <productMenu id="quickGuide"
  6319. type="1"
  6320. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6321. size="1.06MB" >
  6322. </productMenu>
  6323. <productMenu id="userGuide"
  6324. type="1"
  6325. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6326. size="3.15MB" >
  6327. </productMenu>
  6328. <productMenu id="connectGuide"
  6329. type="1"
  6330. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6331. size="1.12MB" >
  6332. </productMenu>
  6333. <productMenu id="volume"
  6334. type="2" >
  6335. </productMenu>
  6336. <productID id="3116"
  6337. />
  6338. <productGroupable type="0"
  6339. />
  6340. </product>
  6341. <product id="Momentum"
  6342. name="Momentum"
  6343. series="Helmet"
  6344. latestVersion="1.0.9"
  6345. show = "1" >
  6346. <productMenu id="protocol"
  6347. type="0">
  6348. </productMenu>
  6349. <productMenu id="sip"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="bluetoothIntercom"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="intercomSetting"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="phone"
  6359. type="2" >
  6360. </productMenu>
  6361. <productMenu id="fmradio"
  6362. type="3" >
  6363. </productMenu>
  6364. <productMenu id="deviceSetting"
  6365. type="1"
  6366. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6367. </productMenu>
  6368. <productMenu id="quickGuide"
  6369. type="1"
  6370. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6371. size="796KB" >
  6372. </productMenu>
  6373. <productMenu id="userGuide"
  6374. type="1"
  6375. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6376. size="1.90MB" >
  6377. </productMenu>
  6378. <productMenu id="connectGuide"
  6379. type="1"
  6380. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6381. size="1.12MB" >
  6382. </productMenu>
  6383. <productID id="4310"
  6384. />
  6385. <productGroupable type="1"
  6386. />
  6387. </product>
  6388. <product id="Momentum_Pro"
  6389. name="Momentum Pro"
  6390. series="Helmet"
  6391. latestVersion="1.0.6"
  6392. show = "1" >
  6393. <productMenu id="protocol"
  6394. type="0">
  6395. </productMenu>
  6396. <productMenu id="sip"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="bluetoothIntercom"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="intercomSetting"
  6403. type="1" >
  6404. </productMenu>
  6405. <productMenu id="phone"
  6406. type="2" >
  6407. </productMenu>
  6408. <productMenu id="fmradio"
  6409. type="3" >
  6410. </productMenu>
  6411. <productMenu id="deviceSetting"
  6412. type="1"
  6413. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6414. </productMenu>
  6415. <productMenu id="quickGuide"
  6416. type="1"
  6417. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6418. size="796KB" >
  6419. </productMenu>
  6420. <productMenu id="userGuide"
  6421. type="1"
  6422. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6423. size="1.90MB" >
  6424. </productMenu>
  6425. <productMenu id="connectGuide"
  6426. type="1"
  6427. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6428. size="1.12MB" >
  6429. </productMenu>
  6430. <productID id="4330"
  6431. />
  6432. <productGroupable type="1"
  6433. />
  6434. </product>
  6435. <product id="Momentum_INC"
  6436. name="Momentum INC"
  6437. series="Helmet"
  6438. latestVersion="1.0.7"
  6439. show = "1" >
  6440. <productMenu id="protocol"
  6441. type="0">
  6442. </productMenu>
  6443. <productMenu id="sip"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="bluetoothIntercom"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="intercomSetting"
  6450. type="1" >
  6451. </productMenu>
  6452. <productMenu id="phone"
  6453. type="2" >
  6454. </productMenu>
  6455. <productMenu id="fmradio"
  6456. type="3" >
  6457. </productMenu>
  6458. <productMenu id="deviceSetting"
  6459. type="1"
  6460. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6461. </productMenu>
  6462. <productMenu id="quickGuide"
  6463. type="1"
  6464. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6465. size="794KB" >
  6466. </productMenu>
  6467. <productMenu id="userGuide"
  6468. type="1"
  6469. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6470. size="1.53MB" >
  6471. </productMenu>
  6472. <productMenu id="connectGuide"
  6473. type="1"
  6474. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6475. size="1.12MB" >
  6476. </productMenu>
  6477. <productID id="4410"
  6478. />
  6479. <productGroupable type="1"
  6480. />
  6481. </product>
  6482. <product id="Momentum_INCP"
  6483. name="Momentum INC Pro"
  6484. series="Helmet"
  6485. latestVersion="1.0.4"
  6486. show = "1" >
  6487. <productMenu id="protocol"
  6488. type="0">
  6489. </productMenu>
  6490. <productMenu id="sip"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="bluetoothIntercom"
  6494. type="1" >
  6495. </productMenu>
  6496. <productMenu id="intercomSetting"
  6497. type="1" >
  6498. </productMenu>
  6499. <productMenu id="phone"
  6500. type="2" >
  6501. </productMenu>
  6502. <productMenu id="fmradio"
  6503. type="3" >
  6504. </productMenu>
  6505. <productMenu id="deviceSetting"
  6506. type="1"
  6507. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6508. </productMenu>
  6509. <productMenu id="quickGuide"
  6510. type="1"
  6511. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6512. size="794KB" >
  6513. </productMenu>
  6514. <productMenu id="userGuide"
  6515. type="1"
  6516. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6517. size="1.53MB" >
  6518. </productMenu>
  6519. <productMenu id="connectGuide"
  6520. type="1"
  6521. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6522. size="1.12MB" >
  6523. </productMenu>
  6524. <productID id="4430"
  6525. />
  6526. <productGroupable type="1"
  6527. />
  6528. </product>
  6529. <product id="Momentum_Lite"
  6530. name="Momentum Lite"
  6531. series="Helmet"
  6532. latestVersion="2.0.3"
  6533. show = "1" >
  6534. <productMenu id="protocol"
  6535. type="0">
  6536. </productMenu>
  6537. <productMenu id="sip"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="bluetoothIntercom"
  6541. type="1" >
  6542. </productMenu>
  6543. <productMenu id="phone"
  6544. type="2" >
  6545. </productMenu>
  6546. <productMenu id="fmradio"
  6547. type="3" >
  6548. </productMenu>
  6549. <productMenu id="deviceSetting"
  6550. type="1"
  6551. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6552. <productMenuURL version="1.1"
  6553. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6554. />
  6555. </productMenu>
  6556. <productMenu id="quickGuide"
  6557. type="1"
  6558. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6559. size="790KB" >
  6560. </productMenu>
  6561. <productMenu id="userGuide"
  6562. type="1"
  6563. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6564. size="1.42MB" >
  6565. </productMenu>
  6566. <productMenu id="connectGuide"
  6567. type="1"
  6568. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6569. size="1.12MB" >
  6570. </productMenu>
  6571. <productID id="5526"
  6572. />
  6573. <productGroupable type="0"
  6574. />
  6575. </product>
  6576. <product id="OUTRUSHM"
  6577. name="OUTRUSH M"
  6578. series="Helmet"
  6579. latestVersion="1.0"
  6580. show = "-1" >
  6581. <productMenu id="protocol"
  6582. type="2" >
  6583. </productMenu>
  6584. <productMenu id="alexa"
  6585. type="0" >
  6586. </productMenu>
  6587. <productMenu id="ota"
  6588. type="0" >
  6589. </productMenu>
  6590. <productMenu id="wa"
  6591. type="0" >
  6592. </productMenu>
  6593. <productMenu id="meshIntercom"
  6594. type="30" >
  6595. </productMenu>
  6596. <productMenu id="phone"
  6597. type="1" >
  6598. </productMenu>
  6599. <productMenu id="music"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="fmradio"
  6603. type="1" >
  6604. </productMenu>
  6605. <productMenu id="deviceSetting"
  6606. type="1"
  6607. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6608. </productMenu>
  6609. <productMenu id="quickGuide"
  6610. type="1"
  6611. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6612. size="1.12MB" >
  6613. </productMenu>
  6614. <productMenu id="userGuide"
  6615. type="1"
  6616. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6617. size="2.0MB" >
  6618. </productMenu>
  6619. <productMenu id="volume"
  6620. type="13" >
  6621. </productMenu>
  6622. <productMenu id="battery"
  6623. type="1" >
  6624. </productMenu>
  6625. <productID id="5600"
  6626. />
  6627. <productGroupable type="0"
  6628. />
  6629. </product>
  6630. <product id="ProRideEVO"
  6631. name="ProRide EVO"
  6632. series="Helmet"
  6633. latestVersion="1.1.2"
  6634. show = "1" >
  6635. <productMenu id="protocol"
  6636. type="0">
  6637. </productMenu>
  6638. <productMenu id="sip"
  6639. type="1" >
  6640. </productMenu>
  6641. <productMenu id="bluetoothIntercom"
  6642. type="1" >
  6643. </productMenu>
  6644. <productMenu id="phone"
  6645. type="2" >
  6646. </productMenu>
  6647. <productMenu id="fmradio"
  6648. type="3" >
  6649. </productMenu>
  6650. <productMenu id="deviceSetting"
  6651. type="1"
  6652. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6653. </productMenu>
  6654. <productMenu id="userGuide"
  6655. type="1"
  6656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6657. size="778KB" >
  6658. </productMenu>
  6659. <productMenu id="connectGuide"
  6660. type="1"
  6661. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6662. size="1.12MB" >
  6663. </productMenu>
  6664. <productID id="5426"
  6665. />
  6666. <productGroupable type="0"
  6667. />
  6668. </product>
  6669. <product id="OUTRUSHR"
  6670. name="OUTRUSH R"
  6671. series="Helmet"
  6672. latestVersion="2.1"
  6673. show = "1" >
  6674. <productMenu id="protocol"
  6675. type="3" >
  6676. </productMenu>
  6677. <productMenu id="sip"
  6678. type="1" >
  6679. </productMenu>
  6680. <productMenu id="bluetoothIntercom"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="phone"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="fmradio"
  6687. type="0" >
  6688. </productMenu>
  6689. <productMenu id="deviceSetting"
  6690. type="1"
  6691. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6692. </productMenu>
  6693. <productMenu id="userGuide"
  6694. type="1"
  6695. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6696. size="1.14MB" >
  6697. </productMenu>
  6698. <productMenu id="connectGuide"
  6699. type="1"
  6700. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6701. size="1.12MB" >
  6702. </productMenu>
  6703. <productID id="5440"
  6704. />
  6705. <productGroupable type="0"
  6706. />
  6707. </product>
  6708. <product id="OUTRUSHR"
  6709. name="OUTRUSH R"
  6710. series="Helmet"
  6711. latestVersion="1.1.4"
  6712. show = "-1" >
  6713. <productMenu id="protocol"
  6714. type="0">
  6715. </productMenu>
  6716. <productMenu id="sip"
  6717. type="1" >
  6718. </productMenu>
  6719. <productMenu id="bluetoothIntercom"
  6720. type="1" >
  6721. </productMenu>
  6722. <productMenu id="phone"
  6723. type="2" >
  6724. </productMenu>
  6725. <productMenu id="fmradio"
  6726. type="3" >
  6727. </productMenu>
  6728. <productMenu id="deviceSetting"
  6729. type="1"
  6730. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6731. </productMenu>
  6732. <productMenu id="userGuide"
  6733. type="1"
  6734. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6735. size="660KB" >
  6736. </productMenu>
  6737. <productMenu id="connectGuide"
  6738. type="1"
  6739. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6740. size="1.12MB" >
  6741. </productMenu>
  6742. <productID id="5424"
  6743. />
  6744. <productGroupable type="0"
  6745. />
  6746. </product>
  6747. <product id="OUTSTARS"
  6748. name="OUTSTAR S"
  6749. series="Helmet"
  6750. latestVersion="2.0.1"
  6751. show = "-1" >
  6752. <productMenu id="protocol"
  6753. type="3" >
  6754. </productMenu>
  6755. <productMenu id="sip"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="bluetoothIntercom"
  6759. type="1" >
  6760. </productMenu>
  6761. <productMenu id="phone"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="fmradio"
  6765. type="0" >
  6766. </productMenu>
  6767. <productMenu id="deviceSetting"
  6768. type="1"
  6769. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6770. </productMenu>
  6771. <productMenu id="userGuide"
  6772. type="0"
  6773. url=""
  6774. size="1.14MB" >
  6775. </productMenu>
  6776. <productID id="5443"
  6777. />
  6778. <productGroupable type="0"
  6779. />
  6780. </product>
  6781. <product id="OUTSTARS"
  6782. name="OUTSTAR S"
  6783. series="Helmet"
  6784. latestVersion="1.1.4"
  6785. show = "1" >
  6786. <productMenu id="protocol"
  6787. type="0">
  6788. </productMenu>
  6789. <productMenu id="sip"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="bluetoothIntercom"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="phone"
  6796. type="2" >
  6797. </productMenu>
  6798. <productMenu id="fmradio"
  6799. type="3" >
  6800. </productMenu>
  6801. <productMenu id="deviceSetting"
  6802. type="1"
  6803. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6804. </productMenu>
  6805. <productMenu id="quickGuide"
  6806. type="1"
  6807. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6808. size="643KB" >
  6809. </productMenu>
  6810. <productMenu id="userGuide"
  6811. type="1"
  6812. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6813. size="1.15MB" >
  6814. </productMenu>
  6815. <productMenu id="connectGuide"
  6816. type="1"
  6817. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6818. size="1.12MB" >
  6819. </productMenu>
  6820. <productID id="5428"
  6821. />
  6822. <productGroupable type="0"
  6823. />
  6824. </product>
  6825. <product id="OUTRIDE"
  6826. name="OUTRIDE"
  6827. series="Helmet"
  6828. latestVersion="1.0.1"
  6829. show = "1" >
  6830. <productMenu id="protocol"
  6831. type="0">
  6832. </productMenu>
  6833. <productMenu id="sip"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="bluetoothIntercom"
  6837. type="1" >
  6838. </productMenu>
  6839. <productMenu id="phone"
  6840. type="2" >
  6841. </productMenu>
  6842. <productMenu id="fmradio"
  6843. type="3" >
  6844. </productMenu>
  6845. <productMenu id="deviceSetting"
  6846. type="1"
  6847. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6848. </productMenu>
  6849. <productMenu id="quickGuide"
  6850. type="1"
  6851. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6852. size="643KB" >
  6853. </productMenu>
  6854. <productMenu id="userGuide"
  6855. type="1"
  6856. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6857. size="660KB" >
  6858. </productMenu>
  6859. <productMenu id="connectGuide"
  6860. type="1"
  6861. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6862. size="1.12MB" >
  6863. </productMenu>
  6864. <productID id="5432"
  6865. />
  6866. <productGroupable type="0"
  6867. />
  6868. </product>
  6869. <product id="OUTFORCE"
  6870. name="OUTFORCE"
  6871. series="Helmet"
  6872. latestVersion="1.0.1"
  6873. show = "1" >
  6874. <productMenu id="protocol"
  6875. type="0">
  6876. </productMenu>
  6877. <productMenu id="sip"
  6878. type="1" >
  6879. </productMenu>
  6880. <productMenu id="bluetoothIntercom"
  6881. type="1" >
  6882. </productMenu>
  6883. <productMenu id="phone"
  6884. type="2" >
  6885. </productMenu>
  6886. <productMenu id="fmradio"
  6887. type="3" >
  6888. </productMenu>
  6889. <productMenu id="deviceSetting"
  6890. type="1"
  6891. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6892. </productMenu>
  6893. <productMenu id="quickGuide"
  6894. type="1"
  6895. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6896. size="643KB" >
  6897. </productMenu>
  6898. <productMenu id="userGuide"
  6899. type="1"
  6900. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6901. size="660KB" >
  6902. </productMenu>
  6903. <productMenu id="connectGuide"
  6904. type="1"
  6905. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6906. size="1.12MB" >
  6907. </productMenu>
  6908. <productID id="5430"
  6909. />
  6910. <productGroupable type="0"
  6911. />
  6912. </product>
  6913. <product id="Rumba"
  6914. name="Rumba"
  6915. series="30"
  6916. latestVersion="2.0"
  6917. show = "-1" >
  6918. <productMenu id="protocol"
  6919. type="3" >
  6920. </productMenu>
  6921. <productMenu id="sip"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="bluetoothIntercom"
  6925. type="1" >
  6926. </productMenu>
  6927. <productMenu id="deviceSetting"
  6928. type="1"
  6929. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6930. </productMenu>
  6931. <productMenu id="quickGuide"
  6932. type="1"
  6933. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6934. size="344KB" >
  6935. </productMenu>
  6936. <productMenu id="userGuide"
  6937. type="1"
  6938. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6939. size="1.14MB" >
  6940. </productMenu>
  6941. <productID id="6322"
  6942. />
  6943. <productGroupable type="0"
  6944. />
  6945. </product>
  6946. <product id="Savage"
  6947. name="Savage"
  6948. series="Helmet"
  6949. latestVersion="1.2.2"
  6950. show = "1" >
  6951. <productMenu id="protocol"
  6952. type="0">
  6953. </productMenu>
  6954. <productMenu id="sip"
  6955. type="1" >
  6956. </productMenu>
  6957. <productMenu id="bluetoothIntercom"
  6958. type="1" >
  6959. </productMenu>
  6960. <productMenu id="phone"
  6961. type="2" >
  6962. </productMenu>
  6963. <productMenu id="fmradio"
  6964. type="3" >
  6965. </productMenu>
  6966. <productMenu id="deviceSetting"
  6967. type="1"
  6968. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6969. <productMenuURL version="1.9"
  6970. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6971. />
  6972. <productMenuURL version="1.1"
  6973. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6974. />
  6975. </productMenu>
  6976. <productMenu id="quickGuide"
  6977. type="1"
  6978. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6979. size="796KB" >
  6980. </productMenu>
  6981. <productMenu id="userGuide"
  6982. type="1"
  6983. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6984. size="910KB" >
  6985. </productMenu>
  6986. <productMenu id="connectGuide"
  6987. type="1"
  6988. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6989. size="1.12MB" >
  6990. </productMenu>
  6991. <productID id="5550"
  6992. />
  6993. <productGroupable type="0"
  6994. />
  6995. </product>
  6996. <product id="SPECTER"
  6997. name="SPECTER"
  6998. series="Helmet"
  6999. latestVersion="1.0.7"
  7000. latestVersionVoicePrompt="1.5"
  7001. show = "1" >
  7002. <productMenu id="protocol"
  7003. type="2" >
  7004. </productMenu>
  7005. <productMenu id="ota"
  7006. type="2" >
  7007. <otaLanguages>
  7008. <otaLanguage
  7009. id="0"
  7010. name="English"
  7011. package="0"
  7012. />
  7013. <otaLanguage
  7014. id="0"
  7015. name="French"
  7016. package="1"
  7017. />
  7018. <otaLanguage
  7019. id="0"
  7020. name="Spanish"
  7021. package="2"
  7022. />
  7023. <otaLanguage
  7024. id="0"
  7025. name="Italian"
  7026. package="3"
  7027. />
  7028. <otaLanguage
  7029. id="0"
  7030. name="German"
  7031. package="4"
  7032. />
  7033. <otaLanguage
  7034. id="0"
  7035. name="Dutch"
  7036. package="5"
  7037. />
  7038. <otaLanguage
  7039. id="0"
  7040. name="Russian"
  7041. package="6"
  7042. />
  7043. <otaLanguage
  7044. id="0"
  7045. name="Chinese"
  7046. package="7"
  7047. />
  7048. <otaLanguage
  7049. id="0"
  7050. name="Korean"
  7051. package="8"
  7052. />
  7053. <otaLanguage
  7054. id="0"
  7055. name="Japanese"
  7056. package="9"
  7057. />
  7058. <otaLanguage
  7059. id="0"
  7060. name="Finnish"
  7061. package="10"
  7062. />
  7063. <otaLanguage
  7064. id="0"
  7065. name="Polish"
  7066. package="11"
  7067. />
  7068. </otaLanguages>
  7069. <otaPackages>
  7070. <package
  7071. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7072. size="5183988"
  7073. />
  7074. <package
  7075. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7076. size="5183988"
  7077. />
  7078. <package
  7079. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7080. size="5183988"
  7081. />
  7082. <package
  7083. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7084. size="5183988"
  7085. />
  7086. <package
  7087. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7088. size="5183988"
  7089. />
  7090. <package
  7091. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7092. size="5183988"
  7093. />
  7094. <package
  7095. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7096. size="5183988"
  7097. />
  7098. <package
  7099. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7100. size="5183988"
  7101. />
  7102. <package
  7103. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7104. size="5183988"
  7105. />
  7106. <package
  7107. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7108. size="5183988"
  7109. />
  7110. <package
  7111. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7112. size="5183988"
  7113. />
  7114. <package
  7115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7116. size="5183988"
  7117. />
  7118. </otaPackages>
  7119. </productMenu>
  7120. <productMenu id="wa"
  7121. type="0" >
  7122. </productMenu>
  7123. <productMenu id="led"
  7124. type="5" >
  7125. </productMenu>
  7126. <productMenu id="led+"
  7127. type="2"
  7128. url="1" >
  7129. </productMenu>
  7130. <productMenu id="meshIntercom+"
  7131. type="3"
  7132. url="2" >
  7133. </productMenu>
  7134. <productMenu id="waveIntercom"
  7135. type="1" >
  7136. </productMenu>
  7137. <productMenu id="fmradio"
  7138. type="0" >
  7139. </productMenu>
  7140. <productMenu id="phone"
  7141. type="1" >
  7142. </productMenu>
  7143. <productMenu id="music"
  7144. type="1" >
  7145. </productMenu>
  7146. <productMenu id="musicSharing"
  7147. type="0" >
  7148. </productMenu>
  7149. <productMenu id="deviceSetting"
  7150. type="1"
  7151. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7152. <productMenuURL version="1.0.4"
  7153. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7154. />
  7155. </productMenu>
  7156. <productMenu id="quickGuide"
  7157. type="0"
  7158. url=""
  7159. size="1.12MB" >
  7160. </productMenu>
  7161. <productMenu id="userGuide"
  7162. type="1"
  7163. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7164. size="2.0MB" >
  7165. </productMenu>
  7166. <productMenu id="videoGuide"
  7167. type="0"
  7168. url=""
  7169. size="3.41MB" >
  7170. </productMenu>
  7171. <productMenu id="volume"
  7172. type="16" >
  7173. </productMenu>
  7174. <productMenu id="volume+"
  7175. type="2"
  7176. url="0x6004" >
  7177. </productMenu>
  7178. <productMenu id="battery"
  7179. type="1" >
  7180. </productMenu>
  7181. <productID id="6A11"
  7182. />
  7183. <productGroupable type="0"
  7184. />
  7185. </product>
  7186. <product id="SPECTER"
  7187. name="SPECTER"
  7188. series="Helmet"
  7189. latestVersion="1.0.7"
  7190. latestVersionVoicePrompt="1.5"
  7191. show = "-1" >
  7192. <productMenu id="protocol"
  7193. type="2" >
  7194. </productMenu>
  7195. <productMenu id="ota"
  7196. type="2" >
  7197. <otaLanguages>
  7198. <otaLanguage
  7199. id="0"
  7200. name="English"
  7201. package="0"
  7202. />
  7203. <otaLanguage
  7204. id="0"
  7205. name="French"
  7206. package="1"
  7207. />
  7208. <otaLanguage
  7209. id="0"
  7210. name="Spanish"
  7211. package="2"
  7212. />
  7213. <otaLanguage
  7214. id="0"
  7215. name="Italian"
  7216. package="3"
  7217. />
  7218. <otaLanguage
  7219. id="0"
  7220. name="German"
  7221. package="4"
  7222. />
  7223. <otaLanguage
  7224. id="0"
  7225. name="Dutch"
  7226. package="5"
  7227. />
  7228. <otaLanguage
  7229. id="0"
  7230. name="Russian"
  7231. package="6"
  7232. />
  7233. <otaLanguage
  7234. id="0"
  7235. name="Chinese"
  7236. package="7"
  7237. />
  7238. <otaLanguage
  7239. id="0"
  7240. name="Korean"
  7241. package="8"
  7242. />
  7243. <otaLanguage
  7244. id="0"
  7245. name="Japanese"
  7246. package="9"
  7247. />
  7248. <otaLanguage
  7249. id="0"
  7250. name="Finnish"
  7251. package="10"
  7252. />
  7253. <otaLanguage
  7254. id="0"
  7255. name="Polish"
  7256. package="11"
  7257. />
  7258. </otaLanguages>
  7259. <otaPackages>
  7260. <package
  7261. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7262. size="5183988"
  7263. />
  7264. <package
  7265. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7266. size="5183988"
  7267. />
  7268. <package
  7269. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7270. size="5183988"
  7271. />
  7272. <package
  7273. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7274. size="5183988"
  7275. />
  7276. <package
  7277. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7278. size="5183988"
  7279. />
  7280. <package
  7281. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7282. size="5183988"
  7283. />
  7284. <package
  7285. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7286. size="5183988"
  7287. />
  7288. <package
  7289. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7290. size="5183988"
  7291. />
  7292. <package
  7293. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7294. size="5183988"
  7295. />
  7296. <package
  7297. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7298. size="5183988"
  7299. />
  7300. <package
  7301. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7302. size="5183988"
  7303. />
  7304. <package
  7305. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7306. size="5183988"
  7307. />
  7308. </otaPackages>
  7309. </productMenu>
  7310. <productMenu id="wa"
  7311. type="0" >
  7312. </productMenu>
  7313. <productMenu id="led"
  7314. type="5" >
  7315. </productMenu>
  7316. <productMenu id="led+"
  7317. type="2"
  7318. url="1" >
  7319. </productMenu>
  7320. <productMenu id="meshIntercom+"
  7321. type="3"
  7322. url="2" >
  7323. </productMenu>
  7324. <productMenu id="waveIntercom"
  7325. type="1" >
  7326. </productMenu>
  7327. <productMenu id="fmradio"
  7328. type="0" >
  7329. </productMenu>
  7330. <productMenu id="phone"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="music"
  7334. type="1" >
  7335. </productMenu>
  7336. <productMenu id="musicSharing"
  7337. type="0" >
  7338. </productMenu>
  7339. <productMenu id="deviceSetting"
  7340. type="1"
  7341. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7342. <productMenuURL version="1.0.4"
  7343. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7344. />
  7345. <productMenuURL version="1.0"
  7346. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7347. />
  7348. </productMenu>
  7349. <productMenu id="quickGuide"
  7350. type="0"
  7351. url=""
  7352. size="1.12MB" >
  7353. </productMenu>
  7354. <productMenu id="userGuide"
  7355. type="1"
  7356. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7357. size="2.0MB" >
  7358. </productMenu>
  7359. <productMenu id="videoGuide"
  7360. type="0"
  7361. url=""
  7362. size="3.41MB" >
  7363. </productMenu>
  7364. <productMenu id="volume"
  7365. type="16" >
  7366. </productMenu>
  7367. <productMenu id="volume+"
  7368. type="2"
  7369. url="0x6004" >
  7370. </productMenu>
  7371. <productMenu id="battery"
  7372. type="1" >
  7373. </productMenu>
  7374. <productID id="6A0A"
  7375. />
  7376. <productGroupable type="0"
  7377. />
  7378. </product>
  7379. <product id="OUTLANDER"
  7380. name="OUTLANDER"
  7381. series="Helmet"
  7382. latestVersion="1.0.7"
  7383. latestVersionVoicePrompt="1.5"
  7384. show = "1" >
  7385. <productMenu id="protocol"
  7386. type="2" >
  7387. </productMenu>
  7388. <productMenu id="ota"
  7389. type="2" >
  7390. <otaLanguages>
  7391. <otaLanguage
  7392. id="0"
  7393. name="English"
  7394. package="0"
  7395. />
  7396. <otaLanguage
  7397. id="0"
  7398. name="French"
  7399. package="1"
  7400. />
  7401. <otaLanguage
  7402. id="0"
  7403. name="Spanish"
  7404. package="2"
  7405. />
  7406. <otaLanguage
  7407. id="0"
  7408. name="Italian"
  7409. package="3"
  7410. />
  7411. <otaLanguage
  7412. id="0"
  7413. name="German"
  7414. package="4"
  7415. />
  7416. <otaLanguage
  7417. id="0"
  7418. name="Dutch"
  7419. package="5"
  7420. />
  7421. <otaLanguage
  7422. id="0"
  7423. name="Russian"
  7424. package="6"
  7425. />
  7426. <otaLanguage
  7427. id="0"
  7428. name="Chinese"
  7429. package="7"
  7430. />
  7431. <otaLanguage
  7432. id="0"
  7433. name="Korean"
  7434. package="8"
  7435. />
  7436. <otaLanguage
  7437. id="0"
  7438. name="Japanese"
  7439. package="9"
  7440. />
  7441. <otaLanguage
  7442. id="0"
  7443. name="Finnish"
  7444. package="10"
  7445. />
  7446. <otaLanguage
  7447. id="0"
  7448. name="Polish"
  7449. package="11"
  7450. />
  7451. </otaLanguages>
  7452. <otaPackages>
  7453. <package
  7454. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7455. size="5183988"
  7456. />
  7457. <package
  7458. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7459. size="5183988"
  7460. />
  7461. <package
  7462. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7463. size="5183988"
  7464. />
  7465. <package
  7466. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7467. size="5183988"
  7468. />
  7469. <package
  7470. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7471. size="5183988"
  7472. />
  7473. <package
  7474. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7475. size="5183988"
  7476. />
  7477. <package
  7478. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7479. size="5183988"
  7480. />
  7481. <package
  7482. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7483. size="5183988"
  7484. />
  7485. <package
  7486. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7487. size="5183988"
  7488. />
  7489. <package
  7490. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7491. size="5183988"
  7492. />
  7493. <package
  7494. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7495. size="5183988"
  7496. />
  7497. <package
  7498. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7499. size="5183988"
  7500. />
  7501. </otaPackages>
  7502. </productMenu>
  7503. <productMenu id="wa"
  7504. type="0" >
  7505. </productMenu>
  7506. <productMenu id="led"
  7507. type="5" >
  7508. </productMenu>
  7509. <productMenu id="led+"
  7510. type="2"
  7511. url="1" >
  7512. </productMenu>
  7513. <productMenu id="meshIntercom+"
  7514. type="3"
  7515. url="2" >
  7516. </productMenu>
  7517. <productMenu id="waveIntercom"
  7518. type="1" >
  7519. </productMenu>
  7520. <productMenu id="fmradio"
  7521. type="0" >
  7522. </productMenu>
  7523. <productMenu id="phone"
  7524. type="1" >
  7525. </productMenu>
  7526. <productMenu id="music"
  7527. type="1" >
  7528. </productMenu>
  7529. <productMenu id="musicSharing"
  7530. type="0" >
  7531. </productMenu>
  7532. <productMenu id="deviceSetting"
  7533. type="1"
  7534. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_04.xml" > <!--NS_OUTLANDER_05-->
  7535. <productMenuURL version="1.0.4"
  7536. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7537. />
  7538. </productMenu>
  7539. <productMenu id="quickGuide"
  7540. type="0"
  7541. url=""
  7542. size="1.12MB" >
  7543. </productMenu>
  7544. <productMenu id="userGuide"
  7545. type="1"
  7546. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7547. size="2.0MB" >
  7548. </productMenu>
  7549. <productMenu id="videoGuide"
  7550. type="0"
  7551. url=""
  7552. size="3.41MB" >
  7553. </productMenu>
  7554. <productMenu id="volume"
  7555. type="16" >
  7556. </productMenu>
  7557. <productMenu id="volume+"
  7558. type="2"
  7559. url="0x6004" >
  7560. </productMenu>
  7561. <productMenu id="battery"
  7562. type="1" >
  7563. </productMenu>
  7564. <productID id="6A05"
  7565. />
  7566. <productGroupable type="0"
  7567. />
  7568. </product>
  7569. <product id="OUTRUSH2"
  7570. name="OUTRUSH 2"
  7571. series="Helmet"
  7572. latestVersion="1.0.2"
  7573. latestVersionVoicePrompt="1.1"
  7574. show = "1" >
  7575. <productMenu id="protocol"
  7576. type="2" >
  7577. </productMenu>
  7578. <productMenu id="alexa"
  7579. type="0" >
  7580. </productMenu>
  7581. <productMenu id="ota"
  7582. type="2" >
  7583. <otaPackages>
  7584. <package
  7585. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7586. size="2945812"
  7587. />
  7588. </otaPackages>
  7589. </productMenu>
  7590. <productMenu id="meshIntercom+"
  7591. type="3"
  7592. url="2" >
  7593. </productMenu>
  7594. <productMenu id="waveIntercom"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="phone"
  7598. type="1" >
  7599. </productMenu>
  7600. <productMenu id="music"
  7601. type="1" >
  7602. </productMenu>
  7603. <productMenu id="musicSharing"
  7604. type="0" >
  7605. </productMenu>
  7606. <productMenu id="deviceSetting"
  7607. type="1"
  7608. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7609. <productMenuURL version="1.0"
  7610. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7611. />
  7612. </productMenu>
  7613. <productMenu id="quickGuide"
  7614. type="0"
  7615. url=""
  7616. size="1.12MB" >
  7617. </productMenu>
  7618. <productMenu id="userGuide"
  7619. type="1"
  7620. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7621. size="2.0MB" >
  7622. </productMenu>
  7623. <productMenu id="volume"
  7624. type="12" >
  7625. </productMenu>
  7626. <productMenu id="battery"
  7627. type="1" >
  7628. </productMenu>
  7629. <productID id="684A"
  7630. />
  7631. <productGroupable type="0"
  7632. />
  7633. </product>
  7634. <product id="OUTSTAR2"
  7635. name="OUTSTAR 2"
  7636. series="Helmet"
  7637. latestVersion="1.0.1"
  7638. latestVersionVoicePrompt="1.1"
  7639. show = "1" >
  7640. <productMenu id="protocol"
  7641. type="2" >
  7642. </productMenu>
  7643. <productMenu id="alexa"
  7644. type="0" >
  7645. </productMenu>
  7646. <productMenu id="ota"
  7647. type="2" >
  7648. <otaPackages>
  7649. <package
  7650. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7651. size="2945812"
  7652. />
  7653. </otaPackages>
  7654. </productMenu>
  7655. <productMenu id="meshIntercom+"
  7656. type="3"
  7657. url="2" >
  7658. </productMenu>
  7659. <productMenu id="waveIntercom"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="phone"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="music"
  7666. type="1" >
  7667. </productMenu>
  7668. <productMenu id="musicSharing"
  7669. type="0" >
  7670. </productMenu>
  7671. <productMenu id="deviceSetting"
  7672. type="1"
  7673. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7674. </productMenu>
  7675. <productMenu id="quickGuide"
  7676. type="0"
  7677. url=""
  7678. size="1.12MB" >
  7679. </productMenu>
  7680. <productMenu id="userGuide"
  7681. type="1"
  7682. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7683. size="2.0MB" >
  7684. </productMenu>
  7685. <productMenu id="volume"
  7686. type="12" >
  7687. </productMenu>
  7688. <productMenu id="battery"
  7689. type="1" >
  7690. </productMenu>
  7691. <productID id="684B"
  7692. />
  7693. <productGroupable type="0"
  7694. />
  7695. </product>
  7696. <product id="SURGE"
  7697. name="SURGE"
  7698. series="Helmet"
  7699. latestVersion="1.2"
  7700. latestVersionVoicePrompt="1.3"
  7701. show = "1" >
  7702. <productMenu id="protocol"
  7703. type="2" >
  7704. </productMenu>
  7705. <productMenu id="alexa"
  7706. type="0" >
  7707. </productMenu>
  7708. <productMenu id="ota"
  7709. type="2" >
  7710. <otaPackages>
  7711. <package
  7712. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7713. size="2945812"
  7714. />
  7715. </otaPackages>
  7716. </productMenu>
  7717. <productMenu id="meshIntercom"
  7718. type="30" >
  7719. </productMenu>
  7720. <productMenu id="meshIntercom+"
  7721. type="3"
  7722. url="2" >
  7723. <productMenuType version="1.0.1"
  7724. type="2"
  7725. />
  7726. </productMenu>
  7727. <productMenu id="waveIntercom"
  7728. type="1" >
  7729. <productMenuType version="1.0.9"
  7730. type="0"
  7731. />
  7732. </productMenu>
  7733. <productMenu id="phone"
  7734. type="1" >
  7735. </productMenu>
  7736. <productMenu id="music"
  7737. type="1" >
  7738. </productMenu>
  7739. <productMenu id="musicSharing"
  7740. type="0" >
  7741. </productMenu>
  7742. <productMenu id="deviceSetting"
  7743. type="1"
  7744. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7745. <productMenuURL version="1.1.9"
  7746. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7747. />
  7748. <productMenuURL version="1.0.1"
  7749. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7750. />
  7751. </productMenu>
  7752. <productMenu id="quickGuide"
  7753. type="0"
  7754. url=""
  7755. size="1.12MB" >
  7756. </productMenu>
  7757. <productMenu id="userGuide"
  7758. type="1"
  7759. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7760. size="2.0MB" >
  7761. </productMenu>
  7762. <productMenu id="volume"
  7763. type="12" >
  7764. </productMenu>
  7765. <productMenu id="battery"
  7766. type="1" >
  7767. </productMenu>
  7768. <productID id="6840"
  7769. />
  7770. <productGroupable type="0"
  7771. />
  7772. </product>
  7773. <product id="Cavalry2"
  7774. name="Cavalry 2"
  7775. series="Helmet"
  7776. latestVersion="1.2"
  7777. latestVersionVoicePrompt="1.3"
  7778. show = "1" >
  7779. <productMenu id="protocol"
  7780. type="2" >
  7781. </productMenu>
  7782. <productMenu id="alexa"
  7783. type="0" >
  7784. </productMenu>
  7785. <productMenu id="ota"
  7786. type="2" >
  7787. <otaPackages>
  7788. <package
  7789. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7790. size="3144148"
  7791. />
  7792. </otaPackages>
  7793. </productMenu>
  7794. <productMenu id="wa"
  7795. type="0" >
  7796. </productMenu>
  7797. <productMenu id="meshIntercom"
  7798. type="30" >
  7799. </productMenu>
  7800. <productMenu id="meshIntercom+"
  7801. type="3"
  7802. url="2" >
  7803. <productMenuType version="1.0"
  7804. type="2"
  7805. />
  7806. </productMenu>
  7807. <productMenu id="waveIntercom"
  7808. type="1" >
  7809. <productMenuType version="1.0.9"
  7810. type="0"
  7811. />
  7812. </productMenu>
  7813. <productMenu id="phone"
  7814. type="1" >
  7815. </productMenu>
  7816. <productMenu id="music"
  7817. type="1" >
  7818. </productMenu>
  7819. <productMenu id="musicSharing"
  7820. type="0" >
  7821. </productMenu>
  7822. <productMenu id="deviceSetting"
  7823. type="1"
  7824. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7825. <productMenuURL version="1.1.9"
  7826. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7827. />
  7828. <productMenuURL version="1.0"
  7829. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7830. />
  7831. </productMenu>
  7832. <productMenu id="quickGuide"
  7833. type="0"
  7834. url=""
  7835. size="1.12MB" >
  7836. </productMenu>
  7837. <productMenu id="userGuide"
  7838. type="1"
  7839. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7840. size="2.0MB" >
  7841. </productMenu>
  7842. <productMenu id="connectGuide"
  7843. type="1"
  7844. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7845. size="1.12MB" >
  7846. </productMenu>
  7847. <productMenu id="volume"
  7848. type="12" >
  7849. </productMenu>
  7850. <productMenu id="battery"
  7851. type="1" >
  7852. </productMenu>
  7853. <productID id="6839"
  7854. />
  7855. <productGroupable type="0"
  7856. />
  7857. </product>
  7858. <product id="Cavalry"
  7859. name="Cavalry"
  7860. series="Helmet"
  7861. latestVersion="1.2.2"
  7862. show = "1" >
  7863. <productMenu id="protocol"
  7864. type="0">
  7865. </productMenu>
  7866. <productMenu id="sip"
  7867. type="1" >
  7868. </productMenu>
  7869. <productMenu id="bluetoothIntercom"
  7870. type="1" >
  7871. </productMenu>
  7872. <productMenu id="phone"
  7873. type="2" >
  7874. </productMenu>
  7875. <productMenu id="fmradio"
  7876. type="3" >
  7877. </productMenu>
  7878. <productMenu id="deviceSetting"
  7879. type="1"
  7880. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7881. <productMenuURL version="1.9"
  7882. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7883. />
  7884. <productMenuURL version="1.0.1"
  7885. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7886. />
  7887. </productMenu>
  7888. <productMenu id="quickGuide"
  7889. type="1"
  7890. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7891. size="795KB" >
  7892. </productMenu>
  7893. <productMenu id="userGuide"
  7894. type="1"
  7895. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7896. size="1.87MB" >
  7897. </productMenu>
  7898. <productMenu id="connectGuide"
  7899. type="1"
  7900. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7901. size="1.12MB" >
  7902. </productMenu>
  7903. <productID id="5524"
  7904. />
  7905. <productGroupable type="0"
  7906. />
  7907. </product>
  7908. <product id="Cavalry_Lite"
  7909. name="Cavalry Lite"
  7910. series="Helmet"
  7911. latestVersion="1.0.2"
  7912. show = "1" >
  7913. <productMenu id="protocol"
  7914. type="0">
  7915. </productMenu>
  7916. <productMenu id="sip"
  7917. type="1" >
  7918. </productMenu>
  7919. <productMenu id="bluetoothIntercom"
  7920. type="1" >
  7921. </productMenu>
  7922. <productMenu id="phone"
  7923. type="2" >
  7924. </productMenu>
  7925. <productMenu id="fmradio"
  7926. type="3" >
  7927. </productMenu>
  7928. <productMenu id="deviceSetting"
  7929. type="1"
  7930. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7931. </productMenu>
  7932. <productMenu id="userGuide"
  7933. type="1"
  7934. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7935. size="1.74MB" >
  7936. </productMenu>
  7937. <productMenu id="connectGuide"
  7938. type="1"
  7939. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7940. size="1.12MB" >
  7941. </productMenu>
  7942. <productID id="5536"
  7943. />
  7944. <productGroupable type="0"
  7945. />
  7946. </product>
  7947. <product id="VORTEX"
  7948. name="VORTEX"
  7949. series="VORTEX"
  7950. latestVersion="1.0"
  7951. show = "-1" >
  7952. <productMenu id="protocol"
  7953. type="2" >
  7954. </productMenu>
  7955. <productMenu id="sip"
  7956. type="1" >
  7957. </productMenu>
  7958. <productMenu id="bluetoothIntercom"
  7959. type="1" >
  7960. </productMenu>
  7961. <productMenu id="phone"
  7962. type="1" >
  7963. </productMenu>
  7964. <productMenu id="music"
  7965. type="1" >
  7966. </productMenu>
  7967. <productMenu id="fmradio"
  7968. type="1"
  7969. url="1" >
  7970. </productMenu>
  7971. <productMenu id="deviceSetting"
  7972. type="1"
  7973. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  7974. </productMenu>
  7975. <productMenu id="quickGuide"
  7976. type="0"
  7977. url=""
  7978. size="934KB" >
  7979. </productMenu>
  7980. <productMenu id="userGuide"
  7981. type="1"
  7982. url=""
  7983. size="1.14MB" >
  7984. </productMenu>
  7985. <productMenu id="connectGuide"
  7986. type="0"
  7987. url=""
  7988. size="1.12MB" >
  7989. </productMenu>
  7990. <productMenu id="volume"
  7991. type="15" >
  7992. </productMenu>
  7993. <productID id="3451"
  7994. />
  7995. <productGroupable type="0"
  7996. />
  7997. </product>
  7998. <product id="SF4"
  7999. name="SF4"
  8000. series="SF"
  8001. latestVersion="1.1.5"
  8002. show = "-1" >
  8003. <productMenu id="protocol"
  8004. type="1"
  8005. url="3">
  8006. </productMenu>
  8007. <productMenu id="sip"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="bluetoothIntercom"
  8011. type="1" >
  8012. </productMenu>
  8013. <productMenu id="phone"
  8014. type="1" >
  8015. </productMenu>
  8016. <productMenu id="music"
  8017. type="1" >
  8018. </productMenu>
  8019. <productMenu id="fmradio"
  8020. type="1" >
  8021. </productMenu>
  8022. <productMenu id="deviceSetting"
  8023. type="1"
  8024. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8025. <productMenuURL version="1.0.1"
  8026. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8027. />
  8028. </productMenu>
  8029. <productMenu id="quickGuide"
  8030. type="1"
  8031. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8032. size="607KB" >
  8033. </productMenu>
  8034. <productMenu id="userGuide"
  8035. type="1"
  8036. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8037. size="1.91MB" >
  8038. </productMenu>
  8039. <productMenu id="volume"
  8040. type="4" >
  8041. </productMenu>
  8042. <productID id="5414"
  8043. />
  8044. <productGroupable type="0"
  8045. />
  8046. </product>
  8047. <product id="SF4"
  8048. name="SF4"
  8049. series="SF"
  8050. latestVersion="3.4.4"
  8051. show = "1" >
  8052. <productMenu id="protocol"
  8053. type="2" >
  8054. </productMenu>
  8055. <productMenu id="sip"
  8056. type="1" >
  8057. </productMenu>
  8058. <productMenu id="bluetoothIntercom"
  8059. type="1" >
  8060. </productMenu>
  8061. <productMenu id="phone"
  8062. type="1" >
  8063. </productMenu>
  8064. <productMenu id="music"
  8065. type="1" >
  8066. </productMenu>
  8067. <productMenu id="fmradio"
  8068. type="1" >
  8069. </productMenu>
  8070. <productMenu id="deviceSetting"
  8071. type="1"
  8072. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8073. <productMenuURL version="3.0"
  8074. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8075. />
  8076. </productMenu>
  8077. <productMenu id="quickGuide"
  8078. type="0"
  8079. url=""
  8080. size="934KB" >
  8081. </productMenu>
  8082. <productMenu id="userGuide"
  8083. type="1"
  8084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8085. size="1.14MB" >
  8086. </productMenu>
  8087. <productMenu id="connectGuide"
  8088. type="1"
  8089. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8090. size="1.12MB" >
  8091. </productMenu>
  8092. <productMenu id="volume"
  8093. type="15" >
  8094. </productMenu>
  8095. <productID id="3370"
  8096. />
  8097. <productGroupable type="0"
  8098. />
  8099. </product>
  8100. <product id="SF2"
  8101. name="SF2"
  8102. series="SF"
  8103. latestVersion="1.2.1"
  8104. show = "-1" >
  8105. <productMenu id="protocol"
  8106. type="1"
  8107. url="2">
  8108. </productMenu>
  8109. <productMenu id="sip"
  8110. type="1" >
  8111. </productMenu>
  8112. <productMenu id="bluetoothIntercom"
  8113. type="1" >
  8114. </productMenu>
  8115. <productMenu id="phone"
  8116. type="1" >
  8117. </productMenu>
  8118. <productMenu id="music"
  8119. type="1" >
  8120. </productMenu>
  8121. <productMenu id="fmradio"
  8122. type="1" >
  8123. </productMenu>
  8124. <productMenu id="deviceSetting"
  8125. type="1"
  8126. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8127. <productMenuURL version="1.0.1"
  8128. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8129. />
  8130. </productMenu>
  8131. <productMenu id="quickGuide"
  8132. type="1"
  8133. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8134. size="607KB" >
  8135. </productMenu>
  8136. <productMenu id="userGuide"
  8137. type="1"
  8138. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8139. size="1.91MB" >
  8140. </productMenu>
  8141. <productMenu id="volume"
  8142. type="4" >
  8143. </productMenu>
  8144. <productID id="5412"
  8145. />
  8146. <productGroupable type="0"
  8147. />
  8148. </product>
  8149. <product id="SF2"
  8150. name="SF2"
  8151. series="SF"
  8152. latestVersion="3.3.4"
  8153. show = "1" >
  8154. <productMenu id="protocol"
  8155. type="2" >
  8156. </productMenu>
  8157. <productMenu id="sip"
  8158. type="1" >
  8159. </productMenu>
  8160. <productMenu id="bluetoothIntercom"
  8161. type="1" >
  8162. </productMenu>
  8163. <productMenu id="phone"
  8164. type="1" >
  8165. </productMenu>
  8166. <productMenu id="music"
  8167. type="1" >
  8168. </productMenu>
  8169. <productMenu id="fmradio"
  8170. type="0" >
  8171. </productMenu>
  8172. <productMenu id="deviceSetting"
  8173. type="1"
  8174. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8175. <productMenuURL version="3.0"
  8176. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8177. />
  8178. </productMenu>
  8179. <productMenu id="quickGuide"
  8180. type="0"
  8181. url=""
  8182. size="934KB" >
  8183. </productMenu>
  8184. <productMenu id="userGuide"
  8185. type="1"
  8186. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8187. size="1.14MB" >
  8188. </productMenu>
  8189. <productMenu id="connectGuide"
  8190. type="1"
  8191. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8192. size="1.12MB" >
  8193. </productMenu>
  8194. <productMenu id="volume"
  8195. type="15" >
  8196. </productMenu>
  8197. <productID id="3360"
  8198. />
  8199. <productGroupable type="0"
  8200. />
  8201. </product>
  8202. <product id="SF1"
  8203. name="SF1"
  8204. series="SF"
  8205. latestVersion="2.0.5"
  8206. show = "-1" >
  8207. <productMenu id="protocol"
  8208. type="1"
  8209. url="1">
  8210. </productMenu>
  8211. <productMenu id="sip"
  8212. type="1" >
  8213. </productMenu>
  8214. <productMenu id="bluetoothIntercom"
  8215. type="1" >
  8216. <productMenuType version="1.1"
  8217. type="0"
  8218. />
  8219. </productMenu>
  8220. <productMenu id="phone"
  8221. type="1" >
  8222. </productMenu>
  8223. <productMenu id="music"
  8224. type="1" >
  8225. </productMenu>
  8226. <productMenu id="deviceSetting"
  8227. type="1"
  8228. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8229. <productMenuURL version="1.1"
  8230. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8231. />
  8232. <productMenuURL version="1.0"
  8233. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8234. />
  8235. </productMenu>
  8236. <productMenu id="quickGuide"
  8237. type="1"
  8238. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8239. size="401KB" >
  8240. </productMenu>
  8241. <productMenu id="userGuide"
  8242. type="1"
  8243. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8244. size="1.91MB" >
  8245. </productMenu>
  8246. <productMenu id="volume"
  8247. type="3" >
  8248. </productMenu>
  8249. <productID id="5410"
  8250. />
  8251. <productGroupable type="0"
  8252. />
  8253. </product>
  8254. <product id="SF1"
  8255. name="SF1"
  8256. series="SF"
  8257. latestVersion="3.3.4"
  8258. show = "1" >
  8259. <productMenu id="protocol"
  8260. type="2" >
  8261. </productMenu>
  8262. <productMenu id="sip"
  8263. type="1" >
  8264. </productMenu>
  8265. <productMenu id="bluetoothIntercom"
  8266. type="1" >
  8267. </productMenu>
  8268. <productMenu id="phone"
  8269. type="1" >
  8270. </productMenu>
  8271. <productMenu id="music"
  8272. type="1" >
  8273. </productMenu>
  8274. <productMenu id="fmradio"
  8275. type="0" >
  8276. </productMenu>
  8277. <productMenu id="deviceSetting"
  8278. type="1"
  8279. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8280. <productMenuURL version="3.0"
  8281. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8282. />
  8283. </productMenu>
  8284. <productMenu id="quickGuide"
  8285. type="0"
  8286. url=""
  8287. size="934KB" >
  8288. </productMenu>
  8289. <productMenu id="userGuide"
  8290. type="1"
  8291. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8292. size="1.14MB" >
  8293. </productMenu>
  8294. <productMenu id="connectGuide"
  8295. type="1"
  8296. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8297. size="1.12MB" >
  8298. </productMenu>
  8299. <productMenu id="volume"
  8300. type="15" >
  8301. </productMenu>
  8302. <productID id="3350"
  8303. />
  8304. <productGroupable type="0"
  8305. />
  8306. </product>
  8307. <product id="SFR"
  8308. name="SFR"
  8309. series="SF"
  8310. latestVersion="1.1.1"
  8311. show = "1" >
  8312. <productMenu id="protocol"
  8313. type="1"
  8314. url="3">
  8315. </productMenu>
  8316. <productMenu id="sip"
  8317. type="1" >
  8318. </productMenu>
  8319. <productMenu id="bluetoothIntercom"
  8320. type="1" >
  8321. </productMenu>
  8322. <productMenu id="phone"
  8323. type="1" >
  8324. </productMenu>
  8325. <productMenu id="music"
  8326. type="1" >
  8327. </productMenu>
  8328. <productMenu id="fmradio"
  8329. type="1" >
  8330. </productMenu>
  8331. <productMenu id="deviceSetting"
  8332. type="1"
  8333. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8334. </productMenu>
  8335. <productMenu id="quickGuide"
  8336. type="1"
  8337. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8338. size="607KB" >
  8339. </productMenu>
  8340. <productMenu id="userGuide"
  8341. type="1"
  8342. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8343. size="1.91MB" >
  8344. </productMenu>
  8345. <productMenu id="volume"
  8346. type="4" >
  8347. </productMenu>
  8348. <productID id="5418"
  8349. />
  8350. <productGroupable type="0"
  8351. />
  8352. </product>
  8353. <product id="20S"
  8354. name="20S"
  8355. series="20"
  8356. latestVersion="2.2.3"
  8357. show = "1" >
  8358. <productMenu id="protocol"
  8359. type="0">
  8360. </productMenu>
  8361. <productMenu id="wa"
  8362. type="5" >
  8363. </productMenu>
  8364. <productMenu id="sip"
  8365. type="1" >
  8366. <productMenuType version="1.0"
  8367. type="0"
  8368. />
  8369. </productMenu>
  8370. <productMenu id="bluetoothIntercom"
  8371. type="1" >
  8372. <productMenuType version="1.0"
  8373. type="0"
  8374. />
  8375. </productMenu>
  8376. <productMenu id="intercomSetting"
  8377. type="1" >
  8378. </productMenu>
  8379. <productMenu id="phone"
  8380. type="2" >
  8381. </productMenu>
  8382. <productMenu id="fmradio"
  8383. type="3" >
  8384. </productMenu>
  8385. <productMenu id="deviceSetting"
  8386. type="1"
  8387. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8388. <productMenuURL version="2.0.2"
  8389. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8390. />
  8391. <productMenuURL version="1.5"
  8392. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8393. />
  8394. <productMenuURL version="1.4.1"
  8395. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8396. />
  8397. <productMenuURL version="1.1"
  8398. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8399. />
  8400. <productMenuURL version="1.0"
  8401. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8402. />
  8403. </productMenu>
  8404. <productMenu id="quickGuide"
  8405. type="0"
  8406. url=""
  8407. size="264KB" >
  8408. </productMenu>
  8409. <productMenu id="userGuide"
  8410. type="1"
  8411. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8412. size="3.09MB" >
  8413. </productMenu>
  8414. <productMenu id="connectGuide"
  8415. type="1"
  8416. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8417. size="1.12MB" >
  8418. </productMenu>
  8419. <productID id="4210"
  8420. />
  8421. <productGroupable type="1"
  8422. />
  8423. </product>
  8424. <product id="20S_EVO"
  8425. name="20S EVO"
  8426. series="20"
  8427. latestVersion="2.2.3"
  8428. show = "1" >
  8429. <productMenu id="protocol"
  8430. type="0">
  8431. </productMenu>
  8432. <productMenu id="wa"
  8433. type="5" >
  8434. </productMenu>
  8435. <productMenu id="sip"
  8436. type="1" >
  8437. <productMenuType version="1.0"
  8438. type="0"
  8439. />
  8440. </productMenu>
  8441. <productMenu id="bluetoothIntercom"
  8442. type="1" >
  8443. <productMenuType version="1.0"
  8444. type="0"
  8445. />
  8446. </productMenu>
  8447. <productMenu id="intercomSetting"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="phone"
  8451. type="2" >
  8452. </productMenu>
  8453. <productMenu id="fmradio"
  8454. type="3" >
  8455. </productMenu>
  8456. <productMenu id="deviceSetting"
  8457. type="1"
  8458. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8459. <productMenuURL version="2.0.2"
  8460. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8461. />
  8462. <productMenuURL version="1.5"
  8463. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8464. />
  8465. <productMenuURL version="1.4.1"
  8466. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8467. />
  8468. <productMenuURL version="1.1"
  8469. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8470. />
  8471. <productMenuURL version="1.0"
  8472. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8473. />
  8474. </productMenu>
  8475. <productMenu id="quickGuide"
  8476. type="0"
  8477. url=""
  8478. size="264KB" >
  8479. </productMenu>
  8480. <productMenu id="userGuide"
  8481. type="1"
  8482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8483. size="3.09MB" >
  8484. </productMenu>
  8485. <productMenu id="connectGuide"
  8486. type="1"
  8487. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8488. size="1.12MB" >
  8489. </productMenu>
  8490. <productID id="4210"
  8491. />
  8492. <productProductKey key="16"
  8493. />
  8494. <productGroupable type="1"
  8495. />
  8496. </product>
  8497. <product id="10S"
  8498. name="10S"
  8499. series="10"
  8500. latestVersion="3.0.1"
  8501. show = "1" >
  8502. <productMenu id="protocol"
  8503. type="3" >
  8504. </productMenu>
  8505. <productMenu id="sip"
  8506. type="1" >
  8507. </productMenu>
  8508. <productMenu id="bluetoothIntercom"
  8509. type="1" >
  8510. </productMenu>
  8511. <productMenu id="phone"
  8512. type="1" >
  8513. </productMenu>
  8514. <productMenu id="deviceSetting"
  8515. type="1"
  8516. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8517. </productMenu>
  8518. <productMenu id="quickGuide"
  8519. type="1"
  8520. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8521. size="934KB" >
  8522. </productMenu>
  8523. <productMenu id="userGuide"
  8524. type="1"
  8525. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8526. size="1.14MB" >
  8527. </productMenu>
  8528. <productMenu id="connectGuide"
  8529. type="1"
  8530. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8531. size="1.12MB" >
  8532. </productMenu>
  8533. <productID id="3380"
  8534. />
  8535. <productGroupable type="0"
  8536. />
  8537. </product>
  8538. <product id="10S"
  8539. name="10S"
  8540. series="10"
  8541. latestVersion="2.1.1"
  8542. show = "-1" >
  8543. <productMenu id="protocol"
  8544. type="0">
  8545. </productMenu>
  8546. <productMenu id="sip"
  8547. type="1" >
  8548. </productMenu>
  8549. <productMenu id="bluetoothIntercom"
  8550. type="1" >
  8551. </productMenu>
  8552. <productMenu id="phone"
  8553. type="2" >
  8554. </productMenu>
  8555. <productMenu id="fmradio"
  8556. type="3" >
  8557. </productMenu>
  8558. <productMenu id="deviceSetting"
  8559. type="1"
  8560. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8561. <productMenuURL version="1.5"
  8562. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8563. />
  8564. <productMenuURL version="1.3.1"
  8565. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8566. />
  8567. </productMenu>
  8568. <productMenu id="quickGuide"
  8569. type="1"
  8570. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8571. size="310KB" >
  8572. </productMenu>
  8573. <productMenu id="userGuide"
  8574. type="1"
  8575. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8576. size="1.57MB" >
  8577. </productMenu>
  8578. <productID id="5530"
  8579. />
  8580. <productGroupable type="0"
  8581. />
  8582. </product>
  8583. <product id="Apex"
  8584. name="Apex"
  8585. series="Apex"
  8586. latestVersion="1.0"
  8587. latestVersionVoicePrompt="1.0"
  8588. show = "-1" >
  8589. <productMenu id="protocol"
  8590. type="2" >
  8591. </productMenu>
  8592. <productMenu id="serialNumber"
  8593. type="1" >
  8594. </productMenu>
  8595. <productMenu id="ota"
  8596. type="0" >
  8597. <otaLanguages>
  8598. <otaLanguage
  8599. id="0"
  8600. name="English"
  8601. package="0"
  8602. />
  8603. <otaLanguage
  8604. id="0"
  8605. name="French"
  8606. package="1"
  8607. />
  8608. <otaLanguage
  8609. id="0"
  8610. name="Spanish"
  8611. package="2"
  8612. />
  8613. <otaLanguage
  8614. id="0"
  8615. name="Italian"
  8616. package="3"
  8617. />
  8618. <otaLanguage
  8619. id="0"
  8620. name="German"
  8621. package="4"
  8622. />
  8623. <otaLanguage
  8624. id="0"
  8625. name="Dutch"
  8626. package="5"
  8627. />
  8628. <otaLanguage
  8629. id="0"
  8630. name="Russian"
  8631. package="6"
  8632. />
  8633. <otaLanguage
  8634. id="0"
  8635. name="Chinese"
  8636. package="7"
  8637. />
  8638. <otaLanguage
  8639. id="0"
  8640. name="Korean"
  8641. package="8"
  8642. />
  8643. <otaLanguage
  8644. id="0"
  8645. name="Japanese"
  8646. package="9"
  8647. />
  8648. <otaLanguage
  8649. id="0"
  8650. name="Finnish"
  8651. package="10"
  8652. />
  8653. <otaLanguage
  8654. id="0"
  8655. name="Polish"
  8656. package="11"
  8657. />
  8658. </otaLanguages>
  8659. <otaPackages>
  8660. <package
  8661. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8662. size="5183988"
  8663. />
  8664. <package
  8665. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8666. size="5183988"
  8667. />
  8668. <package
  8669. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8670. size="5183988"
  8671. />
  8672. <package
  8673. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8674. size="5183988"
  8675. />
  8676. <package
  8677. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8678. size="5183988"
  8679. />
  8680. <package
  8681. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8682. size="5183988"
  8683. />
  8684. <package
  8685. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8686. size="5183988"
  8687. />
  8688. <package
  8689. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8690. size="5183988"
  8691. />
  8692. <package
  8693. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8694. size="5183988"
  8695. />
  8696. <package
  8697. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8698. size="5183988"
  8699. />
  8700. <package
  8701. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8702. size="5183988"
  8703. />
  8704. <package
  8705. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8706. size="5183988"
  8707. />
  8708. </otaPackages>
  8709. </productMenu>
  8710. <productMenu id="sip"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="bluetoothIntercom"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="phone"
  8717. type="1" >
  8718. </productMenu>
  8719. <productMenu id="music"
  8720. type="1" >
  8721. </productMenu>
  8722. <productMenu id="fmradio"
  8723. type="1"
  8724. url="1" >
  8725. </productMenu>
  8726. <productMenu id="deviceSetting"
  8727. type="1"
  8728. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8729. </productMenu>
  8730. <productMenu id="quickGuide"
  8731. type="0"
  8732. url=""
  8733. size="934KB" >
  8734. </productMenu>
  8735. <productMenu id="userGuide"
  8736. type="1"
  8737. url=""
  8738. size="1.14MB" >
  8739. </productMenu>
  8740. <productMenu id="volume"
  8741. type="15" >
  8742. </productMenu>
  8743. <productID id="3452"
  8744. />
  8745. <productGroupable type="0"
  8746. />
  8747. </product>
  8748. <product id="ApexPlus"
  8749. name="Apex Plus"
  8750. series="Apex"
  8751. latestVersion="1.0"
  8752. latestVersionVoicePrompt="1.0"
  8753. show = "-1" >
  8754. <productMenu id="protocol"
  8755. type="2" >
  8756. </productMenu>
  8757. <productMenu id="serialNumber"
  8758. type="1" >
  8759. </productMenu>
  8760. <productMenu id="ota"
  8761. type="0" >
  8762. <otaLanguages>
  8763. <otaLanguage
  8764. id="0"
  8765. name="English"
  8766. package="0"
  8767. />
  8768. <otaLanguage
  8769. id="0"
  8770. name="French"
  8771. package="1"
  8772. />
  8773. <otaLanguage
  8774. id="0"
  8775. name="Spanish"
  8776. package="2"
  8777. />
  8778. <otaLanguage
  8779. id="0"
  8780. name="Italian"
  8781. package="3"
  8782. />
  8783. <otaLanguage
  8784. id="0"
  8785. name="German"
  8786. package="4"
  8787. />
  8788. <otaLanguage
  8789. id="0"
  8790. name="Dutch"
  8791. package="5"
  8792. />
  8793. <otaLanguage
  8794. id="0"
  8795. name="Russian"
  8796. package="6"
  8797. />
  8798. <otaLanguage
  8799. id="0"
  8800. name="Chinese"
  8801. package="7"
  8802. />
  8803. <otaLanguage
  8804. id="0"
  8805. name="Korean"
  8806. package="8"
  8807. />
  8808. <otaLanguage
  8809. id="0"
  8810. name="Japanese"
  8811. package="9"
  8812. />
  8813. <otaLanguage
  8814. id="0"
  8815. name="Finnish"
  8816. package="10"
  8817. />
  8818. <otaLanguage
  8819. id="0"
  8820. name="Polish"
  8821. package="11"
  8822. />
  8823. </otaLanguages>
  8824. <otaPackages>
  8825. <package
  8826. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8827. size="5183988"
  8828. />
  8829. <package
  8830. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8831. size="5183988"
  8832. />
  8833. <package
  8834. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8835. size="5183988"
  8836. />
  8837. <package
  8838. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  8839. size="5183988"
  8840. />
  8841. <package
  8842. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  8843. size="5183988"
  8844. />
  8845. <package
  8846. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  8847. size="5183988"
  8848. />
  8849. <package
  8850. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  8851. size="5183988"
  8852. />
  8853. <package
  8854. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  8855. size="5183988"
  8856. />
  8857. <package
  8858. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  8859. size="5183988"
  8860. />
  8861. <package
  8862. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  8863. size="5183988"
  8864. />
  8865. <package
  8866. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  8867. size="5183988"
  8868. />
  8869. <package
  8870. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  8871. size="5183988"
  8872. />
  8873. </otaPackages>
  8874. </productMenu>
  8875. <productMenu id="sip"
  8876. type="1" >
  8877. </productMenu>
  8878. <productMenu id="bluetoothIntercom"
  8879. type="1" >
  8880. </productMenu>
  8881. <productMenu id="phone"
  8882. type="1" >
  8883. </productMenu>
  8884. <productMenu id="music"
  8885. type="1" >
  8886. </productMenu>
  8887. <productMenu id="fmradio"
  8888. type="1"
  8889. url="1" >
  8890. </productMenu>
  8891. <productMenu id="deviceSetting"
  8892. type="1"
  8893. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8894. </productMenu>
  8895. <productMenu id="quickGuide"
  8896. type="0"
  8897. url=""
  8898. size="934KB" >
  8899. </productMenu>
  8900. <productMenu id="userGuide"
  8901. type="1"
  8902. url=""
  8903. size="1.14MB" >
  8904. </productMenu>
  8905. <productMenu id="volume"
  8906. type="15" >
  8907. </productMenu>
  8908. <productID id="3453"
  8909. />
  8910. <productGroupable type="0"
  8911. />
  8912. </product>
  8913. <product id="10R2"
  8914. name="10R 2"
  8915. series="10"
  8916. latestVersion="0.9"
  8917. latestVersionVoicePrompt="1.1"
  8918. show = "-1" >
  8919. <productMenu id="protocol"
  8920. type="2" >
  8921. </productMenu>
  8922. <productMenu id="ota"
  8923. type="2" >
  8924. <otaPackages>
  8925. <package
  8926. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8927. size="2945812"
  8928. />
  8929. </otaPackages>
  8930. </productMenu>
  8931. <productMenu id="sip"
  8932. type="1" >
  8933. </productMenu>
  8934. <productMenu id="bluetoothIntercom"
  8935. type="1" >
  8936. </productMenu>
  8937. <productMenu id="phone"
  8938. type="1" >
  8939. </productMenu>
  8940. <productMenu id="music"
  8941. type="1" >
  8942. </productMenu>
  8943. <productMenu id="fmradio"
  8944. type="1"
  8945. url="1" >
  8946. </productMenu>
  8947. <productMenu id="deviceSetting"
  8948. type="1"
  8949. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8950. </productMenu>
  8951. <productMenu id="quickGuide"
  8952. type="1"
  8953. url=""
  8954. size="934KB" >
  8955. </productMenu>
  8956. <productMenu id="userGuide"
  8957. type="0"
  8958. url=""
  8959. size="1.14MB" >
  8960. </productMenu>
  8961. <productMenu id="volume"
  8962. type="15" >
  8963. </productMenu>
  8964. <productID id="4000"
  8965. />
  8966. <productGroupable type="0"
  8967. />
  8968. </product>
  8969. <product id="10R"
  8970. name="10R"
  8971. series="10"
  8972. latestVersion="2.1.1"
  8973. show = "1" >
  8974. <productMenu id="protocol"
  8975. type="0">
  8976. </productMenu>
  8977. <productMenu id="sip"
  8978. type="1" >
  8979. <productMenuType version="1.0.2"
  8980. type="0"
  8981. />
  8982. </productMenu>
  8983. <productMenu id="bluetoothIntercom"
  8984. type="1" >
  8985. <productMenuType version="1.0.2"
  8986. type="0"
  8987. />
  8988. </productMenu>
  8989. <productMenu id="phone"
  8990. type="2" >
  8991. </productMenu>
  8992. <productMenu id="fmradio"
  8993. type="3" >
  8994. </productMenu>
  8995. <productMenu id="deviceSetting"
  8996. type="1"
  8997. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8998. <productMenuURL version="1.4"
  8999. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9000. />
  9001. <productMenuURL version="1.2.1"
  9002. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9003. />
  9004. <productMenuURL version="1.0.2"
  9005. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9006. />
  9007. <productMenuURL version="1.0"
  9008. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9009. />
  9010. </productMenu>
  9011. <productMenu id="quickGuide"
  9012. type="1"
  9013. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9014. size="400KB" >
  9015. </productMenu>
  9016. <productMenu id="userGuide"
  9017. type="1"
  9018. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9019. size="2.75MB" >
  9020. </productMenu>
  9021. <productMenu id="connectGuide"
  9022. type="1"
  9023. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9024. size="1.12MB" >
  9025. </productMenu>
  9026. <productID id="5520"
  9027. />
  9028. <productGroupable type="0"
  9029. />
  9030. </product>
  9031. <product id="10C_EVO"
  9032. name="10C EVO"
  9033. series="10"
  9034. latestVersion="1.7"
  9035. show = "1" >
  9036. <productMenu id="protocol"
  9037. type="0">
  9038. </productMenu>
  9039. <productMenu id="sip"
  9040. type="1" >
  9041. </productMenu>
  9042. <productMenu id="bluetoothIntercom"
  9043. type="1" >
  9044. </productMenu>
  9045. <productMenu id="phone"
  9046. type="2" >
  9047. </productMenu>
  9048. <productMenu id="fmradio"
  9049. type="3" >
  9050. </productMenu>
  9051. <productMenu id="deviceSetting"
  9052. type="1"
  9053. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9054. <productMenuURL version="1.3.1"
  9055. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9056. />
  9057. </productMenu>
  9058. <productMenu id="quickGuide"
  9059. type="1"
  9060. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9061. size="1.32MB" >
  9062. </productMenu>
  9063. <productMenu id="userGuide"
  9064. type="1"
  9065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9066. size="1.68MB" >
  9067. </productMenu>
  9068. <productMenu id="connectGuide"
  9069. type="1"
  9070. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9071. size="1.12MB" >
  9072. </productMenu>
  9073. <productID id="5570"
  9074. />
  9075. <productGroupable type="0"
  9076. />
  9077. </product>
  9078. <product id="10C_Pro"
  9079. name="10C Pro"
  9080. series="10"
  9081. latestVersion="2.7.1"
  9082. show = "1" >
  9083. <productMenu id="protocol"
  9084. type="0">
  9085. </productMenu>
  9086. <productMenu id="sip"
  9087. type="1" >
  9088. </productMenu>
  9089. <productMenu id="bluetoothIntercom"
  9090. type="1" >
  9091. </productMenu>
  9092. <productMenu id="phone"
  9093. type="2" >
  9094. </productMenu>
  9095. <productMenu id="fmradio"
  9096. type="3" >
  9097. </productMenu>
  9098. <productMenu id="deviceSetting"
  9099. type="1"
  9100. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9101. <productMenuURL version="2.5.1"
  9102. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9103. />
  9104. <productMenuURL version="1.0"
  9105. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9106. />
  9107. </productMenu>
  9108. <productMenu id="quickGuide"
  9109. type="1"
  9110. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9111. size="651KB" >
  9112. </productMenu>
  9113. <productMenu id="userGuide"
  9114. type="1"
  9115. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9116. size="2.34MB" >
  9117. </productMenu>
  9118. <productMenu id="connectGuide"
  9119. type="1"
  9120. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9121. size="1.12MB" >
  9122. </productMenu>
  9123. <productID id="5580"
  9124. />
  9125. <productGroupable type="0"
  9126. />
  9127. </product>
  9128. <product id="10C"
  9129. name="10C"
  9130. series="10"
  9131. latestVersion="3.0.4"
  9132. show = "1" >
  9133. <productMenu id="protocol"
  9134. type="0">
  9135. </productMenu>
  9136. <productMenu id="sip"
  9137. type="1" >
  9138. <productMenuType version="1.0.4"
  9139. type="0"
  9140. />
  9141. </productMenu>
  9142. <productMenu id="bluetoothIntercom"
  9143. type="1" >
  9144. <productMenuType version="1.0.4"
  9145. type="0"
  9146. />
  9147. </productMenu>
  9148. <productMenu id="phone"
  9149. type="2" >
  9150. </productMenu>
  9151. <productMenu id="fmradio"
  9152. type="3" >
  9153. </productMenu>
  9154. <productMenu id="deviceSetting"
  9155. type="1"
  9156. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9157. <productMenuURL version="2.3"
  9158. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9159. />
  9160. <productMenuURL version="2.1.1"
  9161. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9162. />
  9163. <productMenuURL version="1.0.4"
  9164. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9165. />
  9166. <productMenuURL version="1.0.2"
  9167. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9168. />
  9169. </productMenu>
  9170. <productMenu id="quickGuide"
  9171. type="1"
  9172. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9173. size="935KB" >
  9174. </productMenu>
  9175. <productMenu id="userGuide"
  9176. type="1"
  9177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9178. size="2.82MB" >
  9179. </productMenu>
  9180. <productMenu id="connectGuide"
  9181. type="1"
  9182. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9183. size="1.12MB" >
  9184. </productMenu>
  9185. <productID id="5510"
  9186. />
  9187. <productGroupable type="0"
  9188. />
  9189. </product>
  9190. <product id="10U_GT_AIR"
  9191. name="10U GT-Air"
  9192. series="10"
  9193. latestVersion="2.0.4"
  9194. show = "1" >
  9195. <productMenu id="protocol"
  9196. type="0">
  9197. </productMenu>
  9198. <productMenu id="sip"
  9199. type="1" >
  9200. <productMenuType version="1.0.2"
  9201. type="0"
  9202. />
  9203. </productMenu>
  9204. <productMenu id="bluetoothIntercom"
  9205. type="1" >
  9206. <productMenuType version="1.0.2"
  9207. type="0"
  9208. />
  9209. </productMenu>
  9210. <productMenu id="phone"
  9211. type="2" >
  9212. </productMenu>
  9213. <productMenu id="fmradio"
  9214. type="3" >
  9215. </productMenu>
  9216. <productMenu id="deviceSetting"
  9217. type="1"
  9218. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9219. <productMenuURL version="1.3.2"
  9220. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9221. />
  9222. <productMenuURL version="1.0.2"
  9223. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9224. />
  9225. </productMenu>
  9226. <productMenu id="quickGuide"
  9227. type="1"
  9228. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9229. size="685KB" >
  9230. </productMenu>
  9231. <productMenu id="userGuide"
  9232. type="1"
  9233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9234. size="684KB" >
  9235. </productMenu>
  9236. <productMenu id="connectGuide"
  9237. type="1"
  9238. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9239. size="1.12MB" >
  9240. </productMenu>
  9241. <productID id="5610"
  9242. />
  9243. <productGroupable type="0"
  9244. />
  9245. </product>
  9246. <product id="10U_NEOTEC"
  9247. name="10U Neotec"
  9248. series="10"
  9249. latestVersion="2.0.4"
  9250. show = "1" >
  9251. <productMenu id="protocol"
  9252. type="0">
  9253. </productMenu>
  9254. <productMenu id="sip"
  9255. type="1" >
  9256. <productMenuType version="1.0.2"
  9257. type="0"
  9258. />
  9259. </productMenu>
  9260. <productMenu id="bluetoothIntercom"
  9261. type="1" >
  9262. <productMenuType version="1.0.2"
  9263. type="0"
  9264. />
  9265. </productMenu>
  9266. <productMenu id="phone"
  9267. type="2" >
  9268. </productMenu>
  9269. <productMenu id="fmradio"
  9270. type="3" >
  9271. </productMenu>
  9272. <productMenu id="deviceSetting"
  9273. type="1"
  9274. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9275. <productMenuURL version="1.3.2"
  9276. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9277. />
  9278. <productMenuURL version="1.0.2"
  9279. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9280. />
  9281. </productMenu>
  9282. <productMenu id="quickGuide"
  9283. type="1"
  9284. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9285. size="689KB" >
  9286. </productMenu>
  9287. <productMenu id="userGuide"
  9288. type="1"
  9289. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9290. size="684KB" >
  9291. </productMenu>
  9292. <productMenu id="connectGuide"
  9293. type="1"
  9294. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9295. size="1.12MB" >
  9296. </productMenu>
  9297. <productID id="5611"
  9298. />
  9299. <productGroupable type="0"
  9300. />
  9301. </product>
  9302. <product id="10U_J_CRUISE"
  9303. name="10U J-Cruise"
  9304. series="10"
  9305. latestVersion="2.0.4"
  9306. show = "1" >
  9307. <productMenu id="protocol"
  9308. type="0">
  9309. </productMenu>
  9310. <productMenu id="sip"
  9311. type="1" >
  9312. <productMenuType version="1.0.2"
  9313. type="0"
  9314. />
  9315. </productMenu>
  9316. <productMenu id="bluetoothIntercom"
  9317. type="1" >
  9318. <productMenuType version="1.0.2"
  9319. type="0"
  9320. />
  9321. </productMenu>
  9322. <productMenu id="phone"
  9323. type="2" >
  9324. </productMenu>
  9325. <productMenu id="fmradio"
  9326. type="3" >
  9327. </productMenu>
  9328. <productMenu id="deviceSetting"
  9329. type="1"
  9330. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9331. <productMenuURL version="1.3.2"
  9332. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9333. />
  9334. <productMenuURL version="1.0.2"
  9335. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9336. />
  9337. </productMenu>
  9338. <productMenu id="quickGuide"
  9339. type="1"
  9340. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9341. size="686KB" >
  9342. </productMenu>
  9343. <productMenu id="userGuide"
  9344. type="1"
  9345. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9346. size="684KB" >
  9347. </productMenu>
  9348. <productMenu id="connectGuide"
  9349. type="1"
  9350. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9351. size="1.12MB" >
  9352. </productMenu>
  9353. <productID id="5612"
  9354. />
  9355. <productGroupable type="0"
  9356. />
  9357. </product>
  9358. <product id="10U_C3"
  9359. name="10U C3/C3Pro"
  9360. series="10"
  9361. latestVersion="2.0.4"
  9362. show = "1" >
  9363. <productMenu id="protocol"
  9364. type="0">
  9365. </productMenu>
  9366. <productMenu id="sip"
  9367. type="1" >
  9368. <productMenuType version="1.0.2"
  9369. type="0"
  9370. />
  9371. </productMenu>
  9372. <productMenu id="bluetoothIntercom"
  9373. type="1" >
  9374. <productMenuType version="1.0.2"
  9375. type="0"
  9376. />
  9377. </productMenu>
  9378. <productMenu id="phone"
  9379. type="2" >
  9380. </productMenu>
  9381. <productMenu id="fmradio"
  9382. type="3" >
  9383. </productMenu>
  9384. <productMenu id="deviceSetting"
  9385. type="1"
  9386. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9387. <productMenuURL version="1.3.2"
  9388. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9389. />
  9390. <productMenuURL version="1.0.2"
  9391. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9392. />
  9393. </productMenu>
  9394. <productMenu id="quickGuide"
  9395. type="1"
  9396. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9397. size="199KB" >
  9398. </productMenu>
  9399. <productMenu id="userGuide"
  9400. type="1"
  9401. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9402. size="684KB" >
  9403. </productMenu>
  9404. <productMenu id="connectGuide"
  9405. type="1"
  9406. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9407. size="1.12MB" >
  9408. </productMenu>
  9409. <productID id="5620"
  9410. />
  9411. <productGroupable type="0"
  9412. />
  9413. </product>
  9414. <product id="10U_ARAI"
  9415. name="10U Arai"
  9416. series="10"
  9417. latestVersion="2.0.4"
  9418. show = "1" >
  9419. <productMenu id="protocol"
  9420. type="0">
  9421. </productMenu>
  9422. <productMenu id="sip"
  9423. type="1" >
  9424. <productMenuType version="1.0.2"
  9425. type="0"
  9426. />
  9427. </productMenu>
  9428. <productMenu id="bluetoothIntercom"
  9429. type="1" >
  9430. <productMenuType version="1.0.2"
  9431. type="0"
  9432. />
  9433. </productMenu>
  9434. <productMenu id="phone"
  9435. type="2" >
  9436. </productMenu>
  9437. <productMenu id="fmradio"
  9438. type="3" >
  9439. </productMenu>
  9440. <productMenu id="deviceSetting"
  9441. type="1"
  9442. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9443. <productMenuURL version="1.3.2"
  9444. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9445. />
  9446. <productMenuURL version="1.0.2"
  9447. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9448. />
  9449. </productMenu>
  9450. <productMenu id="quickGuide"
  9451. type="1"
  9452. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9453. size="689KB" >
  9454. </productMenu>
  9455. <productMenu id="userGuide"
  9456. type="1"
  9457. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9458. size="684KB" >
  9459. </productMenu>
  9460. <productMenu id="connectGuide"
  9461. type="1"
  9462. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9463. size="1.12MB" >
  9464. </productMenu>
  9465. <productID id="5621"
  9466. />
  9467. <productGroupable type="0"
  9468. />
  9469. </product>
  9470. <product id="10Upad"
  9471. name="10Upad"
  9472. series="10"
  9473. latestVersion="2.0.3"
  9474. show = "1" >
  9475. <productMenu id="protocol"
  9476. type="0">
  9477. </productMenu>
  9478. <productMenu id="sip"
  9479. type="1" >
  9480. </productMenu>
  9481. <productMenu id="bluetoothIntercom"
  9482. type="1" >
  9483. </productMenu>
  9484. <productMenu id="phone"
  9485. type="2" >
  9486. </productMenu>
  9487. <productMenu id="fmradio"
  9488. type="3" >
  9489. </productMenu>
  9490. <productMenu id="deviceSetting"
  9491. type="1"
  9492. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9493. <productMenuURL version="1.0.3"
  9494. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9495. />
  9496. </productMenu>
  9497. <productMenu id="quickGuide"
  9498. type="1"
  9499. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9500. size="615KB" >
  9501. </productMenu>
  9502. <productMenu id="userGuide"
  9503. type="1"
  9504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9505. size="0.99MB" >
  9506. </productMenu>
  9507. <productMenu id="connectGuide"
  9508. type="1"
  9509. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9510. size="1.12MB" >
  9511. </productMenu>
  9512. <productID id="6210"
  9513. />
  9514. <productGroupable type="0"
  9515. />
  9516. </product>
  9517. <product id="5S"
  9518. name="5S"
  9519. series="5"
  9520. latestVersion="2.3.1"
  9521. show = "1" >
  9522. <productMenu id="protocol"
  9523. type="3" >
  9524. </productMenu>
  9525. <productMenu id="sip"
  9526. type="1" >
  9527. </productMenu>
  9528. <productMenu id="bluetoothIntercom"
  9529. type="1" >
  9530. </productMenu>
  9531. <productMenu id="phone"
  9532. type="1" >
  9533. </productMenu>
  9534. <productMenu id="fmradio"
  9535. type="0" >
  9536. </productMenu>
  9537. <productMenu id="deviceSetting"
  9538. type="1"
  9539. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9540. </productMenu>
  9541. <productMenu id="quickGuide"
  9542. type="0"
  9543. url=""
  9544. size="934KB" >
  9545. </productMenu>
  9546. <productMenu id="userGuide"
  9547. type="1"
  9548. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9549. size="1.14MB" >
  9550. </productMenu>
  9551. <productMenu id="connectGuide"
  9552. type="1"
  9553. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9554. size="1.12MB" >
  9555. </productMenu>
  9556. <productID id="5590"
  9557. />
  9558. <productGroupable type="0"
  9559. />
  9560. </product>
  9561. <product id="5S"
  9562. name="5S"
  9563. series="5"
  9564. latestVersion="1.2"
  9565. show = "-1" >
  9566. <productMenu id="protocol"
  9567. type="0">
  9568. </productMenu>
  9569. <productMenu id="sip"
  9570. type="1" >
  9571. </productMenu>
  9572. <productMenu id="bluetoothIntercom"
  9573. type="1" >
  9574. </productMenu>
  9575. <productMenu id="phone"
  9576. type="2" >
  9577. </productMenu>
  9578. <productMenu id="fmradio"
  9579. type="3" >
  9580. </productMenu>
  9581. <productMenu id="deviceSetting"
  9582. type="1"
  9583. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9584. </productMenu>
  9585. <productMenu id="quickGuide"
  9586. type="0"
  9587. url=""
  9588. size="970KB" >
  9589. </productMenu>
  9590. <productMenu id="userGuide"
  9591. type="1"
  9592. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9593. size="1.26MB" >
  9594. </productMenu>
  9595. <productID id="5534"
  9596. />
  9597. <productGroupable type="0"
  9598. />
  9599. </product>
  9600. <product id="5S"
  9601. name="5S"
  9602. series="5"
  9603. latestVersion="3.0.1"
  9604. show = "-1" >
  9605. <productMenu id="protocol"
  9606. type="0">
  9607. </productMenu>
  9608. <productMenu id="sip"
  9609. type="1" >
  9610. </productMenu>
  9611. <productMenu id="bluetoothIntercom"
  9612. type="1" >
  9613. </productMenu>
  9614. <productMenu id="phone"
  9615. type="2" >
  9616. </productMenu>
  9617. <productMenu id="fmradio"
  9618. type="0" >
  9619. </productMenu>
  9620. <productMenu id="deviceSetting"
  9621. type="1"
  9622. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9623. </productMenu>
  9624. <productMenu id="quickGuide"
  9625. type="0"
  9626. url=""
  9627. size="970KB" >
  9628. </productMenu>
  9629. <productMenu id="userGuide"
  9630. type="1"
  9631. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9632. size="1.26MB" >
  9633. </productMenu>
  9634. <productID id="5538"
  9635. />
  9636. <productGroupable type="0"
  9637. />
  9638. </product>
  9639. <product id="3SPLUS"
  9640. name="3S PLUS"
  9641. series="3"
  9642. latestVersion="2.2"
  9643. show = "1" >
  9644. <productMenu id="protocol"
  9645. type="3" >
  9646. </productMenu>
  9647. <productMenu id="sip"
  9648. type="1" >
  9649. </productMenu>
  9650. <productMenu id="bluetoothIntercom"
  9651. type="1" >
  9652. </productMenu>
  9653. <productMenu id="deviceSetting"
  9654. type="1"
  9655. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9656. <productMenuURL version="2.2.1"
  9657. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9658. />
  9659. </productMenu>
  9660. <productMenu id="quickGuide"
  9661. type="1"
  9662. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9663. size="344KB" >
  9664. </productMenu>
  9665. <productMenu id="userGuide"
  9666. type="1"
  9667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9668. size="1.14MB" >
  9669. </productMenu>
  9670. <productMenu id="connectGuide"
  9671. type="1"
  9672. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9673. size="1.12MB" >
  9674. </productMenu>
  9675. <productID id="4023"
  9676. />
  9677. <productGroupable type="0"
  9678. />
  9679. </product>
  9680. <product id="3SPLUS"
  9681. name="3S PLUS"
  9682. series="3"
  9683. latestVersion="1.1"
  9684. show = "-1" >
  9685. <productMenu id="protocol"
  9686. type="0">
  9687. </productMenu>
  9688. <productMenu id="sip"
  9689. type="1" >
  9690. </productMenu>
  9691. <productMenu id="bluetoothIntercom"
  9692. type="1" >
  9693. </productMenu>
  9694. <productMenu id="deviceSetting"
  9695. type="1"
  9696. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9697. </productMenu>
  9698. <productMenu id="quickGuide"
  9699. type="1"
  9700. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9701. size="842KB" >
  9702. </productMenu>
  9703. <productMenu id="userGuide"
  9704. type="1"
  9705. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9706. size="1.02MB" >
  9707. </productMenu>
  9708. <productID id="6320"
  9709. />
  9710. <productGroupable type="0"
  9711. />
  9712. </product>
  9713. <product id="AConnect"
  9714. name="Alpinestars A-Connect"
  9715. series="60"
  9716. latestVersion="1.0.2"
  9717. latestVersionMesh="0.19"
  9718. latestVersionVoicePrompt="1.6"
  9719. show = "-1" >
  9720. <productMenu id="protocol"
  9721. type="2" >
  9722. </productMenu>
  9723. <productMenu id="ota"
  9724. type="2" >
  9725. <otaLanguages>
  9726. <otaLanguage
  9727. id="0"
  9728. name="English"
  9729. package="0"
  9730. />
  9731. <otaLanguage
  9732. id="0"
  9733. name="French"
  9734. package="1"
  9735. />
  9736. <otaLanguage
  9737. id="0"
  9738. name="Spanish"
  9739. package="2"
  9740. />
  9741. <otaLanguage
  9742. id="0"
  9743. name="Italian"
  9744. package="3"
  9745. />
  9746. <otaLanguage
  9747. id="0"
  9748. name="German"
  9749. package="4"
  9750. />
  9751. <otaLanguage
  9752. id="0"
  9753. name="Dutch"
  9754. package="5"
  9755. />
  9756. <otaLanguage
  9757. id="0"
  9758. name="Russian"
  9759. package="6"
  9760. />
  9761. <otaLanguage
  9762. id="0"
  9763. name="Chinese"
  9764. package="7"
  9765. />
  9766. <otaLanguage
  9767. id="0"
  9768. name="Korean"
  9769. package="8"
  9770. />
  9771. <otaLanguage
  9772. id="0"
  9773. name="Japanese"
  9774. package="9"
  9775. />
  9776. <otaLanguage
  9777. id="0"
  9778. name="Finnish"
  9779. package="10"
  9780. />
  9781. <otaLanguage
  9782. id="0"
  9783. name="Polish"
  9784. package="11"
  9785. />
  9786. </otaLanguages>
  9787. <otaPackages>
  9788. <package
  9789. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9790. size="5183988"
  9791. />
  9792. <package
  9793. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9794. size="5183988"
  9795. />
  9796. <package
  9797. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9798. size="5183988"
  9799. />
  9800. <package
  9801. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9802. size="5183988"
  9803. />
  9804. <package
  9805. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9806. size="5183988"
  9807. />
  9808. <package
  9809. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9810. size="5183988"
  9811. />
  9812. <package
  9813. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9814. size="5183988"
  9815. />
  9816. <package
  9817. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9818. size="5183988"
  9819. />
  9820. <package
  9821. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9822. size="5183988"
  9823. />
  9824. <package
  9825. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9826. size="5183988"
  9827. />
  9828. <package
  9829. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9830. size="5183988"
  9831. />
  9832. <package
  9833. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9834. size="5183988"
  9835. />
  9836. </otaPackages>
  9837. </productMenu>
  9838. <productMenu id="sip"
  9839. type="1" >
  9840. </productMenu>
  9841. <productMenu id="illusion"
  9842. type="0" >
  9843. </productMenu>
  9844. <productMenu id="meshIntercom+"
  9845. type="3"
  9846. url="2" >
  9847. </productMenu>
  9848. <productMenu id="waveIntercom"
  9849. type="1" >
  9850. </productMenu>
  9851. <productMenu id="bluetoothIntercom"
  9852. type="1"
  9853. url="2" >
  9854. </productMenu>
  9855. <productMenu id="bluetoothIntercomGrouping"
  9856. type="0" >
  9857. </productMenu>
  9858. <productMenu id="fmradio"
  9859. type="1"
  9860. url="1" >
  9861. </productMenu>
  9862. <productMenu id="phone"
  9863. type="1" >
  9864. </productMenu>
  9865. <productMenu id="music"
  9866. type="1" >
  9867. </productMenu>
  9868. <productMenu id="musicSharing"
  9869. type="0" >
  9870. </productMenu>
  9871. <productMenu id="deviceSetting"
  9872. type="1"
  9873. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  9874. </productMenu>
  9875. <productMenu id="quickGuide"
  9876. type="0"
  9877. url=""
  9878. size="1.12MB" >
  9879. </productMenu>
  9880. <productMenu id="userGuide"
  9881. type="0"
  9882. url=""
  9883. size="2.0MB" >
  9884. </productMenu>
  9885. <productMenu id="videoGuide"
  9886. type="0"
  9887. url=""
  9888. size="3.41MB" >
  9889. </productMenu>
  9890. <productMenu id="volume"
  9891. type="16" >
  9892. </productMenu>
  9893. <productMenu id="volume+"
  9894. type="2"
  9895. url="0x6004" >
  9896. </productMenu>
  9897. <productMenu id="soundMode"
  9898. type="0" >
  9899. </productMenu>
  9900. <productMenu id="battery"
  9901. type="1" >
  9902. </productMenu>
  9903. <productID id="6A82"
  9904. />
  9905. <productGroupable type="0"
  9906. />
  9907. </product>
  9908. <product id="iCon"
  9909. name="iCon"
  9910. series="50"
  9911. latestVersion="1.2"
  9912. show = "0" >
  9913. <productMenu id="protocol"
  9914. type="2" >
  9915. </productMenu>
  9916. <productMenu id="alexa"
  9917. type="0" >
  9918. </productMenu>
  9919. <productMenu id="wa"
  9920. type="0" >
  9921. </productMenu>
  9922. <productMenu id="sip"
  9923. type="1" >
  9924. </productMenu>
  9925. <productMenu id="led"
  9926. type="3" >
  9927. </productMenu>
  9928. <productMenu id="meshIntercom"
  9929. type="20" >
  9930. </productMenu>
  9931. <productMenu id="meshIntercom+"
  9932. type="3"
  9933. url="0" >
  9934. <productMenuType version="1.0.9"
  9935. type="2"
  9936. />
  9937. </productMenu>
  9938. <productMenu id="bluetoothIntercom"
  9939. type="1" >
  9940. </productMenu>
  9941. <productMenu id="phone"
  9942. type="1" >
  9943. </productMenu>
  9944. <productMenu id="music"
  9945. type="1" >
  9946. </productMenu>
  9947. <productMenu id="fmradio"
  9948. type="1" >
  9949. </productMenu>
  9950. <productMenu id="deviceSetting"
  9951. type="1"
  9952. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  9953. <productMenuURL version="1.0.9"
  9954. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9955. />
  9956. </productMenu>
  9957. <productMenu id="quickGuide"
  9958. type="1"
  9959. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  9960. size="344KB" >
  9961. </productMenu>
  9962. <productMenu id="userGuide"
  9963. type="1"
  9964. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  9965. size="3.41MB" >
  9966. </productMenu>
  9967. <productMenu id="volume"
  9968. type="11" >
  9969. </productMenu>
  9970. <productMenu id="battery"
  9971. type="1" >
  9972. </productMenu>
  9973. <productID id="3900"
  9974. />
  9975. <productGroupable type="0"
  9976. />
  9977. </product>
  9978. <product id="ICONHelmLinkSL"
  9979. name="ICON HelmLink SL"
  9980. series="50"
  9981. latestVersion="1.0"
  9982. latestVersionVoicePrompt="1.6"
  9983. show = "-1" >
  9984. <productMenu id="protocol"
  9985. type="2" >
  9986. </productMenu>
  9987. <productMenu id="alexa"
  9988. type="0" >
  9989. </productMenu>
  9990. <productMenu id="ota"
  9991. type="0" >
  9992. <otaPackages>
  9993. <package
  9994. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  9995. size="2945812"
  9996. />
  9997. </otaPackages>
  9998. </productMenu>
  9999. <productMenu id="wa"
  10000. type="0" >
  10001. </productMenu>
  10002. <productMenu id="meshIntercom"
  10003. type="30" >
  10004. </productMenu>
  10005. <productMenu id="meshIntercom+"
  10006. type="3"
  10007. url="2" >
  10008. </productMenu>
  10009. <productMenu id="waveIntercom"
  10010. type="1" >
  10011. </productMenu>
  10012. <productMenu id="phone"
  10013. type="1" >
  10014. </productMenu>
  10015. <productMenu id="music"
  10016. type="1" >
  10017. </productMenu>
  10018. <productMenu id="musicSharing"
  10019. type="0" >
  10020. </productMenu>
  10021. <productMenu id="deviceSetting"
  10022. type="1"
  10023. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10024. </productMenu>
  10025. <productMenu id="quickGuide"
  10026. type="0"
  10027. url=""
  10028. size="1.12MB" >
  10029. </productMenu>
  10030. <productMenu id="userGuide"
  10031. type="1"
  10032. url=""
  10033. size="2.0MB" >
  10034. </productMenu>
  10035. <productMenu id="volume"
  10036. type="12" >
  10037. </productMenu>
  10038. <productMenu id="battery"
  10039. type="1" >
  10040. </productMenu>
  10041. <productID id="6842"
  10042. />
  10043. <productGroupable type="0"
  10044. />
  10045. </product>
  10046. <product id="HD50S"
  10047. name="H-D Audio 50S"
  10048. series="50"
  10049. latestVersion="1.0.1"
  10050. show = "-1" >
  10051. <productMenu id="protocol"
  10052. type="2" >
  10053. </productMenu>
  10054. <productMenu id="alexa"
  10055. type="0" >
  10056. </productMenu>
  10057. <productMenu id="ota"
  10058. type="0"
  10059. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10060. size="1150234" >
  10061. </productMenu>
  10062. <productMenu id="wa"
  10063. type="1" >
  10064. </productMenu>
  10065. <productMenu id="sip"
  10066. type="1" >
  10067. </productMenu>
  10068. <productMenu id="meshIntercom"
  10069. type="20" >
  10070. </productMenu>
  10071. <productMenu id="meshIntercom+"
  10072. type="3"
  10073. url="0" >
  10074. <productMenuType version="1.0.9"
  10075. type="2"
  10076. />
  10077. </productMenu>
  10078. <productMenu id="bluetoothIntercom"
  10079. type="1" >
  10080. </productMenu>
  10081. <productMenu id="phone"
  10082. type="1" >
  10083. </productMenu>
  10084. <productMenu id="music"
  10085. type="1" >
  10086. </productMenu>
  10087. <productMenu id="fmradio"
  10088. type="1" >
  10089. </productMenu>
  10090. <productMenu id="deviceSetting"
  10091. type="1"
  10092. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10093. <productMenuURL version="1.0.9"
  10094. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10095. />
  10096. </productMenu>
  10097. <productMenu id="quickGuide"
  10098. type="1"
  10099. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10100. size="934KB" >
  10101. </productMenu>
  10102. <productMenu id="userGuide"
  10103. type="1"
  10104. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10105. size="1.14MB" >
  10106. </productMenu>
  10107. <productMenu id="volume"
  10108. type="11" >
  10109. </productMenu>
  10110. <productMenu id="battery"
  10111. type="1" >
  10112. </productMenu>
  10113. <productID id="3156"
  10114. />
  10115. <productGroupable type="0"
  10116. />
  10117. </product>
  10118. <product id="HD50S"
  10119. name="H-D Audio 50S"
  10120. series="50"
  10121. latestVersion="2.0.2"
  10122. show = "0" >
  10123. <productMenu id="protocol"
  10124. type="2" >
  10125. </productMenu>
  10126. <productMenu id="alexa"
  10127. type="0" >
  10128. </productMenu>
  10129. <productMenu id="ota"
  10130. type="0"
  10131. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10132. size="1150234" >
  10133. </productMenu>
  10134. <productMenu id="wa"
  10135. type="1" >
  10136. </productMenu>
  10137. <productMenu id="sip"
  10138. type="1" >
  10139. </productMenu>
  10140. <productMenu id="meshIntercom"
  10141. type="20" >
  10142. </productMenu>
  10143. <productMenu id="meshIntercom+"
  10144. type="3"
  10145. url="0" >
  10146. <productMenuType version="2.0.9"
  10147. type="2"
  10148. />
  10149. </productMenu>
  10150. <productMenu id="bluetoothIntercom"
  10151. type="1" >
  10152. </productMenu>
  10153. <productMenu id="phone"
  10154. type="1" >
  10155. </productMenu>
  10156. <productMenu id="music"
  10157. type="1" >
  10158. </productMenu>
  10159. <productMenu id="fmradio"
  10160. type="1" >
  10161. </productMenu>
  10162. <productMenu id="deviceSetting"
  10163. type="1"
  10164. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10165. <productMenuURL version="2.0.9"
  10166. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10167. />
  10168. </productMenu>
  10169. <productMenu id="quickGuide"
  10170. type="1"
  10171. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10172. size="934KB" >
  10173. </productMenu>
  10174. <productMenu id="userGuide"
  10175. type="1"
  10176. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10177. size="1.14MB" >
  10178. </productMenu>
  10179. <productMenu id="volume"
  10180. type="11" >
  10181. </productMenu>
  10182. <productMenu id="battery"
  10183. type="1" >
  10184. </productMenu>
  10185. <productID id="3213"
  10186. />
  10187. <productGroupable type="0"
  10188. />
  10189. </product>
  10190. <product id="HD50C"
  10191. name="H-D Audio 50C"
  10192. series="50"
  10193. latestVersion="1.0.1"
  10194. show = "0" >
  10195. <productMenu id="protocol"
  10196. type="2" >
  10197. </productMenu>
  10198. <productMenu id="ota"
  10199. type="0" >
  10200. </productMenu>
  10201. <productMenu id="wa"
  10202. type="1" >
  10203. </productMenu>
  10204. <productMenu id="sip"
  10205. type="1" >
  10206. </productMenu>
  10207. <productMenu id="meshIntercom"
  10208. type="20" >
  10209. </productMenu>
  10210. <productMenu id="meshIntercom+"
  10211. type="3"
  10212. url="0" >
  10213. <productMenuType version="1.0.9"
  10214. type="2"
  10215. />
  10216. </productMenu>
  10217. <productMenu id="bluetoothIntercom"
  10218. type="1" >
  10219. </productMenu>
  10220. <productMenu id="phone"
  10221. type="1" >
  10222. </productMenu>
  10223. <productMenu id="music"
  10224. type="1" >
  10225. </productMenu>
  10226. <productMenu id="fmradio"
  10227. type="1" >
  10228. </productMenu>
  10229. <productMenu id="deviceSetting"
  10230. type="1"
  10231. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10232. <productMenuURL version="1.0.9"
  10233. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10234. />
  10235. </productMenu>
  10236. <productMenu id="quickGuide"
  10237. type="1"
  10238. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10239. size="344KB" >
  10240. </productMenu>
  10241. <productMenu id="userGuide"
  10242. type="1"
  10243. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10244. size="3.41MB" >
  10245. </productMenu>
  10246. <productMenu id="volume"
  10247. type="11" >
  10248. </productMenu>
  10249. <productMenu id="battery"
  10250. type="1" >
  10251. </productMenu>
  10252. <productID id="3240"
  10253. />
  10254. <productGroupable type="0"
  10255. />
  10256. </product>
  10257. <product id="HD50S"
  10258. name="FURY N04"
  10259. series="Helmet"
  10260. latestVersion="1.0"
  10261. show = "0" >
  10262. <productMenu id="protocol"
  10263. type="2" >
  10264. </productMenu>
  10265. <productMenu id="alexa"
  10266. type="0" >
  10267. </productMenu>
  10268. <productMenu id="ota"
  10269. type="0" >
  10270. </productMenu>
  10271. <productMenu id="wa"
  10272. type="0" >
  10273. </productMenu>
  10274. <productMenu id="meshIntercom"
  10275. type="20" >
  10276. </productMenu>
  10277. <productMenu id="meshIntercom+"
  10278. type="3"
  10279. url="0" >
  10280. <productMenuType version="1.0.9"
  10281. type="2"
  10282. />
  10283. </productMenu>
  10284. <productMenu id="phone"
  10285. type="1" >
  10286. </productMenu>
  10287. <productMenu id="music"
  10288. type="1" >
  10289. </productMenu>
  10290. <productMenu id="fmradio"
  10291. type="1" >
  10292. </productMenu>
  10293. <productMenu id="deviceSetting"
  10294. type="1"
  10295. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10296. <productMenuURL version="1.0.9"
  10297. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10298. />
  10299. </productMenu>
  10300. <productMenu id="quickGuide"
  10301. type="1"
  10302. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10303. size="1.12MB" >
  10304. </productMenu>
  10305. <productMenu id="userGuide"
  10306. type="1"
  10307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10308. size="2.0MB" >
  10309. </productMenu>
  10310. <productMenu id="volume"
  10311. type="13" >
  10312. </productMenu>
  10313. <productMenu id="battery"
  10314. type="1" >
  10315. </productMenu>
  10316. <productID id="5553"
  10317. />
  10318. <productGroupable type="0"
  10319. />
  10320. </product>
  10321. <product id="XCOM3Pro"
  10322. name="X-COM3 Pro"
  10323. series="50"
  10324. latestVersion="1.1"
  10325. show = "0" >
  10326. <productMenu id="protocol"
  10327. type="2" >
  10328. </productMenu>
  10329. <productMenu id="alexa"
  10330. type="0" >
  10331. </productMenu>
  10332. <productMenu id="ota"
  10333. type="0" >
  10334. </productMenu>
  10335. <productMenu id="wa"
  10336. type="0" >
  10337. </productMenu>
  10338. <productMenu id="sip"
  10339. type="1" >
  10340. </productMenu>
  10341. <productMenu id="meshIntercom"
  10342. type="30" >
  10343. </productMenu>
  10344. <productMenu id="meshIntercom+"
  10345. type="3"
  10346. url="2" >
  10347. <productMenuType version="1.1"
  10348. type="2"
  10349. />
  10350. </productMenu>
  10351. <productMenu id="waveIntercom"
  10352. type="1" >
  10353. <productMenuType version="1.1"
  10354. type="0"
  10355. />
  10356. </productMenu>
  10357. <productMenu id="bluetoothIntercom"
  10358. type="1" >
  10359. </productMenu>
  10360. <productMenu id="phone"
  10361. type="1" >
  10362. </productMenu>
  10363. <productMenu id="music"
  10364. type="1" >
  10365. </productMenu>
  10366. <productMenu id="fmradio"
  10367. type="1" >
  10368. </productMenu>
  10369. <productMenu id="deviceSetting"
  10370. type="1"
  10371. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10372. <productMenuURL version="1.1"
  10373. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10374. />
  10375. </productMenu>
  10376. <productMenu id="quickGuide"
  10377. type="0"
  10378. url=""
  10379. size="344KB" >
  10380. </productMenu>
  10381. <productMenu id="userGuide"
  10382. type="1"
  10383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10384. size="3.41MB" >
  10385. </productMenu>
  10386. <productMenu id="volume"
  10387. type="11" >
  10388. </productMenu>
  10389. <productMenu id="battery"
  10390. type="1" >
  10391. </productMenu>
  10392. <productID id="321A"
  10393. />
  10394. <productGroupable type="0"
  10395. />
  10396. </product>
  10397. <product id="XCOM3"
  10398. name="X-COM3"
  10399. series="20"
  10400. latestVersion="1.0"
  10401. show = "0" >
  10402. <productMenu id="protocol"
  10403. type="2" >
  10404. </productMenu>
  10405. <productMenu id="sip"
  10406. type="1" >
  10407. </productMenu>
  10408. <productMenu id="bluetoothIntercom"
  10409. type="1" >
  10410. </productMenu>
  10411. <productMenu id="phone"
  10412. type="1" >
  10413. </productMenu>
  10414. <productMenu id="music"
  10415. type="1" >
  10416. </productMenu>
  10417. <productMenu id="fmradio"
  10418. type="1" >
  10419. </productMenu>
  10420. <productMenu id="deviceSetting"
  10421. type="1"
  10422. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10423. </productMenu>
  10424. <productMenu id="quickGuide"
  10425. type="0"
  10426. url=""
  10427. size="934KB" >
  10428. </productMenu>
  10429. <productMenu id="userGuide"
  10430. type="1"
  10431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10432. size="1.14MB" >
  10433. </productMenu>
  10434. <productMenu id="volume"
  10435. type="15" >
  10436. </productMenu>
  10437. <productID id="3410"
  10438. />
  10439. <productGroupable type="0"
  10440. />
  10441. </product>
  10442. <product id="X-COM2"
  10443. name="X-COM2"
  10444. series="20"
  10445. latestVersion="1.0.5"
  10446. show = "0" >
  10447. <productMenu id="protocol"
  10448. type="0">
  10449. </productMenu>
  10450. <productMenu id="sip"
  10451. type="1" >
  10452. </productMenu>
  10453. <productMenu id="bluetoothIntercom"
  10454. type="1" >
  10455. </productMenu>
  10456. <productMenu id="intercomSetting"
  10457. type="1" >
  10458. </productMenu>
  10459. <productMenu id="phone"
  10460. type="2" >
  10461. </productMenu>
  10462. <productMenu id="fmradio"
  10463. type="3" >
  10464. </productMenu>
  10465. <productMenu id="deviceSetting"
  10466. type="1"
  10467. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10468. </productMenu>
  10469. <productMenu id="quickGuide"
  10470. type="1"
  10471. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10472. size="796KB" >
  10473. </productMenu>
  10474. <productMenu id="userGuide"
  10475. type="1"
  10476. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10477. size="1.90MB" >
  10478. </productMenu>
  10479. <productID id="2030"
  10480. />
  10481. <productGroupable type="1"
  10482. />
  10483. </product>
  10484. <product id="AVAABC"
  10485. name="AVA ABC"
  10486. series="SPIDER"
  10487. latestVersion="1.1"
  10488. show = "0" >
  10489. <productMenu id="protocol"
  10490. type="2" >
  10491. </productMenu>
  10492. <productMenu id="alexa"
  10493. type="0" >
  10494. </productMenu>
  10495. <productMenu id="ota"
  10496. type="0" >
  10497. <productMenuType version="1.0"
  10498. type="0"
  10499. />
  10500. <otaPackages>
  10501. <package
  10502. url="https://api.sena.com/support/OTA/"
  10503. size="2945812"
  10504. />
  10505. </otaPackages>
  10506. </productMenu>
  10507. <productMenu id="wa"
  10508. type="0" >
  10509. </productMenu>
  10510. <productMenu id="meshIntercom"
  10511. type="30" >
  10512. <productMenuType version="1.0"
  10513. type="20"
  10514. />
  10515. </productMenu>
  10516. <productMenu id="meshIntercom+"
  10517. type="3"
  10518. url="2" >
  10519. <productMenuType version="1.0"
  10520. type="2"
  10521. />
  10522. <productMenuURL version="1.0"
  10523. url="0"
  10524. />
  10525. </productMenu>
  10526. <productMenu id="waveIntercom"
  10527. type="1" >
  10528. <productMenuType version="1.0"
  10529. type="0"
  10530. />
  10531. </productMenu>
  10532. <productMenu id="phone"
  10533. type="1" >
  10534. </productMenu>
  10535. <productMenu id="music"
  10536. type="1" >
  10537. </productMenu>
  10538. <productMenu id="musicSharing"
  10539. type="0" >
  10540. </productMenu>
  10541. <productMenu id="deviceSetting"
  10542. type="1"
  10543. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10544. <productMenuURL version="1.0"
  10545. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10546. />
  10547. </productMenu>
  10548. <productMenu id="quickGuide"
  10549. type="1"
  10550. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10551. size="1.12MB" >
  10552. </productMenu>
  10553. <productMenu id="userGuide"
  10554. type="1"
  10555. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10556. size="2.0MB" >
  10557. </productMenu>
  10558. <productMenu id="volume"
  10559. type="12" >
  10560. </productMenu>
  10561. <productMenu id="battery"
  10562. type="1" >
  10563. </productMenu>
  10564. <productID id="6808"
  10565. />
  10566. <productGroupable type="0"
  10567. />
  10568. </product>
  10569. <product id="ADVANCEProCOM2"
  10570. name="ADVANCE ProCOM 2"
  10571. series="Helmet"
  10572. latestVersion="0.5"
  10573. latestVersionVoicePrompt="0.3"
  10574. show = "-1" >
  10575. <productMenu id="protocol"
  10576. type="2" >
  10577. </productMenu>
  10578. <productMenu id="ota"
  10579. type="2" >
  10580. <otaLanguages>
  10581. <otaLanguage
  10582. id="0"
  10583. name="English"
  10584. package="0"
  10585. />
  10586. <otaLanguage
  10587. id="0"
  10588. name="French"
  10589. package="1"
  10590. />
  10591. <otaLanguage
  10592. id="0"
  10593. name="Spanish"
  10594. package="2"
  10595. />
  10596. <otaLanguage
  10597. id="0"
  10598. name="Italian"
  10599. package="3"
  10600. />
  10601. <otaLanguage
  10602. id="0"
  10603. name="German"
  10604. package="4"
  10605. />
  10606. <otaLanguage
  10607. id="0"
  10608. name="Dutch"
  10609. package="5"
  10610. />
  10611. <otaLanguage
  10612. id="0"
  10613. name="Russian"
  10614. package="6"
  10615. />
  10616. <otaLanguage
  10617. id="0"
  10618. name="Chinese"
  10619. package="7"
  10620. />
  10621. <otaLanguage
  10622. id="0"
  10623. name="Korean"
  10624. package="8"
  10625. />
  10626. <otaLanguage
  10627. id="0"
  10628. name="Japanese"
  10629. package="9"
  10630. />
  10631. <otaLanguage
  10632. id="0"
  10633. name="Finnish"
  10634. package="10"
  10635. />
  10636. <otaLanguage
  10637. id="0"
  10638. name="Polish"
  10639. package="11"
  10640. />
  10641. </otaLanguages>
  10642. <otaPackages>
  10643. <package
  10644. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10645. size="5183988"
  10646. />
  10647. <package
  10648. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10649. size="5183988"
  10650. />
  10651. <package
  10652. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10653. size="5183988"
  10654. />
  10655. <package
  10656. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10657. size="5183988"
  10658. />
  10659. <package
  10660. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10661. size="5183988"
  10662. />
  10663. <package
  10664. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10665. size="5183988"
  10666. />
  10667. <package
  10668. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10669. size="5183988"
  10670. />
  10671. <package
  10672. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10673. size="5183988"
  10674. />
  10675. <package
  10676. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10677. size="5183988"
  10678. />
  10679. <package
  10680. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10681. size="5183988"
  10682. />
  10683. <package
  10684. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10685. size="5183988"
  10686. />
  10687. <package
  10688. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10689. size="5183988"
  10690. />
  10691. </otaPackages>
  10692. </productMenu>
  10693. <productMenu id="wa"
  10694. type="0" >
  10695. </productMenu>
  10696. <productMenu id="meshIntercom"
  10697. type="30" >
  10698. </productMenu>
  10699. <productMenu id="meshIntercom+"
  10700. type="3"
  10701. url="2" >
  10702. </productMenu>
  10703. <productMenu id="waveIntercom"
  10704. type="1" >
  10705. </productMenu>
  10706. <productMenu id="fmradio"
  10707. type="1" >
  10708. </productMenu>
  10709. <productMenu id="phone"
  10710. type="0" >
  10711. </productMenu>
  10712. <productMenu id="music"
  10713. type="1" >
  10714. </productMenu>
  10715. <productMenu id="musicSharing"
  10716. type="0" >
  10717. </productMenu>
  10718. <productMenu id="deviceSetting"
  10719. type="1"
  10720. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10721. </productMenu>
  10722. <productMenu id="quickGuide"
  10723. type="0"
  10724. url=""
  10725. size="1.12MB" >
  10726. </productMenu>
  10727. <productMenu id="userGuide"
  10728. type="1"
  10729. url=""
  10730. size="2.0MB" >
  10731. </productMenu>
  10732. <productMenu id="videoGuide"
  10733. type="0"
  10734. url=""
  10735. size="3.41MB" >
  10736. </productMenu>
  10737. <productMenu id="connectGuide"
  10738. type="1"
  10739. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10740. size="1.12MB" >
  10741. </productMenu>
  10742. <productMenu id="volume"
  10743. type="16" >
  10744. </productMenu>
  10745. <productMenu id="battery"
  10746. type="1" >
  10747. </productMenu>
  10748. <productID id="6A85"
  10749. />
  10750. <productGroupable type="0"
  10751. />
  10752. </product>
  10753. <product id="Triumph_50S"
  10754. name="Triumph 50S"
  10755. series="50"
  10756. latestVersion="1.5"
  10757. show = "0" >
  10758. <productMenu id="protocol"
  10759. type="2" >
  10760. </productMenu>
  10761. <productMenu id="alexa"
  10762. type="0" >
  10763. </productMenu>
  10764. <productMenu id="ota"
  10765. type="0"
  10766. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10767. size="1150234" >
  10768. </productMenu>
  10769. <productMenu id="wa"
  10770. type="1" >
  10771. </productMenu>
  10772. <productMenu id="sip"
  10773. type="1" >
  10774. </productMenu>
  10775. <productMenu id="meshIntercom"
  10776. type="20" >
  10777. </productMenu>
  10778. <productMenu id="bluetoothIntercom"
  10779. type="1" >
  10780. </productMenu>
  10781. <productMenu id="meshIntercom+"
  10782. type="3"
  10783. url="2" >
  10784. <productMenuType version="1.2.9"
  10785. type="2"
  10786. />
  10787. <productMenuURL version="1.2.9"
  10788. url="0"
  10789. />
  10790. </productMenu>
  10791. <productMenu id="waveIntercom"
  10792. type="1" >
  10793. <productMenuType version="1.2.9"
  10794. type="0"
  10795. />
  10796. </productMenu>
  10797. <productMenu id="phone"
  10798. type="1" >
  10799. </productMenu>
  10800. <productMenu id="music"
  10801. type="1" >
  10802. </productMenu>
  10803. <productMenu id="fmradio"
  10804. type="1" >
  10805. </productMenu>
  10806. <productMenu id="deviceSetting"
  10807. type="1"
  10808. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10809. <productMenuURL version="1.2.9"
  10810. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10811. />
  10812. <productMenuURL version="1.0"
  10813. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10814. />
  10815. </productMenu>
  10816. <productMenu id="quickGuide"
  10817. type="1"
  10818. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10819. size="934KB" >
  10820. </productMenu>
  10821. <productMenu id="userGuide"
  10822. type="1"
  10823. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10824. size="1.14MB" >
  10825. </productMenu>
  10826. <productMenu id="volume"
  10827. type="11" >
  10828. </productMenu>
  10829. <productMenu id="battery"
  10830. type="1" >
  10831. </productMenu>
  10832. <productID id="3264"
  10833. />
  10834. <productGroupable type="0"
  10835. />
  10836. </product>
  10837. <product id="RE50S"
  10838. name="RE 50S"
  10839. series="50"
  10840. latestVersion="2.7"
  10841. show = "0" >
  10842. <productMenu id="protocol"
  10843. type="2" >
  10844. </productMenu>
  10845. <productMenu id="alexa"
  10846. type="0" >
  10847. </productMenu>
  10848. <productMenu id="ota"
  10849. type="0"
  10850. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10851. size="1150234" >
  10852. </productMenu>
  10853. <productMenu id="wa"
  10854. type="1" >
  10855. </productMenu>
  10856. <productMenu id="sip"
  10857. type="1" >
  10858. </productMenu>
  10859. <productMenu id="meshIntercom"
  10860. type="30" >
  10861. </productMenu>
  10862. <productMenu id="meshIntercom+"
  10863. type="3"
  10864. url="2" >
  10865. <productMenuType version="2.5"
  10866. type="2"
  10867. />
  10868. </productMenu>
  10869. <productMenu id="waveIntercom"
  10870. type="1" >
  10871. <productMenuType version="2.5"
  10872. type="0"
  10873. />
  10874. </productMenu>
  10875. <productMenu id="bluetoothIntercom"
  10876. type="1" >
  10877. </productMenu>
  10878. <productMenu id="phone"
  10879. type="1" >
  10880. </productMenu>
  10881. <productMenu id="music"
  10882. type="1" >
  10883. </productMenu>
  10884. <productMenu id="fmradio"
  10885. type="1" >
  10886. </productMenu>
  10887. <productMenu id="deviceSetting"
  10888. type="1"
  10889. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10890. <productMenuURL version="2.5.9"
  10891. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  10892. />
  10893. </productMenu>
  10894. <productMenu id="quickGuide"
  10895. type="1"
  10896. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  10897. size="934KB" >
  10898. </productMenu>
  10899. <productMenu id="userGuide"
  10900. type="1"
  10901. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  10902. size="1.14MB" >
  10903. </productMenu>
  10904. <productMenu id="videoGuide"
  10905. type="0"
  10906. url=""
  10907. size="3.41MB" >
  10908. </productMenu>
  10909. <productMenu id="volume"
  10910. type="11" >
  10911. </productMenu>
  10912. <productMenu id="battery"
  10913. type="1" >
  10914. </productMenu>
  10915. <productID id="321C"
  10916. />
  10917. <productGroupable type="0"
  10918. />
  10919. </product>
  10920. <product id="BMW_HELMET_II_U1"
  10921. name="BMW HELMET II U1"
  10922. series="50"
  10923. latestVersion="1.0"
  10924. show = "0" >
  10925. <productMenu id="protocol"
  10926. type="2" >
  10927. </productMenu>
  10928. <productMenu id="alexa"
  10929. type="0" >
  10930. </productMenu>
  10931. <productMenu id="sip"
  10932. type="1" >
  10933. </productMenu>
  10934. <productMenu id="meshIntercom"
  10935. type="20" >
  10936. </productMenu>
  10937. <productMenu id="bluetoothIntercom"
  10938. type="1" >
  10939. </productMenu>
  10940. <productMenu id="bluetoothIntercom2"
  10941. type="1" >
  10942. </productMenu>
  10943. <productMenu id="phone"
  10944. type="1" >
  10945. </productMenu>
  10946. <productMenu id="music"
  10947. type="1" >
  10948. </productMenu>
  10949. <productMenu id="fmradio"
  10950. type="1" >
  10951. </productMenu>
  10952. <productMenu id="deviceSetting"
  10953. type="1"
  10954. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  10955. </productMenu>
  10956. <productMenu id="quickGuide"
  10957. type="1"
  10958. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  10959. size="934KB" >
  10960. </productMenu>
  10961. <productMenu id="userGuide"
  10962. type="1"
  10963. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  10964. size="1.14MB" >
  10965. </productMenu>
  10966. <productMenu id="volume"
  10967. type="11" >
  10968. </productMenu>
  10969. <productMenu id="battery"
  10970. type="1" >
  10971. </productMenu>
  10972. <productID id="3260"
  10973. />
  10974. <productGroupable type="0"
  10975. />
  10976. </product>
  10977. <product id="OUTRUSHR"
  10978. name="CX935"
  10979. series="Helmet"
  10980. latestVersion="2.1"
  10981. show = "-1" >
  10982. <productMenu id="protocol"
  10983. type="3">
  10984. </productMenu>
  10985. <productMenu id="sip"
  10986. type="1" >
  10987. </productMenu>
  10988. <productMenu id="bluetoothIntercom"
  10989. type="1" >
  10990. </productMenu>
  10991. <productMenu id="phone"
  10992. type="1" >
  10993. </productMenu>
  10994. <productMenu id="fmradio"
  10995. type="0" >
  10996. </productMenu>
  10997. <productMenu id="deviceSetting"
  10998. type="1"
  10999. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11000. </productMenu>
  11001. <productMenu id="userGuide"
  11002. type="1"
  11003. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11004. size="660KB" >
  11005. </productMenu>
  11006. <productID id="5446"
  11007. />
  11008. <productGroupable type="0"
  11009. />
  11010. </product>
  11011. <product id="LSE_01"
  11012. name="LSE-01"
  11013. series="SF"
  11014. latestVersion="1.2.3"
  11015. show = "0" >
  11016. <productMenu id="protocol"
  11017. type="1"
  11018. url="3">
  11019. </productMenu>
  11020. <productMenu id="sip"
  11021. type="1" >
  11022. </productMenu>
  11023. <productMenu id="bluetoothIntercom"
  11024. type="1" >
  11025. </productMenu>
  11026. <productMenu id="phone"
  11027. type="1" >
  11028. </productMenu>
  11029. <productMenu id="music"
  11030. type="1" >
  11031. </productMenu>
  11032. <productMenu id="fmradio"
  11033. type="1" >
  11034. </productMenu>
  11035. <productMenu id="deviceSetting"
  11036. type="1"
  11037. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11038. <productMenuURL version="1.1"
  11039. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11040. />
  11041. <productMenuURL version="1.0"
  11042. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11043. />
  11044. </productMenu>
  11045. <productMenu id="quickGuide"
  11046. type="1"
  11047. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11048. size="607KB" >
  11049. </productMenu>
  11050. <productMenu id="userGuide"
  11051. type="1"
  11052. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11053. size="1.91MB" >
  11054. </productMenu>
  11055. <productMenu id="volume"
  11056. type="4" >
  11057. </productMenu>
  11058. <productID id="5416"
  11059. />
  11060. <productGroupable type="0"
  11061. />
  11062. </product>
  11063. <product id="AGV_ARK"
  11064. name="AGV ARK"
  11065. series="SF"
  11066. latestVersion="1.0.3"
  11067. show = "0" >
  11068. <productMenu id="protocol"
  11069. type="1"
  11070. url="3">
  11071. </productMenu>
  11072. <productMenu id="sip"
  11073. type="1" >
  11074. </productMenu>
  11075. <productMenu id="bluetoothIntercom"
  11076. type="1" >
  11077. </productMenu>
  11078. <productMenu id="phone"
  11079. type="1" >
  11080. </productMenu>
  11081. <productMenu id="music"
  11082. type="1" >
  11083. </productMenu>
  11084. <productMenu id="fmradio"
  11085. type="1" >
  11086. </productMenu>
  11087. <productMenu id="deviceSetting"
  11088. type="1"
  11089. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11090. </productMenu>
  11091. <productMenu id="quickGuide"
  11092. type="1"
  11093. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11094. size="607KB" >
  11095. </productMenu>
  11096. <productMenu id="userGuide"
  11097. type="1"
  11098. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11099. size="1.91MB" >
  11100. </productMenu>
  11101. <productMenu id="volume"
  11102. type="4" >
  11103. </productMenu>
  11104. <productID id="5420"
  11105. />
  11106. <productGroupable type="0"
  11107. />
  11108. </product>
  11109. <product id="KLIM_KRIOS"
  11110. name="KLIM Krios"
  11111. series="10"
  11112. latestVersion="1.1.2"
  11113. show = "0" >
  11114. <productMenu id="protocol"
  11115. type="0">
  11116. </productMenu>
  11117. <productMenu id="sip"
  11118. type="1" >
  11119. </productMenu>
  11120. <productMenu id="bluetoothIntercom"
  11121. type="1" >
  11122. </productMenu>
  11123. <productMenu id="phone"
  11124. type="2" >
  11125. </productMenu>
  11126. <productMenu id="fmradio"
  11127. type="3" >
  11128. </productMenu>
  11129. <productMenu id="deviceSetting"
  11130. type="1"
  11131. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11132. <productMenuURL version="1.0"
  11133. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11134. />
  11135. </productMenu>
  11136. <productMenu id="quickGuide"
  11137. type="1"
  11138. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11139. size="649KB" >
  11140. </productMenu>
  11141. <productMenu id="userGuide"
  11142. type="1"
  11143. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11144. size="1.43MB" >
  11145. </productMenu>
  11146. <productID id="5910"
  11147. />
  11148. <productGroupable type="0"
  11149. />
  11150. </product>
  11151. <product id="POLARIS_SLINGSHOT"
  11152. name="Polaris Slingshot"
  11153. series="10"
  11154. latestVersion="1.1.2"
  11155. show = "0" >
  11156. <productMenu id="protocol"
  11157. type="0">
  11158. </productMenu>
  11159. <productMenu id="sip"
  11160. type="1" >
  11161. </productMenu>
  11162. <productMenu id="bluetoothIntercom"
  11163. type="1" >
  11164. </productMenu>
  11165. <productMenu id="phone"
  11166. type="2" >
  11167. </productMenu>
  11168. <productMenu id="fmradio"
  11169. type="3" >
  11170. </productMenu>
  11171. <productMenu id="deviceSetting"
  11172. type="1"
  11173. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11174. <productMenuURL version="1.0"
  11175. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11176. />
  11177. </productMenu>
  11178. <productMenu id="quickGuide"
  11179. type="1"
  11180. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11181. size="689KB" >
  11182. </productMenu>
  11183. <productMenu id="userGuide"
  11184. type="1"
  11185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11186. size="1.43MB" >
  11187. </productMenu>
  11188. <productID id="5920"
  11189. />
  11190. <productGroupable type="0"
  11191. />
  11192. </product>
  11193. <product id="DWO6"
  11194. name="SEDICI DWO6-PRO"
  11195. series="10"
  11196. latestVersion="1.0.2"
  11197. show = "0" >
  11198. <productMenu id="protocol"
  11199. type="0">
  11200. </productMenu>
  11201. <productMenu id="sip"
  11202. type="1" >
  11203. </productMenu>
  11204. <productMenu id="bluetoothIntercom"
  11205. type="1" >
  11206. </productMenu>
  11207. <productMenu id="phone"
  11208. type="2" >
  11209. </productMenu>
  11210. <productMenu id="fmradio"
  11211. type="3" >
  11212. </productMenu>
  11213. <productMenu id="deviceSetting"
  11214. type="1"
  11215. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11216. </productMenu>
  11217. <productMenu id="quickGuide"
  11218. type="1"
  11219. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11220. size="529KB" >
  11221. </productMenu>
  11222. <productMenu id="userGuide"
  11223. type="1"
  11224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11225. size="4.09MB" >
  11226. </productMenu>
  11227. <productID id="6112"
  11228. />
  11229. <productGroupable type="0"
  11230. />
  11231. </product>
  11232. <product id="DWO6A"
  11233. name="SEDICI DWO-6"
  11234. series="10"
  11235. latestVersion="1.0.2"
  11236. show = "0" >
  11237. <productMenu id="protocol"
  11238. type="0">
  11239. </productMenu>
  11240. <productMenu id="sip"
  11241. type="1" >
  11242. </productMenu>
  11243. <productMenu id="bluetoothIntercom"
  11244. type="1" >
  11245. </productMenu>
  11246. <productMenu id="phone"
  11247. type="2" >
  11248. </productMenu>
  11249. <productMenu id="fmradio"
  11250. type="3" >
  11251. </productMenu>
  11252. <productMenu id="deviceSetting"
  11253. type="1"
  11254. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11255. </productMenu>
  11256. <productMenu id="quickGuide"
  11257. type="1"
  11258. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11259. size="522KB" >
  11260. </productMenu>
  11261. <productMenu id="userGuide"
  11262. type="1"
  11263. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11264. size="2.71MB" >
  11265. </productMenu>
  11266. <productID id="6114"
  11267. />
  11268. <productGroupable type="0"
  11269. />
  11270. </product>
  11271. <product id="3SPLUS"
  11272. name="ZILL"
  11273. series="3"
  11274. latestVersion="1.0.4"
  11275. show = "0" >
  11276. <productMenu id="protocol"
  11277. type="0">
  11278. </productMenu>
  11279. <productMenu id="sip"
  11280. type="1" >
  11281. </productMenu>
  11282. <productMenu id="bluetoothIntercom"
  11283. type="1" >
  11284. </productMenu>
  11285. <productMenu id="deviceSetting"
  11286. type="1"
  11287. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11288. </productMenu>
  11289. <productMenu id="quickGuide"
  11290. type="1"
  11291. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11292. size="842KB" >
  11293. </productMenu>
  11294. <productMenu id="userGuide"
  11295. type="1"
  11296. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11297. size="1.02MB" >
  11298. </productMenu>
  11299. <productID id="6335"
  11300. />
  11301. <productGroupable type="0"
  11302. />
  11303. </product>
  11304. <product id="HD50S"
  11305. name="Boom! Audio 30K"
  11306. series="30"
  11307. latestVersion="3.4"
  11308. show = "0" >
  11309. <productMenu id="protocol"
  11310. type="1"
  11311. url="0">
  11312. </productMenu>
  11313. <productMenu id="wa"
  11314. type="0" >
  11315. </productMenu>
  11316. <productMenu id="sip"
  11317. type="1" >
  11318. </productMenu>
  11319. <productMenu id="meshIntercom"
  11320. type="20" >
  11321. <productMenuType version="2.9.9"
  11322. type="10"
  11323. />
  11324. </productMenu>
  11325. <productMenu id="bluetoothIntercom"
  11326. type="1" >
  11327. </productMenu>
  11328. <productMenu id="phone"
  11329. type="1" >
  11330. </productMenu>
  11331. <productMenu id="music"
  11332. type="1" >
  11333. </productMenu>
  11334. <productMenu id="fmradio"
  11335. type="1" >
  11336. </productMenu>
  11337. <productMenu id="deviceSetting"
  11338. type="1"
  11339. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11340. <productMenuURL version="3.2"
  11341. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11342. />
  11343. <productMenuURL version="3.0"
  11344. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11345. />
  11346. <productMenuURL version="2.2"
  11347. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11348. />
  11349. </productMenu>
  11350. <productMenu id="quickGuide"
  11351. type="1"
  11352. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11353. size="1.06MB" >
  11354. </productMenu>
  11355. <productMenu id="userGuide"
  11356. type="1"
  11357. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11358. size="3.15MB" >
  11359. </productMenu>
  11360. <productMenu id="volume"
  11361. type="1" >
  11362. </productMenu>
  11363. <productID id="3112"
  11364. />
  11365. <productGroupable type="0"
  11366. />
  11367. </product>
  11368. <product id="HD50S"
  11369. name="Boom! Audio N02"
  11370. series="30"
  11371. latestVersion="3.1"
  11372. show = "0" >
  11373. <productMenu id="protocol"
  11374. type="1"
  11375. url="0">
  11376. </productMenu>
  11377. <productMenu id="wa"
  11378. type="2" >
  11379. </productMenu>
  11380. <productMenu id="sip"
  11381. type="1" >
  11382. </productMenu>
  11383. <productMenu id="meshIntercom"
  11384. type="20" >
  11385. <productMenuType version="2.9.9"
  11386. type="10"
  11387. />
  11388. </productMenu>
  11389. <productMenu id="bluetoothIntercom"
  11390. type="1" >
  11391. </productMenu>
  11392. <productMenu id="phone"
  11393. type="1" >
  11394. </productMenu>
  11395. <productMenu id="music"
  11396. type="1" >
  11397. </productMenu>
  11398. <productMenu id="fmradio"
  11399. type="1" >
  11400. </productMenu>
  11401. <productMenu id="deviceSetting"
  11402. type="1"
  11403. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11404. <productMenuURL version="2.2"
  11405. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11406. />
  11407. </productMenu>
  11408. <productMenu id="quickGuide"
  11409. type="1"
  11410. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11411. size="1.06MB" >
  11412. </productMenu>
  11413. <productMenu id="userGuide"
  11414. type="1"
  11415. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11416. size="3.15MB" >
  11417. </productMenu>
  11418. <productMenu id="volume"
  11419. type="2" >
  11420. </productMenu>
  11421. <productID id="3114"
  11422. />
  11423. <productGroupable type="0"
  11424. />
  11425. </product>
  11426. <product id="HD50S"
  11427. name="Boom Audio 20S"
  11428. series="50"
  11429. latestVersion="2.5.2"
  11430. show = "0" >
  11431. <productMenu id="protocol"
  11432. type="0">
  11433. </productMenu>
  11434. <productMenu id="sip"
  11435. type="1" >
  11436. <productMenuType version="1.0"
  11437. type="0"
  11438. />
  11439. </productMenu>
  11440. <productMenu id="bluetoothIntercom"
  11441. type="1" >
  11442. <productMenuType version="1.0"
  11443. type="0"
  11444. />
  11445. </productMenu>
  11446. <productMenu id="intercomSetting"
  11447. type="1" >
  11448. </productMenu>
  11449. <productMenu id="phone"
  11450. type="2" >
  11451. </productMenu>
  11452. <productMenu id="fmradio"
  11453. type="3" >
  11454. </productMenu>
  11455. <productMenu id="deviceSetting"
  11456. type="1"
  11457. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11458. <productMenuURL version="2.4"
  11459. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11460. />
  11461. <productMenuURL version="1.5"
  11462. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11463. />
  11464. <productMenuURL version="1.4.1"
  11465. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11466. />
  11467. <productMenuURL version="1.1"
  11468. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11469. />
  11470. <productMenuURL version="1.0"
  11471. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11472. />
  11473. </productMenu>
  11474. <productMenu id="quickGuide"
  11475. type="1"
  11476. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11477. size="264KB" >
  11478. </productMenu>
  11479. <productMenu id="userGuide"
  11480. type="1"
  11481. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11482. size="3.09MB" >
  11483. </productMenu>
  11484. <productMenu id="connectGuide"
  11485. type="1"
  11486. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11487. size="1.12MB" >
  11488. </productMenu>
  11489. <productID id="4210"
  11490. />
  11491. <productProductKey key="11"
  11492. />
  11493. <productID id="4230"
  11494. />
  11495. <productProductKey key="11"
  11496. />
  11497. <productGroupable type="1"
  11498. />
  11499. </product>
  11500. <product id="HD50S"
  11501. name="Boom Audio 20S EVO"
  11502. series="50"
  11503. latestVersion="2.5.2"
  11504. show = "0" >
  11505. <productMenu id="protocol"
  11506. type="0">
  11507. </productMenu>
  11508. <productMenu id="sip"
  11509. type="1" >
  11510. <productMenuType version="1.0"
  11511. type="0"
  11512. />
  11513. </productMenu>
  11514. <productMenu id="bluetoothIntercom"
  11515. type="1" >
  11516. <productMenuType version="1.0"
  11517. type="0"
  11518. />
  11519. </productMenu>
  11520. <productMenu id="intercomSetting"
  11521. type="1" >
  11522. </productMenu>
  11523. <productMenu id="phone"
  11524. type="2" >
  11525. </productMenu>
  11526. <productMenu id="fmradio"
  11527. type="3" >
  11528. </productMenu>
  11529. <productMenu id="deviceSetting"
  11530. type="1"
  11531. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11532. <productMenuURL version="2.4"
  11533. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11534. />
  11535. <productMenuURL version="1.5"
  11536. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11537. />
  11538. <productMenuURL version="1.4.1"
  11539. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11540. />
  11541. <productMenuURL version="1.1"
  11542. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11543. />
  11544. <productMenuURL version="1.0"
  11545. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11546. />
  11547. </productMenu>
  11548. <productMenu id="quickGuide"
  11549. type="1"
  11550. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11551. size="321KB" >
  11552. </productMenu>
  11553. <productMenu id="userGuide"
  11554. type="1"
  11555. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11556. size="2.46MB" >
  11557. </productMenu>
  11558. <productID id="4230"
  11559. />
  11560. <productProductKey key="27"
  11561. />
  11562. <productGroupable type="1"
  11563. />
  11564. </product>
  11565. <product id="HD50S"
  11566. name="Boom! Audio 10S"
  11567. series="50"
  11568. latestVersion="1.1.3"
  11569. show = "0" >
  11570. <productMenu id="protocol"
  11571. type="0">
  11572. </productMenu>
  11573. <productMenu id="sip"
  11574. type="1" >
  11575. </productMenu>
  11576. <productMenu id="bluetoothIntercom"
  11577. type="1" >
  11578. </productMenu>
  11579. <productMenu id="phone"
  11580. type="2" >
  11581. </productMenu>
  11582. <productMenu id="fmradio"
  11583. type="3" >
  11584. </productMenu>
  11585. <productMenu id="deviceSetting"
  11586. type="1"
  11587. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11588. </productMenu>
  11589. <productMenu id="quickGuide"
  11590. type="1"
  11591. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11592. size="538KB" >
  11593. </productMenu>
  11594. <productMenu id="userGuide"
  11595. type="1"
  11596. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11597. size="1.55MB" >
  11598. </productMenu>
  11599. <productID id="5532"
  11600. />
  11601. <productGroupable type="0"
  11602. />
  11603. </product>
  11604. <product id="HD50S"
  11605. name="Boom! Audio N01 10R"
  11606. series="50"
  11607. latestVersion="1.1.3"
  11608. show = "0" >
  11609. <productMenu id="protocol"
  11610. type="0">
  11611. </productMenu>
  11612. <productMenu id="sip"
  11613. type="1" >
  11614. </productMenu>
  11615. <productMenu id="bluetoothIntercom"
  11616. type="1" >
  11617. </productMenu>
  11618. <productMenu id="phone"
  11619. type="2" >
  11620. </productMenu>
  11621. <productMenu id="fmradio"
  11622. type="3" >
  11623. </productMenu>
  11624. <productMenu id="deviceSetting"
  11625. type="1"
  11626. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11627. </productMenu>
  11628. <productMenu id="quickGuide"
  11629. type="1"
  11630. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11631. size="766KB" >
  11632. </productMenu>
  11633. <productMenu id="userGuide"
  11634. type="1"
  11635. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11636. size="1.45MB" >
  11637. </productMenu>
  11638. <productID id="5522"
  11639. />
  11640. <productGroupable type="0"
  11641. />
  11642. </product>
  11643. <product id="HD50S"
  11644. name="OUTRUSH-R N03"
  11645. series="50"
  11646. latestVersion="1.2.1"
  11647. show = "-1" >
  11648. <productMenu id="protocol"
  11649. type="0">
  11650. </productMenu>
  11651. <productMenu id="sip"
  11652. type="1" >
  11653. </productMenu>
  11654. <productMenu id="bluetoothIntercom"
  11655. type="1" >
  11656. </productMenu>
  11657. <productMenu id="phone"
  11658. type="2" >
  11659. </productMenu>
  11660. <productMenu id="fmradio"
  11661. type="3" >
  11662. </productMenu>
  11663. <productMenu id="deviceSetting"
  11664. type="1"
  11665. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11666. </productMenu>
  11667. <productMenu id="userGuide"
  11668. type="1"
  11669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11670. size="660KB" >
  11671. </productMenu>
  11672. <productID id="5434"
  11673. />
  11674. <productGroupable type="0"
  11675. />
  11676. </product>
  11677. <product id="HD50S"
  11678. name="OUTRUSH-R N03"
  11679. series="50"
  11680. latestVersion="2.0"
  11681. show = "0" >
  11682. <productMenu id="protocol"
  11683. type="3" >
  11684. </productMenu>
  11685. <productMenu id="sip"
  11686. type="1" >
  11687. </productMenu>
  11688. <productMenu id="bluetoothIntercom"
  11689. type="1" >
  11690. </productMenu>
  11691. <productMenu id="phone"
  11692. type="1" >
  11693. </productMenu>
  11694. <productMenu id="fmradio"
  11695. type="1" >
  11696. </productMenu>
  11697. <productMenu id="deviceSetting"
  11698. type="1"
  11699. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11700. </productMenu>
  11701. <productMenu id="userGuide"
  11702. type="1"
  11703. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11704. size="1.14MB" >
  11705. </productMenu>
  11706. <productID id="5441"
  11707. />
  11708. <productGroupable type="0"
  11709. />
  11710. </product>
  11711. <product id="5R"
  11712. name="5R"
  11713. series="5"
  11714. latestVersion="1.0.1"
  11715. show = "1" >
  11716. <productMenu id="protocol"
  11717. type="3" >
  11718. </productMenu>
  11719. <productMenu id="sip"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="bluetoothIntercom"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="phone"
  11726. type="1" >
  11727. </productMenu>
  11728. <productMenu id="fmradio"
  11729. type="1" >
  11730. </productMenu>
  11731. <productMenu id="deviceSetting"
  11732. type="1"
  11733. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11734. </productMenu>
  11735. <productMenu id="quickGuide"
  11736. type="0"
  11737. url=""
  11738. size="934KB" >
  11739. </productMenu>
  11740. <productMenu id="userGuide"
  11741. type="1"
  11742. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11743. size="1.14MB" >
  11744. </productMenu>
  11745. <productMenu id="connectGuide"
  11746. type="1"
  11747. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11748. size="1.12MB" >
  11749. </productMenu>
  11750. <productID id="5591"
  11751. />
  11752. <productGroupable type="0"
  11753. />
  11754. </product>
  11755. <product id="5R"
  11756. name="5R LITE"
  11757. series="5"
  11758. latestVersion="1.0.1"
  11759. show = "1" >
  11760. <productMenu id="protocol"
  11761. type="3" >
  11762. </productMenu>
  11763. <productMenu id="sip"
  11764. type="1" >
  11765. </productMenu>
  11766. <productMenu id="bluetoothIntercom"
  11767. type="1" >
  11768. </productMenu>
  11769. <productMenu id="phone"
  11770. type="1" >
  11771. </productMenu>
  11772. <productMenu id="fmradio"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="deviceSetting"
  11776. type="1"
  11777. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11778. </productMenu>
  11779. <productMenu id="quickGuide"
  11780. type="0"
  11781. url=""
  11782. size="934KB" >
  11783. </productMenu>
  11784. <productMenu id="userGuide"
  11785. type="1"
  11786. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11787. size="1.14MB" >
  11788. </productMenu>
  11789. <productMenu id="connectGuide"
  11790. type="1"
  11791. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11792. size="1.12MB" >
  11793. </productMenu>
  11794. <productID id="5592"
  11795. />
  11796. <productGroupable type="0"
  11797. />
  11798. </product>
  11799. <product id="50RLE"
  11800. name="50R LE"
  11801. series="50"
  11802. latestVersion="1.1"
  11803. show = "0" >
  11804. <productMenu id="protocol"
  11805. type="2" >
  11806. </productMenu>
  11807. <productMenu id="alexa"
  11808. type="0" >
  11809. </productMenu>
  11810. <productMenu id="sip"
  11811. type="1" >
  11812. </productMenu>
  11813. <productMenu id="meshIntercom"
  11814. type="30" >
  11815. </productMenu>
  11816. <productMenu id="meshIntercom+"
  11817. type="3"
  11818. url="2" >
  11819. <productMenuType version="1.0.9"
  11820. type="2"
  11821. />
  11822. </productMenu>
  11823. <productMenu id="waveIntercom"
  11824. type="1" >
  11825. <productMenuType version="1.0.9"
  11826. type="0"
  11827. />
  11828. </productMenu>
  11829. <productMenu id="bluetoothIntercom"
  11830. type="1" >
  11831. </productMenu>
  11832. <productMenu id="phone"
  11833. type="1" >
  11834. </productMenu>
  11835. <productMenu id="music"
  11836. type="1" >
  11837. </productMenu>
  11838. <productMenu id="fmradio"
  11839. type="0" >
  11840. </productMenu>
  11841. <productMenu id="deviceSetting"
  11842. type="1"
  11843. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11844. <productMenuURL version="1.0.9"
  11845. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11846. />
  11847. </productMenu>
  11848. <productMenu id="quickGuide"
  11849. type="0"
  11850. url=""
  11851. size="344KB" >
  11852. </productMenu>
  11853. <productMenu id="userGuide"
  11854. type="0"
  11855. url=""
  11856. size="3.41MB" >
  11857. </productMenu>
  11858. <productMenu id="volume"
  11859. type="11" >
  11860. </productMenu>
  11861. <productMenu id="battery"
  11862. type="1" >
  11863. </productMenu>
  11864. <productID id="3223"
  11865. />
  11866. <productGroupable type="0"
  11867. />
  11868. </product>
  11869. <product id="5RLOUIS"
  11870. name="5R LOUIS EDITION"
  11871. series="5"
  11872. latestVersion="1.0"
  11873. show = "-1" >
  11874. <productMenu id="protocol"
  11875. type="3" >
  11876. </productMenu>
  11877. <productMenu id="sip"
  11878. type="1" >
  11879. </productMenu>
  11880. <productMenu id="bluetoothIntercom"
  11881. type="1" >
  11882. </productMenu>
  11883. <productMenu id="phone"
  11884. type="1" >
  11885. </productMenu>
  11886. <productMenu id="fmradio"
  11887. type="1" >
  11888. </productMenu>
  11889. <productMenu id="deviceSetting"
  11890. type="1"
  11891. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11892. </productMenu>
  11893. <productMenu id="quickGuide"
  11894. type="0"
  11895. url=""
  11896. size="934KB" >
  11897. </productMenu>
  11898. <productMenu id="userGuide"
  11899. type="0"
  11900. url=""
  11901. size="1.14MB" >
  11902. </productMenu>
  11903. <productID id="5597"
  11904. />
  11905. <productGroupable type="0"
  11906. />
  11907. </product>
  11908. <product id="5S"
  11909. name="Ridekont 5S"
  11910. series="5"
  11911. latestVersion="2.3"
  11912. show = "-1" >
  11913. <productMenu id="protocol"
  11914. type="3" >
  11915. </productMenu>
  11916. <productMenu id="sip"
  11917. type="1" >
  11918. </productMenu>
  11919. <productMenu id="bluetoothIntercom"
  11920. type="1" >
  11921. </productMenu>
  11922. <productMenu id="phone"
  11923. type="1" >
  11924. </productMenu>
  11925. <productMenu id="fmradio"
  11926. type="0" >
  11927. </productMenu>
  11928. <productMenu id="deviceSetting"
  11929. type="1"
  11930. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11931. </productMenu>
  11932. <productMenu id="quickGuide"
  11933. type="0"
  11934. url=""
  11935. size="934KB" >
  11936. </productMenu>
  11937. <productMenu id="userGuide"
  11938. type="1"
  11939. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11940. size="1.14MB" >
  11941. </productMenu>
  11942. <productID id="5589"
  11943. />
  11944. <productGroupable type="0"
  11945. />
  11946. </product>
  11947. <product id="5R"
  11948. name="Ridekont 5R"
  11949. series="5"
  11950. latestVersion="1.0"
  11951. show = "0" >
  11952. <productMenu id="protocol"
  11953. type="3" >
  11954. </productMenu>
  11955. <productMenu id="sip"
  11956. type="1" >
  11957. </productMenu>
  11958. <productMenu id="bluetoothIntercom"
  11959. type="1" >
  11960. </productMenu>
  11961. <productMenu id="phone"
  11962. type="1" >
  11963. </productMenu>
  11964. <productMenu id="fmradio"
  11965. type="1" >
  11966. </productMenu>
  11967. <productMenu id="deviceSetting"
  11968. type="1"
  11969. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11970. </productMenu>
  11971. <productMenu id="quickGuide"
  11972. type="1"
  11973. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  11974. size="934KB" >
  11975. </productMenu>
  11976. <productMenu id="userGuide"
  11977. type="1"
  11978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  11979. size="1.14MB" >
  11980. </productMenu>
  11981. <productID id="5593"
  11982. />
  11983. <productGroupable type="0"
  11984. />
  11985. </product>
  11986. <product id="5R"
  11987. name="Ridekont 5R LITE"
  11988. series="5"
  11989. latestVersion="1.0"
  11990. show = "0" >
  11991. <productMenu id="protocol"
  11992. type="3" >
  11993. </productMenu>
  11994. <productMenu id="sip"
  11995. type="1" >
  11996. </productMenu>
  11997. <productMenu id="bluetoothIntercom"
  11998. type="1" >
  11999. </productMenu>
  12000. <productMenu id="phone"
  12001. type="1" >
  12002. </productMenu>
  12003. <productMenu id="fmradio"
  12004. type="1" >
  12005. </productMenu>
  12006. <productMenu id="deviceSetting"
  12007. type="1"
  12008. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12009. </productMenu>
  12010. <productMenu id="quickGuide"
  12011. type="0"
  12012. url=""
  12013. size="934KB" >
  12014. </productMenu>
  12015. <productMenu id="userGuide"
  12016. type="1"
  12017. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12018. size="1.14MB" >
  12019. </productMenu>
  12020. <productID id="5594"
  12021. />
  12022. <productGroupable type="0"
  12023. />
  12024. </product>
  12025. <product id="SA30"
  12026. name="SA30"
  12027. series="SA"
  12028. latestVersion="1.0.1"
  12029. latestVersionVoicePrompt="0.15"
  12030. show = "-1" >
  12031. <productMenu id="protocol"
  12032. type="2" >
  12033. </productMenu>
  12034. <productMenu id="ota"
  12035. type="2" >
  12036. <otaPackages>
  12037. <package
  12038. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12039. size="3144148"
  12040. />
  12041. </otaPackages>
  12042. </productMenu>
  12043. <productMenu id="meshIntercom"
  12044. type="30" >
  12045. </productMenu>
  12046. <productMenu id="meshIntercom+"
  12047. type="3"
  12048. url="2" >
  12049. </productMenu>
  12050. <productMenu id="phone"
  12051. type="1" >
  12052. </productMenu>
  12053. <productMenu id="music"
  12054. type="1" >
  12055. </productMenu>
  12056. <productMenu id="musicSharing"
  12057. type="0" >
  12058. </productMenu>
  12059. <productMenu id="deviceSetting"
  12060. type="1"
  12061. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12062. </productMenu>
  12063. <productMenu id="quickGuide"
  12064. type="0"
  12065. url=""
  12066. size="1.12MB" >
  12067. </productMenu>
  12068. <productMenu id="userGuide"
  12069. type="1"
  12070. url=""
  12071. size="2.0MB" >
  12072. </productMenu>
  12073. <productMenu id="videoGuide"
  12074. type="0"
  12075. url=""
  12076. size="3.41MB" >
  12077. </productMenu>
  12078. <productMenu id="volume"
  12079. type="12" >
  12080. </productMenu>
  12081. <productMenu id="battery"
  12082. type="1" >
  12083. </productMenu>
  12084. <productID id="6852"
  12085. />
  12086. <productGroupable type="0"
  12087. />
  12088. </product>
  12089. <product id="I30"
  12090. name="I30"
  12091. series="I"
  12092. latestVersion="1.0.1"
  12093. latestVersionVoicePrompt="0.2"
  12094. show = "-1" >
  12095. <productMenu id="protocol"
  12096. type="2" >
  12097. </productMenu>
  12098. <productMenu id="ota"
  12099. type="2" >
  12100. <otaPackages>
  12101. <package
  12102. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12103. size="3144148"
  12104. />
  12105. </otaPackages>
  12106. </productMenu>
  12107. <productMenu id="meshIntercom"
  12108. type="30" >
  12109. </productMenu>
  12110. <productMenu id="meshIntercom+"
  12111. type="3"
  12112. url="2" >
  12113. </productMenu>
  12114. <productMenu id="phone"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="music"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="musicSharing"
  12121. type="0" >
  12122. </productMenu>
  12123. <productMenu id="deviceSetting"
  12124. type="1"
  12125. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12126. </productMenu>
  12127. <productMenu id="quickGuide"
  12128. type="0"
  12129. url=""
  12130. size="1.12MB" >
  12131. </productMenu>
  12132. <productMenu id="userGuide"
  12133. type="1"
  12134. url=""
  12135. size="2.10MB" >
  12136. </productMenu>
  12137. <productMenu id="videoGuide"
  12138. type="0"
  12139. url=""
  12140. size="3.11MB" >
  12141. </productMenu>
  12142. <productMenu id="volume"
  12143. type="12" >
  12144. </productMenu>
  12145. <productMenu id="battery"
  12146. type="1" >
  12147. </productMenu>
  12148. <productID id="6853"
  12149. />
  12150. <productGroupable type="0"
  12151. />
  12152. </product>
  12153. <product id="C30"
  12154. name="SENA C30"
  12155. series="C"
  12156. latestVersion="1.2.2"
  12157. latestVersionVoicePrompt="0.13"
  12158. show = "1" >
  12159. <productMenu id="protocol"
  12160. type="2" >
  12161. </productMenu>
  12162. <productMenu id="alexa"
  12163. type="0" >
  12164. </productMenu>
  12165. <productMenu id="ota"
  12166. type="2" >
  12167. <otaPackages>
  12168. <package
  12169. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12170. size="3144148"
  12171. />
  12172. </otaPackages>
  12173. </productMenu>
  12174. <productMenu id="wa"
  12175. type="0" >
  12176. </productMenu>
  12177. <productMenu id="meshIntercom"
  12178. type="30" >
  12179. </productMenu>
  12180. <productMenu id="meshIntercom+"
  12181. type="3"
  12182. url="2" >
  12183. <productMenuType version="1.0.9"
  12184. type="2"
  12185. />
  12186. </productMenu>
  12187. <productMenu id="waveIntercom"
  12188. type="1" >
  12189. <productMenuType version="1.1.9"
  12190. type="0"
  12191. />
  12192. </productMenu>
  12193. <productMenu id="phone"
  12194. type="1" >
  12195. </productMenu>
  12196. <productMenu id="music"
  12197. type="1" >
  12198. </productMenu>
  12199. <productMenu id="musicSharing"
  12200. type="0" >
  12201. </productMenu>
  12202. <productMenu id="deviceSetting"
  12203. type="1"
  12204. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12205. <productMenuURL version="1.1.3"
  12206. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12207. />
  12208. <productMenuURL version="1.0.9"
  12209. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12210. />
  12211. </productMenu>
  12212. <productMenu id="quickGuide"
  12213. type="1"
  12214. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12215. size="1.12MB" >
  12216. </productMenu>
  12217. <productMenu id="userGuide"
  12218. type="0"
  12219. url=""
  12220. size="2.0MB" >
  12221. </productMenu>
  12222. <productMenu id="videoGuide"
  12223. type="0"
  12224. url=""
  12225. size="3.41MB" >
  12226. </productMenu>
  12227. <productMenu id="volume"
  12228. type="12" >
  12229. </productMenu>
  12230. <productMenu id="battery"
  12231. type="1" >
  12232. </productMenu>
  12233. <productID id="683A"
  12234. />
  12235. <productGroupable type="0"
  12236. />
  12237. </product>
  12238. <product id="C20"
  12239. name="C20"
  12240. series="C"
  12241. latestVersion="1.0"
  12242. show = "1" >
  12243. <productMenu id="protocol"
  12244. type="3" >
  12245. </productMenu>
  12246. <productMenu id="sip"
  12247. type="1" >
  12248. </productMenu>
  12249. <productMenu id="bluetoothIntercom"
  12250. type="1" >
  12251. </productMenu>
  12252. <productMenu id="phone"
  12253. type="1" >
  12254. </productMenu>
  12255. <productMenu id="deviceSetting"
  12256. type="1"
  12257. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12258. </productMenu>
  12259. <productMenu id="quickGuide"
  12260. type="1"
  12261. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12262. size="934KB" >
  12263. </productMenu>
  12264. <productMenu id="userGuide"
  12265. type="1"
  12266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12267. size="1.14MB" >
  12268. </productMenu>
  12269. <productID id="3701"
  12270. />
  12271. <productGroupable type="0"
  12272. />
  12273. </product>
  12274. <product id="C10"
  12275. name="C10"
  12276. series="C"
  12277. latestVersion="1.4.4"
  12278. show = "1" >
  12279. <productMenu id="protocol"
  12280. type="3" >
  12281. </productMenu>
  12282. <productMenu id="sip"
  12283. type="1" >
  12284. </productMenu>
  12285. <productMenu id="bluetoothIntercom"
  12286. type="1" >
  12287. </productMenu>
  12288. <productMenu id="phone"
  12289. type="1" >
  12290. </productMenu>
  12291. <productMenu id="fmradio"
  12292. type="0" >
  12293. </productMenu>
  12294. <productMenu id="deviceSetting"
  12295. type="1"
  12296. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12297. </productMenu>
  12298. <productMenu id="userGuide"
  12299. type="1"
  12300. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12301. size="1.14MB" >
  12302. </productMenu>
  12303. <productID id="5595"
  12304. />
  12305. <productGroupable type="0"
  12306. />
  12307. </product>
  12308. <product id="J30"
  12309. name="J30"
  12310. series="J"
  12311. latestVersion="1.2.2"
  12312. latestVersionVoicePrompt="0.14"
  12313. show = "0" >
  12314. <productMenu id="protocol"
  12315. type="2" >
  12316. </productMenu>
  12317. <productMenu id="alexa"
  12318. type="0" >
  12319. </productMenu>
  12320. <productMenu id="ota"
  12321. type="2" >
  12322. <otaPackages>
  12323. <package
  12324. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12325. size="3144148"
  12326. />
  12327. </otaPackages>
  12328. </productMenu>
  12329. <productMenu id="wa"
  12330. type="0" >
  12331. </productMenu>
  12332. <productMenu id="meshIntercom"
  12333. type="30" >
  12334. </productMenu>
  12335. <productMenu id="meshIntercom+"
  12336. type="3"
  12337. url="2" >
  12338. <productMenuType version="1.0.9"
  12339. type="2"
  12340. />
  12341. </productMenu>
  12342. <productMenu id="waveIntercom"
  12343. type="1" >
  12344. <productMenuType version="1.1.9"
  12345. type="0"
  12346. />
  12347. </productMenu>
  12348. <productMenu id="phone"
  12349. type="1" >
  12350. </productMenu>
  12351. <productMenu id="music"
  12352. type="1" >
  12353. </productMenu>
  12354. <productMenu id="musicSharing"
  12355. type="0" >
  12356. </productMenu>
  12357. <productMenu id="deviceSetting"
  12358. type="1"
  12359. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12360. <productMenuURL version="1.0.9"
  12361. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12362. />
  12363. </productMenu>
  12364. <productMenu id="quickGuide"
  12365. type="0"
  12366. url=""
  12367. size="1.12MB" >
  12368. </productMenu>
  12369. <productMenu id="userGuide"
  12370. type="1"
  12371. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12372. size="2.0MB" >
  12373. </productMenu>
  12374. <productMenu id="videoGuide"
  12375. type="0"
  12376. url=""
  12377. size="3.41MB" >
  12378. </productMenu>
  12379. <productMenu id="volume"
  12380. type="12" >
  12381. </productMenu>
  12382. <productMenu id="battery"
  12383. type="1" >
  12384. </productMenu>
  12385. <productID id="6848"
  12386. />
  12387. <productGroupable type="0"
  12388. />
  12389. </product>
  12390. <product id="J10"
  12391. name="J10"
  12392. series="5"
  12393. latestVersion="1.1.4"
  12394. show = "0" >
  12395. <productMenu id="protocol"
  12396. type="3" >
  12397. </productMenu>
  12398. <productMenu id="sip"
  12399. type="1" >
  12400. </productMenu>
  12401. <productMenu id="bluetoothIntercom"
  12402. type="1" >
  12403. </productMenu>
  12404. <productMenu id="phone"
  12405. type="1" >
  12406. </productMenu>
  12407. <productMenu id="fmradio"
  12408. type="0" >
  12409. </productMenu>
  12410. <productMenu id="deviceSetting"
  12411. type="1"
  12412. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12413. </productMenu>
  12414. <productMenu id="userGuide"
  12415. type="1"
  12416. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12417. size="1.14MB" >
  12418. </productMenu>
  12419. <productID id="5598"
  12420. />
  12421. <productGroupable type="0"
  12422. />
  12423. </product>
  12424. <product id="B20"
  12425. name="B20"
  12426. series="B"
  12427. latestVersion="1.1.2"
  12428. latestVersionVoicePrompt="0.14"
  12429. show = "0" >
  12430. <productMenu id="protocol"
  12431. type="2" >
  12432. </productMenu>
  12433. <productMenu id="alexa"
  12434. type="0" >
  12435. </productMenu>
  12436. <productMenu id="ota"
  12437. type="2" >
  12438. <otaPackages>
  12439. <package
  12440. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12441. size="3144148"
  12442. />
  12443. </otaPackages>
  12444. </productMenu>
  12445. <productMenu id="wa"
  12446. type="0" >
  12447. </productMenu>
  12448. <productMenu id="meshIntercom"
  12449. type="30" >
  12450. </productMenu>
  12451. <productMenu id="phone"
  12452. type="1" >
  12453. </productMenu>
  12454. <productMenu id="music"
  12455. type="1" >
  12456. </productMenu>
  12457. <productMenu id="musicSharing"
  12458. type="0" >
  12459. </productMenu>
  12460. <productMenu id="deviceSetting"
  12461. type="1"
  12462. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12463. <productMenuURL version="1.0.9"
  12464. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12465. />
  12466. </productMenu>
  12467. <productMenu id="quickGuide"
  12468. type="0"
  12469. url=""
  12470. size="1.12MB" >
  12471. </productMenu>
  12472. <productMenu id="userGuide"
  12473. type="1"
  12474. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12475. size="2.0MB" >
  12476. </productMenu>
  12477. <productMenu id="videoGuide"
  12478. type="0"
  12479. url=""
  12480. size="3.41MB" >
  12481. </productMenu>
  12482. <productMenu id="volume"
  12483. type="12" >
  12484. </productMenu>
  12485. <productMenu id="battery"
  12486. type="1" >
  12487. </productMenu>
  12488. <productID id="6847"
  12489. />
  12490. <productGroupable type="0"
  12491. />
  12492. </product>
  12493. <product id="B10"
  12494. name="B10"
  12495. series="5"
  12496. latestVersion="1.2.4"
  12497. show = "0" >
  12498. <productMenu id="protocol"
  12499. type="3" >
  12500. </productMenu>
  12501. <productMenu id="sip"
  12502. type="1" >
  12503. </productMenu>
  12504. <productMenu id="bluetoothIntercom"
  12505. type="1" >
  12506. </productMenu>
  12507. <productMenu id="phone"
  12508. type="1" >
  12509. </productMenu>
  12510. <productMenu id="fmradio"
  12511. type="0" >
  12512. </productMenu>
  12513. <productMenu id="deviceSetting"
  12514. type="1"
  12515. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12516. </productMenu>
  12517. <productMenu id="userGuide"
  12518. type="1"
  12519. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12520. size="1.14MB" >
  12521. </productMenu>
  12522. <productID id="5596"
  12523. />
  12524. <productGroupable type="0"
  12525. />
  12526. </product>
  12527. <product id="E30"
  12528. name="E30"
  12529. series="E"
  12530. latestVersion="1.1.2"
  12531. latestVersionVoicePrompt="0.14"
  12532. show = "0" >
  12533. <productMenu id="protocol"
  12534. type="2" >
  12535. </productMenu>
  12536. <productMenu id="alexa"
  12537. type="0" >
  12538. </productMenu>
  12539. <productMenu id="ota"
  12540. type="2" >
  12541. <otaPackages>
  12542. <package
  12543. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12544. size="3144148"
  12545. />
  12546. </otaPackages>
  12547. </productMenu>
  12548. <productMenu id="wa"
  12549. type="0" >
  12550. </productMenu>
  12551. <productMenu id="meshIntercom"
  12552. type="30" >
  12553. </productMenu>
  12554. <productMenu id="meshIntercom+"
  12555. type="3"
  12556. url="2" >
  12557. </productMenu>
  12558. <productMenu id="waveIntercom"
  12559. type="1" >
  12560. <productMenuType version="1.0.9"
  12561. type="0"
  12562. />
  12563. </productMenu>
  12564. <productMenu id="phone"
  12565. type="1" >
  12566. </productMenu>
  12567. <productMenu id="music"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="musicSharing"
  12571. type="0" >
  12572. </productMenu>
  12573. <productMenu id="deviceSetting"
  12574. type="1"
  12575. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12576. </productMenu>
  12577. <productMenu id="quickGuide"
  12578. type="0"
  12579. url=""
  12580. size="1.12MB" >
  12581. </productMenu>
  12582. <productMenu id="userGuide"
  12583. type="1"
  12584. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12585. size="2.0MB" >
  12586. </productMenu>
  12587. <productMenu id="videoGuide"
  12588. type="0"
  12589. url=""
  12590. size="3.41MB" >
  12591. </productMenu>
  12592. <productMenu id="volume"
  12593. type="12" >
  12594. </productMenu>
  12595. <productMenu id="battery"
  12596. type="1" >
  12597. </productMenu>
  12598. <productID id="6846"
  12599. />
  12600. <productGroupable type="0"
  12601. />
  12602. </product>
  12603. <product id="ACSRAM"
  12604. name="ACS-RAM"
  12605. series="ACS"
  12606. latestVersion="1.0.5"
  12607. show = "1" >
  12608. <productMenu id="protocol"
  12609. type="3" >
  12610. </productMenu>
  12611. <productMenu id="sip"
  12612. type="1" >
  12613. </productMenu>
  12614. <productMenu id="bluetoothIntercom"
  12615. type="1" >
  12616. </productMenu>
  12617. <productMenu id="deviceSetting"
  12618. type="1"
  12619. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12620. </productMenu>
  12621. <productMenu id="quickGuide"
  12622. type="1"
  12623. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12624. size="344KB" >
  12625. </productMenu>
  12626. <productMenu id="userGuide"
  12627. type="1"
  12628. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12629. size="1.14MB" >
  12630. </productMenu>
  12631. <productMenu id="connectGuide"
  12632. type="1"
  12633. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12634. size="1.12MB" >
  12635. </productMenu>
  12636. <productID id="3400"
  12637. />
  12638. <productGroupable type="0"
  12639. />
  12640. </product>
  12641. <product id="ACS10"
  12642. name="ACS10"
  12643. series="ACS"
  12644. latestVersion="1.0.2"
  12645. show = "1" >
  12646. <productMenu id="protocol"
  12647. type="0">
  12648. </productMenu>
  12649. <productMenu id="sip"
  12650. type="1" >
  12651. </productMenu>
  12652. <productMenu id="bluetoothIntercom"
  12653. type="1" >
  12654. </productMenu>
  12655. <productMenu id="phone"
  12656. type="2" >
  12657. </productMenu>
  12658. <productMenu id="deviceSetting"
  12659. type="1"
  12660. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12661. </productMenu>
  12662. <productMenu id="quickGuide"
  12663. type="1"
  12664. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12665. size="970KB" >
  12666. </productMenu>
  12667. <productMenu id="userGuide"
  12668. type="1"
  12669. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12670. size="1.26MB" >
  12671. </productMenu>
  12672. <productMenu id="connectGuide"
  12673. type="1"
  12674. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12675. size="1.12MB" >
  12676. </productMenu>
  12677. <productID id="3300"
  12678. />
  12679. <productGroupable type="0"
  12680. />
  12681. </product>
  12682. <product id="DWO7ProMesh"
  12683. name="DWO 7 Pro Mesh"
  12684. series="50"
  12685. latestVersion="1.1"
  12686. latestVersionVoicePrompt="0.9"
  12687. show = "0" >
  12688. <productMenu id="protocol"
  12689. type="2" >
  12690. </productMenu>
  12691. <productMenu id="alexa"
  12692. type="0" >
  12693. </productMenu>
  12694. <productMenu id="ota"
  12695. type="2" >
  12696. <otaPackages>
  12697. <package
  12698. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12699. size="2945812"
  12700. />
  12701. </otaPackages>
  12702. </productMenu>
  12703. <productMenu id="wa"
  12704. type="0" >
  12705. </productMenu>
  12706. <productMenu id="meshIntercom"
  12707. type="20" >
  12708. </productMenu>
  12709. <productMenu id="meshIntercom+"
  12710. type="3"
  12711. url="2" >
  12712. <productMenuType version="1.0.9"
  12713. type="2"
  12714. />
  12715. <productMenuURL version="2.1.1"
  12716. url="0"
  12717. />
  12718. </productMenu>
  12719. <productMenu id="waveIntercom"
  12720. type="1" >
  12721. <productMenuType version="1.0.9"
  12722. type="0"
  12723. />
  12724. </productMenu>
  12725. <productMenu id="phone"
  12726. type="1" >
  12727. </productMenu>
  12728. <productMenu id="music"
  12729. type="1" >
  12730. </productMenu>
  12731. <productMenu id="fmradio"
  12732. type="1" >
  12733. </productMenu>
  12734. <productMenu id="musicSharing"
  12735. type="0" >
  12736. </productMenu>
  12737. <productMenu id="deviceSetting"
  12738. type="1"
  12739. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12740. <productMenuURL version="1.0.9"
  12741. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12742. />
  12743. </productMenu>
  12744. <productMenu id="quickGuide"
  12745. type="1"
  12746. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12747. size="1.12MB" >
  12748. </productMenu>
  12749. <productMenu id="userGuide"
  12750. type="1"
  12751. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12752. size="2.0MB" >
  12753. </productMenu>
  12754. <productMenu id="volume"
  12755. type="12" >
  12756. </productMenu>
  12757. <productMenu id="battery"
  12758. type="1" >
  12759. </productMenu>
  12760. <productID id="6806"
  12761. />
  12762. <productGroupable type="0"
  12763. />
  12764. </product>
  12765. <product id="ERA1X"
  12766. name="ERA 1 X"
  12767. series="UCOM"
  12768. latestVersion="0.2.1"
  12769. latestVersionMesh="0.19"
  12770. latestVersionVoicePrompt="1.2"
  12771. show = "-1" >
  12772. <productMenu id="protocol"
  12773. type="2" >
  12774. </productMenu>
  12775. <productMenu id="ota"
  12776. type="2" >
  12777. <otaLanguages>
  12778. <otaLanguage
  12779. id="0"
  12780. name="English"
  12781. package="0"
  12782. />
  12783. <otaLanguage
  12784. id="0"
  12785. name="French"
  12786. package="1"
  12787. />
  12788. <otaLanguage
  12789. id="0"
  12790. name="Spanish"
  12791. package="2"
  12792. />
  12793. <otaLanguage
  12794. id="0"
  12795. name="Italian"
  12796. package="3"
  12797. />
  12798. <otaLanguage
  12799. id="0"
  12800. name="German"
  12801. package="4"
  12802. />
  12803. <otaLanguage
  12804. id="0"
  12805. name="Dutch"
  12806. package="5"
  12807. />
  12808. <otaLanguage
  12809. id="0"
  12810. name="Russian"
  12811. package="6"
  12812. />
  12813. <otaLanguage
  12814. id="0"
  12815. name="Chinese"
  12816. package="7"
  12817. />
  12818. <otaLanguage
  12819. id="0"
  12820. name="Korean"
  12821. package="8"
  12822. />
  12823. <otaLanguage
  12824. id="0"
  12825. name="Japanese"
  12826. package="9"
  12827. />
  12828. <otaLanguage
  12829. id="0"
  12830. name="Finnish"
  12831. package="10"
  12832. />
  12833. <otaLanguage
  12834. id="0"
  12835. name="Polish"
  12836. package="11"
  12837. />
  12838. <otaLanguage
  12839. id="0"
  12840. name="Czech"
  12841. package="12"
  12842. />
  12843. <otaLanguage
  12844. id="0"
  12845. name="Danish"
  12846. package="13"
  12847. />
  12848. <otaLanguage
  12849. id="0"
  12850. name="Norwegian"
  12851. package="14"
  12852. />
  12853. <otaLanguage
  12854. id="0"
  12855. name="Swedish"
  12856. package="15"
  12857. />
  12858. <otaLanguage
  12859. id="0"
  12860. name="Turkish"
  12861. package="16"
  12862. />
  12863. <otaLanguage
  12864. id="0"
  12865. name="Hungarian"
  12866. package="17"
  12867. />
  12868. <otaLanguage
  12869. id="0"
  12870. name="Portuguese"
  12871. package="18"
  12872. />
  12873. <otaLanguage
  12874. id="0"
  12875. name="Hebrew"
  12876. package="19"
  12877. />
  12878. <otaLanguage
  12879. id="0"
  12880. name="Greek"
  12881. package="20"
  12882. />
  12883. </otaLanguages>
  12884. <otaPackages>
  12885. <package
  12886. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  12887. size="5183988"
  12888. />
  12889. <package
  12890. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  12891. size="5183988"
  12892. />
  12893. <package
  12894. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  12895. size="5183988"
  12896. />
  12897. <package
  12898. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  12899. size="5183988"
  12900. />
  12901. <package
  12902. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  12903. size="5183988"
  12904. />
  12905. <package
  12906. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  12907. size="5183988"
  12908. />
  12909. <package
  12910. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  12911. size="5183988"
  12912. />
  12913. <package
  12914. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  12915. size="5183988"
  12916. />
  12917. <package
  12918. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  12919. size="5183988"
  12920. />
  12921. <package
  12922. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  12923. size="5183988"
  12924. />
  12925. <package
  12926. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  12927. size="5183988"
  12928. />
  12929. <package
  12930. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  12931. size="5183988"
  12932. />
  12933. <package
  12934. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  12935. size="5183988"
  12936. />
  12937. <package
  12938. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  12939. size="5183988"
  12940. />
  12941. <package
  12942. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  12943. size="5183988"
  12944. />
  12945. <package
  12946. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  12947. size="5183988"
  12948. />
  12949. <package
  12950. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  12951. size="5183988"
  12952. />
  12953. <package
  12954. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  12955. size="5183988"
  12956. />
  12957. <package
  12958. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  12959. size="5183988"
  12960. />
  12961. <package
  12962. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  12963. size="5183988"
  12964. />
  12965. <package
  12966. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  12967. size="5183988"
  12968. />
  12969. </otaPackages>
  12970. </productMenu>
  12971. <productMenu id="wa"
  12972. type="0" >
  12973. </productMenu>
  12974. <productMenu id="sip"
  12975. type="1" >
  12976. </productMenu>
  12977. <productMenu id="led"
  12978. type="0" >
  12979. </productMenu>
  12980. <productMenu id="illusion"
  12981. type="1" >
  12982. </productMenu>
  12983. <productMenu id="meshIntercom"
  12984. type="30" >
  12985. </productMenu>
  12986. <productMenu id="meshIntercom+"
  12987. type="3"
  12988. url="2" >
  12989. </productMenu>
  12990. <productMenu id="waveIntercom"
  12991. type="0" >
  12992. </productMenu>
  12993. <productMenu id="bluetoothIntercom"
  12994. type="1" >
  12995. </productMenu>
  12996. <productMenu id="bluetoothIntercomGrouping"
  12997. type="0" >
  12998. </productMenu>
  12999. <productMenu id="fmradio"
  13000. type="1"
  13001. url="1" >
  13002. </productMenu>
  13003. <productMenu id="phone"
  13004. type="1" >
  13005. </productMenu>
  13006. <productMenu id="music"
  13007. type="1" >
  13008. </productMenu>
  13009. <productMenu id="musicSharing"
  13010. type="0" >
  13011. </productMenu>
  13012. <productMenu id="deviceSetting"
  13013. type="1"
  13014. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13015. </productMenu>
  13016. <productMenu id="quickGuide"
  13017. type="0"
  13018. url=""
  13019. size="1.12MB" >
  13020. </productMenu>
  13021. <productMenu id="userGuide"
  13022. type="1"
  13023. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13024. size="2.0MB" >
  13025. </productMenu>
  13026. <productMenu id="videoGuide"
  13027. type="0"
  13028. url=""
  13029. size="3.41MB" >
  13030. </productMenu>
  13031. <productMenu id="volume"
  13032. type="16" >
  13033. </productMenu>
  13034. <productMenu id="soundMode"
  13035. type="1" >
  13036. </productMenu>
  13037. <productMenu id="battery"
  13038. type="1" >
  13039. </productMenu>
  13040. <productID id="6A83"
  13041. />
  13042. <productGroupable type="0"
  13043. />
  13044. </product>
  13045. <product id="MeshStation"
  13046. name="Mesh Station"
  13047. series="50"
  13048. latestVersion="0.9"
  13049. show = "-1" >
  13050. <productMenu id="protocol"
  13051. type="2" >
  13052. </productMenu>
  13053. <productMenu id="meshIntercom"
  13054. type="20"
  13055. url="99" >
  13056. </productMenu>
  13057. <productID id="3161"
  13058. />
  13059. <productGroupable type="0"
  13060. />
  13061. </product>
  13062. </products>
  13063. </sna>