snm.xml 184 KB

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