snm.xml 188 KB

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