snm.xml 180 KB

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