snm.xml 183 KB

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