snm.xml 178 KB

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