snm.xml 197 KB

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