snm.xml 187 KB

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