snm.xml 175 KB

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