snm.xml 508 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260167" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="1"
  525. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.9"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.7"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.9"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.7"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.7"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="1"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="1"
  1471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2511. <productMenuURL version="1.2.4"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2513. />
  2514. </productMenu>
  2515. <productMenu id="quickGuide"
  2516. type="0"
  2517. url=""
  2518. size="1.12MB" >
  2519. </productMenu>
  2520. <productMenu id="userGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2523. size="2.0MB" >
  2524. </productMenu>
  2525. <productMenu id="videoGuide"
  2526. type="0"
  2527. url=""
  2528. size="3.41MB" >
  2529. </productMenu>
  2530. <productMenu id="volume"
  2531. type="16" >
  2532. </productMenu>
  2533. <productMenu id="volume+"
  2534. type="2"
  2535. url="0x6004" >
  2536. </productMenu>
  2537. <productMenu id="battery"
  2538. type="1" >
  2539. </productMenu>
  2540. <productID id="6A0F"
  2541. />
  2542. <productGroupable type="0"
  2543. />
  2544. </product>
  2545. <product id="PHANTOMXB"
  2546. name="PHANTOM XB"
  2547. series="Helmet"
  2548. latestVersion="1.2.9"
  2549. latestVersionVoicePrompt="1.6"
  2550. show = "-1" >
  2551. <productMenu id="protocol"
  2552. type="2" >
  2553. </productMenu>
  2554. <productMenu id="ota"
  2555. type="2" >
  2556. <otaLanguages>
  2557. <otaLanguage
  2558. id="0"
  2559. name="English"
  2560. package="0"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="French"
  2565. package="1"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Spanish"
  2570. package="2"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Italian"
  2575. package="3"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="German"
  2580. package="4"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Dutch"
  2585. package="5"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Russian"
  2590. package="6"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Chinese"
  2595. package="7"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Korean"
  2600. package="8"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Japanese"
  2605. package="9"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Finnish"
  2610. package="10"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Polish"
  2615. package="11"
  2616. />
  2617. </otaLanguages>
  2618. <otaPackages>
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2665. size="5183988"
  2666. />
  2667. </otaPackages>
  2668. </productMenu>
  2669. <productMenu id="wa"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="led"
  2673. type="5" >
  2674. </productMenu>
  2675. <productMenu id="led+"
  2676. type="2"
  2677. url="1" >
  2678. </productMenu>
  2679. <productMenu id="meshIntercom"
  2680. type="30" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom+"
  2683. type="3"
  2684. url="2" >
  2685. </productMenu>
  2686. <productMenu id="waveIntercom"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="fmradio"
  2690. type="0" >
  2691. </productMenu>
  2692. <productMenu id="phone"
  2693. type="1" >
  2694. </productMenu>
  2695. <productMenu id="music"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="musicSharing"
  2699. type="0" >
  2700. </productMenu>
  2701. <productMenu id="deviceSetting"
  2702. type="1"
  2703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2704. <productMenuURL version="1.2.4"
  2705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2706. />
  2707. <productMenuURL version="1.2.1"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2709. />
  2710. </productMenu>
  2711. <productMenu id="quickGuide"
  2712. type="0"
  2713. url=""
  2714. size="1.12MB" >
  2715. </productMenu>
  2716. <productMenu id="userGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2719. size="2.0MB" >
  2720. </productMenu>
  2721. <productMenu id="videoGuide"
  2722. type="0"
  2723. url=""
  2724. size="3.41MB" >
  2725. </productMenu>
  2726. <productMenu id="volume"
  2727. type="16" >
  2728. </productMenu>
  2729. <productMenu id="volume+"
  2730. type="2"
  2731. url="0x6004" >
  2732. </productMenu>
  2733. <productMenu id="battery"
  2734. type="1" >
  2735. </productMenu>
  2736. <productID id="6A0C"
  2737. />
  2738. <productGroupable type="0"
  2739. />
  2740. </product>
  2741. <product id="PHANTOMKV"
  2742. name="PHANTOM KV"
  2743. series="Helmet"
  2744. latestVersion="1.2.10"
  2745. latestVersionVoicePrompt="1.7"
  2746. show = "1" >
  2747. <productMenu id="protocol"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="ota"
  2751. type="2" >
  2752. <otaLanguages>
  2753. <otaLanguage
  2754. id="0"
  2755. name="English"
  2756. package="0"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="French"
  2761. package="1"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Spanish"
  2766. package="2"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Italian"
  2771. package="3"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="German"
  2776. package="4"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Dutch"
  2781. package="5"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Russian"
  2786. package="6"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Chinese"
  2791. package="7"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Korean"
  2796. package="8"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Japanese"
  2801. package="9"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Finnish"
  2806. package="10"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Polish"
  2811. package="11"
  2812. />
  2813. </otaLanguages>
  2814. <otaPackages>
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2861. size="5183988"
  2862. />
  2863. </otaPackages>
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="led"
  2869. type="5" >
  2870. </productMenu>
  2871. <productMenu id="led+"
  2872. type="2"
  2873. url="1" >
  2874. </productMenu>
  2875. <productMenu id="meshIntercom"
  2876. type="30" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom+"
  2879. type="3"
  2880. url="2" >
  2881. </productMenu>
  2882. <productMenu id="waveIntercom"
  2883. type="1" >
  2884. </productMenu>
  2885. <productMenu id="fmradio"
  2886. type="0" >
  2887. </productMenu>
  2888. <productMenu id="phone"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="music"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="musicSharing"
  2895. type="0" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2900. <productMenuURL version="1.2.4"
  2901. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2902. />
  2903. </productMenu>
  2904. <productMenu id="quickGuide"
  2905. type="0"
  2906. url=""
  2907. size="1.12MB" >
  2908. </productMenu>
  2909. <productMenu id="userGuide"
  2910. type="1"
  2911. url=""
  2912. size="2.0MB" >
  2913. </productMenu>
  2914. <productMenu id="videoGuide"
  2915. type="0"
  2916. url=""
  2917. size="3.41MB" >
  2918. </productMenu>
  2919. <productMenu id="connectGuide"
  2920. type="1"
  2921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2922. size="1.1MB" >
  2923. </productMenu>
  2924. <productMenu id="volume"
  2925. type="16" >
  2926. </productMenu>
  2927. <productMenu id="volume+"
  2928. type="2"
  2929. url="0x6004" >
  2930. </productMenu>
  2931. <productMenu id="soundMode"
  2932. type="1" >
  2933. </productMenu>
  2934. <productMenu id="battery"
  2935. type="1" >
  2936. </productMenu>
  2937. <productID id="6A13"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="PHANTOMCamera"
  2943. name="PHANTOM Camera"
  2944. series="Helmet"
  2945. latestVersion="1.2.10"
  2946. latestVersionVoicePrompt="1.7"
  2947. show = "1" >
  2948. <productMenu id="protocol"
  2949. type="2" >
  2950. </productMenu>
  2951. <productMenu id="ota"
  2952. type="3" >
  2953. <otaLanguages>
  2954. <otaLanguage
  2955. id="0"
  2956. name="English"
  2957. package="0"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="French"
  2962. package="1"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Spanish"
  2967. package="2"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Italian"
  2972. package="3"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="German"
  2977. package="4"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Dutch"
  2982. package="5"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Russian"
  2987. package="6"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Chinese"
  2992. package="7"
  2993. />
  2994. <otaLanguage
  2995. id="0"
  2996. name="Korean"
  2997. package="8"
  2998. />
  2999. <otaLanguage
  3000. id="0"
  3001. name="Japanese"
  3002. package="9"
  3003. />
  3004. <otaLanguage
  3005. id="0"
  3006. name="Finnish"
  3007. package="10"
  3008. />
  3009. <otaLanguage
  3010. id="0"
  3011. name="Polish"
  3012. package="11"
  3013. />
  3014. </otaLanguages>
  3015. <otaPackages>
  3016. <package
  3017. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3042. size="5183988"
  3043. />
  3044. <package
  3045. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3046. size="5183988"
  3047. />
  3048. <package
  3049. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3050. size="5183988"
  3051. />
  3052. <package
  3053. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3054. size="5183988"
  3055. />
  3056. <package
  3057. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3058. size="5183988"
  3059. />
  3060. <package
  3061. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3062. size="5183988"
  3063. />
  3064. </otaPackages>
  3065. </productMenu>
  3066. <productMenu id="wa"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="led"
  3070. type="5" >
  3071. </productMenu>
  3072. <productMenu id="led+"
  3073. type="2"
  3074. url="1" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom"
  3077. type="30" >
  3078. </productMenu>
  3079. <productMenu id="meshIntercom+"
  3080. type="3"
  3081. url="2" >
  3082. </productMenu>
  3083. <productMenu id="waveIntercom"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="fmradio"
  3087. type="0" >
  3088. </productMenu>
  3089. <productMenu id="phone"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="music"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="musicSharing"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="deviceSetting"
  3099. type="1"
  3100. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3101. </productMenu>
  3102. <productMenu id="quickGuide"
  3103. type="0"
  3104. url=""
  3105. size="1.12MB" >
  3106. </productMenu>
  3107. <productMenu id="userGuide"
  3108. type="1"
  3109. url=""
  3110. size="2.0MB" >
  3111. </productMenu>
  3112. <productMenu id="videoGuide"
  3113. type="0"
  3114. url=""
  3115. size="3.41MB" >
  3116. </productMenu>
  3117. <productMenu id="volume"
  3118. type="16" >
  3119. </productMenu>
  3120. <productMenu id="battery"
  3121. type="1" >
  3122. </productMenu>
  3123. <productID id="6A10"
  3124. />
  3125. <productGroupable type="0"
  3126. />
  3127. </product>
  3128. <product id="PHANTOMCamera"
  3129. name="PHANTOM Camera"
  3130. series="Helmet"
  3131. latestVersion="1.2.10"
  3132. latestVersionVoicePrompt="1.7"
  3133. show = "-1" >
  3134. <productMenu id="protocol"
  3135. type="2" >
  3136. </productMenu>
  3137. <productMenu id="ota"
  3138. type="3" >
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. </productMenu>
  3269. <productMenu id="waveIntercom"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="fmradio"
  3273. type="0" >
  3274. </productMenu>
  3275. <productMenu id="phone"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="music"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="musicSharing"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="0"
  3290. url=""
  3291. size="1.12MB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url=""
  3296. size="2.0MB" >
  3297. </productMenu>
  3298. <productMenu id="videoGuide"
  3299. type="0"
  3300. url=""
  3301. size="3.41MB" >
  3302. </productMenu>
  3303. <productMenu id="volume"
  3304. type="16" >
  3305. </productMenu>
  3306. <productMenu id="battery"
  3307. type="1" >
  3308. </productMenu>
  3309. <productID id="6A09"
  3310. />
  3311. <productGroupable type="0"
  3312. />
  3313. </product>
  3314. <product id="PHANTOM"
  3315. name="PHANTOM ANC"
  3316. series="Helmet"
  3317. latestVersion="1.2.9"
  3318. latestVersionVoicePrompt="1.7"
  3319. show = "1" >
  3320. <productMenu id="protocol"
  3321. type="2" >
  3322. </productMenu>
  3323. <productMenu id="ota"
  3324. type="2" >
  3325. <productMenuType version="0.6.9"
  3326. type="0"
  3327. />
  3328. <otaLanguages>
  3329. <otaLanguage
  3330. id="0"
  3331. name="English"
  3332. package="0"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="French"
  3337. package="1"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Spanish"
  3342. package="2"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Italian"
  3347. package="3"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="German"
  3352. package="4"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Dutch"
  3357. package="5"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Russian"
  3362. package="6"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Chinese"
  3367. package="7"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Korean"
  3372. package="8"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="Japanese"
  3377. package="9"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Finnish"
  3382. package="10"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Polish"
  3387. package="11"
  3388. />
  3389. </otaLanguages>
  3390. <otaPackages>
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3417. size="5183988"
  3418. />
  3419. <package
  3420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3421. size="5183988"
  3422. />
  3423. <package
  3424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3425. size="5183988"
  3426. />
  3427. <package
  3428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3429. size="5183988"
  3430. />
  3431. <package
  3432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3433. size="5183988"
  3434. />
  3435. <package
  3436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3437. size="5183988"
  3438. />
  3439. </otaPackages>
  3440. </productMenu>
  3441. <productMenu id="wa"
  3442. type="0" >
  3443. </productMenu>
  3444. <productMenu id="led"
  3445. type="5" >
  3446. </productMenu>
  3447. <productMenu id="led+"
  3448. type="2"
  3449. url="1" >
  3450. </productMenu>
  3451. <productMenu id="meshIntercom"
  3452. type="30" >
  3453. </productMenu>
  3454. <productMenu id="meshIntercom+"
  3455. type="3"
  3456. url="2" >
  3457. <productMenuURL version="1.0.4"
  3458. url="10"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="waveIntercom"
  3462. type="1" >
  3463. <productMenuType version="1.0.9"
  3464. type="0"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="fmradio"
  3468. type="0" >
  3469. </productMenu>
  3470. <productMenu id="phone"
  3471. type="1" >
  3472. </productMenu>
  3473. <productMenu id="music"
  3474. type="1" >
  3475. </productMenu>
  3476. <productMenu id="musicSharing"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="deviceSetting"
  3480. type="1"
  3481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3482. <productMenuURL version="1.2.4"
  3483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3484. />
  3485. <productMenuURL version="1.2.1"
  3486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3487. />
  3488. <productMenuURL version="1.1.2"
  3489. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3490. />
  3491. <productMenuURL version="1.0.4"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="quickGuide"
  3496. type="0"
  3497. url=""
  3498. size="1.12MB" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3503. size="2.0MB" >
  3504. </productMenu>
  3505. <productMenu id="videoGuide"
  3506. type="0"
  3507. url=""
  3508. size="3.41MB" >
  3509. </productMenu>
  3510. <productMenu id="connectGuide"
  3511. type="1"
  3512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3513. size="1.1MB" >
  3514. </productMenu>
  3515. <productMenu id="volume"
  3516. type="16" >
  3517. </productMenu>
  3518. <productMenu id="volume+"
  3519. type="2"
  3520. url="0x6004" >
  3521. </productMenu>
  3522. <productMenu id="soundMode"
  3523. type="1" >
  3524. <productMenuType version="0.9.11"
  3525. type="0"
  3526. />
  3527. </productMenu>
  3528. <productMenu id="battery"
  3529. type="1" >
  3530. </productMenu>
  3531. <productID id="6A01"
  3532. />
  3533. <productGroupable type="0"
  3534. />
  3535. </product>
  3536. <product id="PHANTOM"
  3537. name="PHANTOM ANC"
  3538. series="Helmet"
  3539. latestVersion="1.2.9"
  3540. latestVersionVoicePrompt="1.7"
  3541. show = "-1" >
  3542. <productMenu id="protocol"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="ota"
  3546. type="2" >
  3547. <otaLanguages>
  3548. <otaLanguage
  3549. id="0"
  3550. name="English"
  3551. package="0"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="French"
  3556. package="1"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Spanish"
  3561. package="2"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Italian"
  3566. package="3"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="German"
  3571. package="4"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Dutch"
  3576. package="5"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Russian"
  3581. package="6"
  3582. />
  3583. <otaLanguage
  3584. id="0"
  3585. name="Chinese"
  3586. package="7"
  3587. />
  3588. <otaLanguage
  3589. id="0"
  3590. name="Korean"
  3591. package="8"
  3592. />
  3593. <otaLanguage
  3594. id="0"
  3595. name="Japanese"
  3596. package="9"
  3597. />
  3598. <otaLanguage
  3599. id="0"
  3600. name="Finnish"
  3601. package="10"
  3602. />
  3603. <otaLanguage
  3604. id="0"
  3605. name="Polish"
  3606. package="11"
  3607. />
  3608. </otaLanguages>
  3609. <otaPackages>
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3620. size="5183988"
  3621. />
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3656. size="5183988"
  3657. />
  3658. </otaPackages>
  3659. </productMenu>
  3660. <productMenu id="led"
  3661. type="5" >
  3662. </productMenu>
  3663. <productMenu id="led+"
  3664. type="2"
  3665. url="1" >
  3666. </productMenu>
  3667. <productMenu id="meshIntercom"
  3668. type="30" >
  3669. </productMenu>
  3670. <productMenu id="meshIntercom+"
  3671. type="3"
  3672. url="2" >
  3673. </productMenu>
  3674. <productMenu id="waveIntercom"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="fmradio"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="phone"
  3681. type="1" >
  3682. </productMenu>
  3683. <productMenu id="music"
  3684. type="1" >
  3685. </productMenu>
  3686. <productMenu id="musicSharing"
  3687. type="0" >
  3688. </productMenu>
  3689. <productMenu id="deviceSetting"
  3690. type="1"
  3691. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3692. <productMenuURL version="1.2.4"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3694. />
  3695. </productMenu>
  3696. <productMenu id="quickGuide"
  3697. type="0"
  3698. url=""
  3699. size="1.12MB" >
  3700. </productMenu>
  3701. <productMenu id="userGuide"
  3702. type="1"
  3703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3704. size="2.0MB" >
  3705. </productMenu>
  3706. <productMenu id="videoGuide"
  3707. type="0"
  3708. url=""
  3709. size="3.41MB" >
  3710. </productMenu>
  3711. <productMenu id="connectGuide"
  3712. type="1"
  3713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3714. size="1.1MB" >
  3715. </productMenu>
  3716. <productMenu id="volume"
  3717. type="16" >
  3718. </productMenu>
  3719. <productMenu id="volume+"
  3720. type="2"
  3721. url="0x6004" >
  3722. </productMenu>
  3723. <productMenu id="soundMode"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="battery"
  3727. type="1" >
  3728. </productMenu>
  3729. <productID id="6A19"
  3730. />
  3731. <productGroupable type="0"
  3732. />
  3733. </product>
  3734. <product id="PHANTOM"
  3735. name="PHANTOM"
  3736. series="Helmet"
  3737. latestVersion="1.2.9"
  3738. latestVersionVoicePrompt="1.7"
  3739. show = "-1" >
  3740. <productMenu id="protocol"
  3741. type="2" >
  3742. </productMenu>
  3743. <productMenu id="ota"
  3744. type="2" >
  3745. <otaLanguages>
  3746. <otaLanguage
  3747. id="0"
  3748. name="English"
  3749. package="0"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="French"
  3754. package="1"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Spanish"
  3759. package="2"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Italian"
  3764. package="3"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="German"
  3769. package="4"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Dutch"
  3774. package="5"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Russian"
  3779. package="6"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Chinese"
  3784. package="7"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Korean"
  3789. package="8"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Japanese"
  3794. package="9"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Finnish"
  3799. package="10"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Polish"
  3804. package="11"
  3805. />
  3806. </otaLanguages>
  3807. <otaPackages>
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3810. size="5183988"
  3811. />
  3812. <package
  3813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3814. size="5183988"
  3815. />
  3816. <package
  3817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3818. size="5183988"
  3819. />
  3820. <package
  3821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3822. size="5183988"
  3823. />
  3824. <package
  3825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3826. size="5183988"
  3827. />
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3854. size="5183988"
  3855. />
  3856. </otaPackages>
  3857. </productMenu>
  3858. <productMenu id="wa"
  3859. type="0" >
  3860. </productMenu>
  3861. <productMenu id="led"
  3862. type="5" >
  3863. </productMenu>
  3864. <productMenu id="led+"
  3865. type="2"
  3866. url="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. </productMenu>
  3871. <productMenu id="meshIntercom+"
  3872. type="3"
  3873. url="2" >
  3874. </productMenu>
  3875. <productMenu id="waveIntercom"
  3876. type="1" >
  3877. </productMenu>
  3878. <productMenu id="fmradio"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="phone"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="music"
  3885. type="1" >
  3886. </productMenu>
  3887. <productMenu id="musicSharing"
  3888. type="0" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3893. <productMenuURL version="1.2.4"
  3894. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3895. />
  3896. </productMenu>
  3897. <productMenu id="quickGuide"
  3898. type="0"
  3899. url=""
  3900. size="1.52MB" >
  3901. </productMenu>
  3902. <productMenu id="userGuide"
  3903. type="1"
  3904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3905. size="2.01MB" >
  3906. </productMenu>
  3907. <productMenu id="videoGuide"
  3908. type="0"
  3909. url=""
  3910. size="3.46MB" >
  3911. </productMenu>
  3912. <productMenu id="connectGuide"
  3913. type="1"
  3914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3915. size="1.1MB" >
  3916. </productMenu>
  3917. <productMenu id="volume"
  3918. type="16" >
  3919. </productMenu>
  3920. <productMenu id="volume+"
  3921. type="2"
  3922. url="0x6004" >
  3923. </productMenu>
  3924. <productMenu id="battery"
  3925. type="1" >
  3926. </productMenu>
  3927. <productID id="6A0E"
  3928. />
  3929. <productGroupable type="0"
  3930. />
  3931. </product>
  3932. <product id="PHANTOM"
  3933. name="PHANTOM"
  3934. series="Helmet"
  3935. latestVersion="1.2.9"
  3936. latestVersionVoicePrompt="1.7"
  3937. show = "1" >
  3938. <productMenu id="protocol"
  3939. type="2" >
  3940. </productMenu>
  3941. <productMenu id="ota"
  3942. type="2" >
  3943. <otaLanguages>
  3944. <otaLanguage
  3945. id="0"
  3946. name="English"
  3947. package="0"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="French"
  3952. package="1"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Spanish"
  3957. package="2"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Italian"
  3962. package="3"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="German"
  3967. package="4"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Dutch"
  3972. package="5"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Russian"
  3977. package="6"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Chinese"
  3982. package="7"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Korean"
  3987. package="8"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Japanese"
  3992. package="9"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Finnish"
  3997. package="10"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Polish"
  4002. package="11"
  4003. />
  4004. </otaLanguages>
  4005. <otaPackages>
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4008. size="5183988"
  4009. />
  4010. <package
  4011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4012. size="5183988"
  4013. />
  4014. <package
  4015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4016. size="5183988"
  4017. />
  4018. <package
  4019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4020. size="5183988"
  4021. />
  4022. <package
  4023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4024. size="5183988"
  4025. />
  4026. <package
  4027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4028. size="5183988"
  4029. />
  4030. <package
  4031. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4032. size="5183988"
  4033. />
  4034. <package
  4035. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4036. size="5183988"
  4037. />
  4038. <package
  4039. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4040. size="5183988"
  4041. />
  4042. <package
  4043. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4044. size="5183988"
  4045. />
  4046. <package
  4047. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4048. size="5183988"
  4049. />
  4050. <package
  4051. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4052. size="5183988"
  4053. />
  4054. </otaPackages>
  4055. </productMenu>
  4056. <productMenu id="wa"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="5" >
  4061. <productMenuType version="1.0.1"
  4062. type="4"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="led+"
  4066. type="2"
  4067. url="1" >
  4068. <productMenuType version="1.0.1"
  4069. type="-1"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="meshIntercom"
  4073. type="30" >
  4074. </productMenu>
  4075. <productMenu id="meshIntercom+"
  4076. type="3"
  4077. url="2" >
  4078. <productMenuURL version="1.0.4"
  4079. url="10"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="waveIntercom"
  4083. type="1" >
  4084. <productMenuType version="1.0.9"
  4085. type="0"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4103. <productMenuURL version="1.2.4"
  4104. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4105. />
  4106. <productMenuURL version="1.2.1"
  4107. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4108. />
  4109. <productMenuURL version="1.0.4"
  4110. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4111. />
  4112. <productMenuURL version="1.0.1"
  4113. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4114. />
  4115. </productMenu>
  4116. <productMenu id="quickGuide"
  4117. type="0"
  4118. url=""
  4119. size="1.12MB" >
  4120. </productMenu>
  4121. <productMenu id="userGuide"
  4122. type="1"
  4123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4124. size="2.0MB" >
  4125. </productMenu>
  4126. <productMenu id="videoGuide"
  4127. type="0"
  4128. url=""
  4129. size="3.41MB" >
  4130. </productMenu>
  4131. <productMenu id="connectGuide"
  4132. type="1"
  4133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4134. size="1.12MB" >
  4135. </productMenu>
  4136. <productMenu id="volume"
  4137. type="16" >
  4138. <productMenuType version="1.0"
  4139. type="13"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="volume+"
  4143. type="2"
  4144. url="0x6004" >
  4145. </productMenu>
  4146. <productMenu id="battery"
  4147. type="1" >
  4148. </productMenu>
  4149. <productID id="6A04"
  4150. />
  4151. <productGroupable type="0"
  4152. />
  4153. </product>
  4154. <product id="PHANTOMEasyLink"
  4155. name="PHANTOM EasyLink"
  4156. series="Helmet"
  4157. latestVersion="0.1"
  4158. latestVersionVoicePrompt="1.2"
  4159. show = "-1" >
  4160. <productMenu id="protocol"
  4161. type="2" >
  4162. </productMenu>
  4163. <productMenu id="ota"
  4164. type="0" >
  4165. <otaLanguages>
  4166. <otaLanguage
  4167. id="0"
  4168. name="English"
  4169. package="0"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="French"
  4174. package="1"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Spanish"
  4179. package="2"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Italian"
  4184. package="3"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="German"
  4189. package="4"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Dutch"
  4194. package="5"
  4195. />
  4196. <otaLanguage
  4197. id="0"
  4198. name="Russian"
  4199. package="6"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Chinese"
  4204. package="7"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Korean"
  4209. package="8"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Japanese"
  4214. package="9"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Finnish"
  4219. package="10"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Polish"
  4224. package="11"
  4225. />
  4226. </otaLanguages>
  4227. <otaPackages>
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4250. size="5183988"
  4251. />
  4252. <package
  4253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4254. size="5183988"
  4255. />
  4256. <package
  4257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4258. size="5183988"
  4259. />
  4260. <package
  4261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4262. size="5183988"
  4263. />
  4264. <package
  4265. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4266. size="5183988"
  4267. />
  4268. <package
  4269. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4270. size="5183988"
  4271. />
  4272. <package
  4273. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4274. size="5183988"
  4275. />
  4276. </otaPackages>
  4277. </productMenu>
  4278. <productMenu id="meshIntercom"
  4279. type="30" >
  4280. </productMenu>
  4281. <productMenu id="meshIntercom+"
  4282. type="3"
  4283. url="2" >
  4284. </productMenu>
  4285. <productMenu id="waveIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="fmradio"
  4289. type="0" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="musicSharing"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="0"
  4306. url=""
  4307. size="1.12MB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url=""
  4312. size="2.0MB" >
  4313. </productMenu>
  4314. <productMenu id="videoGuide"
  4315. type="0"
  4316. url=""
  4317. size="3.41MB" >
  4318. </productMenu>
  4319. <productMenu id="connectGuide"
  4320. type="0"
  4321. url=""
  4322. size="1.12MB" >
  4323. </productMenu>
  4324. <productMenu id="volume"
  4325. type="16" >
  4326. </productMenu>
  4327. <productMenu id="battery"
  4328. type="1" >
  4329. </productMenu>
  4330. <productID id="6A18"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="SPIDERXSlim"
  4336. name="SPIDER X Slim"
  4337. series="SPIDER"
  4338. latestVersion="1.0"
  4339. latestVersionVoicePrompt="1.7"
  4340. show = "1" >
  4341. <productMenu id="protocol"
  4342. type="2" >
  4343. </productMenu>
  4344. <productMenu id="warranty"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="serialNumber"
  4348. type="1" >
  4349. </productMenu>
  4350. <productMenu id="ota"
  4351. type="2" >
  4352. <otaLanguages>
  4353. <otaLanguage
  4354. id="0"
  4355. name="English"
  4356. package="0"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="French"
  4361. package="1"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Spanish"
  4366. package="2"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Italian"
  4371. package="3"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="German"
  4376. package="4"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Dutch"
  4381. package="5"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Russian"
  4386. package="6"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="Chinese"
  4391. package="7"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Korean"
  4396. package="8"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Japanese"
  4401. package="9"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="Finnish"
  4406. package="10"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Polish"
  4411. package="11"
  4412. />
  4413. </otaLanguages>
  4414. <otaPackages>
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4437. size="5183988"
  4438. />
  4439. <package
  4440. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4441. size="5183988"
  4442. />
  4443. <package
  4444. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4445. size="5183988"
  4446. />
  4447. <package
  4448. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4449. size="5183988"
  4450. />
  4451. <package
  4452. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4453. size="5183988"
  4454. />
  4455. <package
  4456. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4457. size="5183988"
  4458. />
  4459. <package
  4460. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4461. size="5183988"
  4462. />
  4463. </otaPackages>
  4464. </productMenu>
  4465. <productMenu id="meshIntercom"
  4466. type="30" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom+"
  4469. type="3"
  4470. url="2" >
  4471. </productMenu>
  4472. <productMenu id="waveIntercom"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1"
  4477. url="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="music"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="musicSharing"
  4486. type="0" >
  4487. </productMenu>
  4488. <productMenu id="deviceSetting"
  4489. type="1"
  4490. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_02.xml" >
  4491. <productMenuURL version="1.0"
  4492. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4493. />
  4494. </productMenu>
  4495. <productMenu id="quickGuide"
  4496. type="0"
  4497. url=""
  4498. size="1.12MB" >
  4499. </productMenu>
  4500. <productMenu id="userGuide"
  4501. type="1"
  4502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4503. size="2.0MB" >
  4504. </productMenu>
  4505. <productMenu id="videoGuide"
  4506. type="0"
  4507. url=""
  4508. size="3.41MB" >
  4509. </productMenu>
  4510. <productMenu id="connectGuide"
  4511. type="1"
  4512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4513. size="1.12MB" >
  4514. </productMenu>
  4515. <productMenu id="volume"
  4516. type="16" >
  4517. </productMenu>
  4518. <productMenu id="volume+"
  4519. type="2"
  4520. url="0x6004" >
  4521. </productMenu>
  4522. <productMenu id="appearance"
  4523. type="1"
  4524. url="2|white,silver,chrome,black" >
  4525. </productMenu>
  4526. <productMenu id="battery"
  4527. type="1" >
  4528. </productMenu>
  4529. <productID id="6A07"
  4530. />
  4531. <productGroupable type="0"
  4532. />
  4533. </product>
  4534. <product id="XFITM"
  4535. name="X-FIT M"
  4536. series="SPIDER"
  4537. latestVersion="0.1.11"
  4538. latestVersionVoicePrompt="1.1"
  4539. show = "-1" >
  4540. <productMenu id="protocol"
  4541. type="2" >
  4542. </productMenu>
  4543. <productMenu id="ota"
  4544. type="0" >
  4545. <otaLanguages>
  4546. <otaLanguage
  4547. id="0"
  4548. name="English"
  4549. package="0"
  4550. />
  4551. <otaLanguage
  4552. id="0"
  4553. name="French"
  4554. package="1"
  4555. />
  4556. <otaLanguage
  4557. id="0"
  4558. name="Spanish"
  4559. package="2"
  4560. />
  4561. <otaLanguage
  4562. id="0"
  4563. name="Italian"
  4564. package="3"
  4565. />
  4566. <otaLanguage
  4567. id="0"
  4568. name="German"
  4569. package="4"
  4570. />
  4571. <otaLanguage
  4572. id="0"
  4573. name="Dutch"
  4574. package="5"
  4575. />
  4576. <otaLanguage
  4577. id="0"
  4578. name="Russian"
  4579. package="6"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="Chinese"
  4584. package="7"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Korean"
  4589. package="8"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Japanese"
  4594. package="9"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="Finnish"
  4599. package="10"
  4600. />
  4601. <otaLanguage
  4602. id="0"
  4603. name="Polish"
  4604. package="11"
  4605. />
  4606. </otaLanguages>
  4607. <otaPackages>
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4610. size="5183988"
  4611. />
  4612. <package
  4613. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4614. size="5183988"
  4615. />
  4616. <package
  4617. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4618. size="5183988"
  4619. />
  4620. <package
  4621. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4622. size="5183988"
  4623. />
  4624. <package
  4625. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4626. size="5183988"
  4627. />
  4628. <package
  4629. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4630. size="5183988"
  4631. />
  4632. <package
  4633. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4634. size="5183988"
  4635. />
  4636. <package
  4637. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4638. size="5183988"
  4639. />
  4640. <package
  4641. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4642. size="5183988"
  4643. />
  4644. <package
  4645. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4646. size="5183988"
  4647. />
  4648. <package
  4649. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4650. size="5183988"
  4651. />
  4652. <package
  4653. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4654. size="5183988"
  4655. />
  4656. </otaPackages>
  4657. </productMenu>
  4658. <productMenu id="meshIntercom"
  4659. type="30" >
  4660. </productMenu>
  4661. <productMenu id="meshIntercom+"
  4662. type="3"
  4663. url="2" >
  4664. </productMenu>
  4665. <productMenu id="waveIntercom"
  4666. type="1" >
  4667. </productMenu>
  4668. <productMenu id="fmradio"
  4669. type="1"
  4670. url="1" >
  4671. </productMenu>
  4672. <productMenu id="phone"
  4673. type="1" >
  4674. </productMenu>
  4675. <productMenu id="music"
  4676. type="1" >
  4677. </productMenu>
  4678. <productMenu id="musicSharing"
  4679. type="0" >
  4680. </productMenu>
  4681. <productMenu id="deviceSetting"
  4682. type="1"
  4683. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4684. </productMenu>
  4685. <productMenu id="quickGuide"
  4686. type="0"
  4687. url=""
  4688. size="1.12MB" >
  4689. </productMenu>
  4690. <productMenu id="userGuide"
  4691. type="1"
  4692. url=""
  4693. size="2.0MB" >
  4694. </productMenu>
  4695. <productMenu id="videoGuide"
  4696. type="0"
  4697. url=""
  4698. size="3.41MB" >
  4699. </productMenu>
  4700. <productMenu id="volume"
  4701. type="16" >
  4702. </productMenu>
  4703. <productMenu id="volume+"
  4704. type="2"
  4705. url="0x6004" >
  4706. </productMenu>
  4707. <productMenu id="battery"
  4708. type="1" >
  4709. </productMenu>
  4710. <productID id="6A17"
  4711. />
  4712. <productGroupable type="0"
  4713. />
  4714. </product>
  4715. <product id="VORTEXMESH"
  4716. name="VORTEX MESH"
  4717. series="Helmet"
  4718. latestVersion="0.1.11"
  4719. latestVersionVoicePrompt="1.1"
  4720. show = "-1" >
  4721. <productMenu id="protocol"
  4722. type="2" >
  4723. </productMenu>
  4724. <productMenu id="ota"
  4725. type="0" >
  4726. <otaLanguages>
  4727. <otaLanguage
  4728. id="0"
  4729. name="English"
  4730. package="0"
  4731. />
  4732. <otaLanguage
  4733. id="0"
  4734. name="French"
  4735. package="1"
  4736. />
  4737. <otaLanguage
  4738. id="0"
  4739. name="Spanish"
  4740. package="2"
  4741. />
  4742. <otaLanguage
  4743. id="0"
  4744. name="Italian"
  4745. package="3"
  4746. />
  4747. <otaLanguage
  4748. id="0"
  4749. name="German"
  4750. package="4"
  4751. />
  4752. <otaLanguage
  4753. id="0"
  4754. name="Dutch"
  4755. package="5"
  4756. />
  4757. <otaLanguage
  4758. id="0"
  4759. name="Russian"
  4760. package="6"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="Chinese"
  4765. package="7"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Korean"
  4770. package="8"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Japanese"
  4775. package="9"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="Finnish"
  4780. package="10"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="Polish"
  4785. package="11"
  4786. />
  4787. </otaLanguages>
  4788. <otaPackages>
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4791. size="5183988"
  4792. />
  4793. <package
  4794. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4795. size="5183988"
  4796. />
  4797. <package
  4798. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4799. size="5183988"
  4800. />
  4801. <package
  4802. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4803. size="5183988"
  4804. />
  4805. <package
  4806. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4807. size="5183988"
  4808. />
  4809. <package
  4810. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4811. size="5183988"
  4812. />
  4813. <package
  4814. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4815. size="5183988"
  4816. />
  4817. <package
  4818. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4819. size="5183988"
  4820. />
  4821. <package
  4822. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4823. size="5183988"
  4824. />
  4825. <package
  4826. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4827. size="5183988"
  4828. />
  4829. <package
  4830. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4831. size="5183988"
  4832. />
  4833. <package
  4834. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4835. size="5183988"
  4836. />
  4837. </otaPackages>
  4838. </productMenu>
  4839. <productMenu id="wa"
  4840. type="0" >
  4841. </productMenu>
  4842. <productMenu id="led"
  4843. type="5" >
  4844. </productMenu>
  4845. <productMenu id="led+"
  4846. type="2"
  4847. url="1" >
  4848. </productMenu>
  4849. <productMenu id="meshIntercom"
  4850. type="30" >
  4851. </productMenu>
  4852. <productMenu id="meshIntercom+"
  4853. type="3"
  4854. url="2" >
  4855. </productMenu>
  4856. <productMenu id="waveIntercom"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="fmradio"
  4860. type="0" >
  4861. </productMenu>
  4862. <productMenu id="phone"
  4863. type="1" >
  4864. </productMenu>
  4865. <productMenu id="music"
  4866. type="1" >
  4867. </productMenu>
  4868. <productMenu id="musicSharing"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="deviceSetting"
  4872. type="1"
  4873. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4874. </productMenu>
  4875. <productMenu id="quickGuide"
  4876. type="0"
  4877. url=""
  4878. size="1.12MB" >
  4879. </productMenu>
  4880. <productMenu id="userGuide"
  4881. type="1"
  4882. url=""
  4883. size="2.0MB" >
  4884. </productMenu>
  4885. <productMenu id="videoGuide"
  4886. type="0"
  4887. url=""
  4888. size="3.41MB" >
  4889. </productMenu>
  4890. <productMenu id="volume"
  4891. type="16" >
  4892. </productMenu>
  4893. <productMenu id="battery"
  4894. type="1" >
  4895. </productMenu>
  4896. <productID id="6A12"
  4897. />
  4898. <productGroupable type="0"
  4899. />
  4900. </product>
  4901. <product id="MeshOn"
  4902. name="MeshON"
  4903. series="Other"
  4904. latestVersion="1.0.1"
  4905. latestVersionVoicePrompt="0.7"
  4906. show = "1" >
  4907. <productMenu id="protocol"
  4908. type="2" >
  4909. </productMenu>
  4910. <productMenu id="ota"
  4911. type="2" >
  4912. <otaPackages>
  4913. <package
  4914. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4915. size="2945812"
  4916. />
  4917. </otaPackages>
  4918. </productMenu>
  4919. <productMenu id="meshIntercom+"
  4920. type="3"
  4921. url="4" >
  4922. </productMenu>
  4923. <productMenu id="waveIntercom"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="phone"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="music"
  4930. type="0" >
  4931. </productMenu>
  4932. <productMenu id="musicSharing"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="deviceSetting"
  4936. type="1"
  4937. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4938. </productMenu>
  4939. <productMenu id="userGuide"
  4940. type="1"
  4941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4942. size="2.0MB" >
  4943. </productMenu>
  4944. <productMenu id="bluetoothHeadset"
  4945. type="1"
  4946. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4947. </productMenu>
  4948. <productMenu id="volume"
  4949. type="0" >
  4950. </productMenu>
  4951. <productMenu id="battery"
  4952. type="1" >
  4953. </productMenu>
  4954. <productID id="684E"
  4955. />
  4956. <productGroupable type="0"
  4957. />
  4958. </product>
  4959. <product id="Impulse"
  4960. name="Impulse"
  4961. series="Helmet"
  4962. latestVersion="1.4.1"
  4963. show = "1" >
  4964. <productMenu id="protocol"
  4965. type="2" >
  4966. </productMenu>
  4967. <productMenu id="alexa"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. </productMenu>
  4973. <productMenu id="wa"
  4974. type="24" >
  4975. </productMenu>
  4976. <productMenu id="manager"
  4977. type="0" >
  4978. </productMenu>
  4979. <productMenu id="sip"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="led"
  4983. type="1" >
  4984. <productMenuType version="1.0.1"
  4985. type="2"
  4986. />
  4987. <productMenuType version="1.0"
  4988. type="1"
  4989. />
  4990. </productMenu>
  4991. <productMenu id="meshIntercom"
  4992. type="30" >
  4993. <productMenuType version="1.1.1"
  4994. type="20"
  4995. />
  4996. </productMenu>
  4997. <productMenu id="meshIntercom+"
  4998. type="3"
  4999. url="2" >
  5000. <productMenuType version="1.3.9"
  5001. type="2"
  5002. />
  5003. <productMenuURL version="1.1.1"
  5004. url="0"
  5005. />
  5006. </productMenu>
  5007. <productMenu id="waveIntercom"
  5008. type="1" >
  5009. <productMenuType version="1.3.9"
  5010. type="0"
  5011. />
  5012. </productMenu>
  5013. <productMenu id="bluetoothIntercom"
  5014. type="1" >
  5015. </productMenu>
  5016. <productMenu id="phone"
  5017. type="1" >
  5018. </productMenu>
  5019. <productMenu id="music"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="fmradio"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="deviceSetting"
  5026. type="1"
  5027. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5028. <productMenuURL version="1.3.9"
  5029. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5030. />
  5031. <productMenuURL version="1.1.1"
  5032. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5033. />
  5034. <productMenuURL version="1.0.4"
  5035. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="quickGuide"
  5039. type="0"
  5040. url=""
  5041. size="344KB" >
  5042. </productMenu>
  5043. <productMenu id="userGuide"
  5044. type="1"
  5045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5046. size="3.41MB" >
  5047. </productMenu>
  5048. <productMenu id="connectGuide"
  5049. type="1"
  5050. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5051. size="1.12MB" >
  5052. </productMenu>
  5053. <productMenu id="volume"
  5054. type="11" >
  5055. </productMenu>
  5056. <productMenu id="battery"
  5057. type="1" >
  5058. </productMenu>
  5059. <productID id="3148"
  5060. />
  5061. <productGroupable type="0"
  5062. />
  5063. </product>
  5064. <product id="Impulse"
  5065. name="Impulse"
  5066. series="Helmet"
  5067. latestVersion="2.0"
  5068. show = "-1" >
  5069. <productMenu id="protocol"
  5070. type="2" >
  5071. </productMenu>
  5072. <productMenu id="alexa"
  5073. type="0" >
  5074. </productMenu>
  5075. <productMenu id="ota"
  5076. type="0" >
  5077. </productMenu>
  5078. <productMenu id="wa"
  5079. type="8" >
  5080. </productMenu>
  5081. <productMenu id="manager"
  5082. type="0" >
  5083. </productMenu>
  5084. <productMenu id="sip"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="led"
  5088. type="3" >
  5089. </productMenu>
  5090. <productMenu id="meshIntercom"
  5091. type="20" >
  5092. </productMenu>
  5093. <productMenu id="bluetoothIntercom"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="phone"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="music"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="fmradio"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="deviceSetting"
  5106. type="1"
  5107. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5108. </productMenu>
  5109. <productMenu id="quickGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5112. size="344KB" >
  5113. </productMenu>
  5114. <productMenu id="userGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5117. size="3.41MB" >
  5118. </productMenu>
  5119. <productMenu id="volume"
  5120. type="11" >
  5121. </productMenu>
  5122. <productMenu id="battery"
  5123. type="1" >
  5124. </productMenu>
  5125. <productID id="3221"
  5126. />
  5127. <productGroupable type="0"
  5128. />
  5129. </product>
  5130. <product id="Stryker"
  5131. name="Stryker"
  5132. series="Helmet"
  5133. latestVersion="1.4.1"
  5134. show = "1" >
  5135. <productMenu id="protocol"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="alexa"
  5139. type="0" >
  5140. </productMenu>
  5141. <productMenu id="ota"
  5142. type="0" >
  5143. </productMenu>
  5144. <productMenu id="wa"
  5145. type="40" >
  5146. </productMenu>
  5147. <productMenu id="manager"
  5148. type="0" >
  5149. </productMenu>
  5150. <productMenu id="sip"
  5151. type="1" >
  5152. </productMenu>
  5153. <productMenu id="led"
  5154. type="1" >
  5155. <productMenuType version="1.0.1"
  5156. type="2"
  5157. />
  5158. <productMenuType version="1.0"
  5159. type="1"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="meshIntercom"
  5163. type="30" >
  5164. <productMenuType version="1.1.1"
  5165. type="20"
  5166. />
  5167. </productMenu>
  5168. <productMenu id="meshIntercom+"
  5169. type="3"
  5170. url="2" >
  5171. <productMenuType version="1.3.9"
  5172. type="2"
  5173. />
  5174. <productMenuURL version="1.1.1"
  5175. url="0"
  5176. />
  5177. </productMenu>
  5178. <productMenu id="waveIntercom"
  5179. type="1" >
  5180. <productMenuType version="1.2.9"
  5181. type="0"
  5182. />
  5183. </productMenu>
  5184. <productMenu id="bluetoothIntercom"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="phone"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="music"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="fmradio"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="deviceSetting"
  5197. type="1"
  5198. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5199. <productMenuURL version="1.3.9"
  5200. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5201. />
  5202. <productMenuURL version="1.1.1"
  5203. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5204. />
  5205. <productMenuURL version="1.0.4"
  5206. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5207. />
  5208. </productMenu>
  5209. <productMenu id="quickGuide"
  5210. type="0"
  5211. url=""
  5212. size="344KB" >
  5213. </productMenu>
  5214. <productMenu id="userGuide"
  5215. type="1"
  5216. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5217. size="3.41MB" >
  5218. </productMenu>
  5219. <productMenu id="connectGuide"
  5220. type="1"
  5221. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5222. size="1.12MB" >
  5223. </productMenu>
  5224. <productMenu id="volume"
  5225. type="11" >
  5226. </productMenu>
  5227. <productMenu id="battery"
  5228. type="1" >
  5229. </productMenu>
  5230. <productID id="3154"
  5231. />
  5232. <productGroupable type="0"
  5233. />
  5234. </product>
  5235. <product id="SRL3Plus"
  5236. name="SRL3 Plus"
  5237. series="60"
  5238. latestVersion="0.9.14"
  5239. latestVersionMesh="0.19"
  5240. latestVersionVoicePrompt="1.8"
  5241. show = "-1" >
  5242. <productMenu id="protocol"
  5243. type="2" >
  5244. </productMenu>
  5245. <productMenu id="ota"
  5246. type="0" >
  5247. <otaLanguages>
  5248. <otaLanguage
  5249. id="0"
  5250. name="English"
  5251. package="0"
  5252. />
  5253. <otaLanguage
  5254. id="0"
  5255. name="French"
  5256. package="1"
  5257. />
  5258. <otaLanguage
  5259. id="0"
  5260. name="Spanish"
  5261. package="2"
  5262. />
  5263. <otaLanguage
  5264. id="0"
  5265. name="Italian"
  5266. package="3"
  5267. />
  5268. <otaLanguage
  5269. id="0"
  5270. name="German"
  5271. package="4"
  5272. />
  5273. <otaLanguage
  5274. id="0"
  5275. name="Dutch"
  5276. package="5"
  5277. />
  5278. <otaLanguage
  5279. id="0"
  5280. name="Russian"
  5281. package="6"
  5282. />
  5283. <otaLanguage
  5284. id="0"
  5285. name="Chinese"
  5286. package="7"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="Korean"
  5291. package="8"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Japanese"
  5296. package="9"
  5297. />
  5298. <otaLanguage
  5299. id="0"
  5300. name="Finnish"
  5301. package="10"
  5302. />
  5303. <otaLanguage
  5304. id="0"
  5305. name="Polish"
  5306. package="11"
  5307. />
  5308. </otaLanguages>
  5309. <otaPackages>
  5310. <package
  5311. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5312. size="5183988"
  5313. />
  5314. <package
  5315. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5316. size="5183988"
  5317. />
  5318. <package
  5319. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5320. size="5183988"
  5321. />
  5322. <package
  5323. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5324. size="5183988"
  5325. />
  5326. <package
  5327. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5328. size="5183988"
  5329. />
  5330. <package
  5331. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5332. size="5183988"
  5333. />
  5334. <package
  5335. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5336. size="5183988"
  5337. />
  5338. <package
  5339. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5340. size="5183988"
  5341. />
  5342. <package
  5343. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5344. size="5183988"
  5345. />
  5346. <package
  5347. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5348. size="5183988"
  5349. />
  5350. <package
  5351. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5352. size="5183988"
  5353. />
  5354. <package
  5355. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5356. size="5183988"
  5357. />
  5358. </otaPackages>
  5359. </productMenu>
  5360. <productMenu id="sip"
  5361. type="1" >
  5362. </productMenu>
  5363. <productMenu id="meshIntercom+"
  5364. type="3"
  5365. url="2" >
  5366. </productMenu>
  5367. <productMenu id="waveIntercom"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="bluetoothIntercom"
  5371. type="1"
  5372. url="2" >
  5373. </productMenu>
  5374. <productMenu id="bluetoothIntercomGrouping"
  5375. type="0" >
  5376. </productMenu>
  5377. <productMenu id="fmradio"
  5378. type="1"
  5379. url="1" >
  5380. </productMenu>
  5381. <productMenu id="phone"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="music"
  5385. type="1" >
  5386. </productMenu>
  5387. <productMenu id="musicSharing"
  5388. type="0" >
  5389. </productMenu>
  5390. <productMenu id="deviceSetting"
  5391. type="1"
  5392. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/SRL3Plus.xml" >
  5393. </productMenu>
  5394. <productMenu id="quickGuide"
  5395. type="0"
  5396. url=""
  5397. size="1.12MB" >
  5398. </productMenu>
  5399. <productMenu id="userGuide"
  5400. type="0"
  5401. url=""
  5402. size="2.0MB" >
  5403. </productMenu>
  5404. <productMenu id="videoGuide"
  5405. type="0"
  5406. url=""
  5407. size="3.41MB" >
  5408. </productMenu>
  5409. <productMenu id="volume"
  5410. type="16" >
  5411. </productMenu>
  5412. <productMenu id="soundMode"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="battery"
  5416. type="1" >
  5417. </productMenu>
  5418. <productID id="6A08"
  5419. />
  5420. <productGroupable type="0"
  5421. />
  5422. </product>
  5423. <product id="SRL3"
  5424. name="SRL3"
  5425. series="SRL"
  5426. latestVersion="1.5"
  5427. show = "1" >
  5428. <productMenu id="protocol"
  5429. type="2" >
  5430. </productMenu>
  5431. <productMenu id="alexa"
  5432. type="0" >
  5433. </productMenu>
  5434. <productMenu id="ota"
  5435. type="0" >
  5436. </productMenu>
  5437. <productMenu id="wa"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="sip"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="meshIntercom"
  5444. type="30" >
  5445. </productMenu>
  5446. <productMenu id="meshIntercom+"
  5447. type="3"
  5448. url="2" >
  5449. <productMenuType version="1.3.9"
  5450. type="2"
  5451. />
  5452. </productMenu>
  5453. <productMenu id="waveIntercom"
  5454. type="1" >
  5455. <productMenuType version="1.4.9"
  5456. type="0"
  5457. />
  5458. </productMenu>
  5459. <productMenu id="bluetoothIntercom"
  5460. type="1" >
  5461. </productMenu>
  5462. <productMenu id="phone"
  5463. type="1" >
  5464. </productMenu>
  5465. <productMenu id="music"
  5466. type="1" >
  5467. </productMenu>
  5468. <productMenu id="fmradio"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="deviceSetting"
  5472. type="1"
  5473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5474. <productMenuURL version="1.3"
  5475. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5476. />
  5477. </productMenu>
  5478. <productMenu id="quickGuide"
  5479. type="0"
  5480. url=""
  5481. size="344KB" >
  5482. </productMenu>
  5483. <productMenu id="userGuide"
  5484. type="1"
  5485. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5486. size="3.41MB" >
  5487. </productMenu>
  5488. <productMenu id="connectGuide"
  5489. type="1"
  5490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5491. size="1.12MB" >
  5492. </productMenu>
  5493. <productMenu id="volume"
  5494. type="11" >
  5495. </productMenu>
  5496. <productMenu id="battery"
  5497. type="1" >
  5498. </productMenu>
  5499. <productID id="3219"
  5500. />
  5501. <productGroupable type="0"
  5502. />
  5503. </product>
  5504. <product id="SRL_Mesh"
  5505. name="SRL-Mesh"
  5506. series="SRL"
  5507. latestVersion="1.7.1"
  5508. show = "1" >
  5509. <productMenu id="protocol"
  5510. type="2" >
  5511. </productMenu>
  5512. <productMenu id="alexa"
  5513. type="0" >
  5514. </productMenu>
  5515. <productMenu id="ota"
  5516. type="0" >
  5517. </productMenu>
  5518. <productMenu id="wa"
  5519. type="1" >
  5520. </productMenu>
  5521. <productMenu id="sip"
  5522. type="1" >
  5523. </productMenu>
  5524. <productMenu id="meshIntercom"
  5525. type="30" >
  5526. <productMenuType version="1.1.1"
  5527. type="20"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="meshIntercom+"
  5531. type="3"
  5532. url="2" >
  5533. <productMenuType version="1.5.9"
  5534. type="2"
  5535. />
  5536. <productMenuURL version="1.1.1"
  5537. url="0"
  5538. />
  5539. </productMenu>
  5540. <productMenu id="waveIntercom"
  5541. type="1" >
  5542. <productMenuType version="1.6.9"
  5543. type="0"
  5544. />
  5545. </productMenu>
  5546. <productMenu id="bluetoothIntercom"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="phone"
  5550. type="1" >
  5551. </productMenu>
  5552. <productMenu id="music"
  5553. type="1" >
  5554. </productMenu>
  5555. <productMenu id="fmradio"
  5556. type="1" >
  5557. </productMenu>
  5558. <productMenu id="deviceSetting"
  5559. type="1"
  5560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5561. <productMenuURL version="1.5"
  5562. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5563. />
  5564. <productMenuURL version="1.1.1"
  5565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5566. />
  5567. <productMenuURL version="1.0.3"
  5568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5569. />
  5570. </productMenu>
  5571. <productMenu id="quickGuide"
  5572. type="0"
  5573. url=""
  5574. size="344KB" >
  5575. </productMenu>
  5576. <productMenu id="userGuide"
  5577. type="1"
  5578. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5579. size="3.41MB" >
  5580. </productMenu>
  5581. <productMenu id="connectGuide"
  5582. type="1"
  5583. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5584. size="1.12MB" >
  5585. </productMenu>
  5586. <productMenu id="volume"
  5587. type="11" >
  5588. </productMenu>
  5589. <productMenu id="battery"
  5590. type="1" >
  5591. </productMenu>
  5592. <productID id="3216"
  5593. />
  5594. <productGroupable type="0"
  5595. />
  5596. </product>
  5597. <product id="SRL_EXT"
  5598. name="SRL-EXT"
  5599. series="SRL"
  5600. latestVersion="1.7.1"
  5601. show = "1" >
  5602. <productMenu id="protocol"
  5603. type="2" >
  5604. </productMenu>
  5605. <productMenu id="alexa"
  5606. type="0" >
  5607. </productMenu>
  5608. <productMenu id="ota"
  5609. type="0" >
  5610. </productMenu>
  5611. <productMenu id="wa"
  5612. type="0" >
  5613. </productMenu>
  5614. <productMenu id="sip"
  5615. type="1" >
  5616. </productMenu>
  5617. <productMenu id="meshIntercom"
  5618. type="30" >
  5619. <productMenuType version="1.1.1"
  5620. type="20"
  5621. />
  5622. </productMenu>
  5623. <productMenu id="meshIntercom+"
  5624. type="3"
  5625. url="2" >
  5626. <productMenuType version="1.5.9"
  5627. type="2"
  5628. />
  5629. <productMenuURL version="1.1.1"
  5630. url="0"
  5631. />
  5632. </productMenu>
  5633. <productMenu id="waveIntercom"
  5634. type="1" >
  5635. <productMenuType version="1.6.9"
  5636. type="0"
  5637. />
  5638. </productMenu>
  5639. <productMenu id="bluetoothIntercom"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="phone"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="music"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="fmradio"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="deviceSetting"
  5652. type="1"
  5653. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5654. <productMenuURL version="1.5"
  5655. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5656. />
  5657. <productMenuURL version="1.1.1"
  5658. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5659. />
  5660. <productMenuURL version="1.0.3"
  5661. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5662. />
  5663. </productMenu>
  5664. <productMenu id="quickGuide"
  5665. type="0"
  5666. url=""
  5667. size="344KB" >
  5668. </productMenu>
  5669. <productMenu id="userGuide"
  5670. type="1"
  5671. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5672. size="3.41MB" >
  5673. </productMenu>
  5674. <productMenu id="connectGuide"
  5675. type="1"
  5676. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5677. size="1.12MB" >
  5678. </productMenu>
  5679. <productMenu id="volume"
  5680. type="11" >
  5681. </productMenu>
  5682. <productMenu id="battery"
  5683. type="1" >
  5684. </productMenu>
  5685. <productID id="3212"
  5686. />
  5687. <productGroupable type="0"
  5688. />
  5689. </product>
  5690. <product id="SRL2"
  5691. name="SRL2"
  5692. series="SRL"
  5693. latestVersion="1.0.9"
  5694. show = "1" >
  5695. <productMenu id="protocol"
  5696. type="0">
  5697. </productMenu>
  5698. <productMenu id="sip"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="bluetoothIntercom"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="intercomSetting"
  5705. type="1" >
  5706. </productMenu>
  5707. <productMenu id="phone"
  5708. type="2" >
  5709. </productMenu>
  5710. <productMenu id="fmradio"
  5711. type="3" >
  5712. </productMenu>
  5713. <productMenu id="deviceSetting"
  5714. type="1"
  5715. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5716. </productMenu>
  5717. <productMenu id="quickGuide"
  5718. type="1"
  5719. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5720. size="846KB" >
  5721. </productMenu>
  5722. <productMenu id="userGuide"
  5723. type="1"
  5724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5725. size="1.18MB" >
  5726. </productMenu>
  5727. <productMenu id="connectGuide"
  5728. type="1"
  5729. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5730. size="1.12MB" >
  5731. </productMenu>
  5732. <productID id="4530"
  5733. />
  5734. <productGroupable type="1"
  5735. />
  5736. </product>
  5737. <product id="Neotec2"
  5738. name="SRL Neotec2"
  5739. series="SRL"
  5740. latestVersion="1.1.5"
  5741. show = "1" >
  5742. <productMenu id="protocol"
  5743. type="0">
  5744. </productMenu>
  5745. <productMenu id="sip"
  5746. type="1" >
  5747. </productMenu>
  5748. <productMenu id="bluetoothIntercom"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="intercomSetting"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="phone"
  5755. type="2" >
  5756. </productMenu>
  5757. <productMenu id="fmradio"
  5758. type="3" >
  5759. </productMenu>
  5760. <productMenu id="deviceSetting"
  5761. type="1"
  5762. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5763. </productMenu>
  5764. <productMenu id="quickGuide"
  5765. type="0"
  5766. url=""
  5767. size="796KB" >
  5768. </productMenu>
  5769. <productMenu id="userGuide"
  5770. type="1"
  5771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5772. size="1.90MB" >
  5773. </productMenu>
  5774. <productMenu id="connectGuide"
  5775. type="1"
  5776. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5777. size="1.12MB" >
  5778. </productMenu>
  5779. <productID id="4510"
  5780. />
  5781. <productGroupable type="1"
  5782. />
  5783. </product>
  5784. <product id="MultiComNeo"
  5785. name="MultiCom Neo"
  5786. series="MultiCom"
  5787. latestVersion="1.0"
  5788. latestVersionVoicePrompt="1.6"
  5789. show = "-1" >
  5790. <productMenu id="protocol"
  5791. type="2" >
  5792. </productMenu>
  5793. <productMenu id="ota"
  5794. type="0" >
  5795. <otaPackages>
  5796. <package
  5797. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5798. size="2945812"
  5799. />
  5800. </otaPackages>
  5801. </productMenu>
  5802. <productMenu id="meshIntercom+"
  5803. type="3"
  5804. url="2" >
  5805. </productMenu>
  5806. <productMenu id="waveIntercom"
  5807. type="1" >
  5808. </productMenu>
  5809. <productMenu id="phone"
  5810. type="1" >
  5811. </productMenu>
  5812. <productMenu id="music"
  5813. type="1" >
  5814. </productMenu>
  5815. <productMenu id="musicSharing"
  5816. type="0" >
  5817. </productMenu>
  5818. <productMenu id="deviceSetting"
  5819. type="1"
  5820. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5821. </productMenu>
  5822. <productMenu id="quickGuide"
  5823. type="0"
  5824. url=""
  5825. size="1.12MB" >
  5826. </productMenu>
  5827. <productMenu id="userGuide"
  5828. type="1"
  5829. url=""
  5830. size="2.0MB" >
  5831. </productMenu>
  5832. <productMenu id="videoGuide"
  5833. type="0"
  5834. url=""
  5835. size="3.41MB" >
  5836. </productMenu>
  5837. <productMenu id="connectGuide"
  5838. type="0"
  5839. url=""
  5840. size="1.12MB" >
  5841. </productMenu>
  5842. <productMenu id="volume"
  5843. type="12" >
  5844. </productMenu>
  5845. <productMenu id="volume+"
  5846. type="2"
  5847. url="0x2000" >
  5848. </productMenu>
  5849. <productMenu id="battery"
  5850. type="1" >
  5851. </productMenu>
  5852. <productID id="685F"
  5853. />
  5854. <productGroupable type="0"
  5855. />
  5856. </product>
  5857. <product id="SPIDERST2ANC"
  5858. name="SPIDER ST2 ANC"
  5859. series="SPIDER"
  5860. latestVersion="0.5.1"
  5861. latestVersionVoicePrompt="0.2"
  5862. latestVersionMesh="0.8"
  5863. show = "-1" >
  5864. <productMenu id="protocol"
  5865. type="2" >
  5866. </productMenu>
  5867. <productMenu id="ota"
  5868. type="0" >
  5869. <otaPackages>
  5870. <package
  5871. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5872. size="2945812"
  5873. />
  5874. </otaPackages>
  5875. </productMenu>
  5876. <productMenu id="wa"
  5877. type="0" >
  5878. </productMenu>
  5879. <productMenu id="led"
  5880. type="1" >
  5881. </productMenu>
  5882. <productMenu id="meshIntercom"
  5883. type="30" >
  5884. </productMenu>
  5885. <productMenu id="fmradio"
  5886. type="1" >
  5887. </productMenu>
  5888. <productMenu id="phone"
  5889. type="1" >
  5890. </productMenu>
  5891. <productMenu id="music"
  5892. type="1" >
  5893. </productMenu>
  5894. <productMenu id="musicSharing"
  5895. type="0" >
  5896. </productMenu>
  5897. <productMenu id="deviceSetting"
  5898. type="1"
  5899. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5900. </productMenu>
  5901. <productMenu id="quickGuide"
  5902. type="1"
  5903. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5904. size="1.12MB" >
  5905. </productMenu>
  5906. <productMenu id="userGuide"
  5907. type="1"
  5908. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5909. size="2.0MB" >
  5910. </productMenu>
  5911. <productMenu id="videoGuide"
  5912. type="1"
  5913. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5914. size="3.41MB" >
  5915. </productMenu>
  5916. <productMenu id="volume"
  5917. type="12" >
  5918. </productMenu>
  5919. <productMenu id="battery"
  5920. type="1" >
  5921. </productMenu>
  5922. <productID id="6A00"
  5923. />
  5924. <productGroupable type="0"
  5925. />
  5926. </product>
  5927. <product id="SPIDER_ST1"
  5928. name="SPIDER ST1"
  5929. series="SPIDER"
  5930. latestVersion="2.5.3"
  5931. latestVersionVoicePrompt="1.6"
  5932. show = "1" >
  5933. <productMenu id="protocol"
  5934. type="2" >
  5935. </productMenu>
  5936. <productMenu id="alexa"
  5937. type="0" >
  5938. </productMenu>
  5939. <productMenu id="ota"
  5940. type="2" >
  5941. <productMenuType version="2.1.9"
  5942. type="0"
  5943. />
  5944. <otaPackages>
  5945. <package
  5946. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5947. size="2945812"
  5948. />
  5949. </otaPackages>
  5950. </productMenu>
  5951. <productMenu id="wa"
  5952. type="0" >
  5953. </productMenu>
  5954. <productMenu id="meshIntercom"
  5955. type="30" >
  5956. <productMenuType version="2.1.1"
  5957. type="20"
  5958. />
  5959. </productMenu>
  5960. <productMenu id="meshIntercom+"
  5961. type="3"
  5962. url="2" >
  5963. <productMenuType version="2.2.9"
  5964. type="2"
  5965. />
  5966. <productMenuURL version="2.1.1"
  5967. url="0"
  5968. />
  5969. </productMenu>
  5970. <productMenu id="waveIntercom"
  5971. type="1" >
  5972. <productMenuType version="2.3.9"
  5973. type="0"
  5974. />
  5975. </productMenu>
  5976. <productMenu id="phone"
  5977. type="1" >
  5978. </productMenu>
  5979. <productMenu id="music"
  5980. type="1" >
  5981. </productMenu>
  5982. <productMenu id="musicSharing"
  5983. type="0" >
  5984. </productMenu>
  5985. <productMenu id="deviceSetting"
  5986. type="1"
  5987. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5988. <productMenuURL version="2.4.9"
  5989. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5990. />
  5991. <productMenuURL version="2.2.2"
  5992. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5993. />
  5994. <productMenuURL version="2.1.1"
  5995. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5996. />
  5997. </productMenu>
  5998. <productMenu id="quickGuide"
  5999. type="0"
  6000. url=""
  6001. size="1.12MB" >
  6002. </productMenu>
  6003. <productMenu id="userGuide"
  6004. type="1"
  6005. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6006. size="2.0MB" >
  6007. </productMenu>
  6008. <productMenu id="videoGuide"
  6009. type="1"
  6010. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6011. size="3.41MB" >
  6012. </productMenu>
  6013. <productMenu id="connectGuide"
  6014. type="1"
  6015. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6016. size="1.12MB" >
  6017. </productMenu>
  6018. <productMenu id="volume"
  6019. type="12" >
  6020. </productMenu>
  6021. <productMenu id="volume+"
  6022. type="2"
  6023. url="0x2000" >
  6024. </productMenu>
  6025. <productMenu id="battery"
  6026. type="1" >
  6027. </productMenu>
  6028. <productID id="6800"
  6029. />
  6030. <productGroupable type="0"
  6031. />
  6032. </product>
  6033. <product id="SPIDER_ST1"
  6034. name="SPIDER ST1"
  6035. series="SPIDER"
  6036. latestVersion="1.2.2"
  6037. show = "-1" >
  6038. <productMenu id="protocol"
  6039. type="2" >
  6040. </productMenu>
  6041. <productMenu id="alexa"
  6042. type="0" >
  6043. </productMenu>
  6044. <productMenu id="ota"
  6045. type="0" >
  6046. </productMenu>
  6047. <productMenu id="wa"
  6048. type="0" >
  6049. </productMenu>
  6050. <productMenu id="meshIntercom"
  6051. type="20" >
  6052. </productMenu>
  6053. <productMenu id="phone"
  6054. type="1" >
  6055. </productMenu>
  6056. <productMenu id="music"
  6057. type="1" >
  6058. </productMenu>
  6059. <productMenu id="deviceSetting"
  6060. type="1"
  6061. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6062. </productMenu>
  6063. <productMenu id="quickGuide"
  6064. type="0"
  6065. url=""
  6066. size="1.12MB" >
  6067. </productMenu>
  6068. <productMenu id="userGuide"
  6069. type="1"
  6070. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6071. size="2.0MB" >
  6072. </productMenu>
  6073. <productMenu id="videoGuide"
  6074. type="1"
  6075. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6076. size="3.41MB" >
  6077. </productMenu>
  6078. <productMenu id="volume"
  6079. type="13" >
  6080. <productMenuType version="1.1.6"
  6081. type="14"/>
  6082. </productMenu>
  6083. <productMenu id="battery"
  6084. type="1" >
  6085. </productMenu>
  6086. <productID id="6510"
  6087. />
  6088. <productGroupable type="0"
  6089. />
  6090. </product>
  6091. <product id="SPIDER_RT1"
  6092. name="SPIDER RT1"
  6093. series="SPIDER"
  6094. latestVersion="2.5.3"
  6095. latestVersionVoicePrompt="1.6"
  6096. show = "1" >
  6097. <productMenu id="protocol"
  6098. type="2" >
  6099. </productMenu>
  6100. <productMenu id="alexa"
  6101. type="0" >
  6102. </productMenu>
  6103. <productMenu id="ota"
  6104. type="2" >
  6105. <productMenuType version="2.1.9"
  6106. type="0"
  6107. />
  6108. <otaPackages>
  6109. <package
  6110. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6111. size="2945812"
  6112. />
  6113. </otaPackages>
  6114. </productMenu>
  6115. <productMenu id="wa"
  6116. type="0" >
  6117. </productMenu>
  6118. <productMenu id="meshIntercom"
  6119. type="30" >
  6120. <productMenuType version="2.1.1"
  6121. type="20"
  6122. />
  6123. </productMenu>
  6124. <productMenu id="meshIntercom+"
  6125. type="3"
  6126. url="2" >
  6127. <productMenuType version="2.2.9"
  6128. type="2"
  6129. />
  6130. <productMenuURL version="2.1.1"
  6131. url="0"
  6132. />
  6133. </productMenu>
  6134. <productMenu id="waveIntercom"
  6135. type="1" >
  6136. <productMenuType version="2.3.9"
  6137. type="0"
  6138. />
  6139. </productMenu>
  6140. <productMenu id="phone"
  6141. type="1" >
  6142. </productMenu>
  6143. <productMenu id="music"
  6144. type="1" >
  6145. </productMenu>
  6146. <productMenu id="musicSharing"
  6147. type="0" >
  6148. </productMenu>
  6149. <productMenu id="deviceSetting"
  6150. type="1"
  6151. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6152. <productMenuURL version="2.4.9"
  6153. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6154. />
  6155. <productMenuURL version="2.2.2"
  6156. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6157. />
  6158. <productMenuURL version="2.1.1"
  6159. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6160. />
  6161. </productMenu>
  6162. <productMenu id="quickGuide"
  6163. type="0"
  6164. url=""
  6165. size="1.12MB" >
  6166. </productMenu>
  6167. <productMenu id="userGuide"
  6168. type="1"
  6169. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6170. size="2.0MB" >
  6171. </productMenu>
  6172. <productMenu id="videoGuide"
  6173. type="1"
  6174. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6175. size="3.41MB" >
  6176. </productMenu>
  6177. <productMenu id="connectGuide"
  6178. type="1"
  6179. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6180. size="1.12MB" >
  6181. </productMenu>
  6182. <productMenu id="volume"
  6183. type="12" >
  6184. </productMenu>
  6185. <productMenu id="volume+"
  6186. type="2"
  6187. url="0x2000" >
  6188. </productMenu>
  6189. <productMenu id="battery"
  6190. type="1" >
  6191. </productMenu>
  6192. <productID id="6810"
  6193. />
  6194. <productGroupable type="0"
  6195. />
  6196. </product>
  6197. <product id="SPIDER_RT1"
  6198. name="SPIDER RT1"
  6199. series="SPIDER"
  6200. latestVersion="1.2.2"
  6201. show = "-1" >
  6202. <productMenu id="protocol"
  6203. type="2" >
  6204. </productMenu>
  6205. <productMenu id="alexa"
  6206. type="0" >
  6207. </productMenu>
  6208. <productMenu id="ota"
  6209. type="0" >
  6210. </productMenu>
  6211. <productMenu id="wa"
  6212. type="0" >
  6213. </productMenu>
  6214. <productMenu id="meshIntercom"
  6215. type="20" >
  6216. </productMenu>
  6217. <productMenu id="phone"
  6218. type="1" >
  6219. </productMenu>
  6220. <productMenu id="music"
  6221. type="1" >
  6222. </productMenu>
  6223. <productMenu id="deviceSetting"
  6224. type="1"
  6225. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6226. </productMenu>
  6227. <productMenu id="quickGuide"
  6228. type="0"
  6229. url=""
  6230. size="1.32MB" >
  6231. </productMenu>
  6232. <productMenu id="userGuide"
  6233. type="1"
  6234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6235. size="1.79MB" >
  6236. </productMenu>
  6237. <productMenu id="videoGuide"
  6238. type="1"
  6239. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6240. size="3.41MB" >
  6241. </productMenu>
  6242. <productMenu id="volume"
  6243. type="13" >
  6244. <productMenuType version="1.1.6"
  6245. type="14"/>
  6246. </productMenu>
  6247. <productMenu id="battery"
  6248. type="1" >
  6249. </productMenu>
  6250. <productID id="6500"
  6251. />
  6252. <productGroupable type="0"
  6253. />
  6254. </product>
  6255. <product id="30K"
  6256. name="30K"
  6257. series="30"
  6258. latestVersion="4.5.1"
  6259. show = "1" >
  6260. <productMenu id="protocol"
  6261. type="2" >
  6262. </productMenu>
  6263. <productMenu id="alexa"
  6264. type="0" >
  6265. </productMenu>
  6266. <productMenu id="wa"
  6267. type="1" >
  6268. </productMenu>
  6269. <productMenu id="sip"
  6270. type="1" >
  6271. </productMenu>
  6272. <productMenu id="meshIntercom"
  6273. type="30" >
  6274. <productMenuType version="4.0.4"
  6275. type="20"
  6276. />
  6277. </productMenu>
  6278. <productMenu id="meshIntercom+"
  6279. type="3"
  6280. url="2" >
  6281. <productMenuType version="4.3.9"
  6282. type="2"
  6283. />
  6284. <productMenuURL version="4.0.4"
  6285. url="0"
  6286. />
  6287. </productMenu>
  6288. <productMenu id="waveIntercom"
  6289. type="1" >
  6290. <productMenuType version="4.4.9"
  6291. type="0"
  6292. />
  6293. </productMenu>
  6294. <productMenu id="bluetoothIntercom"
  6295. type="1" >
  6296. </productMenu>
  6297. <productMenu id="phone"
  6298. type="1" >
  6299. </productMenu>
  6300. <productMenu id="music"
  6301. type="1" >
  6302. </productMenu>
  6303. <productMenu id="fmradio"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="deviceSetting"
  6307. type="1"
  6308. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6309. <productMenuURL version="4.3"
  6310. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6311. />
  6312. <productMenuURL version="4.2"
  6313. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6314. />
  6315. <productMenuURL version="4.0.4"
  6316. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6317. />
  6318. </productMenu>
  6319. <productMenu id="quickGuide"
  6320. type="0"
  6321. url=""
  6322. size="934KB" >
  6323. </productMenu>
  6324. <productMenu id="userGuide"
  6325. type="1"
  6326. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6327. size="1.14MB" >
  6328. </productMenu>
  6329. <productMenu id="connectGuide"
  6330. type="1"
  6331. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6332. size="1.12MB" >
  6333. </productMenu>
  6334. <productMenu id="volume"
  6335. type="11" >
  6336. </productMenu>
  6337. <productMenu id="battery"
  6338. type="1" >
  6339. </productMenu>
  6340. <productID id="3211"
  6341. />
  6342. <productGroupable type="0"
  6343. />
  6344. </product>
  6345. <product id="30K"
  6346. name="30K"
  6347. series="30"
  6348. latestVersion="3.5"
  6349. show = "-1" >
  6350. <productMenu id="protocol"
  6351. type="1"
  6352. url="0">
  6353. </productMenu>
  6354. <productMenu id="wa"
  6355. type="7" >
  6356. </productMenu>
  6357. <productMenu id="sip"
  6358. type="1" >
  6359. </productMenu>
  6360. <productMenu id="meshIntercom"
  6361. type="20" >
  6362. <productMenuType version="2.9.9"
  6363. type="10"
  6364. />
  6365. </productMenu>
  6366. <productMenu id="meshIntercom+"
  6367. type="3"
  6368. url="2" >
  6369. <productMenuType version="3.4.9"
  6370. type="2"
  6371. />
  6372. <productMenuType version="2.9.9"
  6373. type="1"
  6374. />
  6375. <productMenuURL version="3.3.1"
  6376. url="0"
  6377. />
  6378. </productMenu>
  6379. <productMenu id="bluetoothIntercom"
  6380. type="1" >
  6381. </productMenu>
  6382. <productMenu id="phone"
  6383. type="1" >
  6384. </productMenu>
  6385. <productMenu id="music"
  6386. type="1" >
  6387. </productMenu>
  6388. <productMenu id="fmradio"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="deviceSetting"
  6392. type="1"
  6393. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6394. <productMenuURL version="3.4.9"
  6395. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6396. />
  6397. <productMenuURL version="3.3.1"
  6398. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6399. />
  6400. <productMenuURL version="3.0.1"
  6401. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6402. />
  6403. <productMenuURL version="2.3.1"
  6404. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6405. />
  6406. <productMenuURL version="2.0"
  6407. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6408. />
  6409. <productMenuURL version="1.0.3"
  6410. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6411. />
  6412. </productMenu>
  6413. <productMenu id="quickGuide"
  6414. type="0"
  6415. url=""
  6416. size="1.06MB" >
  6417. </productMenu>
  6418. <productMenu id="userGuide"
  6419. type="1"
  6420. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6421. size="3.15MB" >
  6422. </productMenu>
  6423. <productMenu id="volume"
  6424. type="1" >
  6425. </productMenu>
  6426. <productID id="3110"
  6427. />
  6428. <productGroupable type="0"
  6429. />
  6430. </product>
  6431. <product id="FURY"
  6432. name="FURY"
  6433. series="Helmet"
  6434. latestVersion="1.0"
  6435. show = "-1" >
  6436. <productMenu id="protocol"
  6437. type="2" >
  6438. </productMenu>
  6439. <productMenu id="alexa"
  6440. type="0" >
  6441. </productMenu>
  6442. <productMenu id="ota"
  6443. type="0" >
  6444. </productMenu>
  6445. <productMenu id="wa"
  6446. type="0" >
  6447. </productMenu>
  6448. <productMenu id="meshIntercom"
  6449. type="20" >
  6450. </productMenu>
  6451. <productMenu id="phone"
  6452. type="1" >
  6453. </productMenu>
  6454. <productMenu id="music"
  6455. type="1" >
  6456. </productMenu>
  6457. <productMenu id="fmradio"
  6458. type="1" >
  6459. </productMenu>
  6460. <productMenu id="deviceSetting"
  6461. type="1"
  6462. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6463. </productMenu>
  6464. <productMenu id="quickGuide"
  6465. type="1"
  6466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6467. size="1.12MB" >
  6468. </productMenu>
  6469. <productMenu id="userGuide"
  6470. type="1"
  6471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6472. size="2.0MB" >
  6473. </productMenu>
  6474. <productMenu id="volume"
  6475. type="13" >
  6476. </productMenu>
  6477. <productMenu id="battery"
  6478. type="1" >
  6479. </productMenu>
  6480. <productID id="5552"
  6481. />
  6482. <productGroupable type="0"
  6483. />
  6484. </product>
  6485. <product id="MomentumM"
  6486. name="Momentum EVO"
  6487. series="Helmet"
  6488. latestVersion="2.1.2"
  6489. show = "1" >
  6490. <productMenu id="protocol"
  6491. type="1"
  6492. url="0">
  6493. </productMenu>
  6494. <productMenu id="wa"
  6495. type="3" >
  6496. </productMenu>
  6497. <productMenu id="sip"
  6498. type="1" >
  6499. </productMenu>
  6500. <productMenu id="meshIntercom"
  6501. type="20" >
  6502. <productMenuType version="1.9.9"
  6503. type="10"
  6504. />
  6505. </productMenu>
  6506. <productMenu id="bluetoothIntercom"
  6507. type="1" >
  6508. </productMenu>
  6509. <productMenu id="phone"
  6510. type="1" >
  6511. </productMenu>
  6512. <productMenu id="music"
  6513. type="1" >
  6514. </productMenu>
  6515. <productMenu id="fmradio"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="deviceSetting"
  6519. type="1"
  6520. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6521. <productMenuURL version="1.0.1"
  6522. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6523. />
  6524. </productMenu>
  6525. <productMenu id="quickGuide"
  6526. type="1"
  6527. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6528. size="1.06MB" >
  6529. </productMenu>
  6530. <productMenu id="userGuide"
  6531. type="1"
  6532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6533. size="3.15MB" >
  6534. </productMenu>
  6535. <productMenu id="connectGuide"
  6536. type="1"
  6537. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6538. size="1.12MB" >
  6539. </productMenu>
  6540. <productMenu id="volume"
  6541. type="2" >
  6542. </productMenu>
  6543. <productID id="3116"
  6544. />
  6545. <productGroupable type="0"
  6546. />
  6547. </product>
  6548. <product id="Momentum"
  6549. name="Momentum"
  6550. series="Helmet"
  6551. latestVersion="1.0.9"
  6552. show = "1" >
  6553. <productMenu id="protocol"
  6554. type="0">
  6555. </productMenu>
  6556. <productMenu id="sip"
  6557. type="1" >
  6558. </productMenu>
  6559. <productMenu id="bluetoothIntercom"
  6560. type="1" >
  6561. </productMenu>
  6562. <productMenu id="intercomSetting"
  6563. type="1" >
  6564. </productMenu>
  6565. <productMenu id="phone"
  6566. type="2" >
  6567. </productMenu>
  6568. <productMenu id="fmradio"
  6569. type="3" >
  6570. </productMenu>
  6571. <productMenu id="deviceSetting"
  6572. type="1"
  6573. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6574. </productMenu>
  6575. <productMenu id="quickGuide"
  6576. type="1"
  6577. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6578. size="796KB" >
  6579. </productMenu>
  6580. <productMenu id="userGuide"
  6581. type="1"
  6582. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6583. size="1.90MB" >
  6584. </productMenu>
  6585. <productMenu id="connectGuide"
  6586. type="1"
  6587. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6588. size="1.12MB" >
  6589. </productMenu>
  6590. <productID id="4310"
  6591. />
  6592. <productGroupable type="1"
  6593. />
  6594. </product>
  6595. <product id="Momentum_Pro"
  6596. name="Momentum Pro"
  6597. series="Helmet"
  6598. latestVersion="1.0.6"
  6599. show = "1" >
  6600. <productMenu id="protocol"
  6601. type="0">
  6602. </productMenu>
  6603. <productMenu id="sip"
  6604. type="1" >
  6605. </productMenu>
  6606. <productMenu id="bluetoothIntercom"
  6607. type="1" >
  6608. </productMenu>
  6609. <productMenu id="intercomSetting"
  6610. type="1" >
  6611. </productMenu>
  6612. <productMenu id="phone"
  6613. type="2" >
  6614. </productMenu>
  6615. <productMenu id="fmradio"
  6616. type="3" >
  6617. </productMenu>
  6618. <productMenu id="deviceSetting"
  6619. type="1"
  6620. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6621. </productMenu>
  6622. <productMenu id="quickGuide"
  6623. type="1"
  6624. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6625. size="796KB" >
  6626. </productMenu>
  6627. <productMenu id="userGuide"
  6628. type="1"
  6629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6630. size="1.90MB" >
  6631. </productMenu>
  6632. <productMenu id="connectGuide"
  6633. type="1"
  6634. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6635. size="1.12MB" >
  6636. </productMenu>
  6637. <productID id="4330"
  6638. />
  6639. <productGroupable type="1"
  6640. />
  6641. </product>
  6642. <product id="Momentum_INC"
  6643. name="Momentum INC"
  6644. series="Helmet"
  6645. latestVersion="1.0.7"
  6646. show = "1" >
  6647. <productMenu id="protocol"
  6648. type="0">
  6649. </productMenu>
  6650. <productMenu id="sip"
  6651. type="1" >
  6652. </productMenu>
  6653. <productMenu id="bluetoothIntercom"
  6654. type="1" >
  6655. </productMenu>
  6656. <productMenu id="intercomSetting"
  6657. type="1" >
  6658. </productMenu>
  6659. <productMenu id="phone"
  6660. type="2" >
  6661. </productMenu>
  6662. <productMenu id="fmradio"
  6663. type="3" >
  6664. </productMenu>
  6665. <productMenu id="deviceSetting"
  6666. type="1"
  6667. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6668. </productMenu>
  6669. <productMenu id="quickGuide"
  6670. type="1"
  6671. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6672. size="794KB" >
  6673. </productMenu>
  6674. <productMenu id="userGuide"
  6675. type="1"
  6676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6677. size="1.53MB" >
  6678. </productMenu>
  6679. <productMenu id="connectGuide"
  6680. type="1"
  6681. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6682. size="1.12MB" >
  6683. </productMenu>
  6684. <productID id="4410"
  6685. />
  6686. <productGroupable type="1"
  6687. />
  6688. </product>
  6689. <product id="Momentum_INCP"
  6690. name="Momentum INC Pro"
  6691. series="Helmet"
  6692. latestVersion="1.0.4"
  6693. show = "1" >
  6694. <productMenu id="protocol"
  6695. type="0">
  6696. </productMenu>
  6697. <productMenu id="sip"
  6698. type="1" >
  6699. </productMenu>
  6700. <productMenu id="bluetoothIntercom"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="intercomSetting"
  6704. type="1" >
  6705. </productMenu>
  6706. <productMenu id="phone"
  6707. type="2" >
  6708. </productMenu>
  6709. <productMenu id="fmradio"
  6710. type="3" >
  6711. </productMenu>
  6712. <productMenu id="deviceSetting"
  6713. type="1"
  6714. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6715. </productMenu>
  6716. <productMenu id="quickGuide"
  6717. type="1"
  6718. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6719. size="794KB" >
  6720. </productMenu>
  6721. <productMenu id="userGuide"
  6722. type="1"
  6723. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6724. size="1.53MB" >
  6725. </productMenu>
  6726. <productMenu id="connectGuide"
  6727. type="1"
  6728. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6729. size="1.12MB" >
  6730. </productMenu>
  6731. <productID id="4430"
  6732. />
  6733. <productGroupable type="1"
  6734. />
  6735. </product>
  6736. <product id="Momentum_Lite"
  6737. name="Momentum Lite"
  6738. series="Helmet"
  6739. latestVersion="2.0.3"
  6740. show = "1" >
  6741. <productMenu id="protocol"
  6742. type="0">
  6743. </productMenu>
  6744. <productMenu id="sip"
  6745. type="1" >
  6746. </productMenu>
  6747. <productMenu id="bluetoothIntercom"
  6748. type="1" >
  6749. </productMenu>
  6750. <productMenu id="phone"
  6751. type="2" >
  6752. </productMenu>
  6753. <productMenu id="fmradio"
  6754. type="3" >
  6755. </productMenu>
  6756. <productMenu id="deviceSetting"
  6757. type="1"
  6758. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6759. <productMenuURL version="1.1"
  6760. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6761. />
  6762. </productMenu>
  6763. <productMenu id="quickGuide"
  6764. type="1"
  6765. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6766. size="790KB" >
  6767. </productMenu>
  6768. <productMenu id="userGuide"
  6769. type="1"
  6770. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6771. size="1.42MB" >
  6772. </productMenu>
  6773. <productMenu id="connectGuide"
  6774. type="1"
  6775. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6776. size="1.12MB" >
  6777. </productMenu>
  6778. <productID id="5526"
  6779. />
  6780. <productGroupable type="0"
  6781. />
  6782. </product>
  6783. <product id="OUTRUSHM"
  6784. name="OUTRUSH M"
  6785. series="Helmet"
  6786. latestVersion="1.0"
  6787. show = "-1" >
  6788. <productMenu id="protocol"
  6789. type="2" >
  6790. </productMenu>
  6791. <productMenu id="alexa"
  6792. type="0" >
  6793. </productMenu>
  6794. <productMenu id="ota"
  6795. type="0" >
  6796. </productMenu>
  6797. <productMenu id="wa"
  6798. type="0" >
  6799. </productMenu>
  6800. <productMenu id="meshIntercom"
  6801. type="30" >
  6802. </productMenu>
  6803. <productMenu id="phone"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="music"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="fmradio"
  6810. type="1" >
  6811. </productMenu>
  6812. <productMenu id="deviceSetting"
  6813. type="1"
  6814. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6815. </productMenu>
  6816. <productMenu id="quickGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6819. size="1.12MB" >
  6820. </productMenu>
  6821. <productMenu id="userGuide"
  6822. type="1"
  6823. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6824. size="2.0MB" >
  6825. </productMenu>
  6826. <productMenu id="volume"
  6827. type="13" >
  6828. </productMenu>
  6829. <productMenu id="battery"
  6830. type="1" >
  6831. </productMenu>
  6832. <productID id="5600"
  6833. />
  6834. <productGroupable type="0"
  6835. />
  6836. </product>
  6837. <product id="ProRideEVO"
  6838. name="ProRide EVO"
  6839. series="Helmet"
  6840. latestVersion="1.1.2"
  6841. show = "1" >
  6842. <productMenu id="protocol"
  6843. type="0">
  6844. </productMenu>
  6845. <productMenu id="sip"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="bluetoothIntercom"
  6849. type="1" >
  6850. </productMenu>
  6851. <productMenu id="phone"
  6852. type="2" >
  6853. </productMenu>
  6854. <productMenu id="fmradio"
  6855. type="3" >
  6856. </productMenu>
  6857. <productMenu id="deviceSetting"
  6858. type="1"
  6859. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6860. </productMenu>
  6861. <productMenu id="userGuide"
  6862. type="1"
  6863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6864. size="778KB" >
  6865. </productMenu>
  6866. <productMenu id="connectGuide"
  6867. type="1"
  6868. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6869. size="1.12MB" >
  6870. </productMenu>
  6871. <productID id="5426"
  6872. />
  6873. <productGroupable type="0"
  6874. />
  6875. </product>
  6876. <product id="OUTRUSHR"
  6877. name="OUTRUSH R"
  6878. series="Helmet"
  6879. latestVersion="2.1"
  6880. show = "1" >
  6881. <productMenu id="protocol"
  6882. type="3" >
  6883. </productMenu>
  6884. <productMenu id="sip"
  6885. type="1" >
  6886. </productMenu>
  6887. <productMenu id="bluetoothIntercom"
  6888. type="1" >
  6889. </productMenu>
  6890. <productMenu id="phone"
  6891. type="1" >
  6892. </productMenu>
  6893. <productMenu id="fmradio"
  6894. type="0" >
  6895. </productMenu>
  6896. <productMenu id="deviceSetting"
  6897. type="1"
  6898. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6899. </productMenu>
  6900. <productMenu id="userGuide"
  6901. type="1"
  6902. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6903. size="1.14MB" >
  6904. </productMenu>
  6905. <productMenu id="connectGuide"
  6906. type="1"
  6907. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6908. size="1.12MB" >
  6909. </productMenu>
  6910. <productID id="5440"
  6911. />
  6912. <productGroupable type="0"
  6913. />
  6914. </product>
  6915. <product id="OUTRUSHR"
  6916. name="OUTRUSH R"
  6917. series="Helmet"
  6918. latestVersion="1.1.4"
  6919. show = "-1" >
  6920. <productMenu id="protocol"
  6921. type="0">
  6922. </productMenu>
  6923. <productMenu id="sip"
  6924. type="1" >
  6925. </productMenu>
  6926. <productMenu id="bluetoothIntercom"
  6927. type="1" >
  6928. </productMenu>
  6929. <productMenu id="phone"
  6930. type="2" >
  6931. </productMenu>
  6932. <productMenu id="fmradio"
  6933. type="3" >
  6934. </productMenu>
  6935. <productMenu id="deviceSetting"
  6936. type="1"
  6937. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6938. </productMenu>
  6939. <productMenu id="userGuide"
  6940. type="1"
  6941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6942. size="660KB" >
  6943. </productMenu>
  6944. <productMenu id="connectGuide"
  6945. type="1"
  6946. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6947. size="1.12MB" >
  6948. </productMenu>
  6949. <productID id="5424"
  6950. />
  6951. <productGroupable type="0"
  6952. />
  6953. </product>
  6954. <product id="OUTSTARS"
  6955. name="OUTSTAR S"
  6956. series="Helmet"
  6957. latestVersion="2.0.1"
  6958. show = "-1" >
  6959. <productMenu id="protocol"
  6960. type="3" >
  6961. </productMenu>
  6962. <productMenu id="sip"
  6963. type="1" >
  6964. </productMenu>
  6965. <productMenu id="bluetoothIntercom"
  6966. type="1" >
  6967. </productMenu>
  6968. <productMenu id="phone"
  6969. type="1" >
  6970. </productMenu>
  6971. <productMenu id="fmradio"
  6972. type="0" >
  6973. </productMenu>
  6974. <productMenu id="deviceSetting"
  6975. type="1"
  6976. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6977. </productMenu>
  6978. <productMenu id="userGuide"
  6979. type="0"
  6980. url=""
  6981. size="1.14MB" >
  6982. </productMenu>
  6983. <productID id="5443"
  6984. />
  6985. <productGroupable type="0"
  6986. />
  6987. </product>
  6988. <product id="OUTSTARS"
  6989. name="OUTSTAR S"
  6990. series="Helmet"
  6991. latestVersion="1.1.4"
  6992. show = "1" >
  6993. <productMenu id="protocol"
  6994. type="0">
  6995. </productMenu>
  6996. <productMenu id="sip"
  6997. type="1" >
  6998. </productMenu>
  6999. <productMenu id="bluetoothIntercom"
  7000. type="1" >
  7001. </productMenu>
  7002. <productMenu id="phone"
  7003. type="2" >
  7004. </productMenu>
  7005. <productMenu id="fmradio"
  7006. type="3" >
  7007. </productMenu>
  7008. <productMenu id="deviceSetting"
  7009. type="1"
  7010. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7011. </productMenu>
  7012. <productMenu id="quickGuide"
  7013. type="1"
  7014. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7015. size="643KB" >
  7016. </productMenu>
  7017. <productMenu id="userGuide"
  7018. type="1"
  7019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7020. size="1.15MB" >
  7021. </productMenu>
  7022. <productMenu id="connectGuide"
  7023. type="1"
  7024. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7025. size="1.12MB" >
  7026. </productMenu>
  7027. <productID id="5428"
  7028. />
  7029. <productGroupable type="0"
  7030. />
  7031. </product>
  7032. <product id="OUTRIDE"
  7033. name="OUTRIDE"
  7034. series="Helmet"
  7035. latestVersion="1.0.1"
  7036. show = "1" >
  7037. <productMenu id="protocol"
  7038. type="0">
  7039. </productMenu>
  7040. <productMenu id="sip"
  7041. type="1" >
  7042. </productMenu>
  7043. <productMenu id="bluetoothIntercom"
  7044. type="1" >
  7045. </productMenu>
  7046. <productMenu id="phone"
  7047. type="2" >
  7048. </productMenu>
  7049. <productMenu id="fmradio"
  7050. type="3" >
  7051. </productMenu>
  7052. <productMenu id="deviceSetting"
  7053. type="1"
  7054. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7055. </productMenu>
  7056. <productMenu id="quickGuide"
  7057. type="1"
  7058. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7059. size="643KB" >
  7060. </productMenu>
  7061. <productMenu id="userGuide"
  7062. type="1"
  7063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7064. size="660KB" >
  7065. </productMenu>
  7066. <productMenu id="connectGuide"
  7067. type="1"
  7068. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7069. size="1.12MB" >
  7070. </productMenu>
  7071. <productID id="5432"
  7072. />
  7073. <productGroupable type="0"
  7074. />
  7075. </product>
  7076. <product id="OUTFORCE"
  7077. name="OUTFORCE"
  7078. series="Helmet"
  7079. latestVersion="1.0.1"
  7080. show = "1" >
  7081. <productMenu id="protocol"
  7082. type="0">
  7083. </productMenu>
  7084. <productMenu id="sip"
  7085. type="1" >
  7086. </productMenu>
  7087. <productMenu id="bluetoothIntercom"
  7088. type="1" >
  7089. </productMenu>
  7090. <productMenu id="phone"
  7091. type="2" >
  7092. </productMenu>
  7093. <productMenu id="fmradio"
  7094. type="3" >
  7095. </productMenu>
  7096. <productMenu id="deviceSetting"
  7097. type="1"
  7098. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7099. </productMenu>
  7100. <productMenu id="quickGuide"
  7101. type="1"
  7102. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7103. size="643KB" >
  7104. </productMenu>
  7105. <productMenu id="userGuide"
  7106. type="1"
  7107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7108. size="660KB" >
  7109. </productMenu>
  7110. <productMenu id="connectGuide"
  7111. type="1"
  7112. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7113. size="1.12MB" >
  7114. </productMenu>
  7115. <productID id="5430"
  7116. />
  7117. <productGroupable type="0"
  7118. />
  7119. </product>
  7120. <product id="Rumba"
  7121. name="Rumba"
  7122. series="30"
  7123. latestVersion="2.0"
  7124. show = "-1" >
  7125. <productMenu id="protocol"
  7126. type="3" >
  7127. </productMenu>
  7128. <productMenu id="sip"
  7129. type="1" >
  7130. </productMenu>
  7131. <productMenu id="bluetoothIntercom"
  7132. type="1" >
  7133. </productMenu>
  7134. <productMenu id="deviceSetting"
  7135. type="1"
  7136. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7137. </productMenu>
  7138. <productMenu id="quickGuide"
  7139. type="1"
  7140. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7141. size="344KB" >
  7142. </productMenu>
  7143. <productMenu id="userGuide"
  7144. type="1"
  7145. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7146. size="1.14MB" >
  7147. </productMenu>
  7148. <productID id="6322"
  7149. />
  7150. <productGroupable type="0"
  7151. />
  7152. </product>
  7153. <product id="Savage"
  7154. name="Savage"
  7155. series="Helmet"
  7156. latestVersion="1.2.2"
  7157. show = "1" >
  7158. <productMenu id="protocol"
  7159. type="0">
  7160. </productMenu>
  7161. <productMenu id="sip"
  7162. type="1" >
  7163. </productMenu>
  7164. <productMenu id="bluetoothIntercom"
  7165. type="1" >
  7166. </productMenu>
  7167. <productMenu id="phone"
  7168. type="2" >
  7169. </productMenu>
  7170. <productMenu id="fmradio"
  7171. type="3" >
  7172. </productMenu>
  7173. <productMenu id="deviceSetting"
  7174. type="1"
  7175. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7176. <productMenuURL version="1.9"
  7177. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7178. />
  7179. <productMenuURL version="1.1"
  7180. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7181. />
  7182. </productMenu>
  7183. <productMenu id="quickGuide"
  7184. type="1"
  7185. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7186. size="796KB" >
  7187. </productMenu>
  7188. <productMenu id="userGuide"
  7189. type="1"
  7190. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7191. size="910KB" >
  7192. </productMenu>
  7193. <productMenu id="connectGuide"
  7194. type="1"
  7195. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7196. size="1.12MB" >
  7197. </productMenu>
  7198. <productID id="5550"
  7199. />
  7200. <productGroupable type="0"
  7201. />
  7202. </product>
  7203. <product id="RECON"
  7204. name="RECON"
  7205. series="Helmet"
  7206. latestVersion="1.0"
  7207. latestVersionVoicePrompt="1.8"
  7208. show = "-1" >
  7209. <productMenu id="protocol"
  7210. type="2" >
  7211. </productMenu>
  7212. <productMenu id="ota"
  7213. type="2" >
  7214. <otaLanguages>
  7215. <otaLanguage
  7216. id="0"
  7217. name="English"
  7218. package="0"
  7219. />
  7220. <otaLanguage
  7221. id="0"
  7222. name="French"
  7223. package="1"
  7224. />
  7225. <otaLanguage
  7226. id="0"
  7227. name="Spanish"
  7228. package="2"
  7229. />
  7230. <otaLanguage
  7231. id="0"
  7232. name="Italian"
  7233. package="3"
  7234. />
  7235. <otaLanguage
  7236. id="0"
  7237. name="German"
  7238. package="4"
  7239. />
  7240. <otaLanguage
  7241. id="0"
  7242. name="Dutch"
  7243. package="5"
  7244. />
  7245. <otaLanguage
  7246. id="0"
  7247. name="Russian"
  7248. package="6"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="Chinese"
  7253. package="7"
  7254. />
  7255. <otaLanguage
  7256. id="0"
  7257. name="Korean"
  7258. package="8"
  7259. />
  7260. <otaLanguage
  7261. id="0"
  7262. name="Japanese"
  7263. package="9"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="Finnish"
  7268. package="10"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="Polish"
  7273. package="11"
  7274. />
  7275. </otaLanguages>
  7276. <otaPackages>
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7303. size="5183988"
  7304. />
  7305. <package
  7306. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7307. size="5183988"
  7308. />
  7309. <package
  7310. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7311. size="5183988"
  7312. />
  7313. <package
  7314. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7315. size="5183988"
  7316. />
  7317. <package
  7318. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7319. size="5183988"
  7320. />
  7321. <package
  7322. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7323. size="5183988"
  7324. />
  7325. </otaPackages>
  7326. </productMenu>
  7327. <productMenu id="wa"
  7328. type="0" >
  7329. </productMenu>
  7330. <productMenu id="led"
  7331. type="5" >
  7332. </productMenu>
  7333. <productMenu id="led+"
  7334. type="2"
  7335. url="1" >
  7336. </productMenu>
  7337. <productMenu id="meshIntercom+"
  7338. type="3"
  7339. url="2" >
  7340. </productMenu>
  7341. <productMenu id="waveIntercom"
  7342. type="1" >
  7343. </productMenu>
  7344. <productMenu id="fmradio"
  7345. type="0" >
  7346. </productMenu>
  7347. <productMenu id="phone"
  7348. type="1" >
  7349. </productMenu>
  7350. <productMenu id="music"
  7351. type="1" >
  7352. </productMenu>
  7353. <productMenu id="musicSharing"
  7354. type="0" >
  7355. </productMenu>
  7356. <productMenu id="deviceSetting"
  7357. type="1"
  7358. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON.xml" >
  7359. </productMenu>
  7360. <productMenu id="quickGuide"
  7361. type="0"
  7362. url=""
  7363. size="1.12MB" >
  7364. </productMenu>
  7365. <productMenu id="userGuide"
  7366. type="1"
  7367. url=""
  7368. size="2.28MB" >
  7369. </productMenu>
  7370. <productMenu id="videoGuide"
  7371. type="0"
  7372. url=""
  7373. size="3.41MB" >
  7374. </productMenu>
  7375. <productMenu id="volume"
  7376. type="16" >
  7377. </productMenu>
  7378. <productMenu id="volume+"
  7379. type="2"
  7380. url="0x6004" >
  7381. </productMenu>
  7382. <productMenu id="battery"
  7383. type="1" >
  7384. </productMenu>
  7385. <productID id="6A1D"
  7386. />
  7387. <productGroupable type="0"
  7388. />
  7389. </product>
  7390. <product id="SPECTER"
  7391. name="SPECTER"
  7392. series="Helmet"
  7393. latestVersion="1.0.9"
  7394. latestVersionVoicePrompt="1.7"
  7395. show = "1" >
  7396. <productMenu id="protocol"
  7397. type="2" >
  7398. </productMenu>
  7399. <productMenu id="ota"
  7400. type="2" >
  7401. <otaLanguages>
  7402. <otaLanguage
  7403. id="0"
  7404. name="English"
  7405. package="0"
  7406. />
  7407. <otaLanguage
  7408. id="0"
  7409. name="French"
  7410. package="1"
  7411. />
  7412. <otaLanguage
  7413. id="0"
  7414. name="Spanish"
  7415. package="2"
  7416. />
  7417. <otaLanguage
  7418. id="0"
  7419. name="Italian"
  7420. package="3"
  7421. />
  7422. <otaLanguage
  7423. id="0"
  7424. name="German"
  7425. package="4"
  7426. />
  7427. <otaLanguage
  7428. id="0"
  7429. name="Dutch"
  7430. package="5"
  7431. />
  7432. <otaLanguage
  7433. id="0"
  7434. name="Russian"
  7435. package="6"
  7436. />
  7437. <otaLanguage
  7438. id="0"
  7439. name="Chinese"
  7440. package="7"
  7441. />
  7442. <otaLanguage
  7443. id="0"
  7444. name="Korean"
  7445. package="8"
  7446. />
  7447. <otaLanguage
  7448. id="0"
  7449. name="Japanese"
  7450. package="9"
  7451. />
  7452. <otaLanguage
  7453. id="0"
  7454. name="Finnish"
  7455. package="10"
  7456. />
  7457. <otaLanguage
  7458. id="0"
  7459. name="Polish"
  7460. package="11"
  7461. />
  7462. </otaLanguages>
  7463. <otaPackages>
  7464. <package
  7465. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7466. size="5183988"
  7467. />
  7468. <package
  7469. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7470. size="5183988"
  7471. />
  7472. <package
  7473. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7474. size="5183988"
  7475. />
  7476. <package
  7477. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7478. size="5183988"
  7479. />
  7480. <package
  7481. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7482. size="5183988"
  7483. />
  7484. <package
  7485. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7486. size="5183988"
  7487. />
  7488. <package
  7489. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7490. size="5183988"
  7491. />
  7492. <package
  7493. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7494. size="5183988"
  7495. />
  7496. <package
  7497. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7498. size="5183988"
  7499. />
  7500. <package
  7501. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7502. size="5183988"
  7503. />
  7504. <package
  7505. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7506. size="5183988"
  7507. />
  7508. <package
  7509. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7510. size="5183988"
  7511. />
  7512. </otaPackages>
  7513. </productMenu>
  7514. <productMenu id="wa"
  7515. type="0" >
  7516. </productMenu>
  7517. <productMenu id="led"
  7518. type="5" >
  7519. </productMenu>
  7520. <productMenu id="led+"
  7521. type="2"
  7522. url="1" >
  7523. </productMenu>
  7524. <productMenu id="meshIntercom+"
  7525. type="3"
  7526. url="2" >
  7527. </productMenu>
  7528. <productMenu id="waveIntercom"
  7529. type="1" >
  7530. </productMenu>
  7531. <productMenu id="fmradio"
  7532. type="0" >
  7533. </productMenu>
  7534. <productMenu id="phone"
  7535. type="1" >
  7536. </productMenu>
  7537. <productMenu id="music"
  7538. type="1" >
  7539. </productMenu>
  7540. <productMenu id="musicSharing"
  7541. type="0" >
  7542. </productMenu>
  7543. <productMenu id="deviceSetting"
  7544. type="1"
  7545. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7546. <productMenuURL version="1.0.4"
  7547. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7548. />
  7549. </productMenu>
  7550. <productMenu id="quickGuide"
  7551. type="0"
  7552. url=""
  7553. size="1.12MB" >
  7554. </productMenu>
  7555. <productMenu id="userGuide"
  7556. type="1"
  7557. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7558. size="2.0MB" >
  7559. </productMenu>
  7560. <productMenu id="videoGuide"
  7561. type="0"
  7562. url=""
  7563. size="3.41MB" >
  7564. </productMenu>
  7565. <productMenu id="volume"
  7566. type="16" >
  7567. </productMenu>
  7568. <productMenu id="volume+"
  7569. type="2"
  7570. url="0x6004" >
  7571. </productMenu>
  7572. <productMenu id="battery"
  7573. type="1" >
  7574. </productMenu>
  7575. <productID id="6A11"
  7576. />
  7577. <productGroupable type="0"
  7578. />
  7579. </product>
  7580. <product id="SPECTER"
  7581. name="SPECTER"
  7582. series="Helmet"
  7583. latestVersion="1.0.9"
  7584. latestVersionVoicePrompt="1.7"
  7585. show = "-1" >
  7586. <productMenu id="protocol"
  7587. type="2" >
  7588. </productMenu>
  7589. <productMenu id="ota"
  7590. type="2" >
  7591. <otaLanguages>
  7592. <otaLanguage
  7593. id="0"
  7594. name="English"
  7595. package="0"
  7596. />
  7597. <otaLanguage
  7598. id="0"
  7599. name="French"
  7600. package="1"
  7601. />
  7602. <otaLanguage
  7603. id="0"
  7604. name="Spanish"
  7605. package="2"
  7606. />
  7607. <otaLanguage
  7608. id="0"
  7609. name="Italian"
  7610. package="3"
  7611. />
  7612. <otaLanguage
  7613. id="0"
  7614. name="German"
  7615. package="4"
  7616. />
  7617. <otaLanguage
  7618. id="0"
  7619. name="Dutch"
  7620. package="5"
  7621. />
  7622. <otaLanguage
  7623. id="0"
  7624. name="Russian"
  7625. package="6"
  7626. />
  7627. <otaLanguage
  7628. id="0"
  7629. name="Chinese"
  7630. package="7"
  7631. />
  7632. <otaLanguage
  7633. id="0"
  7634. name="Korean"
  7635. package="8"
  7636. />
  7637. <otaLanguage
  7638. id="0"
  7639. name="Japanese"
  7640. package="9"
  7641. />
  7642. <otaLanguage
  7643. id="0"
  7644. name="Finnish"
  7645. package="10"
  7646. />
  7647. <otaLanguage
  7648. id="0"
  7649. name="Polish"
  7650. package="11"
  7651. />
  7652. </otaLanguages>
  7653. <otaPackages>
  7654. <package
  7655. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7656. size="5183988"
  7657. />
  7658. <package
  7659. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7660. size="5183988"
  7661. />
  7662. <package
  7663. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7664. size="5183988"
  7665. />
  7666. <package
  7667. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7668. size="5183988"
  7669. />
  7670. <package
  7671. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7672. size="5183988"
  7673. />
  7674. <package
  7675. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7676. size="5183988"
  7677. />
  7678. <package
  7679. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7680. size="5183988"
  7681. />
  7682. <package
  7683. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7684. size="5183988"
  7685. />
  7686. <package
  7687. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7688. size="5183988"
  7689. />
  7690. <package
  7691. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7692. size="5183988"
  7693. />
  7694. <package
  7695. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7696. size="5183988"
  7697. />
  7698. <package
  7699. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7700. size="5183988"
  7701. />
  7702. </otaPackages>
  7703. </productMenu>
  7704. <productMenu id="wa"
  7705. type="0" >
  7706. </productMenu>
  7707. <productMenu id="led"
  7708. type="5" >
  7709. </productMenu>
  7710. <productMenu id="led+"
  7711. type="2"
  7712. url="1" >
  7713. </productMenu>
  7714. <productMenu id="meshIntercom+"
  7715. type="3"
  7716. url="2" >
  7717. </productMenu>
  7718. <productMenu id="waveIntercom"
  7719. type="1" >
  7720. </productMenu>
  7721. <productMenu id="fmradio"
  7722. type="0" >
  7723. </productMenu>
  7724. <productMenu id="phone"
  7725. type="1" >
  7726. </productMenu>
  7727. <productMenu id="music"
  7728. type="1" >
  7729. </productMenu>
  7730. <productMenu id="musicSharing"
  7731. type="0" >
  7732. </productMenu>
  7733. <productMenu id="deviceSetting"
  7734. type="1"
  7735. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7736. <productMenuURL version="1.0.4"
  7737. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7738. />
  7739. <productMenuURL version="1.0"
  7740. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7741. />
  7742. </productMenu>
  7743. <productMenu id="quickGuide"
  7744. type="0"
  7745. url=""
  7746. size="1.12MB" >
  7747. </productMenu>
  7748. <productMenu id="userGuide"
  7749. type="1"
  7750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7751. size="2.0MB" >
  7752. </productMenu>
  7753. <productMenu id="videoGuide"
  7754. type="0"
  7755. url=""
  7756. size="3.41MB" >
  7757. </productMenu>
  7758. <productMenu id="volume"
  7759. type="16" >
  7760. </productMenu>
  7761. <productMenu id="volume+"
  7762. type="2"
  7763. url="0x6004" >
  7764. </productMenu>
  7765. <productMenu id="battery"
  7766. type="1" >
  7767. </productMenu>
  7768. <productID id="6A0A"
  7769. />
  7770. <productGroupable type="0"
  7771. />
  7772. </product>
  7773. <product id="OUTLANDER"
  7774. name="OUTLANDER"
  7775. series="Helmet"
  7776. latestVersion="1.0.9"
  7777. latestVersionVoicePrompt="1.7"
  7778. show = "1" >
  7779. <productMenu id="protocol"
  7780. type="2" >
  7781. </productMenu>
  7782. <productMenu id="ota"
  7783. type="2" >
  7784. <otaLanguages>
  7785. <otaLanguage
  7786. id="0"
  7787. name="English"
  7788. package="0"
  7789. />
  7790. <otaLanguage
  7791. id="0"
  7792. name="French"
  7793. package="1"
  7794. />
  7795. <otaLanguage
  7796. id="0"
  7797. name="Spanish"
  7798. package="2"
  7799. />
  7800. <otaLanguage
  7801. id="0"
  7802. name="Italian"
  7803. package="3"
  7804. />
  7805. <otaLanguage
  7806. id="0"
  7807. name="German"
  7808. package="4"
  7809. />
  7810. <otaLanguage
  7811. id="0"
  7812. name="Dutch"
  7813. package="5"
  7814. />
  7815. <otaLanguage
  7816. id="0"
  7817. name="Russian"
  7818. package="6"
  7819. />
  7820. <otaLanguage
  7821. id="0"
  7822. name="Chinese"
  7823. package="7"
  7824. />
  7825. <otaLanguage
  7826. id="0"
  7827. name="Korean"
  7828. package="8"
  7829. />
  7830. <otaLanguage
  7831. id="0"
  7832. name="Japanese"
  7833. package="9"
  7834. />
  7835. <otaLanguage
  7836. id="0"
  7837. name="Finnish"
  7838. package="10"
  7839. />
  7840. <otaLanguage
  7841. id="0"
  7842. name="Polish"
  7843. package="11"
  7844. />
  7845. </otaLanguages>
  7846. <otaPackages>
  7847. <package
  7848. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7849. size="5183988"
  7850. />
  7851. <package
  7852. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7853. size="5183988"
  7854. />
  7855. <package
  7856. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7857. size="5183988"
  7858. />
  7859. <package
  7860. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7861. size="5183988"
  7862. />
  7863. <package
  7864. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7865. size="5183988"
  7866. />
  7867. <package
  7868. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7869. size="5183988"
  7870. />
  7871. <package
  7872. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7873. size="5183988"
  7874. />
  7875. <package
  7876. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7877. size="5183988"
  7878. />
  7879. <package
  7880. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7881. size="5183988"
  7882. />
  7883. <package
  7884. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7885. size="5183988"
  7886. />
  7887. <package
  7888. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7889. size="5183988"
  7890. />
  7891. <package
  7892. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7893. size="5183988"
  7894. />
  7895. </otaPackages>
  7896. </productMenu>
  7897. <productMenu id="wa"
  7898. type="0" >
  7899. </productMenu>
  7900. <productMenu id="led"
  7901. type="5" >
  7902. </productMenu>
  7903. <productMenu id="led+"
  7904. type="2"
  7905. url="1" >
  7906. </productMenu>
  7907. <productMenu id="meshIntercom+"
  7908. type="3"
  7909. url="2" >
  7910. </productMenu>
  7911. <productMenu id="waveIntercom"
  7912. type="1" >
  7913. </productMenu>
  7914. <productMenu id="fmradio"
  7915. type="0" >
  7916. </productMenu>
  7917. <productMenu id="phone"
  7918. type="1" >
  7919. </productMenu>
  7920. <productMenu id="music"
  7921. type="1" >
  7922. </productMenu>
  7923. <productMenu id="musicSharing"
  7924. type="0" >
  7925. </productMenu>
  7926. <productMenu id="deviceSetting"
  7927. type="1"
  7928. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7929. <productMenuURL version="1.0.4"
  7930. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7931. />
  7932. </productMenu>
  7933. <productMenu id="quickGuide"
  7934. type="0"
  7935. url=""
  7936. size="1.12MB" >
  7937. </productMenu>
  7938. <productMenu id="userGuide"
  7939. type="1"
  7940. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7941. size="2.0MB" >
  7942. </productMenu>
  7943. <productMenu id="videoGuide"
  7944. type="0"
  7945. url=""
  7946. size="3.41MB" >
  7947. </productMenu>
  7948. <productMenu id="volume"
  7949. type="16" >
  7950. </productMenu>
  7951. <productMenu id="volume+"
  7952. type="2"
  7953. url="0x6004" >
  7954. </productMenu>
  7955. <productMenu id="battery"
  7956. type="1" >
  7957. </productMenu>
  7958. <productID id="6A05"
  7959. />
  7960. <productGroupable type="0"
  7961. />
  7962. </product>
  7963. <product id="OUTRUSH2"
  7964. name="OUTRUSH 2"
  7965. series="Helmet"
  7966. latestVersion="1.0.3"
  7967. latestVersionVoicePrompt="1.6"
  7968. show = "1" >
  7969. <productMenu id="protocol"
  7970. type="2" >
  7971. </productMenu>
  7972. <productMenu id="alexa"
  7973. type="0" >
  7974. </productMenu>
  7975. <productMenu id="ota"
  7976. type="2" >
  7977. <otaPackages>
  7978. <package
  7979. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7980. size="2945812"
  7981. />
  7982. </otaPackages>
  7983. </productMenu>
  7984. <productMenu id="meshIntercom+"
  7985. type="3"
  7986. url="2" >
  7987. </productMenu>
  7988. <productMenu id="waveIntercom"
  7989. type="1" >
  7990. </productMenu>
  7991. <productMenu id="phone"
  7992. type="1" >
  7993. </productMenu>
  7994. <productMenu id="music"
  7995. type="1" >
  7996. </productMenu>
  7997. <productMenu id="musicSharing"
  7998. type="0" >
  7999. </productMenu>
  8000. <productMenu id="deviceSetting"
  8001. type="1"
  8002. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8003. <productMenuURL version="1.0"
  8004. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8005. />
  8006. </productMenu>
  8007. <productMenu id="quickGuide"
  8008. type="0"
  8009. url=""
  8010. size="1.12MB" >
  8011. </productMenu>
  8012. <productMenu id="userGuide"
  8013. type="1"
  8014. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8015. size="2.0MB" >
  8016. </productMenu>
  8017. <productMenu id="connectGuide"
  8018. type="1"
  8019. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8020. size="1.12MB" >
  8021. </productMenu>
  8022. <productMenu id="volume"
  8023. type="12" >
  8024. </productMenu>
  8025. <productMenu id="battery"
  8026. type="1" >
  8027. </productMenu>
  8028. <productID id="684A"
  8029. />
  8030. <productGroupable type="0"
  8031. />
  8032. </product>
  8033. <product id="OUTSTAR2"
  8034. name="OUTSTAR 2"
  8035. series="Helmet"
  8036. latestVersion="1.0.2"
  8037. latestVersionVoicePrompt="1.6"
  8038. show = "1" >
  8039. <productMenu id="protocol"
  8040. type="2" >
  8041. </productMenu>
  8042. <productMenu id="alexa"
  8043. type="0" >
  8044. </productMenu>
  8045. <productMenu id="ota"
  8046. type="2" >
  8047. <otaPackages>
  8048. <package
  8049. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8050. size="2945812"
  8051. />
  8052. </otaPackages>
  8053. </productMenu>
  8054. <productMenu id="meshIntercom+"
  8055. type="3"
  8056. url="2" >
  8057. </productMenu>
  8058. <productMenu id="waveIntercom"
  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="musicSharing"
  8068. type="0" >
  8069. </productMenu>
  8070. <productMenu id="deviceSetting"
  8071. type="1"
  8072. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8073. </productMenu>
  8074. <productMenu id="quickGuide"
  8075. type="0"
  8076. url=""
  8077. size="1.12MB" >
  8078. </productMenu>
  8079. <productMenu id="userGuide"
  8080. type="1"
  8081. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8082. size="2.0MB" >
  8083. </productMenu>
  8084. <productMenu id="connectGuide"
  8085. type="1"
  8086. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8087. size="1.12MB" >
  8088. </productMenu>
  8089. <productMenu id="volume"
  8090. type="12" >
  8091. </productMenu>
  8092. <productMenu id="battery"
  8093. type="1" >
  8094. </productMenu>
  8095. <productID id="684B"
  8096. />
  8097. <productGroupable type="0"
  8098. />
  8099. </product>
  8100. <product id="SURGE"
  8101. name="SURGE"
  8102. series="Helmet"
  8103. latestVersion="1.2"
  8104. latestVersionVoicePrompt="1.3"
  8105. show = "1" >
  8106. <productMenu id="protocol"
  8107. type="2" >
  8108. </productMenu>
  8109. <productMenu id="alexa"
  8110. type="0" >
  8111. </productMenu>
  8112. <productMenu id="ota"
  8113. type="2" >
  8114. <otaPackages>
  8115. <package
  8116. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8117. size="2945812"
  8118. />
  8119. </otaPackages>
  8120. </productMenu>
  8121. <productMenu id="meshIntercom"
  8122. type="30" >
  8123. </productMenu>
  8124. <productMenu id="meshIntercom+"
  8125. type="3"
  8126. url="2" >
  8127. <productMenuType version="1.0.1"
  8128. type="2"
  8129. />
  8130. </productMenu>
  8131. <productMenu id="waveIntercom"
  8132. type="1" >
  8133. <productMenuType version="1.0.9"
  8134. type="0"
  8135. />
  8136. </productMenu>
  8137. <productMenu id="phone"
  8138. type="1" >
  8139. </productMenu>
  8140. <productMenu id="music"
  8141. type="1" >
  8142. </productMenu>
  8143. <productMenu id="musicSharing"
  8144. type="0" >
  8145. </productMenu>
  8146. <productMenu id="deviceSetting"
  8147. type="1"
  8148. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8149. <productMenuURL version="1.1.9"
  8150. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8151. />
  8152. <productMenuURL version="1.0.1"
  8153. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8154. />
  8155. </productMenu>
  8156. <productMenu id="quickGuide"
  8157. type="0"
  8158. url=""
  8159. size="1.12MB" >
  8160. </productMenu>
  8161. <productMenu id="userGuide"
  8162. type="1"
  8163. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8164. size="2.0MB" >
  8165. </productMenu>
  8166. <productMenu id="volume"
  8167. type="12" >
  8168. </productMenu>
  8169. <productMenu id="battery"
  8170. type="1" >
  8171. </productMenu>
  8172. <productID id="6840"
  8173. />
  8174. <productGroupable type="0"
  8175. />
  8176. </product>
  8177. <product id="Cavalry2"
  8178. name="Cavalry 2"
  8179. series="Helmet"
  8180. latestVersion="1.2"
  8181. latestVersionVoicePrompt="1.3"
  8182. show = "1" >
  8183. <productMenu id="protocol"
  8184. type="2" >
  8185. </productMenu>
  8186. <productMenu id="alexa"
  8187. type="0" >
  8188. </productMenu>
  8189. <productMenu id="ota"
  8190. type="2" >
  8191. <otaPackages>
  8192. <package
  8193. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8194. size="3144148"
  8195. />
  8196. </otaPackages>
  8197. </productMenu>
  8198. <productMenu id="wa"
  8199. type="0" >
  8200. </productMenu>
  8201. <productMenu id="meshIntercom"
  8202. type="30" >
  8203. </productMenu>
  8204. <productMenu id="meshIntercom+"
  8205. type="3"
  8206. url="2" >
  8207. <productMenuType version="1.0"
  8208. type="2"
  8209. />
  8210. </productMenu>
  8211. <productMenu id="waveIntercom"
  8212. type="1" >
  8213. <productMenuType version="1.0.9"
  8214. type="0"
  8215. />
  8216. </productMenu>
  8217. <productMenu id="phone"
  8218. type="1" >
  8219. </productMenu>
  8220. <productMenu id="music"
  8221. type="1" >
  8222. </productMenu>
  8223. <productMenu id="musicSharing"
  8224. type="0" >
  8225. </productMenu>
  8226. <productMenu id="deviceSetting"
  8227. type="1"
  8228. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8229. <productMenuURL version="1.1.9"
  8230. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8231. />
  8232. <productMenuURL version="1.0"
  8233. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8234. />
  8235. </productMenu>
  8236. <productMenu id="quickGuide"
  8237. type="0"
  8238. url=""
  8239. size="1.12MB" >
  8240. </productMenu>
  8241. <productMenu id="userGuide"
  8242. type="1"
  8243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8244. size="2.0MB" >
  8245. </productMenu>
  8246. <productMenu id="connectGuide"
  8247. type="1"
  8248. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8249. size="1.12MB" >
  8250. </productMenu>
  8251. <productMenu id="volume"
  8252. type="12" >
  8253. </productMenu>
  8254. <productMenu id="battery"
  8255. type="1" >
  8256. </productMenu>
  8257. <productID id="6839"
  8258. />
  8259. <productGroupable type="0"
  8260. />
  8261. </product>
  8262. <product id="Cavalry"
  8263. name="Cavalry"
  8264. series="Helmet"
  8265. latestVersion="1.2.2"
  8266. show = "1" >
  8267. <productMenu id="protocol"
  8268. type="0">
  8269. </productMenu>
  8270. <productMenu id="sip"
  8271. type="1" >
  8272. </productMenu>
  8273. <productMenu id="bluetoothIntercom"
  8274. type="1" >
  8275. </productMenu>
  8276. <productMenu id="phone"
  8277. type="2" >
  8278. </productMenu>
  8279. <productMenu id="fmradio"
  8280. type="3" >
  8281. </productMenu>
  8282. <productMenu id="deviceSetting"
  8283. type="1"
  8284. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8285. <productMenuURL version="1.9"
  8286. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8287. />
  8288. <productMenuURL version="1.0.1"
  8289. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8290. />
  8291. </productMenu>
  8292. <productMenu id="quickGuide"
  8293. type="1"
  8294. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8295. size="795KB" >
  8296. </productMenu>
  8297. <productMenu id="userGuide"
  8298. type="1"
  8299. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8300. size="1.87MB" >
  8301. </productMenu>
  8302. <productMenu id="connectGuide"
  8303. type="1"
  8304. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8305. size="1.12MB" >
  8306. </productMenu>
  8307. <productID id="5524"
  8308. />
  8309. <productGroupable type="0"
  8310. />
  8311. </product>
  8312. <product id="Cavalry_Lite"
  8313. name="Cavalry Lite"
  8314. series="Helmet"
  8315. latestVersion="1.0.2"
  8316. show = "1" >
  8317. <productMenu id="protocol"
  8318. type="0">
  8319. </productMenu>
  8320. <productMenu id="sip"
  8321. type="1" >
  8322. </productMenu>
  8323. <productMenu id="bluetoothIntercom"
  8324. type="1" >
  8325. </productMenu>
  8326. <productMenu id="phone"
  8327. type="2" >
  8328. </productMenu>
  8329. <productMenu id="fmradio"
  8330. type="3" >
  8331. </productMenu>
  8332. <productMenu id="deviceSetting"
  8333. type="1"
  8334. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8335. </productMenu>
  8336. <productMenu id="userGuide"
  8337. type="1"
  8338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8339. size="1.74MB" >
  8340. </productMenu>
  8341. <productMenu id="connectGuide"
  8342. type="1"
  8343. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8344. size="1.12MB" >
  8345. </productMenu>
  8346. <productID id="5536"
  8347. />
  8348. <productGroupable type="0"
  8349. />
  8350. </product>
  8351. <product id="VORTEX"
  8352. name="VORTEX"
  8353. series="VORTEX"
  8354. latestVersion="1.0.2"
  8355. latestVersionVoicePrompt="1.0"
  8356. show = "1" >
  8357. <productMenu id="protocol"
  8358. type="2" >
  8359. </productMenu>
  8360. <productMenu id="warranty"
  8361. type="1" >
  8362. </productMenu>
  8363. <productMenu id="serialNumber"
  8364. type="1" >
  8365. </productMenu>
  8366. <productMenu id="ota"
  8367. type="2" >
  8368. <otaLanguages>
  8369. <otaLanguage
  8370. id="0"
  8371. name="English"
  8372. package="0"
  8373. />
  8374. <otaLanguage
  8375. id="0"
  8376. name="French"
  8377. package="1"
  8378. />
  8379. <otaLanguage
  8380. id="0"
  8381. name="Spanish"
  8382. package="2"
  8383. />
  8384. <otaLanguage
  8385. id="0"
  8386. name="Italian"
  8387. package="3"
  8388. />
  8389. <otaLanguage
  8390. id="0"
  8391. name="German"
  8392. package="4"
  8393. />
  8394. <otaLanguage
  8395. id="0"
  8396. name="Dutch"
  8397. package="5"
  8398. />
  8399. <otaLanguage
  8400. id="0"
  8401. name="Russian"
  8402. package="6"
  8403. />
  8404. <otaLanguage
  8405. id="0"
  8406. name="Chinese"
  8407. package="7"
  8408. />
  8409. <otaLanguage
  8410. id="0"
  8411. name="Korean"
  8412. package="8"
  8413. />
  8414. <otaLanguage
  8415. id="0"
  8416. name="Japanese"
  8417. package="9"
  8418. />
  8419. <otaLanguage
  8420. id="0"
  8421. name="Finnish"
  8422. package="10"
  8423. />
  8424. <otaLanguage
  8425. id="0"
  8426. name="Polish"
  8427. package="11"
  8428. />
  8429. </otaLanguages>
  8430. <otaPackages>
  8431. <package
  8432. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8433. size="5183988"
  8434. />
  8435. <package
  8436. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8437. size="5183988"
  8438. />
  8439. <package
  8440. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8441. size="5183988"
  8442. />
  8443. <package
  8444. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8445. size="5183988"
  8446. />
  8447. <package
  8448. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8449. size="5183988"
  8450. />
  8451. <package
  8452. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8453. size="5183988"
  8454. />
  8455. <package
  8456. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8457. size="5183988"
  8458. />
  8459. <package
  8460. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8461. size="5183988"
  8462. />
  8463. <package
  8464. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8465. size="5183988"
  8466. />
  8467. <package
  8468. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8469. size="5183988"
  8470. />
  8471. <package
  8472. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8473. size="5183988"
  8474. />
  8475. <package
  8476. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8477. size="5183988"
  8478. />
  8479. </otaPackages>
  8480. </productMenu>
  8481. <productMenu id="sip"
  8482. type="1" >
  8483. </productMenu>
  8484. <productMenu id="bluetoothIntercom"
  8485. type="1" >
  8486. </productMenu>
  8487. <productMenu id="phone"
  8488. type="1" >
  8489. </productMenu>
  8490. <productMenu id="music"
  8491. type="1" >
  8492. </productMenu>
  8493. <productMenu id="fmradio"
  8494. type="1"
  8495. url="1" >
  8496. </productMenu>
  8497. <productMenu id="deviceSetting"
  8498. type="1"
  8499. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8500. </productMenu>
  8501. <productMenu id="quickGuide"
  8502. type="0"
  8503. url=""
  8504. size="934KB" >
  8505. </productMenu>
  8506. <productMenu id="userGuide"
  8507. type="1"
  8508. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8509. size="1.14MB" >
  8510. </productMenu>
  8511. <productMenu id="connectGuide"
  8512. type="0"
  8513. url=""
  8514. size="1.12MB" >
  8515. </productMenu>
  8516. <productMenu id="volume"
  8517. type="15" >
  8518. </productMenu>
  8519. <productMenu id="volume+"
  8520. type="2"
  8521. url="0x0018" >
  8522. </productMenu>
  8523. <productMenu id="appearance"
  8524. type="1"
  8525. url="1|white,silver,black" >
  8526. </productMenu>
  8527. <productID id="3451"
  8528. />
  8529. <productGroupable type="0"
  8530. />
  8531. </product>
  8532. <product id="SF4"
  8533. name="SF4"
  8534. series="SF"
  8535. latestVersion="1.1.5"
  8536. show = "-1" >
  8537. <productMenu id="protocol"
  8538. type="1"
  8539. url="3">
  8540. </productMenu>
  8541. <productMenu id="sip"
  8542. type="1" >
  8543. </productMenu>
  8544. <productMenu id="bluetoothIntercom"
  8545. type="1" >
  8546. </productMenu>
  8547. <productMenu id="phone"
  8548. type="1" >
  8549. </productMenu>
  8550. <productMenu id="music"
  8551. type="1" >
  8552. </productMenu>
  8553. <productMenu id="fmradio"
  8554. type="1" >
  8555. </productMenu>
  8556. <productMenu id="deviceSetting"
  8557. type="1"
  8558. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8559. <productMenuURL version="1.0.1"
  8560. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8561. />
  8562. </productMenu>
  8563. <productMenu id="quickGuide"
  8564. type="1"
  8565. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8566. size="607KB" >
  8567. </productMenu>
  8568. <productMenu id="userGuide"
  8569. type="1"
  8570. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8571. size="1.91MB" >
  8572. </productMenu>
  8573. <productMenu id="volume"
  8574. type="4" >
  8575. </productMenu>
  8576. <productID id="5414"
  8577. />
  8578. <productGroupable type="0"
  8579. />
  8580. </product>
  8581. <product id="SF4"
  8582. name="SF4"
  8583. series="SF"
  8584. latestVersion="3.4.4"
  8585. show = "1" >
  8586. <productMenu id="protocol"
  8587. type="2" >
  8588. </productMenu>
  8589. <productMenu id="sip"
  8590. type="1" >
  8591. </productMenu>
  8592. <productMenu id="bluetoothIntercom"
  8593. type="1" >
  8594. </productMenu>
  8595. <productMenu id="phone"
  8596. type="1" >
  8597. </productMenu>
  8598. <productMenu id="music"
  8599. type="1" >
  8600. </productMenu>
  8601. <productMenu id="fmradio"
  8602. type="1" >
  8603. </productMenu>
  8604. <productMenu id="deviceSetting"
  8605. type="1"
  8606. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8607. <productMenuURL version="3.0"
  8608. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8609. />
  8610. </productMenu>
  8611. <productMenu id="quickGuide"
  8612. type="0"
  8613. url=""
  8614. size="934KB" >
  8615. </productMenu>
  8616. <productMenu id="userGuide"
  8617. type="1"
  8618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8619. size="1.14MB" >
  8620. </productMenu>
  8621. <productMenu id="connectGuide"
  8622. type="1"
  8623. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8624. size="1.12MB" >
  8625. </productMenu>
  8626. <productMenu id="volume"
  8627. type="15" >
  8628. </productMenu>
  8629. <productID id="3370"
  8630. />
  8631. <productGroupable type="0"
  8632. />
  8633. </product>
  8634. <product id="SF2"
  8635. name="SF2"
  8636. series="SF"
  8637. latestVersion="1.2.1"
  8638. show = "-1" >
  8639. <productMenu id="protocol"
  8640. type="1"
  8641. url="2">
  8642. </productMenu>
  8643. <productMenu id="sip"
  8644. type="1" >
  8645. </productMenu>
  8646. <productMenu id="bluetoothIntercom"
  8647. type="1" >
  8648. </productMenu>
  8649. <productMenu id="phone"
  8650. type="1" >
  8651. </productMenu>
  8652. <productMenu id="music"
  8653. type="1" >
  8654. </productMenu>
  8655. <productMenu id="fmradio"
  8656. type="1" >
  8657. </productMenu>
  8658. <productMenu id="deviceSetting"
  8659. type="1"
  8660. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8661. <productMenuURL version="1.0.1"
  8662. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8663. />
  8664. </productMenu>
  8665. <productMenu id="quickGuide"
  8666. type="1"
  8667. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8668. size="607KB" >
  8669. </productMenu>
  8670. <productMenu id="userGuide"
  8671. type="1"
  8672. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8673. size="1.91MB" >
  8674. </productMenu>
  8675. <productMenu id="volume"
  8676. type="4" >
  8677. </productMenu>
  8678. <productID id="5412"
  8679. />
  8680. <productGroupable type="0"
  8681. />
  8682. </product>
  8683. <product id="SF2"
  8684. name="SF2"
  8685. series="SF"
  8686. latestVersion="3.3.4"
  8687. show = "1" >
  8688. <productMenu id="protocol"
  8689. type="2" >
  8690. </productMenu>
  8691. <productMenu id="sip"
  8692. type="1" >
  8693. </productMenu>
  8694. <productMenu id="bluetoothIntercom"
  8695. type="1" >
  8696. </productMenu>
  8697. <productMenu id="phone"
  8698. type="1" >
  8699. </productMenu>
  8700. <productMenu id="music"
  8701. type="1" >
  8702. </productMenu>
  8703. <productMenu id="fmradio"
  8704. type="0" >
  8705. </productMenu>
  8706. <productMenu id="deviceSetting"
  8707. type="1"
  8708. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8709. <productMenuURL version="3.0"
  8710. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8711. />
  8712. </productMenu>
  8713. <productMenu id="quickGuide"
  8714. type="0"
  8715. url=""
  8716. size="934KB" >
  8717. </productMenu>
  8718. <productMenu id="userGuide"
  8719. type="1"
  8720. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8721. size="1.14MB" >
  8722. </productMenu>
  8723. <productMenu id="connectGuide"
  8724. type="1"
  8725. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8726. size="1.12MB" >
  8727. </productMenu>
  8728. <productMenu id="volume"
  8729. type="15" >
  8730. </productMenu>
  8731. <productID id="3360"
  8732. />
  8733. <productGroupable type="0"
  8734. />
  8735. </product>
  8736. <product id="SF1"
  8737. name="SF1"
  8738. series="SF"
  8739. latestVersion="2.0.5"
  8740. show = "-1" >
  8741. <productMenu id="protocol"
  8742. type="1"
  8743. url="1">
  8744. </productMenu>
  8745. <productMenu id="sip"
  8746. type="1" >
  8747. </productMenu>
  8748. <productMenu id="bluetoothIntercom"
  8749. type="1" >
  8750. <productMenuType version="1.1"
  8751. type="0"
  8752. />
  8753. </productMenu>
  8754. <productMenu id="phone"
  8755. type="1" >
  8756. </productMenu>
  8757. <productMenu id="music"
  8758. type="1" >
  8759. </productMenu>
  8760. <productMenu id="deviceSetting"
  8761. type="1"
  8762. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8763. <productMenuURL version="1.1"
  8764. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8765. />
  8766. <productMenuURL version="1.0"
  8767. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8768. />
  8769. </productMenu>
  8770. <productMenu id="quickGuide"
  8771. type="1"
  8772. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8773. size="401KB" >
  8774. </productMenu>
  8775. <productMenu id="userGuide"
  8776. type="1"
  8777. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8778. size="1.91MB" >
  8779. </productMenu>
  8780. <productMenu id="volume"
  8781. type="3" >
  8782. </productMenu>
  8783. <productID id="5410"
  8784. />
  8785. <productGroupable type="0"
  8786. />
  8787. </product>
  8788. <product id="SF1"
  8789. name="SF1"
  8790. series="SF"
  8791. latestVersion="3.3.4"
  8792. show = "1" >
  8793. <productMenu id="protocol"
  8794. type="2" >
  8795. </productMenu>
  8796. <productMenu id="sip"
  8797. type="1" >
  8798. </productMenu>
  8799. <productMenu id="bluetoothIntercom"
  8800. type="1" >
  8801. </productMenu>
  8802. <productMenu id="phone"
  8803. type="1" >
  8804. </productMenu>
  8805. <productMenu id="music"
  8806. type="1" >
  8807. </productMenu>
  8808. <productMenu id="fmradio"
  8809. type="0" >
  8810. </productMenu>
  8811. <productMenu id="deviceSetting"
  8812. type="1"
  8813. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8814. <productMenuURL version="3.0"
  8815. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8816. />
  8817. </productMenu>
  8818. <productMenu id="quickGuide"
  8819. type="0"
  8820. url=""
  8821. size="934KB" >
  8822. </productMenu>
  8823. <productMenu id="userGuide"
  8824. type="1"
  8825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8826. size="1.14MB" >
  8827. </productMenu>
  8828. <productMenu id="connectGuide"
  8829. type="1"
  8830. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8831. size="1.12MB" >
  8832. </productMenu>
  8833. <productMenu id="volume"
  8834. type="15" >
  8835. </productMenu>
  8836. <productID id="3350"
  8837. />
  8838. <productGroupable type="0"
  8839. />
  8840. </product>
  8841. <product id="SFR"
  8842. name="SFR"
  8843. series="SF"
  8844. latestVersion="1.1.1"
  8845. show = "1" >
  8846. <productMenu id="protocol"
  8847. type="1"
  8848. url="3">
  8849. </productMenu>
  8850. <productMenu id="sip"
  8851. type="1" >
  8852. </productMenu>
  8853. <productMenu id="bluetoothIntercom"
  8854. type="1" >
  8855. </productMenu>
  8856. <productMenu id="phone"
  8857. type="1" >
  8858. </productMenu>
  8859. <productMenu id="music"
  8860. type="1" >
  8861. </productMenu>
  8862. <productMenu id="fmradio"
  8863. type="1" >
  8864. </productMenu>
  8865. <productMenu id="deviceSetting"
  8866. type="1"
  8867. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8868. </productMenu>
  8869. <productMenu id="quickGuide"
  8870. type="1"
  8871. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8872. size="607KB" >
  8873. </productMenu>
  8874. <productMenu id="userGuide"
  8875. type="1"
  8876. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8877. size="1.91MB" >
  8878. </productMenu>
  8879. <productMenu id="volume"
  8880. type="4" >
  8881. </productMenu>
  8882. <productID id="5418"
  8883. />
  8884. <productGroupable type="0"
  8885. />
  8886. </product>
  8887. <product id="20S"
  8888. name="20S"
  8889. series="20"
  8890. latestVersion="2.2.3"
  8891. show = "1" >
  8892. <productMenu id="protocol"
  8893. type="0">
  8894. </productMenu>
  8895. <productMenu id="wa"
  8896. type="5" >
  8897. </productMenu>
  8898. <productMenu id="sip"
  8899. type="1" >
  8900. <productMenuType version="1.0"
  8901. type="0"
  8902. />
  8903. </productMenu>
  8904. <productMenu id="bluetoothIntercom"
  8905. type="1" >
  8906. <productMenuType version="1.0"
  8907. type="0"
  8908. />
  8909. </productMenu>
  8910. <productMenu id="intercomSetting"
  8911. type="1" >
  8912. </productMenu>
  8913. <productMenu id="phone"
  8914. type="2" >
  8915. </productMenu>
  8916. <productMenu id="fmradio"
  8917. type="3" >
  8918. </productMenu>
  8919. <productMenu id="deviceSetting"
  8920. type="1"
  8921. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8922. <productMenuURL version="2.0.2"
  8923. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8924. />
  8925. <productMenuURL version="1.5"
  8926. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8927. />
  8928. <productMenuURL version="1.4.1"
  8929. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8930. />
  8931. <productMenuURL version="1.1"
  8932. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8933. />
  8934. <productMenuURL version="1.0"
  8935. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8936. />
  8937. </productMenu>
  8938. <productMenu id="quickGuide"
  8939. type="0"
  8940. url=""
  8941. size="264KB" >
  8942. </productMenu>
  8943. <productMenu id="userGuide"
  8944. type="1"
  8945. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8946. size="3.09MB" >
  8947. </productMenu>
  8948. <productMenu id="connectGuide"
  8949. type="1"
  8950. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8951. size="1.12MB" >
  8952. </productMenu>
  8953. <productID id="4210"
  8954. />
  8955. <productGroupable type="1"
  8956. />
  8957. </product>
  8958. <product id="20S_EVO"
  8959. name="20S EVO"
  8960. series="20"
  8961. latestVersion="2.2.3"
  8962. show = "1" >
  8963. <productMenu id="protocol"
  8964. type="0">
  8965. </productMenu>
  8966. <productMenu id="wa"
  8967. type="5" >
  8968. </productMenu>
  8969. <productMenu id="sip"
  8970. type="1" >
  8971. <productMenuType version="1.0"
  8972. type="0"
  8973. />
  8974. </productMenu>
  8975. <productMenu id="bluetoothIntercom"
  8976. type="1" >
  8977. <productMenuType version="1.0"
  8978. type="0"
  8979. />
  8980. </productMenu>
  8981. <productMenu id="intercomSetting"
  8982. type="1" >
  8983. </productMenu>
  8984. <productMenu id="phone"
  8985. type="2" >
  8986. </productMenu>
  8987. <productMenu id="fmradio"
  8988. type="3" >
  8989. </productMenu>
  8990. <productMenu id="deviceSetting"
  8991. type="1"
  8992. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8993. <productMenuURL version="2.0.2"
  8994. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8995. />
  8996. <productMenuURL version="1.5"
  8997. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8998. />
  8999. <productMenuURL version="1.4.1"
  9000. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9001. />
  9002. <productMenuURL version="1.1"
  9003. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9004. />
  9005. <productMenuURL version="1.0"
  9006. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9007. />
  9008. </productMenu>
  9009. <productMenu id="quickGuide"
  9010. type="0"
  9011. url=""
  9012. size="264KB" >
  9013. </productMenu>
  9014. <productMenu id="userGuide"
  9015. type="1"
  9016. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9017. size="3.09MB" >
  9018. </productMenu>
  9019. <productMenu id="connectGuide"
  9020. type="1"
  9021. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9022. size="1.12MB" >
  9023. </productMenu>
  9024. <productID id="4210"
  9025. />
  9026. <productProductKey key="16"
  9027. />
  9028. <productGroupable type="1"
  9029. />
  9030. </product>
  9031. <product id="10S"
  9032. name="10S"
  9033. series="10"
  9034. latestVersion="3.0.2"
  9035. show = "1" >
  9036. <productMenu id="protocol"
  9037. type="3" >
  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="1" >
  9047. </productMenu>
  9048. <productMenu id="deviceSetting"
  9049. type="1"
  9050. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9051. </productMenu>
  9052. <productMenu id="quickGuide"
  9053. type="1"
  9054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9055. size="934KB" >
  9056. </productMenu>
  9057. <productMenu id="userGuide"
  9058. type="1"
  9059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9060. size="1.14MB" >
  9061. </productMenu>
  9062. <productMenu id="connectGuide"
  9063. type="1"
  9064. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9065. size="1.12MB" >
  9066. </productMenu>
  9067. <productID id="3380"
  9068. />
  9069. <productGroupable type="0"
  9070. />
  9071. </product>
  9072. <product id="10S"
  9073. name="10S"
  9074. series="10"
  9075. latestVersion="2.1.1"
  9076. show = "-1" >
  9077. <productMenu id="protocol"
  9078. type="0">
  9079. </productMenu>
  9080. <productMenu id="sip"
  9081. type="1" >
  9082. </productMenu>
  9083. <productMenu id="bluetoothIntercom"
  9084. type="1" >
  9085. </productMenu>
  9086. <productMenu id="phone"
  9087. type="2" >
  9088. </productMenu>
  9089. <productMenu id="fmradio"
  9090. type="3" >
  9091. </productMenu>
  9092. <productMenu id="deviceSetting"
  9093. type="1"
  9094. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9095. <productMenuURL version="1.5"
  9096. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9097. />
  9098. <productMenuURL version="1.3.1"
  9099. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9100. />
  9101. </productMenu>
  9102. <productMenu id="quickGuide"
  9103. type="1"
  9104. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9105. size="310KB" >
  9106. </productMenu>
  9107. <productMenu id="userGuide"
  9108. type="1"
  9109. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9110. size="1.57MB" >
  9111. </productMenu>
  9112. <productID id="5530"
  9113. />
  9114. <productGroupable type="0"
  9115. />
  9116. </product>
  9117. <product id="Apex"
  9118. name="Apex"
  9119. series="Apex"
  9120. latestVersion="1.0"
  9121. latestVersionVoicePrompt="0.2"
  9122. show = "-1" >
  9123. <productMenu id="protocol"
  9124. type="2" >
  9125. </productMenu>
  9126. <productMenu id="warranty"
  9127. type="1" >
  9128. </productMenu>
  9129. <productMenu id="serialNumber"
  9130. type="1" >
  9131. </productMenu>
  9132. <productMenu id="ota"
  9133. type="2" >
  9134. <otaLanguages>
  9135. <otaLanguage
  9136. id="0"
  9137. name="English"
  9138. package="0"
  9139. />
  9140. <otaLanguage
  9141. id="0"
  9142. name="French"
  9143. package="1"
  9144. />
  9145. <otaLanguage
  9146. id="0"
  9147. name="Spanish"
  9148. package="2"
  9149. />
  9150. <otaLanguage
  9151. id="0"
  9152. name="Italian"
  9153. package="3"
  9154. />
  9155. <otaLanguage
  9156. id="0"
  9157. name="German"
  9158. package="4"
  9159. />
  9160. <otaLanguage
  9161. id="0"
  9162. name="Dutch"
  9163. package="5"
  9164. />
  9165. <otaLanguage
  9166. id="0"
  9167. name="Russian"
  9168. package="6"
  9169. />
  9170. <otaLanguage
  9171. id="0"
  9172. name="Chinese"
  9173. package="7"
  9174. />
  9175. <otaLanguage
  9176. id="0"
  9177. name="Korean"
  9178. package="8"
  9179. />
  9180. <otaLanguage
  9181. id="0"
  9182. name="Japanese"
  9183. package="9"
  9184. />
  9185. <otaLanguage
  9186. id="0"
  9187. name="Finnish"
  9188. package="10"
  9189. />
  9190. <otaLanguage
  9191. id="0"
  9192. name="Polish"
  9193. package="11"
  9194. />
  9195. </otaLanguages>
  9196. <otaPackages>
  9197. <package
  9198. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9199. size="5183988"
  9200. />
  9201. <package
  9202. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9203. size="5183988"
  9204. />
  9205. <package
  9206. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9207. size="5183988"
  9208. />
  9209. <package
  9210. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9211. size="5183988"
  9212. />
  9213. <package
  9214. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9215. size="5183988"
  9216. />
  9217. <package
  9218. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9219. size="5183988"
  9220. />
  9221. <package
  9222. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9223. size="5183988"
  9224. />
  9225. <package
  9226. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9227. size="5183988"
  9228. />
  9229. <package
  9230. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9231. size="5183988"
  9232. />
  9233. <package
  9234. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9235. size="5183988"
  9236. />
  9237. <package
  9238. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9239. size="5183988"
  9240. />
  9241. <package
  9242. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9243. size="5183988"
  9244. />
  9245. </otaPackages>
  9246. </productMenu>
  9247. <productMenu id="sip"
  9248. type="1" >
  9249. </productMenu>
  9250. <productMenu id="bluetoothIntercom"
  9251. type="1" >
  9252. </productMenu>
  9253. <productMenu id="phone"
  9254. type="1" >
  9255. </productMenu>
  9256. <productMenu id="music"
  9257. type="1" >
  9258. </productMenu>
  9259. <productMenu id="fmradio"
  9260. type="1"
  9261. url="1" >
  9262. </productMenu>
  9263. <productMenu id="deviceSetting"
  9264. type="1"
  9265. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9266. <productMenuURL version="1.0"
  9267. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9268. />
  9269. </productMenu>
  9270. <productMenu id="quickGuide"
  9271. type="0"
  9272. url=""
  9273. size="934KB" >
  9274. </productMenu>
  9275. <productMenu id="userGuide"
  9276. type="1"
  9277. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9278. size="1.14MB" >
  9279. </productMenu>
  9280. <productMenu id="volume+"
  9281. type="2"
  9282. url="0x0004" >
  9283. </productMenu>
  9284. <productMenu id="appearance"
  9285. type="1"
  9286. url="1|white,silver,black" >
  9287. </productMenu>
  9288. <productMenu id="battery"
  9289. type="1" >
  9290. </productMenu>
  9291. <productID id="3452"
  9292. />
  9293. <productGroupable type="0"
  9294. />
  9295. </product>
  9296. <product id="ApexPlus"
  9297. name="Apex Plus"
  9298. series="Apex"
  9299. latestVersion="1.0"
  9300. latestVersionVoicePrompt="0.2"
  9301. show = "-1" >
  9302. <productMenu id="protocol"
  9303. type="2" >
  9304. </productMenu>
  9305. <productMenu id="warranty"
  9306. type="1" >
  9307. </productMenu>
  9308. <productMenu id="serialNumber"
  9309. type="1" >
  9310. </productMenu>
  9311. <productMenu id="ota"
  9312. type="2" >
  9313. <otaLanguages>
  9314. <otaLanguage
  9315. id="0"
  9316. name="English"
  9317. package="0"
  9318. />
  9319. <otaLanguage
  9320. id="0"
  9321. name="French"
  9322. package="1"
  9323. />
  9324. <otaLanguage
  9325. id="0"
  9326. name="Spanish"
  9327. package="2"
  9328. />
  9329. <otaLanguage
  9330. id="0"
  9331. name="Italian"
  9332. package="3"
  9333. />
  9334. <otaLanguage
  9335. id="0"
  9336. name="German"
  9337. package="4"
  9338. />
  9339. <otaLanguage
  9340. id="0"
  9341. name="Dutch"
  9342. package="5"
  9343. />
  9344. <otaLanguage
  9345. id="0"
  9346. name="Russian"
  9347. package="6"
  9348. />
  9349. <otaLanguage
  9350. id="0"
  9351. name="Chinese"
  9352. package="7"
  9353. />
  9354. <otaLanguage
  9355. id="0"
  9356. name="Korean"
  9357. package="8"
  9358. />
  9359. <otaLanguage
  9360. id="0"
  9361. name="Japanese"
  9362. package="9"
  9363. />
  9364. <otaLanguage
  9365. id="0"
  9366. name="Finnish"
  9367. package="10"
  9368. />
  9369. <otaLanguage
  9370. id="0"
  9371. name="Polish"
  9372. package="11"
  9373. />
  9374. </otaLanguages>
  9375. <otaPackages>
  9376. <package
  9377. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9378. size="5183988"
  9379. />
  9380. <package
  9381. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9382. size="5183988"
  9383. />
  9384. <package
  9385. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9386. size="5183988"
  9387. />
  9388. <package
  9389. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9390. size="5183988"
  9391. />
  9392. <package
  9393. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9394. size="5183988"
  9395. />
  9396. <package
  9397. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9398. size="5183988"
  9399. />
  9400. <package
  9401. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9402. size="5183988"
  9403. />
  9404. <package
  9405. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9406. size="5183988"
  9407. />
  9408. <package
  9409. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9410. size="5183988"
  9411. />
  9412. <package
  9413. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9414. size="5183988"
  9415. />
  9416. <package
  9417. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9418. size="5183988"
  9419. />
  9420. <package
  9421. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9422. size="5183988"
  9423. />
  9424. </otaPackages>
  9425. </productMenu>
  9426. <productMenu id="sip"
  9427. type="1" >
  9428. </productMenu>
  9429. <productMenu id="bluetoothIntercom"
  9430. type="1" >
  9431. </productMenu>
  9432. <productMenu id="phone"
  9433. type="1" >
  9434. </productMenu>
  9435. <productMenu id="music"
  9436. type="1" >
  9437. </productMenu>
  9438. <productMenu id="fmradio"
  9439. type="1"
  9440. url="1" >
  9441. </productMenu>
  9442. <productMenu id="deviceSetting"
  9443. type="1"
  9444. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9445. <productMenuURL version="1.0"
  9446. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9447. />
  9448. </productMenu>
  9449. <productMenu id="quickGuide"
  9450. type="0"
  9451. url=""
  9452. size="934KB" >
  9453. </productMenu>
  9454. <productMenu id="userGuide"
  9455. type="1"
  9456. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9457. size="1.14MB" >
  9458. </productMenu>
  9459. <productMenu id="volume+"
  9460. type="2"
  9461. url="0x0004" >
  9462. </productMenu>
  9463. <productMenu id="appearance"
  9464. type="1"
  9465. url="1|white,silver,black" >
  9466. </productMenu>
  9467. <productMenu id="battery"
  9468. type="1" >
  9469. </productMenu>
  9470. <productID id="3453"
  9471. />
  9472. <productGroupable type="0"
  9473. />
  9474. </product>
  9475. <product id="10R2"
  9476. name="10R 2"
  9477. series="10"
  9478. latestVersion="0.9"
  9479. latestVersionVoicePrompt="1.1"
  9480. show = "-1" >
  9481. <productMenu id="protocol"
  9482. type="2" >
  9483. </productMenu>
  9484. <productMenu id="ota"
  9485. type="2" >
  9486. <otaPackages>
  9487. <package
  9488. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9489. size="2945812"
  9490. />
  9491. </otaPackages>
  9492. </productMenu>
  9493. <productMenu id="sip"
  9494. type="1" >
  9495. </productMenu>
  9496. <productMenu id="bluetoothIntercom"
  9497. type="1" >
  9498. </productMenu>
  9499. <productMenu id="phone"
  9500. type="1" >
  9501. </productMenu>
  9502. <productMenu id="music"
  9503. type="1" >
  9504. </productMenu>
  9505. <productMenu id="fmradio"
  9506. type="1"
  9507. url="1" >
  9508. </productMenu>
  9509. <productMenu id="deviceSetting"
  9510. type="1"
  9511. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9512. </productMenu>
  9513. <productMenu id="quickGuide"
  9514. type="1"
  9515. url=""
  9516. size="934KB" >
  9517. </productMenu>
  9518. <productMenu id="userGuide"
  9519. type="0"
  9520. url=""
  9521. size="1.14MB" >
  9522. </productMenu>
  9523. <productMenu id="volume"
  9524. type="15" >
  9525. </productMenu>
  9526. <productID id="4000"
  9527. />
  9528. <productGroupable type="0"
  9529. />
  9530. </product>
  9531. <product id="10R"
  9532. name="10R"
  9533. series="10"
  9534. latestVersion="2.1.1"
  9535. show = "1" >
  9536. <productMenu id="protocol"
  9537. type="0">
  9538. </productMenu>
  9539. <productMenu id="sip"
  9540. type="1" >
  9541. <productMenuType version="1.0.2"
  9542. type="0"
  9543. />
  9544. </productMenu>
  9545. <productMenu id="bluetoothIntercom"
  9546. type="1" >
  9547. <productMenuType version="1.0.2"
  9548. type="0"
  9549. />
  9550. </productMenu>
  9551. <productMenu id="phone"
  9552. type="2" >
  9553. </productMenu>
  9554. <productMenu id="fmradio"
  9555. type="3" >
  9556. </productMenu>
  9557. <productMenu id="deviceSetting"
  9558. type="1"
  9559. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9560. <productMenuURL version="1.4"
  9561. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9562. />
  9563. <productMenuURL version="1.2.1"
  9564. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9565. />
  9566. <productMenuURL version="1.0.2"
  9567. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9568. />
  9569. <productMenuURL version="1.0"
  9570. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9571. />
  9572. </productMenu>
  9573. <productMenu id="quickGuide"
  9574. type="1"
  9575. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9576. size="400KB" >
  9577. </productMenu>
  9578. <productMenu id="userGuide"
  9579. type="1"
  9580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9581. size="2.75MB" >
  9582. </productMenu>
  9583. <productMenu id="connectGuide"
  9584. type="1"
  9585. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9586. size="1.12MB" >
  9587. </productMenu>
  9588. <productID id="5520"
  9589. />
  9590. <productGroupable type="0"
  9591. />
  9592. </product>
  9593. <product id="10C_EVO"
  9594. name="10C EVO"
  9595. series="10"
  9596. latestVersion="1.7"
  9597. show = "1" >
  9598. <productMenu id="protocol"
  9599. type="0">
  9600. </productMenu>
  9601. <productMenu id="sip"
  9602. type="1" >
  9603. </productMenu>
  9604. <productMenu id="bluetoothIntercom"
  9605. type="1" >
  9606. </productMenu>
  9607. <productMenu id="phone"
  9608. type="2" >
  9609. </productMenu>
  9610. <productMenu id="fmradio"
  9611. type="3" >
  9612. </productMenu>
  9613. <productMenu id="deviceSetting"
  9614. type="1"
  9615. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9616. <productMenuURL version="1.3.1"
  9617. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9618. />
  9619. </productMenu>
  9620. <productMenu id="quickGuide"
  9621. type="1"
  9622. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9623. size="1.32MB" >
  9624. </productMenu>
  9625. <productMenu id="userGuide"
  9626. type="1"
  9627. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9628. size="1.68MB" >
  9629. </productMenu>
  9630. <productMenu id="connectGuide"
  9631. type="1"
  9632. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9633. size="1.12MB" >
  9634. </productMenu>
  9635. <productID id="5570"
  9636. />
  9637. <productGroupable type="0"
  9638. />
  9639. </product>
  9640. <product id="10C_Pro"
  9641. name="10C Pro"
  9642. series="10"
  9643. latestVersion="2.7.1"
  9644. show = "1" >
  9645. <productMenu id="protocol"
  9646. type="0">
  9647. </productMenu>
  9648. <productMenu id="sip"
  9649. type="1" >
  9650. </productMenu>
  9651. <productMenu id="bluetoothIntercom"
  9652. type="1" >
  9653. </productMenu>
  9654. <productMenu id="phone"
  9655. type="2" >
  9656. </productMenu>
  9657. <productMenu id="fmradio"
  9658. type="3" >
  9659. </productMenu>
  9660. <productMenu id="deviceSetting"
  9661. type="1"
  9662. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9663. <productMenuURL version="2.5.1"
  9664. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9665. />
  9666. <productMenuURL version="1.0"
  9667. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9668. />
  9669. </productMenu>
  9670. <productMenu id="quickGuide"
  9671. type="1"
  9672. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9673. size="651KB" >
  9674. </productMenu>
  9675. <productMenu id="userGuide"
  9676. type="1"
  9677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9678. size="2.34MB" >
  9679. </productMenu>
  9680. <productMenu id="connectGuide"
  9681. type="1"
  9682. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9683. size="1.12MB" >
  9684. </productMenu>
  9685. <productID id="5580"
  9686. />
  9687. <productGroupable type="0"
  9688. />
  9689. </product>
  9690. <product id="10C"
  9691. name="10C"
  9692. series="10"
  9693. latestVersion="3.0.4"
  9694. show = "1" >
  9695. <productMenu id="protocol"
  9696. type="0">
  9697. </productMenu>
  9698. <productMenu id="sip"
  9699. type="1" >
  9700. <productMenuType version="1.0.4"
  9701. type="0"
  9702. />
  9703. </productMenu>
  9704. <productMenu id="bluetoothIntercom"
  9705. type="1" >
  9706. <productMenuType version="1.0.4"
  9707. type="0"
  9708. />
  9709. </productMenu>
  9710. <productMenu id="phone"
  9711. type="2" >
  9712. </productMenu>
  9713. <productMenu id="fmradio"
  9714. type="3" >
  9715. </productMenu>
  9716. <productMenu id="deviceSetting"
  9717. type="1"
  9718. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9719. <productMenuURL version="2.3"
  9720. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9721. />
  9722. <productMenuURL version="2.1.1"
  9723. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9724. />
  9725. <productMenuURL version="1.0.4"
  9726. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9727. />
  9728. <productMenuURL version="1.0.2"
  9729. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9730. />
  9731. </productMenu>
  9732. <productMenu id="quickGuide"
  9733. type="1"
  9734. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9735. size="935KB" >
  9736. </productMenu>
  9737. <productMenu id="userGuide"
  9738. type="1"
  9739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9740. size="2.82MB" >
  9741. </productMenu>
  9742. <productMenu id="connectGuide"
  9743. type="1"
  9744. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9745. size="1.12MB" >
  9746. </productMenu>
  9747. <productID id="5510"
  9748. />
  9749. <productGroupable type="0"
  9750. />
  9751. </product>
  9752. <product id="10U_GT_AIR"
  9753. name="10U GT-Air"
  9754. series="10"
  9755. latestVersion="2.0.4"
  9756. show = "1" >
  9757. <productMenu id="protocol"
  9758. type="0">
  9759. </productMenu>
  9760. <productMenu id="sip"
  9761. type="1" >
  9762. <productMenuType version="1.0.2"
  9763. type="0"
  9764. />
  9765. </productMenu>
  9766. <productMenu id="bluetoothIntercom"
  9767. type="1" >
  9768. <productMenuType version="1.0.2"
  9769. type="0"
  9770. />
  9771. </productMenu>
  9772. <productMenu id="phone"
  9773. type="2" >
  9774. </productMenu>
  9775. <productMenu id="fmradio"
  9776. type="3" >
  9777. </productMenu>
  9778. <productMenu id="deviceSetting"
  9779. type="1"
  9780. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9781. <productMenuURL version="1.3.2"
  9782. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9783. />
  9784. <productMenuURL version="1.0.2"
  9785. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9786. />
  9787. </productMenu>
  9788. <productMenu id="quickGuide"
  9789. type="1"
  9790. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9791. size="685KB" >
  9792. </productMenu>
  9793. <productMenu id="userGuide"
  9794. type="1"
  9795. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9796. size="684KB" >
  9797. </productMenu>
  9798. <productMenu id="connectGuide"
  9799. type="1"
  9800. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9801. size="1.12MB" >
  9802. </productMenu>
  9803. <productID id="5610"
  9804. />
  9805. <productGroupable type="0"
  9806. />
  9807. </product>
  9808. <product id="10U_NEOTEC"
  9809. name="10U Neotec"
  9810. series="10"
  9811. latestVersion="2.0.4"
  9812. show = "1" >
  9813. <productMenu id="protocol"
  9814. type="0">
  9815. </productMenu>
  9816. <productMenu id="sip"
  9817. type="1" >
  9818. <productMenuType version="1.0.2"
  9819. type="0"
  9820. />
  9821. </productMenu>
  9822. <productMenu id="bluetoothIntercom"
  9823. type="1" >
  9824. <productMenuType version="1.0.2"
  9825. type="0"
  9826. />
  9827. </productMenu>
  9828. <productMenu id="phone"
  9829. type="2" >
  9830. </productMenu>
  9831. <productMenu id="fmradio"
  9832. type="3" >
  9833. </productMenu>
  9834. <productMenu id="deviceSetting"
  9835. type="1"
  9836. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9837. <productMenuURL version="1.3.2"
  9838. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9839. />
  9840. <productMenuURL version="1.0.2"
  9841. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9842. />
  9843. </productMenu>
  9844. <productMenu id="quickGuide"
  9845. type="1"
  9846. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9847. size="689KB" >
  9848. </productMenu>
  9849. <productMenu id="userGuide"
  9850. type="1"
  9851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9852. size="684KB" >
  9853. </productMenu>
  9854. <productMenu id="connectGuide"
  9855. type="1"
  9856. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9857. size="1.12MB" >
  9858. </productMenu>
  9859. <productID id="5611"
  9860. />
  9861. <productGroupable type="0"
  9862. />
  9863. </product>
  9864. <product id="10U_J_CRUISE"
  9865. name="10U J-Cruise"
  9866. series="10"
  9867. latestVersion="2.0.4"
  9868. show = "1" >
  9869. <productMenu id="protocol"
  9870. type="0">
  9871. </productMenu>
  9872. <productMenu id="sip"
  9873. type="1" >
  9874. <productMenuType version="1.0.2"
  9875. type="0"
  9876. />
  9877. </productMenu>
  9878. <productMenu id="bluetoothIntercom"
  9879. type="1" >
  9880. <productMenuType version="1.0.2"
  9881. type="0"
  9882. />
  9883. </productMenu>
  9884. <productMenu id="phone"
  9885. type="2" >
  9886. </productMenu>
  9887. <productMenu id="fmradio"
  9888. type="3" >
  9889. </productMenu>
  9890. <productMenu id="deviceSetting"
  9891. type="1"
  9892. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9893. <productMenuURL version="1.3.2"
  9894. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9895. />
  9896. <productMenuURL version="1.0.2"
  9897. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9898. />
  9899. </productMenu>
  9900. <productMenu id="quickGuide"
  9901. type="1"
  9902. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9903. size="686KB" >
  9904. </productMenu>
  9905. <productMenu id="userGuide"
  9906. type="1"
  9907. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9908. size="684KB" >
  9909. </productMenu>
  9910. <productMenu id="connectGuide"
  9911. type="1"
  9912. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9913. size="1.12MB" >
  9914. </productMenu>
  9915. <productID id="5612"
  9916. />
  9917. <productGroupable type="0"
  9918. />
  9919. </product>
  9920. <product id="10U_C3"
  9921. name="10U C3/C3Pro"
  9922. series="10"
  9923. latestVersion="2.0.4"
  9924. show = "1" >
  9925. <productMenu id="protocol"
  9926. type="0">
  9927. </productMenu>
  9928. <productMenu id="sip"
  9929. type="1" >
  9930. <productMenuType version="1.0.2"
  9931. type="0"
  9932. />
  9933. </productMenu>
  9934. <productMenu id="bluetoothIntercom"
  9935. type="1" >
  9936. <productMenuType version="1.0.2"
  9937. type="0"
  9938. />
  9939. </productMenu>
  9940. <productMenu id="phone"
  9941. type="2" >
  9942. </productMenu>
  9943. <productMenu id="fmradio"
  9944. type="3" >
  9945. </productMenu>
  9946. <productMenu id="deviceSetting"
  9947. type="1"
  9948. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9949. <productMenuURL version="1.3.2"
  9950. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9951. />
  9952. <productMenuURL version="1.0.2"
  9953. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9954. />
  9955. </productMenu>
  9956. <productMenu id="quickGuide"
  9957. type="1"
  9958. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9959. size="199KB" >
  9960. </productMenu>
  9961. <productMenu id="userGuide"
  9962. type="1"
  9963. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9964. size="684KB" >
  9965. </productMenu>
  9966. <productMenu id="connectGuide"
  9967. type="1"
  9968. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9969. size="1.12MB" >
  9970. </productMenu>
  9971. <productID id="5620"
  9972. />
  9973. <productGroupable type="0"
  9974. />
  9975. </product>
  9976. <product id="10U_ARAI"
  9977. name="10U Arai"
  9978. series="10"
  9979. latestVersion="2.0.4"
  9980. show = "1" >
  9981. <productMenu id="protocol"
  9982. type="0">
  9983. </productMenu>
  9984. <productMenu id="sip"
  9985. type="1" >
  9986. <productMenuType version="1.0.2"
  9987. type="0"
  9988. />
  9989. </productMenu>
  9990. <productMenu id="bluetoothIntercom"
  9991. type="1" >
  9992. <productMenuType version="1.0.2"
  9993. type="0"
  9994. />
  9995. </productMenu>
  9996. <productMenu id="phone"
  9997. type="2" >
  9998. </productMenu>
  9999. <productMenu id="fmradio"
  10000. type="3" >
  10001. </productMenu>
  10002. <productMenu id="deviceSetting"
  10003. type="1"
  10004. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10005. <productMenuURL version="1.3.2"
  10006. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10007. />
  10008. <productMenuURL version="1.0.2"
  10009. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10010. />
  10011. </productMenu>
  10012. <productMenu id="quickGuide"
  10013. type="1"
  10014. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10015. size="689KB" >
  10016. </productMenu>
  10017. <productMenu id="userGuide"
  10018. type="1"
  10019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10020. size="684KB" >
  10021. </productMenu>
  10022. <productMenu id="connectGuide"
  10023. type="1"
  10024. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10025. size="1.12MB" >
  10026. </productMenu>
  10027. <productID id="5621"
  10028. />
  10029. <productGroupable type="0"
  10030. />
  10031. </product>
  10032. <product id="10Upad"
  10033. name="10Upad"
  10034. series="10"
  10035. latestVersion="2.0.3"
  10036. show = "1" >
  10037. <productMenu id="protocol"
  10038. type="0">
  10039. </productMenu>
  10040. <productMenu id="sip"
  10041. type="1" >
  10042. </productMenu>
  10043. <productMenu id="bluetoothIntercom"
  10044. type="1" >
  10045. </productMenu>
  10046. <productMenu id="phone"
  10047. type="2" >
  10048. </productMenu>
  10049. <productMenu id="fmradio"
  10050. type="3" >
  10051. </productMenu>
  10052. <productMenu id="deviceSetting"
  10053. type="1"
  10054. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10055. <productMenuURL version="1.0.3"
  10056. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10057. />
  10058. </productMenu>
  10059. <productMenu id="quickGuide"
  10060. type="1"
  10061. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10062. size="615KB" >
  10063. </productMenu>
  10064. <productMenu id="userGuide"
  10065. type="1"
  10066. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10067. size="0.99MB" >
  10068. </productMenu>
  10069. <productMenu id="connectGuide"
  10070. type="1"
  10071. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10072. size="1.12MB" >
  10073. </productMenu>
  10074. <productID id="6210"
  10075. />
  10076. <productGroupable type="0"
  10077. />
  10078. </product>
  10079. <product id="5S"
  10080. name="5S"
  10081. series="5"
  10082. latestVersion="2.3.1"
  10083. show = "1" >
  10084. <productMenu id="protocol"
  10085. type="3" >
  10086. </productMenu>
  10087. <productMenu id="sip"
  10088. type="1" >
  10089. </productMenu>
  10090. <productMenu id="bluetoothIntercom"
  10091. type="1" >
  10092. </productMenu>
  10093. <productMenu id="phone"
  10094. type="1" >
  10095. </productMenu>
  10096. <productMenu id="fmradio"
  10097. type="0" >
  10098. </productMenu>
  10099. <productMenu id="deviceSetting"
  10100. type="1"
  10101. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10102. </productMenu>
  10103. <productMenu id="quickGuide"
  10104. type="0"
  10105. url=""
  10106. size="934KB" >
  10107. </productMenu>
  10108. <productMenu id="userGuide"
  10109. type="1"
  10110. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10111. size="1.14MB" >
  10112. </productMenu>
  10113. <productMenu id="connectGuide"
  10114. type="1"
  10115. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10116. size="1.12MB" >
  10117. </productMenu>
  10118. <productID id="5590"
  10119. />
  10120. <productGroupable type="0"
  10121. />
  10122. </product>
  10123. <product id="5S"
  10124. name="5S"
  10125. series="5"
  10126. latestVersion="1.2"
  10127. show = "-1" >
  10128. <productMenu id="protocol"
  10129. type="0">
  10130. </productMenu>
  10131. <productMenu id="sip"
  10132. type="1" >
  10133. </productMenu>
  10134. <productMenu id="bluetoothIntercom"
  10135. type="1" >
  10136. </productMenu>
  10137. <productMenu id="phone"
  10138. type="2" >
  10139. </productMenu>
  10140. <productMenu id="fmradio"
  10141. type="3" >
  10142. </productMenu>
  10143. <productMenu id="deviceSetting"
  10144. type="1"
  10145. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10146. </productMenu>
  10147. <productMenu id="quickGuide"
  10148. type="0"
  10149. url=""
  10150. size="970KB" >
  10151. </productMenu>
  10152. <productMenu id="userGuide"
  10153. type="1"
  10154. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10155. size="1.26MB" >
  10156. </productMenu>
  10157. <productID id="5534"
  10158. />
  10159. <productGroupable type="0"
  10160. />
  10161. </product>
  10162. <product id="5S"
  10163. name="5S"
  10164. series="5"
  10165. latestVersion="3.0.1"
  10166. show = "-1" >
  10167. <productMenu id="protocol"
  10168. type="0">
  10169. </productMenu>
  10170. <productMenu id="sip"
  10171. type="1" >
  10172. </productMenu>
  10173. <productMenu id="bluetoothIntercom"
  10174. type="1" >
  10175. </productMenu>
  10176. <productMenu id="phone"
  10177. type="2" >
  10178. </productMenu>
  10179. <productMenu id="fmradio"
  10180. type="0" >
  10181. </productMenu>
  10182. <productMenu id="deviceSetting"
  10183. type="1"
  10184. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10185. </productMenu>
  10186. <productMenu id="quickGuide"
  10187. type="0"
  10188. url=""
  10189. size="970KB" >
  10190. </productMenu>
  10191. <productMenu id="userGuide"
  10192. type="1"
  10193. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10194. size="1.26MB" >
  10195. </productMenu>
  10196. <productID id="5538"
  10197. />
  10198. <productGroupable type="0"
  10199. />
  10200. </product>
  10201. <product id="3SPLUS"
  10202. name="3S PLUS"
  10203. series="3"
  10204. latestVersion="2.2"
  10205. show = "1" >
  10206. <productMenu id="protocol"
  10207. type="3" >
  10208. </productMenu>
  10209. <productMenu id="sip"
  10210. type="1" >
  10211. </productMenu>
  10212. <productMenu id="bluetoothIntercom"
  10213. type="1" >
  10214. </productMenu>
  10215. <productMenu id="deviceSetting"
  10216. type="1"
  10217. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10218. <productMenuURL version="2.2.1"
  10219. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10220. />
  10221. </productMenu>
  10222. <productMenu id="quickGuide"
  10223. type="1"
  10224. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10225. size="344KB" >
  10226. </productMenu>
  10227. <productMenu id="userGuide"
  10228. type="1"
  10229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10230. size="1.14MB" >
  10231. </productMenu>
  10232. <productMenu id="connectGuide"
  10233. type="1"
  10234. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10235. size="1.12MB" >
  10236. </productMenu>
  10237. <productID id="4023"
  10238. />
  10239. <productGroupable type="0"
  10240. />
  10241. </product>
  10242. <product id="3SPLUS"
  10243. name="3S PLUS"
  10244. series="3"
  10245. latestVersion="1.1"
  10246. show = "-1" >
  10247. <productMenu id="protocol"
  10248. type="0">
  10249. </productMenu>
  10250. <productMenu id="sip"
  10251. type="1" >
  10252. </productMenu>
  10253. <productMenu id="bluetoothIntercom"
  10254. type="1" >
  10255. </productMenu>
  10256. <productMenu id="deviceSetting"
  10257. type="1"
  10258. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10259. </productMenu>
  10260. <productMenu id="quickGuide"
  10261. type="1"
  10262. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10263. size="842KB" >
  10264. </productMenu>
  10265. <productMenu id="userGuide"
  10266. type="1"
  10267. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10268. size="1.02MB" >
  10269. </productMenu>
  10270. <productID id="6320"
  10271. />
  10272. <productGroupable type="0"
  10273. />
  10274. </product>
  10275. <product id="AConnect"
  10276. name="Alpinestars A-Connect"
  10277. series="60"
  10278. latestVersion="1.0.2"
  10279. latestVersionMesh="0.19"
  10280. latestVersionVoicePrompt="1.6"
  10281. show = "-1" >
  10282. <productMenu id="protocol"
  10283. type="2" >
  10284. </productMenu>
  10285. <productMenu id="ota"
  10286. type="2" >
  10287. <otaLanguages>
  10288. <otaLanguage
  10289. id="0"
  10290. name="English"
  10291. package="0"
  10292. />
  10293. <otaLanguage
  10294. id="0"
  10295. name="French"
  10296. package="1"
  10297. />
  10298. <otaLanguage
  10299. id="0"
  10300. name="Spanish"
  10301. package="2"
  10302. />
  10303. <otaLanguage
  10304. id="0"
  10305. name="Italian"
  10306. package="3"
  10307. />
  10308. <otaLanguage
  10309. id="0"
  10310. name="German"
  10311. package="4"
  10312. />
  10313. <otaLanguage
  10314. id="0"
  10315. name="Dutch"
  10316. package="5"
  10317. />
  10318. <otaLanguage
  10319. id="0"
  10320. name="Russian"
  10321. package="6"
  10322. />
  10323. <otaLanguage
  10324. id="0"
  10325. name="Chinese"
  10326. package="7"
  10327. />
  10328. <otaLanguage
  10329. id="0"
  10330. name="Korean"
  10331. package="8"
  10332. />
  10333. <otaLanguage
  10334. id="0"
  10335. name="Japanese"
  10336. package="9"
  10337. />
  10338. <otaLanguage
  10339. id="0"
  10340. name="Finnish"
  10341. package="10"
  10342. />
  10343. <otaLanguage
  10344. id="0"
  10345. name="Polish"
  10346. package="11"
  10347. />
  10348. </otaLanguages>
  10349. <otaPackages>
  10350. <package
  10351. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10352. size="5183988"
  10353. />
  10354. <package
  10355. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10356. size="5183988"
  10357. />
  10358. <package
  10359. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10360. size="5183988"
  10361. />
  10362. <package
  10363. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10364. size="5183988"
  10365. />
  10366. <package
  10367. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10368. size="5183988"
  10369. />
  10370. <package
  10371. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10372. size="5183988"
  10373. />
  10374. <package
  10375. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10376. size="5183988"
  10377. />
  10378. <package
  10379. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10380. size="5183988"
  10381. />
  10382. <package
  10383. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10384. size="5183988"
  10385. />
  10386. <package
  10387. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10388. size="5183988"
  10389. />
  10390. <package
  10391. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10392. size="5183988"
  10393. />
  10394. <package
  10395. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10396. size="5183988"
  10397. />
  10398. </otaPackages>
  10399. </productMenu>
  10400. <productMenu id="sip"
  10401. type="1" >
  10402. </productMenu>
  10403. <productMenu id="illusion"
  10404. type="0" >
  10405. </productMenu>
  10406. <productMenu id="meshIntercom+"
  10407. type="3"
  10408. url="2" >
  10409. </productMenu>
  10410. <productMenu id="waveIntercom"
  10411. type="1" >
  10412. </productMenu>
  10413. <productMenu id="bluetoothIntercom"
  10414. type="1"
  10415. url="2" >
  10416. </productMenu>
  10417. <productMenu id="bluetoothIntercomGrouping"
  10418. type="0" >
  10419. </productMenu>
  10420. <productMenu id="fmradio"
  10421. type="1"
  10422. url="1" >
  10423. </productMenu>
  10424. <productMenu id="phone"
  10425. type="1" >
  10426. </productMenu>
  10427. <productMenu id="music"
  10428. type="1" >
  10429. </productMenu>
  10430. <productMenu id="musicSharing"
  10431. type="0" >
  10432. </productMenu>
  10433. <productMenu id="deviceSetting"
  10434. type="1"
  10435. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10436. </productMenu>
  10437. <productMenu id="quickGuide"
  10438. type="0"
  10439. url=""
  10440. size="1.12MB" >
  10441. </productMenu>
  10442. <productMenu id="userGuide"
  10443. type="1"
  10444. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10445. size="2.0MB" >
  10446. </productMenu>
  10447. <productMenu id="videoGuide"
  10448. type="0"
  10449. url=""
  10450. size="3.41MB" >
  10451. </productMenu>
  10452. <productMenu id="volume"
  10453. type="16" >
  10454. </productMenu>
  10455. <productMenu id="volume+"
  10456. type="2"
  10457. url="0x6004" >
  10458. </productMenu>
  10459. <productMenu id="soundMode"
  10460. type="0" >
  10461. </productMenu>
  10462. <productMenu id="battery"
  10463. type="1" >
  10464. </productMenu>
  10465. <productID id="6A82"
  10466. />
  10467. <productGroupable type="0"
  10468. />
  10469. </product>
  10470. <product id="iCon"
  10471. name="iCon"
  10472. series="50"
  10473. latestVersion="1.2"
  10474. show = "0" >
  10475. <productMenu id="protocol"
  10476. type="2" >
  10477. </productMenu>
  10478. <productMenu id="alexa"
  10479. type="0" >
  10480. </productMenu>
  10481. <productMenu id="wa"
  10482. type="0" >
  10483. </productMenu>
  10484. <productMenu id="sip"
  10485. type="1" >
  10486. </productMenu>
  10487. <productMenu id="led"
  10488. type="3" >
  10489. </productMenu>
  10490. <productMenu id="meshIntercom"
  10491. type="20" >
  10492. </productMenu>
  10493. <productMenu id="meshIntercom+"
  10494. type="3"
  10495. url="0" >
  10496. <productMenuType version="1.0.9"
  10497. type="2"
  10498. />
  10499. </productMenu>
  10500. <productMenu id="bluetoothIntercom"
  10501. type="1" >
  10502. </productMenu>
  10503. <productMenu id="phone"
  10504. type="1" >
  10505. </productMenu>
  10506. <productMenu id="music"
  10507. type="1" >
  10508. </productMenu>
  10509. <productMenu id="fmradio"
  10510. type="1" >
  10511. </productMenu>
  10512. <productMenu id="deviceSetting"
  10513. type="1"
  10514. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10515. <productMenuURL version="1.0.9"
  10516. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10517. />
  10518. </productMenu>
  10519. <productMenu id="quickGuide"
  10520. type="1"
  10521. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10522. size="344KB" >
  10523. </productMenu>
  10524. <productMenu id="userGuide"
  10525. type="1"
  10526. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10527. size="3.41MB" >
  10528. </productMenu>
  10529. <productMenu id="volume"
  10530. type="11" >
  10531. </productMenu>
  10532. <productMenu id="battery"
  10533. type="1" >
  10534. </productMenu>
  10535. <productID id="3900"
  10536. />
  10537. <productGroupable type="0"
  10538. />
  10539. </product>
  10540. <product id="ICONHelmLinkSL"
  10541. name="ICON HelmLink SL"
  10542. series="50"
  10543. latestVersion="1.0"
  10544. latestVersionVoicePrompt="1.6"
  10545. show = "-1" >
  10546. <productMenu id="protocol"
  10547. type="2" >
  10548. </productMenu>
  10549. <productMenu id="alexa"
  10550. type="0" >
  10551. </productMenu>
  10552. <productMenu id="ota"
  10553. type="2" >
  10554. <otaPackages>
  10555. <package
  10556. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10557. size="2945812"
  10558. />
  10559. </otaPackages>
  10560. </productMenu>
  10561. <productMenu id="wa"
  10562. type="0" >
  10563. </productMenu>
  10564. <productMenu id="meshIntercom"
  10565. type="30" >
  10566. </productMenu>
  10567. <productMenu id="meshIntercom+"
  10568. type="3"
  10569. url="2" >
  10570. </productMenu>
  10571. <productMenu id="waveIntercom"
  10572. type="1" >
  10573. </productMenu>
  10574. <productMenu id="phone"
  10575. type="1" >
  10576. </productMenu>
  10577. <productMenu id="music"
  10578. type="1" >
  10579. </productMenu>
  10580. <productMenu id="musicSharing"
  10581. type="0" >
  10582. </productMenu>
  10583. <productMenu id="deviceSetting"
  10584. type="1"
  10585. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10586. </productMenu>
  10587. <productMenu id="quickGuide"
  10588. type="0"
  10589. url=""
  10590. size="1.12MB" >
  10591. </productMenu>
  10592. <productMenu id="userGuide"
  10593. type="1"
  10594. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10595. size="2.0MB" >
  10596. </productMenu>
  10597. <productMenu id="volume"
  10598. type="12" >
  10599. </productMenu>
  10600. <productMenu id="battery"
  10601. type="1" >
  10602. </productMenu>
  10603. <productID id="6842"
  10604. />
  10605. <productGroupable type="0"
  10606. />
  10607. </product>
  10608. <product id="HD50S"
  10609. name="H-D Audio 50S"
  10610. series="50"
  10611. latestVersion="1.0.1"
  10612. show = "-1" >
  10613. <productMenu id="protocol"
  10614. type="2" >
  10615. </productMenu>
  10616. <productMenu id="alexa"
  10617. type="0" >
  10618. </productMenu>
  10619. <productMenu id="ota"
  10620. type="0"
  10621. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10622. size="1150234" >
  10623. </productMenu>
  10624. <productMenu id="wa"
  10625. type="1" >
  10626. </productMenu>
  10627. <productMenu id="sip"
  10628. type="1" >
  10629. </productMenu>
  10630. <productMenu id="meshIntercom"
  10631. type="20" >
  10632. </productMenu>
  10633. <productMenu id="meshIntercom+"
  10634. type="3"
  10635. url="0" >
  10636. <productMenuType version="1.0.9"
  10637. type="2"
  10638. />
  10639. </productMenu>
  10640. <productMenu id="bluetoothIntercom"
  10641. type="1" >
  10642. </productMenu>
  10643. <productMenu id="phone"
  10644. type="1" >
  10645. </productMenu>
  10646. <productMenu id="music"
  10647. type="1" >
  10648. </productMenu>
  10649. <productMenu id="fmradio"
  10650. type="1" >
  10651. </productMenu>
  10652. <productMenu id="deviceSetting"
  10653. type="1"
  10654. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10655. <productMenuURL version="1.0.9"
  10656. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10657. />
  10658. </productMenu>
  10659. <productMenu id="quickGuide"
  10660. type="1"
  10661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10662. size="934KB" >
  10663. </productMenu>
  10664. <productMenu id="userGuide"
  10665. type="1"
  10666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10667. size="1.14MB" >
  10668. </productMenu>
  10669. <productMenu id="volume"
  10670. type="11" >
  10671. </productMenu>
  10672. <productMenu id="battery"
  10673. type="1" >
  10674. </productMenu>
  10675. <productID id="3156"
  10676. />
  10677. <productGroupable type="0"
  10678. />
  10679. </product>
  10680. <product id="HD50S"
  10681. name="H-D Audio 50S"
  10682. series="50"
  10683. latestVersion="2.0.2"
  10684. show = "0" >
  10685. <productMenu id="protocol"
  10686. type="2" >
  10687. </productMenu>
  10688. <productMenu id="alexa"
  10689. type="0" >
  10690. </productMenu>
  10691. <productMenu id="ota"
  10692. type="0"
  10693. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10694. size="1150234" >
  10695. </productMenu>
  10696. <productMenu id="wa"
  10697. type="1" >
  10698. </productMenu>
  10699. <productMenu id="sip"
  10700. type="1" >
  10701. </productMenu>
  10702. <productMenu id="meshIntercom"
  10703. type="20" >
  10704. </productMenu>
  10705. <productMenu id="meshIntercom+"
  10706. type="3"
  10707. url="0" >
  10708. <productMenuType version="2.0.9"
  10709. type="2"
  10710. />
  10711. </productMenu>
  10712. <productMenu id="bluetoothIntercom"
  10713. type="1" >
  10714. </productMenu>
  10715. <productMenu id="phone"
  10716. type="1" >
  10717. </productMenu>
  10718. <productMenu id="music"
  10719. type="1" >
  10720. </productMenu>
  10721. <productMenu id="fmradio"
  10722. type="1" >
  10723. </productMenu>
  10724. <productMenu id="deviceSetting"
  10725. type="1"
  10726. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10727. <productMenuURL version="2.0.9"
  10728. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10729. />
  10730. </productMenu>
  10731. <productMenu id="quickGuide"
  10732. type="1"
  10733. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10734. size="934KB" >
  10735. </productMenu>
  10736. <productMenu id="userGuide"
  10737. type="1"
  10738. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10739. size="1.14MB" >
  10740. </productMenu>
  10741. <productMenu id="volume"
  10742. type="11" >
  10743. </productMenu>
  10744. <productMenu id="battery"
  10745. type="1" >
  10746. </productMenu>
  10747. <productID id="3213"
  10748. />
  10749. <productGroupable type="0"
  10750. />
  10751. </product>
  10752. <product id="HD50C"
  10753. name="H-D Audio 50C"
  10754. series="50"
  10755. latestVersion="1.0.1"
  10756. show = "0" >
  10757. <productMenu id="protocol"
  10758. type="2" >
  10759. </productMenu>
  10760. <productMenu id="ota"
  10761. type="0" >
  10762. </productMenu>
  10763. <productMenu id="wa"
  10764. type="1" >
  10765. </productMenu>
  10766. <productMenu id="sip"
  10767. type="1" >
  10768. </productMenu>
  10769. <productMenu id="meshIntercom"
  10770. type="20" >
  10771. </productMenu>
  10772. <productMenu id="meshIntercom+"
  10773. type="3"
  10774. url="0" >
  10775. <productMenuType version="1.0.9"
  10776. type="2"
  10777. />
  10778. </productMenu>
  10779. <productMenu id="bluetoothIntercom"
  10780. type="1" >
  10781. </productMenu>
  10782. <productMenu id="phone"
  10783. type="1" >
  10784. </productMenu>
  10785. <productMenu id="music"
  10786. type="1" >
  10787. </productMenu>
  10788. <productMenu id="fmradio"
  10789. type="1" >
  10790. </productMenu>
  10791. <productMenu id="deviceSetting"
  10792. type="1"
  10793. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10794. <productMenuURL version="1.0.9"
  10795. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10796. />
  10797. </productMenu>
  10798. <productMenu id="quickGuide"
  10799. type="1"
  10800. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10801. size="344KB" >
  10802. </productMenu>
  10803. <productMenu id="userGuide"
  10804. type="1"
  10805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10806. size="3.41MB" >
  10807. </productMenu>
  10808. <productMenu id="volume"
  10809. type="11" >
  10810. </productMenu>
  10811. <productMenu id="battery"
  10812. type="1" >
  10813. </productMenu>
  10814. <productID id="3240"
  10815. />
  10816. <productGroupable type="0"
  10817. />
  10818. </product>
  10819. <product id="HD50S"
  10820. name="FURY N04"
  10821. series="Helmet"
  10822. latestVersion="1.0"
  10823. show = "0" >
  10824. <productMenu id="protocol"
  10825. type="2" >
  10826. </productMenu>
  10827. <productMenu id="alexa"
  10828. type="0" >
  10829. </productMenu>
  10830. <productMenu id="ota"
  10831. type="0" >
  10832. </productMenu>
  10833. <productMenu id="wa"
  10834. type="0" >
  10835. </productMenu>
  10836. <productMenu id="meshIntercom"
  10837. type="20" >
  10838. </productMenu>
  10839. <productMenu id="meshIntercom+"
  10840. type="3"
  10841. url="0" >
  10842. <productMenuType version="1.0.9"
  10843. type="2"
  10844. />
  10845. </productMenu>
  10846. <productMenu id="phone"
  10847. type="1" >
  10848. </productMenu>
  10849. <productMenu id="music"
  10850. type="1" >
  10851. </productMenu>
  10852. <productMenu id="fmradio"
  10853. type="1" >
  10854. </productMenu>
  10855. <productMenu id="deviceSetting"
  10856. type="1"
  10857. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10858. <productMenuURL version="1.0.9"
  10859. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10860. />
  10861. </productMenu>
  10862. <productMenu id="quickGuide"
  10863. type="1"
  10864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10865. size="1.12MB" >
  10866. </productMenu>
  10867. <productMenu id="userGuide"
  10868. type="1"
  10869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10870. size="2.0MB" >
  10871. </productMenu>
  10872. <productMenu id="volume"
  10873. type="13" >
  10874. </productMenu>
  10875. <productMenu id="battery"
  10876. type="1" >
  10877. </productMenu>
  10878. <productID id="5553"
  10879. />
  10880. <productGroupable type="0"
  10881. />
  10882. </product>
  10883. <product id="XCOM3Pro"
  10884. name="X-COM3 Pro"
  10885. series="50"
  10886. latestVersion="1.1"
  10887. show = "0" >
  10888. <productMenu id="protocol"
  10889. type="2" >
  10890. </productMenu>
  10891. <productMenu id="alexa"
  10892. type="0" >
  10893. </productMenu>
  10894. <productMenu id="ota"
  10895. type="0" >
  10896. </productMenu>
  10897. <productMenu id="wa"
  10898. type="0" >
  10899. </productMenu>
  10900. <productMenu id="sip"
  10901. type="1" >
  10902. </productMenu>
  10903. <productMenu id="meshIntercom"
  10904. type="30" >
  10905. </productMenu>
  10906. <productMenu id="meshIntercom+"
  10907. type="3"
  10908. url="2" >
  10909. <productMenuType version="1.1"
  10910. type="2"
  10911. />
  10912. </productMenu>
  10913. <productMenu id="waveIntercom"
  10914. type="1" >
  10915. <productMenuType version="1.1"
  10916. type="0"
  10917. />
  10918. </productMenu>
  10919. <productMenu id="bluetoothIntercom"
  10920. type="1" >
  10921. </productMenu>
  10922. <productMenu id="phone"
  10923. type="1" >
  10924. </productMenu>
  10925. <productMenu id="music"
  10926. type="1" >
  10927. </productMenu>
  10928. <productMenu id="fmradio"
  10929. type="1" >
  10930. </productMenu>
  10931. <productMenu id="deviceSetting"
  10932. type="1"
  10933. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10934. <productMenuURL version="1.1"
  10935. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10936. />
  10937. </productMenu>
  10938. <productMenu id="quickGuide"
  10939. type="0"
  10940. url=""
  10941. size="344KB" >
  10942. </productMenu>
  10943. <productMenu id="userGuide"
  10944. type="1"
  10945. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10946. size="3.41MB" >
  10947. </productMenu>
  10948. <productMenu id="volume"
  10949. type="11" >
  10950. </productMenu>
  10951. <productMenu id="battery"
  10952. type="1" >
  10953. </productMenu>
  10954. <productID id="321A"
  10955. />
  10956. <productGroupable type="0"
  10957. />
  10958. </product>
  10959. <product id="XCOM3"
  10960. name="X-COM3"
  10961. series="20"
  10962. latestVersion="1.0"
  10963. show = "0" >
  10964. <productMenu id="protocol"
  10965. type="2" >
  10966. </productMenu>
  10967. <productMenu id="sip"
  10968. type="1" >
  10969. </productMenu>
  10970. <productMenu id="bluetoothIntercom"
  10971. type="1" >
  10972. </productMenu>
  10973. <productMenu id="phone"
  10974. type="1" >
  10975. </productMenu>
  10976. <productMenu id="music"
  10977. type="1" >
  10978. </productMenu>
  10979. <productMenu id="fmradio"
  10980. type="1" >
  10981. </productMenu>
  10982. <productMenu id="deviceSetting"
  10983. type="1"
  10984. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10985. </productMenu>
  10986. <productMenu id="quickGuide"
  10987. type="0"
  10988. url=""
  10989. size="934KB" >
  10990. </productMenu>
  10991. <productMenu id="userGuide"
  10992. type="1"
  10993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10994. size="1.14MB" >
  10995. </productMenu>
  10996. <productMenu id="volume"
  10997. type="15" >
  10998. </productMenu>
  10999. <productID id="3410"
  11000. />
  11001. <productGroupable type="0"
  11002. />
  11003. </product>
  11004. <product id="X-COM2"
  11005. name="X-COM2"
  11006. series="20"
  11007. latestVersion="1.0.5"
  11008. show = "0" >
  11009. <productMenu id="protocol"
  11010. type="0">
  11011. </productMenu>
  11012. <productMenu id="sip"
  11013. type="1" >
  11014. </productMenu>
  11015. <productMenu id="bluetoothIntercom"
  11016. type="1" >
  11017. </productMenu>
  11018. <productMenu id="intercomSetting"
  11019. type="1" >
  11020. </productMenu>
  11021. <productMenu id="phone"
  11022. type="2" >
  11023. </productMenu>
  11024. <productMenu id="fmradio"
  11025. type="3" >
  11026. </productMenu>
  11027. <productMenu id="deviceSetting"
  11028. type="1"
  11029. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11030. </productMenu>
  11031. <productMenu id="quickGuide"
  11032. type="1"
  11033. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11034. size="796KB" >
  11035. </productMenu>
  11036. <productMenu id="userGuide"
  11037. type="1"
  11038. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11039. size="1.90MB" >
  11040. </productMenu>
  11041. <productID id="2030"
  11042. />
  11043. <productGroupable type="1"
  11044. />
  11045. </product>
  11046. <product id="AVAABC"
  11047. name="AVA ABC"
  11048. series="SPIDER"
  11049. latestVersion="1.1"
  11050. show = "0" >
  11051. <productMenu id="protocol"
  11052. type="2" >
  11053. </productMenu>
  11054. <productMenu id="alexa"
  11055. type="0" >
  11056. </productMenu>
  11057. <productMenu id="ota"
  11058. type="0" >
  11059. <productMenuType version="1.0"
  11060. type="0"
  11061. />
  11062. <otaPackages>
  11063. <package
  11064. url="https://api.sena.com/support/OTA/"
  11065. size="2945812"
  11066. />
  11067. </otaPackages>
  11068. </productMenu>
  11069. <productMenu id="wa"
  11070. type="0" >
  11071. </productMenu>
  11072. <productMenu id="meshIntercom"
  11073. type="30" >
  11074. <productMenuType version="1.0"
  11075. type="20"
  11076. />
  11077. </productMenu>
  11078. <productMenu id="meshIntercom+"
  11079. type="3"
  11080. url="2" >
  11081. <productMenuType version="1.0"
  11082. type="2"
  11083. />
  11084. <productMenuURL version="1.0"
  11085. url="0"
  11086. />
  11087. </productMenu>
  11088. <productMenu id="waveIntercom"
  11089. type="1" >
  11090. <productMenuType version="1.0"
  11091. type="0"
  11092. />
  11093. </productMenu>
  11094. <productMenu id="phone"
  11095. type="1" >
  11096. </productMenu>
  11097. <productMenu id="music"
  11098. type="1" >
  11099. </productMenu>
  11100. <productMenu id="musicSharing"
  11101. type="0" >
  11102. </productMenu>
  11103. <productMenu id="deviceSetting"
  11104. type="1"
  11105. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11106. <productMenuURL version="1.0"
  11107. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11108. />
  11109. </productMenu>
  11110. <productMenu id="quickGuide"
  11111. type="1"
  11112. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11113. size="1.12MB" >
  11114. </productMenu>
  11115. <productMenu id="userGuide"
  11116. type="1"
  11117. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11118. size="2.0MB" >
  11119. </productMenu>
  11120. <productMenu id="volume"
  11121. type="12" >
  11122. </productMenu>
  11123. <productMenu id="battery"
  11124. type="1" >
  11125. </productMenu>
  11126. <productID id="6808"
  11127. />
  11128. <productGroupable type="0"
  11129. />
  11130. </product>
  11131. <product id="ADVANCEProCOM2"
  11132. name="ADVANCE ProCOM 2"
  11133. series="Helmet"
  11134. latestVersion="0.5"
  11135. latestVersionVoicePrompt="0.3"
  11136. show = "-1" >
  11137. <productMenu id="protocol"
  11138. type="2" >
  11139. </productMenu>
  11140. <productMenu id="ota"
  11141. type="2" >
  11142. <otaLanguages>
  11143. <otaLanguage
  11144. id="0"
  11145. name="English"
  11146. package="0"
  11147. />
  11148. <otaLanguage
  11149. id="0"
  11150. name="French"
  11151. package="1"
  11152. />
  11153. <otaLanguage
  11154. id="0"
  11155. name="Spanish"
  11156. package="2"
  11157. />
  11158. <otaLanguage
  11159. id="0"
  11160. name="Italian"
  11161. package="3"
  11162. />
  11163. <otaLanguage
  11164. id="0"
  11165. name="German"
  11166. package="4"
  11167. />
  11168. <otaLanguage
  11169. id="0"
  11170. name="Dutch"
  11171. package="5"
  11172. />
  11173. <otaLanguage
  11174. id="0"
  11175. name="Russian"
  11176. package="6"
  11177. />
  11178. <otaLanguage
  11179. id="0"
  11180. name="Chinese"
  11181. package="7"
  11182. />
  11183. <otaLanguage
  11184. id="0"
  11185. name="Korean"
  11186. package="8"
  11187. />
  11188. <otaLanguage
  11189. id="0"
  11190. name="Japanese"
  11191. package="9"
  11192. />
  11193. <otaLanguage
  11194. id="0"
  11195. name="Finnish"
  11196. package="10"
  11197. />
  11198. <otaLanguage
  11199. id="0"
  11200. name="Polish"
  11201. package="11"
  11202. />
  11203. </otaLanguages>
  11204. <otaPackages>
  11205. <package
  11206. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11207. size="5183988"
  11208. />
  11209. <package
  11210. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11211. size="5183988"
  11212. />
  11213. <package
  11214. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11215. size="5183988"
  11216. />
  11217. <package
  11218. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11219. size="5183988"
  11220. />
  11221. <package
  11222. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11223. size="5183988"
  11224. />
  11225. <package
  11226. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11227. size="5183988"
  11228. />
  11229. <package
  11230. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11231. size="5183988"
  11232. />
  11233. <package
  11234. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11235. size="5183988"
  11236. />
  11237. <package
  11238. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11239. size="5183988"
  11240. />
  11241. <package
  11242. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11243. size="5183988"
  11244. />
  11245. <package
  11246. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11247. size="5183988"
  11248. />
  11249. <package
  11250. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11251. size="5183988"
  11252. />
  11253. </otaPackages>
  11254. </productMenu>
  11255. <productMenu id="wa"
  11256. type="0" >
  11257. </productMenu>
  11258. <productMenu id="meshIntercom"
  11259. type="30" >
  11260. </productMenu>
  11261. <productMenu id="meshIntercom+"
  11262. type="3"
  11263. url="2" >
  11264. </productMenu>
  11265. <productMenu id="waveIntercom"
  11266. type="1" >
  11267. </productMenu>
  11268. <productMenu id="fmradio"
  11269. type="1" >
  11270. </productMenu>
  11271. <productMenu id="phone"
  11272. type="0" >
  11273. </productMenu>
  11274. <productMenu id="music"
  11275. type="1" >
  11276. </productMenu>
  11277. <productMenu id="musicSharing"
  11278. type="0" >
  11279. </productMenu>
  11280. <productMenu id="deviceSetting"
  11281. type="1"
  11282. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11283. </productMenu>
  11284. <productMenu id="quickGuide"
  11285. type="0"
  11286. url=""
  11287. size="1.12MB" >
  11288. </productMenu>
  11289. <productMenu id="userGuide"
  11290. type="1"
  11291. url=""
  11292. size="2.0MB" >
  11293. </productMenu>
  11294. <productMenu id="videoGuide"
  11295. type="0"
  11296. url=""
  11297. size="3.41MB" >
  11298. </productMenu>
  11299. <productMenu id="connectGuide"
  11300. type="1"
  11301. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11302. size="1.12MB" >
  11303. </productMenu>
  11304. <productMenu id="volume"
  11305. type="16" >
  11306. </productMenu>
  11307. <productMenu id="battery"
  11308. type="1" >
  11309. </productMenu>
  11310. <productID id="6A85"
  11311. />
  11312. <productGroupable type="0"
  11313. />
  11314. </product>
  11315. <product id="TRIUMPH60X"
  11316. name="TRIUMPH 60X"
  11317. series="60"
  11318. latestVersion="1.0"
  11319. latestVersionMesh="0.19"
  11320. latestVersionVoicePrompt="1.7"
  11321. show = "-1" >
  11322. <productMenu id="protocol"
  11323. type="2" >
  11324. </productMenu>
  11325. <productMenu id="ota"
  11326. type="0" >
  11327. <otaLanguages>
  11328. <otaLanguage
  11329. id="0"
  11330. name="English"
  11331. package="0"
  11332. />
  11333. <otaLanguage
  11334. id="0"
  11335. name="French"
  11336. package="1"
  11337. />
  11338. <otaLanguage
  11339. id="0"
  11340. name="Spanish"
  11341. package="2"
  11342. />
  11343. <otaLanguage
  11344. id="0"
  11345. name="Italian"
  11346. package="3"
  11347. />
  11348. <otaLanguage
  11349. id="0"
  11350. name="German"
  11351. package="4"
  11352. />
  11353. <otaLanguage
  11354. id="0"
  11355. name="Dutch"
  11356. package="5"
  11357. />
  11358. <otaLanguage
  11359. id="0"
  11360. name="Russian"
  11361. package="6"
  11362. />
  11363. <otaLanguage
  11364. id="0"
  11365. name="Chinese"
  11366. package="7"
  11367. />
  11368. <otaLanguage
  11369. id="0"
  11370. name="Korean"
  11371. package="8"
  11372. />
  11373. <otaLanguage
  11374. id="0"
  11375. name="Japanese"
  11376. package="9"
  11377. />
  11378. <otaLanguage
  11379. id="0"
  11380. name="Finnish"
  11381. package="10"
  11382. />
  11383. <otaLanguage
  11384. id="0"
  11385. name="Polish"
  11386. package="11"
  11387. />
  11388. </otaLanguages>
  11389. <otaPackages>
  11390. <package
  11391. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11392. size="5183988"
  11393. />
  11394. <package
  11395. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11396. size="5183988"
  11397. />
  11398. <package
  11399. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11400. size="5183988"
  11401. />
  11402. <package
  11403. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11404. size="5183988"
  11405. />
  11406. <package
  11407. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11408. size="5183988"
  11409. />
  11410. <package
  11411. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11412. size="5183988"
  11413. />
  11414. <package
  11415. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11416. size="5183988"
  11417. />
  11418. <package
  11419. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11420. size="5183988"
  11421. />
  11422. <package
  11423. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11424. size="5183988"
  11425. />
  11426. <package
  11427. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11428. size="5183988"
  11429. />
  11430. <package
  11431. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11432. size="5183988"
  11433. />
  11434. <package
  11435. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11436. size="5183988"
  11437. />
  11438. </otaPackages>
  11439. </productMenu>
  11440. <productMenu id="wa"
  11441. type="0" >
  11442. </productMenu>
  11443. <productMenu id="sip"
  11444. type="1" >
  11445. </productMenu>
  11446. <productMenu id="led"
  11447. type="1" >
  11448. </productMenu>
  11449. <productMenu id="illusion"
  11450. type="1" >
  11451. </productMenu>
  11452. <productMenu id="meshIntercom"
  11453. type="30" >
  11454. </productMenu>
  11455. <productMenu id="meshIntercom+"
  11456. type="3"
  11457. url="2" >
  11458. </productMenu>
  11459. <productMenu id="bluetoothIntercom"
  11460. type="1" >
  11461. </productMenu>
  11462. <productMenu id="fmradio"
  11463. type="1"
  11464. url="1" >
  11465. </productMenu>
  11466. <productMenu id="mic"
  11467. type="0" >
  11468. </productMenu>
  11469. <productMenu id="phone"
  11470. type="1" >
  11471. </productMenu>
  11472. <productMenu id="music"
  11473. type="1" >
  11474. </productMenu>
  11475. <productMenu id="musicSharing"
  11476. type="0" >
  11477. </productMenu>
  11478. <productMenu id="deviceSetting"
  11479. type="1"
  11480. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11481. </productMenu>
  11482. <productMenu id="quickGuide"
  11483. type="0"
  11484. url=""
  11485. size="1.12MB" >
  11486. </productMenu>
  11487. <productMenu id="userGuide"
  11488. type="1"
  11489. url=""
  11490. size="2.0MB" >
  11491. </productMenu>
  11492. <productMenu id="videoGuide"
  11493. type="0"
  11494. url=""
  11495. size="3.41MB" >
  11496. </productMenu>
  11497. <productMenu id="keySettings"
  11498. type="1"
  11499. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11500. </productMenu>
  11501. <productMenu id="volume"
  11502. type="13" >
  11503. </productMenu>
  11504. <productMenu id="volume+"
  11505. type="2"
  11506. url="0x6004" >
  11507. </productMenu>
  11508. <productMenu id="battery"
  11509. type="1" >
  11510. </productMenu>
  11511. <productID id="6A1C"
  11512. />
  11513. <productGroupable type="0"
  11514. />
  11515. </product>
  11516. <product id="Triumph_50S"
  11517. name="Triumph 50S"
  11518. series="50"
  11519. latestVersion="1.5"
  11520. show = "0" >
  11521. <productMenu id="protocol"
  11522. type="2" >
  11523. </productMenu>
  11524. <productMenu id="alexa"
  11525. type="0" >
  11526. </productMenu>
  11527. <productMenu id="ota"
  11528. type="0"
  11529. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11530. size="1150234" >
  11531. </productMenu>
  11532. <productMenu id="wa"
  11533. type="1" >
  11534. </productMenu>
  11535. <productMenu id="sip"
  11536. type="1" >
  11537. </productMenu>
  11538. <productMenu id="meshIntercom"
  11539. type="20" >
  11540. </productMenu>
  11541. <productMenu id="bluetoothIntercom"
  11542. type="1" >
  11543. </productMenu>
  11544. <productMenu id="meshIntercom+"
  11545. type="3"
  11546. url="2" >
  11547. <productMenuType version="1.2.9"
  11548. type="2"
  11549. />
  11550. <productMenuURL version="1.2.9"
  11551. url="0"
  11552. />
  11553. </productMenu>
  11554. <productMenu id="waveIntercom"
  11555. type="1" >
  11556. <productMenuType version="1.2.9"
  11557. type="0"
  11558. />
  11559. </productMenu>
  11560. <productMenu id="phone"
  11561. type="1" >
  11562. </productMenu>
  11563. <productMenu id="music"
  11564. type="1" >
  11565. </productMenu>
  11566. <productMenu id="fmradio"
  11567. type="1" >
  11568. </productMenu>
  11569. <productMenu id="deviceSetting"
  11570. type="1"
  11571. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11572. <productMenuURL version="1.2.9"
  11573. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11574. />
  11575. <productMenuURL version="1.0"
  11576. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11577. />
  11578. </productMenu>
  11579. <productMenu id="quickGuide"
  11580. type="1"
  11581. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11582. size="934KB" >
  11583. </productMenu>
  11584. <productMenu id="userGuide"
  11585. type="1"
  11586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11587. size="1.14MB" >
  11588. </productMenu>
  11589. <productMenu id="volume"
  11590. type="11" >
  11591. </productMenu>
  11592. <productMenu id="battery"
  11593. type="1" >
  11594. </productMenu>
  11595. <productID id="3264"
  11596. />
  11597. <productGroupable type="0"
  11598. />
  11599. </product>
  11600. <product id="RE50S"
  11601. name="RE 50S"
  11602. series="50"
  11603. latestVersion="2.7"
  11604. show = "0" >
  11605. <productMenu id="protocol"
  11606. type="2" >
  11607. </productMenu>
  11608. <productMenu id="alexa"
  11609. type="0" >
  11610. </productMenu>
  11611. <productMenu id="ota"
  11612. type="0"
  11613. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11614. size="1150234" >
  11615. </productMenu>
  11616. <productMenu id="wa"
  11617. type="1" >
  11618. </productMenu>
  11619. <productMenu id="sip"
  11620. type="1" >
  11621. </productMenu>
  11622. <productMenu id="meshIntercom"
  11623. type="30" >
  11624. </productMenu>
  11625. <productMenu id="meshIntercom+"
  11626. type="3"
  11627. url="2" >
  11628. <productMenuType version="2.5"
  11629. type="2"
  11630. />
  11631. </productMenu>
  11632. <productMenu id="waveIntercom"
  11633. type="1" >
  11634. <productMenuType version="2.5"
  11635. type="0"
  11636. />
  11637. </productMenu>
  11638. <productMenu id="bluetoothIntercom"
  11639. type="1" >
  11640. </productMenu>
  11641. <productMenu id="phone"
  11642. type="1" >
  11643. </productMenu>
  11644. <productMenu id="music"
  11645. type="1" >
  11646. </productMenu>
  11647. <productMenu id="fmradio"
  11648. type="1" >
  11649. </productMenu>
  11650. <productMenu id="deviceSetting"
  11651. type="1"
  11652. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11653. <productMenuURL version="2.5.9"
  11654. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11655. />
  11656. </productMenu>
  11657. <productMenu id="quickGuide"
  11658. type="1"
  11659. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11660. size="934KB" >
  11661. </productMenu>
  11662. <productMenu id="userGuide"
  11663. type="1"
  11664. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11665. size="1.14MB" >
  11666. </productMenu>
  11667. <productMenu id="videoGuide"
  11668. type="0"
  11669. url=""
  11670. size="3.41MB" >
  11671. </productMenu>
  11672. <productMenu id="volume"
  11673. type="11" >
  11674. </productMenu>
  11675. <productMenu id="battery"
  11676. type="1" >
  11677. </productMenu>
  11678. <productID id="321C"
  11679. />
  11680. <productGroupable type="0"
  11681. />
  11682. </product>
  11683. <product id="BMW_HELMET_II_U1"
  11684. name="BMW HELMET II U1"
  11685. series="50"
  11686. latestVersion="1.0"
  11687. show = "0" >
  11688. <productMenu id="protocol"
  11689. type="2" >
  11690. </productMenu>
  11691. <productMenu id="alexa"
  11692. type="0" >
  11693. </productMenu>
  11694. <productMenu id="sip"
  11695. type="1" >
  11696. </productMenu>
  11697. <productMenu id="meshIntercom"
  11698. type="20" >
  11699. </productMenu>
  11700. <productMenu id="bluetoothIntercom"
  11701. type="1" >
  11702. </productMenu>
  11703. <productMenu id="bluetoothIntercom2"
  11704. type="1" >
  11705. </productMenu>
  11706. <productMenu id="phone"
  11707. type="1" >
  11708. </productMenu>
  11709. <productMenu id="music"
  11710. type="1" >
  11711. </productMenu>
  11712. <productMenu id="fmradio"
  11713. type="1" >
  11714. </productMenu>
  11715. <productMenu id="deviceSetting"
  11716. type="1"
  11717. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11718. </productMenu>
  11719. <productMenu id="quickGuide"
  11720. type="1"
  11721. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11722. size="934KB" >
  11723. </productMenu>
  11724. <productMenu id="userGuide"
  11725. type="1"
  11726. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11727. size="1.14MB" >
  11728. </productMenu>
  11729. <productMenu id="volume"
  11730. type="11" >
  11731. </productMenu>
  11732. <productMenu id="battery"
  11733. type="1" >
  11734. </productMenu>
  11735. <productID id="3260"
  11736. />
  11737. <productGroupable type="0"
  11738. />
  11739. </product>
  11740. <product id="OUTRUSHR"
  11741. name="CX935"
  11742. series="Helmet"
  11743. latestVersion="2.1"
  11744. show = "-1" >
  11745. <productMenu id="protocol"
  11746. type="3">
  11747. </productMenu>
  11748. <productMenu id="sip"
  11749. type="1" >
  11750. </productMenu>
  11751. <productMenu id="bluetoothIntercom"
  11752. type="1" >
  11753. </productMenu>
  11754. <productMenu id="phone"
  11755. type="1" >
  11756. </productMenu>
  11757. <productMenu id="fmradio"
  11758. type="0" >
  11759. </productMenu>
  11760. <productMenu id="deviceSetting"
  11761. type="1"
  11762. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11763. </productMenu>
  11764. <productMenu id="userGuide"
  11765. type="1"
  11766. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11767. size="660KB" >
  11768. </productMenu>
  11769. <productID id="5446"
  11770. />
  11771. <productGroupable type="0"
  11772. />
  11773. </product>
  11774. <product id="LSE_01"
  11775. name="LSE-01"
  11776. series="SF"
  11777. latestVersion="1.2.3"
  11778. show = "0" >
  11779. <productMenu id="protocol"
  11780. type="1"
  11781. url="3">
  11782. </productMenu>
  11783. <productMenu id="sip"
  11784. type="1" >
  11785. </productMenu>
  11786. <productMenu id="bluetoothIntercom"
  11787. type="1" >
  11788. </productMenu>
  11789. <productMenu id="phone"
  11790. type="1" >
  11791. </productMenu>
  11792. <productMenu id="music"
  11793. type="1" >
  11794. </productMenu>
  11795. <productMenu id="fmradio"
  11796. type="1" >
  11797. </productMenu>
  11798. <productMenu id="deviceSetting"
  11799. type="1"
  11800. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11801. <productMenuURL version="1.1"
  11802. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11803. />
  11804. <productMenuURL version="1.0"
  11805. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11806. />
  11807. </productMenu>
  11808. <productMenu id="quickGuide"
  11809. type="1"
  11810. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11811. size="607KB" >
  11812. </productMenu>
  11813. <productMenu id="userGuide"
  11814. type="1"
  11815. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11816. size="1.91MB" >
  11817. </productMenu>
  11818. <productMenu id="volume"
  11819. type="4" >
  11820. </productMenu>
  11821. <productID id="5416"
  11822. />
  11823. <productGroupable type="0"
  11824. />
  11825. </product>
  11826. <product id="AGV_ARK"
  11827. name="AGV ARK"
  11828. series="SF"
  11829. latestVersion="1.0.3"
  11830. show = "0" >
  11831. <productMenu id="protocol"
  11832. type="1"
  11833. url="3">
  11834. </productMenu>
  11835. <productMenu id="sip"
  11836. type="1" >
  11837. </productMenu>
  11838. <productMenu id="bluetoothIntercom"
  11839. type="1" >
  11840. </productMenu>
  11841. <productMenu id="phone"
  11842. type="1" >
  11843. </productMenu>
  11844. <productMenu id="music"
  11845. type="1" >
  11846. </productMenu>
  11847. <productMenu id="fmradio"
  11848. type="1" >
  11849. </productMenu>
  11850. <productMenu id="deviceSetting"
  11851. type="1"
  11852. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11853. </productMenu>
  11854. <productMenu id="quickGuide"
  11855. type="1"
  11856. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11857. size="607KB" >
  11858. </productMenu>
  11859. <productMenu id="userGuide"
  11860. type="1"
  11861. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11862. size="1.91MB" >
  11863. </productMenu>
  11864. <productMenu id="volume"
  11865. type="4" >
  11866. </productMenu>
  11867. <productID id="5420"
  11868. />
  11869. <productGroupable type="0"
  11870. />
  11871. </product>
  11872. <product id="KLIM_KRIOS"
  11873. name="KLIM Krios"
  11874. series="10"
  11875. latestVersion="1.1.2"
  11876. show = "0" >
  11877. <productMenu id="protocol"
  11878. type="0">
  11879. </productMenu>
  11880. <productMenu id="sip"
  11881. type="1" >
  11882. </productMenu>
  11883. <productMenu id="bluetoothIntercom"
  11884. type="1" >
  11885. </productMenu>
  11886. <productMenu id="phone"
  11887. type="2" >
  11888. </productMenu>
  11889. <productMenu id="fmradio"
  11890. type="3" >
  11891. </productMenu>
  11892. <productMenu id="deviceSetting"
  11893. type="1"
  11894. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11895. <productMenuURL version="1.0"
  11896. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11897. />
  11898. </productMenu>
  11899. <productMenu id="quickGuide"
  11900. type="1"
  11901. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11902. size="649KB" >
  11903. </productMenu>
  11904. <productMenu id="userGuide"
  11905. type="1"
  11906. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11907. size="1.43MB" >
  11908. </productMenu>
  11909. <productID id="5910"
  11910. />
  11911. <productGroupable type="0"
  11912. />
  11913. </product>
  11914. <product id="POLARIS_SLINGSHOT"
  11915. name="Polaris Slingshot"
  11916. series="10"
  11917. latestVersion="1.1.2"
  11918. show = "0" >
  11919. <productMenu id="protocol"
  11920. type="0">
  11921. </productMenu>
  11922. <productMenu id="sip"
  11923. type="1" >
  11924. </productMenu>
  11925. <productMenu id="bluetoothIntercom"
  11926. type="1" >
  11927. </productMenu>
  11928. <productMenu id="phone"
  11929. type="2" >
  11930. </productMenu>
  11931. <productMenu id="fmradio"
  11932. type="3" >
  11933. </productMenu>
  11934. <productMenu id="deviceSetting"
  11935. type="1"
  11936. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11937. <productMenuURL version="1.0"
  11938. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11939. />
  11940. </productMenu>
  11941. <productMenu id="quickGuide"
  11942. type="1"
  11943. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11944. size="689KB" >
  11945. </productMenu>
  11946. <productMenu id="userGuide"
  11947. type="1"
  11948. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11949. size="1.43MB" >
  11950. </productMenu>
  11951. <productID id="5920"
  11952. />
  11953. <productGroupable type="0"
  11954. />
  11955. </product>
  11956. <product id="DWO6"
  11957. name="SEDICI DWO6-PRO"
  11958. series="10"
  11959. latestVersion="1.0.2"
  11960. show = "0" >
  11961. <productMenu id="protocol"
  11962. type="0">
  11963. </productMenu>
  11964. <productMenu id="sip"
  11965. type="1" >
  11966. </productMenu>
  11967. <productMenu id="bluetoothIntercom"
  11968. type="1" >
  11969. </productMenu>
  11970. <productMenu id="phone"
  11971. type="2" >
  11972. </productMenu>
  11973. <productMenu id="fmradio"
  11974. type="3" >
  11975. </productMenu>
  11976. <productMenu id="deviceSetting"
  11977. type="1"
  11978. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11979. </productMenu>
  11980. <productMenu id="quickGuide"
  11981. type="1"
  11982. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11983. size="529KB" >
  11984. </productMenu>
  11985. <productMenu id="userGuide"
  11986. type="1"
  11987. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11988. size="4.09MB" >
  11989. </productMenu>
  11990. <productID id="6112"
  11991. />
  11992. <productGroupable type="0"
  11993. />
  11994. </product>
  11995. <product id="DWO6A"
  11996. name="SEDICI DWO-6"
  11997. series="10"
  11998. latestVersion="1.0.2"
  11999. show = "0" >
  12000. <productMenu id="protocol"
  12001. type="0">
  12002. </productMenu>
  12003. <productMenu id="sip"
  12004. type="1" >
  12005. </productMenu>
  12006. <productMenu id="bluetoothIntercom"
  12007. type="1" >
  12008. </productMenu>
  12009. <productMenu id="phone"
  12010. type="2" >
  12011. </productMenu>
  12012. <productMenu id="fmradio"
  12013. type="3" >
  12014. </productMenu>
  12015. <productMenu id="deviceSetting"
  12016. type="1"
  12017. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12018. </productMenu>
  12019. <productMenu id="quickGuide"
  12020. type="1"
  12021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12022. size="522KB" >
  12023. </productMenu>
  12024. <productMenu id="userGuide"
  12025. type="1"
  12026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12027. size="2.71MB" >
  12028. </productMenu>
  12029. <productID id="6114"
  12030. />
  12031. <productGroupable type="0"
  12032. />
  12033. </product>
  12034. <product id="3SPLUS"
  12035. name="ZILL"
  12036. series="3"
  12037. latestVersion="1.0.4"
  12038. show = "0" >
  12039. <productMenu id="protocol"
  12040. type="0">
  12041. </productMenu>
  12042. <productMenu id="sip"
  12043. type="1" >
  12044. </productMenu>
  12045. <productMenu id="bluetoothIntercom"
  12046. type="1" >
  12047. </productMenu>
  12048. <productMenu id="deviceSetting"
  12049. type="1"
  12050. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12051. </productMenu>
  12052. <productMenu id="quickGuide"
  12053. type="1"
  12054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12055. size="842KB" >
  12056. </productMenu>
  12057. <productMenu id="userGuide"
  12058. type="1"
  12059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12060. size="1.02MB" >
  12061. </productMenu>
  12062. <productID id="6335"
  12063. />
  12064. <productGroupable type="0"
  12065. />
  12066. </product>
  12067. <product id="HD50S"
  12068. name="Boom! Audio 30K"
  12069. series="30"
  12070. latestVersion="3.4"
  12071. show = "0" >
  12072. <productMenu id="protocol"
  12073. type="1"
  12074. url="0">
  12075. </productMenu>
  12076. <productMenu id="wa"
  12077. type="0" >
  12078. </productMenu>
  12079. <productMenu id="sip"
  12080. type="1" >
  12081. </productMenu>
  12082. <productMenu id="meshIntercom"
  12083. type="20" >
  12084. <productMenuType version="2.9.9"
  12085. type="10"
  12086. />
  12087. </productMenu>
  12088. <productMenu id="bluetoothIntercom"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="phone"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="music"
  12095. type="1" >
  12096. </productMenu>
  12097. <productMenu id="fmradio"
  12098. type="1" >
  12099. </productMenu>
  12100. <productMenu id="deviceSetting"
  12101. type="1"
  12102. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12103. <productMenuURL version="3.2"
  12104. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12105. />
  12106. <productMenuURL version="3.0"
  12107. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12108. />
  12109. <productMenuURL version="2.2"
  12110. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12111. />
  12112. </productMenu>
  12113. <productMenu id="quickGuide"
  12114. type="1"
  12115. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12116. size="1.06MB" >
  12117. </productMenu>
  12118. <productMenu id="userGuide"
  12119. type="1"
  12120. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12121. size="3.15MB" >
  12122. </productMenu>
  12123. <productMenu id="volume"
  12124. type="1" >
  12125. </productMenu>
  12126. <productID id="3112"
  12127. />
  12128. <productGroupable type="0"
  12129. />
  12130. </product>
  12131. <product id="HD50S"
  12132. name="Boom! Audio N02"
  12133. series="30"
  12134. latestVersion="3.1"
  12135. show = "0" >
  12136. <productMenu id="protocol"
  12137. type="1"
  12138. url="0">
  12139. </productMenu>
  12140. <productMenu id="wa"
  12141. type="2" >
  12142. </productMenu>
  12143. <productMenu id="sip"
  12144. type="1" >
  12145. </productMenu>
  12146. <productMenu id="meshIntercom"
  12147. type="20" >
  12148. <productMenuType version="2.9.9"
  12149. type="10"
  12150. />
  12151. </productMenu>
  12152. <productMenu id="bluetoothIntercom"
  12153. type="1" >
  12154. </productMenu>
  12155. <productMenu id="phone"
  12156. type="1" >
  12157. </productMenu>
  12158. <productMenu id="music"
  12159. type="1" >
  12160. </productMenu>
  12161. <productMenu id="fmradio"
  12162. type="1" >
  12163. </productMenu>
  12164. <productMenu id="deviceSetting"
  12165. type="1"
  12166. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12167. <productMenuURL version="2.2"
  12168. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12169. />
  12170. </productMenu>
  12171. <productMenu id="quickGuide"
  12172. type="1"
  12173. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12174. size="1.06MB" >
  12175. </productMenu>
  12176. <productMenu id="userGuide"
  12177. type="1"
  12178. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12179. size="3.15MB" >
  12180. </productMenu>
  12181. <productMenu id="volume"
  12182. type="2" >
  12183. </productMenu>
  12184. <productID id="3114"
  12185. />
  12186. <productGroupable type="0"
  12187. />
  12188. </product>
  12189. <product id="HD50S"
  12190. name="Boom Audio 20S"
  12191. series="50"
  12192. latestVersion="2.5.2"
  12193. show = "0" >
  12194. <productMenu id="protocol"
  12195. type="0">
  12196. </productMenu>
  12197. <productMenu id="sip"
  12198. type="1" >
  12199. <productMenuType version="1.0"
  12200. type="0"
  12201. />
  12202. </productMenu>
  12203. <productMenu id="bluetoothIntercom"
  12204. type="1" >
  12205. <productMenuType version="1.0"
  12206. type="0"
  12207. />
  12208. </productMenu>
  12209. <productMenu id="intercomSetting"
  12210. type="1" >
  12211. </productMenu>
  12212. <productMenu id="phone"
  12213. type="2" >
  12214. </productMenu>
  12215. <productMenu id="fmradio"
  12216. type="3" >
  12217. </productMenu>
  12218. <productMenu id="deviceSetting"
  12219. type="1"
  12220. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12221. <productMenuURL version="2.4"
  12222. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12223. />
  12224. <productMenuURL version="1.5"
  12225. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12226. />
  12227. <productMenuURL version="1.4.1"
  12228. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12229. />
  12230. <productMenuURL version="1.1"
  12231. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12232. />
  12233. <productMenuURL version="1.0"
  12234. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12235. />
  12236. </productMenu>
  12237. <productMenu id="quickGuide"
  12238. type="1"
  12239. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12240. size="264KB" >
  12241. </productMenu>
  12242. <productMenu id="userGuide"
  12243. type="1"
  12244. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12245. size="3.09MB" >
  12246. </productMenu>
  12247. <productMenu id="connectGuide"
  12248. type="1"
  12249. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12250. size="1.12MB" >
  12251. </productMenu>
  12252. <productID id="4210"
  12253. />
  12254. <productProductKey key="11"
  12255. />
  12256. <productID id="4230"
  12257. />
  12258. <productProductKey key="11"
  12259. />
  12260. <productGroupable type="1"
  12261. />
  12262. </product>
  12263. <product id="HD50S"
  12264. name="Boom Audio 20S EVO"
  12265. series="50"
  12266. latestVersion="2.5.2"
  12267. show = "0" >
  12268. <productMenu id="protocol"
  12269. type="0">
  12270. </productMenu>
  12271. <productMenu id="sip"
  12272. type="1" >
  12273. <productMenuType version="1.0"
  12274. type="0"
  12275. />
  12276. </productMenu>
  12277. <productMenu id="bluetoothIntercom"
  12278. type="1" >
  12279. <productMenuType version="1.0"
  12280. type="0"
  12281. />
  12282. </productMenu>
  12283. <productMenu id="intercomSetting"
  12284. type="1" >
  12285. </productMenu>
  12286. <productMenu id="phone"
  12287. type="2" >
  12288. </productMenu>
  12289. <productMenu id="fmradio"
  12290. type="3" >
  12291. </productMenu>
  12292. <productMenu id="deviceSetting"
  12293. type="1"
  12294. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12295. <productMenuURL version="2.4"
  12296. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12297. />
  12298. <productMenuURL version="1.5"
  12299. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12300. />
  12301. <productMenuURL version="1.4.1"
  12302. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12303. />
  12304. <productMenuURL version="1.1"
  12305. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12306. />
  12307. <productMenuURL version="1.0"
  12308. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12309. />
  12310. </productMenu>
  12311. <productMenu id="quickGuide"
  12312. type="1"
  12313. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12314. size="321KB" >
  12315. </productMenu>
  12316. <productMenu id="userGuide"
  12317. type="1"
  12318. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12319. size="2.46MB" >
  12320. </productMenu>
  12321. <productID id="4230"
  12322. />
  12323. <productProductKey key="27"
  12324. />
  12325. <productGroupable type="1"
  12326. />
  12327. </product>
  12328. <product id="HD50S"
  12329. name="Boom! Audio 10S"
  12330. series="50"
  12331. latestVersion="1.1.3"
  12332. show = "0" >
  12333. <productMenu id="protocol"
  12334. type="0">
  12335. </productMenu>
  12336. <productMenu id="sip"
  12337. type="1" >
  12338. </productMenu>
  12339. <productMenu id="bluetoothIntercom"
  12340. type="1" >
  12341. </productMenu>
  12342. <productMenu id="phone"
  12343. type="2" >
  12344. </productMenu>
  12345. <productMenu id="fmradio"
  12346. type="3" >
  12347. </productMenu>
  12348. <productMenu id="deviceSetting"
  12349. type="1"
  12350. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12351. </productMenu>
  12352. <productMenu id="quickGuide"
  12353. type="1"
  12354. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12355. size="538KB" >
  12356. </productMenu>
  12357. <productMenu id="userGuide"
  12358. type="1"
  12359. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12360. size="1.55MB" >
  12361. </productMenu>
  12362. <productID id="5532"
  12363. />
  12364. <productGroupable type="0"
  12365. />
  12366. </product>
  12367. <product id="HD50S"
  12368. name="Boom! Audio N01 10R"
  12369. series="50"
  12370. latestVersion="1.1.3"
  12371. show = "0" >
  12372. <productMenu id="protocol"
  12373. type="0">
  12374. </productMenu>
  12375. <productMenu id="sip"
  12376. type="1" >
  12377. </productMenu>
  12378. <productMenu id="bluetoothIntercom"
  12379. type="1" >
  12380. </productMenu>
  12381. <productMenu id="phone"
  12382. type="2" >
  12383. </productMenu>
  12384. <productMenu id="fmradio"
  12385. type="3" >
  12386. </productMenu>
  12387. <productMenu id="deviceSetting"
  12388. type="1"
  12389. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12390. </productMenu>
  12391. <productMenu id="quickGuide"
  12392. type="1"
  12393. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12394. size="766KB" >
  12395. </productMenu>
  12396. <productMenu id="userGuide"
  12397. type="1"
  12398. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12399. size="1.45MB" >
  12400. </productMenu>
  12401. <productID id="5522"
  12402. />
  12403. <productGroupable type="0"
  12404. />
  12405. </product>
  12406. <product id="HD50S"
  12407. name="OUTRUSH-R N03"
  12408. series="50"
  12409. latestVersion="1.2.1"
  12410. show = "-1" >
  12411. <productMenu id="protocol"
  12412. type="0">
  12413. </productMenu>
  12414. <productMenu id="sip"
  12415. type="1" >
  12416. </productMenu>
  12417. <productMenu id="bluetoothIntercom"
  12418. type="1" >
  12419. </productMenu>
  12420. <productMenu id="phone"
  12421. type="2" >
  12422. </productMenu>
  12423. <productMenu id="fmradio"
  12424. type="3" >
  12425. </productMenu>
  12426. <productMenu id="deviceSetting"
  12427. type="1"
  12428. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12429. </productMenu>
  12430. <productMenu id="userGuide"
  12431. type="1"
  12432. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12433. size="660KB" >
  12434. </productMenu>
  12435. <productID id="5434"
  12436. />
  12437. <productGroupable type="0"
  12438. />
  12439. </product>
  12440. <product id="HD50S"
  12441. name="OUTRUSH-R N03"
  12442. series="50"
  12443. latestVersion="2.0"
  12444. show = "0" >
  12445. <productMenu id="protocol"
  12446. type="3" >
  12447. </productMenu>
  12448. <productMenu id="sip"
  12449. type="1" >
  12450. </productMenu>
  12451. <productMenu id="bluetoothIntercom"
  12452. type="1" >
  12453. </productMenu>
  12454. <productMenu id="phone"
  12455. type="1" >
  12456. </productMenu>
  12457. <productMenu id="fmradio"
  12458. type="1" >
  12459. </productMenu>
  12460. <productMenu id="deviceSetting"
  12461. type="1"
  12462. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12463. </productMenu>
  12464. <productMenu id="userGuide"
  12465. type="1"
  12466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12467. size="1.14MB" >
  12468. </productMenu>
  12469. <productID id="5441"
  12470. />
  12471. <productGroupable type="0"
  12472. />
  12473. </product>
  12474. <product id="5R"
  12475. name="5R"
  12476. series="5"
  12477. latestVersion="1.0.1"
  12478. show = "1" >
  12479. <productMenu id="protocol"
  12480. type="3" >
  12481. </productMenu>
  12482. <productMenu id="sip"
  12483. type="1" >
  12484. </productMenu>
  12485. <productMenu id="bluetoothIntercom"
  12486. type="1" >
  12487. </productMenu>
  12488. <productMenu id="phone"
  12489. type="1" >
  12490. </productMenu>
  12491. <productMenu id="fmradio"
  12492. type="1" >
  12493. </productMenu>
  12494. <productMenu id="deviceSetting"
  12495. type="1"
  12496. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12497. </productMenu>
  12498. <productMenu id="quickGuide"
  12499. type="0"
  12500. url=""
  12501. size="934KB" >
  12502. </productMenu>
  12503. <productMenu id="userGuide"
  12504. type="1"
  12505. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12506. size="1.14MB" >
  12507. </productMenu>
  12508. <productMenu id="connectGuide"
  12509. type="1"
  12510. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12511. size="1.12MB" >
  12512. </productMenu>
  12513. <productID id="5591"
  12514. />
  12515. <productGroupable type="0"
  12516. />
  12517. </product>
  12518. <product id="5R"
  12519. name="5R LITE"
  12520. series="5"
  12521. latestVersion="1.0.1"
  12522. show = "1" >
  12523. <productMenu id="protocol"
  12524. type="3" >
  12525. </productMenu>
  12526. <productMenu id="sip"
  12527. type="1" >
  12528. </productMenu>
  12529. <productMenu id="bluetoothIntercom"
  12530. type="1" >
  12531. </productMenu>
  12532. <productMenu id="phone"
  12533. type="1" >
  12534. </productMenu>
  12535. <productMenu id="fmradio"
  12536. type="1" >
  12537. </productMenu>
  12538. <productMenu id="deviceSetting"
  12539. type="1"
  12540. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12541. </productMenu>
  12542. <productMenu id="quickGuide"
  12543. type="0"
  12544. url=""
  12545. size="934KB" >
  12546. </productMenu>
  12547. <productMenu id="userGuide"
  12548. type="1"
  12549. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12550. size="1.14MB" >
  12551. </productMenu>
  12552. <productMenu id="connectGuide"
  12553. type="1"
  12554. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12555. size="1.12MB" >
  12556. </productMenu>
  12557. <productID id="5592"
  12558. />
  12559. <productGroupable type="0"
  12560. />
  12561. </product>
  12562. <product id="50RLE"
  12563. name="50R LE"
  12564. series="50"
  12565. latestVersion="1.1"
  12566. show = "0" >
  12567. <productMenu id="protocol"
  12568. type="2" >
  12569. </productMenu>
  12570. <productMenu id="alexa"
  12571. type="0" >
  12572. </productMenu>
  12573. <productMenu id="sip"
  12574. type="1" >
  12575. </productMenu>
  12576. <productMenu id="meshIntercom"
  12577. type="30" >
  12578. </productMenu>
  12579. <productMenu id="meshIntercom+"
  12580. type="3"
  12581. url="2" >
  12582. <productMenuType version="1.0.9"
  12583. type="2"
  12584. />
  12585. </productMenu>
  12586. <productMenu id="waveIntercom"
  12587. type="1" >
  12588. <productMenuType version="1.0.9"
  12589. type="0"
  12590. />
  12591. </productMenu>
  12592. <productMenu id="bluetoothIntercom"
  12593. type="1" >
  12594. </productMenu>
  12595. <productMenu id="phone"
  12596. type="1" >
  12597. </productMenu>
  12598. <productMenu id="music"
  12599. type="1" >
  12600. </productMenu>
  12601. <productMenu id="fmradio"
  12602. type="0" >
  12603. </productMenu>
  12604. <productMenu id="deviceSetting"
  12605. type="1"
  12606. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12607. <productMenuURL version="1.0.9"
  12608. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12609. />
  12610. </productMenu>
  12611. <productMenu id="quickGuide"
  12612. type="0"
  12613. url=""
  12614. size="344KB" >
  12615. </productMenu>
  12616. <productMenu id="userGuide"
  12617. type="0"
  12618. url=""
  12619. size="3.41MB" >
  12620. </productMenu>
  12621. <productMenu id="volume"
  12622. type="11" >
  12623. </productMenu>
  12624. <productMenu id="battery"
  12625. type="1" >
  12626. </productMenu>
  12627. <productID id="3223"
  12628. />
  12629. <productGroupable type="0"
  12630. />
  12631. </product>
  12632. <product id="5RLOUIS"
  12633. name="5R LOUIS EDITION"
  12634. series="5"
  12635. latestVersion="1.0"
  12636. show = "-1" >
  12637. <productMenu id="protocol"
  12638. type="3" >
  12639. </productMenu>
  12640. <productMenu id="sip"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="bluetoothIntercom"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="phone"
  12647. type="1" >
  12648. </productMenu>
  12649. <productMenu id="fmradio"
  12650. type="1" >
  12651. </productMenu>
  12652. <productMenu id="deviceSetting"
  12653. type="1"
  12654. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12655. </productMenu>
  12656. <productMenu id="quickGuide"
  12657. type="0"
  12658. url=""
  12659. size="934KB" >
  12660. </productMenu>
  12661. <productMenu id="userGuide"
  12662. type="0"
  12663. url=""
  12664. size="1.14MB" >
  12665. </productMenu>
  12666. <productID id="5597"
  12667. />
  12668. <productGroupable type="0"
  12669. />
  12670. </product>
  12671. <product id="5S"
  12672. name="Ridekont 5S"
  12673. series="5"
  12674. latestVersion="2.3"
  12675. show = "-1" >
  12676. <productMenu id="protocol"
  12677. type="3" >
  12678. </productMenu>
  12679. <productMenu id="sip"
  12680. type="1" >
  12681. </productMenu>
  12682. <productMenu id="bluetoothIntercom"
  12683. type="1" >
  12684. </productMenu>
  12685. <productMenu id="phone"
  12686. type="1" >
  12687. </productMenu>
  12688. <productMenu id="fmradio"
  12689. type="0" >
  12690. </productMenu>
  12691. <productMenu id="deviceSetting"
  12692. type="1"
  12693. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12694. </productMenu>
  12695. <productMenu id="quickGuide"
  12696. type="0"
  12697. url=""
  12698. size="934KB" >
  12699. </productMenu>
  12700. <productMenu id="userGuide"
  12701. type="1"
  12702. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12703. size="1.14MB" >
  12704. </productMenu>
  12705. <productID id="5589"
  12706. />
  12707. <productGroupable type="0"
  12708. />
  12709. </product>
  12710. <product id="5R"
  12711. name="Ridekont 5R"
  12712. series="5"
  12713. latestVersion="1.0"
  12714. show = "0" >
  12715. <productMenu id="protocol"
  12716. type="3" >
  12717. </productMenu>
  12718. <productMenu id="sip"
  12719. type="1" >
  12720. </productMenu>
  12721. <productMenu id="bluetoothIntercom"
  12722. type="1" >
  12723. </productMenu>
  12724. <productMenu id="phone"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="fmradio"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="deviceSetting"
  12731. type="1"
  12732. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12733. </productMenu>
  12734. <productMenu id="quickGuide"
  12735. type="1"
  12736. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12737. size="934KB" >
  12738. </productMenu>
  12739. <productMenu id="userGuide"
  12740. type="1"
  12741. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12742. size="1.14MB" >
  12743. </productMenu>
  12744. <productID id="5593"
  12745. />
  12746. <productGroupable type="0"
  12747. />
  12748. </product>
  12749. <product id="5R"
  12750. name="Ridekont 5R LITE"
  12751. series="5"
  12752. latestVersion="1.0"
  12753. show = "0" >
  12754. <productMenu id="protocol"
  12755. type="3" >
  12756. </productMenu>
  12757. <productMenu id="sip"
  12758. type="1" >
  12759. </productMenu>
  12760. <productMenu id="bluetoothIntercom"
  12761. type="1" >
  12762. </productMenu>
  12763. <productMenu id="phone"
  12764. type="1" >
  12765. </productMenu>
  12766. <productMenu id="fmradio"
  12767. type="1" >
  12768. </productMenu>
  12769. <productMenu id="deviceSetting"
  12770. type="1"
  12771. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12772. </productMenu>
  12773. <productMenu id="quickGuide"
  12774. type="0"
  12775. url=""
  12776. size="934KB" >
  12777. </productMenu>
  12778. <productMenu id="userGuide"
  12779. type="1"
  12780. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12781. size="1.14MB" >
  12782. </productMenu>
  12783. <productID id="5594"
  12784. />
  12785. <productGroupable type="0"
  12786. />
  12787. </product>
  12788. <product id="SA30"
  12789. name="SA30"
  12790. series="SA"
  12791. latestVersion="1.0.3"
  12792. latestVersionVoicePrompt="0.15"
  12793. show = "-1" >
  12794. <productMenu id="protocol"
  12795. type="2" >
  12796. </productMenu>
  12797. <productMenu id="ota"
  12798. type="2" >
  12799. <otaPackages>
  12800. <package
  12801. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12802. size="3144148"
  12803. />
  12804. </otaPackages>
  12805. </productMenu>
  12806. <productMenu id="meshIntercom"
  12807. type="30" >
  12808. </productMenu>
  12809. <productMenu id="meshIntercom+"
  12810. type="3"
  12811. url="2" >
  12812. </productMenu>
  12813. <productMenu id="phone"
  12814. type="1" >
  12815. </productMenu>
  12816. <productMenu id="music"
  12817. type="1" >
  12818. </productMenu>
  12819. <productMenu id="musicSharing"
  12820. type="0" >
  12821. </productMenu>
  12822. <productMenu id="deviceSetting"
  12823. type="1"
  12824. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12825. </productMenu>
  12826. <productMenu id="quickGuide"
  12827. type="0"
  12828. url=""
  12829. size="1.12MB" >
  12830. </productMenu>
  12831. <productMenu id="userGuide"
  12832. type="1"
  12833. url=""
  12834. size="2.0MB" >
  12835. </productMenu>
  12836. <productMenu id="videoGuide"
  12837. type="0"
  12838. url=""
  12839. size="3.41MB" >
  12840. </productMenu>
  12841. <productMenu id="volume"
  12842. type="12" >
  12843. </productMenu>
  12844. <productMenu id="battery"
  12845. type="1" >
  12846. </productMenu>
  12847. <productID id="6852"
  12848. />
  12849. <productGroupable type="0"
  12850. />
  12851. </product>
  12852. <product id="I30"
  12853. name="I30"
  12854. series="I"
  12855. latestVersion="1.0.3"
  12856. latestVersionVoicePrompt="0.2"
  12857. show = "-1" >
  12858. <productMenu id="protocol"
  12859. type="2" >
  12860. </productMenu>
  12861. <productMenu id="ota"
  12862. type="2" >
  12863. <otaPackages>
  12864. <package
  12865. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12866. size="3144148"
  12867. />
  12868. </otaPackages>
  12869. </productMenu>
  12870. <productMenu id="meshIntercom"
  12871. type="30" >
  12872. </productMenu>
  12873. <productMenu id="meshIntercom+"
  12874. type="3"
  12875. url="2" >
  12876. </productMenu>
  12877. <productMenu id="phone"
  12878. type="1" >
  12879. </productMenu>
  12880. <productMenu id="music"
  12881. type="1" >
  12882. </productMenu>
  12883. <productMenu id="musicSharing"
  12884. type="0" >
  12885. </productMenu>
  12886. <productMenu id="deviceSetting"
  12887. type="1"
  12888. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12889. </productMenu>
  12890. <productMenu id="quickGuide"
  12891. type="0"
  12892. url=""
  12893. size="1.12MB" >
  12894. </productMenu>
  12895. <productMenu id="userGuide"
  12896. type="1"
  12897. url=""
  12898. size="2.10MB" >
  12899. </productMenu>
  12900. <productMenu id="videoGuide"
  12901. type="0"
  12902. url=""
  12903. size="3.11MB" >
  12904. </productMenu>
  12905. <productMenu id="volume"
  12906. type="12" >
  12907. </productMenu>
  12908. <productMenu id="battery"
  12909. type="1" >
  12910. </productMenu>
  12911. <productID id="6853"
  12912. />
  12913. <productGroupable type="0"
  12914. />
  12915. </product>
  12916. <product id="LS2C30"
  12917. name="LS2-C30"
  12918. series="C"
  12919. latestVersion="1.0"
  12920. latestVersionVoicePrompt="0.13"
  12921. show = "-1" >
  12922. <productMenu id="protocol"
  12923. type="2" >
  12924. </productMenu>
  12925. <productMenu id="ota"
  12926. type="0" >
  12927. <otaPackages>
  12928. <package
  12929. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12930. size="3144148"
  12931. />
  12932. </otaPackages>
  12933. </productMenu>
  12934. <productMenu id="meshIntercom+"
  12935. type="3"
  12936. url="2" >
  12937. </productMenu>
  12938. <productMenu id="waveIntercom"
  12939. type="1" >
  12940. </productMenu>
  12941. <productMenu id="phone"
  12942. type="1" >
  12943. </productMenu>
  12944. <productMenu id="music"
  12945. type="1" >
  12946. </productMenu>
  12947. <productMenu id="musicSharing"
  12948. type="0" >
  12949. </productMenu>
  12950. <productMenu id="deviceSetting"
  12951. type="1"
  12952. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12953. </productMenu>
  12954. <productMenu id="quickGuide"
  12955. type="0"
  12956. url=""
  12957. size="1.17MB" >
  12958. </productMenu>
  12959. <productMenu id="userGuide"
  12960. type="1"
  12961. url=""
  12962. size="2.0MB" >
  12963. </productMenu>
  12964. <productMenu id="videoGuide"
  12965. type="0"
  12966. url=""
  12967. size="3.41MB" >
  12968. </productMenu>
  12969. <productMenu id="volume"
  12970. type="12" >
  12971. </productMenu>
  12972. <productMenu id="battery"
  12973. type="1" >
  12974. </productMenu>
  12975. <productID id="685E"
  12976. />
  12977. <productGroupable type="0"
  12978. />
  12979. </product>
  12980. <product id="C30EVO"
  12981. name="C30 EVO"
  12982. series="C"
  12983. latestVersion="1.0"
  12984. latestVersionVoicePrompt="0.13"
  12985. show = "-1" >
  12986. <productMenu id="protocol"
  12987. type="2" >
  12988. </productMenu>
  12989. <productMenu id="ota"
  12990. type="0" >
  12991. <otaPackages>
  12992. <package
  12993. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12994. size="3144148"
  12995. />
  12996. </otaPackages>
  12997. </productMenu>
  12998. <productMenu id="meshIntercom+"
  12999. type="3"
  13000. url="2" >
  13001. </productMenu>
  13002. <productMenu id="waveIntercom"
  13003. type="1" >
  13004. </productMenu>
  13005. <productMenu id="phone"
  13006. type="1" >
  13007. </productMenu>
  13008. <productMenu id="music"
  13009. type="1" >
  13010. </productMenu>
  13011. <productMenu id="musicSharing"
  13012. type="0" >
  13013. </productMenu>
  13014. <productMenu id="deviceSetting"
  13015. type="1"
  13016. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13017. </productMenu>
  13018. <productMenu id="quickGuide"
  13019. type="0"
  13020. url=""
  13021. size="1.17MB" >
  13022. </productMenu>
  13023. <productMenu id="userGuide"
  13024. type="1"
  13025. url=""
  13026. size="2.0MB" >
  13027. </productMenu>
  13028. <productMenu id="videoGuide"
  13029. type="0"
  13030. url=""
  13031. size="3.41MB" >
  13032. </productMenu>
  13033. <productMenu id="volume"
  13034. type="12" >
  13035. </productMenu>
  13036. <productMenu id="battery"
  13037. type="1" >
  13038. </productMenu>
  13039. <productID id="685B"
  13040. />
  13041. <productGroupable type="0"
  13042. />
  13043. </product>
  13044. <product id="C30"
  13045. name="SENA C30"
  13046. series="C"
  13047. latestVersion="1.2.4"
  13048. latestVersionVoicePrompt="0.13"
  13049. show = "1" >
  13050. <productMenu id="protocol"
  13051. type="2" >
  13052. </productMenu>
  13053. <productMenu id="alexa"
  13054. type="0" >
  13055. </productMenu>
  13056. <productMenu id="ota"
  13057. type="2" >
  13058. <otaPackages>
  13059. <package
  13060. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13061. size="3144148"
  13062. />
  13063. </otaPackages>
  13064. </productMenu>
  13065. <productMenu id="wa"
  13066. type="0" >
  13067. </productMenu>
  13068. <productMenu id="meshIntercom"
  13069. type="30" >
  13070. </productMenu>
  13071. <productMenu id="meshIntercom+"
  13072. type="3"
  13073. url="2" >
  13074. <productMenuType version="1.0.9"
  13075. type="2"
  13076. />
  13077. </productMenu>
  13078. <productMenu id="waveIntercom"
  13079. type="1" >
  13080. <productMenuType version="1.1.9"
  13081. type="0"
  13082. />
  13083. </productMenu>
  13084. <productMenu id="phone"
  13085. type="1" >
  13086. </productMenu>
  13087. <productMenu id="music"
  13088. type="1" >
  13089. </productMenu>
  13090. <productMenu id="musicSharing"
  13091. type="0" >
  13092. </productMenu>
  13093. <productMenu id="deviceSetting"
  13094. type="1"
  13095. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13096. <productMenuURL version="1.1.3"
  13097. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13098. />
  13099. <productMenuURL version="1.0.9"
  13100. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13101. />
  13102. </productMenu>
  13103. <productMenu id="quickGuide"
  13104. type="1"
  13105. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13106. size="1.12MB" >
  13107. </productMenu>
  13108. <productMenu id="userGuide"
  13109. type="0"
  13110. url=""
  13111. size="2.0MB" >
  13112. </productMenu>
  13113. <productMenu id="videoGuide"
  13114. type="0"
  13115. url=""
  13116. size="3.41MB" >
  13117. </productMenu>
  13118. <productMenu id="volume"
  13119. type="12" >
  13120. </productMenu>
  13121. <productMenu id="battery"
  13122. type="1" >
  13123. </productMenu>
  13124. <productID id="683A"
  13125. />
  13126. <productGroupable type="0"
  13127. />
  13128. </product>
  13129. <product id="C20"
  13130. name="C20"
  13131. series="C"
  13132. latestVersion="1.0"
  13133. show = "1" >
  13134. <productMenu id="protocol"
  13135. type="3" >
  13136. </productMenu>
  13137. <productMenu id="sip"
  13138. type="1" >
  13139. </productMenu>
  13140. <productMenu id="bluetoothIntercom"
  13141. type="1" >
  13142. </productMenu>
  13143. <productMenu id="phone"
  13144. type="1" >
  13145. </productMenu>
  13146. <productMenu id="deviceSetting"
  13147. type="1"
  13148. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13149. </productMenu>
  13150. <productMenu id="quickGuide"
  13151. type="1"
  13152. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13153. size="934KB" >
  13154. </productMenu>
  13155. <productMenu id="userGuide"
  13156. type="1"
  13157. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13158. size="1.14MB" >
  13159. </productMenu>
  13160. <productID id="3701"
  13161. />
  13162. <productGroupable type="0"
  13163. />
  13164. </product>
  13165. <product id="C10"
  13166. name="C10"
  13167. series="C"
  13168. latestVersion="1.4.4"
  13169. show = "1" >
  13170. <productMenu id="protocol"
  13171. type="3" >
  13172. </productMenu>
  13173. <productMenu id="sip"
  13174. type="1" >
  13175. </productMenu>
  13176. <productMenu id="bluetoothIntercom"
  13177. type="1" >
  13178. </productMenu>
  13179. <productMenu id="phone"
  13180. type="1" >
  13181. </productMenu>
  13182. <productMenu id="fmradio"
  13183. type="0" >
  13184. </productMenu>
  13185. <productMenu id="deviceSetting"
  13186. type="1"
  13187. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13188. </productMenu>
  13189. <productMenu id="userGuide"
  13190. type="1"
  13191. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13192. size="1.14MB" >
  13193. </productMenu>
  13194. <productID id="5595"
  13195. />
  13196. <productGroupable type="0"
  13197. />
  13198. </product>
  13199. <product id="CA1"
  13200. name="CA1"
  13201. series="C"
  13202. latestVersion="0.2"
  13203. show = "-1" >
  13204. <productMenu id="protocol"
  13205. type="2" >
  13206. </productMenu>
  13207. <productMenu id="ota"
  13208. type="2" >
  13209. <otaPackages>
  13210. <package
  13211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13212. size="3144148"
  13213. />
  13214. </otaPackages>
  13215. </productMenu>
  13216. <productMenu id="phone"
  13217. type="1" >
  13218. </productMenu>
  13219. <productMenu id="music"
  13220. type="1" >
  13221. </productMenu>
  13222. <productMenu id="musicSharing"
  13223. type="0" >
  13224. </productMenu>
  13225. <productMenu id="deviceSetting"
  13226. type="1"
  13227. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13228. </productMenu>
  13229. <productMenu id="quickGuide"
  13230. type="1"
  13231. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13232. size="1.12MB" >
  13233. </productMenu>
  13234. <productMenu id="userGuide"
  13235. type="0"
  13236. url=""
  13237. size="2.0MB" >
  13238. </productMenu>
  13239. <productMenu id="videoGuide"
  13240. type="1"
  13241. url=""
  13242. size="3.41MB" >
  13243. </productMenu>
  13244. <productMenu id="volume"
  13245. type="12" >
  13246. </productMenu>
  13247. <productMenu id="battery"
  13248. type="1" >
  13249. </productMenu>
  13250. <productID id="5F01"
  13251. />
  13252. <productGroupable type="0"
  13253. />
  13254. </product>
  13255. <product id="J30"
  13256. name="J30"
  13257. series="J"
  13258. latestVersion="1.2.4"
  13259. latestVersionVoicePrompt="0.14"
  13260. show = "0" >
  13261. <productMenu id="protocol"
  13262. type="2" >
  13263. </productMenu>
  13264. <productMenu id="alexa"
  13265. type="0" >
  13266. </productMenu>
  13267. <productMenu id="ota"
  13268. type="2" >
  13269. <otaPackages>
  13270. <package
  13271. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13272. size="3144148"
  13273. />
  13274. </otaPackages>
  13275. </productMenu>
  13276. <productMenu id="wa"
  13277. type="0" >
  13278. </productMenu>
  13279. <productMenu id="meshIntercom"
  13280. type="30" >
  13281. </productMenu>
  13282. <productMenu id="meshIntercom+"
  13283. type="3"
  13284. url="2" >
  13285. <productMenuType version="1.0.9"
  13286. type="2"
  13287. />
  13288. </productMenu>
  13289. <productMenu id="waveIntercom"
  13290. type="1" >
  13291. <productMenuType version="1.1.9"
  13292. type="0"
  13293. />
  13294. </productMenu>
  13295. <productMenu id="phone"
  13296. type="1" >
  13297. </productMenu>
  13298. <productMenu id="music"
  13299. type="1" >
  13300. </productMenu>
  13301. <productMenu id="musicSharing"
  13302. type="0" >
  13303. </productMenu>
  13304. <productMenu id="deviceSetting"
  13305. type="1"
  13306. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13307. <productMenuURL version="1.0.9"
  13308. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13309. />
  13310. </productMenu>
  13311. <productMenu id="quickGuide"
  13312. type="0"
  13313. url=""
  13314. size="1.12MB" >
  13315. </productMenu>
  13316. <productMenu id="userGuide"
  13317. type="1"
  13318. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13319. size="2.0MB" >
  13320. </productMenu>
  13321. <productMenu id="videoGuide"
  13322. type="0"
  13323. url=""
  13324. size="3.41MB" >
  13325. </productMenu>
  13326. <productMenu id="volume"
  13327. type="12" >
  13328. </productMenu>
  13329. <productMenu id="battery"
  13330. type="1" >
  13331. </productMenu>
  13332. <productID id="6848"
  13333. />
  13334. <productGroupable type="0"
  13335. />
  13336. </product>
  13337. <product id="J10"
  13338. name="J10"
  13339. series="5"
  13340. latestVersion="1.1.4"
  13341. show = "0" >
  13342. <productMenu id="protocol"
  13343. type="3" >
  13344. </productMenu>
  13345. <productMenu id="sip"
  13346. type="1" >
  13347. </productMenu>
  13348. <productMenu id="bluetoothIntercom"
  13349. type="1" >
  13350. </productMenu>
  13351. <productMenu id="phone"
  13352. type="1" >
  13353. </productMenu>
  13354. <productMenu id="fmradio"
  13355. type="0" >
  13356. </productMenu>
  13357. <productMenu id="deviceSetting"
  13358. type="1"
  13359. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13360. </productMenu>
  13361. <productMenu id="userGuide"
  13362. type="1"
  13363. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13364. size="1.14MB" >
  13365. </productMenu>
  13366. <productID id="5598"
  13367. />
  13368. <productGroupable type="0"
  13369. />
  13370. </product>
  13371. <product id="B20"
  13372. name="B20"
  13373. series="B"
  13374. latestVersion="1.1.4"
  13375. latestVersionVoicePrompt="0.14"
  13376. show = "0" >
  13377. <productMenu id="protocol"
  13378. type="2" >
  13379. </productMenu>
  13380. <productMenu id="alexa"
  13381. type="0" >
  13382. </productMenu>
  13383. <productMenu id="ota"
  13384. type="2" >
  13385. <otaPackages>
  13386. <package
  13387. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13388. size="3144148"
  13389. />
  13390. </otaPackages>
  13391. </productMenu>
  13392. <productMenu id="wa"
  13393. type="0" >
  13394. </productMenu>
  13395. <productMenu id="meshIntercom"
  13396. type="30" >
  13397. </productMenu>
  13398. <productMenu id="phone"
  13399. type="1" >
  13400. </productMenu>
  13401. <productMenu id="music"
  13402. type="1" >
  13403. </productMenu>
  13404. <productMenu id="musicSharing"
  13405. type="0" >
  13406. </productMenu>
  13407. <productMenu id="deviceSetting"
  13408. type="1"
  13409. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13410. <productMenuURL version="1.0.9"
  13411. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13412. />
  13413. </productMenu>
  13414. <productMenu id="quickGuide"
  13415. type="0"
  13416. url=""
  13417. size="1.12MB" >
  13418. </productMenu>
  13419. <productMenu id="userGuide"
  13420. type="1"
  13421. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13422. size="2.0MB" >
  13423. </productMenu>
  13424. <productMenu id="videoGuide"
  13425. type="0"
  13426. url=""
  13427. size="3.41MB" >
  13428. </productMenu>
  13429. <productMenu id="volume"
  13430. type="12" >
  13431. </productMenu>
  13432. <productMenu id="battery"
  13433. type="1" >
  13434. </productMenu>
  13435. <productID id="6847"
  13436. />
  13437. <productGroupable type="0"
  13438. />
  13439. </product>
  13440. <product id="B10"
  13441. name="B10"
  13442. series="5"
  13443. latestVersion="1.2.4"
  13444. show = "0" >
  13445. <productMenu id="protocol"
  13446. type="3" >
  13447. </productMenu>
  13448. <productMenu id="sip"
  13449. type="1" >
  13450. </productMenu>
  13451. <productMenu id="bluetoothIntercom"
  13452. type="1" >
  13453. </productMenu>
  13454. <productMenu id="phone"
  13455. type="1" >
  13456. </productMenu>
  13457. <productMenu id="fmradio"
  13458. type="0" >
  13459. </productMenu>
  13460. <productMenu id="deviceSetting"
  13461. type="1"
  13462. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13463. </productMenu>
  13464. <productMenu id="userGuide"
  13465. type="1"
  13466. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13467. size="1.14MB" >
  13468. </productMenu>
  13469. <productID id="5596"
  13470. />
  13471. <productGroupable type="0"
  13472. />
  13473. </product>
  13474. <product id="E30"
  13475. name="E30"
  13476. series="E"
  13477. latestVersion="1.1.4"
  13478. latestVersionVoicePrompt="0.14"
  13479. show = "0" >
  13480. <productMenu id="protocol"
  13481. type="2" >
  13482. </productMenu>
  13483. <productMenu id="alexa"
  13484. type="0" >
  13485. </productMenu>
  13486. <productMenu id="ota"
  13487. type="2" >
  13488. <otaPackages>
  13489. <package
  13490. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13491. size="3144148"
  13492. />
  13493. </otaPackages>
  13494. </productMenu>
  13495. <productMenu id="wa"
  13496. type="0" >
  13497. </productMenu>
  13498. <productMenu id="meshIntercom"
  13499. type="30" >
  13500. </productMenu>
  13501. <productMenu id="meshIntercom+"
  13502. type="3"
  13503. url="2" >
  13504. </productMenu>
  13505. <productMenu id="waveIntercom"
  13506. type="1" >
  13507. <productMenuType version="1.0.9"
  13508. type="0"
  13509. />
  13510. </productMenu>
  13511. <productMenu id="phone"
  13512. type="1" >
  13513. </productMenu>
  13514. <productMenu id="music"
  13515. type="1" >
  13516. </productMenu>
  13517. <productMenu id="musicSharing"
  13518. type="0" >
  13519. </productMenu>
  13520. <productMenu id="deviceSetting"
  13521. type="1"
  13522. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13523. </productMenu>
  13524. <productMenu id="quickGuide"
  13525. type="0"
  13526. url=""
  13527. size="1.12MB" >
  13528. </productMenu>
  13529. <productMenu id="userGuide"
  13530. type="1"
  13531. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13532. size="2.0MB" >
  13533. </productMenu>
  13534. <productMenu id="videoGuide"
  13535. type="0"
  13536. url=""
  13537. size="3.41MB" >
  13538. </productMenu>
  13539. <productMenu id="volume"
  13540. type="12" >
  13541. </productMenu>
  13542. <productMenu id="battery"
  13543. type="1" >
  13544. </productMenu>
  13545. <productID id="6846"
  13546. />
  13547. <productGroupable type="0"
  13548. />
  13549. </product>
  13550. <product id="ACSRAM"
  13551. name="ACS-RAM"
  13552. series="ACS"
  13553. latestVersion="1.0.5"
  13554. show = "1" >
  13555. <productMenu id="protocol"
  13556. type="3" >
  13557. </productMenu>
  13558. <productMenu id="sip"
  13559. type="1" >
  13560. </productMenu>
  13561. <productMenu id="bluetoothIntercom"
  13562. type="1" >
  13563. </productMenu>
  13564. <productMenu id="deviceSetting"
  13565. type="1"
  13566. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13567. <productMenuURL version="1.0.9"
  13568. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13569. />
  13570. </productMenu>
  13571. <productMenu id="quickGuide"
  13572. type="1"
  13573. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13574. size="344KB" >
  13575. </productMenu>
  13576. <productMenu id="userGuide"
  13577. type="1"
  13578. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13579. size="1.14MB" >
  13580. </productMenu>
  13581. <productMenu id="connectGuide"
  13582. type="1"
  13583. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13584. size="1.12MB" >
  13585. </productMenu>
  13586. <productID id="3400"
  13587. />
  13588. <productGroupable type="0"
  13589. />
  13590. </product>
  13591. <product id="ACS10"
  13592. name="ACS10"
  13593. series="ACS"
  13594. latestVersion="1.0.2"
  13595. show = "1" >
  13596. <productMenu id="protocol"
  13597. type="0">
  13598. </productMenu>
  13599. <productMenu id="sip"
  13600. type="1" >
  13601. </productMenu>
  13602. <productMenu id="bluetoothIntercom"
  13603. type="1" >
  13604. </productMenu>
  13605. <productMenu id="phone"
  13606. type="2" >
  13607. </productMenu>
  13608. <productMenu id="deviceSetting"
  13609. type="1"
  13610. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13611. </productMenu>
  13612. <productMenu id="quickGuide"
  13613. type="1"
  13614. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13615. size="970KB" >
  13616. </productMenu>
  13617. <productMenu id="userGuide"
  13618. type="1"
  13619. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13620. size="1.26MB" >
  13621. </productMenu>
  13622. <productMenu id="connectGuide"
  13623. type="1"
  13624. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13625. size="1.12MB" >
  13626. </productMenu>
  13627. <productID id="3300"
  13628. />
  13629. <productGroupable type="0"
  13630. />
  13631. </product>
  13632. <product id="DWO7ProMesh"
  13633. name="DWO 7 Pro Mesh"
  13634. series="50"
  13635. latestVersion="1.1"
  13636. latestVersionVoicePrompt="0.9"
  13637. show = "0" >
  13638. <productMenu id="protocol"
  13639. type="2" >
  13640. </productMenu>
  13641. <productMenu id="alexa"
  13642. type="0" >
  13643. </productMenu>
  13644. <productMenu id="ota"
  13645. type="2" >
  13646. <otaPackages>
  13647. <package
  13648. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13649. size="2945812"
  13650. />
  13651. </otaPackages>
  13652. </productMenu>
  13653. <productMenu id="wa"
  13654. type="0" >
  13655. </productMenu>
  13656. <productMenu id="meshIntercom"
  13657. type="20" >
  13658. </productMenu>
  13659. <productMenu id="meshIntercom+"
  13660. type="3"
  13661. url="2" >
  13662. <productMenuType version="1.0.9"
  13663. type="2"
  13664. />
  13665. <productMenuURL version="2.1.1"
  13666. url="0"
  13667. />
  13668. </productMenu>
  13669. <productMenu id="waveIntercom"
  13670. type="1" >
  13671. <productMenuType version="1.0.9"
  13672. type="0"
  13673. />
  13674. </productMenu>
  13675. <productMenu id="phone"
  13676. type="1" >
  13677. </productMenu>
  13678. <productMenu id="music"
  13679. type="1" >
  13680. </productMenu>
  13681. <productMenu id="fmradio"
  13682. type="1" >
  13683. </productMenu>
  13684. <productMenu id="musicSharing"
  13685. type="0" >
  13686. </productMenu>
  13687. <productMenu id="deviceSetting"
  13688. type="1"
  13689. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13690. <productMenuURL version="1.0.9"
  13691. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13692. />
  13693. </productMenu>
  13694. <productMenu id="quickGuide"
  13695. type="1"
  13696. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13697. size="1.12MB" >
  13698. </productMenu>
  13699. <productMenu id="userGuide"
  13700. type="1"
  13701. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13702. size="2.0MB" >
  13703. </productMenu>
  13704. <productMenu id="volume"
  13705. type="12" >
  13706. </productMenu>
  13707. <productMenu id="battery"
  13708. type="1" >
  13709. </productMenu>
  13710. <productID id="6806"
  13711. />
  13712. <productGroupable type="0"
  13713. />
  13714. </product>
  13715. <product id="ERA1X"
  13716. name="ERA 1 X"
  13717. series="UCOM"
  13718. latestVersion="0.2.1"
  13719. latestVersionMesh="0.19"
  13720. latestVersionVoicePrompt="1.2"
  13721. show = "-1" >
  13722. <productMenu id="protocol"
  13723. type="2" >
  13724. </productMenu>
  13725. <productMenu id="ota"
  13726. type="2" >
  13727. <otaLanguages>
  13728. <otaLanguage
  13729. id="0"
  13730. name="English"
  13731. package="0"
  13732. />
  13733. <otaLanguage
  13734. id="0"
  13735. name="French"
  13736. package="1"
  13737. />
  13738. <otaLanguage
  13739. id="0"
  13740. name="Spanish"
  13741. package="2"
  13742. />
  13743. <otaLanguage
  13744. id="0"
  13745. name="Italian"
  13746. package="3"
  13747. />
  13748. <otaLanguage
  13749. id="0"
  13750. name="German"
  13751. package="4"
  13752. />
  13753. <otaLanguage
  13754. id="0"
  13755. name="Dutch"
  13756. package="5"
  13757. />
  13758. <otaLanguage
  13759. id="0"
  13760. name="Russian"
  13761. package="6"
  13762. />
  13763. <otaLanguage
  13764. id="0"
  13765. name="Chinese"
  13766. package="7"
  13767. />
  13768. <otaLanguage
  13769. id="0"
  13770. name="Korean"
  13771. package="8"
  13772. />
  13773. <otaLanguage
  13774. id="0"
  13775. name="Japanese"
  13776. package="9"
  13777. />
  13778. <otaLanguage
  13779. id="0"
  13780. name="Finnish"
  13781. package="10"
  13782. />
  13783. <otaLanguage
  13784. id="0"
  13785. name="Polish"
  13786. package="11"
  13787. />
  13788. <otaLanguage
  13789. id="0"
  13790. name="Czech"
  13791. package="12"
  13792. />
  13793. <otaLanguage
  13794. id="0"
  13795. name="Danish"
  13796. package="13"
  13797. />
  13798. <otaLanguage
  13799. id="0"
  13800. name="Norwegian"
  13801. package="14"
  13802. />
  13803. <otaLanguage
  13804. id="0"
  13805. name="Swedish"
  13806. package="15"
  13807. />
  13808. <otaLanguage
  13809. id="0"
  13810. name="Turkish"
  13811. package="16"
  13812. />
  13813. <otaLanguage
  13814. id="0"
  13815. name="Hungarian"
  13816. package="17"
  13817. />
  13818. <otaLanguage
  13819. id="0"
  13820. name="Portuguese"
  13821. package="18"
  13822. />
  13823. <otaLanguage
  13824. id="0"
  13825. name="Hebrew"
  13826. package="19"
  13827. />
  13828. <otaLanguage
  13829. id="0"
  13830. name="Greek"
  13831. package="20"
  13832. />
  13833. </otaLanguages>
  13834. <otaPackages>
  13835. <package
  13836. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13837. size="5183988"
  13838. />
  13839. <package
  13840. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13841. size="5183988"
  13842. />
  13843. <package
  13844. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13845. size="5183988"
  13846. />
  13847. <package
  13848. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13849. size="5183988"
  13850. />
  13851. <package
  13852. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13853. size="5183988"
  13854. />
  13855. <package
  13856. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13857. size="5183988"
  13858. />
  13859. <package
  13860. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13861. size="5183988"
  13862. />
  13863. <package
  13864. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13865. size="5183988"
  13866. />
  13867. <package
  13868. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13869. size="5183988"
  13870. />
  13871. <package
  13872. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13873. size="5183988"
  13874. />
  13875. <package
  13876. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13877. size="5183988"
  13878. />
  13879. <package
  13880. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13881. size="5183988"
  13882. />
  13883. <package
  13884. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13885. size="5183988"
  13886. />
  13887. <package
  13888. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13889. size="5183988"
  13890. />
  13891. <package
  13892. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13893. size="5183988"
  13894. />
  13895. <package
  13896. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13897. size="5183988"
  13898. />
  13899. <package
  13900. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13901. size="5183988"
  13902. />
  13903. <package
  13904. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13905. size="5183988"
  13906. />
  13907. <package
  13908. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13909. size="5183988"
  13910. />
  13911. <package
  13912. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13913. size="5183988"
  13914. />
  13915. <package
  13916. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13917. size="5183988"
  13918. />
  13919. </otaPackages>
  13920. </productMenu>
  13921. <productMenu id="wa"
  13922. type="0" >
  13923. </productMenu>
  13924. <productMenu id="sip"
  13925. type="1" >
  13926. </productMenu>
  13927. <productMenu id="led"
  13928. type="0" >
  13929. </productMenu>
  13930. <productMenu id="illusion"
  13931. type="1" >
  13932. </productMenu>
  13933. <productMenu id="meshIntercom"
  13934. type="30" >
  13935. </productMenu>
  13936. <productMenu id="meshIntercom+"
  13937. type="3"
  13938. url="2" >
  13939. </productMenu>
  13940. <productMenu id="waveIntercom"
  13941. type="0" >
  13942. </productMenu>
  13943. <productMenu id="bluetoothIntercom"
  13944. type="1" >
  13945. </productMenu>
  13946. <productMenu id="bluetoothIntercomGrouping"
  13947. type="0" >
  13948. </productMenu>
  13949. <productMenu id="fmradio"
  13950. type="1"
  13951. url="1" >
  13952. </productMenu>
  13953. <productMenu id="phone"
  13954. type="1" >
  13955. </productMenu>
  13956. <productMenu id="music"
  13957. type="1" >
  13958. </productMenu>
  13959. <productMenu id="musicSharing"
  13960. type="0" >
  13961. </productMenu>
  13962. <productMenu id="deviceSetting"
  13963. type="1"
  13964. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13965. </productMenu>
  13966. <productMenu id="quickGuide"
  13967. type="0"
  13968. url=""
  13969. size="1.12MB" >
  13970. </productMenu>
  13971. <productMenu id="userGuide"
  13972. type="1"
  13973. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13974. size="2.0MB" >
  13975. </productMenu>
  13976. <productMenu id="videoGuide"
  13977. type="0"
  13978. url=""
  13979. size="3.41MB" >
  13980. </productMenu>
  13981. <productMenu id="volume"
  13982. type="16" >
  13983. </productMenu>
  13984. <productMenu id="soundMode"
  13985. type="1" >
  13986. </productMenu>
  13987. <productMenu id="battery"
  13988. type="1" >
  13989. </productMenu>
  13990. <productID id="6A83"
  13991. />
  13992. <productGroupable type="0"
  13993. />
  13994. </product>
  13995. <product id="MeshStation"
  13996. name="Mesh Station"
  13997. series="50"
  13998. latestVersion="0.9"
  13999. show = "-1" >
  14000. <productMenu id="protocol"
  14001. type="2" >
  14002. </productMenu>
  14003. <productMenu id="meshIntercom"
  14004. type="20"
  14005. url="99" >
  14006. </productMenu>
  14007. <productID id="3161"
  14008. />
  14009. <productGroupable type="0"
  14010. />
  14011. </product>
  14012. </products>
  14013. </sna>