snm.xml 192 KB

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