snm.xml 180 KB

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