snm.xml 215 KB

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