snm.xml 180 KB

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