snm.xml 172 KB

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