snm.xml 202 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20241009" appVer="2.14" iosAppVer="2.14" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url=""
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_WiFi_Adapter_3.0.0_en_220203.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_IMPULSE_1.2.0_en_220114.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Stryker_1.0.0_en_220114.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60"
  60. show="0"
  61. />
  62. <series id="50"
  63. name="50"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3"
  104. show="1"
  105. />
  106. <!--
  107. <series id="Cycling"
  108. name="Cycling"
  109. />
  110. <series id="sf"
  111. name="SF"
  112. />
  113. <series id="20"
  114. name="20"
  115. />
  116. <series id="smh"
  117. name="SMH"
  118. />
  119. <series id="10"
  120. name="10"
  121. />
  122. <series id="cavalry"
  123. name="CAVALRY"
  124. show="0"
  125. />
  126. <series id="5"
  127. name="5"
  128. />
  129. <series id="3"
  130. name="3"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60S"
  136. name="60S"
  137. series="60"
  138. latestVersion="0.6.6"
  139. latestVersionVoicePrompt="0.2"
  140. latestVersionMesh="0.8.1"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="2" >
  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. </otaLanguages>
  204. <otaPackages>
  205. <package
  206. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0.img"
  207. size="5183988"
  208. />
  209. <package
  210. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-fr-FR.img"
  211. size="5183988"
  212. />
  213. <package
  214. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-es-ES.img"
  215. size="5183988"
  216. />
  217. <package
  218. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-it-IT.img"
  219. size="5183988"
  220. />
  221. <package
  222. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-de-DE.img"
  223. size="5183988"
  224. />
  225. <package
  226. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-nl-NL.img"
  227. size="5183988"
  228. />
  229. <package
  230. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-ru-RU.img"
  231. size="5183988"
  232. />
  233. <package
  234. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-cmn-CN.img"
  235. size="5183988"
  236. />
  237. <package
  238. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-ko-KR.img"
  239. size="5183988"
  240. />
  241. <package
  242. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-ja-JP.img"
  243. size="5183988"
  244. />
  245. <package
  246. url="https://api.sena.com/support/test/OTATest/60S-v0.6.6-build0-fi-FI.img"
  247. size="5183988"
  248. />
  249. </otaPackages>
  250. </productMenu>
  251. <productMenu id="wa"
  252. type="0" >
  253. </productMenu>
  254. <productMenu id="sip"
  255. type="1" >
  256. </productMenu>
  257. <productMenu id="led"
  258. type="0" >
  259. </productMenu>
  260. <productMenu id="meshIntercom"
  261. type="30" >
  262. </productMenu>
  263. <productMenu id="bluetoothIntercom"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="fmradio"
  267. type="1" >
  268. </productMenu>
  269. <productMenu id="phone"
  270. type="1" >
  271. </productMenu>
  272. <productMenu id="music"
  273. type="1" >
  274. </productMenu>
  275. <productMenu id="musicSharing"
  276. type="0" >
  277. </productMenu>
  278. <productMenu id="deviceSetting"
  279. type="1"
  280. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_01.xml" >
  281. </productMenu>
  282. <productMenu id="quickGuide"
  283. type="1"
  284. url=""
  285. size="1.12MB" >
  286. </productMenu>
  287. <productMenu id="userGuide"
  288. type="1"
  289. url=""
  290. size="2.0MB" >
  291. </productMenu>
  292. <productMenu id="videoGuide"
  293. type="1"
  294. url=""
  295. size="3.41MB" >
  296. </productMenu>
  297. <productMenu id="volume"
  298. type="12" >
  299. </productMenu>
  300. <productMenu id="battery"
  301. type="1" >
  302. </productMenu>
  303. <productID id="6A02"
  304. />
  305. <productGroupable type="0"
  306. />
  307. </product>
  308. <product id="60R"
  309. name="60R"
  310. series="60"
  311. latestVersion="0.7"
  312. latestVersionMesh="0.8"
  313. latestVersionVoicePrompt="0.2"
  314. show = "-1" >
  315. <productMenu id="protocol"
  316. type="2" >
  317. </productMenu>
  318. <productMenu id="ota"
  319. type="2" >
  320. <otaLanguages>
  321. <otaLanguage
  322. id="0"
  323. name="English"
  324. package="0"
  325. />
  326. <otaLanguage
  327. id="0"
  328. name="Korean"
  329. package="1"
  330. />
  331. </otaLanguages>
  332. <otaPackages>
  333. <package
  334. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  335. size="5183988"
  336. />
  337. <package
  338. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  339. size="5183988"
  340. />
  341. </otaPackages>
  342. </productMenu>
  343. <productMenu id="wa"
  344. type="0" >
  345. </productMenu>
  346. <productMenu id="sip"
  347. type="1" >
  348. </productMenu>
  349. <productMenu id="led"
  350. type="1" >
  351. </productMenu>
  352. <productMenu id="meshIntercom"
  353. type="30" >
  354. </productMenu>
  355. <productMenu id="bluetoothIntercom"
  356. type="1" >
  357. </productMenu>
  358. <productMenu id="fmradio"
  359. type="1" >
  360. </productMenu>
  361. <productMenu id="phone"
  362. type="1" >
  363. </productMenu>
  364. <productMenu id="music"
  365. type="1" >
  366. </productMenu>
  367. <productMenu id="musicSharing"
  368. type="0" >
  369. </productMenu>
  370. <productMenu id="deviceSetting"
  371. type="1"
  372. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_01.xml" >
  373. </productMenu>
  374. <productMenu id="quickGuide"
  375. type="1"
  376. url=""
  377. size="1.12MB" >
  378. </productMenu>
  379. <productMenu id="userGuide"
  380. type="1"
  381. url=""
  382. size="2.0MB" >
  383. </productMenu>
  384. <productMenu id="videoGuide"
  385. type="1"
  386. url=""
  387. size="3.41MB" >
  388. </productMenu>
  389. <productMenu id="volume"
  390. type="12" >
  391. </productMenu>
  392. <productMenu id="battery"
  393. type="1" >
  394. </productMenu>
  395. <productID id="6A03"
  396. />
  397. <productGroupable type="0"
  398. />
  399. </product>
  400. <product id="COMP1"
  401. name="BMW COM P1"
  402. series="60"
  403. latestVersion="0.6rc0"
  404. latestVersionMesh="0.9"
  405. latestVersionVoicePrompt="0.3"
  406. show = "-1" >
  407. <productMenu id="protocol"
  408. type="2" >
  409. </productMenu>
  410. <productMenu id="ota"
  411. type="2" >
  412. <otaPackages>
  413. <package
  414. url="https://api.sena.com/support/test/BMW_COM_P1-v0.6rc0-build0.img"
  415. size="2945812"
  416. />
  417. </otaPackages>
  418. </productMenu>
  419. <productMenu id="wa"
  420. type="0" >
  421. </productMenu>
  422. <productMenu id="sip"
  423. type="1" >
  424. </productMenu>
  425. <productMenu id="led"
  426. type="1" >
  427. </productMenu>
  428. <productMenu id="meshIntercom"
  429. type="30" >
  430. </productMenu>
  431. <productMenu id="bluetoothIntercom"
  432. type="1" >
  433. </productMenu>
  434. <productMenu id="fmradio"
  435. type="1" >
  436. </productMenu>
  437. <productMenu id="phone"
  438. type="1" >
  439. </productMenu>
  440. <productMenu id="music"
  441. type="1" >
  442. </productMenu>
  443. <productMenu id="musicSharing"
  444. type="0" >
  445. </productMenu>
  446. <productMenu id="deviceSetting"
  447. type="1"
  448. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_01.xml" >
  449. </productMenu>
  450. <productMenu id="quickGuide"
  451. type="1"
  452. url=""
  453. size="1.12MB" >
  454. </productMenu>
  455. <productMenu id="userGuide"
  456. type="1"
  457. url=""
  458. size="2.0MB" >
  459. </productMenu>
  460. <productMenu id="videoGuide"
  461. type="1"
  462. url=""
  463. size="3.41MB" >
  464. </productMenu>
  465. <productMenu id="volume"
  466. type="12" >
  467. </productMenu>
  468. <productMenu id="battery"
  469. type="1" >
  470. </productMenu>
  471. <productID id="6A80"
  472. />
  473. <productGroupable type="0"
  474. />
  475. </product>
  476. <product id="50S"
  477. name="50S"
  478. series="50"
  479. latestVersion="2.5"
  480. show = "1" >
  481. <productMenu id="protocol"
  482. type="2" >
  483. </productMenu>
  484. <productMenu id="alexa"
  485. type="0" >
  486. </productMenu>
  487. <productMenu id="ota"
  488. type="0"
  489. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  490. size="1150234" >
  491. </productMenu>
  492. <productMenu id="wa"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="sip"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="meshIntercom"
  499. type="30" >
  500. <productMenuType version="2.1.1"
  501. type="20"
  502. />
  503. </productMenu>
  504. <productMenu id="bluetoothIntercom"
  505. type="1" >
  506. </productMenu>
  507. <productMenu id="phone"
  508. type="1" >
  509. </productMenu>
  510. <productMenu id="music"
  511. type="1" >
  512. </productMenu>
  513. <productMenu id="fmradio"
  514. type="1" >
  515. </productMenu>
  516. <productMenu id="deviceSetting"
  517. type="1"
  518. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  519. <productMenuURL version="2.1.1"
  520. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  521. />
  522. <productMenuURL version="2.0.3"
  523. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  524. />
  525. </productMenu>
  526. <productMenu id="quickGuide"
  527. type="1"
  528. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50S_2.3.0_en_230714.pdf"
  529. size="934KB" >
  530. </productMenu>
  531. <productMenu id="userGuide"
  532. type="1"
  533. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50S_2.5.0_en_240426.pdf"
  534. size="1.14MB" >
  535. </productMenu>
  536. <productMenu id="videoGuide"
  537. type="1"
  538. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  539. size="3.41MB" >
  540. </productMenu>
  541. <productMenu id="volume"
  542. type="11" >
  543. </productMenu>
  544. <productMenu id="battery"
  545. type="1" >
  546. </productMenu>
  547. <productID id="3210"
  548. />
  549. <productGroupable type="0"
  550. />
  551. </product>
  552. <product id="50S"
  553. name="50S"
  554. series="50"
  555. latestVersion="1.3.1"
  556. show = "0" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="alexa"
  561. type="0" >
  562. </productMenu>
  563. <productMenu id="wa"
  564. type="1" >
  565. </productMenu>
  566. <productMenu id="sip"
  567. type="1" >
  568. </productMenu>
  569. <productMenu id="meshIntercom"
  570. type="30" >
  571. <productMenuType version="1.2.2"
  572. type="20"
  573. />
  574. </productMenu>
  575. <productMenu id="bluetoothIntercom"
  576. type="1" >
  577. </productMenu>
  578. <productMenu id="phone"
  579. type="1" >
  580. </productMenu>
  581. <productMenu id="music"
  582. type="1" >
  583. </productMenu>
  584. <productMenu id="fmradio"
  585. type="1" >
  586. </productMenu>
  587. <productMenu id="deviceSetting"
  588. type="1"
  589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_AudioBoost_10.xml" >
  590. <productMenuURL version="1.3.9"
  591. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  592. />
  593. <productMenuURL version="1.2.2"
  594. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  595. />
  596. <productMenuURL version="1.1.1"
  597. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  598. />
  599. </productMenu>
  600. <productMenu id="quickGuide"
  601. type="1"
  602. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50S_1.6.0_en_230714.pdf"
  603. size="934KB" >
  604. </productMenu>
  605. <productMenu id="userGuide"
  606. type="1"
  607. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50S_1.8.0_en_230714.pdf"
  608. size="1.14MB" >
  609. </productMenu>
  610. <productMenu id="videoGuide"
  611. type="1"
  612. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  613. size="3.41MB" >
  614. </productMenu>
  615. <productMenu id="volume"
  616. type="11" >
  617. </productMenu>
  618. <productMenu id="battery"
  619. type="1" >
  620. </productMenu>
  621. <productID id="3132"
  622. />
  623. <productGroupable type="0"
  624. />
  625. </product>
  626. <product id="50R"
  627. name="50R"
  628. series="50"
  629. latestVersion="2.5"
  630. show = "1" >
  631. <productMenu id="protocol"
  632. type="2" >
  633. </productMenu>
  634. <productMenu id="alexa"
  635. type="0" >
  636. </productMenu>
  637. <productMenu id="ota"
  638. type="0"
  639. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  640. size="1150234" >
  641. </productMenu>
  642. <productMenu id="wa"
  643. type="1" >
  644. </productMenu>
  645. <productMenu id="sip"
  646. type="1" >
  647. </productMenu>
  648. <productMenu id="meshIntercom"
  649. type="30" >
  650. <productMenuType version="2.1.1"
  651. type="20"
  652. />
  653. </productMenu>
  654. <productMenu id="bluetoothIntercom"
  655. type="1" >
  656. </productMenu>
  657. <productMenu id="phone"
  658. type="1" >
  659. </productMenu>
  660. <productMenu id="music"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="fmradio"
  664. type="1" >
  665. </productMenu>
  666. <productMenu id="deviceSetting"
  667. type="1"
  668. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  669. <productMenuURL version="2.1.1"
  670. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  671. />
  672. <productMenuURL version="2.0"
  673. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  674. />
  675. </productMenu>
  676. <productMenu id="quickGuide"
  677. type="1"
  678. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50R_2.3.0_en_240621.pdf"
  679. size="344KB" >
  680. </productMenu>
  681. <productMenu id="userGuide"
  682. type="1"
  683. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50R_2.4.0_en_240621.pdf"
  684. size="3.41MB" >
  685. </productMenu>
  686. <productMenu id="videoGuide"
  687. type="1"
  688. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  689. size="3.41MB" >
  690. </productMenu>
  691. <productMenu id="volume"
  692. type="11" >
  693. </productMenu>
  694. <productMenu id="battery"
  695. type="1" >
  696. </productMenu>
  697. <productID id="3218"
  698. />
  699. <productGroupable type="0"
  700. />
  701. </product>
  702. <product id="50R"
  703. name="50R"
  704. series="50"
  705. latestVersion="1.3.1"
  706. show = "0" >
  707. <productMenu id="protocol"
  708. type="2" >
  709. </productMenu>
  710. <productMenu id="alexa"
  711. type="0" >
  712. </productMenu>
  713. <productMenu id="wa"
  714. type="1" >
  715. </productMenu>
  716. <productMenu id="sip"
  717. type="1" >
  718. </productMenu>
  719. <productMenu id="meshIntercom"
  720. type="30" >
  721. <productMenuType version="1.2.2"
  722. type="20"
  723. />
  724. </productMenu>
  725. <productMenu id="bluetoothIntercom"
  726. type="1" >
  727. </productMenu>
  728. <productMenu id="phone"
  729. type="1" >
  730. </productMenu>
  731. <productMenu id="music"
  732. type="1" >
  733. </productMenu>
  734. <productMenu id="fmradio"
  735. type="1" >
  736. </productMenu>
  737. <productMenu id="deviceSetting"
  738. type="1"
  739. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_AudioBoost_10.xml" >
  740. <productMenuURL version="1.3.9"
  741. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  742. />
  743. <productMenuURL version="1.2.2"
  744. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  745. />
  746. <productMenuURL version="1.1.1"
  747. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  748. />
  749. </productMenu>
  750. <productMenu id="quickGuide"
  751. type="1"
  752. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50R_1.6.0_en_230713.pdf"
  753. size="344KB" >
  754. </productMenu>
  755. <productMenu id="userGuide"
  756. type="1"
  757. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50R_1.8.0_en_230713.pdf"
  758. size="3.41MB" >
  759. </productMenu>
  760. <productMenu id="videoGuide"
  761. type="1"
  762. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  763. size="3.41MB" >
  764. </productMenu>
  765. <productMenu id="volume"
  766. type="11" >
  767. </productMenu>
  768. <productMenu id="battery"
  769. type="1" >
  770. </productMenu>
  771. <productID id="3134"
  772. />
  773. <productGroupable type="0"
  774. />
  775. </product>
  776. <product id="50C"
  777. name="50C"
  778. series="50"
  779. latestVersion="1.2.3"
  780. show = "1" >
  781. <productMenu id="protocol"
  782. type="2" >
  783. </productMenu>
  784. <productMenu id="ota"
  785. type="0" >
  786. </productMenu>
  787. <productMenu id="wa"
  788. type="1" >
  789. </productMenu>
  790. <productMenu id="sip"
  791. type="1" >
  792. </productMenu>
  793. <productMenu id="meshIntercom"
  794. type="30" >
  795. <productMenuType version="1.1.1"
  796. type="20"
  797. />
  798. </productMenu>
  799. <productMenu id="bluetoothIntercom"
  800. type="1" >
  801. </productMenu>
  802. <productMenu id="phone"
  803. type="1" >
  804. </productMenu>
  805. <productMenu id="music"
  806. type="1" >
  807. </productMenu>
  808. <productMenu id="fmradio"
  809. type="1" >
  810. </productMenu>
  811. <productMenu id="deviceSetting"
  812. type="1"
  813. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  814. <productMenuURL version="1.1.1"
  815. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  816. />
  817. <productMenuURL version="1.0.1"
  818. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  819. />
  820. </productMenu>
  821. <productMenu id="quickGuide"
  822. type="1"
  823. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_50C_1.3.0_en_230712.pdf"
  824. size="344KB" >
  825. </productMenu>
  826. <productMenu id="userGuide"
  827. type="1"
  828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_50C_1.4.0_en_230712.pdf"
  829. size="3.41MB" >
  830. </productMenu>
  831. <productMenu id="volume"
  832. type="11" >
  833. </productMenu>
  834. <productMenu id="battery"
  835. type="1" >
  836. </productMenu>
  837. <productID id="3232"
  838. />
  839. <productGroupable type="0"
  840. />
  841. </product>
  842. <product id="PHANTOM"
  843. name="PHANTOM"
  844. series="SPIDER"
  845. latestVersion="0.7.2"
  846. latestVersionVoicePrompt="0.2"
  847. show = "-1" >
  848. <productMenu id="protocol"
  849. type="2" >
  850. </productMenu>
  851. <productMenu id="ota"
  852. type="2" >
  853. <productMenuType version="0.6.9"
  854. type="0"
  855. />
  856. <otaLanguages>
  857. <otaLanguage
  858. id="0"
  859. name="English"
  860. package="0"
  861. />
  862. <otaLanguage
  863. id="0"
  864. name="French"
  865. package="1"
  866. />
  867. <otaLanguage
  868. id="0"
  869. name="Spanish"
  870. package="2"
  871. />
  872. <otaLanguage
  873. id="0"
  874. name="Italian"
  875. package="3"
  876. />
  877. <otaLanguage
  878. id="0"
  879. name="German"
  880. package="4"
  881. />
  882. <otaLanguage
  883. id="0"
  884. name="Dutch"
  885. package="5"
  886. />
  887. <otaLanguage
  888. id="0"
  889. name="Russian"
  890. package="6"
  891. />
  892. <otaLanguage
  893. id="0"
  894. name="Chinese"
  895. package="7"
  896. />
  897. <otaLanguage
  898. id="0"
  899. name="Korean"
  900. package="8"
  901. />
  902. <otaLanguage
  903. id="0"
  904. name="Japanese"
  905. package="9"
  906. />
  907. <otaLanguage
  908. id="0"
  909. name="Finnish"
  910. package="10"
  911. />
  912. </otaLanguages>
  913. <otaPackages>
  914. <package
  915. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0.img"
  916. size="5183988"
  917. />
  918. <package
  919. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-fr-FR.img"
  920. size="5183988"
  921. />
  922. <package
  923. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-es-ES.img"
  924. size="5183988"
  925. />
  926. <package
  927. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-it-IT.img"
  928. size="5183988"
  929. />
  930. <package
  931. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-de-DE.img"
  932. size="5183988"
  933. />
  934. <package
  935. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-nl-NL.img"
  936. size="5183988"
  937. />
  938. <package
  939. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-ru-RU.img"
  940. size="5183988"
  941. />
  942. <package
  943. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-cmn-CN.img"
  944. size="5183988"
  945. />
  946. <package
  947. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-ko-KR.img"
  948. size="5183988"
  949. />
  950. <package
  951. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-ja-JP.img"
  952. size="5183988"
  953. />
  954. <package
  955. url="https://api.sena.com/support/test/OTATest/PHANTOM-v0.7.2-build0-fi-FI.img"
  956. size="5183988"
  957. />
  958. </otaPackages>
  959. </productMenu>
  960. <productMenu id="wa"
  961. type="0" >
  962. </productMenu>
  963. <productMenu id="led"
  964. type="3" >
  965. </productMenu>
  966. <productMenu id="meshIntercom"
  967. type="30" >
  968. </productMenu>
  969. <productMenu id="fmradio"
  970. type="0" >
  971. </productMenu>
  972. <productMenu id="phone"
  973. type="1" >
  974. </productMenu>
  975. <productMenu id="music"
  976. type="1" >
  977. </productMenu>
  978. <productMenu id="musicSharing"
  979. type="0" >
  980. </productMenu>
  981. <productMenu id="deviceSetting"
  982. type="1"
  983. url="https://api.sena.com/support/test/xml/NS_PHANTOM_OTATest_01.xml" >
  984. </productMenu>
  985. <productMenu id="quickGuide"
  986. type="1"
  987. url=""
  988. size="1.12MB" >
  989. </productMenu>
  990. <productMenu id="userGuide"
  991. type="1"
  992. url=""
  993. size="2.0MB" >
  994. </productMenu>
  995. <productMenu id="videoGuide"
  996. type="1"
  997. url=""
  998. size="3.41MB" >
  999. </productMenu>
  1000. <productMenu id="volume"
  1001. type="12" >
  1002. </productMenu>
  1003. <productMenu id="battery"
  1004. type="1" >
  1005. </productMenu>
  1006. <productID id="6A01"
  1007. />
  1008. <productGroupable type="0"
  1009. />
  1010. </product>
  1011. <product id="Impulse"
  1012. name="Impulse"
  1013. series="Helmet"
  1014. latestVersion="1.2.2"
  1015. show = "1" >
  1016. <productMenu id="protocol"
  1017. type="2" >
  1018. </productMenu>
  1019. <productMenu id="alexa"
  1020. type="0" >
  1021. </productMenu>
  1022. <productMenu id="ota"
  1023. type="0" >
  1024. </productMenu>
  1025. <productMenu id="wa"
  1026. type="8" >
  1027. </productMenu>
  1028. <productMenu id="manager"
  1029. type="0" >
  1030. </productMenu>
  1031. <productMenu id="sip"
  1032. type="1" >
  1033. </productMenu>
  1034. <productMenu id="led"
  1035. type="1" >
  1036. <productMenuType version="1.0.1"
  1037. type="2"
  1038. />
  1039. <productMenuType version="1.0"
  1040. type="1"
  1041. />
  1042. </productMenu>
  1043. <productMenu id="meshIntercom"
  1044. type="30" >
  1045. <productMenuType version="1.1.1"
  1046. type="20"
  1047. />
  1048. </productMenu>
  1049. <productMenu id="bluetoothIntercom"
  1050. type="1" >
  1051. </productMenu>
  1052. <productMenu id="phone"
  1053. type="1" >
  1054. </productMenu>
  1055. <productMenu id="music"
  1056. type="1" >
  1057. </productMenu>
  1058. <productMenu id="fmradio"
  1059. type="1" >
  1060. </productMenu>
  1061. <productMenu id="deviceSetting"
  1062. type="1"
  1063. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml" >
  1064. <productMenuURL version="1.1.1"
  1065. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1066. />
  1067. <productMenuURL version="1.0.4"
  1068. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1069. />
  1070. </productMenu>
  1071. <productMenu id="quickGuide"
  1072. type="1"
  1073. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.5.0_en_230727.pdf"
  1074. size="344KB" >
  1075. </productMenu>
  1076. <productMenu id="userGuide"
  1077. type="1"
  1078. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.8.0_en_230727.pdf"
  1079. size="3.41MB" >
  1080. </productMenu>
  1081. <productMenu id="volume"
  1082. type="11" >
  1083. </productMenu>
  1084. <productMenu id="battery"
  1085. type="1" >
  1086. </productMenu>
  1087. <productID id="3148"
  1088. />
  1089. <productGroupable type="0"
  1090. />
  1091. </product>
  1092. <product id="Impulse"
  1093. name="Impulse"
  1094. series="Helmet"
  1095. latestVersion="2.0"
  1096. show = "0" >
  1097. <productMenu id="protocol"
  1098. type="2" >
  1099. </productMenu>
  1100. <productMenu id="alexa"
  1101. type="0" >
  1102. </productMenu>
  1103. <productMenu id="ota"
  1104. type="0" >
  1105. </productMenu>
  1106. <productMenu id="wa"
  1107. type="8" >
  1108. </productMenu>
  1109. <productMenu id="manager"
  1110. type="0" >
  1111. </productMenu>
  1112. <productMenu id="sip"
  1113. type="1" >
  1114. </productMenu>
  1115. <productMenu id="led"
  1116. type="3" >
  1117. </productMenu>
  1118. <productMenu id="meshIntercom"
  1119. type="20" >
  1120. </productMenu>
  1121. <productMenu id="bluetoothIntercom"
  1122. type="1" >
  1123. </productMenu>
  1124. <productMenu id="phone"
  1125. type="1" >
  1126. </productMenu>
  1127. <productMenu id="music"
  1128. type="1" >
  1129. </productMenu>
  1130. <productMenu id="fmradio"
  1131. type="1" >
  1132. </productMenu>
  1133. <productMenu id="deviceSetting"
  1134. type="1"
  1135. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  1136. </productMenu>
  1137. <productMenu id="quickGuide"
  1138. type="1"
  1139. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  1140. size="344KB" >
  1141. </productMenu>
  1142. <productMenu id="userGuide"
  1143. type="1"
  1144. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  1145. size="3.41MB" >
  1146. </productMenu>
  1147. <productMenu id="volume"
  1148. type="11" >
  1149. </productMenu>
  1150. <productMenu id="battery"
  1151. type="1" >
  1152. </productMenu>
  1153. <productID id="3221"
  1154. />
  1155. <productGroupable type="0"
  1156. />
  1157. </product>
  1158. <product id="Stryker"
  1159. name="Stryker"
  1160. series="Helmet"
  1161. latestVersion="1.2.2"
  1162. show = "1" >
  1163. <productMenu id="protocol"
  1164. type="2" >
  1165. </productMenu>
  1166. <productMenu id="alexa"
  1167. type="0" >
  1168. </productMenu>
  1169. <productMenu id="ota"
  1170. type="0" >
  1171. </productMenu>
  1172. <productMenu id="wa"
  1173. type="8" >
  1174. </productMenu>
  1175. <productMenu id="manager"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="sip"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="led"
  1182. type="1" >
  1183. <productMenuType version="1.0.1"
  1184. type="2"
  1185. />
  1186. <productMenuType version="1.0"
  1187. type="1"
  1188. />
  1189. </productMenu>
  1190. <productMenu id="meshIntercom"
  1191. type="30" >
  1192. <productMenuType version="1.1.1"
  1193. type="20"
  1194. />
  1195. </productMenu>
  1196. <productMenu id="bluetoothIntercom"
  1197. type="1" >
  1198. </productMenu>
  1199. <productMenu id="phone"
  1200. type="1" >
  1201. </productMenu>
  1202. <productMenu id="music"
  1203. type="1" >
  1204. </productMenu>
  1205. <productMenu id="fmradio"
  1206. type="1" >
  1207. </productMenu>
  1208. <productMenu id="deviceSetting"
  1209. type="1"
  1210. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml" >
  1211. <productMenuURL version="1.1.1"
  1212. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1213. />
  1214. <productMenuURL version="1.0.4"
  1215. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1216. />
  1217. </productMenu>
  1218. <productMenu id="quickGuide"
  1219. type="1"
  1220. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_STRYKER_1.3.0_en_230727.pdf"
  1221. size="344KB" >
  1222. </productMenu>
  1223. <productMenu id="userGuide"
  1224. type="1"
  1225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_STRYKER_1.5.0_en_230727.pdf"
  1226. size="3.41MB" >
  1227. </productMenu>
  1228. <productMenu id="volume"
  1229. type="11" >
  1230. </productMenu>
  1231. <productMenu id="battery"
  1232. type="1" >
  1233. </productMenu>
  1234. <productID id="3154"
  1235. />
  1236. <productGroupable type="0"
  1237. />
  1238. </product>
  1239. <product id="SRL3"
  1240. name="SRL3"
  1241. series="SRL"
  1242. latestVersion="1.2"
  1243. show = "1" >
  1244. <productMenu id="protocol"
  1245. type="2" >
  1246. </productMenu>
  1247. <productMenu id="alexa"
  1248. type="0" >
  1249. </productMenu>
  1250. <productMenu id="ota"
  1251. type="0" >
  1252. </productMenu>
  1253. <productMenu id="wa"
  1254. type="1" >
  1255. </productMenu>
  1256. <productMenu id="sip"
  1257. type="1" >
  1258. </productMenu>
  1259. <productMenu id="meshIntercom"
  1260. type="30" >
  1261. </productMenu>
  1262. <productMenu id="bluetoothIntercom"
  1263. type="1" >
  1264. </productMenu>
  1265. <productMenu id="phone"
  1266. type="1" >
  1267. </productMenu>
  1268. <productMenu id="music"
  1269. type="1" >
  1270. </productMenu>
  1271. <productMenu id="fmradio"
  1272. type="1" >
  1273. </productMenu>
  1274. <productMenu id="deviceSetting"
  1275. type="1"
  1276. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  1277. </productMenu>
  1278. <productMenu id="quickGuide"
  1279. type="1"
  1280. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL3_1.0.0_en_230623.pdf"
  1281. size="344KB" >
  1282. </productMenu>
  1283. <productMenu id="userGuide"
  1284. type="1"
  1285. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL3_1.0.0_en_230627.pdf"
  1286. size="3.41MB" >
  1287. </productMenu>
  1288. <productMenu id="volume"
  1289. type="11" >
  1290. </productMenu>
  1291. <productMenu id="battery"
  1292. type="1" >
  1293. </productMenu>
  1294. <productID id="3219"
  1295. />
  1296. <productGroupable type="0"
  1297. />
  1298. </product>
  1299. <product id="SRL_Mesh"
  1300. name="SRL-Mesh"
  1301. series="SRL"
  1302. latestVersion="1.4"
  1303. show = "1" >
  1304. <productMenu id="protocol"
  1305. type="2" >
  1306. </productMenu>
  1307. <productMenu id="alexa"
  1308. type="0" >
  1309. </productMenu>
  1310. <productMenu id="ota"
  1311. type="0" >
  1312. </productMenu>
  1313. <productMenu id="wa"
  1314. type="1" >
  1315. </productMenu>
  1316. <productMenu id="sip"
  1317. type="1" >
  1318. </productMenu>
  1319. <productMenu id="meshIntercom"
  1320. type="30" >
  1321. <productMenuType version="1.1.1"
  1322. type="20"
  1323. />
  1324. </productMenu>
  1325. <productMenu id="bluetoothIntercom"
  1326. type="1" >
  1327. </productMenu>
  1328. <productMenu id="phone"
  1329. type="1" >
  1330. </productMenu>
  1331. <productMenu id="music"
  1332. type="1" >
  1333. </productMenu>
  1334. <productMenu id="fmradio"
  1335. type="1" >
  1336. </productMenu>
  1337. <productMenu id="deviceSetting"
  1338. type="1"
  1339. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  1340. <productMenuURL version="1.1.1"
  1341. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1342. />
  1343. <productMenuURL version="1.0.3"
  1344. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1345. />
  1346. </productMenu>
  1347. <productMenu id="quickGuide"
  1348. type="1"
  1349. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL-Mesh_1.2.0_en_230713.pdf"
  1350. size="344KB" >
  1351. </productMenu>
  1352. <productMenu id="userGuide"
  1353. type="1"
  1354. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL-Mesh_1.3.0_en_230713.pdf"
  1355. size="3.41MB" >
  1356. </productMenu>
  1357. <productMenu id="volume"
  1358. type="11" >
  1359. </productMenu>
  1360. <productMenu id="battery"
  1361. type="1" >
  1362. </productMenu>
  1363. <productID id="3216"
  1364. />
  1365. <productGroupable type="0"
  1366. />
  1367. </product>
  1368. <product id="SRL_EXT"
  1369. name="SRL-EXT"
  1370. series="SRL"
  1371. latestVersion="1.4"
  1372. show = "1" >
  1373. <productMenu id="protocol"
  1374. type="2" >
  1375. </productMenu>
  1376. <productMenu id="alexa"
  1377. type="0" >
  1378. </productMenu>
  1379. <productMenu id="ota"
  1380. type="0" >
  1381. </productMenu>
  1382. <productMenu id="wa"
  1383. type="0" >
  1384. </productMenu>
  1385. <productMenu id="sip"
  1386. type="1" >
  1387. </productMenu>
  1388. <productMenu id="meshIntercom"
  1389. type="30" >
  1390. <productMenuType version="1.1.1"
  1391. type="20"
  1392. />
  1393. </productMenu>
  1394. <productMenu id="bluetoothIntercom"
  1395. type="1" >
  1396. </productMenu>
  1397. <productMenu id="phone"
  1398. type="1" >
  1399. </productMenu>
  1400. <productMenu id="music"
  1401. type="1" >
  1402. </productMenu>
  1403. <productMenu id="fmradio"
  1404. type="1" >
  1405. </productMenu>
  1406. <productMenu id="deviceSetting"
  1407. type="1"
  1408. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml" >
  1409. <productMenuURL version="1.1.1"
  1410. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1411. />
  1412. <productMenuURL version="1.0.3"
  1413. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1414. />
  1415. </productMenu>
  1416. <productMenu id="quickGuide"
  1417. type="1"
  1418. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL-EXT_1.2.0_en_230714.pdf"
  1419. size="344KB" >
  1420. </productMenu>
  1421. <productMenu id="userGuide"
  1422. type="1"
  1423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL-EXT_1.3.0_en_230714.pdf"
  1424. size="3.41MB" >
  1425. </productMenu>
  1426. <productMenu id="volume"
  1427. type="11" >
  1428. </productMenu>
  1429. <productMenu id="battery"
  1430. type="1" >
  1431. </productMenu>
  1432. <productID id="3212"
  1433. />
  1434. <productGroupable type="0"
  1435. />
  1436. </product>
  1437. <product id="SRL2"
  1438. name="SRL2"
  1439. series="SRL"
  1440. latestVersion="1.0.9"
  1441. show = "1" >
  1442. <productMenu id="protocol"
  1443. type="0">
  1444. </productMenu>
  1445. <productMenu id="sip"
  1446. type="1" >
  1447. </productMenu>
  1448. <productMenu id="bluetoothIntercom"
  1449. type="1" >
  1450. </productMenu>
  1451. <productMenu id="intercomSetting"
  1452. type="1" >
  1453. </productMenu>
  1454. <productMenu id="phone"
  1455. type="2" >
  1456. </productMenu>
  1457. <productMenu id="fmradio"
  1458. type="3" >
  1459. </productMenu>
  1460. <productMenu id="deviceSetting"
  1461. type="1"
  1462. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1463. </productMenu>
  1464. <productMenu id="quickGuide"
  1465. type="1"
  1466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  1467. size="846KB" >
  1468. </productMenu>
  1469. <productMenu id="userGuide"
  1470. type="1"
  1471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  1472. size="1.18MB" >
  1473. </productMenu>
  1474. <productID id="4530"
  1475. />
  1476. <productGroupable type="1"
  1477. />
  1478. </product>
  1479. <product id="Neotec2"
  1480. name="SRL Neotec2"
  1481. series="SRL"
  1482. latestVersion="1.1.5"
  1483. show = "1" >
  1484. <productMenu id="protocol"
  1485. type="0">
  1486. </productMenu>
  1487. <productMenu id="sip"
  1488. type="1" >
  1489. </productMenu>
  1490. <productMenu id="bluetoothIntercom"
  1491. type="1" >
  1492. </productMenu>
  1493. <productMenu id="intercomSetting"
  1494. type="1" >
  1495. </productMenu>
  1496. <productMenu id="phone"
  1497. type="2" >
  1498. </productMenu>
  1499. <productMenu id="fmradio"
  1500. type="3" >
  1501. </productMenu>
  1502. <productMenu id="deviceSetting"
  1503. type="1"
  1504. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  1505. </productMenu>
  1506. <productMenu id="quickGuide"
  1507. type="1"
  1508. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1509. size="796KB" >
  1510. </productMenu>
  1511. <productMenu id="userGuide"
  1512. type="1"
  1513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.0_en_220922.pdf"
  1514. size="1.90MB" >
  1515. </productMenu>
  1516. <productID id="4510"
  1517. />
  1518. <productGroupable type="1"
  1519. />
  1520. </product>
  1521. <product id="SPIDERST2ANC"
  1522. name="SPIDER ST2 ANC"
  1523. series="SPIDER"
  1524. latestVersion="0.5.1"
  1525. latestVersionVoicePrompt="0.2"
  1526. latestVersionMesh="0.8"
  1527. show = "-1" >
  1528. <productMenu id="protocol"
  1529. type="2" >
  1530. </productMenu>
  1531. <productMenu id="ota"
  1532. type="0" >
  1533. <otaPackages>
  1534. <package
  1535. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  1536. size="2945812"
  1537. />
  1538. </otaPackages>
  1539. </productMenu>
  1540. <productMenu id="wa"
  1541. type="0" >
  1542. </productMenu>
  1543. <productMenu id="led"
  1544. type="1" >
  1545. </productMenu>
  1546. <productMenu id="meshIntercom"
  1547. type="30" >
  1548. </productMenu>
  1549. <productMenu id="fmradio"
  1550. type="1" >
  1551. </productMenu>
  1552. <productMenu id="phone"
  1553. type="1" >
  1554. </productMenu>
  1555. <productMenu id="music"
  1556. type="1" >
  1557. </productMenu>
  1558. <productMenu id="musicSharing"
  1559. type="0" >
  1560. </productMenu>
  1561. <productMenu id="deviceSetting"
  1562. type="1"
  1563. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_01.xml" >
  1564. </productMenu>
  1565. <productMenu id="quickGuide"
  1566. type="1"
  1567. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  1568. size="1.12MB" >
  1569. </productMenu>
  1570. <productMenu id="userGuide"
  1571. type="1"
  1572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  1573. size="2.0MB" >
  1574. </productMenu>
  1575. <productMenu id="videoGuide"
  1576. type="1"
  1577. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1578. size="3.41MB" >
  1579. </productMenu>
  1580. <productMenu id="volume"
  1581. type="12" >
  1582. </productMenu>
  1583. <productMenu id="battery"
  1584. type="1" >
  1585. </productMenu>
  1586. <productID id="6A00"
  1587. />
  1588. <productGroupable type="0"
  1589. />
  1590. </product>
  1591. <product id="SPIDER_ST1"
  1592. name="SPIDER ST1"
  1593. series="SPIDER"
  1594. latestVersion="2.2.2"
  1595. latestVersionVoicePrompt="0.8"
  1596. show = "1" >
  1597. <productMenu id="protocol"
  1598. type="2" >
  1599. </productMenu>
  1600. <productMenu id="alexa"
  1601. type="0" >
  1602. </productMenu>
  1603. <productMenu id="ota"
  1604. type="2" >
  1605. <productMenuType version="2.1.9"
  1606. type="0"
  1607. />
  1608. <otaPackages>
  1609. <package
  1610. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.2.2-build1.img"
  1611. size="2945812"
  1612. />
  1613. </otaPackages>
  1614. </productMenu>
  1615. <productMenu id="wa"
  1616. type="0" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. <productMenuType version="2.1.1"
  1621. type="20"
  1622. />
  1623. </productMenu>
  1624. <productMenu id="phone"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="music"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="musicSharing"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="deviceSetting"
  1634. type="1"
  1635. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml" >
  1636. <productMenuURL version="2.1.1"
  1637. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  1638. />
  1639. </productMenu>
  1640. <productMenu id="quickGuide"
  1641. type="1"
  1642. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  1643. size="1.12MB" >
  1644. </productMenu>
  1645. <productMenu id="userGuide"
  1646. type="1"
  1647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  1648. size="2.0MB" >
  1649. </productMenu>
  1650. <productMenu id="videoGuide"
  1651. type="1"
  1652. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1653. size="3.41MB" >
  1654. </productMenu>
  1655. <productMenu id="volume"
  1656. type="12" >
  1657. </productMenu>
  1658. <productMenu id="battery"
  1659. type="1" >
  1660. </productMenu>
  1661. <productID id="6800"
  1662. />
  1663. <productGroupable type="0"
  1664. />
  1665. </product>
  1666. <product id="SPIDER_ST1"
  1667. name="SPIDER ST1"
  1668. series="SPIDER"
  1669. latestVersion="1.2.2"
  1670. show = "0" >
  1671. <productMenu id="protocol"
  1672. type="2" >
  1673. </productMenu>
  1674. <productMenu id="alexa"
  1675. type="0" >
  1676. </productMenu>
  1677. <productMenu id="ota"
  1678. type="0" >
  1679. </productMenu>
  1680. <productMenu id="wa"
  1681. type="0" >
  1682. </productMenu>
  1683. <productMenu id="meshIntercom"
  1684. type="20" >
  1685. </productMenu>
  1686. <productMenu id="phone"
  1687. type="1" >
  1688. </productMenu>
  1689. <productMenu id="music"
  1690. type="1" >
  1691. </productMenu>
  1692. <productMenu id="deviceSetting"
  1693. type="1"
  1694. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1695. </productMenu>
  1696. <productMenu id="quickGuide"
  1697. type="1"
  1698. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  1699. size="1.12MB" >
  1700. </productMenu>
  1701. <productMenu id="userGuide"
  1702. type="1"
  1703. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  1704. size="2.0MB" >
  1705. </productMenu>
  1706. <productMenu id="videoGuide"
  1707. type="1"
  1708. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1709. size="3.41MB" >
  1710. </productMenu>
  1711. <productMenu id="volume"
  1712. type="13" >
  1713. <productMenuType version="1.1.6"
  1714. type="14"/>
  1715. </productMenu>
  1716. <productMenu id="battery"
  1717. type="1" >
  1718. </productMenu>
  1719. <productID id="6510"
  1720. />
  1721. <productGroupable type="0"
  1722. />
  1723. </product>
  1724. <product id="SPIDER_RT1"
  1725. name="SPIDER RT1"
  1726. series="SPIDER"
  1727. latestVersion="2.2.2"
  1728. latestVersionVoicePrompt="0.8"
  1729. show = "1" >
  1730. <productMenu id="protocol"
  1731. type="2" >
  1732. </productMenu>
  1733. <productMenu id="alexa"
  1734. type="0" >
  1735. </productMenu>
  1736. <productMenu id="ota"
  1737. type="2" >
  1738. <productMenuType version="2.1.9"
  1739. type="0"
  1740. />
  1741. <otaPackages>
  1742. <package
  1743. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.2.2-build1.img"
  1744. size="2945812"
  1745. />
  1746. </otaPackages>
  1747. </productMenu>
  1748. <productMenu id="wa"
  1749. type="0" >
  1750. </productMenu>
  1751. <productMenu id="meshIntercom"
  1752. type="30" >
  1753. <productMenuType version="2.1.1"
  1754. type="20"
  1755. />
  1756. </productMenu>
  1757. <productMenu id="phone"
  1758. type="1" >
  1759. </productMenu>
  1760. <productMenu id="music"
  1761. type="1" >
  1762. </productMenu>
  1763. <productMenu id="musicSharing"
  1764. type="0" >
  1765. </productMenu>
  1766. <productMenu id="deviceSetting"
  1767. type="1"
  1768. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml" >
  1769. <productMenuURL version="2.1.1"
  1770. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  1771. />
  1772. </productMenu>
  1773. <productMenu id="quickGuide"
  1774. type="1"
  1775. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_2.3.0_en_231205.pdf"
  1776. size="1.12MB" >
  1777. </productMenu>
  1778. <productMenu id="userGuide"
  1779. type="1"
  1780. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_2.4.0_en_231204.pdf"
  1781. size="2.0MB" >
  1782. </productMenu>
  1783. <productMenu id="videoGuide"
  1784. type="1"
  1785. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1786. size="3.41MB" >
  1787. </productMenu>
  1788. <productMenu id="volume"
  1789. type="12" >
  1790. </productMenu>
  1791. <productMenu id="battery"
  1792. type="1" >
  1793. </productMenu>
  1794. <productID id="6810"
  1795. />
  1796. <productGroupable type="0"
  1797. />
  1798. </product>
  1799. <product id="SPIDER_RT1"
  1800. name="SPIDER RT1"
  1801. series="SPIDER"
  1802. latestVersion="1.2.2"
  1803. show = "0" >
  1804. <productMenu id="protocol"
  1805. type="2" >
  1806. </productMenu>
  1807. <productMenu id="alexa"
  1808. type="0" >
  1809. </productMenu>
  1810. <productMenu id="ota"
  1811. type="0" >
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="meshIntercom"
  1817. type="20" >
  1818. </productMenu>
  1819. <productMenu id="phone"
  1820. type="1" >
  1821. </productMenu>
  1822. <productMenu id="music"
  1823. type="1" >
  1824. </productMenu>
  1825. <productMenu id="deviceSetting"
  1826. type="1"
  1827. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  1828. </productMenu>
  1829. <productMenu id="quickGuide"
  1830. type="1"
  1831. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  1832. size="1.32MB" >
  1833. </productMenu>
  1834. <productMenu id="userGuide"
  1835. type="1"
  1836. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  1837. size="1.79MB" >
  1838. </productMenu>
  1839. <productMenu id="videoGuide"
  1840. type="1"
  1841. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1842. size="3.41MB" >
  1843. </productMenu>
  1844. <productMenu id="volume"
  1845. type="13" >
  1846. <productMenuType version="1.1.6"
  1847. type="14"/>
  1848. </productMenu>
  1849. <productMenu id="battery"
  1850. type="1" >
  1851. </productMenu>
  1852. <productID id="6500"
  1853. />
  1854. <productGroupable type="0"
  1855. />
  1856. </product>
  1857. <product id="30K"
  1858. name="30K"
  1859. series="30"
  1860. latestVersion="4.2"
  1861. show = "1" >
  1862. <productMenu id="protocol"
  1863. type="2" >
  1864. </productMenu>
  1865. <productMenu id="alexa"
  1866. type="0" >
  1867. </productMenu>
  1868. <productMenu id="wa"
  1869. type="1" >
  1870. </productMenu>
  1871. <productMenu id="sip"
  1872. type="1" >
  1873. </productMenu>
  1874. <productMenu id="meshIntercom"
  1875. type="30" >
  1876. <productMenuType version="4.0.4"
  1877. type="20"
  1878. />
  1879. </productMenu>
  1880. <productMenu id="bluetoothIntercom"
  1881. type="1" >
  1882. </productMenu>
  1883. <productMenu id="phone"
  1884. type="1" >
  1885. </productMenu>
  1886. <productMenu id="music"
  1887. type="1" >
  1888. </productMenu>
  1889. <productMenu id="fmradio"
  1890. type="1" >
  1891. </productMenu>
  1892. <productMenu id="deviceSetting"
  1893. type="1"
  1894. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml" >
  1895. <productMenuURL version="4.2"
  1896. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  1897. />
  1898. <productMenuURL version="4.0.4"
  1899. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  1900. />
  1901. </productMenu>
  1902. <productMenu id="quickGuide"
  1903. type="1"
  1904. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_3.2.0_en_230714.pdf"
  1905. size="934KB" >
  1906. </productMenu>
  1907. <productMenu id="userGuide"
  1908. type="1"
  1909. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_4.3.0_en_230714.pdf"
  1910. size="1.14MB" >
  1911. </productMenu>
  1912. <productMenu id="volume"
  1913. type="11" >
  1914. </productMenu>
  1915. <productMenu id="battery"
  1916. type="1" >
  1917. </productMenu>
  1918. <productID id="3211"
  1919. />
  1920. <productGroupable type="0"
  1921. />
  1922. </product>
  1923. <product id="30K"
  1924. name="30K"
  1925. series="30"
  1926. latestVersion="3.4"
  1927. show = "0" >
  1928. <productMenu id="protocol"
  1929. type="1"
  1930. url="0">
  1931. </productMenu>
  1932. <productMenu id="wa"
  1933. type="7" >
  1934. </productMenu>
  1935. <productMenu id="sip"
  1936. type="1" >
  1937. </productMenu>
  1938. <productMenu id="meshIntercom"
  1939. type="20" >
  1940. <productMenuType version="2.9.9"
  1941. type="10"
  1942. />
  1943. </productMenu>
  1944. <productMenu id="bluetoothIntercom"
  1945. type="1" >
  1946. </productMenu>
  1947. <productMenu id="phone"
  1948. type="1" >
  1949. </productMenu>
  1950. <productMenu id="music"
  1951. type="1" >
  1952. </productMenu>
  1953. <productMenu id="fmradio"
  1954. type="1" >
  1955. </productMenu>
  1956. <productMenu id="deviceSetting"
  1957. type="1"
  1958. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml">
  1959. <productMenuURL version="3.3.1"
  1960. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  1961. />
  1962. <productMenuURL version="3.0.1"
  1963. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  1964. />
  1965. <productMenuURL version="2.3.1"
  1966. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  1967. />
  1968. <productMenuURL version="2.0"
  1969. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  1970. />
  1971. <productMenuURL version="1.0.3"
  1972. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  1973. />
  1974. </productMenu>
  1975. <productMenu id="quickGuide"
  1976. type="1"
  1977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_2.4.0_en_230714.pdf"
  1978. size="1.06MB" >
  1979. </productMenu>
  1980. <productMenu id="userGuide"
  1981. type="1"
  1982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.0_en_230714.pdf"
  1983. size="3.15MB" >
  1984. </productMenu>
  1985. <productMenu id="volume"
  1986. type="1" >
  1987. </productMenu>
  1988. <productID id="3110"
  1989. />
  1990. <productGroupable type="0"
  1991. />
  1992. </product>
  1993. <product id="FURY"
  1994. name="FURY"
  1995. series="Helmet"
  1996. latestVersion="1.0"
  1997. show = "0" >
  1998. <productMenu id="protocol"
  1999. type="2" >
  2000. </productMenu>
  2001. <productMenu id="alexa"
  2002. type="0" >
  2003. </productMenu>
  2004. <productMenu id="ota"
  2005. type="0" >
  2006. </productMenu>
  2007. <productMenu id="wa"
  2008. type="0" >
  2009. </productMenu>
  2010. <productMenu id="meshIntercom"
  2011. type="20" >
  2012. </productMenu>
  2013. <productMenu id="phone"
  2014. type="1" >
  2015. </productMenu>
  2016. <productMenu id="music"
  2017. type="1" >
  2018. </productMenu>
  2019. <productMenu id="fmradio"
  2020. type="1" >
  2021. </productMenu>
  2022. <productMenu id="deviceSetting"
  2023. type="1"
  2024. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  2025. </productMenu>
  2026. <productMenu id="quickGuide"
  2027. type="1"
  2028. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2029. size="1.12MB" >
  2030. </productMenu>
  2031. <productMenu id="userGuide"
  2032. type="1"
  2033. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2034. size="2.0MB" >
  2035. </productMenu>
  2036. <productMenu id="volume"
  2037. type="13" >
  2038. </productMenu>
  2039. <productMenu id="battery"
  2040. type="1" >
  2041. </productMenu>
  2042. <productID id="5552"
  2043. />
  2044. <productGroupable type="0"
  2045. />
  2046. </product>
  2047. <product id="MomentumM"
  2048. name="Momentum EVO"
  2049. series="Helmet"
  2050. latestVersion="2.1.2"
  2051. show = "1" >
  2052. <productMenu id="protocol"
  2053. type="1"
  2054. url="0">
  2055. </productMenu>
  2056. <productMenu id="wa"
  2057. type="3" >
  2058. </productMenu>
  2059. <productMenu id="sip"
  2060. type="1" >
  2061. </productMenu>
  2062. <productMenu id="meshIntercom"
  2063. type="20" >
  2064. <productMenuType version="1.9.9"
  2065. type="10"
  2066. />
  2067. </productMenu>
  2068. <productMenu id="bluetoothIntercom"
  2069. type="1" >
  2070. </productMenu>
  2071. <productMenu id="phone"
  2072. type="1" >
  2073. </productMenu>
  2074. <productMenu id="music"
  2075. type="1" >
  2076. </productMenu>
  2077. <productMenu id="fmradio"
  2078. type="1" >
  2079. </productMenu>
  2080. <productMenu id="deviceSetting"
  2081. type="1"
  2082. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  2083. <productMenuURL version="1.0.1"
  2084. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  2085. />
  2086. </productMenu>
  2087. <productMenu id="quickGuide"
  2088. type="1"
  2089. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  2090. size="1.06MB" >
  2091. </productMenu>
  2092. <productMenu id="userGuide"
  2093. type="1"
  2094. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  2095. size="3.15MB" >
  2096. </productMenu>
  2097. <productMenu id="volume"
  2098. type="2" >
  2099. </productMenu>
  2100. <productID id="3116"
  2101. />
  2102. <productGroupable type="0"
  2103. />
  2104. </product>
  2105. <product id="Momentum"
  2106. name="Momentum"
  2107. series="Helmet"
  2108. latestVersion="1.0.9"
  2109. show = "1" >
  2110. <productMenu id="protocol"
  2111. type="0">
  2112. </productMenu>
  2113. <productMenu id="sip"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="bluetoothIntercom"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="intercomSetting"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="phone"
  2123. type="2" >
  2124. </productMenu>
  2125. <productMenu id="fmradio"
  2126. type="3" >
  2127. </productMenu>
  2128. <productMenu id="deviceSetting"
  2129. type="1"
  2130. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2131. </productMenu>
  2132. <productMenu id="quickGuide"
  2133. type="1"
  2134. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  2135. size="796KB" >
  2136. </productMenu>
  2137. <productMenu id="userGuide"
  2138. type="1"
  2139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  2140. size="1.90MB" >
  2141. </productMenu>
  2142. <productID id="4310"
  2143. />
  2144. <productGroupable type="1"
  2145. />
  2146. </product>
  2147. <product id="Momentum_Pro"
  2148. name="Momentum Pro"
  2149. series="Helmet"
  2150. latestVersion="1.0.6"
  2151. show = "1" >
  2152. <productMenu id="protocol"
  2153. type="0">
  2154. </productMenu>
  2155. <productMenu id="sip"
  2156. type="1" >
  2157. </productMenu>
  2158. <productMenu id="bluetoothIntercom"
  2159. type="1" >
  2160. </productMenu>
  2161. <productMenu id="intercomSetting"
  2162. type="1" >
  2163. </productMenu>
  2164. <productMenu id="phone"
  2165. type="2" >
  2166. </productMenu>
  2167. <productMenu id="fmradio"
  2168. type="3" >
  2169. </productMenu>
  2170. <productMenu id="deviceSetting"
  2171. type="1"
  2172. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2173. </productMenu>
  2174. <productMenu id="quickGuide"
  2175. type="1"
  2176. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  2177. size="796KB" >
  2178. </productMenu>
  2179. <productMenu id="userGuide"
  2180. type="1"
  2181. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  2182. size="1.90MB" >
  2183. </productMenu>
  2184. <productID id="4330"
  2185. />
  2186. <productGroupable type="1"
  2187. />
  2188. </product>
  2189. <product id="Momentum_INC"
  2190. name="Momentum INC"
  2191. series="Helmet"
  2192. latestVersion="1.0.7"
  2193. show = "1" >
  2194. <productMenu id="protocol"
  2195. type="0">
  2196. </productMenu>
  2197. <productMenu id="sip"
  2198. type="1" >
  2199. </productMenu>
  2200. <productMenu id="bluetoothIntercom"
  2201. type="1" >
  2202. </productMenu>
  2203. <productMenu id="intercomSetting"
  2204. type="1" >
  2205. </productMenu>
  2206. <productMenu id="phone"
  2207. type="2" >
  2208. </productMenu>
  2209. <productMenu id="fmradio"
  2210. type="3" >
  2211. </productMenu>
  2212. <productMenu id="deviceSetting"
  2213. type="1"
  2214. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2215. </productMenu>
  2216. <productMenu id="quickGuide"
  2217. type="1"
  2218. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  2219. size="794KB" >
  2220. </productMenu>
  2221. <productMenu id="userGuide"
  2222. type="1"
  2223. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  2224. size="1.53MB" >
  2225. </productMenu>
  2226. <productID id="4410"
  2227. />
  2228. <productGroupable type="1"
  2229. />
  2230. </product>
  2231. <product id="Momentum_INCP"
  2232. name="Momentum INC Pro"
  2233. series="Helmet"
  2234. latestVersion="1.0.4"
  2235. show = "1" >
  2236. <productMenu id="protocol"
  2237. type="0">
  2238. </productMenu>
  2239. <productMenu id="sip"
  2240. type="1" >
  2241. </productMenu>
  2242. <productMenu id="bluetoothIntercom"
  2243. type="1" >
  2244. </productMenu>
  2245. <productMenu id="intercomSetting"
  2246. type="1" >
  2247. </productMenu>
  2248. <productMenu id="phone"
  2249. type="2" >
  2250. </productMenu>
  2251. <productMenu id="fmradio"
  2252. type="3" >
  2253. </productMenu>
  2254. <productMenu id="deviceSetting"
  2255. type="1"
  2256. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2257. </productMenu>
  2258. <productMenu id="quickGuide"
  2259. type="1"
  2260. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  2261. size="794KB" >
  2262. </productMenu>
  2263. <productMenu id="userGuide"
  2264. type="1"
  2265. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  2266. size="1.53MB" >
  2267. </productMenu>
  2268. <productID id="4430"
  2269. />
  2270. <productGroupable type="1"
  2271. />
  2272. </product>
  2273. <product id="Momentum_Lite"
  2274. name="Momentum Lite"
  2275. series="Helmet"
  2276. latestVersion="2.0.3"
  2277. show = "1" >
  2278. <productMenu id="protocol"
  2279. type="0">
  2280. </productMenu>
  2281. <productMenu id="sip"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="bluetoothIntercom"
  2285. type="1" >
  2286. </productMenu>
  2287. <productMenu id="phone"
  2288. type="2" >
  2289. </productMenu>
  2290. <productMenu id="fmradio"
  2291. type="3" >
  2292. </productMenu>
  2293. <productMenu id="deviceSetting"
  2294. type="1"
  2295. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2296. <productMenuURL version="1.1"
  2297. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  2298. />
  2299. </productMenu>
  2300. <productMenu id="quickGuide"
  2301. type="1"
  2302. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  2303. size="790KB" >
  2304. </productMenu>
  2305. <productMenu id="userGuide"
  2306. type="1"
  2307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  2308. size="1.42MB" >
  2309. </productMenu>
  2310. <productID id="5526"
  2311. />
  2312. <productGroupable type="0"
  2313. />
  2314. </product>
  2315. <product id="OUTRUSHM"
  2316. name="OUTRUSH M"
  2317. series="Helmet"
  2318. latestVersion="1.0"
  2319. show = "0" >
  2320. <productMenu id="protocol"
  2321. type="2" >
  2322. </productMenu>
  2323. <productMenu id="alexa"
  2324. type="0" >
  2325. </productMenu>
  2326. <productMenu id="ota"
  2327. type="0" >
  2328. </productMenu>
  2329. <productMenu id="wa"
  2330. type="0" >
  2331. </productMenu>
  2332. <productMenu id="meshIntercom"
  2333. type="30" >
  2334. </productMenu>
  2335. <productMenu id="phone"
  2336. type="1" >
  2337. </productMenu>
  2338. <productMenu id="music"
  2339. type="1" >
  2340. </productMenu>
  2341. <productMenu id="fmradio"
  2342. type="1" >
  2343. </productMenu>
  2344. <productMenu id="deviceSetting"
  2345. type="1"
  2346. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  2347. </productMenu>
  2348. <productMenu id="quickGuide"
  2349. type="1"
  2350. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2351. size="1.12MB" >
  2352. </productMenu>
  2353. <productMenu id="userGuide"
  2354. type="1"
  2355. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2356. size="2.0MB" >
  2357. </productMenu>
  2358. <productMenu id="volume"
  2359. type="13" >
  2360. </productMenu>
  2361. <productMenu id="battery"
  2362. type="1" >
  2363. </productMenu>
  2364. <productID id="5600"
  2365. />
  2366. <productGroupable type="0"
  2367. />
  2368. </product>
  2369. <product id="ProRideEVO"
  2370. name="ProRide EVO"
  2371. series="Helmet"
  2372. latestVersion="1.1.2"
  2373. show = "1" >
  2374. <productMenu id="protocol"
  2375. type="0">
  2376. </productMenu>
  2377. <productMenu id="sip"
  2378. type="1" >
  2379. </productMenu>
  2380. <productMenu id="bluetoothIntercom"
  2381. type="1" >
  2382. </productMenu>
  2383. <productMenu id="phone"
  2384. type="2" >
  2385. </productMenu>
  2386. <productMenu id="fmradio"
  2387. type="3" >
  2388. </productMenu>
  2389. <productMenu id="deviceSetting"
  2390. type="1"
  2391. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  2392. </productMenu>
  2393. <productMenu id="userGuide"
  2394. type="1"
  2395. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  2396. size="778KB" >
  2397. </productMenu>
  2398. <productID id="5426"
  2399. />
  2400. <productGroupable type="0"
  2401. />
  2402. </product>
  2403. <product id="OUTRUSHR"
  2404. name="OUTRUSH R"
  2405. series="Helmet"
  2406. latestVersion="2.0"
  2407. show = "0" >
  2408. <productMenu id="protocol"
  2409. type="3" >
  2410. </productMenu>
  2411. <productMenu id="sip"
  2412. type="1" >
  2413. </productMenu>
  2414. <productMenu id="bluetoothIntercom"
  2415. type="1" >
  2416. </productMenu>
  2417. <productMenu id="phone"
  2418. type="1" >
  2419. </productMenu>
  2420. <productMenu id="fmradio"
  2421. type="0" >
  2422. </productMenu>
  2423. <productMenu id="deviceSetting"
  2424. type="1"
  2425. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_01.xml" >
  2426. </productMenu>
  2427. <productMenu id="userGuide"
  2428. type="1"
  2429. url=""
  2430. size="1.14MB" >
  2431. </productMenu>
  2432. <productID id="5440"
  2433. />
  2434. <productGroupable type="0"
  2435. />
  2436. </product>
  2437. <product id="OUTRUSHR"
  2438. name="OUTRUSH R"
  2439. series="Helmet"
  2440. latestVersion="1.1.3"
  2441. show = "1" >
  2442. <productMenu id="protocol"
  2443. type="0">
  2444. </productMenu>
  2445. <productMenu id="sip"
  2446. type="1" >
  2447. </productMenu>
  2448. <productMenu id="bluetoothIntercom"
  2449. type="1" >
  2450. </productMenu>
  2451. <productMenu id="phone"
  2452. type="2" >
  2453. </productMenu>
  2454. <productMenu id="fmradio"
  2455. type="3" >
  2456. </productMenu>
  2457. <productMenu id="deviceSetting"
  2458. type="1"
  2459. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  2460. </productMenu>
  2461. <productMenu id="userGuide"
  2462. type="1"
  2463. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH_R_1.2.0_en_230705.pdf"
  2464. size="660KB" >
  2465. </productMenu>
  2466. <productID id="5424"
  2467. />
  2468. <productGroupable type="0"
  2469. />
  2470. </product>
  2471. <product id="OUTSTARS"
  2472. name="OUTSTAR S"
  2473. series="Helmet"
  2474. latestVersion="1.1.3"
  2475. show = "1" >
  2476. <productMenu id="protocol"
  2477. type="0">
  2478. </productMenu>
  2479. <productMenu id="sip"
  2480. type="1" >
  2481. </productMenu>
  2482. <productMenu id="bluetoothIntercom"
  2483. type="1" >
  2484. </productMenu>
  2485. <productMenu id="phone"
  2486. type="2" >
  2487. </productMenu>
  2488. <productMenu id="fmradio"
  2489. type="3" >
  2490. </productMenu>
  2491. <productMenu id="deviceSetting"
  2492. type="1"
  2493. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2494. </productMenu>
  2495. <productMenu id="quickGuide"
  2496. type="1"
  2497. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2498. size="643KB" >
  2499. </productMenu>
  2500. <productMenu id="userGuide"
  2501. type="1"
  2502. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2503. size="1.15MB" >
  2504. </productMenu>
  2505. <productID id="5428"
  2506. />
  2507. <productGroupable type="0"
  2508. />
  2509. </product>
  2510. <product id="OUTRIDE"
  2511. name="OUTRIDE"
  2512. series="Helmet"
  2513. latestVersion="1.0.1"
  2514. show = "1" >
  2515. <productMenu id="protocol"
  2516. type="0">
  2517. </productMenu>
  2518. <productMenu id="sip"
  2519. type="1" >
  2520. </productMenu>
  2521. <productMenu id="bluetoothIntercom"
  2522. type="1" >
  2523. </productMenu>
  2524. <productMenu id="phone"
  2525. type="2" >
  2526. </productMenu>
  2527. <productMenu id="fmradio"
  2528. type="3" >
  2529. </productMenu>
  2530. <productMenu id="deviceSetting"
  2531. type="1"
  2532. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2533. </productMenu>
  2534. <productMenu id="quickGuide"
  2535. type="1"
  2536. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  2537. size="643KB" >
  2538. </productMenu>
  2539. <productMenu id="userGuide"
  2540. type="1"
  2541. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  2542. size="660KB" >
  2543. </productMenu>
  2544. <productID id="5432"
  2545. />
  2546. <productGroupable type="0"
  2547. />
  2548. </product>
  2549. <product id="OUTFORCE"
  2550. name="OUTFORCE"
  2551. series="Helmet"
  2552. latestVersion="1.0.1"
  2553. show = "1" >
  2554. <productMenu id="protocol"
  2555. type="0">
  2556. </productMenu>
  2557. <productMenu id="sip"
  2558. type="1" >
  2559. </productMenu>
  2560. <productMenu id="bluetoothIntercom"
  2561. type="1" >
  2562. </productMenu>
  2563. <productMenu id="phone"
  2564. type="2" >
  2565. </productMenu>
  2566. <productMenu id="fmradio"
  2567. type="3" >
  2568. </productMenu>
  2569. <productMenu id="deviceSetting"
  2570. type="1"
  2571. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2572. </productMenu>
  2573. <productMenu id="quickGuide"
  2574. type="1"
  2575. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  2576. size="643KB" >
  2577. </productMenu>
  2578. <productMenu id="userGuide"
  2579. type="1"
  2580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  2581. size="660KB" >
  2582. </productMenu>
  2583. <productID id="5430"
  2584. />
  2585. <productGroupable type="0"
  2586. />
  2587. </product>
  2588. <product id="Rumba"
  2589. name="Rumba"
  2590. series="30"
  2591. latestVersion="2.0"
  2592. show = "0" >
  2593. <productMenu id="protocol"
  2594. type="3" >
  2595. </productMenu>
  2596. <productMenu id="sip"
  2597. type="1" >
  2598. </productMenu>
  2599. <productMenu id="bluetoothIntercom"
  2600. type="1" >
  2601. </productMenu>
  2602. <productMenu id="deviceSetting"
  2603. type="1"
  2604. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  2605. </productMenu>
  2606. <productMenu id="quickGuide"
  2607. type="1"
  2608. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  2609. size="344KB" >
  2610. </productMenu>
  2611. <productMenu id="userGuide"
  2612. type="1"
  2613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  2614. size="1.14MB" >
  2615. </productMenu>
  2616. <productID id="6322"
  2617. />
  2618. <productGroupable type="0"
  2619. />
  2620. </product>
  2621. <product id="Savage"
  2622. name="Savage"
  2623. series="Helmet"
  2624. latestVersion="1.2.2"
  2625. show = "1" >
  2626. <productMenu id="protocol"
  2627. type="0">
  2628. </productMenu>
  2629. <productMenu id="sip"
  2630. type="1" >
  2631. </productMenu>
  2632. <productMenu id="bluetoothIntercom"
  2633. type="1" >
  2634. </productMenu>
  2635. <productMenu id="phone"
  2636. type="2" >
  2637. </productMenu>
  2638. <productMenu id="fmradio"
  2639. type="3" >
  2640. </productMenu>
  2641. <productMenu id="deviceSetting"
  2642. type="1"
  2643. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  2644. <productMenuURL version="1.9"
  2645. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  2646. />
  2647. <productMenuURL version="1.1"
  2648. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  2649. />
  2650. </productMenu>
  2651. <productMenu id="quickGuide"
  2652. type="1"
  2653. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  2654. size="796KB" >
  2655. </productMenu>
  2656. <productMenu id="userGuide"
  2657. type="1"
  2658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  2659. size="910KB" >
  2660. </productMenu>
  2661. <productID id="5550"
  2662. />
  2663. <productGroupable type="0"
  2664. />
  2665. </product>
  2666. <product id="CavalryM"
  2667. name="Cavalry M"
  2668. series="Helmet"
  2669. latestVersion="1.1"
  2670. latestVersionVoicePrompt="0.9"
  2671. show = "-1" >
  2672. <productMenu id="protocol"
  2673. type="2" >
  2674. </productMenu>
  2675. <productMenu id="alexa"
  2676. type="0" >
  2677. </productMenu>
  2678. <productMenu id="ota"
  2679. type="2" >
  2680. <otaPackages>
  2681. <package
  2682. url="https://api.sena.com/support/test/CAVALRY_M-v1.1build2-OTA_TEST.img"
  2683. size="3144148"
  2684. />
  2685. </otaPackages>
  2686. </productMenu>
  2687. <productMenu id="wa"
  2688. type="0" >
  2689. </productMenu>
  2690. <productMenu id="meshIntercom"
  2691. type="30" >
  2692. </productMenu>
  2693. <productMenu id="phone"
  2694. type="1" >
  2695. </productMenu>
  2696. <productMenu id="music"
  2697. type="1" >
  2698. </productMenu>
  2699. <productMenu id="musicSharing"
  2700. type="0" >
  2701. </productMenu>
  2702. <productMenu id="deviceSetting"
  2703. type="1"
  2704. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml" >
  2705. </productMenu>
  2706. <productMenu id="quickGuide"
  2707. type="1"
  2708. url=""
  2709. size="1.12MB" >
  2710. </productMenu>
  2711. <productMenu id="userGuide"
  2712. type="1"
  2713. url=""
  2714. size="2.0MB" >
  2715. </productMenu>
  2716. <productMenu id="volume"
  2717. type="12" >
  2718. </productMenu>
  2719. <productMenu id="battery"
  2720. type="1" >
  2721. </productMenu>
  2722. <productID id="6839"
  2723. />
  2724. <productGroupable type="0"
  2725. />
  2726. </product>
  2727. <product id="Cavalry"
  2728. name="Cavalry"
  2729. series="Helmet"
  2730. latestVersion="1.2.2"
  2731. show = "1" >
  2732. <productMenu id="protocol"
  2733. type="0">
  2734. </productMenu>
  2735. <productMenu id="sip"
  2736. type="1" >
  2737. </productMenu>
  2738. <productMenu id="bluetoothIntercom"
  2739. type="1" >
  2740. </productMenu>
  2741. <productMenu id="phone"
  2742. type="2" >
  2743. </productMenu>
  2744. <productMenu id="fmradio"
  2745. type="3" >
  2746. </productMenu>
  2747. <productMenu id="deviceSetting"
  2748. type="1"
  2749. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  2750. <productMenuURL version="1.9"
  2751. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  2752. />
  2753. <productMenuURL version="1.0.1"
  2754. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  2755. />
  2756. </productMenu>
  2757. <productMenu id="quickGuide"
  2758. type="1"
  2759. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  2760. size="795KB" >
  2761. </productMenu>
  2762. <productMenu id="userGuide"
  2763. type="1"
  2764. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  2765. size="1.87MB" >
  2766. </productMenu>
  2767. <productID id="5524"
  2768. />
  2769. <productGroupable type="0"
  2770. />
  2771. </product>
  2772. <product id="Cavalry_Lite"
  2773. name="Cavalry Lite"
  2774. series="Helmet"
  2775. latestVersion="1.0.2"
  2776. show = "1" >
  2777. <productMenu id="protocol"
  2778. type="0">
  2779. </productMenu>
  2780. <productMenu id="sip"
  2781. type="1" >
  2782. </productMenu>
  2783. <productMenu id="bluetoothIntercom"
  2784. type="1" >
  2785. </productMenu>
  2786. <productMenu id="phone"
  2787. type="2" >
  2788. </productMenu>
  2789. <productMenu id="fmradio"
  2790. type="3" >
  2791. </productMenu>
  2792. <productMenu id="deviceSetting"
  2793. type="1"
  2794. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  2795. </productMenu>
  2796. <productMenu id="userGuide"
  2797. type="1"
  2798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  2799. size="1.74MB" >
  2800. </productMenu>
  2801. <productID id="5536"
  2802. />
  2803. <productGroupable type="0"
  2804. />
  2805. </product>
  2806. <product id="SF4"
  2807. name="SF4"
  2808. series="SF"
  2809. latestVersion="1.1.5"
  2810. show = "1" >
  2811. <productMenu id="protocol"
  2812. type="1"
  2813. url="3">
  2814. </productMenu>
  2815. <productMenu id="sip"
  2816. type="1" >
  2817. </productMenu>
  2818. <productMenu id="bluetoothIntercom"
  2819. type="1" >
  2820. </productMenu>
  2821. <productMenu id="phone"
  2822. type="1" >
  2823. </productMenu>
  2824. <productMenu id="music"
  2825. type="1" >
  2826. </productMenu>
  2827. <productMenu id="fmradio"
  2828. type="1" >
  2829. </productMenu>
  2830. <productMenu id="deviceSetting"
  2831. type="1"
  2832. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2833. <productMenuURL version="1.0.1"
  2834. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2835. />
  2836. </productMenu>
  2837. <productMenu id="quickGuide"
  2838. type="1"
  2839. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  2840. size="607KB" >
  2841. </productMenu>
  2842. <productMenu id="userGuide"
  2843. type="1"
  2844. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  2845. size="1.91MB" >
  2846. </productMenu>
  2847. <productMenu id="volume"
  2848. type="4" >
  2849. </productMenu>
  2850. <productID id="5414"
  2851. />
  2852. <productGroupable type="0"
  2853. />
  2854. </product>
  2855. <product id="SF4"
  2856. name="SF4"
  2857. series="SF"
  2858. latestVersion="3.2"
  2859. show = "0" >
  2860. <productMenu id="protocol"
  2861. type="2" >
  2862. </productMenu>
  2863. <productMenu id="sip"
  2864. type="1" >
  2865. </productMenu>
  2866. <productMenu id="bluetoothIntercom"
  2867. type="1" >
  2868. </productMenu>
  2869. <productMenu id="phone"
  2870. type="1" >
  2871. </productMenu>
  2872. <productMenu id="music"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="fmradio"
  2876. type="1" >
  2877. </productMenu>
  2878. <productMenu id="deviceSetting"
  2879. type="1"
  2880. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4.xml" >
  2881. <productMenuURL version="3.0"
  2882. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  2883. />
  2884. </productMenu>
  2885. <productMenu id="quickGuide"
  2886. type="1"
  2887. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_2.1.0_en_230704.pdf"
  2888. size="934KB" >
  2889. </productMenu>
  2890. <productMenu id="userGuide"
  2891. type="1"
  2892. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  2893. size="1.14MB" >
  2894. </productMenu>
  2895. <productMenu id="volume"
  2896. type="15" >
  2897. </productMenu>
  2898. <productID id="3370"
  2899. />
  2900. <productGroupable type="0"
  2901. />
  2902. </product>
  2903. <product id="SF2"
  2904. name="SF2"
  2905. series="SF"
  2906. latestVersion="1.2.1"
  2907. show = "1" >
  2908. <productMenu id="protocol"
  2909. type="1"
  2910. url="2">
  2911. </productMenu>
  2912. <productMenu id="sip"
  2913. type="1" >
  2914. </productMenu>
  2915. <productMenu id="bluetoothIntercom"
  2916. type="1" >
  2917. </productMenu>
  2918. <productMenu id="phone"
  2919. type="1" >
  2920. </productMenu>
  2921. <productMenu id="music"
  2922. type="1" >
  2923. </productMenu>
  2924. <productMenu id="fmradio"
  2925. type="1" >
  2926. </productMenu>
  2927. <productMenu id="deviceSetting"
  2928. type="1"
  2929. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  2930. <productMenuURL version="1.0.1"
  2931. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  2932. />
  2933. </productMenu>
  2934. <productMenu id="quickGuide"
  2935. type="1"
  2936. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  2937. size="607KB" >
  2938. </productMenu>
  2939. <productMenu id="userGuide"
  2940. type="1"
  2941. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  2942. size="1.91MB" >
  2943. </productMenu>
  2944. <productMenu id="volume"
  2945. type="4" >
  2946. </productMenu>
  2947. <productID id="5412"
  2948. />
  2949. <productGroupable type="0"
  2950. />
  2951. </product>
  2952. <product id="SF2"
  2953. name="SF2"
  2954. series="SF"
  2955. latestVersion="3.2"
  2956. show = "0" >
  2957. <productMenu id="protocol"
  2958. type="2" >
  2959. </productMenu>
  2960. <productMenu id="sip"
  2961. type="1" >
  2962. </productMenu>
  2963. <productMenu id="bluetoothIntercom"
  2964. type="1" >
  2965. </productMenu>
  2966. <productMenu id="phone"
  2967. type="1" >
  2968. </productMenu>
  2969. <productMenu id="music"
  2970. type="1" >
  2971. </productMenu>
  2972. <productMenu id="fmradio"
  2973. type="0" >
  2974. </productMenu>
  2975. <productMenu id="deviceSetting"
  2976. type="1"
  2977. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2.xml" >
  2978. <productMenuURL version="3.0"
  2979. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  2980. />
  2981. </productMenu>
  2982. <productMenu id="quickGuide"
  2983. type="1"
  2984. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_2.1.0_en_230704.pdf"
  2985. size="934KB" >
  2986. </productMenu>
  2987. <productMenu id="userGuide"
  2988. type="1"
  2989. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  2990. size="1.14MB" >
  2991. </productMenu>
  2992. <productMenu id="volume"
  2993. type="15" >
  2994. </productMenu>
  2995. <productID id="3360"
  2996. />
  2997. <productGroupable type="0"
  2998. />
  2999. </product>
  3000. <product id="SF1"
  3001. name="SF1"
  3002. series="SF"
  3003. latestVersion="2.0.5"
  3004. show = "1" >
  3005. <productMenu id="protocol"
  3006. type="1"
  3007. url="1">
  3008. </productMenu>
  3009. <productMenu id="sip"
  3010. type="1" >
  3011. </productMenu>
  3012. <productMenu id="bluetoothIntercom"
  3013. type="1" >
  3014. <productMenuType version="1.1"
  3015. type="0"
  3016. />
  3017. </productMenu>
  3018. <productMenu id="phone"
  3019. type="1" >
  3020. </productMenu>
  3021. <productMenu id="music"
  3022. type="1" >
  3023. </productMenu>
  3024. <productMenu id="deviceSetting"
  3025. type="1"
  3026. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  3027. <productMenuURL version="1.1"
  3028. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  3029. />
  3030. <productMenuURL version="1.0"
  3031. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  3032. />
  3033. </productMenu>
  3034. <productMenu id="quickGuide"
  3035. type="1"
  3036. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  3037. size="401KB" >
  3038. </productMenu>
  3039. <productMenu id="userGuide"
  3040. type="1"
  3041. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  3042. size="1.91MB" >
  3043. </productMenu>
  3044. <productMenu id="volume"
  3045. type="3" >
  3046. </productMenu>
  3047. <productID id="5410"
  3048. />
  3049. <productGroupable type="0"
  3050. />
  3051. </product>
  3052. <product id="SF1"
  3053. name="SF1"
  3054. series="SF"
  3055. latestVersion="3.2"
  3056. show = "0" >
  3057. <productMenu id="protocol"
  3058. type="2" >
  3059. </productMenu>
  3060. <productMenu id="sip"
  3061. type="1" >
  3062. </productMenu>
  3063. <productMenu id="bluetoothIntercom"
  3064. type="1" >
  3065. </productMenu>
  3066. <productMenu id="phone"
  3067. type="1" >
  3068. </productMenu>
  3069. <productMenu id="music"
  3070. type="1" >
  3071. </productMenu>
  3072. <productMenu id="fmradio"
  3073. type="0" >
  3074. </productMenu>
  3075. <productMenu id="deviceSetting"
  3076. type="1"
  3077. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2.xml" >
  3078. <productMenuURL version="3.0"
  3079. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  3080. />
  3081. </productMenu>
  3082. <productMenu id="quickGuide"
  3083. type="1"
  3084. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_3.1.0_en_230704.pdf"
  3085. size="934KB" >
  3086. </productMenu>
  3087. <productMenu id="userGuide"
  3088. type="1"
  3089. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  3090. size="1.14MB" >
  3091. </productMenu>
  3092. <productMenu id="volume"
  3093. type="15" >
  3094. </productMenu>
  3095. <productID id="3350"
  3096. />
  3097. <productGroupable type="0"
  3098. />
  3099. </product>
  3100. <product id="SFR"
  3101. name="SFR"
  3102. series="SF"
  3103. latestVersion="1.1.1"
  3104. show = "1" >
  3105. <productMenu id="protocol"
  3106. type="1"
  3107. url="3">
  3108. </productMenu>
  3109. <productMenu id="sip"
  3110. type="1" >
  3111. </productMenu>
  3112. <productMenu id="bluetoothIntercom"
  3113. type="1" >
  3114. </productMenu>
  3115. <productMenu id="phone"
  3116. type="1" >
  3117. </productMenu>
  3118. <productMenu id="music"
  3119. type="1" >
  3120. </productMenu>
  3121. <productMenu id="fmradio"
  3122. type="1" >
  3123. </productMenu>
  3124. <productMenu id="deviceSetting"
  3125. type="1"
  3126. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3127. </productMenu>
  3128. <productMenu id="quickGuide"
  3129. type="1"
  3130. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  3131. size="607KB" >
  3132. </productMenu>
  3133. <productMenu id="userGuide"
  3134. type="1"
  3135. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  3136. size="1.91MB" >
  3137. </productMenu>
  3138. <productMenu id="volume"
  3139. type="4" >
  3140. </productMenu>
  3141. <productID id="5418"
  3142. />
  3143. <productGroupable type="0"
  3144. />
  3145. </product>
  3146. <product id="20S"
  3147. name="20S"
  3148. series="20"
  3149. latestVersion="2.2.2"
  3150. show = "1" >
  3151. <productMenu id="protocol"
  3152. type="0">
  3153. </productMenu>
  3154. <productMenu id="wa"
  3155. type="5" >
  3156. </productMenu>
  3157. <productMenu id="sip"
  3158. type="1" >
  3159. <productMenuType version="1.0"
  3160. type="0"
  3161. />
  3162. </productMenu>
  3163. <productMenu id="bluetoothIntercom"
  3164. type="1" >
  3165. <productMenuType version="1.0"
  3166. type="0"
  3167. />
  3168. </productMenu>
  3169. <productMenu id="intercomSetting"
  3170. type="1" >
  3171. </productMenu>
  3172. <productMenu id="phone"
  3173. type="2" >
  3174. </productMenu>
  3175. <productMenu id="fmradio"
  3176. type="3" >
  3177. </productMenu>
  3178. <productMenu id="deviceSetting"
  3179. type="1"
  3180. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3181. <productMenuURL version="2.0.2"
  3182. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3183. />
  3184. <productMenuURL version="1.5"
  3185. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3186. />
  3187. <productMenuURL version="1.4.1"
  3188. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3189. />
  3190. <productMenuURL version="1.1"
  3191. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3192. />
  3193. <productMenuURL version="1.0"
  3194. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3195. />
  3196. </productMenu>
  3197. <productMenu id="quickGuide"
  3198. type="1"
  3199. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3200. size="264KB" >
  3201. </productMenu>
  3202. <productMenu id="userGuide"
  3203. type="1"
  3204. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3205. size="3.09MB" >
  3206. </productMenu>
  3207. <productID id="4210"
  3208. />
  3209. <productGroupable type="1"
  3210. />
  3211. </product>
  3212. <product id="20S_EVO"
  3213. name="20S EVO"
  3214. series="20"
  3215. latestVersion="2.2.2"
  3216. show = "1" >
  3217. <productMenu id="protocol"
  3218. type="0">
  3219. </productMenu>
  3220. <productMenu id="wa"
  3221. type="5" >
  3222. </productMenu>
  3223. <productMenu id="sip"
  3224. type="1" >
  3225. <productMenuType version="1.0"
  3226. type="0"
  3227. />
  3228. </productMenu>
  3229. <productMenu id="bluetoothIntercom"
  3230. type="1" >
  3231. <productMenuType version="1.0"
  3232. type="0"
  3233. />
  3234. </productMenu>
  3235. <productMenu id="intercomSetting"
  3236. type="1" >
  3237. </productMenu>
  3238. <productMenu id="phone"
  3239. type="2" >
  3240. </productMenu>
  3241. <productMenu id="fmradio"
  3242. type="3" >
  3243. </productMenu>
  3244. <productMenu id="deviceSetting"
  3245. type="1"
  3246. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3247. <productMenuURL version="2.0.2"
  3248. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3249. />
  3250. <productMenuURL version="1.5"
  3251. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3252. />
  3253. <productMenuURL version="1.4.1"
  3254. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3255. />
  3256. <productMenuURL version="1.1"
  3257. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3258. />
  3259. <productMenuURL version="1.0"
  3260. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3261. />
  3262. </productMenu>
  3263. <productMenu id="quickGuide"
  3264. type="1"
  3265. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3266. size="264KB" >
  3267. </productMenu>
  3268. <productMenu id="userGuide"
  3269. type="1"
  3270. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3271. size="3.09MB" >
  3272. </productMenu>
  3273. <productID id="4210"
  3274. />
  3275. <productProductKey key="16"
  3276. />
  3277. <productGroupable type="1"
  3278. />
  3279. </product>
  3280. <product id="10S"
  3281. name="10S"
  3282. series="10"
  3283. latestVersion="3.0.1"
  3284. show = "0" >
  3285. <productMenu id="protocol"
  3286. type="3" >
  3287. </productMenu>
  3288. <productMenu id="sip"
  3289. type="1" >
  3290. </productMenu>
  3291. <productMenu id="bluetoothIntercom"
  3292. type="1" >
  3293. </productMenu>
  3294. <productMenu id="phone"
  3295. type="1" >
  3296. </productMenu>
  3297. <productMenu id="deviceSetting"
  3298. type="1"
  3299. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  3300. </productMenu>
  3301. <productMenu id="quickGuide"
  3302. type="1"
  3303. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  3304. size="934KB" >
  3305. </productMenu>
  3306. <productMenu id="userGuide"
  3307. type="1"
  3308. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.0.1_en_230828.pdf"
  3309. size="1.14MB" >
  3310. </productMenu>
  3311. <productID id="3380"
  3312. />
  3313. <productGroupable type="0"
  3314. />
  3315. </product>
  3316. <product id="10S"
  3317. name="10S"
  3318. series="10"
  3319. latestVersion="2.1.1"
  3320. show = "1" >
  3321. <productMenu id="protocol"
  3322. type="0">
  3323. </productMenu>
  3324. <productMenu id="sip"
  3325. type="1" >
  3326. </productMenu>
  3327. <productMenu id="bluetoothIntercom"
  3328. type="1" >
  3329. </productMenu>
  3330. <productMenu id="phone"
  3331. type="2" >
  3332. </productMenu>
  3333. <productMenu id="fmradio"
  3334. type="3" >
  3335. </productMenu>
  3336. <productMenu id="deviceSetting"
  3337. type="1"
  3338. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  3339. <productMenuURL version="1.5"
  3340. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  3341. />
  3342. <productMenuURL version="1.3.1"
  3343. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  3344. />
  3345. </productMenu>
  3346. <productMenu id="quickGuide"
  3347. type="1"
  3348. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  3349. size="310KB" >
  3350. </productMenu>
  3351. <productMenu id="userGuide"
  3352. type="1"
  3353. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.3.0_en_230623.pdf"
  3354. size="1.57MB" >
  3355. </productMenu>
  3356. <productID id="5530"
  3357. />
  3358. <productGroupable type="0"
  3359. />
  3360. </product>
  3361. <product id="10R"
  3362. name="10R"
  3363. series="10"
  3364. latestVersion="2.1.1"
  3365. show = "1" >
  3366. <productMenu id="protocol"
  3367. type="0">
  3368. </productMenu>
  3369. <productMenu id="sip"
  3370. type="1" >
  3371. <productMenuType version="1.0.2"
  3372. type="0"
  3373. />
  3374. </productMenu>
  3375. <productMenu id="bluetoothIntercom"
  3376. type="1" >
  3377. <productMenuType version="1.0.2"
  3378. type="0"
  3379. />
  3380. </productMenu>
  3381. <productMenu id="phone"
  3382. type="2" >
  3383. </productMenu>
  3384. <productMenu id="fmradio"
  3385. type="3" >
  3386. </productMenu>
  3387. <productMenu id="deviceSetting"
  3388. type="1"
  3389. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3390. <productMenuURL version="1.4"
  3391. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  3392. />
  3393. <productMenuURL version="1.2.1"
  3394. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  3395. />
  3396. <productMenuURL version="1.0.2"
  3397. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  3398. />
  3399. <productMenuURL version="1.0"
  3400. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  3401. />
  3402. </productMenu>
  3403. <productMenu id="quickGuide"
  3404. type="1"
  3405. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  3406. size="400KB" >
  3407. </productMenu>
  3408. <productMenu id="userGuide"
  3409. type="1"
  3410. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  3411. size="2.75MB" >
  3412. </productMenu>
  3413. <productID id="5520"
  3414. />
  3415. <productGroupable type="0"
  3416. />
  3417. </product>
  3418. <product id="10C_EVO"
  3419. name="10C EVO"
  3420. series="10"
  3421. latestVersion="1.7"
  3422. show = "1" >
  3423. <productMenu id="protocol"
  3424. type="0">
  3425. </productMenu>
  3426. <productMenu id="sip"
  3427. type="1" >
  3428. </productMenu>
  3429. <productMenu id="bluetoothIntercom"
  3430. type="1" >
  3431. </productMenu>
  3432. <productMenu id="phone"
  3433. type="2" >
  3434. </productMenu>
  3435. <productMenu id="fmradio"
  3436. type="3" >
  3437. </productMenu>
  3438. <productMenu id="deviceSetting"
  3439. type="1"
  3440. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  3441. <productMenuURL version="1.3.1"
  3442. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3443. />
  3444. </productMenu>
  3445. <productMenu id="quickGuide"
  3446. type="1"
  3447. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  3448. size="1.32MB" >
  3449. </productMenu>
  3450. <productMenu id="userGuide"
  3451. type="1"
  3452. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  3453. size="1.68MB" >
  3454. </productMenu>
  3455. <productID id="5570"
  3456. />
  3457. <productGroupable type="0"
  3458. />
  3459. </product>
  3460. <product id="10C_Pro"
  3461. name="10C Pro"
  3462. series="10"
  3463. latestVersion="2.7.1"
  3464. show = "1" >
  3465. <productMenu id="protocol"
  3466. type="0">
  3467. </productMenu>
  3468. <productMenu id="sip"
  3469. type="1" >
  3470. </productMenu>
  3471. <productMenu id="bluetoothIntercom"
  3472. type="1" >
  3473. </productMenu>
  3474. <productMenu id="phone"
  3475. type="2" >
  3476. </productMenu>
  3477. <productMenu id="fmradio"
  3478. type="3" >
  3479. </productMenu>
  3480. <productMenu id="deviceSetting"
  3481. type="1"
  3482. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  3483. <productMenuURL version="2.5.1"
  3484. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3485. />
  3486. <productMenuURL version="1.0"
  3487. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  3488. />
  3489. </productMenu>
  3490. <productMenu id="quickGuide"
  3491. type="1"
  3492. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  3493. size="651KB" >
  3494. </productMenu>
  3495. <productMenu id="userGuide"
  3496. type="1"
  3497. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  3498. size="2.34MB" >
  3499. </productMenu>
  3500. <productID id="5580"
  3501. />
  3502. <productGroupable type="0"
  3503. />
  3504. </product>
  3505. <product id="10C"
  3506. name="10C"
  3507. series="10"
  3508. latestVersion="3.0.4"
  3509. show = "1" >
  3510. <productMenu id="protocol"
  3511. type="0">
  3512. </productMenu>
  3513. <productMenu id="sip"
  3514. type="1" >
  3515. <productMenuType version="1.0.4"
  3516. type="0"
  3517. />
  3518. </productMenu>
  3519. <productMenu id="bluetoothIntercom"
  3520. type="1" >
  3521. <productMenuType version="1.0.4"
  3522. type="0"
  3523. />
  3524. </productMenu>
  3525. <productMenu id="phone"
  3526. type="2" >
  3527. </productMenu>
  3528. <productMenu id="fmradio"
  3529. type="3" >
  3530. </productMenu>
  3531. <productMenu id="deviceSetting"
  3532. type="1"
  3533. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  3534. <productMenuURL version="2.3"
  3535. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  3536. />
  3537. <productMenuURL version="2.1.1"
  3538. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  3539. />
  3540. <productMenuURL version="1.0.4"
  3541. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  3542. />
  3543. <productMenuURL version="1.0.2"
  3544. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  3545. />
  3546. </productMenu>
  3547. <productMenu id="quickGuide"
  3548. type="1"
  3549. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  3550. size="935KB" >
  3551. </productMenu>
  3552. <productMenu id="userGuide"
  3553. type="1"
  3554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  3555. size="2.82MB" >
  3556. </productMenu>
  3557. <productID id="5510"
  3558. />
  3559. <productGroupable type="0"
  3560. />
  3561. </product>
  3562. <product id="10U_GT_AIR"
  3563. name="10U GT-Air"
  3564. series="10"
  3565. latestVersion="2.0.4"
  3566. show = "1" >
  3567. <productMenu id="protocol"
  3568. type="0">
  3569. </productMenu>
  3570. <productMenu id="sip"
  3571. type="1" >
  3572. <productMenuType version="1.0.2"
  3573. type="0"
  3574. />
  3575. </productMenu>
  3576. <productMenu id="bluetoothIntercom"
  3577. type="1" >
  3578. <productMenuType version="1.0.2"
  3579. type="0"
  3580. />
  3581. </productMenu>
  3582. <productMenu id="phone"
  3583. type="2" >
  3584. </productMenu>
  3585. <productMenu id="fmradio"
  3586. type="3" >
  3587. </productMenu>
  3588. <productMenu id="deviceSetting"
  3589. type="1"
  3590. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3591. <productMenuURL version="1.3.2"
  3592. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3593. />
  3594. <productMenuURL version="1.0.2"
  3595. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3596. />
  3597. </productMenu>
  3598. <productMenu id="quickGuide"
  3599. type="1"
  3600. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3601. size="685KB" >
  3602. </productMenu>
  3603. <productMenu id="userGuide"
  3604. type="1"
  3605. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3606. size="684KB" >
  3607. </productMenu>
  3608. <productID id="5610"
  3609. />
  3610. <productGroupable type="0"
  3611. />
  3612. </product>
  3613. <product id="10U_NEOTEC"
  3614. name="10U Neotec"
  3615. series="10"
  3616. latestVersion="2.0.4"
  3617. show = "1" >
  3618. <productMenu id="protocol"
  3619. type="0">
  3620. </productMenu>
  3621. <productMenu id="sip"
  3622. type="1" >
  3623. <productMenuType version="1.0.2"
  3624. type="0"
  3625. />
  3626. </productMenu>
  3627. <productMenu id="bluetoothIntercom"
  3628. type="1" >
  3629. <productMenuType version="1.0.2"
  3630. type="0"
  3631. />
  3632. </productMenu>
  3633. <productMenu id="phone"
  3634. type="2" >
  3635. </productMenu>
  3636. <productMenu id="fmradio"
  3637. type="3" >
  3638. </productMenu>
  3639. <productMenu id="deviceSetting"
  3640. type="1"
  3641. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3642. <productMenuURL version="1.3.2"
  3643. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3644. />
  3645. <productMenuURL version="1.0.2"
  3646. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3647. />
  3648. </productMenu>
  3649. <productMenu id="quickGuide"
  3650. type="1"
  3651. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3652. size="689KB" >
  3653. </productMenu>
  3654. <productMenu id="userGuide"
  3655. type="1"
  3656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3657. size="684KB" >
  3658. </productMenu>
  3659. <productID id="5611"
  3660. />
  3661. <productGroupable type="0"
  3662. />
  3663. </product>
  3664. <product id="10U_J_CRUISE"
  3665. name="10U J-Cruise"
  3666. series="10"
  3667. latestVersion="2.0.4"
  3668. show = "1" >
  3669. <productMenu id="protocol"
  3670. type="0">
  3671. </productMenu>
  3672. <productMenu id="sip"
  3673. type="1" >
  3674. <productMenuType version="1.0.2"
  3675. type="0"
  3676. />
  3677. </productMenu>
  3678. <productMenu id="bluetoothIntercom"
  3679. type="1" >
  3680. <productMenuType version="1.0.2"
  3681. type="0"
  3682. />
  3683. </productMenu>
  3684. <productMenu id="phone"
  3685. type="2" >
  3686. </productMenu>
  3687. <productMenu id="fmradio"
  3688. type="3" >
  3689. </productMenu>
  3690. <productMenu id="deviceSetting"
  3691. type="1"
  3692. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3693. <productMenuURL version="1.3.2"
  3694. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3695. />
  3696. <productMenuURL version="1.0.2"
  3697. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3698. />
  3699. </productMenu>
  3700. <productMenu id="quickGuide"
  3701. type="1"
  3702. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3703. size="686KB" >
  3704. </productMenu>
  3705. <productMenu id="userGuide"
  3706. type="1"
  3707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3708. size="684KB" >
  3709. </productMenu>
  3710. <productID id="5612"
  3711. />
  3712. <productGroupable type="0"
  3713. />
  3714. </product>
  3715. <product id="10U_C3"
  3716. name="10U C3/C3Pro"
  3717. series="10"
  3718. latestVersion="2.0.4"
  3719. show = "1" >
  3720. <productMenu id="protocol"
  3721. type="0">
  3722. </productMenu>
  3723. <productMenu id="sip"
  3724. type="1" >
  3725. <productMenuType version="1.0.2"
  3726. type="0"
  3727. />
  3728. </productMenu>
  3729. <productMenu id="bluetoothIntercom"
  3730. type="1" >
  3731. <productMenuType version="1.0.2"
  3732. type="0"
  3733. />
  3734. </productMenu>
  3735. <productMenu id="phone"
  3736. type="2" >
  3737. </productMenu>
  3738. <productMenu id="fmradio"
  3739. type="3" >
  3740. </productMenu>
  3741. <productMenu id="deviceSetting"
  3742. type="1"
  3743. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3744. <productMenuURL version="1.3.2"
  3745. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3746. />
  3747. <productMenuURL version="1.0.2"
  3748. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3749. />
  3750. </productMenu>
  3751. <productMenu id="quickGuide"
  3752. type="1"
  3753. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3754. size="199KB" >
  3755. </productMenu>
  3756. <productMenu id="userGuide"
  3757. type="1"
  3758. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3759. size="684KB" >
  3760. </productMenu>
  3761. <productID id="5620"
  3762. />
  3763. <productGroupable type="0"
  3764. />
  3765. </product>
  3766. <product id="10U_ARAI"
  3767. name="10U Arai"
  3768. series="10"
  3769. latestVersion="2.0.4"
  3770. show = "1" >
  3771. <productMenu id="protocol"
  3772. type="0">
  3773. </productMenu>
  3774. <productMenu id="sip"
  3775. type="1" >
  3776. <productMenuType version="1.0.2"
  3777. type="0"
  3778. />
  3779. </productMenu>
  3780. <productMenu id="bluetoothIntercom"
  3781. type="1" >
  3782. <productMenuType version="1.0.2"
  3783. type="0"
  3784. />
  3785. </productMenu>
  3786. <productMenu id="phone"
  3787. type="2" >
  3788. </productMenu>
  3789. <productMenu id="fmradio"
  3790. type="3" >
  3791. </productMenu>
  3792. <productMenu id="deviceSetting"
  3793. type="1"
  3794. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3795. <productMenuURL version="1.3.2"
  3796. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3797. />
  3798. <productMenuURL version="1.0.2"
  3799. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3800. />
  3801. </productMenu>
  3802. <productMenu id="quickGuide"
  3803. type="1"
  3804. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  3805. size="689KB" >
  3806. </productMenu>
  3807. <productMenu id="userGuide"
  3808. type="1"
  3809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  3810. size="684KB" >
  3811. </productMenu>
  3812. <productID id="5621"
  3813. />
  3814. <productGroupable type="0"
  3815. />
  3816. </product>
  3817. <product id="10Upad"
  3818. name="10Upad"
  3819. series="10"
  3820. latestVersion="2.0.3"
  3821. show = "1" >
  3822. <productMenu id="protocol"
  3823. type="0">
  3824. </productMenu>
  3825. <productMenu id="sip"
  3826. type="1" >
  3827. </productMenu>
  3828. <productMenu id="bluetoothIntercom"
  3829. type="1" >
  3830. </productMenu>
  3831. <productMenu id="phone"
  3832. type="2" >
  3833. </productMenu>
  3834. <productMenu id="fmradio"
  3835. type="3" >
  3836. </productMenu>
  3837. <productMenu id="deviceSetting"
  3838. type="1"
  3839. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  3840. <productMenuURL version="1.0.3"
  3841. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  3842. />
  3843. </productMenu>
  3844. <productMenu id="quickGuide"
  3845. type="1"
  3846. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  3847. size="615KB" >
  3848. </productMenu>
  3849. <productMenu id="userGuide"
  3850. type="1"
  3851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  3852. size="0.99MB" >
  3853. </productMenu>
  3854. <productID id="6210"
  3855. />
  3856. <productGroupable type="0"
  3857. />
  3858. </product>
  3859. <product id="5S"
  3860. name="5S"
  3861. series="5"
  3862. latestVersion="2.2.1"
  3863. show = "1" >
  3864. <productMenu id="protocol"
  3865. type="3" >
  3866. </productMenu>
  3867. <productMenu id="sip"
  3868. type="1" >
  3869. </productMenu>
  3870. <productMenu id="bluetoothIntercom"
  3871. type="1" >
  3872. </productMenu>
  3873. <productMenu id="phone"
  3874. type="1" >
  3875. </productMenu>
  3876. <productMenu id="fmradio"
  3877. type="1" >
  3878. </productMenu>
  3879. <productMenu id="deviceSetting"
  3880. type="1"
  3881. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3882. </productMenu>
  3883. <productMenu id="quickGuide"
  3884. type="1"
  3885. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3886. size="934KB" >
  3887. </productMenu>
  3888. <productMenu id="userGuide"
  3889. type="1"
  3890. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_2.2.0_en_230703.pdf"
  3891. size="1.14MB" >
  3892. </productMenu>
  3893. <productID id="5590"
  3894. />
  3895. <productGroupable type="0"
  3896. />
  3897. </product>
  3898. <product id="5S"
  3899. name="5S"
  3900. series="5"
  3901. latestVersion="1.2"
  3902. show = "0" >
  3903. <productMenu id="protocol"
  3904. type="0">
  3905. </productMenu>
  3906. <productMenu id="sip"
  3907. type="1" >
  3908. </productMenu>
  3909. <productMenu id="bluetoothIntercom"
  3910. type="1" >
  3911. </productMenu>
  3912. <productMenu id="phone"
  3913. type="2" >
  3914. </productMenu>
  3915. <productMenu id="fmradio"
  3916. type="3" >
  3917. </productMenu>
  3918. <productMenu id="deviceSetting"
  3919. type="1"
  3920. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  3921. </productMenu>
  3922. <productMenu id="quickGuide"
  3923. type="1"
  3924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3925. size="970KB" >
  3926. </productMenu>
  3927. <productMenu id="userGuide"
  3928. type="1"
  3929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_1.2.0_en_230703.pdf"
  3930. size="1.26MB" >
  3931. </productMenu>
  3932. <productID id="5534"
  3933. />
  3934. <productGroupable type="0"
  3935. />
  3936. </product>
  3937. <product id="5S"
  3938. name="5S"
  3939. series="5"
  3940. latestVersion="3.0.1"
  3941. show = "0" >
  3942. <productMenu id="protocol"
  3943. type="0">
  3944. </productMenu>
  3945. <productMenu id="sip"
  3946. type="1" >
  3947. </productMenu>
  3948. <productMenu id="bluetoothIntercom"
  3949. type="1" >
  3950. </productMenu>
  3951. <productMenu id="phone"
  3952. type="2" >
  3953. </productMenu>
  3954. <productMenu id="fmradio"
  3955. type="3" >
  3956. </productMenu>
  3957. <productMenu id="deviceSetting"
  3958. type="1"
  3959. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  3960. </productMenu>
  3961. <productMenu id="quickGuide"
  3962. type="1"
  3963. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  3964. size="970KB" >
  3965. </productMenu>
  3966. <productMenu id="userGuide"
  3967. type="1"
  3968. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_3.0.0_en_230703.pdf"
  3969. size="1.26MB" >
  3970. </productMenu>
  3971. <productID id="5538"
  3972. />
  3973. <productGroupable type="0"
  3974. />
  3975. </product>
  3976. <product id="3SPLUS"
  3977. name="3S PLUS"
  3978. series="3"
  3979. latestVersion="2.2"
  3980. show = "0" >
  3981. <productMenu id="protocol"
  3982. type="3" >
  3983. </productMenu>
  3984. <productMenu id="sip"
  3985. type="1" >
  3986. </productMenu>
  3987. <productMenu id="bluetoothIntercom"
  3988. type="1" >
  3989. </productMenu>
  3990. <productMenu id="deviceSetting"
  3991. type="1"
  3992. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3993. </productMenu>
  3994. <productMenu id="quickGuide"
  3995. type="1"
  3996. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  3997. size="344KB" >
  3998. </productMenu>
  3999. <productMenu id="userGuide"
  4000. type="1"
  4001. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4002. size="1.14MB" >
  4003. </productMenu>
  4004. <productID id="4023"
  4005. />
  4006. <productGroupable type="0"
  4007. />
  4008. </product>
  4009. <product id="3SPLUS"
  4010. name="3S PLUS"
  4011. series="3"
  4012. latestVersion="1.1"
  4013. show = "1" >
  4014. <productMenu id="protocol"
  4015. type="0">
  4016. </productMenu>
  4017. <productMenu id="sip"
  4018. type="1" >
  4019. </productMenu>
  4020. <productMenu id="bluetoothIntercom"
  4021. type="1" >
  4022. </productMenu>
  4023. <productMenu id="deviceSetting"
  4024. type="1"
  4025. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4026. </productMenu>
  4027. <productMenu id="quickGuide"
  4028. type="1"
  4029. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4030. size="842KB" >
  4031. </productMenu>
  4032. <productMenu id="userGuide"
  4033. type="1"
  4034. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  4035. size="1.02MB" >
  4036. </productMenu>
  4037. <productID id="6320"
  4038. />
  4039. <productGroupable type="0"
  4040. />
  4041. </product>
  4042. <product id="iCon"
  4043. name="iCon"
  4044. series="50"
  4045. latestVersion="1.0.1"
  4046. show = "0" >
  4047. <productMenu id="protocol"
  4048. type="2" >
  4049. </productMenu>
  4050. <productMenu id="alexa"
  4051. type="0" >
  4052. </productMenu>
  4053. <productMenu id="wa"
  4054. type="0" >
  4055. </productMenu>
  4056. <productMenu id="sip"
  4057. type="1" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="3" >
  4061. </productMenu>
  4062. <productMenu id="meshIntercom"
  4063. type="20" >
  4064. </productMenu>
  4065. <productMenu id="bluetoothIntercom"
  4066. type="1" >
  4067. </productMenu>
  4068. <productMenu id="phone"
  4069. type="1" >
  4070. </productMenu>
  4071. <productMenu id="music"
  4072. type="1" >
  4073. </productMenu>
  4074. <productMenu id="fmradio"
  4075. type="1" >
  4076. </productMenu>
  4077. <productMenu id="deviceSetting"
  4078. type="1"
  4079. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4080. </productMenu>
  4081. <productMenu id="quickGuide"
  4082. type="1"
  4083. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  4084. size="344KB" >
  4085. </productMenu>
  4086. <productMenu id="userGuide"
  4087. type="1"
  4088. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  4089. size="3.41MB" >
  4090. </productMenu>
  4091. <productMenu id="volume"
  4092. type="11" >
  4093. </productMenu>
  4094. <productMenu id="battery"
  4095. type="1" >
  4096. </productMenu>
  4097. <productID id="3900"
  4098. />
  4099. <productGroupable type="0"
  4100. />
  4101. </product>
  4102. <product id="HD50S"
  4103. name="H-D Audio 50S"
  4104. series="50"
  4105. latestVersion="1.0.1"
  4106. show = "0" >
  4107. <productMenu id="protocol"
  4108. type="2" >
  4109. </productMenu>
  4110. <productMenu id="alexa"
  4111. type="0" >
  4112. </productMenu>
  4113. <productMenu id="ota"
  4114. type="0"
  4115. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4116. size="1150234" >
  4117. </productMenu>
  4118. <productMenu id="wa"
  4119. type="1" >
  4120. </productMenu>
  4121. <productMenu id="sip"
  4122. type="1" >
  4123. </productMenu>
  4124. <productMenu id="meshIntercom"
  4125. type="20" >
  4126. </productMenu>
  4127. <productMenu id="bluetoothIntercom"
  4128. type="1" >
  4129. </productMenu>
  4130. <productMenu id="phone"
  4131. type="1" >
  4132. </productMenu>
  4133. <productMenu id="music"
  4134. type="1" >
  4135. </productMenu>
  4136. <productMenu id="fmradio"
  4137. type="1" >
  4138. </productMenu>
  4139. <productMenu id="deviceSetting"
  4140. type="1"
  4141. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4142. </productMenu>
  4143. <productMenu id="quickGuide"
  4144. type="1"
  4145. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4146. size="934KB" >
  4147. </productMenu>
  4148. <productMenu id="userGuide"
  4149. type="1"
  4150. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4151. size="1.14MB" >
  4152. </productMenu>
  4153. <productMenu id="volume"
  4154. type="11" >
  4155. </productMenu>
  4156. <productMenu id="battery"
  4157. type="1" >
  4158. </productMenu>
  4159. <productID id="3156"
  4160. />
  4161. <productGroupable type="0"
  4162. />
  4163. </product>
  4164. <product id="HD50S"
  4165. name="H-D Audio 50S"
  4166. series="50"
  4167. latestVersion="2.0.2"
  4168. show = "0" >
  4169. <productMenu id="protocol"
  4170. type="2" >
  4171. </productMenu>
  4172. <productMenu id="alexa"
  4173. type="0" >
  4174. </productMenu>
  4175. <productMenu id="ota"
  4176. type="0"
  4177. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4178. size="1150234" >
  4179. </productMenu>
  4180. <productMenu id="wa"
  4181. type="1" >
  4182. </productMenu>
  4183. <productMenu id="sip"
  4184. type="1" >
  4185. </productMenu>
  4186. <productMenu id="meshIntercom"
  4187. type="20" >
  4188. </productMenu>
  4189. <productMenu id="bluetoothIntercom"
  4190. type="1" >
  4191. </productMenu>
  4192. <productMenu id="phone"
  4193. type="1" >
  4194. </productMenu>
  4195. <productMenu id="music"
  4196. type="1" >
  4197. </productMenu>
  4198. <productMenu id="fmradio"
  4199. type="1" >
  4200. </productMenu>
  4201. <productMenu id="deviceSetting"
  4202. type="1"
  4203. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4204. </productMenu>
  4205. <productMenu id="quickGuide"
  4206. type="1"
  4207. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4208. size="934KB" >
  4209. </productMenu>
  4210. <productMenu id="userGuide"
  4211. type="1"
  4212. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4213. size="1.14MB" >
  4214. </productMenu>
  4215. <productMenu id="volume"
  4216. type="11" >
  4217. </productMenu>
  4218. <productMenu id="battery"
  4219. type="1" >
  4220. </productMenu>
  4221. <productID id="3213"
  4222. />
  4223. <productGroupable type="0"
  4224. />
  4225. </product>
  4226. <product id="HD50C"
  4227. name="H-D Audio 50C"
  4228. series="50"
  4229. latestVersion="1.0.1"
  4230. show = "0" >
  4231. <productMenu id="protocol"
  4232. type="2" >
  4233. </productMenu>
  4234. <productMenu id="ota"
  4235. type="0" >
  4236. </productMenu>
  4237. <productMenu id="wa"
  4238. type="1" >
  4239. </productMenu>
  4240. <productMenu id="sip"
  4241. type="1" >
  4242. </productMenu>
  4243. <productMenu id="meshIntercom"
  4244. type="20" >
  4245. </productMenu>
  4246. <productMenu id="bluetoothIntercom"
  4247. type="1" >
  4248. </productMenu>
  4249. <productMenu id="phone"
  4250. type="1" >
  4251. </productMenu>
  4252. <productMenu id="music"
  4253. type="1" >
  4254. </productMenu>
  4255. <productMenu id="fmradio"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="deviceSetting"
  4259. type="1"
  4260. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4261. </productMenu>
  4262. <productMenu id="quickGuide"
  4263. type="1"
  4264. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4265. size="344KB" >
  4266. </productMenu>
  4267. <productMenu id="userGuide"
  4268. type="1"
  4269. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4270. size="3.41MB" >
  4271. </productMenu>
  4272. <productMenu id="volume"
  4273. type="11" >
  4274. </productMenu>
  4275. <productMenu id="battery"
  4276. type="1" >
  4277. </productMenu>
  4278. <productID id="3240"
  4279. />
  4280. <productGroupable type="0"
  4281. />
  4282. </product>
  4283. <product id="HD50S"
  4284. name="FURY N04"
  4285. series="Helmet"
  4286. latestVersion="1.0"
  4287. show = "0" >
  4288. <productMenu id="protocol"
  4289. type="2" >
  4290. </productMenu>
  4291. <productMenu id="alexa"
  4292. type="0" >
  4293. </productMenu>
  4294. <productMenu id="ota"
  4295. type="0" >
  4296. </productMenu>
  4297. <productMenu id="wa"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="meshIntercom"
  4301. type="20" >
  4302. </productMenu>
  4303. <productMenu id="phone"
  4304. type="1" >
  4305. </productMenu>
  4306. <productMenu id="music"
  4307. type="1" >
  4308. </productMenu>
  4309. <productMenu id="fmradio"
  4310. type="1" >
  4311. </productMenu>
  4312. <productMenu id="deviceSetting"
  4313. type="1"
  4314. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  4315. </productMenu>
  4316. <productMenu id="quickGuide"
  4317. type="1"
  4318. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  4319. size="1.12MB" >
  4320. </productMenu>
  4321. <productMenu id="userGuide"
  4322. type="1"
  4323. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  4324. size="2.0MB" >
  4325. </productMenu>
  4326. <productMenu id="volume"
  4327. type="13" >
  4328. </productMenu>
  4329. <productMenu id="battery"
  4330. type="1" >
  4331. </productMenu>
  4332. <productID id="5553"
  4333. />
  4334. <productGroupable type="0"
  4335. />
  4336. </product>
  4337. <product id="XCOM3Pro"
  4338. name="X-COM3 Pro"
  4339. series="50"
  4340. latestVersion="1.0.1"
  4341. show = "0" >
  4342. <productMenu id="protocol"
  4343. type="2" >
  4344. </productMenu>
  4345. <productMenu id="alexa"
  4346. type="0" >
  4347. </productMenu>
  4348. <productMenu id="ota"
  4349. type="0" >
  4350. </productMenu>
  4351. <productMenu id="wa"
  4352. type="0" >
  4353. </productMenu>
  4354. <productMenu id="sip"
  4355. type="1" >
  4356. </productMenu>
  4357. <productMenu id="meshIntercom"
  4358. type="30" >
  4359. </productMenu>
  4360. <productMenu id="bluetoothIntercom"
  4361. type="1" >
  4362. </productMenu>
  4363. <productMenu id="phone"
  4364. type="1" >
  4365. </productMenu>
  4366. <productMenu id="music"
  4367. type="1" >
  4368. </productMenu>
  4369. <productMenu id="fmradio"
  4370. type="1" >
  4371. </productMenu>
  4372. <productMenu id="deviceSetting"
  4373. type="1"
  4374. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_01.xml" >
  4375. </productMenu>
  4376. <productMenu id="quickGuide"
  4377. type="1"
  4378. url=""
  4379. size="344KB" >
  4380. </productMenu>
  4381. <productMenu id="userGuide"
  4382. type="1"
  4383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.0.2_en_240621.pdf"
  4384. size="3.41MB" >
  4385. </productMenu>
  4386. <productMenu id="volume"
  4387. type="11" >
  4388. </productMenu>
  4389. <productMenu id="battery"
  4390. type="1" >
  4391. </productMenu>
  4392. <productID id="321A"
  4393. />
  4394. <productGroupable type="0"
  4395. />
  4396. </product>
  4397. <product id="XCOM3"
  4398. name="X-COM3"
  4399. series="20"
  4400. latestVersion="1.0"
  4401. show = "0" >
  4402. <productMenu id="protocol"
  4403. type="2" >
  4404. </productMenu>
  4405. <productMenu id="sip"
  4406. type="1" >
  4407. </productMenu>
  4408. <productMenu id="bluetoothIntercom"
  4409. type="1" >
  4410. </productMenu>
  4411. <productMenu id="phone"
  4412. type="1" >
  4413. </productMenu>
  4414. <productMenu id="music"
  4415. type="1" >
  4416. </productMenu>
  4417. <productMenu id="fmradio"
  4418. type="1" >
  4419. </productMenu>
  4420. <productMenu id="deviceSetting"
  4421. type="1"
  4422. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  4423. </productMenu>
  4424. <productMenu id="quickGuide"
  4425. type="1"
  4426. url=""
  4427. size="934KB" >
  4428. </productMenu>
  4429. <productMenu id="userGuide"
  4430. type="1"
  4431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  4432. size="1.14MB" >
  4433. </productMenu>
  4434. <productMenu id="volume"
  4435. type="15" >
  4436. </productMenu>
  4437. <productID id="3410"
  4438. />
  4439. <productGroupable type="0"
  4440. />
  4441. </product>
  4442. <product id="X-COM2"
  4443. name="X-COM2"
  4444. series="20"
  4445. latestVersion="1.0.5"
  4446. show = "0" >
  4447. <productMenu id="protocol"
  4448. type="0">
  4449. </productMenu>
  4450. <productMenu id="sip"
  4451. type="1" >
  4452. </productMenu>
  4453. <productMenu id="bluetoothIntercom"
  4454. type="1" >
  4455. </productMenu>
  4456. <productMenu id="intercomSetting"
  4457. type="1" >
  4458. </productMenu>
  4459. <productMenu id="phone"
  4460. type="2" >
  4461. </productMenu>
  4462. <productMenu id="fmradio"
  4463. type="3" >
  4464. </productMenu>
  4465. <productMenu id="deviceSetting"
  4466. type="1"
  4467. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4468. </productMenu>
  4469. <productMenu id="quickGuide"
  4470. type="1"
  4471. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  4472. size="796KB" >
  4473. </productMenu>
  4474. <productMenu id="userGuide"
  4475. type="1"
  4476. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  4477. size="1.90MB" >
  4478. </productMenu>
  4479. <productID id="2030"
  4480. />
  4481. <productGroupable type="1"
  4482. />
  4483. </product>
  4484. <product id="AVAABC"
  4485. name="AVA ABC"
  4486. series="SPIDER"
  4487. latestVersion="1.0"
  4488. show = "0" >
  4489. <productMenu id="protocol"
  4490. type="2" >
  4491. </productMenu>
  4492. <productMenu id="alexa"
  4493. type="0" >
  4494. </productMenu>
  4495. <productMenu id="ota"
  4496. type="0" >
  4497. </productMenu>
  4498. <productMenu id="wa"
  4499. type="0" >
  4500. </productMenu>
  4501. <productMenu id="meshIntercom"
  4502. type="20" >
  4503. </productMenu>
  4504. <productMenu id="phone"
  4505. type="1" >
  4506. </productMenu>
  4507. <productMenu id="music"
  4508. type="1" >
  4509. </productMenu>
  4510. <productMenu id="musicSharing"
  4511. type="0" >
  4512. </productMenu>
  4513. <productMenu id="deviceSetting"
  4514. type="1"
  4515. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  4516. </productMenu>
  4517. <productMenu id="quickGuide"
  4518. type="1"
  4519. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  4520. size="1.12MB" >
  4521. </productMenu>
  4522. <productMenu id="userGuide"
  4523. type="1"
  4524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  4525. size="2.0MB" >
  4526. </productMenu>
  4527. <productMenu id="volume"
  4528. type="12" >
  4529. </productMenu>
  4530. <productMenu id="battery"
  4531. type="1" >
  4532. </productMenu>
  4533. <productID id="6808"
  4534. />
  4535. <productGroupable type="0"
  4536. />
  4537. </product>
  4538. <product id="Triumph_50S"
  4539. name="Triumph 50S"
  4540. series="50"
  4541. latestVersion="1.2.2"
  4542. show = "0" >
  4543. <productMenu id="protocol"
  4544. type="2" >
  4545. </productMenu>
  4546. <productMenu id="alexa"
  4547. type="0" >
  4548. </productMenu>
  4549. <productMenu id="ota"
  4550. type="0"
  4551. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4552. size="1150234" >
  4553. </productMenu>
  4554. <productMenu id="wa"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="sip"
  4558. type="1" >
  4559. </productMenu>
  4560. <productMenu id="meshIntercom"
  4561. type="20" >
  4562. </productMenu>
  4563. <productMenu id="bluetoothIntercom"
  4564. type="1" >
  4565. </productMenu>
  4566. <productMenu id="phone"
  4567. type="1" >
  4568. </productMenu>
  4569. <productMenu id="music"
  4570. type="1" >
  4571. </productMenu>
  4572. <productMenu id="fmradio"
  4573. type="1" >
  4574. </productMenu>
  4575. <productMenu id="deviceSetting"
  4576. type="1"
  4577. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml" >
  4578. <productMenuURL version="1.0"
  4579. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4580. />
  4581. </productMenu>
  4582. <productMenu id="quickGuide"
  4583. type="1"
  4584. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  4585. size="934KB" >
  4586. </productMenu>
  4587. <productMenu id="userGuide"
  4588. type="1"
  4589. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  4590. size="1.14MB" >
  4591. </productMenu>
  4592. <productMenu id="volume"
  4593. type="11" >
  4594. </productMenu>
  4595. <productMenu id="battery"
  4596. type="1" >
  4597. </productMenu>
  4598. <productID id="3264"
  4599. />
  4600. <productGroupable type="0"
  4601. />
  4602. </product>
  4603. <product id="RE50S"
  4604. name="RE 50S"
  4605. series="50"
  4606. latestVersion="2.5"
  4607. show = "-1" >
  4608. <productMenu id="protocol"
  4609. type="2" >
  4610. </productMenu>
  4611. <productMenu id="alexa"
  4612. type="0" >
  4613. </productMenu>
  4614. <productMenu id="ota"
  4615. type="0"
  4616. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4617. size="1150234" >
  4618. </productMenu>
  4619. <productMenu id="wa"
  4620. type="1" >
  4621. </productMenu>
  4622. <productMenu id="sip"
  4623. type="1" >
  4624. </productMenu>
  4625. <productMenu id="meshIntercom"
  4626. type="30" >
  4627. </productMenu>
  4628. <productMenu id="bluetoothIntercom"
  4629. type="1" >
  4630. </productMenu>
  4631. <productMenu id="phone"
  4632. type="1" >
  4633. </productMenu>
  4634. <productMenu id="music"
  4635. type="1" >
  4636. </productMenu>
  4637. <productMenu id="fmradio"
  4638. type="1" >
  4639. </productMenu>
  4640. <productMenu id="deviceSetting"
  4641. type="1"
  4642. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  4643. </productMenu>
  4644. <productMenu id="quickGuide"
  4645. type="1"
  4646. url=""
  4647. size="934KB" >
  4648. </productMenu>
  4649. <productMenu id="userGuide"
  4650. type="1"
  4651. url=""
  4652. size="1.14MB" >
  4653. </productMenu>
  4654. <productMenu id="videoGuide"
  4655. type="1"
  4656. url=""
  4657. size="3.41MB" >
  4658. </productMenu>
  4659. <productMenu id="volume"
  4660. type="11" >
  4661. </productMenu>
  4662. <productMenu id="battery"
  4663. type="1" >
  4664. </productMenu>
  4665. <productID id="321C"
  4666. />
  4667. <productGroupable type="0"
  4668. />
  4669. </product>
  4670. <product id="BMW_HELMET_II_U1"
  4671. name="BMW HELMET II U1"
  4672. series="50"
  4673. latestVersion="1.0"
  4674. show = "0" >
  4675. <productMenu id="protocol"
  4676. type="2" >
  4677. </productMenu>
  4678. <productMenu id="alexa"
  4679. type="0" >
  4680. </productMenu>
  4681. <productMenu id="sip"
  4682. type="1" >
  4683. </productMenu>
  4684. <productMenu id="meshIntercom"
  4685. type="20" >
  4686. </productMenu>
  4687. <productMenu id="bluetoothIntercom"
  4688. type="1" >
  4689. </productMenu>
  4690. <productMenu id="bluetoothIntercom2"
  4691. type="1" >
  4692. </productMenu>
  4693. <productMenu id="phone"
  4694. type="1" >
  4695. </productMenu>
  4696. <productMenu id="music"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="fmradio"
  4700. type="1" >
  4701. </productMenu>
  4702. <productMenu id="deviceSetting"
  4703. type="1"
  4704. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  4705. </productMenu>
  4706. <productMenu id="quickGuide"
  4707. type="1"
  4708. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  4709. size="934KB" >
  4710. </productMenu>
  4711. <productMenu id="userGuide"
  4712. type="1"
  4713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  4714. size="1.14MB" >
  4715. </productMenu>
  4716. <productMenu id="volume"
  4717. type="11" >
  4718. </productMenu>
  4719. <productMenu id="battery"
  4720. type="1" >
  4721. </productMenu>
  4722. <productID id="3260"
  4723. />
  4724. <productGroupable type="0"
  4725. />
  4726. </product>
  4727. <product id="LSE-01"
  4728. name="LSE-01"
  4729. series="SF"
  4730. latestVersion="1.2.3"
  4731. show = "0" >
  4732. <productMenu id="protocol"
  4733. type="1"
  4734. url="3">
  4735. </productMenu>
  4736. <productMenu id="sip"
  4737. type="1" >
  4738. </productMenu>
  4739. <productMenu id="bluetoothIntercom"
  4740. type="1" >
  4741. </productMenu>
  4742. <productMenu id="phone"
  4743. type="1" >
  4744. </productMenu>
  4745. <productMenu id="music"
  4746. type="1" >
  4747. </productMenu>
  4748. <productMenu id="fmradio"
  4749. type="1" >
  4750. </productMenu>
  4751. <productMenu id="deviceSetting"
  4752. type="1"
  4753. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4754. <productMenuURL version="1.1"
  4755. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4756. />
  4757. <productMenuURL version="1.0"
  4758. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  4759. />
  4760. </productMenu>
  4761. <productMenu id="quickGuide"
  4762. type="1"
  4763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  4764. size="607KB" >
  4765. </productMenu>
  4766. <productMenu id="userGuide"
  4767. type="1"
  4768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  4769. size="1.91MB" >
  4770. </productMenu>
  4771. <productMenu id="volume"
  4772. type="4" >
  4773. </productMenu>
  4774. <productID id="5416"
  4775. />
  4776. <productGroupable type="0"
  4777. />
  4778. </product>
  4779. <product id="AGV_ARK"
  4780. name="AGV ARK"
  4781. series="SF"
  4782. latestVersion="1.0.3"
  4783. show = "0" >
  4784. <productMenu id="protocol"
  4785. type="1"
  4786. url="3">
  4787. </productMenu>
  4788. <productMenu id="sip"
  4789. type="1" >
  4790. </productMenu>
  4791. <productMenu id="bluetoothIntercom"
  4792. type="1" >
  4793. </productMenu>
  4794. <productMenu id="phone"
  4795. type="1" >
  4796. </productMenu>
  4797. <productMenu id="music"
  4798. type="1" >
  4799. </productMenu>
  4800. <productMenu id="fmradio"
  4801. type="1" >
  4802. </productMenu>
  4803. <productMenu id="deviceSetting"
  4804. type="1"
  4805. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4806. </productMenu>
  4807. <productMenu id="quickGuide"
  4808. type="1"
  4809. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  4810. size="607KB" >
  4811. </productMenu>
  4812. <productMenu id="userGuide"
  4813. type="1"
  4814. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  4815. size="1.91MB" >
  4816. </productMenu>
  4817. <productMenu id="volume"
  4818. type="4" >
  4819. </productMenu>
  4820. <productID id="5420"
  4821. />
  4822. <productGroupable type="0"
  4823. />
  4824. </product>
  4825. <product id="KLIM_KRIOS"
  4826. name="KLIM Krios"
  4827. series="10"
  4828. latestVersion="1.1.2"
  4829. show = "0" >
  4830. <productMenu id="protocol"
  4831. type="0">
  4832. </productMenu>
  4833. <productMenu id="sip"
  4834. type="1" >
  4835. </productMenu>
  4836. <productMenu id="bluetoothIntercom"
  4837. type="1" >
  4838. </productMenu>
  4839. <productMenu id="phone"
  4840. type="2" >
  4841. </productMenu>
  4842. <productMenu id="fmradio"
  4843. type="3" >
  4844. </productMenu>
  4845. <productMenu id="deviceSetting"
  4846. type="1"
  4847. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  4848. <productMenuURL version="1.0"
  4849. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  4850. />
  4851. </productMenu>
  4852. <productMenu id="quickGuide"
  4853. type="1"
  4854. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  4855. size="649KB" >
  4856. </productMenu>
  4857. <productMenu id="userGuide"
  4858. type="1"
  4859. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  4860. size="1.43MB" >
  4861. </productMenu>
  4862. <productID id="5910"
  4863. />
  4864. <productGroupable type="0"
  4865. />
  4866. </product>
  4867. <product id="POLARIS_SLINGSHOT"
  4868. name="Polaris Slingshot"
  4869. series="10"
  4870. latestVersion="1.1.2"
  4871. show = "0" >
  4872. <productMenu id="protocol"
  4873. type="0">
  4874. </productMenu>
  4875. <productMenu id="sip"
  4876. type="1" >
  4877. </productMenu>
  4878. <productMenu id="bluetoothIntercom"
  4879. type="1" >
  4880. </productMenu>
  4881. <productMenu id="phone"
  4882. type="2" >
  4883. </productMenu>
  4884. <productMenu id="fmradio"
  4885. type="3" >
  4886. </productMenu>
  4887. <productMenu id="deviceSetting"
  4888. type="1"
  4889. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  4890. <productMenuURL version="1.0"
  4891. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  4892. />
  4893. </productMenu>
  4894. <productMenu id="quickGuide"
  4895. type="1"
  4896. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  4897. size="689KB" >
  4898. </productMenu>
  4899. <productMenu id="userGuide"
  4900. type="1"
  4901. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  4902. size="1.43MB" >
  4903. </productMenu>
  4904. <productID id="5920"
  4905. />
  4906. <productGroupable type="0"
  4907. />
  4908. </product>
  4909. <product id="DW06"
  4910. name="SEDICI DWO6-PRO"
  4911. series="10"
  4912. latestVersion="1.0.2"
  4913. show = "0" >
  4914. <productMenu id="protocol"
  4915. type="0">
  4916. </productMenu>
  4917. <productMenu id="sip"
  4918. type="1" >
  4919. </productMenu>
  4920. <productMenu id="bluetoothIntercom"
  4921. type="1" >
  4922. </productMenu>
  4923. <productMenu id="phone"
  4924. type="2" >
  4925. </productMenu>
  4926. <productMenu id="fmradio"
  4927. type="3" >
  4928. </productMenu>
  4929. <productMenu id="deviceSetting"
  4930. type="1"
  4931. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4932. </productMenu>
  4933. <productMenu id="quickGuide"
  4934. type="1"
  4935. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  4936. size="529KB" >
  4937. </productMenu>
  4938. <productMenu id="userGuide"
  4939. type="1"
  4940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  4941. size="4.09MB" >
  4942. </productMenu>
  4943. <productID id="6112"
  4944. />
  4945. <productGroupable type="0"
  4946. />
  4947. </product>
  4948. <product id="DW06A"
  4949. name="SEDICI DWO-6"
  4950. series="10"
  4951. latestVersion="1.0.2"
  4952. show = "0" >
  4953. <productMenu id="protocol"
  4954. type="0">
  4955. </productMenu>
  4956. <productMenu id="sip"
  4957. type="1" >
  4958. </productMenu>
  4959. <productMenu id="bluetoothIntercom"
  4960. type="1" >
  4961. </productMenu>
  4962. <productMenu id="phone"
  4963. type="2" >
  4964. </productMenu>
  4965. <productMenu id="fmradio"
  4966. type="3" >
  4967. </productMenu>
  4968. <productMenu id="deviceSetting"
  4969. type="1"
  4970. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  4971. </productMenu>
  4972. <productMenu id="quickGuide"
  4973. type="1"
  4974. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  4975. size="522KB" >
  4976. </productMenu>
  4977. <productMenu id="userGuide"
  4978. type="1"
  4979. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  4980. size="2.71MB" >
  4981. </productMenu>
  4982. <productID id="6114"
  4983. />
  4984. <productGroupable type="0"
  4985. />
  4986. </product>
  4987. <product id="3SPLUS"
  4988. name="ZILL"
  4989. series="3"
  4990. latestVersion="1.0.4"
  4991. show = "0" >
  4992. <productMenu id="protocol"
  4993. type="0">
  4994. </productMenu>
  4995. <productMenu id="sip"
  4996. type="1" >
  4997. </productMenu>
  4998. <productMenu id="bluetoothIntercom"
  4999. type="1" >
  5000. </productMenu>
  5001. <productMenu id="deviceSetting"
  5002. type="1"
  5003. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5004. </productMenu>
  5005. <productMenu id="quickGuide"
  5006. type="1"
  5007. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5008. size="842KB" >
  5009. </productMenu>
  5010. <productMenu id="userGuide"
  5011. type="1"
  5012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  5013. size="1.02MB" >
  5014. </productMenu>
  5015. <productID id="6335"
  5016. />
  5017. <productGroupable type="0"
  5018. />
  5019. </product>
  5020. <product id="HD50S"
  5021. name="Boom! Audio 30K"
  5022. series="30"
  5023. latestVersion="3.4"
  5024. show = "0" >
  5025. <productMenu id="protocol"
  5026. type="1"
  5027. url="0">
  5028. </productMenu>
  5029. <productMenu id="wa"
  5030. type="0" >
  5031. </productMenu>
  5032. <productMenu id="sip"
  5033. type="1" >
  5034. </productMenu>
  5035. <productMenu id="meshIntercom"
  5036. type="20" >
  5037. <productMenuType version="2.9.9"
  5038. type="10"
  5039. />
  5040. </productMenu>
  5041. <productMenu id="bluetoothIntercom"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="phone"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="music"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="fmradio"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="deviceSetting"
  5054. type="1"
  5055. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  5056. <productMenuURL version="3.2"
  5057. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  5058. />
  5059. <productMenuURL version="3.0"
  5060. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  5061. />
  5062. <productMenuURL version="2.2"
  5063. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5064. />
  5065. </productMenu>
  5066. <productMenu id="quickGuide"
  5067. type="1"
  5068. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5069. size="1.06MB" >
  5070. </productMenu>
  5071. <productMenu id="userGuide"
  5072. type="1"
  5073. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5074. size="3.15MB" >
  5075. </productMenu>
  5076. <productMenu id="volume"
  5077. type="1" >
  5078. </productMenu>
  5079. <productID id="3112"
  5080. />
  5081. <productGroupable type="0"
  5082. />
  5083. </product>
  5084. <product id="HD50S"
  5085. name="Boom! Audio N02"
  5086. series="30"
  5087. latestVersion="3.1"
  5088. show = "0" >
  5089. <productMenu id="protocol"
  5090. type="1"
  5091. url="0">
  5092. </productMenu>
  5093. <productMenu id="wa"
  5094. type="2" >
  5095. </productMenu>
  5096. <productMenu id="sip"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="meshIntercom"
  5100. type="20" >
  5101. <productMenuType version="2.9.9"
  5102. type="10"
  5103. />
  5104. </productMenu>
  5105. <productMenu id="bluetoothIntercom"
  5106. type="1" >
  5107. </productMenu>
  5108. <productMenu id="phone"
  5109. type="1" >
  5110. </productMenu>
  5111. <productMenu id="music"
  5112. type="1" >
  5113. </productMenu>
  5114. <productMenu id="fmradio"
  5115. type="1" >
  5116. </productMenu>
  5117. <productMenu id="deviceSetting"
  5118. type="1"
  5119. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  5120. <productMenuURL version="2.2"
  5121. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5122. />
  5123. </productMenu>
  5124. <productMenu id="quickGuide"
  5125. type="1"
  5126. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  5127. size="1.06MB" >
  5128. </productMenu>
  5129. <productMenu id="userGuide"
  5130. type="1"
  5131. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  5132. size="3.15MB" >
  5133. </productMenu>
  5134. <productMenu id="volume"
  5135. type="2" >
  5136. </productMenu>
  5137. <productID id="3114"
  5138. />
  5139. <productGroupable type="0"
  5140. />
  5141. </product>
  5142. <product id="HD50S"
  5143. name="Boom Audio 20S"
  5144. series="50"
  5145. latestVersion="2.5.2"
  5146. show = "0" >
  5147. <productMenu id="protocol"
  5148. type="0">
  5149. </productMenu>
  5150. <productMenu id="sip"
  5151. type="1" >
  5152. <productMenuType version="1.0"
  5153. type="0"
  5154. />
  5155. </productMenu>
  5156. <productMenu id="bluetoothIntercom"
  5157. type="1" >
  5158. <productMenuType version="1.0"
  5159. type="0"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="intercomSetting"
  5163. type="1" >
  5164. </productMenu>
  5165. <productMenu id="phone"
  5166. type="2" >
  5167. </productMenu>
  5168. <productMenu id="fmradio"
  5169. type="3" >
  5170. </productMenu>
  5171. <productMenu id="deviceSetting"
  5172. type="1"
  5173. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5174. <productMenuURL version="2.4"
  5175. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5176. />
  5177. <productMenuURL version="1.5"
  5178. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5179. />
  5180. <productMenuURL version="1.4.1"
  5181. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5182. />
  5183. <productMenuURL version="1.1"
  5184. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5185. />
  5186. <productMenuURL version="1.0"
  5187. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5188. />
  5189. </productMenu>
  5190. <productMenu id="quickGuide"
  5191. type="1"
  5192. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5193. size="264KB" >
  5194. </productMenu>
  5195. <productMenu id="userGuide"
  5196. type="1"
  5197. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5198. size="3.09MB" >
  5199. </productMenu>
  5200. <productID id="4210"
  5201. />
  5202. <productProductKey key="11"
  5203. />
  5204. <productID id="4230"
  5205. />
  5206. <productProductKey key="11"
  5207. />
  5208. <productGroupable type="1"
  5209. />
  5210. </product>
  5211. <product id="HD50S"
  5212. name="Boom Audio 20S EVO"
  5213. series="50"
  5214. latestVersion="2.5.2"
  5215. show = "0" >
  5216. <productMenu id="protocol"
  5217. type="0">
  5218. </productMenu>
  5219. <productMenu id="sip"
  5220. type="1" >
  5221. <productMenuType version="1.0"
  5222. type="0"
  5223. />
  5224. </productMenu>
  5225. <productMenu id="bluetoothIntercom"
  5226. type="1" >
  5227. <productMenuType version="1.0"
  5228. type="0"
  5229. />
  5230. </productMenu>
  5231. <productMenu id="intercomSetting"
  5232. type="1" >
  5233. </productMenu>
  5234. <productMenu id="phone"
  5235. type="2" >
  5236. </productMenu>
  5237. <productMenu id="fmradio"
  5238. type="3" >
  5239. </productMenu>
  5240. <productMenu id="deviceSetting"
  5241. type="1"
  5242. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5243. <productMenuURL version="2.4"
  5244. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5245. />
  5246. <productMenuURL version="1.5"
  5247. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5248. />
  5249. <productMenuURL version="1.4.1"
  5250. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5251. />
  5252. <productMenuURL version="1.1"
  5253. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5254. />
  5255. <productMenuURL version="1.0"
  5256. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5257. />
  5258. </productMenu>
  5259. <productMenu id="quickGuide"
  5260. type="1"
  5261. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5262. size="321KB" >
  5263. </productMenu>
  5264. <productMenu id="userGuide"
  5265. type="1"
  5266. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5267. size="2.46MB" >
  5268. </productMenu>
  5269. <productID id="4230"
  5270. />
  5271. <productProductKey key="27"
  5272. />
  5273. <productGroupable type="1"
  5274. />
  5275. </product>
  5276. <product id="HD50S"
  5277. name="Boom! Audio 10S"
  5278. series="50"
  5279. latestVersion="1.1.3"
  5280. show = "0" >
  5281. <productMenu id="protocol"
  5282. type="0">
  5283. </productMenu>
  5284. <productMenu id="sip"
  5285. type="1" >
  5286. </productMenu>
  5287. <productMenu id="bluetoothIntercom"
  5288. type="1" >
  5289. </productMenu>
  5290. <productMenu id="phone"
  5291. type="2" >
  5292. </productMenu>
  5293. <productMenu id="fmradio"
  5294. type="3" >
  5295. </productMenu>
  5296. <productMenu id="deviceSetting"
  5297. type="1"
  5298. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  5299. </productMenu>
  5300. <productMenu id="quickGuide"
  5301. type="1"
  5302. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5303. size="538KB" >
  5304. </productMenu>
  5305. <productMenu id="userGuide"
  5306. type="1"
  5307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5308. size="1.55MB" >
  5309. </productMenu>
  5310. <productID id="5532"
  5311. />
  5312. <productGroupable type="0"
  5313. />
  5314. </product>
  5315. <product id="HD50S"
  5316. name="Boom! Audio N01 10R"
  5317. series="50"
  5318. latestVersion="1.1.3"
  5319. show = "0" >
  5320. <productMenu id="protocol"
  5321. type="0">
  5322. </productMenu>
  5323. <productMenu id="sip"
  5324. type="1" >
  5325. </productMenu>
  5326. <productMenu id="bluetoothIntercom"
  5327. type="1" >
  5328. </productMenu>
  5329. <productMenu id="phone"
  5330. type="2" >
  5331. </productMenu>
  5332. <productMenu id="fmradio"
  5333. type="3" >
  5334. </productMenu>
  5335. <productMenu id="deviceSetting"
  5336. type="1"
  5337. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  5338. </productMenu>
  5339. <productMenu id="quickGuide"
  5340. type="1"
  5341. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5342. size="766KB" >
  5343. </productMenu>
  5344. <productMenu id="userGuide"
  5345. type="1"
  5346. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5347. size="1.45MB" >
  5348. </productMenu>
  5349. <productID id="5522"
  5350. />
  5351. <productGroupable type="0"
  5352. />
  5353. </product>
  5354. <product id="HD50S"
  5355. name="OUTRUSH-R N03"
  5356. series="50"
  5357. latestVersion="1.2.1"
  5358. show = "0" >
  5359. <productMenu id="protocol"
  5360. type="0">
  5361. </productMenu>
  5362. <productMenu id="sip"
  5363. type="1" >
  5364. </productMenu>
  5365. <productMenu id="bluetoothIntercom"
  5366. type="1" >
  5367. </productMenu>
  5368. <productMenu id="phone"
  5369. type="2" >
  5370. </productMenu>
  5371. <productMenu id="fmradio"
  5372. type="3" >
  5373. </productMenu>
  5374. <productMenu id="deviceSetting"
  5375. type="1"
  5376. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5377. </productMenu>
  5378. <productMenu id="userGuide"
  5379. type="1"
  5380. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  5381. size="660KB" >
  5382. </productMenu>
  5383. <productID id="5434"
  5384. />
  5385. <productGroupable type="0"
  5386. />
  5387. </product>
  5388. <product id="HD50S"
  5389. name="OUTRUSH-R N03"
  5390. series="50"
  5391. latestVersion="2.0"
  5392. show = "0" >
  5393. <productMenu id="protocol"
  5394. type="3" >
  5395. </productMenu>
  5396. <productMenu id="sip"
  5397. type="1" >
  5398. </productMenu>
  5399. <productMenu id="bluetoothIntercom"
  5400. type="1" >
  5401. </productMenu>
  5402. <productMenu id="phone"
  5403. type="1" >
  5404. </productMenu>
  5405. <productMenu id="fmradio"
  5406. type="1" >
  5407. </productMenu>
  5408. <productMenu id="deviceSetting"
  5409. type="1"
  5410. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  5411. </productMenu>
  5412. <productMenu id="userGuide"
  5413. type="1"
  5414. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  5415. size="1.14MB" >
  5416. </productMenu>
  5417. <productID id="5441"
  5418. />
  5419. <productGroupable type="0"
  5420. />
  5421. </product>
  5422. <product id="5R"
  5423. name="5R"
  5424. series="5"
  5425. latestVersion="1.0.1"
  5426. show = "1" >
  5427. <productMenu id="protocol"
  5428. type="3" >
  5429. </productMenu>
  5430. <productMenu id="sip"
  5431. type="1" >
  5432. </productMenu>
  5433. <productMenu id="bluetoothIntercom"
  5434. type="1" >
  5435. </productMenu>
  5436. <productMenu id="phone"
  5437. type="1" >
  5438. </productMenu>
  5439. <productMenu id="fmradio"
  5440. type="1" >
  5441. </productMenu>
  5442. <productMenu id="deviceSetting"
  5443. type="1"
  5444. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5445. </productMenu>
  5446. <productMenu id="quickGuide"
  5447. type="1"
  5448. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  5449. size="934KB" >
  5450. </productMenu>
  5451. <productMenu id="userGuide"
  5452. type="1"
  5453. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  5454. size="1.14MB" >
  5455. </productMenu>
  5456. <productID id="5591"
  5457. />
  5458. <productGroupable type="0"
  5459. />
  5460. </product>
  5461. <product id="5R"
  5462. name="5R LITE"
  5463. series="5"
  5464. latestVersion="1.0.1"
  5465. show = "1" >
  5466. <productMenu id="protocol"
  5467. type="3" >
  5468. </productMenu>
  5469. <productMenu id="sip"
  5470. type="1" >
  5471. </productMenu>
  5472. <productMenu id="bluetoothIntercom"
  5473. type="1" >
  5474. </productMenu>
  5475. <productMenu id="phone"
  5476. type="1" >
  5477. </productMenu>
  5478. <productMenu id="fmradio"
  5479. type="1" >
  5480. </productMenu>
  5481. <productMenu id="deviceSetting"
  5482. type="1"
  5483. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  5484. </productMenu>
  5485. <productMenu id="quickGuide"
  5486. type="1"
  5487. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  5488. size="934KB" >
  5489. </productMenu>
  5490. <productMenu id="userGuide"
  5491. type="1"
  5492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  5493. size="1.14MB" >
  5494. </productMenu>
  5495. <productID id="5592"
  5496. />
  5497. <productGroupable type="0"
  5498. />
  5499. </product>
  5500. <product id="5R"
  5501. name="Ridekont 5R"
  5502. series="5"
  5503. latestVersion="1.0"
  5504. show = "0" >
  5505. <productMenu id="protocol"
  5506. type="3" >
  5507. </productMenu>
  5508. <productMenu id="sip"
  5509. type="1" >
  5510. </productMenu>
  5511. <productMenu id="bluetoothIntercom"
  5512. type="1" >
  5513. </productMenu>
  5514. <productMenu id="phone"
  5515. type="1" >
  5516. </productMenu>
  5517. <productMenu id="fmradio"
  5518. type="1" >
  5519. </productMenu>
  5520. <productMenu id="deviceSetting"
  5521. type="1"
  5522. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5523. </productMenu>
  5524. <productMenu id="quickGuide"
  5525. type="1"
  5526. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  5527. size="934KB" >
  5528. </productMenu>
  5529. <productMenu id="userGuide"
  5530. type="1"
  5531. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  5532. size="1.14MB" >
  5533. </productMenu>
  5534. <productID id="5593"
  5535. />
  5536. <productGroupable type="0"
  5537. />
  5538. </product>
  5539. <product id="5R"
  5540. name="Ridekont 5R LITE"
  5541. series="5"
  5542. latestVersion="1.0"
  5543. show = "0" >
  5544. <productMenu id="protocol"
  5545. type="3" >
  5546. </productMenu>
  5547. <productMenu id="sip"
  5548. type="1" >
  5549. </productMenu>
  5550. <productMenu id="bluetoothIntercom"
  5551. type="1" >
  5552. </productMenu>
  5553. <productMenu id="phone"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="fmradio"
  5557. type="1" >
  5558. </productMenu>
  5559. <productMenu id="deviceSetting"
  5560. type="1"
  5561. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  5562. </productMenu>
  5563. <productMenu id="quickGuide"
  5564. type="1"
  5565. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  5566. size="934KB" >
  5567. </productMenu>
  5568. <productMenu id="userGuide"
  5569. type="1"
  5570. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  5571. size="1.14MB" >
  5572. </productMenu>
  5573. <productID id="5594"
  5574. />
  5575. <productGroupable type="0"
  5576. />
  5577. </product>
  5578. <product id="C30"
  5579. name="SENA C30"
  5580. series="5"
  5581. latestVersion="1.0"
  5582. latestVersionVoicePrompt="0.8"
  5583. show = "-1" >
  5584. <productMenu id="protocol"
  5585. type="2" >
  5586. </productMenu>
  5587. <productMenu id="alexa"
  5588. type="0" >
  5589. </productMenu>
  5590. <productMenu id="ota"
  5591. type="0" >
  5592. </productMenu>
  5593. <productMenu id="wa"
  5594. type="0" >
  5595. </productMenu>
  5596. <productMenu id="meshIntercom"
  5597. type="30" >
  5598. </productMenu>
  5599. <productMenu id="phone"
  5600. type="1" >
  5601. </productMenu>
  5602. <productMenu id="music"
  5603. type="1" >
  5604. </productMenu>
  5605. <productMenu id="musicSharing"
  5606. type="0" >
  5607. </productMenu>
  5608. <productMenu id="deviceSetting"
  5609. type="1"
  5610. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_01_zh_rCN.xml" >
  5611. </productMenu>
  5612. <productMenu id="quickGuide"
  5613. type="1"
  5614. url=""
  5615. size="1.12MB" >
  5616. </productMenu>
  5617. <productMenu id="userGuide"
  5618. type="1"
  5619. url=""
  5620. size="2.0MB" >
  5621. </productMenu>
  5622. <productMenu id="videoGuide"
  5623. type="1"
  5624. url=""
  5625. size="3.41MB" >
  5626. </productMenu>
  5627. <productMenu id="volume"
  5628. type="12" >
  5629. </productMenu>
  5630. <productMenu id="battery"
  5631. type="1" >
  5632. </productMenu>
  5633. <productID id="683A"
  5634. />
  5635. <productGroupable type="0"
  5636. />
  5637. </product>
  5638. <product id="C20"
  5639. name="C20"
  5640. series="5"
  5641. latestVersion="1.0"
  5642. show = "0" >
  5643. <productMenu id="protocol"
  5644. type="3" >
  5645. </productMenu>
  5646. <productMenu id="sip"
  5647. type="1" >
  5648. </productMenu>
  5649. <productMenu id="bluetoothIntercom"
  5650. type="1" >
  5651. </productMenu>
  5652. <productMenu id="phone"
  5653. type="1" >
  5654. </productMenu>
  5655. <productMenu id="deviceSetting"
  5656. type="1"
  5657. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  5658. </productMenu>
  5659. <productMenu id="quickGuide"
  5660. type="1"
  5661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  5662. size="934KB" >
  5663. </productMenu>
  5664. <productMenu id="userGuide"
  5665. type="1"
  5666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  5667. size="1.14MB" >
  5668. </productMenu>
  5669. <productID id="3701"
  5670. />
  5671. <productGroupable type="0"
  5672. />
  5673. </product>
  5674. <product id="C10"
  5675. name="C10"
  5676. series="5"
  5677. latestVersion="1.2"
  5678. show = "0" >
  5679. <productMenu id="protocol"
  5680. type="3" >
  5681. </productMenu>
  5682. <productMenu id="sip"
  5683. type="1" >
  5684. </productMenu>
  5685. <productMenu id="bluetoothIntercom"
  5686. type="1" >
  5687. </productMenu>
  5688. <productMenu id="phone"
  5689. type="1" >
  5690. </productMenu>
  5691. <productMenu id="fmradio"
  5692. type="0" >
  5693. </productMenu>
  5694. <productMenu id="deviceSetting"
  5695. type="1"
  5696. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10.xml" >
  5697. </productMenu>
  5698. <productMenu id="userGuide"
  5699. type="1"
  5700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C10_1.0.0_sc_221228.pdf"
  5701. size="1.14MB" >
  5702. </productMenu>
  5703. <productID id="5595"
  5704. />
  5705. <productGroupable type="0"
  5706. />
  5707. </product>
  5708. <product id="B10"
  5709. name="B10"
  5710. series="5"
  5711. latestVersion="1.0"
  5712. show = "0" >
  5713. <productMenu id="protocol"
  5714. type="3" >
  5715. </productMenu>
  5716. <productMenu id="sip"
  5717. type="1" >
  5718. </productMenu>
  5719. <productMenu id="bluetoothIntercom"
  5720. type="1" >
  5721. </productMenu>
  5722. <productMenu id="phone"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="fmradio"
  5726. type="0" >
  5727. </productMenu>
  5728. <productMenu id="deviceSetting"
  5729. type="1"
  5730. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10.xml" >
  5731. </productMenu>
  5732. <productMenu id="userGuide"
  5733. type="1"
  5734. url=""
  5735. size="1.14MB" >
  5736. </productMenu>
  5737. <productID id="5596"
  5738. />
  5739. <productGroupable type="0"
  5740. />
  5741. </product>
  5742. <product id="ACSRAM"
  5743. name="ACS-RAM"
  5744. series="ACS"
  5745. latestVersion="1.0.3"
  5746. show = "1" >
  5747. <productMenu id="protocol"
  5748. type="3" >
  5749. </productMenu>
  5750. <productMenu id="sip"
  5751. type="1" >
  5752. </productMenu>
  5753. <productMenu id="bluetoothIntercom"
  5754. type="1" >
  5755. </productMenu>
  5756. <productMenu id="deviceSetting"
  5757. type="1"
  5758. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  5759. </productMenu>
  5760. <productMenu id="quickGuide"
  5761. type="1"
  5762. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  5763. size="344KB" >
  5764. </productMenu>
  5765. <productMenu id="userGuide"
  5766. type="1"
  5767. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  5768. size="1.14MB" >
  5769. </productMenu>
  5770. <productID id="3400"
  5771. />
  5772. <productGroupable type="0"
  5773. />
  5774. </product>
  5775. <product id="ACS10"
  5776. name="ACS10"
  5777. series="ACS"
  5778. latestVersion="1.0.2"
  5779. show = "1" >
  5780. <productMenu id="protocol"
  5781. type="0">
  5782. </productMenu>
  5783. <productMenu id="sip"
  5784. type="1" >
  5785. </productMenu>
  5786. <productMenu id="bluetoothIntercom"
  5787. type="1" >
  5788. </productMenu>
  5789. <productMenu id="phone"
  5790. type="2" >
  5791. </productMenu>
  5792. <productMenu id="deviceSetting"
  5793. type="1"
  5794. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  5795. </productMenu>
  5796. <productMenu id="quickGuide"
  5797. type="1"
  5798. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  5799. size="970KB" >
  5800. </productMenu>
  5801. <productMenu id="userGuide"
  5802. type="1"
  5803. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  5804. size="1.26MB" >
  5805. </productMenu>
  5806. <productID id="3300"
  5807. />
  5808. <productGroupable type="0"
  5809. />
  5810. </product>
  5811. <product id="DWO7ProMesh"
  5812. name="DWO 7 Pro Mesh"
  5813. series="50"
  5814. latestVersion="1.0"
  5815. latestVersionVoicePrompt="0.8"
  5816. show = "0" >
  5817. <productMenu id="protocol"
  5818. type="2" >
  5819. </productMenu>
  5820. <productMenu id="alexa"
  5821. type="0" >
  5822. </productMenu>
  5823. <productMenu id="ota"
  5824. type="2" >
  5825. <otaPackages>
  5826. <package
  5827. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.0-build7.img"
  5828. size="2945812"
  5829. />
  5830. </otaPackages>
  5831. </productMenu>
  5832. <productMenu id="wa"
  5833. type="0" >
  5834. </productMenu>
  5835. <productMenu id="meshIntercom"
  5836. type="20" >
  5837. </productMenu>
  5838. <productMenu id="phone"
  5839. type="1" >
  5840. </productMenu>
  5841. <productMenu id="music"
  5842. type="1" >
  5843. </productMenu>
  5844. <productMenu id="fmradio"
  5845. type="1" >
  5846. </productMenu>
  5847. <productMenu id="musicSharing"
  5848. type="0" >
  5849. </productMenu>
  5850. <productMenu id="deviceSetting"
  5851. type="1"
  5852. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  5853. </productMenu>
  5854. <productMenu id="quickGuide"
  5855. type="1"
  5856. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.0.0_en_230911.pdf"
  5857. size="1.12MB" >
  5858. </productMenu>
  5859. <productMenu id="userGuide"
  5860. type="1"
  5861. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.0.0_en_230908.pdf"
  5862. size="2.0MB" >
  5863. </productMenu>
  5864. <productMenu id="volume"
  5865. type="12" >
  5866. </productMenu>
  5867. <productMenu id="battery"
  5868. type="1" >
  5869. </productMenu>
  5870. <productID id="6806"
  5871. />
  5872. <productGroupable type="0"
  5873. />
  5874. </product>
  5875. <product id="MeshStation"
  5876. name="Mesh Station"
  5877. series="50"
  5878. latestVersion="0.9"
  5879. show = "0" >
  5880. <productMenu id="protocol"
  5881. type="2" >
  5882. </productMenu>
  5883. <productMenu id="meshIntercom"
  5884. type="20"
  5885. url="99" >
  5886. </productMenu>
  5887. <productID id="3161"
  5888. />
  5889. <productGroupable type="0"
  5890. />
  5891. </product>
  5892. </products>
  5893. </sna>