snm.xml 189 KB

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