snm.xml 259 KB

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