snm.xml 177 KB

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