snm.xml 180 KB

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