snm.xml 175 KB

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