snm.xml 210 KB

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