snm.xml 183 KB

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