snm.xml 259 KB

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