snm.xml 166 KB

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