snm.xml 197 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20220920" 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="10C_EVO"
  2469. name="10C EVO"
  2470. series="10"
  2471. latestVersion="1.7"
  2472. show = "0" >
  2473. <productMenu id="protocol"
  2474. type="0">
  2475. </productMenu>
  2476. <productMenu id="sip"
  2477. type="1" >
  2478. </productMenu>
  2479. <productMenu id="bluetoothIntercom"
  2480. type="1" >
  2481. </productMenu>
  2482. <productMenu id="phone"
  2483. type="2" >
  2484. </productMenu>
  2485. <productMenu id="fmradio"
  2486. type="3" >
  2487. </productMenu>
  2488. <productMenu id="deviceSetting"
  2489. type="1"
  2490. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  2491. <productMenuURL version="1.3.1"
  2492. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2493. />
  2494. </productMenu>
  2495. <productMenu id="quickGuide"
  2496. type="1"
  2497. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_10C_EVO_1.2.0_en_211102.pdf"
  2498. size="1.32MB" >
  2499. </productMenu>
  2500. <productMenu id="userGuide"
  2501. type="1"
  2502. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10C_EVO_1.3.0_en_211102.pdf"
  2503. size="1.68MB" >
  2504. </productMenu>
  2505. <productID id="5570"
  2506. />
  2507. <productGroupable type="0"
  2508. />
  2509. </product>
  2510. <product id="10C_Pro"
  2511. name="10C Pro"
  2512. series="10"
  2513. latestVersion="2.7.1"
  2514. show = "0" >
  2515. <productMenu id="protocol"
  2516. type="0">
  2517. </productMenu>
  2518. <productMenu id="sip"
  2519. type="1" >
  2520. </productMenu>
  2521. <productMenu id="bluetoothIntercom"
  2522. type="1" >
  2523. </productMenu>
  2524. <productMenu id="phone"
  2525. type="2" >
  2526. </productMenu>
  2527. <productMenu id="fmradio"
  2528. type="3" >
  2529. </productMenu>
  2530. <productMenu id="deviceSetting"
  2531. type="1"
  2532. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  2533. <productMenuURL version="2.5.1"
  2534. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  2535. />
  2536. <productMenuURL version="1.0"
  2537. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  2538. />
  2539. </productMenu>
  2540. <productMenu id="quickGuide"
  2541. type="1"
  2542. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  2543. size="651KB" >
  2544. </productMenu>
  2545. <productMenu id="userGuide"
  2546. type="1"
  2547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  2548. size="2.34MB" >
  2549. </productMenu>
  2550. <productID id="5580"
  2551. />
  2552. <productGroupable type="0"
  2553. />
  2554. </product>
  2555. <product id="10C"
  2556. name="10C"
  2557. series="10"
  2558. latestVersion="3.0.4"
  2559. show = "0" >
  2560. <productMenu id="protocol"
  2561. type="0">
  2562. </productMenu>
  2563. <productMenu id="sip"
  2564. type="1" >
  2565. <productMenuType version="1.0.4"
  2566. type="0"
  2567. />
  2568. </productMenu>
  2569. <productMenu id="bluetoothIntercom"
  2570. type="1" >
  2571. <productMenuType version="1.0.4"
  2572. type="0"
  2573. />
  2574. </productMenu>
  2575. <productMenu id="phone"
  2576. type="2" >
  2577. </productMenu>
  2578. <productMenu id="fmradio"
  2579. type="3" >
  2580. </productMenu>
  2581. <productMenu id="deviceSetting"
  2582. type="1"
  2583. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  2584. <productMenuURL version="2.3"
  2585. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  2586. />
  2587. <productMenuURL version="2.1.1"
  2588. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  2589. />
  2590. <productMenuURL version="1.0.4"
  2591. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  2592. />
  2593. <productMenuURL version="1.0.2"
  2594. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  2595. />
  2596. </productMenu>
  2597. <productMenu id="quickGuide"
  2598. type="1"
  2599. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  2600. size="935KB" >
  2601. </productMenu>
  2602. <productMenu id="userGuide"
  2603. type="1"
  2604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  2605. size="2.82MB" >
  2606. </productMenu>
  2607. <productID id="5510"
  2608. />
  2609. <productGroupable type="0"
  2610. />
  2611. </product>
  2612. <product id="5S"
  2613. name="5S"
  2614. nameGuide="5S (2022~)"
  2615. series="5"
  2616. latestVersion="2.1"
  2617. show = "1" >
  2618. <productMenu id="protocol"
  2619. type="3" >
  2620. </productMenu>
  2621. <productMenu id="sip"
  2622. type="1" >
  2623. </productMenu>
  2624. <productMenu id="bluetoothIntercom"
  2625. type="1" >
  2626. </productMenu>
  2627. <productMenu id="phone"
  2628. type="1" >
  2629. </productMenu>
  2630. <productMenu id="fmradio"
  2631. type="1" >
  2632. </productMenu>
  2633. <productMenu id="deviceSetting"
  2634. type="1"
  2635. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  2636. </productMenu>
  2637. <productMenu id="quickGuide"
  2638. type="1"
  2639. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_2.0.0_en_220304.pdf"
  2640. size="934KB" >
  2641. </productMenu>
  2642. <productMenu id="userGuide"
  2643. type="1"
  2644. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_2.0.0_en_220406.pdf"
  2645. size="1.14MB" >
  2646. </productMenu>
  2647. <productID id="5590"
  2648. />
  2649. <productGroupable type="0"
  2650. />
  2651. </product>
  2652. <product id="5S"
  2653. name="5S"
  2654. nameGuide="5S (~2021)"
  2655. series="5"
  2656. latestVersion="1.2"
  2657. show = "1" >
  2658. <productMenu id="protocol"
  2659. type="0">
  2660. </productMenu>
  2661. <productMenu id="sip"
  2662. type="1" >
  2663. </productMenu>
  2664. <productMenu id="bluetoothIntercom"
  2665. type="1" >
  2666. </productMenu>
  2667. <productMenu id="phone"
  2668. type="2" >
  2669. </productMenu>
  2670. <productMenu id="fmradio"
  2671. type="3" >
  2672. </productMenu>
  2673. <productMenu id="deviceSetting"
  2674. type="1"
  2675. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  2676. </productMenu>
  2677. <productMenu id="quickGuide"
  2678. type="1"
  2679. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  2680. size="970KB" >
  2681. </productMenu>
  2682. <productMenu id="userGuide"
  2683. type="1"
  2684. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  2685. size="1.26MB" >
  2686. </productMenu>
  2687. <productID id="5534"
  2688. />
  2689. <productGroupable type="0"
  2690. />
  2691. </product>
  2692. <product id="3SPLUS"
  2693. name="3S PLUS"
  2694. series="3"
  2695. latestVersion="1.0.5"
  2696. show = "1" >
  2697. <productMenu id="protocol"
  2698. type="0">
  2699. </productMenu>
  2700. <productMenu id="sip"
  2701. type="1" >
  2702. </productMenu>
  2703. <productMenu id="bluetoothIntercom"
  2704. type="1" >
  2705. </productMenu>
  2706. <productMenu id="deviceSetting"
  2707. type="1"
  2708. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  2709. </productMenu>
  2710. <productMenu id="quickGuide"
  2711. type="1"
  2712. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  2713. size="842KB" >
  2714. </productMenu>
  2715. <productMenu id="userGuide"
  2716. type="1"
  2717. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  2718. size="1.02MB" >
  2719. </productMenu>
  2720. <productID id="6320"
  2721. />
  2722. <productGroupable type="0"
  2723. />
  2724. </product>
  2725. <product id="3SPLUS"
  2726. name="ZILL"
  2727. series="3"
  2728. latestVersion="1.0.4"
  2729. show = "0" >
  2730. <productMenu id="protocol"
  2731. type="0">
  2732. </productMenu>
  2733. <productMenu id="sip"
  2734. type="1" >
  2735. </productMenu>
  2736. <productMenu id="bluetoothIntercom"
  2737. type="1" >
  2738. </productMenu>
  2739. <productMenu id="deviceSetting"
  2740. type="1"
  2741. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  2742. </productMenu>
  2743. <productMenu id="quickGuide"
  2744. type="1"
  2745. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  2746. size="842KB" >
  2747. </productMenu>
  2748. <productMenu id="userGuide"
  2749. type="1"
  2750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  2751. size="1.02MB" >
  2752. </productMenu>
  2753. <productID id="6335"
  2754. />
  2755. <productGroupable type="0"
  2756. />
  2757. </product>
  2758. <product id="33i"
  2759. name="33i"
  2760. series="50"
  2761. latestVersion="4.0"
  2762. show = "0" >
  2763. <productMenu id="protocol"
  2764. type="2" >
  2765. </productMenu>
  2766. <productMenu id="alexa"
  2767. type="0" >
  2768. </productMenu>
  2769. <productMenu id="ota"
  2770. type="0" >
  2771. </productMenu>
  2772. <productMenu id="wa"
  2773. type="0" >
  2774. </productMenu>
  2775. <productMenu id="sip"
  2776. type="1" >
  2777. </productMenu>
  2778. <productMenu id="meshIntercom"
  2779. type="20" >
  2780. </productMenu>
  2781. <productMenu id="bluetoothIntercom"
  2782. type="1" >
  2783. </productMenu>
  2784. <productMenu id="phone"
  2785. type="1" >
  2786. </productMenu>
  2787. <productMenu id="music"
  2788. type="1" >
  2789. </productMenu>
  2790. <productMenu id="fmradio"
  2791. type="1" >
  2792. </productMenu>
  2793. <productMenu id="deviceSetting"
  2794. type="1"
  2795. url="https://api.sena.com/support/SenaNeoApp/33i/NS_33iV2.xml" >
  2796. </productMenu>
  2797. <productMenu id="quickGuide"
  2798. type="1"
  2799. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_30k_2.1.0_en_210414.pdf"
  2800. size="934KB" >
  2801. </productMenu>
  2802. <productMenu id="userGuide"
  2803. type="1"
  2804. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_30K_3.1.0_en_210526.pdf"
  2805. size="1.14MB" >
  2806. </productMenu>
  2807. <productMenu id="volume"
  2808. type="11" >
  2809. </productMenu>
  2810. <productMenu id="battery"
  2811. type="1" >
  2812. </productMenu>
  2813. <productID id="3215"
  2814. />
  2815. <productGroupable type="0"
  2816. />
  2817. </product>
  2818. <product id="HD50S"
  2819. name="Boom! Audio 30K"
  2820. series="30"
  2821. latestVersion="3.3"
  2822. show = "0" >
  2823. <productMenu id="protocol"
  2824. type="1"
  2825. url="0">
  2826. </productMenu>
  2827. <productMenu id="wa"
  2828. type="0" >
  2829. </productMenu>
  2830. <productMenu id="sip"
  2831. type="1" >
  2832. </productMenu>
  2833. <productMenu id="meshIntercom"
  2834. type="20" >
  2835. <productMenuType version="2.9.9"
  2836. type="10"
  2837. />
  2838. </productMenu>
  2839. <productMenu id="bluetoothIntercom"
  2840. type="1" >
  2841. </productMenu>
  2842. <productMenu id="phone"
  2843. type="1" >
  2844. </productMenu>
  2845. <productMenu id="music"
  2846. type="1" >
  2847. </productMenu>
  2848. <productMenu id="fmradio"
  2849. type="1" >
  2850. </productMenu>
  2851. <productMenu id="deviceSetting"
  2852. type="1"
  2853. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  2854. <productMenuURL version="3.2"
  2855. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  2856. />
  2857. <productMenuURL version="3.0"
  2858. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  2859. />
  2860. <productMenuURL version="2.2"
  2861. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  2862. />
  2863. </productMenu>
  2864. <productMenu id="quickGuide"
  2865. type="1"
  2866. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Boom_Audio_30k_2.0.0_en_210303_D00012.pdf"
  2867. size="1.06MB" >
  2868. </productMenu>
  2869. <productMenu id="userGuide"
  2870. type="1"
  2871. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Boom%20Audio%2030K_2.0.0_en_210303.pdf"
  2872. size="3.15MB" >
  2873. </productMenu>
  2874. <productMenu id="volume"
  2875. type="1" >
  2876. </productMenu>
  2877. <productID id="3112"
  2878. />
  2879. <productGroupable type="0"
  2880. />
  2881. </product>
  2882. <product id="HD50S"
  2883. name="Boom! Audio N02"
  2884. series="30"
  2885. latestVersion="3.0"
  2886. show = "0" >
  2887. <productMenu id="protocol"
  2888. type="1"
  2889. url="0">
  2890. </productMenu>
  2891. <productMenu id="wa"
  2892. type="0" >
  2893. </productMenu>
  2894. <productMenu id="sip"
  2895. type="1" >
  2896. </productMenu>
  2897. <productMenu id="meshIntercom"
  2898. type="20" >
  2899. <productMenuType version="2.9.9"
  2900. type="10"
  2901. />
  2902. </productMenu>
  2903. <productMenu id="bluetoothIntercom"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="phone"
  2907. type="1" >
  2908. </productMenu>
  2909. <productMenu id="music"
  2910. type="1" >
  2911. </productMenu>
  2912. <productMenu id="fmradio"
  2913. type="1" >
  2914. </productMenu>
  2915. <productMenu id="deviceSetting"
  2916. type="1"
  2917. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  2918. <productMenuURL version="2.2"
  2919. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  2920. />
  2921. </productMenu>
  2922. <productMenu id="quickGuide"
  2923. type="1"
  2924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_HD-N02_2.0.0_en_210303_D00022.pdf"
  2925. size="1.06MB" >
  2926. </productMenu>
  2927. <productMenu id="userGuide"
  2928. type="1"
  2929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_HD-N02_2.0.0_en_210303.pdf"
  2930. size="3.15MB" >
  2931. </productMenu>
  2932. <productMenu id="volume"
  2933. type="2" >
  2934. </productMenu>
  2935. <productID id="3114"
  2936. />
  2937. <productGroupable type="0"
  2938. />
  2939. </product>
  2940. <product id="HD50S"
  2941. name="Boom Audio 20S"
  2942. series="50"
  2943. latestVersion="2.5.1"
  2944. show = "0" >
  2945. <productMenu id="protocol"
  2946. type="0">
  2947. </productMenu>
  2948. <productMenu id="sip"
  2949. type="1" >
  2950. <productMenuType version="1.0"
  2951. type="0"
  2952. />
  2953. </productMenu>
  2954. <productMenu id="bluetoothIntercom"
  2955. type="1" >
  2956. <productMenuType version="1.0"
  2957. type="0"
  2958. />
  2959. </productMenu>
  2960. <productMenu id="intercomSetting"
  2961. type="1" >
  2962. </productMenu>
  2963. <productMenu id="phone"
  2964. type="2" >
  2965. </productMenu>
  2966. <productMenu id="fmradio"
  2967. type="3" >
  2968. </productMenu>
  2969. <productMenu id="deviceSetting"
  2970. type="1"
  2971. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  2972. <productMenuURL version="2.4"
  2973. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  2974. />
  2975. <productMenuURL version="1.5"
  2976. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  2977. />
  2978. <productMenuURL version="1.4.1"
  2979. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  2980. />
  2981. <productMenuURL version="1.1"
  2982. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  2983. />
  2984. <productMenuURL version="1.0"
  2985. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  2986. />
  2987. </productMenu>
  2988. <productMenu id="quickGuide"
  2989. type="1"
  2990. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_20S_01.pdf"
  2991. size="264KB" >
  2992. </productMenu>
  2993. <productMenu id="userGuide"
  2994. type="1"
  2995. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_20S_v1.7_01.pdf"
  2996. size="3.09MB" >
  2997. </productMenu>
  2998. <productID id="4210"
  2999. />
  3000. <productProductKey key="11"
  3001. />
  3002. <productID id="4230"
  3003. />
  3004. <productProductKey key="11"
  3005. />
  3006. <productGroupable type="1"
  3007. />
  3008. </product>
  3009. <product id="HD50S"
  3010. name="Boom Audio 20S EVO"
  3011. series="50"
  3012. latestVersion="2.5.1"
  3013. show = "0" >
  3014. <productMenu id="protocol"
  3015. type="0">
  3016. </productMenu>
  3017. <productMenu id="sip"
  3018. type="1" >
  3019. <productMenuType version="1.0"
  3020. type="0"
  3021. />
  3022. </productMenu>
  3023. <productMenu id="bluetoothIntercom"
  3024. type="1" >
  3025. <productMenuType version="1.0"
  3026. type="0"
  3027. />
  3028. </productMenu>
  3029. <productMenu id="intercomSetting"
  3030. type="1" >
  3031. </productMenu>
  3032. <productMenu id="phone"
  3033. type="2" >
  3034. </productMenu>
  3035. <productMenu id="fmradio"
  3036. type="3" >
  3037. </productMenu>
  3038. <productMenu id="deviceSetting"
  3039. type="1"
  3040. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  3041. <productMenuURL version="2.4"
  3042. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3043. />
  3044. <productMenuURL version="1.5"
  3045. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3046. />
  3047. <productMenuURL version="1.4.1"
  3048. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3049. />
  3050. <productMenuURL version="1.1"
  3051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3052. />
  3053. <productMenuURL version="1.0"
  3054. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3055. />
  3056. </productMenu>
  3057. <productMenu id="quickGuide"
  3058. type="1"
  3059. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_20S_EVO_01.pdf"
  3060. size="321KB" >
  3061. </productMenu>
  3062. <productMenu id="userGuide"
  3063. type="1"
  3064. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_20S_EVO_v1.7_01.pdf"
  3065. size="2.46MB" >
  3066. </productMenu>
  3067. <productID id="4230"
  3068. />
  3069. <productProductKey key="27"
  3070. />
  3071. <productGroupable type="1"
  3072. />
  3073. </product>
  3074. <product id="HD50S"
  3075. name="Boom! Audio 10S"
  3076. series="50"
  3077. latestVersion="1.1.2"
  3078. show = "0" >
  3079. <productMenu id="protocol"
  3080. type="0">
  3081. </productMenu>
  3082. <productMenu id="sip"
  3083. type="1" >
  3084. </productMenu>
  3085. <productMenu id="bluetoothIntercom"
  3086. type="1" >
  3087. </productMenu>
  3088. <productMenu id="phone"
  3089. type="2" >
  3090. </productMenu>
  3091. <productMenu id="fmradio"
  3092. type="3" >
  3093. </productMenu>
  3094. <productMenu id="deviceSetting"
  3095. type="1"
  3096. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  3097. </productMenu>
  3098. <productMenu id="quickGuide"
  3099. type="1"
  3100. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_10S_01.pdf"
  3101. size="538KB" >
  3102. </productMenu>
  3103. <productMenu id="userGuide"
  3104. type="1"
  3105. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_10S_v1.0_01.pdf"
  3106. size="1.55MB" >
  3107. </productMenu>
  3108. <productID id="5532"
  3109. />
  3110. <productGroupable type="0"
  3111. />
  3112. </product>
  3113. <product id="HD50S"
  3114. name="Boom! Audio N01 10R"
  3115. series="50"
  3116. latestVersion="1.1.2"
  3117. show = "0" >
  3118. <productMenu id="protocol"
  3119. type="0">
  3120. </productMenu>
  3121. <productMenu id="sip"
  3122. type="1" >
  3123. </productMenu>
  3124. <productMenu id="bluetoothIntercom"
  3125. type="1" >
  3126. </productMenu>
  3127. <productMenu id="phone"
  3128. type="2" >
  3129. </productMenu>
  3130. <productMenu id="fmradio"
  3131. type="3" >
  3132. </productMenu>
  3133. <productMenu id="deviceSetting"
  3134. type="1"
  3135. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  3136. </productMenu>
  3137. <productMenu id="quickGuide"
  3138. type="1"
  3139. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_N01_01.pdf"
  3140. size="766KB" >
  3141. </productMenu>
  3142. <productMenu id="userGuide"
  3143. type="1"
  3144. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_N01_v1.0_02.pdf"
  3145. size="1.45MB" >
  3146. </productMenu>
  3147. <productID id="5522"
  3148. />
  3149. <productGroupable type="0"
  3150. />
  3151. </product>
  3152. <product id="HD50S"
  3153. name="OUTRUSH-R N03"
  3154. series="50"
  3155. latestVersion="1.2"
  3156. show = "0" >
  3157. <productMenu id="protocol"
  3158. type="0">
  3159. </productMenu>
  3160. <productMenu id="sip"
  3161. type="1" >
  3162. </productMenu>
  3163. <productMenu id="bluetoothIntercom"
  3164. type="1" >
  3165. </productMenu>
  3166. <productMenu id="phone"
  3167. type="2" >
  3168. </productMenu>
  3169. <productMenu id="fmradio"
  3170. type="3" >
  3171. </productMenu>
  3172. <productMenu id="deviceSetting"
  3173. type="1"
  3174. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3175. </productMenu>
  3176. <productMenu id="userGuide"
  3177. type="1"
  3178. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH-R_N03_1.1.0_en_220413.pdf"
  3179. size="660KB" >
  3180. </productMenu>
  3181. <productID id="5434"
  3182. />
  3183. <productGroupable type="0"
  3184. />
  3185. </product>
  3186. <product id="5R"
  3187. name="5R"
  3188. series="5"
  3189. latestVersion="1.0"
  3190. show = "1" >
  3191. <productMenu id="protocol"
  3192. type="3" >
  3193. </productMenu>
  3194. <productMenu id="sip"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="bluetoothIntercom"
  3198. type="1" >
  3199. </productMenu>
  3200. <productMenu id="phone"
  3201. type="1" >
  3202. </productMenu>
  3203. <productMenu id="fmradio"
  3204. type="1" >
  3205. </productMenu>
  3206. <productMenu id="deviceSetting"
  3207. type="1"
  3208. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3209. </productMenu>
  3210. <productMenu id="quickGuide"
  3211. type="1"
  3212. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  3213. size="934KB" >
  3214. </productMenu>
  3215. <productMenu id="userGuide"
  3216. type="1"
  3217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_1.0.0_en_220519.pdf"
  3218. size="1.14MB" >
  3219. </productMenu>
  3220. <productID id="5591"
  3221. />
  3222. <productGroupable type="0"
  3223. />
  3224. </product>
  3225. <product id="5R"
  3226. name="5R LITE"
  3227. series="5"
  3228. latestVersion="1.0"
  3229. show = "1" >
  3230. <productMenu id="protocol"
  3231. type="3" >
  3232. </productMenu>
  3233. <productMenu id="sip"
  3234. type="1" >
  3235. </productMenu>
  3236. <productMenu id="bluetoothIntercom"
  3237. type="1" >
  3238. </productMenu>
  3239. <productMenu id="phone"
  3240. type="1" >
  3241. </productMenu>
  3242. <productMenu id="fmradio"
  3243. type="1" >
  3244. </productMenu>
  3245. <productMenu id="deviceSetting"
  3246. type="1"
  3247. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  3248. </productMenu>
  3249. <productMenu id="quickGuide"
  3250. type="1"
  3251. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  3252. size="934KB" >
  3253. </productMenu>
  3254. <productMenu id="userGuide"
  3255. type="1"
  3256. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5R_LITE_1.0.0_en_220519.pdf"
  3257. size="1.14MB" >
  3258. </productMenu>
  3259. <productID id="5592"
  3260. />
  3261. <productGroupable type="0"
  3262. />
  3263. </product>
  3264. <product id="QCC5R"
  3265. name="5R"
  3266. series="50"
  3267. latestVersion="0.9.1"
  3268. show = "0" >
  3269. <productMenu id="protocol"
  3270. type="3" >
  3271. </productMenu>
  3272. <productMenu id="sip"
  3273. type="1" >
  3274. </productMenu>
  3275. <productMenu id="bluetoothIntercom"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="phone"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="fmradio"
  3282. type="1" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="1"
  3290. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  3291. size="934KB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  3296. size="1.14MB" >
  3297. </productMenu>
  3298. <productID id="5593"
  3299. />
  3300. <productGroupable type="0"
  3301. />
  3302. </product>
  3303. <product id="QCC5RLITE"
  3304. name="5R LITE"
  3305. series="50"
  3306. latestVersion="0.9.1"
  3307. show = "0" >
  3308. <productMenu id="protocol"
  3309. type="3" >
  3310. </productMenu>
  3311. <productMenu id="sip"
  3312. type="1" >
  3313. </productMenu>
  3314. <productMenu id="bluetoothIntercom"
  3315. type="1" >
  3316. </productMenu>
  3317. <productMenu id="phone"
  3318. type="1" >
  3319. </productMenu>
  3320. <productMenu id="fmradio"
  3321. type="1" >
  3322. </productMenu>
  3323. <productMenu id="deviceSetting"
  3324. type="1"
  3325. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE.xml" >
  3326. </productMenu>
  3327. <productMenu id="quickGuide"
  3328. type="1"
  3329. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.1.0_en_211012.pdf"
  3330. size="934KB" >
  3331. </productMenu>
  3332. <productMenu id="userGuide"
  3333. type="1"
  3334. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.1.0_en_211012.pdf"
  3335. size="1.14MB" >
  3336. </productMenu>
  3337. <productID id="5594"
  3338. />
  3339. <productGroupable type="0"
  3340. />
  3341. </product>
  3342. <product id="3SPLUS"
  3343. name="3S PLUS"
  3344. series="30"
  3345. latestVersion="2.0"
  3346. show = "0" >
  3347. <productMenu id="protocol"
  3348. type="3" >
  3349. </productMenu>
  3350. <productMenu id="sip"
  3351. type="1" >
  3352. </productMenu>
  3353. <productMenu id="bluetoothIntercom"
  3354. type="1" >
  3355. </productMenu>
  3356. <productMenu id="deviceSetting"
  3357. type="1"
  3358. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3359. </productMenu>
  3360. <productMenu id="userGuide"
  3361. type="1"
  3362. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  3363. size="1.14MB" >
  3364. </productMenu>
  3365. <productID id="4023"
  3366. />
  3367. <productGroupable type="0"
  3368. />
  3369. </product>
  3370. <product id="ACSRAM"
  3371. name="ACS-RAM"
  3372. series="50"
  3373. latestVersion="1.0"
  3374. show = "0" >
  3375. <productMenu id="protocol"
  3376. type="3" >
  3377. </productMenu>
  3378. <productMenu id="sip"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="bluetoothIntercom"
  3382. type="1" >
  3383. </productMenu>
  3384. <productMenu id="deviceSetting"
  3385. type="1"
  3386. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  3387. </productMenu>
  3388. <productMenu id="quickGuide"
  3389. type="1"
  3390. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  3391. size="344KB" >
  3392. </productMenu>
  3393. <productMenu id="userGuide"
  3394. type="1"
  3395. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  3396. size="1.14MB" >
  3397. </productMenu>
  3398. <productID id="3400"
  3399. />
  3400. <productGroupable type="0"
  3401. />
  3402. </product>
  3403. <product id="Rumba"
  3404. name="Rumba"
  3405. series="30"
  3406. latestVersion="2.0"
  3407. show = "0" >
  3408. <productMenu id="protocol"
  3409. type="3" >
  3410. </productMenu>
  3411. <productMenu id="sip"
  3412. type="1" >
  3413. </productMenu>
  3414. <productMenu id="bluetoothIntercom"
  3415. type="1" >
  3416. </productMenu>
  3417. <productMenu id="deviceSetting"
  3418. type="1"
  3419. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3420. </productMenu>
  3421. <productMenu id="quickGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3424. size="344KB" >
  3425. </productMenu>
  3426. <productMenu id="userGuide"
  3427. type="1"
  3428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3429. size="1.14MB" >
  3430. </productMenu>
  3431. <productID id="6322"
  3432. />
  3433. <productGroupable type="0"
  3434. />
  3435. </product>
  3436. <product id="50B"
  3437. name="SMART HJC 50B"
  3438. series="50"
  3439. latestVersion="1.0"
  3440. show = "0" >
  3441. <productMenu id="protocol"
  3442. type="2" >
  3443. </productMenu>
  3444. <productMenu id="alexa"
  3445. type="0" >
  3446. </productMenu>
  3447. <productMenu id="ota"
  3448. type="0" >
  3449. </productMenu>
  3450. <productMenu id="wa"
  3451. type="0" >
  3452. </productMenu>
  3453. <productMenu id="sip"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="meshIntercom"
  3457. type="20" >
  3458. </productMenu>
  3459. <productMenu id="bluetoothIntercom"
  3460. type="1" >
  3461. </productMenu>
  3462. <productMenu id="phone"
  3463. type="1" >
  3464. </productMenu>
  3465. <productMenu id="music"
  3466. type="1" >
  3467. </productMenu>
  3468. <productMenu id="fmradio"
  3469. type="1" >
  3470. </productMenu>
  3471. <productMenu id="deviceSetting"
  3472. type="1"
  3473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  3474. </productMenu>
  3475. <productMenu id="quickGuide"
  3476. type="1"
  3477. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50R_03.pdf"
  3478. size="344KB" >
  3479. </productMenu>
  3480. <productMenu id="userGuide"
  3481. type="1"
  3482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50R_1.2.0_en_200910.pdf"
  3483. size="3.41MB" >
  3484. </productMenu>
  3485. <productMenu id="volume"
  3486. type="11" >
  3487. </productMenu>
  3488. <productMenu id="battery"
  3489. type="1" >
  3490. </productMenu>
  3491. <productID id="3214"
  3492. />
  3493. <productGroupable type="0"
  3494. />
  3495. </product>
  3496. <product id="MeshStation"
  3497. name="Mesh Station"
  3498. series="50"
  3499. latestVersion="0.9"
  3500. show = "0" >
  3501. <productMenu id="protocol"
  3502. type="2" >
  3503. </productMenu>
  3504. <productMenu id="meshIntercom"
  3505. type="20"
  3506. url="99" >
  3507. </productMenu>
  3508. <productID id="3161"
  3509. />
  3510. <productGroupable type="0"
  3511. />
  3512. </product>
  3513. <!--
  3514. <product id="20S"
  3515. name="20S"
  3516. series="20"
  3517. latestVersion="2.1"
  3518. show = "1" >
  3519. <productMenu id="protocol"
  3520. type="0">
  3521. </productMenu>
  3522. <productMenu id="wa"
  3523. type="1" >
  3524. </productMenu>
  3525. <productMenu id="sip"
  3526. type="1" >
  3527. </productMenu>
  3528. <productMenu id="bluetoothIntercom"
  3529. type="1" >
  3530. </productMenu>
  3531. <productMenu id="intercomSetting"
  3532. type="1" >
  3533. </productMenu>
  3534. <productMenu id="phone"
  3535. type="2" >
  3536. </productMenu>
  3537. <productMenu id="fmradio"
  3538. type="3" >
  3539. </productMenu>
  3540. <productMenu id="deviceSetting"
  3541. type="1"
  3542. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3543. <productMenuURL version="2.0.2"
  3544. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3545. />
  3546. <productMenuURL version="1.5"
  3547. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3548. />
  3549. <productMenuURL version="1.4.1"
  3550. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3551. />
  3552. <productMenuURL version="1.1"
  3553. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3554. />
  3555. <productMenuURL version="1.0"
  3556. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3557. />
  3558. </productMenu>
  3559. <productMenu id="quickGuide"
  3560. type="1"
  3561. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  3562. size="1.13MB" >
  3563. </productMenu>
  3564. <productMenu id="userGuide"
  3565. type="1"
  3566. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  3567. size="2.03MB" >
  3568. </productMenu>
  3569. <productID id="4210"
  3570. />
  3571. <productGroupable type="1"
  3572. />
  3573. </product>
  3574. <product id="20S_EVO"
  3575. name="20S EVO"
  3576. series="20"
  3577. latestVersion="2.1"
  3578. show = "1" >
  3579. <productMenu id="protocol"
  3580. type="0" >
  3581. </productMenu>
  3582. <productMenu id="wa"
  3583. type="1" >
  3584. </productMenu>
  3585. <productMenu id="sip"
  3586. type="1" >
  3587. </productMenu>
  3588. <productMenu id="bluetoothIntercom"
  3589. type="1" >
  3590. </productMenu>
  3591. <productMenu id="intercomSetting"
  3592. type="1" >
  3593. </productMenu>
  3594. <productMenu id="phone"
  3595. type="2" >
  3596. </productMenu>
  3597. <productMenu id="fmradio"
  3598. type="3" >
  3599. </productMenu>
  3600. <productMenu id="deviceSetting"
  3601. type="1"
  3602. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3603. <productMenuURL version="2.0.2"
  3604. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3605. />
  3606. <productMenuURL version="1.5"
  3607. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3608. />
  3609. <productMenuURL version="1.4.1"
  3610. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3611. />
  3612. <productMenuURL version="1.1"
  3613. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3614. />
  3615. <productMenuURL version="1.0"
  3616. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3617. />
  3618. </productMenu>
  3619. <productMenu id="quickGuide"
  3620. type="1"
  3621. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_20S_EVO_en_1.1.0_210413.pdf"
  3622. size="1.13MB" >
  3623. </productMenu>
  3624. <productMenu id="userGuide"
  3625. type="1"
  3626. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_20S_EVO_1.1.0_en_210527.pdf"
  3627. size="2.03MB" >
  3628. </productMenu>
  3629. <productID id="4210"
  3630. />
  3631. <productProductKey key="16"
  3632. />
  3633. <productGroupable type="1"
  3634. />
  3635. </product>
  3636. <product id="10C_Pro"
  3637. name="10C Pro"
  3638. series="10"
  3639. latestVersion="2.6"
  3640. show = "1" >
  3641. <productMenu id="protocol"
  3642. type="0">
  3643. </productMenu>
  3644. <productMenu id="sip"
  3645. type="1" >
  3646. </productMenu>
  3647. <productMenu id="bluetoothIntercom"
  3648. type="1" >
  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/10C/DS_10C_Pro_v0205.xml" >
  3659. <productMenuURL version="2.5.1"
  3660. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3661. />
  3662. <productMenuURL version="1.0"
  3663. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  3664. />
  3665. </productMenu>
  3666. <productMenu id="quickGuide"
  3667. type="1"
  3668. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  3669. size="651KB" >
  3670. </productMenu>
  3671. <productMenu id="userGuide"
  3672. type="1"
  3673. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  3674. size="2.34MB" >
  3675. </productMenu>
  3676. <productID id="5580"
  3677. />
  3678. <productGroupable type="0"
  3679. />
  3680. </product>
  3681. <product id="10C_EVO"
  3682. name="10C EVO"
  3683. series="10"
  3684. latestVersion="1.5.1"
  3685. show = "1" >
  3686. <productMenu id="protocol"
  3687. type="0">
  3688. </productMenu>
  3689. <productMenu id="sip"
  3690. type="1" >
  3691. </productMenu>
  3692. <productMenu id="bluetoothIntercom"
  3693. type="1" >
  3694. </productMenu>
  3695. <productMenu id="phone"
  3696. type="2" >
  3697. </productMenu>
  3698. <productMenu id="fmradio"
  3699. type="3" >
  3700. </productMenu>
  3701. <productMenu id="deviceSetting"
  3702. type="1"
  3703. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  3704. <productMenuURL version="1.3.1"
  3705. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3706. />
  3707. </productMenu>
  3708. <productMenu id="quickGuide"
  3709. type="1"
  3710. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_EVO_02.pdf"
  3711. size="1.32MB" >
  3712. </productMenu>
  3713. <productMenu id="userGuide"
  3714. type="1"
  3715. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_EVO_v1.0_04.pdf"
  3716. size="1.68MB" >
  3717. </productMenu>
  3718. <productID id="5570"
  3719. />
  3720. <productGroupable type="0"
  3721. />
  3722. </product>
  3723. <product id="10U_GT_AIR"
  3724. name="10U GT-Air"
  3725. series="10"
  3726. latestVersion="2.0.3"
  3727. show = "1" >
  3728. <productMenu id="protocol"
  3729. type="0">
  3730. </productMenu>
  3731. <productMenu id="sip"
  3732. type="1" >
  3733. <productMenuType version="1.0.2"
  3734. type="0"
  3735. />
  3736. </productMenu>
  3737. <productMenu id="bluetoothIntercom"
  3738. type="1" >
  3739. <productMenuType version="1.0.2"
  3740. type="0"
  3741. />
  3742. </productMenu>
  3743. <productMenu id="phone"
  3744. type="2" >
  3745. </productMenu>
  3746. <productMenu id="fmradio"
  3747. type="3" >
  3748. </productMenu>
  3749. <productMenu id="deviceSetting"
  3750. type="1"
  3751. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3752. <productMenuURL version="1.3.2"
  3753. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3754. />
  3755. <productMenuURL version="1.0.2"
  3756. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3757. />
  3758. </productMenu>
  3759. <productMenu id="quickGuide"
  3760. type="1"
  3761. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  3762. size="685KB" >
  3763. </productMenu>
  3764. <productMenu id="userGuide"
  3765. type="1"
  3766. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  3767. size="684KB" >
  3768. </productMenu>
  3769. <productID id="5610"
  3770. />
  3771. <productGroupable type="0"
  3772. />
  3773. </product>
  3774. <product id="10U_NEOTEC"
  3775. name="10U Neotec"
  3776. series="10"
  3777. latestVersion="2.0.3"
  3778. show = "1" >
  3779. <productMenu id="protocol"
  3780. type="0">
  3781. </productMenu>
  3782. <productMenu id="sip"
  3783. type="1" >
  3784. <productMenuType version="1.0.2"
  3785. type="0"
  3786. />
  3787. </productMenu>
  3788. <productMenu id="bluetoothIntercom"
  3789. type="1" >
  3790. <productMenuType version="1.0.2"
  3791. type="0"
  3792. />
  3793. </productMenu>
  3794. <productMenu id="phone"
  3795. type="2" >
  3796. </productMenu>
  3797. <productMenu id="fmradio"
  3798. type="3" >
  3799. </productMenu>
  3800. <productMenu id="deviceSetting"
  3801. type="1"
  3802. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3803. <productMenuURL version="1.3.2"
  3804. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3805. />
  3806. <productMenuURL version="1.0.2"
  3807. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3808. />
  3809. </productMenu>
  3810. <productMenu id="quickGuide"
  3811. type="1"
  3812. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  3813. size="689KB" >
  3814. </productMenu>
  3815. <productMenu id="userGuide"
  3816. type="1"
  3817. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  3818. size="684KB" >
  3819. </productMenu>
  3820. <productID id="5611"
  3821. />
  3822. <productGroupable type="0"
  3823. />
  3824. </product>
  3825. <product id="10U_J_CRUISE"
  3826. name="10U J-Cruise"
  3827. series="10"
  3828. latestVersion="2.0.3"
  3829. show = "1" >
  3830. <productMenu id="protocol"
  3831. type="0">
  3832. </productMenu>
  3833. <productMenu id="sip"
  3834. type="1" >
  3835. <productMenuType version="1.0.2"
  3836. type="0"
  3837. />
  3838. </productMenu>
  3839. <productMenu id="bluetoothIntercom"
  3840. type="1" >
  3841. <productMenuType version="1.0.2"
  3842. type="0"
  3843. />
  3844. </productMenu>
  3845. <productMenu id="phone"
  3846. type="2" >
  3847. </productMenu>
  3848. <productMenu id="fmradio"
  3849. type="3" >
  3850. </productMenu>
  3851. <productMenu id="deviceSetting"
  3852. type="1"
  3853. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3854. <productMenuURL version="1.3.2"
  3855. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3856. />
  3857. <productMenuURL version="1.0.2"
  3858. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3859. />
  3860. </productMenu>
  3861. <productMenu id="quickGuide"
  3862. type="1"
  3863. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  3864. size="686KB" >
  3865. </productMenu>
  3866. <productMenu id="userGuide"
  3867. type="1"
  3868. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  3869. size="684KB" >
  3870. </productMenu>
  3871. <productID id="5612"
  3872. />
  3873. <productGroupable type="0"
  3874. />
  3875. </product>
  3876. <product id="10U_C3"
  3877. name="10U C3/C3Pro"
  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. <productMenuType version="1.0.2"
  3887. type="0"
  3888. />
  3889. </productMenu>
  3890. <productMenu id="bluetoothIntercom"
  3891. type="1" >
  3892. <productMenuType version="1.0.2"
  3893. type="0"
  3894. />
  3895. </productMenu>
  3896. <productMenu id="phone"
  3897. type="2" >
  3898. </productMenu>
  3899. <productMenu id="fmradio"
  3900. type="3" >
  3901. </productMenu>
  3902. <productMenu id="deviceSetting"
  3903. type="1"
  3904. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3905. <productMenuURL version="1.3.2"
  3906. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3907. />
  3908. <productMenuURL version="1.0.2"
  3909. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3910. />
  3911. </productMenu>
  3912. <productMenu id="quickGuide"
  3913. type="1"
  3914. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  3915. size="199KB" >
  3916. </productMenu>
  3917. <productMenu id="userGuide"
  3918. type="1"
  3919. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  3920. size="684KB" >
  3921. </productMenu>
  3922. <productID id="5620"
  3923. />
  3924. <productGroupable type="0"
  3925. />
  3926. </product>
  3927. <product id="10U_ARAI"
  3928. name="10U Arai"
  3929. series="10"
  3930. latestVersion="2.0.3"
  3931. show = "1" >
  3932. <productMenu id="protocol"
  3933. type="0">
  3934. </productMenu>
  3935. <productMenu id="sip"
  3936. type="1" >
  3937. <productMenuType version="1.0.2"
  3938. type="0"
  3939. />
  3940. </productMenu>
  3941. <productMenu id="bluetoothIntercom"
  3942. type="1" >
  3943. <productMenuType version="1.0.2"
  3944. type="0"
  3945. />
  3946. </productMenu>
  3947. <productMenu id="phone"
  3948. type="2" >
  3949. </productMenu>
  3950. <productMenu id="fmradio"
  3951. type="3" >
  3952. </productMenu>
  3953. <productMenu id="deviceSetting"
  3954. type="1"
  3955. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  3956. <productMenuURL version="1.3.2"
  3957. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  3958. />
  3959. <productMenuURL version="1.0.2"
  3960. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  3961. />
  3962. </productMenu>
  3963. <productMenu id="quickGuide"
  3964. type="1"
  3965. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Arai_04.pdf"
  3966. size="689KB" >
  3967. </productMenu>
  3968. <productMenu id="userGuide"
  3969. type="1"
  3970. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_10U(RC4)_2.1.0_en_201203.pdf"
  3971. size="684KB" >
  3972. </productMenu>
  3973. <productID id="5621"
  3974. />
  3975. <productGroupable type="0"
  3976. />
  3977. </product>
  3978. <product id="10Upad"
  3979. name="10Upad"
  3980. series="10"
  3981. latestVersion="2.0.2"
  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/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  4001. <productMenuURL version="1.0.3"
  4002. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4003. />
  4004. </productMenu>
  4005. <productMenu id="quickGuide"
  4006. type="1"
  4007. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4008. size="615KB" >
  4009. </productMenu>
  4010. <productMenu id="userGuide"
  4011. type="1"
  4012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4013. size="0.99MB" >
  4014. </productMenu>
  4015. <productID id="6210"
  4016. />
  4017. <productGroupable type="0"
  4018. />
  4019. </product>
  4020. <product id="10S"
  4021. name="10S"
  4022. series="10"
  4023. latestVersion="2.0.3"
  4024. show = "1" >
  4025. <productMenu id="protocol"
  4026. type="0">
  4027. </productMenu>
  4028. <productMenu id="sip"
  4029. type="1" >
  4030. </productMenu>
  4031. <productMenu id="bluetoothIntercom"
  4032. type="1" >
  4033. </productMenu>
  4034. <productMenu id="phone"
  4035. type="2" >
  4036. </productMenu>
  4037. <productMenu id="fmradio"
  4038. type="3" >
  4039. </productMenu>
  4040. <productMenu id="deviceSetting"
  4041. type="1"
  4042. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  4043. <productMenuURL version="1.5"
  4044. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  4045. />
  4046. <productMenuURL version="1.3.1"
  4047. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  4048. />
  4049. </productMenu>
  4050. <productMenu id="quickGuide"
  4051. type="1"
  4052. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10S_03.pdf"
  4053. size="310KB" >
  4054. </productMenu>
  4055. <productMenu id="userGuide"
  4056. type="1"
  4057. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10S_v2.0_01.pdf"
  4058. size="1.57MB" >
  4059. </productMenu>
  4060. <productID id="5530"
  4061. />
  4062. <productGroupable type="0"
  4063. />
  4064. </product>
  4065. <product id="10C"
  4066. name="10C"
  4067. series="10"
  4068. latestVersion="3.0.4"
  4069. show = "1" >
  4070. <productMenu id="protocol"
  4071. type="0">
  4072. </productMenu>
  4073. <productMenu id="sip"
  4074. type="1" >
  4075. <productMenuType version="1.0.4"
  4076. type="0"
  4077. />
  4078. </productMenu>
  4079. <productMenu id="bluetoothIntercom"
  4080. type="1" >
  4081. <productMenuType version="1.0.4"
  4082. type="0"
  4083. />
  4084. </productMenu>
  4085. <productMenu id="phone"
  4086. type="2" >
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="3" >
  4090. </productMenu>
  4091. <productMenu id="deviceSetting"
  4092. type="1"
  4093. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  4094. <productMenuURL version="2.3"
  4095. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  4096. />
  4097. <productMenuURL version="2.1.1"
  4098. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  4099. />
  4100. <productMenuURL version="1.0.4"
  4101. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  4102. />
  4103. <productMenuURL version="1.0.2"
  4104. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  4105. />
  4106. </productMenu>
  4107. <productMenu id="quickGuide"
  4108. type="1"
  4109. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  4110. size="935KB" >
  4111. </productMenu>
  4112. <productMenu id="userGuide"
  4113. type="1"
  4114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  4115. size="2.82MB" >
  4116. </productMenu>
  4117. <productID id="5510"
  4118. />
  4119. <productGroupable type="0"
  4120. />
  4121. </product>
  4122. <product id="5S"
  4123. name="5S"
  4124. series="10"
  4125. latestVersion="1.0.4"
  4126. show = "1" >
  4127. <productMenu id="protocol"
  4128. type="0">
  4129. </productMenu>
  4130. <productMenu id="sip"
  4131. type="1" >
  4132. </productMenu>
  4133. <productMenu id="bluetoothIntercom"
  4134. type="1" >
  4135. </productMenu>
  4136. <productMenu id="phone"
  4137. type="2" >
  4138. </productMenu>
  4139. <productMenu id="fmradio"
  4140. type="3" >
  4141. </productMenu>
  4142. <productMenu id="deviceSetting"
  4143. type="1"
  4144. url="https://api.sena.com/support/SenaNeoApp/5S/NS_5S.xml" >
  4145. </productMenu>
  4146. <productMenu id="quickGuide"
  4147. type="1"
  4148. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  4149. size="970KB" >
  4150. </productMenu>
  4151. <productMenu id="userGuide"
  4152. type="1"
  4153. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  4154. size="1.26MB" >
  4155. </productMenu>
  4156. <productID id="5534"
  4157. />
  4158. <productGroupable type="0"
  4159. />
  4160. </product>
  4161. <product id="3SPLUS"
  4162. name="3S PLUS"
  4163. series="10"
  4164. latestVersion="1.0.3"
  4165. show = "1" >
  4166. <productMenu id="protocol"
  4167. type="0">
  4168. </productMenu>
  4169. <productMenu id="sip"
  4170. type="1" >
  4171. </productMenu>
  4172. <productMenu id="bluetoothIntercom"
  4173. type="1" >
  4174. </productMenu>
  4175. <productMenu id="deviceSetting"
  4176. type="1"
  4177. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4178. </productMenu>
  4179. <productMenu id="quickGuide"
  4180. type="1"
  4181. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  4182. size="842KB" >
  4183. </productMenu>
  4184. <productMenu id="userGuide"
  4185. type="1"
  4186. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  4187. size="1.02MB" >
  4188. </productMenu>
  4189. <productID id="6320"
  4190. />
  4191. <productGroupable type="0"
  4192. />
  4193. </product>
  4194. <product id="Neotec2"
  4195. name="SRL Neotec2"
  4196. series="momentum"
  4197. latestVersion="1.1.2"
  4198. show = "1" >
  4199. <productMenu id="protocol"
  4200. type="0">
  4201. </productMenu>
  4202. <productMenu id="sip"
  4203. type="1" >
  4204. </productMenu>
  4205. <productMenu id="bluetoothIntercom"
  4206. type="1" >
  4207. </productMenu>
  4208. <productMenu id="intercomSetting"
  4209. type="1" >
  4210. </productMenu>
  4211. <productMenu id="phone"
  4212. type="2" >
  4213. </productMenu>
  4214. <productMenu id="fmradio"
  4215. type="3" >
  4216. </productMenu>
  4217. <productMenu id="deviceSetting"
  4218. type="1"
  4219. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4220. </productMenu>
  4221. <productMenu id="quickGuide"
  4222. type="1"
  4223. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL_for_Shoei_Neotec_II_01.pdf"
  4224. size="796KB" >
  4225. </productMenu>
  4226. <productMenu id="userGuide"
  4227. type="1"
  4228. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL_for_Shoei_Neotec_II_v1.0_01.pdf"
  4229. size="1.90MB" >
  4230. </productMenu>
  4231. <productID id="4510"
  4232. />
  4233. <productGroupable type="1"
  4234. />
  4235. </product>
  4236. <product id="SRL2"
  4237. name="SRL2"
  4238. series="momentum"
  4239. latestVersion="1.0.6"
  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="intercomSetting"
  4251. type="1" >
  4252. </productMenu>
  4253. <productMenu id="phone"
  4254. type="2" >
  4255. </productMenu>
  4256. <productMenu id="fmradio"
  4257. type="3" >
  4258. </productMenu>
  4259. <productMenu id="deviceSetting"
  4260. type="1"
  4261. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4262. </productMenu>
  4263. <productMenu id="quickGuide"
  4264. type="1"
  4265. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_SRL2_01.pdf"
  4266. size="846KB" >
  4267. </productMenu>
  4268. <productMenu id="userGuide"
  4269. type="1"
  4270. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_SRL2_v1.0_01.pdf"
  4271. size="1.18MB" >
  4272. </productMenu>
  4273. <productID id="4530"
  4274. />
  4275. <productGroupable type="1"
  4276. />
  4277. </product>
  4278. <product id="10R"
  4279. name="10R"
  4280. series="10"
  4281. latestVersion="2.0.3"
  4282. show = "1" >
  4283. <productMenu id="protocol"
  4284. type="0">
  4285. </productMenu>
  4286. <productMenu id="sip"
  4287. type="1" >
  4288. <productMenuType version="1.0.2"
  4289. type="0"
  4290. />
  4291. </productMenu>
  4292. <productMenu id="bluetoothIntercom"
  4293. type="1" >
  4294. <productMenuType version="1.0.2"
  4295. type="0"
  4296. />
  4297. </productMenu>
  4298. <productMenu id="phone"
  4299. type="2" >
  4300. </productMenu>
  4301. <productMenu id="fmradio"
  4302. type="3" >
  4303. </productMenu>
  4304. <productMenu id="deviceSetting"
  4305. type="1"
  4306. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4307. <productMenuURL version="1.4"
  4308. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  4309. />
  4310. <productMenuURL version="1.2.1"
  4311. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  4312. />
  4313. <productMenuURL version="1.0.2"
  4314. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  4315. />
  4316. <productMenuURL version="1.0"
  4317. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  4318. />
  4319. </productMenu>
  4320. <productMenu id="quickGuide"
  4321. type="1"
  4322. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10R_04.pdf"
  4323. size="400KB" >
  4324. </productMenu>
  4325. <productMenu id="userGuide"
  4326. type="1"
  4327. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10R_v2.0_01.pdf"
  4328. size="2.75MB" >
  4329. </productMenu>
  4330. <productID id="5520"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="Cavalry"
  4336. name="Cavalry"
  4337. series="cavalry"
  4338. latestVersion="1.1.2"
  4339. show = "1" >
  4340. <productMenu id="protocol"
  4341. type="0">
  4342. </productMenu>
  4343. <productMenu id="sip"
  4344. type="1" >
  4345. </productMenu>
  4346. <productMenu id="bluetoothIntercom"
  4347. type="1" >
  4348. </productMenu>
  4349. <productMenu id="phone"
  4350. type="2" >
  4351. </productMenu>
  4352. <productMenu id="fmradio"
  4353. type="3" >
  4354. </productMenu>
  4355. <productMenu id="deviceSetting"
  4356. type="1"
  4357. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4358. <productMenuURL version="1.9"
  4359. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4360. />
  4361. <productMenuURL version="1.0.1"
  4362. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4363. />
  4364. </productMenu>
  4365. <productMenu id="quickGuide"
  4366. type="1"
  4367. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4368. size="795KB" >
  4369. </productMenu>
  4370. <productMenu id="userGuide"
  4371. type="1"
  4372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4373. size="1.87MB" >
  4374. </productMenu>
  4375. <productID id="5524"
  4376. />
  4377. <productGroupable type="0"
  4378. />
  4379. </product>
  4380. <product id="Cavalry_Lite"
  4381. name="Cavalry Lite"
  4382. series="cavalry"
  4383. latestVersion="1.0.2"
  4384. show = "1" >
  4385. <productMenu id="protocol"
  4386. type="0">
  4387. </productMenu>
  4388. <productMenu id="sip"
  4389. type="1" >
  4390. </productMenu>
  4391. <productMenu id="bluetoothIntercom"
  4392. type="1" >
  4393. </productMenu>
  4394. <productMenu id="phone"
  4395. type="2" >
  4396. </productMenu>
  4397. <productMenu id="fmradio"
  4398. type="3" >
  4399. </productMenu>
  4400. <productMenu id="deviceSetting"
  4401. type="1"
  4402. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4403. </productMenu>
  4404. <productMenu id="userGuide"
  4405. type="1"
  4406. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4407. size="1.74MB" >
  4408. </productMenu>
  4409. <productID id="5536"
  4410. />
  4411. <productGroupable type="0"
  4412. />
  4413. </product>
  4414. <product id="Momentum"
  4415. name="Momentum"
  4416. series="momentum"
  4417. latestVersion="1.0.8"
  4418. show = "1" >
  4419. <productMenu id="protocol"
  4420. type="0">
  4421. </productMenu>
  4422. <productMenu id="sip"
  4423. type="1" >
  4424. </productMenu>
  4425. <productMenu id="bluetoothIntercom"
  4426. type="1" >
  4427. </productMenu>
  4428. <productMenu id="intercomSetting"
  4429. type="1" >
  4430. </productMenu>
  4431. <productMenu id="phone"
  4432. type="2" >
  4433. </productMenu>
  4434. <productMenu id="fmradio"
  4435. type="3" >
  4436. </productMenu>
  4437. <productMenu id="deviceSetting"
  4438. type="1"
  4439. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4440. </productMenu>
  4441. <productMenu id="quickGuide"
  4442. type="1"
  4443. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  4444. size="795KB" >
  4445. </productMenu>
  4446. <productMenu id="userGuide"
  4447. type="1"
  4448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  4449. size="1.44MB" >
  4450. </productMenu>
  4451. <productID id="4310"
  4452. />
  4453. <productGroupable type="1"
  4454. />
  4455. </product>
  4456. <product id="Momentum_Pro"
  4457. name="Momentum Pro"
  4458. series="momentum"
  4459. latestVersion="1.0.5"
  4460. show = "1" >
  4461. <productMenu id="protocol"
  4462. type="0">
  4463. </productMenu>
  4464. <productMenu id="sip"
  4465. type="1" >
  4466. </productMenu>
  4467. <productMenu id="bluetoothIntercom"
  4468. type="1" >
  4469. </productMenu>
  4470. <productMenu id="intercomSetting"
  4471. type="1" >
  4472. </productMenu>
  4473. <productMenu id="phone"
  4474. type="2" >
  4475. </productMenu>
  4476. <productMenu id="fmradio"
  4477. type="3" >
  4478. </productMenu>
  4479. <productMenu id="deviceSetting"
  4480. type="1"
  4481. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4482. </productMenu>
  4483. <productMenu id="quickGuide"
  4484. type="1"
  4485. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  4486. size="839KB" >
  4487. </productMenu>
  4488. <productMenu id="userGuide"
  4489. type="1"
  4490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  4491. size="1.08MB" >
  4492. </productMenu>
  4493. <productID id="4330"
  4494. />
  4495. <productGroupable type="1"
  4496. />
  4497. </product>
  4498. <product id="Momentum_INC"
  4499. name="Momentum INC"
  4500. series="momentum"
  4501. latestVersion="1.0.6"
  4502. show = "1" >
  4503. <productMenu id="protocol"
  4504. type="0">
  4505. </productMenu>
  4506. <productMenu id="sip"
  4507. type="1" >
  4508. </productMenu>
  4509. <productMenu id="bluetoothIntercom"
  4510. type="1" >
  4511. </productMenu>
  4512. <productMenu id="intercomSetting"
  4513. type="1" >
  4514. </productMenu>
  4515. <productMenu id="phone"
  4516. type="2" >
  4517. </productMenu>
  4518. <productMenu id="fmradio"
  4519. type="3" >
  4520. </productMenu>
  4521. <productMenu id="deviceSetting"
  4522. type="1"
  4523. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  4524. </productMenu>
  4525. <productMenu id="quickGuide"
  4526. type="1"
  4527. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  4528. size="794KB" >
  4529. </productMenu>
  4530. <productMenu id="userGuide"
  4531. type="1"
  4532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  4533. size="1.53MB" >
  4534. </productMenu>
  4535. <productID id="4410"
  4536. />
  4537. <productGroupable type="1"
  4538. />
  4539. </product>
  4540. <product id="Momentum_INCP"
  4541. name="Momentum INC Pro"
  4542. series="momentum"
  4543. latestVersion="1.0.3"
  4544. show = "1" >
  4545. <productMenu id="protocol"
  4546. type="0">
  4547. </productMenu>
  4548. <productMenu id="sip"
  4549. type="1" >
  4550. </productMenu>
  4551. <productMenu id="bluetoothIntercom"
  4552. type="1" >
  4553. </productMenu>
  4554. <productMenu id="intercomSetting"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="phone"
  4558. type="2" >
  4559. </productMenu>
  4560. <productMenu id="fmradio"
  4561. type="3" >
  4562. </productMenu>
  4563. <productMenu id="deviceSetting"
  4564. type="1"
  4565. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  4566. </productMenu>
  4567. <productMenu id="quickGuide"
  4568. type="1"
  4569. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  4570. size="794KB" >
  4571. </productMenu>
  4572. <productMenu id="userGuide"
  4573. type="1"
  4574. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  4575. size="1.53MB" >
  4576. </productMenu>
  4577. <productID id="4430"
  4578. />
  4579. <productGroupable type="1"
  4580. />
  4581. </product>
  4582. <product id="Momentum_Lite"
  4583. name="Momentum Lite"
  4584. series="momentum"
  4585. latestVersion="2.0.2"
  4586. show = "1" >
  4587. <productMenu id="protocol"
  4588. type="0">
  4589. </productMenu>
  4590. <productMenu id="sip"
  4591. type="1" >
  4592. </productMenu>
  4593. <productMenu id="bluetoothIntercom"
  4594. type="1" >
  4595. </productMenu>
  4596. <productMenu id="phone"
  4597. type="2" >
  4598. </productMenu>
  4599. <productMenu id="fmradio"
  4600. type="3" >
  4601. </productMenu>
  4602. <productMenu id="deviceSetting"
  4603. type="1"
  4604. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4605. <productMenuURL version="1.1"
  4606. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  4607. />
  4608. </productMenu>
  4609. <productMenu id="quickGuide"
  4610. type="1"
  4611. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  4612. size="790KB" >
  4613. </productMenu>
  4614. <productMenu id="userGuide"
  4615. type="1"
  4616. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  4617. size="1.42MB" >
  4618. </productMenu>
  4619. <productID id="5526"
  4620. />
  4621. <productGroupable type="0"
  4622. />
  4623. </product>
  4624. <product id="Savage"
  4625. name="Savage"
  4626. series="10"
  4627. latestVersion="1.2.2"
  4628. show = "1" >
  4629. <productMenu id="protocol"
  4630. type="0">
  4631. </productMenu>
  4632. <productMenu id="sip"
  4633. type="1" >
  4634. </productMenu>
  4635. <productMenu id="bluetoothIntercom"
  4636. type="1" >
  4637. </productMenu>
  4638. <productMenu id="phone"
  4639. type="2" >
  4640. </productMenu>
  4641. <productMenu id="fmradio"
  4642. type="3" >
  4643. </productMenu>
  4644. <productMenu id="deviceSetting"
  4645. type="1"
  4646. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  4647. <productMenuURL version="1.9"
  4648. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  4649. />
  4650. <productMenuURL version="1.1"
  4651. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  4652. />
  4653. </productMenu>
  4654. <productMenu id="quickGuide"
  4655. type="1"
  4656. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  4657. size="796KB" >
  4658. </productMenu>
  4659. <productMenu id="userGuide"
  4660. type="1"
  4661. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  4662. size="910KB" >
  4663. </productMenu>
  4664. <productID id="5550"
  4665. />
  4666. <productGroupable type="0"
  4667. />
  4668. </product>
  4669. <product id="OUTRUSHR"
  4670. name="OUTRUSH R"
  4671. series="10"
  4672. latestVersion="1.0"
  4673. show = "1" >
  4674. <productMenu id="protocol"
  4675. type="0">
  4676. </productMenu>
  4677. <productMenu id="sip"
  4678. type="1" >
  4679. </productMenu>
  4680. <productMenu id="bluetoothIntercom"
  4681. type="1" >
  4682. </productMenu>
  4683. <productMenu id="phone"
  4684. type="2" >
  4685. </productMenu>
  4686. <productMenu id="fmradio"
  4687. type="3" >
  4688. </productMenu>
  4689. <productMenu id="deviceSetting"
  4690. type="1"
  4691. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  4692. </productMenu>
  4693. <productMenu id="userGuide"
  4694. type="1"
  4695. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  4696. size="660KB" >
  4697. </productMenu>
  4698. <productID id="5424"
  4699. />
  4700. <productGroupable type="0"
  4701. />
  4702. </product>
  4703. <product id="OUTSTARS"
  4704. name="OUTSTAR S"
  4705. series="10"
  4706. latestVersion="1.1.1"
  4707. show = "1" >
  4708. <productMenu id="protocol"
  4709. type="0">
  4710. </productMenu>
  4711. <productMenu id="sip"
  4712. type="1" >
  4713. </productMenu>
  4714. <productMenu id="bluetoothIntercom"
  4715. type="1" >
  4716. </productMenu>
  4717. <productMenu id="phone"
  4718. type="2" >
  4719. </productMenu>
  4720. <productMenu id="fmradio"
  4721. type="3" >
  4722. </productMenu>
  4723. <productMenu id="deviceSetting"
  4724. type="1"
  4725. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  4726. </productMenu>
  4727. <productMenu id="quickGuide"
  4728. type="1"
  4729. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_OUTSTAR%20S_1.1.0_en_211019.pdf"
  4730. size="643KB" >
  4731. </productMenu>
  4732. <productMenu id="userGuide"
  4733. type="1"
  4734. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTSTAR_S_1.1.0_en_211019.pdf"
  4735. size="1.15MB" >
  4736. </productMenu>
  4737. <productID id="5428"
  4738. />
  4739. <productGroupable type="0"
  4740. />
  4741. </product>
  4742. <product id="ProRideEVO"
  4743. name="ProRide EVO"
  4744. series="10"
  4745. latestVersion="1.0"
  4746. show = "1" >
  4747. <productMenu id="protocol"
  4748. type="0">
  4749. </productMenu>
  4750. <productMenu id="sip"
  4751. type="1" >
  4752. </productMenu>
  4753. <productMenu id="bluetoothIntercom"
  4754. type="1" >
  4755. </productMenu>
  4756. <productMenu id="phone"
  4757. type="2" >
  4758. </productMenu>
  4759. <productMenu id="fmradio"
  4760. type="3" >
  4761. </productMenu>
  4762. <productMenu id="deviceSetting"
  4763. type="1"
  4764. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  4765. </productMenu>
  4766. <productMenu id="userGuide"
  4767. type="1"
  4768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  4769. size="778KB" >
  4770. </productMenu>
  4771. <productID id="5426"
  4772. />
  4773. <productGroupable type="0"
  4774. />
  4775. </product>
  4776. <product id="PI"
  4777. name="pi"
  4778. series="10"
  4779. latestVersion="1.0"
  4780. show = "1" >
  4781. <productMenu id="protocol"
  4782. type="0">
  4783. </productMenu>
  4784. <productMenu id="sip"
  4785. type="1" >
  4786. </productMenu>
  4787. <productMenu id="bluetoothIntercom"
  4788. type="1" >
  4789. </productMenu>
  4790. <productMenu id="deviceSetting"
  4791. type="1"
  4792. url="https://api.sena.com/support/SenaUtility/PI/DS_PI.xml" >
  4793. </productMenu>
  4794. <productMenu id="quickGuide"
  4795. type="1"
  4796. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_pi_1.0.0_en_210305.pdf"
  4797. size="640KB" >
  4798. </productMenu>
  4799. <productMenu id="userGuide"
  4800. type="1"
  4801. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_pi_1.0.0_en_210315.pdf"
  4802. size="478KB" >
  4803. </productMenu>
  4804. <productID id="6310"
  4805. />
  4806. <productGroupable type="0"
  4807. />
  4808. </product>
  4809. <product id="X1"
  4810. name="X1"
  4811. series="10"
  4812. latestVersion="1.1"
  4813. show = "1" >
  4814. <productMenu id="protocol"
  4815. type="0">
  4816. </productMenu>
  4817. <productMenu id="sip"
  4818. type="1" >
  4819. </productMenu>
  4820. <productMenu id="bluetoothIntercom"
  4821. type="1" >
  4822. </productMenu>
  4823. <productMenu id="phone"
  4824. type="2" >
  4825. </productMenu>
  4826. <productMenu id="fmradio"
  4827. type="3" >
  4828. </productMenu>
  4829. <productMenu id="deviceSetting"
  4830. type="1"
  4831. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  4832. </productMenu>
  4833. <productMenu id="quickGuide"
  4834. type="1"
  4835. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1_01.pdf"
  4836. size="784KB" >
  4837. </productMenu>
  4838. <productMenu id="userGuide"
  4839. type="1"
  4840. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1_v1.0_01.pdf"
  4841. size="2.86MB" >
  4842. </productMenu>
  4843. <productID id="3030"
  4844. />
  4845. <productGroupable type="0"
  4846. />
  4847. </product>
  4848. <product id="X1S"
  4849. name="X1S"
  4850. series="10"
  4851. latestVersion="1.1"
  4852. show = "1" >
  4853. <productMenu id="protocol"
  4854. type="0">
  4855. </productMenu>
  4856. <productMenu id="sip"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="bluetoothIntercom"
  4860. type="1" >
  4861. </productMenu>
  4862. <productMenu id="phone"
  4863. type="2" >
  4864. </productMenu>
  4865. <productMenu id="fmradio"
  4866. type="3" >
  4867. </productMenu>
  4868. <productMenu id="deviceSetting"
  4869. type="1"
  4870. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_v0102.xml" >
  4871. </productMenu>
  4872. <productMenu id="quickGuide"
  4873. type="1"
  4874. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_X1S_1.0.0_en_200630.pdf"
  4875. size="933KB" >
  4876. </productMenu>
  4877. <productMenu id="userGuide"
  4878. type="1"
  4879. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_X1S_1.0.0_en_200630.pdf"
  4880. size="1.16MB" >
  4881. </productMenu>
  4882. <productID id="3032"
  4883. />
  4884. <productGroupable type="0"
  4885. />
  4886. </product>
  4887. <product id="R1"
  4888. name="R1"
  4889. series="10"
  4890. latestVersion="1.4"
  4891. show = "1" >
  4892. <productMenu id="protocol"
  4893. type="0">
  4894. </productMenu>
  4895. <productMenu id="sip"
  4896. type="1" >
  4897. </productMenu>
  4898. <productMenu id="bluetoothIntercom"
  4899. type="1" >
  4900. </productMenu>
  4901. <productMenu id="phone"
  4902. type="2" >
  4903. </productMenu>
  4904. <productMenu id="fmradio"
  4905. type="3" >
  4906. </productMenu>
  4907. <productMenu id="deviceSetting"
  4908. type="1"
  4909. url="https://api.sena.com/support/SenaUtility/R1/DS_R1_v0104.xml" >
  4910. </productMenu>
  4911. <productMenu id="quickGuide"
  4912. type="1"
  4913. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_R1_1.3.0_en_210224_MP0501648.pdf"
  4914. size="788KB" >
  4915. </productMenu>
  4916. <productMenu id="userGuide"
  4917. type="1"
  4918. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_R1_1.5.0_en_210428.pdf"
  4919. size="1.25MB" >
  4920. </productMenu>
  4921. <productID id="3050"
  4922. />
  4923. <productGroupable type="0"
  4924. />
  4925. </product>
  4926. <product id="M1"
  4927. name="M1"
  4928. series="10"
  4929. latestVersion="1.0.2"
  4930. show = "1" >
  4931. <productMenu id="protocol"
  4932. type="0">
  4933. </productMenu>
  4934. <productMenu id="sip"
  4935. type="1" >
  4936. </productMenu>
  4937. <productMenu id="bluetoothIntercom"
  4938. type="1" >
  4939. </productMenu>
  4940. <productMenu id="fmradio"
  4941. type="2" >
  4942. </productMenu>
  4943. <productMenu id="deviceSetting"
  4944. type="1"
  4945. url="https://api.sena.com/support/SenaUtility/M1/DS_M1_v010002.xml" >
  4946. </productMenu>
  4947. <productMenu id="quickGuide"
  4948. type="1"
  4949. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.2.0_en_210625.pdf"
  4950. size="767KB" >
  4951. </productMenu>
  4952. <productMenu id="userGuide"
  4953. type="1"
  4954. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.2.0_en_210625.pdf"
  4955. size="820KB" >
  4956. </productMenu>
  4957. <productID id="3070"
  4958. />
  4959. <productGroupable type="0"
  4960. />
  4961. </product>
  4962. <product id="Rumba"
  4963. name="Rumba"
  4964. series="10"
  4965. latestVersion="1.0.4"
  4966. show = "1" >
  4967. <productMenu id="protocol"
  4968. type="0">
  4969. </productMenu>
  4970. <productMenu id="sip"
  4971. type="1" >
  4972. </productMenu>
  4973. <productMenu id="bluetoothIntercom"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="deviceSetting"
  4977. type="1"
  4978. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4979. </productMenu>
  4980. <productMenu id="quickGuide"
  4981. type="1"
  4982. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.1.0_en_210302.pdf"
  4983. size="722KB" >
  4984. </productMenu>
  4985. <productMenu id="userGuide"
  4986. type="1"
  4987. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_RUMBA_1.1.0_en_210302.pdf"
  4988. size="693KB" >
  4989. </productMenu>
  4990. <productID id="6330"
  4991. />
  4992. <productGroupable type="0"
  4993. />
  4994. </product>
  4995. <product id="Tufftalk"
  4996. name="Tufftalk"
  4997. series="10"
  4998. latestVersion="1.2.2"
  4999. show = "1" >
  5000. <productMenu id="protocol"
  5001. type="0">
  5002. </productMenu>
  5003. <productMenu id="sip"
  5004. type="1" >
  5005. </productMenu>
  5006. <productMenu id="bluetoothIntercom"
  5007. type="1" >
  5008. </productMenu>
  5009. <productMenu id="phone"
  5010. type="2" >
  5011. </productMenu>
  5012. <productMenu id="fmradio"
  5013. type="3" >
  5014. </productMenu>
  5015. <productMenu id="deviceSetting"
  5016. type="1"
  5017. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_Tufftalk_v0102.xml" >
  5018. <productMenuURL version="1.1.1"
  5019. url="https://api.sena.com/support/SenaUtility/Tufftalk/DeviceSetting_Tufftalk.xml"
  5020. />
  5021. </productMenu>
  5022. <productMenu id="quickGuide"
  5023. type="1"
  5024. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_01.pdf"
  5025. size="922KB" >
  5026. </productMenu>
  5027. <productMenu id="userGuide"
  5028. type="1"
  5029. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_v1.2_01.pdf"
  5030. size="1.76MB" >
  5031. </productMenu>
  5032. <productID id="5710"
  5033. />
  5034. <productGroupable type="0"
  5035. />
  5036. </product>
  5037. <product id="Tufftalk_Lite"
  5038. name="Tufftalk Lite"
  5039. series="10"
  5040. latestVersion="1.0.2"
  5041. show = "1" >
  5042. <productMenu id="protocol"
  5043. type="0">
  5044. </productMenu>
  5045. <productMenu id="sip"
  5046. type="1" >
  5047. </productMenu>
  5048. <productMenu id="bluetoothIntercom"
  5049. type="1" >
  5050. </productMenu>
  5051. <productMenu id="phone"
  5052. type="2" >
  5053. </productMenu>
  5054. <productMenu id="fmradio"
  5055. type="3" >
  5056. </productMenu>
  5057. <productMenu id="deviceSetting"
  5058. type="1"
  5059. url="https://api.sena.com/support/SenaUtility/Tufftalk_Lite/DS_Tufftalk_Lite.xml" >
  5060. </productMenu>
  5061. <productMenu id="quickGuide"
  5062. type="1"
  5063. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_Lite_01.pdf"
  5064. size="725KB" >
  5065. </productMenu>
  5066. <productMenu id="userGuide"
  5067. type="1"
  5068. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Tufftalk_Lite_v1.0_01.pdf"
  5069. size="1.17MB" >
  5070. </productMenu>
  5071. <productID id="5720"
  5072. />
  5073. <productGroupable type="0"
  5074. />
  5075. </product>
  5076. <product id="TufftalkM"
  5077. name="Tufftalk M"
  5078. series="10"
  5079. latestVersion="1.1.1"
  5080. show = "1" >
  5081. <productMenu id="protocol"
  5082. type="0">
  5083. </productMenu>
  5084. <productMenu id="sip"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="bluetoothIntercom"
  5088. type="1" >
  5089. </productMenu>
  5090. <productMenu id="phone"
  5091. type="2" >
  5092. </productMenu>
  5093. <productMenu id="fmradio"
  5094. type="3" >
  5095. </productMenu>
  5096. <productMenu id="deviceSetting"
  5097. type="1"
  5098. url="https://api.sena.com/support/SenaUtility/Tufftalk/DS_TufftalkM_v0101.xml" >
  5099. </productMenu>
  5100. <productMenu id="quickGuide"
  5101. type="1"
  5102. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Tufftalk_M_02.pdf"
  5103. size="265KB" >
  5104. </productMenu>
  5105. <productMenu id="userGuide"
  5106. type="1"
  5107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Tufftalk_M_1.1.0_en_200521.pdf"
  5108. size="769KB" >
  5109. </productMenu>
  5110. <productID id="3118"
  5111. />
  5112. <productGroupable type="0"
  5113. />
  5114. </product>
  5115. <product id="HD10S"
  5116. name="Boom! Audio 10S"
  5117. series="10"
  5118. latestVersion="1.1.2"
  5119. show = "0" >
  5120. <productMenu id="protocol"
  5121. type="0">
  5122. </productMenu>
  5123. <productMenu id="sip"
  5124. type="1" >
  5125. </productMenu>
  5126. <productMenu id="bluetoothIntercom"
  5127. type="1" >
  5128. </productMenu>
  5129. <productMenu id="phone"
  5130. type="2" >
  5131. </productMenu>
  5132. <productMenu id="fmradio"
  5133. type="3" >
  5134. </productMenu>
  5135. <productMenu id="deviceSetting"
  5136. type="1"
  5137. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  5138. </productMenu>
  5139. <productMenu id="quickGuide"
  5140. type="1"
  5141. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_10S_01.pdf"
  5142. size="538KB" >
  5143. </productMenu>
  5144. <productMenu id="userGuide"
  5145. type="1"
  5146. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_10S_v1.0_01.pdf"
  5147. size="1.55MB" >
  5148. </productMenu>
  5149. <productID id="5532"
  5150. />
  5151. <productGroupable type="0"
  5152. />
  5153. </product>
  5154. <product id="HDCavalry"
  5155. name="Boom! Audio N01 10R"
  5156. series="10"
  5157. latestVersion="1.1.2"
  5158. show = "0" >
  5159. <productMenu id="protocol"
  5160. type="0">
  5161. </productMenu>
  5162. <productMenu id="sip"
  5163. type="1" >
  5164. </productMenu>
  5165. <productMenu id="bluetoothIntercom"
  5166. type="1" >
  5167. </productMenu>
  5168. <productMenu id="phone"
  5169. type="2" >
  5170. </productMenu>
  5171. <productMenu id="fmradio"
  5172. type="3" >
  5173. </productMenu>
  5174. <productMenu id="deviceSetting"
  5175. type="1"
  5176. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  5177. </productMenu>
  5178. <productMenu id="quickGuide"
  5179. type="1"
  5180. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_H-D_N01_01.pdf"
  5181. size="766KB" >
  5182. </productMenu>
  5183. <productMenu id="userGuide"
  5184. type="1"
  5185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_H-D_N01_v1.0_02.pdf"
  5186. size="1.45MB" >
  5187. </productMenu>
  5188. <productID id="5522"
  5189. />
  5190. <productGroupable type="0"
  5191. />
  5192. </product>
  5193. <product id="HDOUTRUSHR"
  5194. name="OUTRUSH R"
  5195. series="10"
  5196. latestVersion="1.0"
  5197. show = "0" >
  5198. <productMenu id="protocol"
  5199. type="0">
  5200. </productMenu>
  5201. <productMenu id="sip"
  5202. type="1" >
  5203. </productMenu>
  5204. <productMenu id="bluetoothIntercom"
  5205. type="1" >
  5206. </productMenu>
  5207. <productMenu id="phone"
  5208. type="2" >
  5209. </productMenu>
  5210. <productMenu id="fmradio"
  5211. type="3" >
  5212. </productMenu>
  5213. <productMenu id="deviceSetting"
  5214. type="1"
  5215. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5216. </productMenu>
  5217. <productMenu id="userGuide"
  5218. type="1"
  5219. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5220. size="660KB" >
  5221. </productMenu>
  5222. <productID id="5434"
  5223. />
  5224. <productGroupable type="0"
  5225. />
  5226. </product>
  5227. <product id="KLIM_KRIOS"
  5228. name="KLIM Krios"
  5229. series="10"
  5230. latestVersion="1.1.2"
  5231. show = "0" >
  5232. <productMenu id="protocol"
  5233. type="0">
  5234. </productMenu>
  5235. <productMenu id="sip"
  5236. type="1" >
  5237. </productMenu>
  5238. <productMenu id="bluetoothIntercom"
  5239. type="1" >
  5240. </productMenu>
  5241. <productMenu id="phone"
  5242. type="2" >
  5243. </productMenu>
  5244. <productMenu id="fmradio"
  5245. type="3" >
  5246. </productMenu>
  5247. <productMenu id="deviceSetting"
  5248. type="1"
  5249. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  5250. <productMenuURL version="1.0"
  5251. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  5252. />
  5253. </productMenu>
  5254. <productMenu id="quickGuide"
  5255. type="1"
  5256. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  5257. size="649KB" >
  5258. </productMenu>
  5259. <productMenu id="userGuide"
  5260. type="1"
  5261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  5262. size="1.43MB" >
  5263. </productMenu>
  5264. <productID id="5910"
  5265. />
  5266. <productGroupable type="0"
  5267. />
  5268. </product>
  5269. <product id="POLARIS_SLINGSHOT"
  5270. name="Polaris Slingshot"
  5271. series="10"
  5272. latestVersion="1.1.2"
  5273. show = "0" >
  5274. <productMenu id="protocol"
  5275. type="0">
  5276. </productMenu>
  5277. <productMenu id="sip"
  5278. type="1" >
  5279. </productMenu>
  5280. <productMenu id="bluetoothIntercom"
  5281. type="1" >
  5282. </productMenu>
  5283. <productMenu id="phone"
  5284. type="2" >
  5285. </productMenu>
  5286. <productMenu id="fmradio"
  5287. type="3" >
  5288. </productMenu>
  5289. <productMenu id="deviceSetting"
  5290. type="1"
  5291. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  5292. <productMenuURL version="1.0"
  5293. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  5294. />
  5295. </productMenu>
  5296. <productMenu id="quickGuide"
  5297. type="1"
  5298. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  5299. size="689KB" >
  5300. </productMenu>
  5301. <productMenu id="userGuide"
  5302. type="1"
  5303. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  5304. size="1.43MB" >
  5305. </productMenu>
  5306. <productID id="5920"
  5307. />
  5308. <productGroupable type="0"
  5309. />
  5310. </product>
  5311. <product id="R1_Pro"
  5312. name="R1 Pro"
  5313. series="10"
  5314. latestVersion="1.0"
  5315. show = "0" >
  5316. <productMenu id="protocol"
  5317. type="0">
  5318. </productMenu>
  5319. <productMenu id="sip"
  5320. type="1" >
  5321. </productMenu>
  5322. <productMenu id="bluetoothIntercom"
  5323. type="1" >
  5324. </productMenu>
  5325. <productMenu id="phone"
  5326. type="2" >
  5327. </productMenu>
  5328. <productMenu id="fmradio"
  5329. type="3" >
  5330. </productMenu>
  5331. <productMenu id="deviceSetting"
  5332. type="1"
  5333. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  5334. </productMenu>
  5335. <productMenu id="quickGuide"
  5336. type="1"
  5337. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_R1_01.pdf"
  5338. size="810KB" >
  5339. </productMenu>
  5340. <productMenu id="userGuide"
  5341. type="1"
  5342. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_R1_v1.0_01.pdf"
  5343. size="1.18MB" >
  5344. </productMenu>
  5345. <productID id="3060"
  5346. />
  5347. <productGroupable type="0"
  5348. />
  5349. </product>
  5350. <product id="X_COM2"
  5351. name="X-COM2"
  5352. series="10"
  5353. latestVersion="1.0.4"
  5354. show = "0" >
  5355. <productMenu id="protocol"
  5356. type="0">
  5357. </productMenu>
  5358. <productMenu id="sip"
  5359. type="1" >
  5360. </productMenu>
  5361. <productMenu id="bluetoothIntercom"
  5362. type="1" >
  5363. </productMenu>
  5364. <productMenu id="intercomSetting"
  5365. type="1" >
  5366. </productMenu>
  5367. <productMenu id="phone"
  5368. type="2" >
  5369. </productMenu>
  5370. <productMenu id="fmradio"
  5371. type="3" >
  5372. </productMenu>
  5373. <productMenu id="deviceSetting"
  5374. type="1"
  5375. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5376. </productMenu>
  5377. <productMenu id="quickGuide"
  5378. type="1"
  5379. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  5380. size="963KB" >
  5381. </productMenu>
  5382. <productMenu id="userGuide"
  5383. type="1"
  5384. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  5385. size="1.73MB" >
  5386. </productMenu>
  5387. <productID id="2030"
  5388. />
  5389. <productGroupable type="1"
  5390. />
  5391. </product>
  5392. <product id="DWO6"
  5393. name="SEDICI DWO6-PRO"
  5394. series="10"
  5395. latestVersion="1.0.1"
  5396. show = "0" >
  5397. <productMenu id="protocol"
  5398. type="0">
  5399. </productMenu>
  5400. <productMenu id="sip"
  5401. type="1" >
  5402. </productMenu>
  5403. <productMenu id="bluetoothIntercom"
  5404. type="1" >
  5405. </productMenu>
  5406. <productMenu id="phone"
  5407. type="2" >
  5408. </productMenu>
  5409. <productMenu id="fmradio"
  5410. type="3" >
  5411. </productMenu>
  5412. <productMenu id="deviceSetting"
  5413. type="1"
  5414. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5415. </productMenu>
  5416. <productMenu id="quickGuide"
  5417. type="1"
  5418. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_CG_DWO6P_01.pdf"
  5419. size="529KB" >
  5420. </productMenu>
  5421. <productMenu id="userGuide"
  5422. type="1"
  5423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_CG_DWO6P_v1.0_01.pdf"
  5424. size="4.09MB" >
  5425. </productMenu>
  5426. <productID id="6112"
  5427. />
  5428. <productGroupable type="0"
  5429. />
  5430. </product>
  5431. <product id="DWO6A"
  5432. name="SEDICI DWO-6"
  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/DWO6/DS_DWO6A.xml" >
  5454. </productMenu>
  5455. <productMenu id="quickGuide"
  5456. type="1"
  5457. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_DWO-6_v1.0_en_200831.pdf"
  5458. size="522KB" >
  5459. </productMenu>
  5460. <productMenu id="userGuide"
  5461. type="1"
  5462. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_DWO-6_v1.0_en_200831.pdf"
  5463. size="2.71MB" >
  5464. </productMenu>
  5465. <productID id="6114"
  5466. />
  5467. <productGroupable type="0"
  5468. />
  5469. </product>
  5470. <product id="X1_Pro"
  5471. name="X1 Pro"
  5472. series="10"
  5473. latestVersion="1.0.2"
  5474. show = "0" >
  5475. <productMenu id="protocol"
  5476. type="0">
  5477. </productMenu>
  5478. <productMenu id="sip"
  5479. type="1" >
  5480. </productMenu>
  5481. <productMenu id="bluetoothIntercom"
  5482. type="1" >
  5483. </productMenu>
  5484. <productMenu id="phone"
  5485. type="2" >
  5486. </productMenu>
  5487. <productMenu id="fmradio"
  5488. type="3" >
  5489. </productMenu>
  5490. <productMenu id="deviceSetting"
  5491. type="1"
  5492. url="https://api.sena.com/support/SenaUtility/X1/DS_X1_2.xml" >
  5493. </productMenu>
  5494. <productMenu id="quickGuide"
  5495. type="1"
  5496. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_X1-Pro_01.pdf"
  5497. size="935KB" >
  5498. </productMenu>
  5499. <productMenu id="userGuide"
  5500. type="1"
  5501. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_X1-Pro_v1.0_01.pdf"
  5502. size="1.71MB" >
  5503. </productMenu>
  5504. <productID id="3040"
  5505. />
  5506. <productGroupable type="0"
  5507. />
  5508. </product>
  5509. <product id="ZXV01"
  5510. name="ZILL"
  5511. series="10"
  5512. latestVersion="1.0.2"
  5513. show = "0" >
  5514. <productMenu id="protocol"
  5515. type="0">
  5516. </productMenu>
  5517. <productMenu id="sip"
  5518. type="1" >
  5519. </productMenu>
  5520. <productMenu id="bluetoothIntercom"
  5521. type="1" >
  5522. </productMenu>
  5523. <productMenu id="deviceSetting"
  5524. type="1"
  5525. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5526. </productMenu>
  5527. <productMenu id="quickGuide"
  5528. type="1"
  5529. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_3S_PLUS_1.0.0_en_200813.pdf"
  5530. size="842KB" >
  5531. </productMenu>
  5532. <productMenu id="userGuide"
  5533. type="1"
  5534. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_app_3S_PLUS_1.0.1_en_210521.pdf"
  5535. size="1.02MB" >
  5536. </productMenu>
  5537. <productID id="6335"
  5538. />
  5539. <productGroupable type="0"
  5540. />
  5541. </product>
  5542. <product id="R2"
  5543. name="R2"
  5544. series="10"
  5545. latestVersion="1.0"
  5546. show = "0" >
  5547. <productMenu id="protocol"
  5548. type="0">
  5549. </productMenu>
  5550. <productMenu id="sip"
  5551. type="1" >
  5552. </productMenu>
  5553. <productMenu id="bluetoothIntercom"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="deviceSetting"
  5557. type="1"
  5558. url="https://api.sena.com/support/SenaUtility/R2/DS_R2.xml" >
  5559. </productMenu>
  5560. <productMenu id="quickGuide"
  5561. type="1"
  5562. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_M1_1.1.0_en_210224.pdf"
  5563. size="773KB" >
  5564. </productMenu>
  5565. <productMenu id="userGuide"
  5566. type="1"
  5567. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_M1_1.1.0_en_210223.pdf"
  5568. size="848KB" >
  5569. </productMenu>
  5570. <productID id="3080"
  5571. />
  5572. <productGroupable type="0"
  5573. />
  5574. </product>
  5575. <product id="OUTFORCE"
  5576. name="OUTFORCE"
  5577. series="10"
  5578. latestVersion="1.0"
  5579. show = "0" >
  5580. <productMenu id="protocol"
  5581. type="0">
  5582. </productMenu>
  5583. <productMenu id="sip"
  5584. type="1" >
  5585. </productMenu>
  5586. <productMenu id="bluetoothIntercom"
  5587. type="1" >
  5588. </productMenu>
  5589. <productMenu id="phone"
  5590. type="2" >
  5591. </productMenu>
  5592. <productMenu id="fmradio"
  5593. type="3" >
  5594. </productMenu>
  5595. <productMenu id="deviceSetting"
  5596. type="1"
  5597. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5598. </productMenu>
  5599. <productMenu id="userGuide"
  5600. type="1"
  5601. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5602. size="660KB" >
  5603. </productMenu>
  5604. <productID id="5430"
  5605. />
  5606. <productGroupable type="0"
  5607. />
  5608. </product>
  5609. <product id="OUTRIDE"
  5610. name="OUTRIDE"
  5611. series="10"
  5612. latestVersion="1.0"
  5613. show = "0" >
  5614. <productMenu id="protocol"
  5615. type="0">
  5616. </productMenu>
  5617. <productMenu id="sip"
  5618. type="1" >
  5619. </productMenu>
  5620. <productMenu id="bluetoothIntercom"
  5621. type="1" >
  5622. </productMenu>
  5623. <productMenu id="phone"
  5624. type="2" >
  5625. </productMenu>
  5626. <productMenu id="fmradio"
  5627. type="3" >
  5628. </productMenu>
  5629. <productMenu id="deviceSetting"
  5630. type="1"
  5631. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  5632. </productMenu>
  5633. <productMenu id="userGuide"
  5634. type="1"
  5635. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_OUTRUSH_R_1.0.0_en_201019.pdf"
  5636. size="660KB" >
  5637. </productMenu>
  5638. <productID id="5432"
  5639. />
  5640. <productGroupable type="0"
  5641. />
  5642. </product>
  5643. <product id="ACS10"
  5644. name="ACS10"
  5645. series="10"
  5646. latestVersion="1.0"
  5647. show = "0" >
  5648. <productMenu id="protocol"
  5649. type="0">
  5650. </productMenu>
  5651. <productMenu id="sip"
  5652. type="1" >
  5653. </productMenu>
  5654. <productMenu id="bluetoothIntercom"
  5655. type="1" >
  5656. </productMenu>
  5657. <productMenu id="phone"
  5658. type="2" >
  5659. </productMenu>
  5660. <productMenu id="deviceSetting"
  5661. type="1"
  5662. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  5663. </productMenu>
  5664. <productMenu id="quickGuide"
  5665. type="1"
  5666. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5S_1.0.0_en_200410.pdf"
  5667. size="970KB" >
  5668. </productMenu>
  5669. <productMenu id="userGuide"
  5670. type="1"
  5671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_5S_1.0.0_en_200330.pdf"
  5672. size="1.26MB" >
  5673. </productMenu>
  5674. <productID id="3300"
  5675. />
  5676. <productGroupable type="0"
  5677. />
  5678. </product>
  5679. -->
  5680. </products>
  5681. </sna>