snm.xml 176 KB

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