snm.xml 259 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250142" 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.4"
  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.4-build0.img"
  501. size="5183988"
  502. />
  503. <package
  504. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-fr-FR.img"
  505. size="5183988"
  506. />
  507. <package
  508. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-es-ES.img"
  509. size="5183988"
  510. />
  511. <package
  512. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-it-IT.img"
  513. size="5183988"
  514. />
  515. <package
  516. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-de-DE.img"
  517. size="5183988"
  518. />
  519. <package
  520. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-nl-NL.img"
  521. size="5183988"
  522. />
  523. <package
  524. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-ru-RU.img"
  525. size="5183988"
  526. />
  527. <package
  528. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-cmn-CN.img"
  529. size="5183988"
  530. />
  531. <package
  532. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-ko-KR.img"
  533. size="5183988"
  534. />
  535. <package
  536. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-build0-ja-JP.img"
  537. size="5183988"
  538. />
  539. <package
  540. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v1.0.4-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="5" >
  3433. </productMenu>
  3434. <productMenu id="led+"
  3435. type="2"
  3436. url="1" >
  3437. </productMenu>
  3438. <productMenu id="meshIntercom+"
  3439. type="3"
  3440. url="2" >
  3441. </productMenu>
  3442. <productMenu id="waveIntercom"
  3443. type="1" >
  3444. </productMenu>
  3445. <productMenu id="fmradio"
  3446. type="0" >
  3447. </productMenu>
  3448. <productMenu id="phone"
  3449. type="1" >
  3450. </productMenu>
  3451. <productMenu id="music"
  3452. type="1" >
  3453. </productMenu>
  3454. <productMenu id="musicSharing"
  3455. type="0" >
  3456. </productMenu>
  3457. <productMenu id="deviceSetting"
  3458. type="1"
  3459. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER.xml" >
  3460. </productMenu>
  3461. <productMenu id="quickGuide"
  3462. type="0"
  3463. url=""
  3464. size="1.12MB" >
  3465. </productMenu>
  3466. <productMenu id="userGuide"
  3467. type="1"
  3468. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_1.1.1_en_250314.pdf"
  3469. size="2.0MB" >
  3470. </productMenu>
  3471. <productMenu id="videoGuide"
  3472. type="0"
  3473. url=""
  3474. size="3.41MB" >
  3475. </productMenu>
  3476. <productMenu id="volume"
  3477. type="16" >
  3478. </productMenu>
  3479. <productMenu id="battery"
  3480. type="1" >
  3481. </productMenu>
  3482. <productID id="6A05"
  3483. />
  3484. <productGroupable type="0"
  3485. />
  3486. </product>
  3487. <product id="OUTRUSH2"
  3488. name="OUTRUSH 2"
  3489. series="Helmet"
  3490. latestVersion="1.0"
  3491. latestVersionVoicePrompt="0.9"
  3492. show = "0" >
  3493. <productMenu id="protocol"
  3494. type="2" >
  3495. </productMenu>
  3496. <productMenu id="alexa"
  3497. type="0" >
  3498. </productMenu>
  3499. <productMenu id="ota"
  3500. type="2" >
  3501. <otaPackages>
  3502. <package
  3503. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0-build2.img"
  3504. size="2945812"
  3505. />
  3506. </otaPackages>
  3507. </productMenu>
  3508. <productMenu id="meshIntercom+"
  3509. type="3"
  3510. url="2" >
  3511. </productMenu>
  3512. <productMenu id="waveIntercom"
  3513. type="1" >
  3514. </productMenu>
  3515. <productMenu id="phone"
  3516. type="1" >
  3517. </productMenu>
  3518. <productMenu id="music"
  3519. type="1" >
  3520. </productMenu>
  3521. <productMenu id="musicSharing"
  3522. type="0" >
  3523. </productMenu>
  3524. <productMenu id="deviceSetting"
  3525. type="1"
  3526. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_02.xml" >
  3527. <productMenuURL version="1.0"
  3528. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  3529. />
  3530. </productMenu>
  3531. <productMenu id="quickGuide"
  3532. type="0"
  3533. url=""
  3534. size="1.12MB" >
  3535. </productMenu>
  3536. <productMenu id="userGuide"
  3537. type="1"
  3538. url=""
  3539. size="2.0MB" >
  3540. </productMenu>
  3541. <productMenu id="volume"
  3542. type="12" >
  3543. </productMenu>
  3544. <productMenu id="battery"
  3545. type="1" >
  3546. </productMenu>
  3547. <productID id="684A"
  3548. />
  3549. <productGroupable type="0"
  3550. />
  3551. </product>
  3552. <product id="OUTSTAR2"
  3553. name="OUTSTAR 2"
  3554. series="Helmet"
  3555. latestVersion="1.0"
  3556. latestVersionVoicePrompt="0.9"
  3557. show = "0" >
  3558. <productMenu id="protocol"
  3559. type="2" >
  3560. </productMenu>
  3561. <productMenu id="alexa"
  3562. type="0" >
  3563. </productMenu>
  3564. <productMenu id="ota"
  3565. type="0" >
  3566. <otaPackages>
  3567. <package
  3568. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1-build0.img"
  3569. size="2945812"
  3570. />
  3571. </otaPackages>
  3572. </productMenu>
  3573. <productMenu id="meshIntercom+"
  3574. type="3"
  3575. url="2" >
  3576. </productMenu>
  3577. <productMenu id="waveIntercom"
  3578. type="1" >
  3579. </productMenu>
  3580. <productMenu id="phone"
  3581. type="1" >
  3582. </productMenu>
  3583. <productMenu id="music"
  3584. type="1" >
  3585. </productMenu>
  3586. <productMenu id="musicSharing"
  3587. type="0" >
  3588. </productMenu>
  3589. <productMenu id="deviceSetting"
  3590. type="1"
  3591. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_02.xml" >
  3592. </productMenu>
  3593. <productMenu id="quickGuide"
  3594. type="0"
  3595. url=""
  3596. size="1.12MB" >
  3597. </productMenu>
  3598. <productMenu id="userGuide"
  3599. type="1"
  3600. url=""
  3601. size="2.0MB" >
  3602. </productMenu>
  3603. <productMenu id="volume"
  3604. type="12" >
  3605. </productMenu>
  3606. <productMenu id="battery"
  3607. type="1" >
  3608. </productMenu>
  3609. <productID id="684B"
  3610. />
  3611. <productGroupable type="0"
  3612. />
  3613. </product>
  3614. <product id="SURGE"
  3615. name="SURGE"
  3616. series="Helmet"
  3617. latestVersion="1.1.1"
  3618. latestVersionVoicePrompt="0.9"
  3619. show = "0" >
  3620. <productMenu id="protocol"
  3621. type="2" >
  3622. </productMenu>
  3623. <productMenu id="alexa"
  3624. type="0" >
  3625. </productMenu>
  3626. <productMenu id="ota"
  3627. type="2" >
  3628. <otaPackages>
  3629. <package
  3630. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  3631. size="2945812"
  3632. />
  3633. </otaPackages>
  3634. </productMenu>
  3635. <productMenu id="meshIntercom"
  3636. type="30" >
  3637. </productMenu>
  3638. <productMenu id="meshIntercom+"
  3639. type="3"
  3640. url="2" >
  3641. <productMenuType version="1.0.1"
  3642. type="2"
  3643. />
  3644. </productMenu>
  3645. <productMenu id="waveIntercom"
  3646. type="1" >
  3647. <productMenuType version="1.0.9"
  3648. type="0"
  3649. />
  3650. </productMenu>
  3651. <productMenu id="phone"
  3652. type="1" >
  3653. </productMenu>
  3654. <productMenu id="music"
  3655. type="1" >
  3656. </productMenu>
  3657. <productMenu id="musicSharing"
  3658. type="0" >
  3659. </productMenu>
  3660. <productMenu id="deviceSetting"
  3661. type="1"
  3662. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  3663. <productMenuURL version="1.0.1"
  3664. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3665. />
  3666. </productMenu>
  3667. <productMenu id="quickGuide"
  3668. type="0"
  3669. url=""
  3670. size="1.12MB" >
  3671. </productMenu>
  3672. <productMenu id="userGuide"
  3673. type="1"
  3674. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  3675. size="2.0MB" >
  3676. </productMenu>
  3677. <productMenu id="volume"
  3678. type="12" >
  3679. </productMenu>
  3680. <productMenu id="battery"
  3681. type="1" >
  3682. </productMenu>
  3683. <productID id="6840"
  3684. />
  3685. <productGroupable type="0"
  3686. />
  3687. </product>
  3688. <product id="Cavalry2"
  3689. name="Cavalry 2"
  3690. series="Helmet"
  3691. latestVersion="1.1.1"
  3692. latestVersionVoicePrompt="0.9"
  3693. show = "1" >
  3694. <productMenu id="protocol"
  3695. type="2" >
  3696. </productMenu>
  3697. <productMenu id="alexa"
  3698. type="0" >
  3699. </productMenu>
  3700. <productMenu id="ota"
  3701. type="2" >
  3702. <otaPackages>
  3703. <package
  3704. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  3705. size="3144148"
  3706. />
  3707. </otaPackages>
  3708. </productMenu>
  3709. <productMenu id="wa"
  3710. type="0" >
  3711. </productMenu>
  3712. <productMenu id="meshIntercom"
  3713. type="30" >
  3714. </productMenu>
  3715. <productMenu id="meshIntercom+"
  3716. type="3"
  3717. url="2" >
  3718. <productMenuType version="1.0"
  3719. type="2"
  3720. />
  3721. </productMenu>
  3722. <productMenu id="waveIntercom"
  3723. type="1" >
  3724. <productMenuType version="1.0.9"
  3725. type="0"
  3726. />
  3727. </productMenu>
  3728. <productMenu id="phone"
  3729. type="1" >
  3730. </productMenu>
  3731. <productMenu id="music"
  3732. type="1" >
  3733. </productMenu>
  3734. <productMenu id="musicSharing"
  3735. type="0" >
  3736. </productMenu>
  3737. <productMenu id="deviceSetting"
  3738. type="1"
  3739. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  3740. <productMenuURL version="1.0"
  3741. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  3742. />
  3743. </productMenu>
  3744. <productMenu id="quickGuide"
  3745. type="0"
  3746. url=""
  3747. size="1.12MB" >
  3748. </productMenu>
  3749. <productMenu id="userGuide"
  3750. type="1"
  3751. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  3752. size="2.0MB" >
  3753. </productMenu>
  3754. <productMenu id="volume"
  3755. type="12" >
  3756. </productMenu>
  3757. <productMenu id="battery"
  3758. type="1" >
  3759. </productMenu>
  3760. <productID id="6839"
  3761. />
  3762. <productGroupable type="0"
  3763. />
  3764. </product>
  3765. <product id="Cavalry"
  3766. name="Cavalry"
  3767. series="Helmet"
  3768. latestVersion="1.2.2"
  3769. show = "1" >
  3770. <productMenu id="protocol"
  3771. type="0">
  3772. </productMenu>
  3773. <productMenu id="sip"
  3774. type="1" >
  3775. </productMenu>
  3776. <productMenu id="bluetoothIntercom"
  3777. type="1" >
  3778. </productMenu>
  3779. <productMenu id="phone"
  3780. type="2" >
  3781. </productMenu>
  3782. <productMenu id="fmradio"
  3783. type="3" >
  3784. </productMenu>
  3785. <productMenu id="deviceSetting"
  3786. type="1"
  3787. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  3788. <productMenuURL version="1.9"
  3789. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  3790. />
  3791. <productMenuURL version="1.0.1"
  3792. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  3793. />
  3794. </productMenu>
  3795. <productMenu id="quickGuide"
  3796. type="1"
  3797. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  3798. size="795KB" >
  3799. </productMenu>
  3800. <productMenu id="userGuide"
  3801. type="1"
  3802. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  3803. size="1.87MB" >
  3804. </productMenu>
  3805. <productID id="5524"
  3806. />
  3807. <productGroupable type="0"
  3808. />
  3809. </product>
  3810. <product id="Cavalry_Lite"
  3811. name="Cavalry Lite"
  3812. series="Helmet"
  3813. latestVersion="1.0.2"
  3814. show = "1" >
  3815. <productMenu id="protocol"
  3816. type="0">
  3817. </productMenu>
  3818. <productMenu id="sip"
  3819. type="1" >
  3820. </productMenu>
  3821. <productMenu id="bluetoothIntercom"
  3822. type="1" >
  3823. </productMenu>
  3824. <productMenu id="phone"
  3825. type="2" >
  3826. </productMenu>
  3827. <productMenu id="fmradio"
  3828. type="3" >
  3829. </productMenu>
  3830. <productMenu id="deviceSetting"
  3831. type="1"
  3832. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  3833. </productMenu>
  3834. <productMenu id="userGuide"
  3835. type="1"
  3836. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  3837. size="1.74MB" >
  3838. </productMenu>
  3839. <productID id="5536"
  3840. />
  3841. <productGroupable type="0"
  3842. />
  3843. </product>
  3844. <product id="SF4"
  3845. name="SF4"
  3846. series="SF"
  3847. latestVersion="1.1.5"
  3848. show = "0" >
  3849. <productMenu id="protocol"
  3850. type="1"
  3851. url="3">
  3852. </productMenu>
  3853. <productMenu id="sip"
  3854. type="1" >
  3855. </productMenu>
  3856. <productMenu id="bluetoothIntercom"
  3857. type="1" >
  3858. </productMenu>
  3859. <productMenu id="phone"
  3860. type="1" >
  3861. </productMenu>
  3862. <productMenu id="music"
  3863. type="1" >
  3864. </productMenu>
  3865. <productMenu id="fmradio"
  3866. type="1" >
  3867. </productMenu>
  3868. <productMenu id="deviceSetting"
  3869. type="1"
  3870. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3871. <productMenuURL version="1.0.1"
  3872. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3873. />
  3874. </productMenu>
  3875. <productMenu id="quickGuide"
  3876. type="1"
  3877. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  3878. size="607KB" >
  3879. </productMenu>
  3880. <productMenu id="userGuide"
  3881. type="1"
  3882. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  3883. size="1.91MB" >
  3884. </productMenu>
  3885. <productMenu id="volume"
  3886. type="4" >
  3887. </productMenu>
  3888. <productID id="5414"
  3889. />
  3890. <productGroupable type="0"
  3891. />
  3892. </product>
  3893. <product id="SF4"
  3894. name="SF4"
  3895. series="SF"
  3896. latestVersion="3.4.1"
  3897. show = "1" >
  3898. <productMenu id="protocol"
  3899. type="2" >
  3900. </productMenu>
  3901. <productMenu id="sip"
  3902. type="1" >
  3903. </productMenu>
  3904. <productMenu id="bluetoothIntercom"
  3905. type="1" >
  3906. </productMenu>
  3907. <productMenu id="phone"
  3908. type="1" >
  3909. </productMenu>
  3910. <productMenu id="music"
  3911. type="1" >
  3912. </productMenu>
  3913. <productMenu id="fmradio"
  3914. type="1" >
  3915. </productMenu>
  3916. <productMenu id="deviceSetting"
  3917. type="1"
  3918. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  3919. <productMenuURL version="3.0"
  3920. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  3921. />
  3922. </productMenu>
  3923. <productMenu id="quickGuide"
  3924. type="1"
  3925. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_2.1.0_en_230704.pdf"
  3926. size="934KB" >
  3927. </productMenu>
  3928. <productMenu id="userGuide"
  3929. type="1"
  3930. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  3931. size="1.14MB" >
  3932. </productMenu>
  3933. <productMenu id="volume"
  3934. type="15" >
  3935. </productMenu>
  3936. <productID id="3370"
  3937. />
  3938. <productGroupable type="0"
  3939. />
  3940. </product>
  3941. <product id="SF2"
  3942. name="SF2"
  3943. series="SF"
  3944. latestVersion="1.2.1"
  3945. show = "0" >
  3946. <productMenu id="protocol"
  3947. type="1"
  3948. url="2">
  3949. </productMenu>
  3950. <productMenu id="sip"
  3951. type="1" >
  3952. </productMenu>
  3953. <productMenu id="bluetoothIntercom"
  3954. type="1" >
  3955. </productMenu>
  3956. <productMenu id="phone"
  3957. type="1" >
  3958. </productMenu>
  3959. <productMenu id="music"
  3960. type="1" >
  3961. </productMenu>
  3962. <productMenu id="fmradio"
  3963. type="1" >
  3964. </productMenu>
  3965. <productMenu id="deviceSetting"
  3966. type="1"
  3967. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3968. <productMenuURL version="1.0.1"
  3969. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3970. />
  3971. </productMenu>
  3972. <productMenu id="quickGuide"
  3973. type="1"
  3974. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  3975. size="607KB" >
  3976. </productMenu>
  3977. <productMenu id="userGuide"
  3978. type="1"
  3979. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  3980. size="1.91MB" >
  3981. </productMenu>
  3982. <productMenu id="volume"
  3983. type="4" >
  3984. </productMenu>
  3985. <productID id="5412"
  3986. />
  3987. <productGroupable type="0"
  3988. />
  3989. </product>
  3990. <product id="SF2"
  3991. name="SF2"
  3992. series="SF"
  3993. latestVersion="3.3.1"
  3994. show = "1" >
  3995. <productMenu id="protocol"
  3996. type="2" >
  3997. </productMenu>
  3998. <productMenu id="sip"
  3999. type="1" >
  4000. </productMenu>
  4001. <productMenu id="bluetoothIntercom"
  4002. type="1" >
  4003. </productMenu>
  4004. <productMenu id="phone"
  4005. type="1" >
  4006. </productMenu>
  4007. <productMenu id="music"
  4008. type="1" >
  4009. </productMenu>
  4010. <productMenu id="fmradio"
  4011. type="0" >
  4012. </productMenu>
  4013. <productMenu id="deviceSetting"
  4014. type="1"
  4015. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4016. <productMenuURL version="3.0"
  4017. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4018. />
  4019. </productMenu>
  4020. <productMenu id="quickGuide"
  4021. type="1"
  4022. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_2.1.0_en_230704.pdf"
  4023. size="934KB" >
  4024. </productMenu>
  4025. <productMenu id="userGuide"
  4026. type="1"
  4027. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  4028. size="1.14MB" >
  4029. </productMenu>
  4030. <productMenu id="volume"
  4031. type="15" >
  4032. </productMenu>
  4033. <productID id="3360"
  4034. />
  4035. <productGroupable type="0"
  4036. />
  4037. </product>
  4038. <product id="SF1"
  4039. name="SF1"
  4040. series="SF"
  4041. latestVersion="2.0.5"
  4042. show = "0" >
  4043. <productMenu id="protocol"
  4044. type="1"
  4045. url="1">
  4046. </productMenu>
  4047. <productMenu id="sip"
  4048. type="1" >
  4049. </productMenu>
  4050. <productMenu id="bluetoothIntercom"
  4051. type="1" >
  4052. <productMenuType version="1.1"
  4053. type="0"
  4054. />
  4055. </productMenu>
  4056. <productMenu id="phone"
  4057. type="1" >
  4058. </productMenu>
  4059. <productMenu id="music"
  4060. type="1" >
  4061. </productMenu>
  4062. <productMenu id="deviceSetting"
  4063. type="1"
  4064. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4065. <productMenuURL version="1.1"
  4066. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4067. />
  4068. <productMenuURL version="1.0"
  4069. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="quickGuide"
  4073. type="1"
  4074. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4075. size="401KB" >
  4076. </productMenu>
  4077. <productMenu id="userGuide"
  4078. type="1"
  4079. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4080. size="1.91MB" >
  4081. </productMenu>
  4082. <productMenu id="volume"
  4083. type="3" >
  4084. </productMenu>
  4085. <productID id="5410"
  4086. />
  4087. <productGroupable type="0"
  4088. />
  4089. </product>
  4090. <product id="SF1"
  4091. name="SF1"
  4092. series="SF"
  4093. latestVersion="3.3.1"
  4094. show = "1" >
  4095. <productMenu id="protocol"
  4096. type="2" >
  4097. </productMenu>
  4098. <productMenu id="sip"
  4099. type="1" >
  4100. </productMenu>
  4101. <productMenu id="bluetoothIntercom"
  4102. type="1" >
  4103. </productMenu>
  4104. <productMenu id="phone"
  4105. type="1" >
  4106. </productMenu>
  4107. <productMenu id="music"
  4108. type="1" >
  4109. </productMenu>
  4110. <productMenu id="fmradio"
  4111. type="0" >
  4112. </productMenu>
  4113. <productMenu id="deviceSetting"
  4114. type="1"
  4115. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4116. <productMenuURL version="3.0"
  4117. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4118. />
  4119. </productMenu>
  4120. <productMenu id="quickGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_3.1.0_en_230704.pdf"
  4123. size="934KB" >
  4124. </productMenu>
  4125. <productMenu id="userGuide"
  4126. type="1"
  4127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  4128. size="1.14MB" >
  4129. </productMenu>
  4130. <productMenu id="volume"
  4131. type="15" >
  4132. </productMenu>
  4133. <productID id="3350"
  4134. />
  4135. <productGroupable type="0"
  4136. />
  4137. </product>
  4138. <product id="SFR"
  4139. name="SFR"
  4140. series="SF"
  4141. latestVersion="1.1.1"
  4142. show = "1" >
  4143. <productMenu id="protocol"
  4144. type="1"
  4145. url="3">
  4146. </productMenu>
  4147. <productMenu id="sip"
  4148. type="1" >
  4149. </productMenu>
  4150. <productMenu id="bluetoothIntercom"
  4151. type="1" >
  4152. </productMenu>
  4153. <productMenu id="phone"
  4154. type="1" >
  4155. </productMenu>
  4156. <productMenu id="music"
  4157. type="1" >
  4158. </productMenu>
  4159. <productMenu id="fmradio"
  4160. type="1" >
  4161. </productMenu>
  4162. <productMenu id="deviceSetting"
  4163. type="1"
  4164. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4165. </productMenu>
  4166. <productMenu id="quickGuide"
  4167. type="1"
  4168. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  4169. size="607KB" >
  4170. </productMenu>
  4171. <productMenu id="userGuide"
  4172. type="1"
  4173. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  4174. size="1.91MB" >
  4175. </productMenu>
  4176. <productMenu id="volume"
  4177. type="4" >
  4178. </productMenu>
  4179. <productID id="5418"
  4180. />
  4181. <productGroupable type="0"
  4182. />
  4183. </product>
  4184. <product id="20S"
  4185. name="20S"
  4186. series="20"
  4187. latestVersion="2.2.3"
  4188. show = "1" >
  4189. <productMenu id="protocol"
  4190. type="0">
  4191. </productMenu>
  4192. <productMenu id="wa"
  4193. type="5" >
  4194. </productMenu>
  4195. <productMenu id="sip"
  4196. type="1" >
  4197. <productMenuType version="1.0"
  4198. type="0"
  4199. />
  4200. </productMenu>
  4201. <productMenu id="bluetoothIntercom"
  4202. type="1" >
  4203. <productMenuType version="1.0"
  4204. type="0"
  4205. />
  4206. </productMenu>
  4207. <productMenu id="intercomSetting"
  4208. type="1" >
  4209. </productMenu>
  4210. <productMenu id="phone"
  4211. type="2" >
  4212. </productMenu>
  4213. <productMenu id="fmradio"
  4214. type="3" >
  4215. </productMenu>
  4216. <productMenu id="deviceSetting"
  4217. type="1"
  4218. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4219. <productMenuURL version="2.0.2"
  4220. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4221. />
  4222. <productMenuURL version="1.5"
  4223. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4224. />
  4225. <productMenuURL version="1.4.1"
  4226. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4227. />
  4228. <productMenuURL version="1.1"
  4229. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4230. />
  4231. <productMenuURL version="1.0"
  4232. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4233. />
  4234. </productMenu>
  4235. <productMenu id="quickGuide"
  4236. type="0"
  4237. url=""
  4238. size="264KB" >
  4239. </productMenu>
  4240. <productMenu id="userGuide"
  4241. type="1"
  4242. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4243. size="3.09MB" >
  4244. </productMenu>
  4245. <productID id="4210"
  4246. />
  4247. <productGroupable type="1"
  4248. />
  4249. </product>
  4250. <product id="20S_EVO"
  4251. name="20S EVO"
  4252. series="20"
  4253. latestVersion="2.2.3"
  4254. show = "1" >
  4255. <productMenu id="protocol"
  4256. type="0">
  4257. </productMenu>
  4258. <productMenu id="wa"
  4259. type="5" >
  4260. </productMenu>
  4261. <productMenu id="sip"
  4262. type="1" >
  4263. <productMenuType version="1.0"
  4264. type="0"
  4265. />
  4266. </productMenu>
  4267. <productMenu id="bluetoothIntercom"
  4268. type="1" >
  4269. <productMenuType version="1.0"
  4270. type="0"
  4271. />
  4272. </productMenu>
  4273. <productMenu id="intercomSetting"
  4274. type="1" >
  4275. </productMenu>
  4276. <productMenu id="phone"
  4277. type="2" >
  4278. </productMenu>
  4279. <productMenu id="fmradio"
  4280. type="3" >
  4281. </productMenu>
  4282. <productMenu id="deviceSetting"
  4283. type="1"
  4284. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4285. <productMenuURL version="2.0.2"
  4286. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4287. />
  4288. <productMenuURL version="1.5"
  4289. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4290. />
  4291. <productMenuURL version="1.4.1"
  4292. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4293. />
  4294. <productMenuURL version="1.1"
  4295. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4296. />
  4297. <productMenuURL version="1.0"
  4298. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4299. />
  4300. </productMenu>
  4301. <productMenu id="quickGuide"
  4302. type="0"
  4303. url=""
  4304. size="264KB" >
  4305. </productMenu>
  4306. <productMenu id="userGuide"
  4307. type="1"
  4308. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4309. size="3.09MB" >
  4310. </productMenu>
  4311. <productID id="4210"
  4312. />
  4313. <productProductKey key="16"
  4314. />
  4315. <productGroupable type="1"
  4316. />
  4317. </product>
  4318. <product id="10S"
  4319. name="10S"
  4320. series="10"
  4321. latestVersion="3.0.1"
  4322. show = "0" >
  4323. <productMenu id="protocol"
  4324. type="3" >
  4325. </productMenu>
  4326. <productMenu id="sip"
  4327. type="1" >
  4328. </productMenu>
  4329. <productMenu id="bluetoothIntercom"
  4330. type="1" >
  4331. </productMenu>
  4332. <productMenu id="phone"
  4333. type="1" >
  4334. </productMenu>
  4335. <productMenu id="deviceSetting"
  4336. type="1"
  4337. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  4338. </productMenu>
  4339. <productMenu id="quickGuide"
  4340. type="1"
  4341. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  4342. size="934KB" >
  4343. </productMenu>
  4344. <productMenu id="userGuide"
  4345. type="1"
  4346. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  4347. size="1.14MB" >
  4348. </productMenu>
  4349. <productID id="3380"
  4350. />
  4351. <productGroupable type="0"
  4352. />
  4353. </product>
  4354. <product id="10S"
  4355. name="10S"
  4356. series="10"
  4357. latestVersion="2.1.1"
  4358. show = "1" >
  4359. <productMenu id="protocol"
  4360. type="0">
  4361. </productMenu>
  4362. <productMenu id="sip"
  4363. type="1" >
  4364. </productMenu>
  4365. <productMenu id="bluetoothIntercom"
  4366. type="1" >
  4367. </productMenu>
  4368. <productMenu id="phone"
  4369. type="2" >
  4370. </productMenu>
  4371. <productMenu id="fmradio"
  4372. type="3" >
  4373. </productMenu>
  4374. <productMenu id="deviceSetting"
  4375. type="1"
  4376. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  4377. <productMenuURL version="1.5"
  4378. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  4379. />
  4380. <productMenuURL version="1.3.1"
  4381. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  4382. />
  4383. </productMenu>
  4384. <productMenu id="quickGuide"
  4385. type="1"
  4386. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  4387. size="310KB" >
  4388. </productMenu>
  4389. <productMenu id="userGuide"
  4390. type="1"
  4391. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  4392. size="1.57MB" >
  4393. </productMenu>
  4394. <productID id="5530"
  4395. />
  4396. <productGroupable type="0"
  4397. />
  4398. </product>
  4399. <product id="10R"
  4400. name="10R"
  4401. series="10"
  4402. latestVersion="2.1.1"
  4403. show = "1" >
  4404. <productMenu id="protocol"
  4405. type="0">
  4406. </productMenu>
  4407. <productMenu id="sip"
  4408. type="1" >
  4409. <productMenuType version="1.0.2"
  4410. type="0"
  4411. />
  4412. </productMenu>
  4413. <productMenu id="bluetoothIntercom"
  4414. type="1" >
  4415. <productMenuType version="1.0.2"
  4416. type="0"
  4417. />
  4418. </productMenu>
  4419. <productMenu id="phone"
  4420. type="2" >
  4421. </productMenu>
  4422. <productMenu id="fmradio"
  4423. type="3" >
  4424. </productMenu>
  4425. <productMenu id="deviceSetting"
  4426. type="1"
  4427. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4428. <productMenuURL version="1.4"
  4429. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  4430. />
  4431. <productMenuURL version="1.2.1"
  4432. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  4433. />
  4434. <productMenuURL version="1.0.2"
  4435. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  4436. />
  4437. <productMenuURL version="1.0"
  4438. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  4439. />
  4440. </productMenu>
  4441. <productMenu id="quickGuide"
  4442. type="1"
  4443. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  4444. size="400KB" >
  4445. </productMenu>
  4446. <productMenu id="userGuide"
  4447. type="1"
  4448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  4449. size="2.75MB" >
  4450. </productMenu>
  4451. <productID id="5520"
  4452. />
  4453. <productGroupable type="0"
  4454. />
  4455. </product>
  4456. <product id="10C_EVO"
  4457. name="10C EVO"
  4458. series="10"
  4459. latestVersion="1.7"
  4460. show = "1" >
  4461. <productMenu id="protocol"
  4462. type="0">
  4463. </productMenu>
  4464. <productMenu id="sip"
  4465. type="1" >
  4466. </productMenu>
  4467. <productMenu id="bluetoothIntercom"
  4468. type="1" >
  4469. </productMenu>
  4470. <productMenu id="phone"
  4471. type="2" >
  4472. </productMenu>
  4473. <productMenu id="fmradio"
  4474. type="3" >
  4475. </productMenu>
  4476. <productMenu id="deviceSetting"
  4477. type="1"
  4478. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  4479. <productMenuURL version="1.3.1"
  4480. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4481. />
  4482. </productMenu>
  4483. <productMenu id="quickGuide"
  4484. type="1"
  4485. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  4486. size="1.32MB" >
  4487. </productMenu>
  4488. <productMenu id="userGuide"
  4489. type="1"
  4490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  4491. size="1.68MB" >
  4492. </productMenu>
  4493. <productID id="5570"
  4494. />
  4495. <productGroupable type="0"
  4496. />
  4497. </product>
  4498. <product id="10C_Pro"
  4499. name="10C Pro"
  4500. series="10"
  4501. latestVersion="2.7.1"
  4502. show = "1" >
  4503. <productMenu id="protocol"
  4504. type="0">
  4505. </productMenu>
  4506. <productMenu id="sip"
  4507. type="1" >
  4508. </productMenu>
  4509. <productMenu id="bluetoothIntercom"
  4510. type="1" >
  4511. </productMenu>
  4512. <productMenu id="phone"
  4513. type="2" >
  4514. </productMenu>
  4515. <productMenu id="fmradio"
  4516. type="3" >
  4517. </productMenu>
  4518. <productMenu id="deviceSetting"
  4519. type="1"
  4520. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4521. <productMenuURL version="2.5.1"
  4522. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4523. />
  4524. <productMenuURL version="1.0"
  4525. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4526. />
  4527. </productMenu>
  4528. <productMenu id="quickGuide"
  4529. type="1"
  4530. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4531. size="651KB" >
  4532. </productMenu>
  4533. <productMenu id="userGuide"
  4534. type="1"
  4535. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4536. size="2.34MB" >
  4537. </productMenu>
  4538. <productID id="5580"
  4539. />
  4540. <productGroupable type="0"
  4541. />
  4542. </product>
  4543. <product id="10C"
  4544. name="10C"
  4545. series="10"
  4546. latestVersion="3.0.4"
  4547. show = "1" >
  4548. <productMenu id="protocol"
  4549. type="0">
  4550. </productMenu>
  4551. <productMenu id="sip"
  4552. type="1" >
  4553. <productMenuType version="1.0.4"
  4554. type="0"
  4555. />
  4556. </productMenu>
  4557. <productMenu id="bluetoothIntercom"
  4558. type="1" >
  4559. <productMenuType version="1.0.4"
  4560. type="0"
  4561. />
  4562. </productMenu>
  4563. <productMenu id="phone"
  4564. type="2" >
  4565. </productMenu>
  4566. <productMenu id="fmradio"
  4567. type="3" >
  4568. </productMenu>
  4569. <productMenu id="deviceSetting"
  4570. type="1"
  4571. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  4572. <productMenuURL version="2.3"
  4573. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  4574. />
  4575. <productMenuURL version="2.1.1"
  4576. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  4577. />
  4578. <productMenuURL version="1.0.4"
  4579. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  4580. />
  4581. <productMenuURL version="1.0.2"
  4582. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  4583. />
  4584. </productMenu>
  4585. <productMenu id="quickGuide"
  4586. type="1"
  4587. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  4588. size="935KB" >
  4589. </productMenu>
  4590. <productMenu id="userGuide"
  4591. type="1"
  4592. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  4593. size="2.82MB" >
  4594. </productMenu>
  4595. <productID id="5510"
  4596. />
  4597. <productGroupable type="0"
  4598. />
  4599. </product>
  4600. <product id="10U_GT_AIR"
  4601. name="10U GT-Air"
  4602. series="10"
  4603. latestVersion="2.0.4"
  4604. show = "1" >
  4605. <productMenu id="protocol"
  4606. type="0">
  4607. </productMenu>
  4608. <productMenu id="sip"
  4609. type="1" >
  4610. <productMenuType version="1.0.2"
  4611. type="0"
  4612. />
  4613. </productMenu>
  4614. <productMenu id="bluetoothIntercom"
  4615. type="1" >
  4616. <productMenuType version="1.0.2"
  4617. type="0"
  4618. />
  4619. </productMenu>
  4620. <productMenu id="phone"
  4621. type="2" >
  4622. </productMenu>
  4623. <productMenu id="fmradio"
  4624. type="3" >
  4625. </productMenu>
  4626. <productMenu id="deviceSetting"
  4627. type="1"
  4628. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4629. <productMenuURL version="1.3.2"
  4630. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4631. />
  4632. <productMenuURL version="1.0.2"
  4633. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4634. />
  4635. </productMenu>
  4636. <productMenu id="quickGuide"
  4637. type="1"
  4638. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4639. size="685KB" >
  4640. </productMenu>
  4641. <productMenu id="userGuide"
  4642. type="1"
  4643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4644. size="684KB" >
  4645. </productMenu>
  4646. <productID id="5610"
  4647. />
  4648. <productGroupable type="0"
  4649. />
  4650. </product>
  4651. <product id="10U_NEOTEC"
  4652. name="10U Neotec"
  4653. series="10"
  4654. latestVersion="2.0.4"
  4655. show = "1" >
  4656. <productMenu id="protocol"
  4657. type="0">
  4658. </productMenu>
  4659. <productMenu id="sip"
  4660. type="1" >
  4661. <productMenuType version="1.0.2"
  4662. type="0"
  4663. />
  4664. </productMenu>
  4665. <productMenu id="bluetoothIntercom"
  4666. type="1" >
  4667. <productMenuType version="1.0.2"
  4668. type="0"
  4669. />
  4670. </productMenu>
  4671. <productMenu id="phone"
  4672. type="2" >
  4673. </productMenu>
  4674. <productMenu id="fmradio"
  4675. type="3" >
  4676. </productMenu>
  4677. <productMenu id="deviceSetting"
  4678. type="1"
  4679. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4680. <productMenuURL version="1.3.2"
  4681. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4682. />
  4683. <productMenuURL version="1.0.2"
  4684. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4685. />
  4686. </productMenu>
  4687. <productMenu id="quickGuide"
  4688. type="1"
  4689. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4690. size="689KB" >
  4691. </productMenu>
  4692. <productMenu id="userGuide"
  4693. type="1"
  4694. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4695. size="684KB" >
  4696. </productMenu>
  4697. <productID id="5611"
  4698. />
  4699. <productGroupable type="0"
  4700. />
  4701. </product>
  4702. <product id="10U_J_CRUISE"
  4703. name="10U J-Cruise"
  4704. series="10"
  4705. latestVersion="2.0.4"
  4706. show = "1" >
  4707. <productMenu id="protocol"
  4708. type="0">
  4709. </productMenu>
  4710. <productMenu id="sip"
  4711. type="1" >
  4712. <productMenuType version="1.0.2"
  4713. type="0"
  4714. />
  4715. </productMenu>
  4716. <productMenu id="bluetoothIntercom"
  4717. type="1" >
  4718. <productMenuType version="1.0.2"
  4719. type="0"
  4720. />
  4721. </productMenu>
  4722. <productMenu id="phone"
  4723. type="2" >
  4724. </productMenu>
  4725. <productMenu id="fmradio"
  4726. type="3" >
  4727. </productMenu>
  4728. <productMenu id="deviceSetting"
  4729. type="1"
  4730. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4731. <productMenuURL version="1.3.2"
  4732. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4733. />
  4734. <productMenuURL version="1.0.2"
  4735. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4736. />
  4737. </productMenu>
  4738. <productMenu id="quickGuide"
  4739. type="1"
  4740. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4741. size="686KB" >
  4742. </productMenu>
  4743. <productMenu id="userGuide"
  4744. type="1"
  4745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4746. size="684KB" >
  4747. </productMenu>
  4748. <productID id="5612"
  4749. />
  4750. <productGroupable type="0"
  4751. />
  4752. </product>
  4753. <product id="10U_C3"
  4754. name="10U C3/C3Pro"
  4755. series="10"
  4756. latestVersion="2.0.4"
  4757. show = "1" >
  4758. <productMenu id="protocol"
  4759. type="0">
  4760. </productMenu>
  4761. <productMenu id="sip"
  4762. type="1" >
  4763. <productMenuType version="1.0.2"
  4764. type="0"
  4765. />
  4766. </productMenu>
  4767. <productMenu id="bluetoothIntercom"
  4768. type="1" >
  4769. <productMenuType version="1.0.2"
  4770. type="0"
  4771. />
  4772. </productMenu>
  4773. <productMenu id="phone"
  4774. type="2" >
  4775. </productMenu>
  4776. <productMenu id="fmradio"
  4777. type="3" >
  4778. </productMenu>
  4779. <productMenu id="deviceSetting"
  4780. type="1"
  4781. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4782. <productMenuURL version="1.3.2"
  4783. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4784. />
  4785. <productMenuURL version="1.0.2"
  4786. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4787. />
  4788. </productMenu>
  4789. <productMenu id="quickGuide"
  4790. type="1"
  4791. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4792. size="199KB" >
  4793. </productMenu>
  4794. <productMenu id="userGuide"
  4795. type="1"
  4796. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4797. size="684KB" >
  4798. </productMenu>
  4799. <productID id="5620"
  4800. />
  4801. <productGroupable type="0"
  4802. />
  4803. </product>
  4804. <product id="10U_ARAI"
  4805. name="10U Arai"
  4806. series="10"
  4807. latestVersion="2.0.4"
  4808. show = "1" >
  4809. <productMenu id="protocol"
  4810. type="0">
  4811. </productMenu>
  4812. <productMenu id="sip"
  4813. type="1" >
  4814. <productMenuType version="1.0.2"
  4815. type="0"
  4816. />
  4817. </productMenu>
  4818. <productMenu id="bluetoothIntercom"
  4819. type="1" >
  4820. <productMenuType version="1.0.2"
  4821. type="0"
  4822. />
  4823. </productMenu>
  4824. <productMenu id="phone"
  4825. type="2" >
  4826. </productMenu>
  4827. <productMenu id="fmradio"
  4828. type="3" >
  4829. </productMenu>
  4830. <productMenu id="deviceSetting"
  4831. type="1"
  4832. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4833. <productMenuURL version="1.3.2"
  4834. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4835. />
  4836. <productMenuURL version="1.0.2"
  4837. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4838. />
  4839. </productMenu>
  4840. <productMenu id="quickGuide"
  4841. type="1"
  4842. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  4843. size="689KB" >
  4844. </productMenu>
  4845. <productMenu id="userGuide"
  4846. type="1"
  4847. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4848. size="684KB" >
  4849. </productMenu>
  4850. <productID id="5621"
  4851. />
  4852. <productGroupable type="0"
  4853. />
  4854. </product>
  4855. <product id="10Upad"
  4856. name="10Upad"
  4857. series="10"
  4858. latestVersion="2.0.3"
  4859. show = "1" >
  4860. <productMenu id="protocol"
  4861. type="0">
  4862. </productMenu>
  4863. <productMenu id="sip"
  4864. type="1" >
  4865. </productMenu>
  4866. <productMenu id="bluetoothIntercom"
  4867. type="1" >
  4868. </productMenu>
  4869. <productMenu id="phone"
  4870. type="2" >
  4871. </productMenu>
  4872. <productMenu id="fmradio"
  4873. type="3" >
  4874. </productMenu>
  4875. <productMenu id="deviceSetting"
  4876. type="1"
  4877. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  4878. <productMenuURL version="1.0.3"
  4879. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4880. />
  4881. </productMenu>
  4882. <productMenu id="quickGuide"
  4883. type="1"
  4884. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4885. size="615KB" >
  4886. </productMenu>
  4887. <productMenu id="userGuide"
  4888. type="1"
  4889. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4890. size="0.99MB" >
  4891. </productMenu>
  4892. <productID id="6210"
  4893. />
  4894. <productGroupable type="0"
  4895. />
  4896. </product>
  4897. <product id="5S"
  4898. name="5S"
  4899. series="5"
  4900. latestVersion="2.2.1"
  4901. show = "1" >
  4902. <productMenu id="protocol"
  4903. type="3" >
  4904. </productMenu>
  4905. <productMenu id="sip"
  4906. type="1" >
  4907. </productMenu>
  4908. <productMenu id="bluetoothIntercom"
  4909. type="1" >
  4910. </productMenu>
  4911. <productMenu id="phone"
  4912. type="1" >
  4913. </productMenu>
  4914. <productMenu id="fmradio"
  4915. type="0" >
  4916. </productMenu>
  4917. <productMenu id="deviceSetting"
  4918. type="1"
  4919. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4920. </productMenu>
  4921. <productMenu id="quickGuide"
  4922. type="1"
  4923. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4924. size="934KB" >
  4925. </productMenu>
  4926. <productMenu id="userGuide"
  4927. type="1"
  4928. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_2.2.0_en_230703.pdf"
  4929. size="1.14MB" >
  4930. </productMenu>
  4931. <productID id="5590"
  4932. />
  4933. <productGroupable type="0"
  4934. />
  4935. </product>
  4936. <product id="5S"
  4937. name="5S"
  4938. series="5"
  4939. latestVersion="1.2"
  4940. show = "0" >
  4941. <productMenu id="protocol"
  4942. type="0">
  4943. </productMenu>
  4944. <productMenu id="sip"
  4945. type="1" >
  4946. </productMenu>
  4947. <productMenu id="bluetoothIntercom"
  4948. type="1" >
  4949. </productMenu>
  4950. <productMenu id="phone"
  4951. type="2" >
  4952. </productMenu>
  4953. <productMenu id="fmradio"
  4954. type="0" >
  4955. </productMenu>
  4956. <productMenu id="deviceSetting"
  4957. type="1"
  4958. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  4959. </productMenu>
  4960. <productMenu id="quickGuide"
  4961. type="1"
  4962. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4963. size="970KB" >
  4964. </productMenu>
  4965. <productMenu id="userGuide"
  4966. type="1"
  4967. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_1.2.0_en_230703.pdf"
  4968. size="1.26MB" >
  4969. </productMenu>
  4970. <productID id="5534"
  4971. />
  4972. <productGroupable type="0"
  4973. />
  4974. </product>
  4975. <product id="5S"
  4976. name="5S"
  4977. series="5"
  4978. latestVersion="3.0.1"
  4979. show = "0" >
  4980. <productMenu id="protocol"
  4981. type="0">
  4982. </productMenu>
  4983. <productMenu id="sip"
  4984. type="1" >
  4985. </productMenu>
  4986. <productMenu id="bluetoothIntercom"
  4987. type="1" >
  4988. </productMenu>
  4989. <productMenu id="phone"
  4990. type="2" >
  4991. </productMenu>
  4992. <productMenu id="fmradio"
  4993. type="0" >
  4994. </productMenu>
  4995. <productMenu id="deviceSetting"
  4996. type="1"
  4997. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  4998. </productMenu>
  4999. <productMenu id="quickGuide"
  5000. type="1"
  5001. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  5002. size="970KB" >
  5003. </productMenu>
  5004. <productMenu id="userGuide"
  5005. type="1"
  5006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_3.0.0_en_230703.pdf"
  5007. size="1.26MB" >
  5008. </productMenu>
  5009. <productID id="5538"
  5010. />
  5011. <productGroupable type="0"
  5012. />
  5013. </product>
  5014. <product id="3SPLUS"
  5015. name="3S PLUS"
  5016. series="3"
  5017. latestVersion="2.2"
  5018. show = "0" >
  5019. <productMenu id="protocol"
  5020. type="3" >
  5021. </productMenu>
  5022. <productMenu id="sip"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="bluetoothIntercom"
  5026. type="1" >
  5027. </productMenu>
  5028. <productMenu id="deviceSetting"
  5029. type="1"
  5030. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5031. <productMenuURL version="2.2.1"
  5032. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5033. />
  5034. </productMenu>
  5035. <productMenu id="quickGuide"
  5036. type="1"
  5037. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5038. size="344KB" >
  5039. </productMenu>
  5040. <productMenu id="userGuide"
  5041. type="1"
  5042. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5043. size="1.14MB" >
  5044. </productMenu>
  5045. <productID id="4023"
  5046. />
  5047. <productGroupable type="0"
  5048. />
  5049. </product>
  5050. <product id="3SPLUS"
  5051. name="3S PLUS"
  5052. series="3"
  5053. latestVersion="1.1"
  5054. show = "1" >
  5055. <productMenu id="protocol"
  5056. type="0">
  5057. </productMenu>
  5058. <productMenu id="sip"
  5059. type="1" >
  5060. </productMenu>
  5061. <productMenu id="bluetoothIntercom"
  5062. type="1" >
  5063. </productMenu>
  5064. <productMenu id="deviceSetting"
  5065. type="1"
  5066. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5067. </productMenu>
  5068. <productMenu id="quickGuide"
  5069. type="1"
  5070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5071. size="842KB" >
  5072. </productMenu>
  5073. <productMenu id="userGuide"
  5074. type="1"
  5075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5076. size="1.02MB" >
  5077. </productMenu>
  5078. <productID id="6320"
  5079. />
  5080. <productGroupable type="0"
  5081. />
  5082. </product>
  5083. <product id="iCon"
  5084. name="iCon"
  5085. series="50"
  5086. latestVersion="1.0.1"
  5087. show = "0" >
  5088. <productMenu id="protocol"
  5089. type="2" >
  5090. </productMenu>
  5091. <productMenu id="alexa"
  5092. type="0" >
  5093. </productMenu>
  5094. <productMenu id="wa"
  5095. type="0" >
  5096. </productMenu>
  5097. <productMenu id="sip"
  5098. type="1" >
  5099. </productMenu>
  5100. <productMenu id="led"
  5101. type="3" >
  5102. </productMenu>
  5103. <productMenu id="meshIntercom"
  5104. type="20" >
  5105. </productMenu>
  5106. <productMenu id="meshIntercom+"
  5107. type="3"
  5108. url="0" >
  5109. <productMenuType version="1.0.9"
  5110. type="2"
  5111. />
  5112. </productMenu>
  5113. <productMenu id="bluetoothIntercom"
  5114. type="1" >
  5115. </productMenu>
  5116. <productMenu id="phone"
  5117. type="1" >
  5118. </productMenu>
  5119. <productMenu id="music"
  5120. type="1" >
  5121. </productMenu>
  5122. <productMenu id="fmradio"
  5123. type="1" >
  5124. </productMenu>
  5125. <productMenu id="deviceSetting"
  5126. type="1"
  5127. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5128. <productMenuURL version="1.0.9"
  5129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5130. />
  5131. </productMenu>
  5132. <productMenu id="quickGuide"
  5133. type="1"
  5134. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5135. size="344KB" >
  5136. </productMenu>
  5137. <productMenu id="userGuide"
  5138. type="1"
  5139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  5140. size="3.41MB" >
  5141. </productMenu>
  5142. <productMenu id="volume"
  5143. type="11" >
  5144. </productMenu>
  5145. <productMenu id="battery"
  5146. type="1" >
  5147. </productMenu>
  5148. <productID id="3900"
  5149. />
  5150. <productGroupable type="0"
  5151. />
  5152. </product>
  5153. <product id="HD50S"
  5154. name="H-D Audio 50S"
  5155. series="50"
  5156. latestVersion="1.0.1"
  5157. show = "0" >
  5158. <productMenu id="protocol"
  5159. type="2" >
  5160. </productMenu>
  5161. <productMenu id="alexa"
  5162. type="0" >
  5163. </productMenu>
  5164. <productMenu id="ota"
  5165. type="0"
  5166. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5167. size="1150234" >
  5168. </productMenu>
  5169. <productMenu id="wa"
  5170. type="1" >
  5171. </productMenu>
  5172. <productMenu id="sip"
  5173. type="1" >
  5174. </productMenu>
  5175. <productMenu id="meshIntercom"
  5176. type="20" >
  5177. </productMenu>
  5178. <productMenu id="bluetoothIntercom"
  5179. type="1" >
  5180. </productMenu>
  5181. <productMenu id="phone"
  5182. type="1" >
  5183. </productMenu>
  5184. <productMenu id="music"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="fmradio"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="deviceSetting"
  5191. type="1"
  5192. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5193. </productMenu>
  5194. <productMenu id="quickGuide"
  5195. type="1"
  5196. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5197. size="934KB" >
  5198. </productMenu>
  5199. <productMenu id="userGuide"
  5200. type="1"
  5201. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5202. size="1.14MB" >
  5203. </productMenu>
  5204. <productMenu id="volume"
  5205. type="11" >
  5206. </productMenu>
  5207. <productMenu id="battery"
  5208. type="1" >
  5209. </productMenu>
  5210. <productID id="3156"
  5211. />
  5212. <productGroupable type="0"
  5213. />
  5214. </product>
  5215. <product id="HD50S"
  5216. name="H-D Audio 50S"
  5217. series="50"
  5218. latestVersion="2.0.2"
  5219. show = "0" >
  5220. <productMenu id="protocol"
  5221. type="2" >
  5222. </productMenu>
  5223. <productMenu id="alexa"
  5224. type="0" >
  5225. </productMenu>
  5226. <productMenu id="ota"
  5227. type="0"
  5228. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5229. size="1150234" >
  5230. </productMenu>
  5231. <productMenu id="wa"
  5232. type="1" >
  5233. </productMenu>
  5234. <productMenu id="sip"
  5235. type="1" >
  5236. </productMenu>
  5237. <productMenu id="meshIntercom"
  5238. type="20" >
  5239. </productMenu>
  5240. <productMenu id="bluetoothIntercom"
  5241. type="1" >
  5242. </productMenu>
  5243. <productMenu id="phone"
  5244. type="1" >
  5245. </productMenu>
  5246. <productMenu id="music"
  5247. type="1" >
  5248. </productMenu>
  5249. <productMenu id="fmradio"
  5250. type="1" >
  5251. </productMenu>
  5252. <productMenu id="deviceSetting"
  5253. type="1"
  5254. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5255. </productMenu>
  5256. <productMenu id="quickGuide"
  5257. type="1"
  5258. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5259. size="934KB" >
  5260. </productMenu>
  5261. <productMenu id="userGuide"
  5262. type="1"
  5263. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5264. size="1.14MB" >
  5265. </productMenu>
  5266. <productMenu id="volume"
  5267. type="11" >
  5268. </productMenu>
  5269. <productMenu id="battery"
  5270. type="1" >
  5271. </productMenu>
  5272. <productID id="3213"
  5273. />
  5274. <productGroupable type="0"
  5275. />
  5276. </product>
  5277. <product id="HD50C"
  5278. name="H-D Audio 50C"
  5279. series="50"
  5280. latestVersion="1.0.1"
  5281. show = "0" >
  5282. <productMenu id="protocol"
  5283. type="2" >
  5284. </productMenu>
  5285. <productMenu id="ota"
  5286. type="0" >
  5287. </productMenu>
  5288. <productMenu id="wa"
  5289. type="1" >
  5290. </productMenu>
  5291. <productMenu id="sip"
  5292. type="1" >
  5293. </productMenu>
  5294. <productMenu id="meshIntercom"
  5295. type="20" >
  5296. </productMenu>
  5297. <productMenu id="bluetoothIntercom"
  5298. type="1" >
  5299. </productMenu>
  5300. <productMenu id="phone"
  5301. type="1" >
  5302. </productMenu>
  5303. <productMenu id="music"
  5304. type="1" >
  5305. </productMenu>
  5306. <productMenu id="fmradio"
  5307. type="1" >
  5308. </productMenu>
  5309. <productMenu id="deviceSetting"
  5310. type="1"
  5311. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5312. </productMenu>
  5313. <productMenu id="quickGuide"
  5314. type="1"
  5315. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5316. size="344KB" >
  5317. </productMenu>
  5318. <productMenu id="userGuide"
  5319. type="1"
  5320. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5321. size="3.41MB" >
  5322. </productMenu>
  5323. <productMenu id="volume"
  5324. type="11" >
  5325. </productMenu>
  5326. <productMenu id="battery"
  5327. type="1" >
  5328. </productMenu>
  5329. <productID id="3240"
  5330. />
  5331. <productGroupable type="0"
  5332. />
  5333. </product>
  5334. <product id="HD50S"
  5335. name="FURY N04"
  5336. series="Helmet"
  5337. latestVersion="1.0"
  5338. show = "0" >
  5339. <productMenu id="protocol"
  5340. type="2" >
  5341. </productMenu>
  5342. <productMenu id="alexa"
  5343. type="0" >
  5344. </productMenu>
  5345. <productMenu id="ota"
  5346. type="0" >
  5347. </productMenu>
  5348. <productMenu id="wa"
  5349. type="0" >
  5350. </productMenu>
  5351. <productMenu id="meshIntercom"
  5352. type="20" >
  5353. </productMenu>
  5354. <productMenu id="meshIntercom+"
  5355. type="3"
  5356. url="0" >
  5357. <productMenuType version="1.0.9"
  5358. type="2"
  5359. />
  5360. </productMenu>
  5361. <productMenu id="phone"
  5362. type="1" >
  5363. </productMenu>
  5364. <productMenu id="music"
  5365. type="1" >
  5366. </productMenu>
  5367. <productMenu id="fmradio"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="deviceSetting"
  5371. type="1"
  5372. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  5373. <productMenuURL version="1.0.9"
  5374. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  5375. />
  5376. </productMenu>
  5377. <productMenu id="quickGuide"
  5378. type="1"
  5379. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  5380. size="1.12MB" >
  5381. </productMenu>
  5382. <productMenu id="userGuide"
  5383. type="1"
  5384. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  5385. size="2.0MB" >
  5386. </productMenu>
  5387. <productMenu id="volume"
  5388. type="13" >
  5389. </productMenu>
  5390. <productMenu id="battery"
  5391. type="1" >
  5392. </productMenu>
  5393. <productID id="5553"
  5394. />
  5395. <productGroupable type="0"
  5396. />
  5397. </product>
  5398. <product id="XCOM3Pro"
  5399. name="X-COM3 Pro"
  5400. series="50"
  5401. latestVersion="1.1"
  5402. show = "0" >
  5403. <productMenu id="protocol"
  5404. type="2" >
  5405. </productMenu>
  5406. <productMenu id="alexa"
  5407. type="0" >
  5408. </productMenu>
  5409. <productMenu id="ota"
  5410. type="0" >
  5411. </productMenu>
  5412. <productMenu id="wa"
  5413. type="0" >
  5414. </productMenu>
  5415. <productMenu id="sip"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="meshIntercom"
  5419. type="30" >
  5420. </productMenu>
  5421. <productMenu id="meshIntercom+"
  5422. type="3"
  5423. url="2" >
  5424. <productMenuType version="1.1"
  5425. type="2"
  5426. />
  5427. </productMenu>
  5428. <productMenu id="waveIntercom"
  5429. type="1" >
  5430. <productMenuType version="1.1"
  5431. type="0"
  5432. />
  5433. </productMenu>
  5434. <productMenu id="bluetoothIntercom"
  5435. type="1" >
  5436. </productMenu>
  5437. <productMenu id="phone"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="music"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="fmradio"
  5444. type="1" >
  5445. </productMenu>
  5446. <productMenu id="deviceSetting"
  5447. type="1"
  5448. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_05.xml" >
  5449. <productMenuURL version="1.1"
  5450. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  5451. />
  5452. </productMenu>
  5453. <productMenu id="quickGuide"
  5454. type="0"
  5455. url=""
  5456. size="344KB" >
  5457. </productMenu>
  5458. <productMenu id="userGuide"
  5459. type="1"
  5460. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  5461. size="3.41MB" >
  5462. </productMenu>
  5463. <productMenu id="volume"
  5464. type="11" >
  5465. </productMenu>
  5466. <productMenu id="battery"
  5467. type="1" >
  5468. </productMenu>
  5469. <productID id="321A"
  5470. />
  5471. <productGroupable type="0"
  5472. />
  5473. </product>
  5474. <product id="XCOM3"
  5475. name="X-COM3"
  5476. series="20"
  5477. latestVersion="1.0"
  5478. show = "0" >
  5479. <productMenu id="protocol"
  5480. type="2" >
  5481. </productMenu>
  5482. <productMenu id="sip"
  5483. type="1" >
  5484. </productMenu>
  5485. <productMenu id="bluetoothIntercom"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="phone"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="music"
  5492. type="1" >
  5493. </productMenu>
  5494. <productMenu id="fmradio"
  5495. type="1" >
  5496. </productMenu>
  5497. <productMenu id="deviceSetting"
  5498. type="1"
  5499. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  5500. </productMenu>
  5501. <productMenu id="quickGuide"
  5502. type="0"
  5503. url=""
  5504. size="934KB" >
  5505. </productMenu>
  5506. <productMenu id="userGuide"
  5507. type="1"
  5508. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  5509. size="1.14MB" >
  5510. </productMenu>
  5511. <productMenu id="volume"
  5512. type="15" >
  5513. </productMenu>
  5514. <productID id="3410"
  5515. />
  5516. <productGroupable type="0"
  5517. />
  5518. </product>
  5519. <product id="X-COM2"
  5520. name="X-COM2"
  5521. series="20"
  5522. latestVersion="1.0.5"
  5523. show = "0" >
  5524. <productMenu id="protocol"
  5525. type="0">
  5526. </productMenu>
  5527. <productMenu id="sip"
  5528. type="1" >
  5529. </productMenu>
  5530. <productMenu id="bluetoothIntercom"
  5531. type="1" >
  5532. </productMenu>
  5533. <productMenu id="intercomSetting"
  5534. type="1" >
  5535. </productMenu>
  5536. <productMenu id="phone"
  5537. type="2" >
  5538. </productMenu>
  5539. <productMenu id="fmradio"
  5540. type="3" >
  5541. </productMenu>
  5542. <productMenu id="deviceSetting"
  5543. type="1"
  5544. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5545. </productMenu>
  5546. <productMenu id="quickGuide"
  5547. type="1"
  5548. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  5549. size="796KB" >
  5550. </productMenu>
  5551. <productMenu id="userGuide"
  5552. type="1"
  5553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  5554. size="1.90MB" >
  5555. </productMenu>
  5556. <productID id="2030"
  5557. />
  5558. <productGroupable type="1"
  5559. />
  5560. </product>
  5561. <product id="AVAABC"
  5562. name="AVA ABC"
  5563. series="SPIDER"
  5564. latestVersion="1.0"
  5565. show = "0" >
  5566. <productMenu id="protocol"
  5567. type="2" >
  5568. </productMenu>
  5569. <productMenu id="alexa"
  5570. type="0" >
  5571. </productMenu>
  5572. <productMenu id="ota"
  5573. type="0" >
  5574. </productMenu>
  5575. <productMenu id="wa"
  5576. type="0" >
  5577. </productMenu>
  5578. <productMenu id="meshIntercom"
  5579. type="20" >
  5580. </productMenu>
  5581. <productMenu id="phone"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="music"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="musicSharing"
  5588. type="0" >
  5589. </productMenu>
  5590. <productMenu id="deviceSetting"
  5591. type="1"
  5592. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  5593. </productMenu>
  5594. <productMenu id="quickGuide"
  5595. type="1"
  5596. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  5597. size="1.12MB" >
  5598. </productMenu>
  5599. <productMenu id="userGuide"
  5600. type="1"
  5601. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  5602. size="2.0MB" >
  5603. </productMenu>
  5604. <productMenu id="volume"
  5605. type="12" >
  5606. </productMenu>
  5607. <productMenu id="battery"
  5608. type="1" >
  5609. </productMenu>
  5610. <productID id="6808"
  5611. />
  5612. <productGroupable type="0"
  5613. />
  5614. </product>
  5615. <product id="Triumph_50S"
  5616. name="Triumph 50S"
  5617. series="50"
  5618. latestVersion="1.2.2"
  5619. show = "0" >
  5620. <productMenu id="protocol"
  5621. type="2" >
  5622. </productMenu>
  5623. <productMenu id="alexa"
  5624. type="0" >
  5625. </productMenu>
  5626. <productMenu id="ota"
  5627. type="0"
  5628. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5629. size="1150234" >
  5630. </productMenu>
  5631. <productMenu id="wa"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="sip"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="meshIntercom"
  5638. type="20" >
  5639. </productMenu>
  5640. <productMenu id="bluetoothIntercom"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="meshIntercom+"
  5644. type="3"
  5645. url="2" >
  5646. <productMenuType version="1.2.9"
  5647. type="2"
  5648. />
  5649. <productMenuURL version="1.2.9"
  5650. url="0"
  5651. />
  5652. </productMenu>
  5653. <productMenu id="waveIntercom"
  5654. type="1" >
  5655. <productMenuType version="1.2.9"
  5656. type="0"
  5657. />
  5658. </productMenu>
  5659. <productMenu id="phone"
  5660. type="1" >
  5661. </productMenu>
  5662. <productMenu id="music"
  5663. type="1" >
  5664. </productMenu>
  5665. <productMenu id="fmradio"
  5666. type="1" >
  5667. </productMenu>
  5668. <productMenu id="deviceSetting"
  5669. type="1"
  5670. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5671. <productMenuURL version="1.2.9"
  5672. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5673. />
  5674. <productMenuURL version="1.0"
  5675. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5676. />
  5677. </productMenu>
  5678. <productMenu id="quickGuide"
  5679. type="1"
  5680. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  5681. size="934KB" >
  5682. </productMenu>
  5683. <productMenu id="userGuide"
  5684. type="1"
  5685. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  5686. size="1.14MB" >
  5687. </productMenu>
  5688. <productMenu id="volume"
  5689. type="11" >
  5690. </productMenu>
  5691. <productMenu id="battery"
  5692. type="1" >
  5693. </productMenu>
  5694. <productID id="3264"
  5695. />
  5696. <productGroupable type="0"
  5697. />
  5698. </product>
  5699. <product id="RE50S"
  5700. name="RE 50S"
  5701. series="50"
  5702. latestVersion="2.7"
  5703. show = "0" >
  5704. <productMenu id="protocol"
  5705. type="2" >
  5706. </productMenu>
  5707. <productMenu id="alexa"
  5708. type="0" >
  5709. </productMenu>
  5710. <productMenu id="ota"
  5711. type="0"
  5712. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5713. size="1150234" >
  5714. </productMenu>
  5715. <productMenu id="wa"
  5716. type="1" >
  5717. </productMenu>
  5718. <productMenu id="sip"
  5719. type="1" >
  5720. </productMenu>
  5721. <productMenu id="meshIntercom"
  5722. type="30" >
  5723. </productMenu>
  5724. <productMenu id="meshIntercom+"
  5725. type="3"
  5726. url="2" >
  5727. <productMenuType version="2.5"
  5728. type="2"
  5729. />
  5730. </productMenu>
  5731. <productMenu id="waveIntercom"
  5732. type="1" >
  5733. <productMenuType version="2.5"
  5734. type="0"
  5735. />
  5736. </productMenu>
  5737. <productMenu id="bluetoothIntercom"
  5738. type="1" >
  5739. </productMenu>
  5740. <productMenu id="phone"
  5741. type="1" >
  5742. </productMenu>
  5743. <productMenu id="music"
  5744. type="1" >
  5745. </productMenu>
  5746. <productMenu id="fmradio"
  5747. type="1" >
  5748. </productMenu>
  5749. <productMenu id="deviceSetting"
  5750. type="1"
  5751. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5752. <productMenuURL version="2.5"
  5753. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  5754. />
  5755. </productMenu>
  5756. <productMenu id="quickGuide"
  5757. type="1"
  5758. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  5759. size="934KB" >
  5760. </productMenu>
  5761. <productMenu id="userGuide"
  5762. type="1"
  5763. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.5.0_en_240625.pdf"
  5764. size="1.14MB" >
  5765. </productMenu>
  5766. <productMenu id="videoGuide"
  5767. type="0"
  5768. url=""
  5769. size="3.41MB" >
  5770. </productMenu>
  5771. <productMenu id="volume"
  5772. type="11" >
  5773. </productMenu>
  5774. <productMenu id="battery"
  5775. type="1" >
  5776. </productMenu>
  5777. <productID id="321C"
  5778. />
  5779. <productGroupable type="0"
  5780. />
  5781. </product>
  5782. <product id="BMW_HELMET_II_U1"
  5783. name="BMW HELMET II U1"
  5784. series="50"
  5785. latestVersion="1.0"
  5786. show = "0" >
  5787. <productMenu id="protocol"
  5788. type="2" >
  5789. </productMenu>
  5790. <productMenu id="alexa"
  5791. type="0" >
  5792. </productMenu>
  5793. <productMenu id="sip"
  5794. type="1" >
  5795. </productMenu>
  5796. <productMenu id="meshIntercom"
  5797. type="20" >
  5798. </productMenu>
  5799. <productMenu id="bluetoothIntercom"
  5800. type="1" >
  5801. </productMenu>
  5802. <productMenu id="bluetoothIntercom2"
  5803. type="1" >
  5804. </productMenu>
  5805. <productMenu id="phone"
  5806. type="1" >
  5807. </productMenu>
  5808. <productMenu id="music"
  5809. type="1" >
  5810. </productMenu>
  5811. <productMenu id="fmradio"
  5812. type="1" >
  5813. </productMenu>
  5814. <productMenu id="deviceSetting"
  5815. type="1"
  5816. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  5817. </productMenu>
  5818. <productMenu id="quickGuide"
  5819. type="1"
  5820. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  5821. size="934KB" >
  5822. </productMenu>
  5823. <productMenu id="userGuide"
  5824. type="1"
  5825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  5826. size="1.14MB" >
  5827. </productMenu>
  5828. <productMenu id="volume"
  5829. type="11" >
  5830. </productMenu>
  5831. <productMenu id="battery"
  5832. type="1" >
  5833. </productMenu>
  5834. <productID id="3260"
  5835. />
  5836. <productGroupable type="0"
  5837. />
  5838. </product>
  5839. <product id="LSE_01"
  5840. name="LSE-01"
  5841. series="SF"
  5842. latestVersion="1.2.3"
  5843. show = "0" >
  5844. <productMenu id="protocol"
  5845. type="1"
  5846. url="3">
  5847. </productMenu>
  5848. <productMenu id="sip"
  5849. type="1" >
  5850. </productMenu>
  5851. <productMenu id="bluetoothIntercom"
  5852. type="1" >
  5853. </productMenu>
  5854. <productMenu id="phone"
  5855. type="1" >
  5856. </productMenu>
  5857. <productMenu id="music"
  5858. type="1" >
  5859. </productMenu>
  5860. <productMenu id="fmradio"
  5861. type="1" >
  5862. </productMenu>
  5863. <productMenu id="deviceSetting"
  5864. type="1"
  5865. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5866. <productMenuURL version="1.1"
  5867. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  5868. />
  5869. <productMenuURL version="1.0"
  5870. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  5871. />
  5872. </productMenu>
  5873. <productMenu id="quickGuide"
  5874. type="1"
  5875. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  5876. size="607KB" >
  5877. </productMenu>
  5878. <productMenu id="userGuide"
  5879. type="1"
  5880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  5881. size="1.91MB" >
  5882. </productMenu>
  5883. <productMenu id="volume"
  5884. type="4" >
  5885. </productMenu>
  5886. <productID id="5416"
  5887. />
  5888. <productGroupable type="0"
  5889. />
  5890. </product>
  5891. <product id="AGV_ARK"
  5892. name="AGV ARK"
  5893. series="SF"
  5894. latestVersion="1.0.3"
  5895. show = "0" >
  5896. <productMenu id="protocol"
  5897. type="1"
  5898. url="3">
  5899. </productMenu>
  5900. <productMenu id="sip"
  5901. type="1" >
  5902. </productMenu>
  5903. <productMenu id="bluetoothIntercom"
  5904. type="1" >
  5905. </productMenu>
  5906. <productMenu id="phone"
  5907. type="1" >
  5908. </productMenu>
  5909. <productMenu id="music"
  5910. type="1" >
  5911. </productMenu>
  5912. <productMenu id="fmradio"
  5913. type="1" >
  5914. </productMenu>
  5915. <productMenu id="deviceSetting"
  5916. type="1"
  5917. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5918. </productMenu>
  5919. <productMenu id="quickGuide"
  5920. type="1"
  5921. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  5922. size="607KB" >
  5923. </productMenu>
  5924. <productMenu id="userGuide"
  5925. type="1"
  5926. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  5927. size="1.91MB" >
  5928. </productMenu>
  5929. <productMenu id="volume"
  5930. type="4" >
  5931. </productMenu>
  5932. <productID id="5420"
  5933. />
  5934. <productGroupable type="0"
  5935. />
  5936. </product>
  5937. <product id="KLIM_KRIOS"
  5938. name="KLIM Krios"
  5939. series="10"
  5940. latestVersion="1.1.2"
  5941. show = "0" >
  5942. <productMenu id="protocol"
  5943. type="0">
  5944. </productMenu>
  5945. <productMenu id="sip"
  5946. type="1" >
  5947. </productMenu>
  5948. <productMenu id="bluetoothIntercom"
  5949. type="1" >
  5950. </productMenu>
  5951. <productMenu id="phone"
  5952. type="2" >
  5953. </productMenu>
  5954. <productMenu id="fmradio"
  5955. type="3" >
  5956. </productMenu>
  5957. <productMenu id="deviceSetting"
  5958. type="1"
  5959. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  5960. <productMenuURL version="1.0"
  5961. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  5962. />
  5963. </productMenu>
  5964. <productMenu id="quickGuide"
  5965. type="1"
  5966. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  5967. size="649KB" >
  5968. </productMenu>
  5969. <productMenu id="userGuide"
  5970. type="1"
  5971. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  5972. size="1.43MB" >
  5973. </productMenu>
  5974. <productID id="5910"
  5975. />
  5976. <productGroupable type="0"
  5977. />
  5978. </product>
  5979. <product id="POLARIS_SLINGSHOT"
  5980. name="Polaris Slingshot"
  5981. series="10"
  5982. latestVersion="1.1.2"
  5983. show = "0" >
  5984. <productMenu id="protocol"
  5985. type="0">
  5986. </productMenu>
  5987. <productMenu id="sip"
  5988. type="1" >
  5989. </productMenu>
  5990. <productMenu id="bluetoothIntercom"
  5991. type="1" >
  5992. </productMenu>
  5993. <productMenu id="phone"
  5994. type="2" >
  5995. </productMenu>
  5996. <productMenu id="fmradio"
  5997. type="3" >
  5998. </productMenu>
  5999. <productMenu id="deviceSetting"
  6000. type="1"
  6001. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6002. <productMenuURL version="1.0"
  6003. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6004. />
  6005. </productMenu>
  6006. <productMenu id="quickGuide"
  6007. type="1"
  6008. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6009. size="689KB" >
  6010. </productMenu>
  6011. <productMenu id="userGuide"
  6012. type="1"
  6013. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6014. size="1.43MB" >
  6015. </productMenu>
  6016. <productID id="5920"
  6017. />
  6018. <productGroupable type="0"
  6019. />
  6020. </product>
  6021. <product id="DWO6"
  6022. name="SEDICI DWO6-PRO"
  6023. series="10"
  6024. latestVersion="1.0.2"
  6025. show = "0" >
  6026. <productMenu id="protocol"
  6027. type="0">
  6028. </productMenu>
  6029. <productMenu id="sip"
  6030. type="1" >
  6031. </productMenu>
  6032. <productMenu id="bluetoothIntercom"
  6033. type="1" >
  6034. </productMenu>
  6035. <productMenu id="phone"
  6036. type="2" >
  6037. </productMenu>
  6038. <productMenu id="fmradio"
  6039. type="3" >
  6040. </productMenu>
  6041. <productMenu id="deviceSetting"
  6042. type="1"
  6043. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6044. </productMenu>
  6045. <productMenu id="quickGuide"
  6046. type="1"
  6047. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6048. size="529KB" >
  6049. </productMenu>
  6050. <productMenu id="userGuide"
  6051. type="1"
  6052. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6053. size="4.09MB" >
  6054. </productMenu>
  6055. <productID id="6112"
  6056. />
  6057. <productGroupable type="0"
  6058. />
  6059. </product>
  6060. <product id="DWO6A"
  6061. name="SEDICI DWO-6"
  6062. series="10"
  6063. latestVersion="1.0.2"
  6064. show = "0" >
  6065. <productMenu id="protocol"
  6066. type="0">
  6067. </productMenu>
  6068. <productMenu id="sip"
  6069. type="1" >
  6070. </productMenu>
  6071. <productMenu id="bluetoothIntercom"
  6072. type="1" >
  6073. </productMenu>
  6074. <productMenu id="phone"
  6075. type="2" >
  6076. </productMenu>
  6077. <productMenu id="fmradio"
  6078. type="3" >
  6079. </productMenu>
  6080. <productMenu id="deviceSetting"
  6081. type="1"
  6082. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6083. </productMenu>
  6084. <productMenu id="quickGuide"
  6085. type="1"
  6086. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  6087. size="522KB" >
  6088. </productMenu>
  6089. <productMenu id="userGuide"
  6090. type="1"
  6091. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  6092. size="2.71MB" >
  6093. </productMenu>
  6094. <productID id="6114"
  6095. />
  6096. <productGroupable type="0"
  6097. />
  6098. </product>
  6099. <product id="3SPLUS"
  6100. name="ZILL"
  6101. series="3"
  6102. latestVersion="1.0.4"
  6103. show = "0" >
  6104. <productMenu id="protocol"
  6105. type="0">
  6106. </productMenu>
  6107. <productMenu id="sip"
  6108. type="1" >
  6109. </productMenu>
  6110. <productMenu id="bluetoothIntercom"
  6111. type="1" >
  6112. </productMenu>
  6113. <productMenu id="deviceSetting"
  6114. type="1"
  6115. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6116. </productMenu>
  6117. <productMenu id="quickGuide"
  6118. type="1"
  6119. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6120. size="842KB" >
  6121. </productMenu>
  6122. <productMenu id="userGuide"
  6123. type="1"
  6124. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  6125. size="1.02MB" >
  6126. </productMenu>
  6127. <productID id="6335"
  6128. />
  6129. <productGroupable type="0"
  6130. />
  6131. </product>
  6132. <product id="HD50S"
  6133. name="Boom! Audio 30K"
  6134. series="30"
  6135. latestVersion="3.4"
  6136. show = "0" >
  6137. <productMenu id="protocol"
  6138. type="1"
  6139. url="0">
  6140. </productMenu>
  6141. <productMenu id="wa"
  6142. type="0" >
  6143. </productMenu>
  6144. <productMenu id="sip"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="meshIntercom"
  6148. type="20" >
  6149. <productMenuType version="2.9.9"
  6150. type="10"
  6151. />
  6152. </productMenu>
  6153. <productMenu id="bluetoothIntercom"
  6154. type="1" >
  6155. </productMenu>
  6156. <productMenu id="phone"
  6157. type="1" >
  6158. </productMenu>
  6159. <productMenu id="music"
  6160. type="1" >
  6161. </productMenu>
  6162. <productMenu id="fmradio"
  6163. type="1" >
  6164. </productMenu>
  6165. <productMenu id="deviceSetting"
  6166. type="1"
  6167. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  6168. <productMenuURL version="3.2"
  6169. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  6170. />
  6171. <productMenuURL version="3.0"
  6172. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  6173. />
  6174. <productMenuURL version="2.2"
  6175. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6176. />
  6177. </productMenu>
  6178. <productMenu id="quickGuide"
  6179. type="1"
  6180. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6181. size="1.06MB" >
  6182. </productMenu>
  6183. <productMenu id="userGuide"
  6184. type="1"
  6185. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6186. size="3.15MB" >
  6187. </productMenu>
  6188. <productMenu id="volume"
  6189. type="1" >
  6190. </productMenu>
  6191. <productID id="3112"
  6192. />
  6193. <productGroupable type="0"
  6194. />
  6195. </product>
  6196. <product id="HD50S"
  6197. name="Boom! Audio N02"
  6198. series="30"
  6199. latestVersion="3.1"
  6200. show = "0" >
  6201. <productMenu id="protocol"
  6202. type="1"
  6203. url="0">
  6204. </productMenu>
  6205. <productMenu id="wa"
  6206. type="2" >
  6207. </productMenu>
  6208. <productMenu id="sip"
  6209. type="1" >
  6210. </productMenu>
  6211. <productMenu id="meshIntercom"
  6212. type="20" >
  6213. <productMenuType version="2.9.9"
  6214. type="10"
  6215. />
  6216. </productMenu>
  6217. <productMenu id="bluetoothIntercom"
  6218. type="1" >
  6219. </productMenu>
  6220. <productMenu id="phone"
  6221. type="1" >
  6222. </productMenu>
  6223. <productMenu id="music"
  6224. type="1" >
  6225. </productMenu>
  6226. <productMenu id="fmradio"
  6227. type="1" >
  6228. </productMenu>
  6229. <productMenu id="deviceSetting"
  6230. type="1"
  6231. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  6232. <productMenuURL version="2.2"
  6233. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6234. />
  6235. </productMenu>
  6236. <productMenu id="quickGuide"
  6237. type="1"
  6238. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  6239. size="1.06MB" >
  6240. </productMenu>
  6241. <productMenu id="userGuide"
  6242. type="1"
  6243. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  6244. size="3.15MB" >
  6245. </productMenu>
  6246. <productMenu id="volume"
  6247. type="2" >
  6248. </productMenu>
  6249. <productID id="3114"
  6250. />
  6251. <productGroupable type="0"
  6252. />
  6253. </product>
  6254. <product id="HD50S"
  6255. name="Boom Audio 20S"
  6256. series="50"
  6257. latestVersion="2.5.2"
  6258. show = "0" >
  6259. <productMenu id="protocol"
  6260. type="0">
  6261. </productMenu>
  6262. <productMenu id="sip"
  6263. type="1" >
  6264. <productMenuType version="1.0"
  6265. type="0"
  6266. />
  6267. </productMenu>
  6268. <productMenu id="bluetoothIntercom"
  6269. type="1" >
  6270. <productMenuType version="1.0"
  6271. type="0"
  6272. />
  6273. </productMenu>
  6274. <productMenu id="intercomSetting"
  6275. type="1" >
  6276. </productMenu>
  6277. <productMenu id="phone"
  6278. type="2" >
  6279. </productMenu>
  6280. <productMenu id="fmradio"
  6281. type="3" >
  6282. </productMenu>
  6283. <productMenu id="deviceSetting"
  6284. type="1"
  6285. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6286. <productMenuURL version="2.4"
  6287. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6288. />
  6289. <productMenuURL version="1.5"
  6290. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6291. />
  6292. <productMenuURL version="1.4.1"
  6293. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6294. />
  6295. <productMenuURL version="1.1"
  6296. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6297. />
  6298. <productMenuURL version="1.0"
  6299. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6300. />
  6301. </productMenu>
  6302. <productMenu id="quickGuide"
  6303. type="1"
  6304. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  6305. size="264KB" >
  6306. </productMenu>
  6307. <productMenu id="userGuide"
  6308. type="1"
  6309. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  6310. size="3.09MB" >
  6311. </productMenu>
  6312. <productID id="4210"
  6313. />
  6314. <productProductKey key="11"
  6315. />
  6316. <productID id="4230"
  6317. />
  6318. <productProductKey key="11"
  6319. />
  6320. <productGroupable type="1"
  6321. />
  6322. </product>
  6323. <product id="HD50S"
  6324. name="Boom Audio 20S EVO"
  6325. series="50"
  6326. latestVersion="2.5.2"
  6327. show = "0" >
  6328. <productMenu id="protocol"
  6329. type="0">
  6330. </productMenu>
  6331. <productMenu id="sip"
  6332. type="1" >
  6333. <productMenuType version="1.0"
  6334. type="0"
  6335. />
  6336. </productMenu>
  6337. <productMenu id="bluetoothIntercom"
  6338. type="1" >
  6339. <productMenuType version="1.0"
  6340. type="0"
  6341. />
  6342. </productMenu>
  6343. <productMenu id="intercomSetting"
  6344. type="1" >
  6345. </productMenu>
  6346. <productMenu id="phone"
  6347. type="2" >
  6348. </productMenu>
  6349. <productMenu id="fmradio"
  6350. type="3" >
  6351. </productMenu>
  6352. <productMenu id="deviceSetting"
  6353. type="1"
  6354. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6355. <productMenuURL version="2.4"
  6356. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6357. />
  6358. <productMenuURL version="1.5"
  6359. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6360. />
  6361. <productMenuURL version="1.4.1"
  6362. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6363. />
  6364. <productMenuURL version="1.1"
  6365. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6366. />
  6367. <productMenuURL version="1.0"
  6368. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6369. />
  6370. </productMenu>
  6371. <productMenu id="quickGuide"
  6372. type="1"
  6373. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  6374. size="321KB" >
  6375. </productMenu>
  6376. <productMenu id="userGuide"
  6377. type="1"
  6378. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  6379. size="2.46MB" >
  6380. </productMenu>
  6381. <productID id="4230"
  6382. />
  6383. <productProductKey key="27"
  6384. />
  6385. <productGroupable type="1"
  6386. />
  6387. </product>
  6388. <product id="HD50S"
  6389. name="Boom! Audio 10S"
  6390. series="50"
  6391. latestVersion="1.1.3"
  6392. show = "0" >
  6393. <productMenu id="protocol"
  6394. type="0">
  6395. </productMenu>
  6396. <productMenu id="sip"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="bluetoothIntercom"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="phone"
  6403. type="2" >
  6404. </productMenu>
  6405. <productMenu id="fmradio"
  6406. type="3" >
  6407. </productMenu>
  6408. <productMenu id="deviceSetting"
  6409. type="1"
  6410. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  6411. </productMenu>
  6412. <productMenu id="quickGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  6415. size="538KB" >
  6416. </productMenu>
  6417. <productMenu id="userGuide"
  6418. type="1"
  6419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  6420. size="1.55MB" >
  6421. </productMenu>
  6422. <productID id="5532"
  6423. />
  6424. <productGroupable type="0"
  6425. />
  6426. </product>
  6427. <product id="HD50S"
  6428. name="Boom! Audio N01 10R"
  6429. series="50"
  6430. latestVersion="1.1.3"
  6431. show = "0" >
  6432. <productMenu id="protocol"
  6433. type="0">
  6434. </productMenu>
  6435. <productMenu id="sip"
  6436. type="1" >
  6437. </productMenu>
  6438. <productMenu id="bluetoothIntercom"
  6439. type="1" >
  6440. </productMenu>
  6441. <productMenu id="phone"
  6442. type="2" >
  6443. </productMenu>
  6444. <productMenu id="fmradio"
  6445. type="3" >
  6446. </productMenu>
  6447. <productMenu id="deviceSetting"
  6448. type="1"
  6449. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6450. </productMenu>
  6451. <productMenu id="quickGuide"
  6452. type="1"
  6453. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  6454. size="766KB" >
  6455. </productMenu>
  6456. <productMenu id="userGuide"
  6457. type="1"
  6458. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  6459. size="1.45MB" >
  6460. </productMenu>
  6461. <productID id="5522"
  6462. />
  6463. <productGroupable type="0"
  6464. />
  6465. </product>
  6466. <product id="HD50S"
  6467. name="OUTRUSH-R N03"
  6468. series="50"
  6469. latestVersion="1.2.1"
  6470. show = "0" >
  6471. <productMenu id="protocol"
  6472. type="0">
  6473. </productMenu>
  6474. <productMenu id="sip"
  6475. type="1" >
  6476. </productMenu>
  6477. <productMenu id="bluetoothIntercom"
  6478. type="1" >
  6479. </productMenu>
  6480. <productMenu id="phone"
  6481. type="2" >
  6482. </productMenu>
  6483. <productMenu id="fmradio"
  6484. type="3" >
  6485. </productMenu>
  6486. <productMenu id="deviceSetting"
  6487. type="1"
  6488. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6489. </productMenu>
  6490. <productMenu id="userGuide"
  6491. type="1"
  6492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  6493. size="660KB" >
  6494. </productMenu>
  6495. <productID id="5434"
  6496. />
  6497. <productGroupable type="0"
  6498. />
  6499. </product>
  6500. <product id="HD50S"
  6501. name="OUTRUSH-R N03"
  6502. series="50"
  6503. latestVersion="2.0"
  6504. show = "0" >
  6505. <productMenu id="protocol"
  6506. type="3" >
  6507. </productMenu>
  6508. <productMenu id="sip"
  6509. type="1" >
  6510. </productMenu>
  6511. <productMenu id="bluetoothIntercom"
  6512. type="1" >
  6513. </productMenu>
  6514. <productMenu id="phone"
  6515. type="1" >
  6516. </productMenu>
  6517. <productMenu id="fmradio"
  6518. type="1" >
  6519. </productMenu>
  6520. <productMenu id="deviceSetting"
  6521. type="1"
  6522. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  6523. </productMenu>
  6524. <productMenu id="userGuide"
  6525. type="1"
  6526. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  6527. size="1.14MB" >
  6528. </productMenu>
  6529. <productID id="5441"
  6530. />
  6531. <productGroupable type="0"
  6532. />
  6533. </product>
  6534. <product id="5R"
  6535. name="5R"
  6536. series="5"
  6537. latestVersion="1.0.1"
  6538. show = "1" >
  6539. <productMenu id="protocol"
  6540. type="3" >
  6541. </productMenu>
  6542. <productMenu id="sip"
  6543. type="1" >
  6544. </productMenu>
  6545. <productMenu id="bluetoothIntercom"
  6546. type="1" >
  6547. </productMenu>
  6548. <productMenu id="phone"
  6549. type="1" >
  6550. </productMenu>
  6551. <productMenu id="fmradio"
  6552. type="1" >
  6553. </productMenu>
  6554. <productMenu id="deviceSetting"
  6555. type="1"
  6556. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6557. </productMenu>
  6558. <productMenu id="quickGuide"
  6559. type="0"
  6560. url=""
  6561. size="934KB" >
  6562. </productMenu>
  6563. <productMenu id="userGuide"
  6564. type="1"
  6565. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  6566. size="1.14MB" >
  6567. </productMenu>
  6568. <productID id="5591"
  6569. />
  6570. <productGroupable type="0"
  6571. />
  6572. </product>
  6573. <product id="5R"
  6574. name="5R LITE"
  6575. series="5"
  6576. latestVersion="1.0.1"
  6577. show = "1" >
  6578. <productMenu id="protocol"
  6579. type="3" >
  6580. </productMenu>
  6581. <productMenu id="sip"
  6582. type="1" >
  6583. </productMenu>
  6584. <productMenu id="bluetoothIntercom"
  6585. type="1" >
  6586. </productMenu>
  6587. <productMenu id="phone"
  6588. type="1" >
  6589. </productMenu>
  6590. <productMenu id="fmradio"
  6591. type="1" >
  6592. </productMenu>
  6593. <productMenu id="deviceSetting"
  6594. type="1"
  6595. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6596. </productMenu>
  6597. <productMenu id="quickGuide"
  6598. type="1"
  6599. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  6600. size="934KB" >
  6601. </productMenu>
  6602. <productMenu id="userGuide"
  6603. type="1"
  6604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  6605. size="1.14MB" >
  6606. </productMenu>
  6607. <productID id="5592"
  6608. />
  6609. <productGroupable type="0"
  6610. />
  6611. </product>
  6612. <product id="50RLE"
  6613. name="50R LE"
  6614. series="50"
  6615. latestVersion="1.1"
  6616. show = "0" >
  6617. <productMenu id="protocol"
  6618. type="2" >
  6619. </productMenu>
  6620. <productMenu id="alexa"
  6621. type="0" >
  6622. </productMenu>
  6623. <productMenu id="sip"
  6624. type="1" >
  6625. </productMenu>
  6626. <productMenu id="meshIntercom"
  6627. type="30" >
  6628. </productMenu>
  6629. <productMenu id="meshIntercom+"
  6630. type="3"
  6631. url="2" >
  6632. <productMenuType version="1.0.9"
  6633. type="2"
  6634. />
  6635. </productMenu>
  6636. <productMenu id="waveIntercom"
  6637. type="1" >
  6638. <productMenuType version="1.0.9"
  6639. type="0"
  6640. />
  6641. </productMenu>
  6642. <productMenu id="bluetoothIntercom"
  6643. type="1" >
  6644. </productMenu>
  6645. <productMenu id="phone"
  6646. type="1" >
  6647. </productMenu>
  6648. <productMenu id="music"
  6649. type="1" >
  6650. </productMenu>
  6651. <productMenu id="fmradio"
  6652. type="0" >
  6653. </productMenu>
  6654. <productMenu id="deviceSetting"
  6655. type="1"
  6656. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  6657. <productMenuURL version="1.0.9"
  6658. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  6659. />
  6660. </productMenu>
  6661. <productMenu id="quickGuide"
  6662. type="0"
  6663. url=""
  6664. size="344KB" >
  6665. </productMenu>
  6666. <productMenu id="userGuide"
  6667. type="0"
  6668. url=""
  6669. size="3.41MB" >
  6670. </productMenu>
  6671. <productMenu id="volume"
  6672. type="11" >
  6673. </productMenu>
  6674. <productMenu id="battery"
  6675. type="1" >
  6676. </productMenu>
  6677. <productID id="3223"
  6678. />
  6679. <productGroupable type="0"
  6680. />
  6681. </product>
  6682. <product id="5RLOUIS"
  6683. name="5R LOUIS EDITION"
  6684. series="5"
  6685. latestVersion="1.0"
  6686. show = "-1" >
  6687. <productMenu id="protocol"
  6688. type="3" >
  6689. </productMenu>
  6690. <productMenu id="sip"
  6691. type="1" >
  6692. </productMenu>
  6693. <productMenu id="bluetoothIntercom"
  6694. type="1" >
  6695. </productMenu>
  6696. <productMenu id="phone"
  6697. type="1" >
  6698. </productMenu>
  6699. <productMenu id="fmradio"
  6700. type="1" >
  6701. </productMenu>
  6702. <productMenu id="deviceSetting"
  6703. type="1"
  6704. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6705. </productMenu>
  6706. <productMenu id="quickGuide"
  6707. type="0"
  6708. url=""
  6709. size="934KB" >
  6710. </productMenu>
  6711. <productMenu id="userGuide"
  6712. type="0"
  6713. url=""
  6714. size="1.14MB" >
  6715. </productMenu>
  6716. <productID id="5597"
  6717. />
  6718. <productGroupable type="0"
  6719. />
  6720. </product>
  6721. <product id="5R"
  6722. name="Ridekont 5R"
  6723. series="5"
  6724. latestVersion="1.0"
  6725. show = "0" >
  6726. <productMenu id="protocol"
  6727. type="3" >
  6728. </productMenu>
  6729. <productMenu id="sip"
  6730. type="1" >
  6731. </productMenu>
  6732. <productMenu id="bluetoothIntercom"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="phone"
  6736. type="1" >
  6737. </productMenu>
  6738. <productMenu id="fmradio"
  6739. type="1" >
  6740. </productMenu>
  6741. <productMenu id="deviceSetting"
  6742. type="1"
  6743. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6744. </productMenu>
  6745. <productMenu id="quickGuide"
  6746. type="1"
  6747. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  6748. size="934KB" >
  6749. </productMenu>
  6750. <productMenu id="userGuide"
  6751. type="1"
  6752. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  6753. size="1.14MB" >
  6754. </productMenu>
  6755. <productID id="5593"
  6756. />
  6757. <productGroupable type="0"
  6758. />
  6759. </product>
  6760. <product id="5R"
  6761. name="Ridekont 5R LITE"
  6762. series="5"
  6763. latestVersion="1.0"
  6764. show = "0" >
  6765. <productMenu id="protocol"
  6766. type="3" >
  6767. </productMenu>
  6768. <productMenu id="sip"
  6769. type="1" >
  6770. </productMenu>
  6771. <productMenu id="bluetoothIntercom"
  6772. type="1" >
  6773. </productMenu>
  6774. <productMenu id="phone"
  6775. type="1" >
  6776. </productMenu>
  6777. <productMenu id="fmradio"
  6778. type="1" >
  6779. </productMenu>
  6780. <productMenu id="deviceSetting"
  6781. type="1"
  6782. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6783. </productMenu>
  6784. <productMenu id="quickGuide"
  6785. type="1"
  6786. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  6787. size="934KB" >
  6788. </productMenu>
  6789. <productMenu id="userGuide"
  6790. type="1"
  6791. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  6792. size="1.14MB" >
  6793. </productMenu>
  6794. <productID id="5594"
  6795. />
  6796. <productGroupable type="0"
  6797. />
  6798. </product>
  6799. <product id="C30"
  6800. name="SENA C30"
  6801. series="C"
  6802. latestVersion="1.1.2"
  6803. latestVersionVoicePrompt="0.11"
  6804. show = "1" >
  6805. <productMenu id="protocol"
  6806. type="2" >
  6807. </productMenu>
  6808. <productMenu id="alexa"
  6809. type="0" >
  6810. </productMenu>
  6811. <productMenu id="ota"
  6812. type="2" >
  6813. <otaPackages>
  6814. <package
  6815. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.2-build0.img"
  6816. size="3144148"
  6817. />
  6818. </otaPackages>
  6819. </productMenu>
  6820. <productMenu id="wa"
  6821. type="0" >
  6822. </productMenu>
  6823. <productMenu id="meshIntercom"
  6824. type="30" >
  6825. </productMenu>
  6826. <productMenu id="meshIntercom+"
  6827. type="3"
  6828. url="2" >
  6829. <productMenuType version="1.0.9"
  6830. type="2"
  6831. />
  6832. </productMenu>
  6833. <productMenu id="phone"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="music"
  6837. type="1" >
  6838. </productMenu>
  6839. <productMenu id="musicSharing"
  6840. type="0" >
  6841. </productMenu>
  6842. <productMenu id="deviceSetting"
  6843. type="1"
  6844. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  6845. <productMenuURL version="1.0.9"
  6846. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  6847. />
  6848. </productMenu>
  6849. <productMenu id="quickGuide"
  6850. type="1"
  6851. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  6852. size="1.12MB" >
  6853. </productMenu>
  6854. <productMenu id="userGuide"
  6855. type="0"
  6856. url=""
  6857. size="2.0MB" >
  6858. </productMenu>
  6859. <productMenu id="videoGuide"
  6860. type="0"
  6861. url=""
  6862. size="3.41MB" >
  6863. </productMenu>
  6864. <productMenu id="volume"
  6865. type="12" >
  6866. </productMenu>
  6867. <productMenu id="battery"
  6868. type="1" >
  6869. </productMenu>
  6870. <productID id="683A"
  6871. />
  6872. <productGroupable type="0"
  6873. />
  6874. </product>
  6875. <product id="C20"
  6876. name="C20"
  6877. series="5"
  6878. latestVersion="1.0"
  6879. show = "0" >
  6880. <productMenu id="protocol"
  6881. type="3" >
  6882. </productMenu>
  6883. <productMenu id="sip"
  6884. type="1" >
  6885. </productMenu>
  6886. <productMenu id="bluetoothIntercom"
  6887. type="1" >
  6888. </productMenu>
  6889. <productMenu id="phone"
  6890. type="1" >
  6891. </productMenu>
  6892. <productMenu id="deviceSetting"
  6893. type="1"
  6894. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  6895. </productMenu>
  6896. <productMenu id="quickGuide"
  6897. type="1"
  6898. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  6899. size="934KB" >
  6900. </productMenu>
  6901. <productMenu id="userGuide"
  6902. type="1"
  6903. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  6904. size="1.14MB" >
  6905. </productMenu>
  6906. <productID id="3701"
  6907. />
  6908. <productGroupable type="0"
  6909. />
  6910. </product>
  6911. <product id="C10"
  6912. name="C10"
  6913. series="5"
  6914. latestVersion="1.4.1"
  6915. show = "0" >
  6916. <productMenu id="protocol"
  6917. type="3" >
  6918. </productMenu>
  6919. <productMenu id="sip"
  6920. type="1" >
  6921. </productMenu>
  6922. <productMenu id="bluetoothIntercom"
  6923. type="1" >
  6924. </productMenu>
  6925. <productMenu id="phone"
  6926. type="1" >
  6927. </productMenu>
  6928. <productMenu id="fmradio"
  6929. type="0" >
  6930. </productMenu>
  6931. <productMenu id="deviceSetting"
  6932. type="1"
  6933. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  6934. </productMenu>
  6935. <productMenu id="userGuide"
  6936. type="1"
  6937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  6938. size="1.14MB" >
  6939. </productMenu>
  6940. <productID id="5595"
  6941. />
  6942. <productGroupable type="0"
  6943. />
  6944. </product>
  6945. <product id="J30"
  6946. name="J30"
  6947. series="J"
  6948. latestVersion="1.2"
  6949. latestVersionVoicePrompt="0.13"
  6950. show = "0" >
  6951. <productMenu id="protocol"
  6952. type="2" >
  6953. </productMenu>
  6954. <productMenu id="alexa"
  6955. type="0" >
  6956. </productMenu>
  6957. <productMenu id="ota"
  6958. type="2" >
  6959. <otaPackages>
  6960. <package
  6961. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  6962. size="3144148"
  6963. />
  6964. </otaPackages>
  6965. </productMenu>
  6966. <productMenu id="wa"
  6967. type="0" >
  6968. </productMenu>
  6969. <productMenu id="meshIntercom"
  6970. type="30" >
  6971. </productMenu>
  6972. <productMenu id="meshIntercom+"
  6973. type="3"
  6974. url="2" >
  6975. <productMenuType version="1.0.9"
  6976. type="2"
  6977. />
  6978. </productMenu>
  6979. <productMenu id="waveIntercom"
  6980. type="1" >
  6981. <productMenuType version="1.1.9"
  6982. type="0"
  6983. />
  6984. </productMenu>
  6985. <productMenu id="phone"
  6986. type="1" >
  6987. </productMenu>
  6988. <productMenu id="music"
  6989. type="1" >
  6990. </productMenu>
  6991. <productMenu id="musicSharing"
  6992. type="0" >
  6993. </productMenu>
  6994. <productMenu id="deviceSetting"
  6995. type="1"
  6996. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  6997. <productMenuURL version="1.0.9"
  6998. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  6999. />
  7000. </productMenu>
  7001. <productMenu id="quickGuide"
  7002. type="0"
  7003. url=""
  7004. size="1.12MB" >
  7005. </productMenu>
  7006. <productMenu id="userGuide"
  7007. type="1"
  7008. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  7009. size="2.0MB" >
  7010. </productMenu>
  7011. <productMenu id="videoGuide"
  7012. type="0"
  7013. url=""
  7014. size="3.41MB" >
  7015. </productMenu>
  7016. <productMenu id="volume"
  7017. type="12" >
  7018. </productMenu>
  7019. <productMenu id="battery"
  7020. type="1" >
  7021. </productMenu>
  7022. <productID id="6848"
  7023. />
  7024. <productGroupable type="0"
  7025. />
  7026. </product>
  7027. <product id="J10"
  7028. name="J10"
  7029. series="5"
  7030. latestVersion="1.1.1"
  7031. show = "0" >
  7032. <productMenu id="protocol"
  7033. type="3" >
  7034. </productMenu>
  7035. <productMenu id="sip"
  7036. type="1" >
  7037. </productMenu>
  7038. <productMenu id="bluetoothIntercom"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="phone"
  7042. type="1" >
  7043. </productMenu>
  7044. <productMenu id="fmradio"
  7045. type="0" >
  7046. </productMenu>
  7047. <productMenu id="deviceSetting"
  7048. type="1"
  7049. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7050. </productMenu>
  7051. <productMenu id="userGuide"
  7052. type="1"
  7053. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  7054. size="1.14MB" >
  7055. </productMenu>
  7056. <productID id="5598"
  7057. />
  7058. <productGroupable type="0"
  7059. />
  7060. </product>
  7061. <product id="B20"
  7062. name="B20"
  7063. series="B"
  7064. latestVersion="1.1"
  7065. latestVersionVoicePrompt="0.13"
  7066. show = "0" >
  7067. <productMenu id="protocol"
  7068. type="2" >
  7069. </productMenu>
  7070. <productMenu id="alexa"
  7071. type="0" >
  7072. </productMenu>
  7073. <productMenu id="ota"
  7074. type="2" >
  7075. <otaPackages>
  7076. <package
  7077. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  7078. size="3144148"
  7079. />
  7080. </otaPackages>
  7081. </productMenu>
  7082. <productMenu id="wa"
  7083. type="0" >
  7084. </productMenu>
  7085. <productMenu id="meshIntercom"
  7086. type="30" >
  7087. </productMenu>
  7088. <productMenu id="phone"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="music"
  7092. type="1" >
  7093. </productMenu>
  7094. <productMenu id="musicSharing"
  7095. type="0" >
  7096. </productMenu>
  7097. <productMenu id="deviceSetting"
  7098. type="1"
  7099. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  7100. <productMenuURL version="1.0.9"
  7101. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  7102. />
  7103. </productMenu>
  7104. <productMenu id="quickGuide"
  7105. type="0"
  7106. url=""
  7107. size="1.12MB" >
  7108. </productMenu>
  7109. <productMenu id="userGuide"
  7110. type="1"
  7111. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  7112. size="2.0MB" >
  7113. </productMenu>
  7114. <productMenu id="videoGuide"
  7115. type="0"
  7116. url=""
  7117. size="3.41MB" >
  7118. </productMenu>
  7119. <productMenu id="volume"
  7120. type="12" >
  7121. </productMenu>
  7122. <productMenu id="battery"
  7123. type="1" >
  7124. </productMenu>
  7125. <productID id="6847"
  7126. />
  7127. <productGroupable type="0"
  7128. />
  7129. </product>
  7130. <product id="B10"
  7131. name="B10"
  7132. series="5"
  7133. latestVersion="1.2.1"
  7134. show = "0" >
  7135. <productMenu id="protocol"
  7136. type="3" >
  7137. </productMenu>
  7138. <productMenu id="sip"
  7139. type="1" >
  7140. </productMenu>
  7141. <productMenu id="bluetoothIntercom"
  7142. type="1" >
  7143. </productMenu>
  7144. <productMenu id="phone"
  7145. type="1" >
  7146. </productMenu>
  7147. <productMenu id="fmradio"
  7148. type="0" >
  7149. </productMenu>
  7150. <productMenu id="deviceSetting"
  7151. type="1"
  7152. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  7153. </productMenu>
  7154. <productMenu id="userGuide"
  7155. type="1"
  7156. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  7157. size="1.14MB" >
  7158. </productMenu>
  7159. <productID id="5596"
  7160. />
  7161. <productGroupable type="0"
  7162. />
  7163. </product>
  7164. <product id="E30"
  7165. name="E30"
  7166. series="E"
  7167. latestVersion="1.0.1"
  7168. latestVersionVoicePrompt="0.12"
  7169. show = "0" >
  7170. <productMenu id="protocol"
  7171. type="2" >
  7172. </productMenu>
  7173. <productMenu id="alexa"
  7174. type="0" >
  7175. </productMenu>
  7176. <productMenu id="ota"
  7177. type="2" >
  7178. <otaPackages>
  7179. <package
  7180. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.0.1-build0.img"
  7181. size="3144148"
  7182. />
  7183. </otaPackages>
  7184. </productMenu>
  7185. <productMenu id="wa"
  7186. type="0" >
  7187. </productMenu>
  7188. <productMenu id="meshIntercom"
  7189. type="30" >
  7190. </productMenu>
  7191. <productMenu id="phone"
  7192. type="1" >
  7193. </productMenu>
  7194. <productMenu id="music"
  7195. type="1" >
  7196. </productMenu>
  7197. <productMenu id="musicSharing"
  7198. type="0" >
  7199. </productMenu>
  7200. <productMenu id="deviceSetting"
  7201. type="1"
  7202. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  7203. </productMenu>
  7204. <productMenu id="quickGuide"
  7205. type="0"
  7206. url=""
  7207. size="1.12MB" >
  7208. </productMenu>
  7209. <productMenu id="userGuide"
  7210. type="1"
  7211. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  7212. size="2.0MB" >
  7213. </productMenu>
  7214. <productMenu id="videoGuide"
  7215. type="0"
  7216. url=""
  7217. size="3.41MB" >
  7218. </productMenu>
  7219. <productMenu id="volume"
  7220. type="12" >
  7221. </productMenu>
  7222. <productMenu id="battery"
  7223. type="1" >
  7224. </productMenu>
  7225. <productID id="6846"
  7226. />
  7227. <productGroupable type="0"
  7228. />
  7229. </product>
  7230. <product id="ACSRAM"
  7231. name="ACS-RAM"
  7232. series="ACS"
  7233. latestVersion="1.0.5"
  7234. show = "1" >
  7235. <productMenu id="protocol"
  7236. type="3" >
  7237. </productMenu>
  7238. <productMenu id="sip"
  7239. type="1" >
  7240. </productMenu>
  7241. <productMenu id="bluetoothIntercom"
  7242. type="1" >
  7243. </productMenu>
  7244. <productMenu id="deviceSetting"
  7245. type="1"
  7246. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  7247. </productMenu>
  7248. <productMenu id="quickGuide"
  7249. type="1"
  7250. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  7251. size="344KB" >
  7252. </productMenu>
  7253. <productMenu id="userGuide"
  7254. type="1"
  7255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  7256. size="1.14MB" >
  7257. </productMenu>
  7258. <productID id="3400"
  7259. />
  7260. <productGroupable type="0"
  7261. />
  7262. </product>
  7263. <product id="ACS10"
  7264. name="ACS10"
  7265. series="ACS"
  7266. latestVersion="1.0.2"
  7267. show = "1" >
  7268. <productMenu id="protocol"
  7269. type="0">
  7270. </productMenu>
  7271. <productMenu id="sip"
  7272. type="1" >
  7273. </productMenu>
  7274. <productMenu id="bluetoothIntercom"
  7275. type="1" >
  7276. </productMenu>
  7277. <productMenu id="phone"
  7278. type="2" >
  7279. </productMenu>
  7280. <productMenu id="deviceSetting"
  7281. type="1"
  7282. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  7283. </productMenu>
  7284. <productMenu id="quickGuide"
  7285. type="1"
  7286. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  7287. size="970KB" >
  7288. </productMenu>
  7289. <productMenu id="userGuide"
  7290. type="1"
  7291. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  7292. size="1.26MB" >
  7293. </productMenu>
  7294. <productID id="3300"
  7295. />
  7296. <productGroupable type="0"
  7297. />
  7298. </product>
  7299. <product id="DWO7ProMesh"
  7300. name="DWO 7 Pro Mesh"
  7301. series="50"
  7302. latestVersion="1.1"
  7303. latestVersionVoicePrompt="0.9"
  7304. show = "0" >
  7305. <productMenu id="protocol"
  7306. type="2" >
  7307. </productMenu>
  7308. <productMenu id="alexa"
  7309. type="0" >
  7310. </productMenu>
  7311. <productMenu id="ota"
  7312. type="2" >
  7313. <otaPackages>
  7314. <package
  7315. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  7316. size="2945812"
  7317. />
  7318. </otaPackages>
  7319. </productMenu>
  7320. <productMenu id="wa"
  7321. type="0" >
  7322. </productMenu>
  7323. <productMenu id="meshIntercom"
  7324. type="20" >
  7325. </productMenu>
  7326. <productMenu id="meshIntercom+"
  7327. type="3"
  7328. url="2" >
  7329. <productMenuType version="1.0.9"
  7330. type="2"
  7331. />
  7332. <productMenuURL version="2.1.1"
  7333. url="0"
  7334. />
  7335. </productMenu>
  7336. <productMenu id="waveIntercom"
  7337. type="1" >
  7338. <productMenuType version="1.0.9"
  7339. type="0"
  7340. />
  7341. </productMenu>
  7342. <productMenu id="phone"
  7343. type="1" >
  7344. </productMenu>
  7345. <productMenu id="music"
  7346. type="1" >
  7347. </productMenu>
  7348. <productMenu id="fmradio"
  7349. type="1" >
  7350. </productMenu>
  7351. <productMenu id="musicSharing"
  7352. type="0" >
  7353. </productMenu>
  7354. <productMenu id="deviceSetting"
  7355. type="1"
  7356. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  7357. <productMenuURL version="1.0.9"
  7358. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  7359. />
  7360. </productMenu>
  7361. <productMenu id="quickGuide"
  7362. type="1"
  7363. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  7364. size="1.12MB" >
  7365. </productMenu>
  7366. <productMenu id="userGuide"
  7367. type="1"
  7368. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  7369. size="2.0MB" >
  7370. </productMenu>
  7371. <productMenu id="volume"
  7372. type="12" >
  7373. </productMenu>
  7374. <productMenu id="battery"
  7375. type="1" >
  7376. </productMenu>
  7377. <productID id="6806"
  7378. />
  7379. <productGroupable type="0"
  7380. />
  7381. </product>
  7382. <product id="UCOM16R"
  7383. name="U-COM 16R"
  7384. series="UCOM"
  7385. latestVersion="1.0"
  7386. latestVersionMesh="1.0"
  7387. latestVersionVoicePrompt="1.0"
  7388. show = "-1" >
  7389. <productMenu id="protocol"
  7390. type="2" >
  7391. </productMenu>
  7392. <productMenu id="ota"
  7393. type="0" >
  7394. <otaLanguages>
  7395. <otaLanguage
  7396. id="0"
  7397. name="English"
  7398. package="0"
  7399. />
  7400. <otaLanguage
  7401. id="0"
  7402. name="French"
  7403. package="1"
  7404. />
  7405. <otaLanguage
  7406. id="0"
  7407. name="Spanish"
  7408. package="2"
  7409. />
  7410. <otaLanguage
  7411. id="0"
  7412. name="Italian"
  7413. package="3"
  7414. />
  7415. <otaLanguage
  7416. id="0"
  7417. name="German"
  7418. package="4"
  7419. />
  7420. <otaLanguage
  7421. id="0"
  7422. name="Dutch"
  7423. package="5"
  7424. />
  7425. <otaLanguage
  7426. id="0"
  7427. name="Russian"
  7428. package="6"
  7429. />
  7430. <otaLanguage
  7431. id="0"
  7432. name="Chinese"
  7433. package="7"
  7434. />
  7435. <otaLanguage
  7436. id="0"
  7437. name="Korean"
  7438. package="8"
  7439. />
  7440. <otaLanguage
  7441. id="0"
  7442. name="Japanese"
  7443. package="9"
  7444. />
  7445. <otaLanguage
  7446. id="0"
  7447. name="Finnish"
  7448. package="10"
  7449. />
  7450. </otaLanguages>
  7451. <otaPackages>
  7452. <package
  7453. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1.img"
  7454. size="5183988"
  7455. />
  7456. <package
  7457. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-fr-FR.img"
  7458. size="5183988"
  7459. />
  7460. <package
  7461. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-es-ES.img"
  7462. size="5183988"
  7463. />
  7464. <package
  7465. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-it-IT.img"
  7466. size="5183988"
  7467. />
  7468. <package
  7469. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-de-DE.img"
  7470. size="5183988"
  7471. />
  7472. <package
  7473. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-nl-NL.img"
  7474. size="5183988"
  7475. />
  7476. <package
  7477. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-ru-RU.img"
  7478. size="5183988"
  7479. />
  7480. <package
  7481. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-cmn-CN.img"
  7482. size="5183988"
  7483. />
  7484. <package
  7485. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-ko-KR.img"
  7486. size="5183988"
  7487. />
  7488. <package
  7489. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-ja-JP.img"
  7490. size="5183988"
  7491. />
  7492. <package
  7493. url="https://api.sena.com/support/OTA/60S/60S-v1.1.7-build1-fi-FI.img"
  7494. size="5183988"
  7495. />
  7496. </otaPackages>
  7497. </productMenu>
  7498. <productMenu id="wa"
  7499. type="0" >
  7500. </productMenu>
  7501. <productMenu id="sip"
  7502. type="1" >
  7503. </productMenu>
  7504. <productMenu id="led"
  7505. type="0" >
  7506. </productMenu>
  7507. <productMenu id="illusion"
  7508. type="1" >
  7509. </productMenu>
  7510. <productMenu id="meshIntercom"
  7511. type="30" >
  7512. </productMenu>
  7513. <productMenu id="meshIntercom+"
  7514. type="3"
  7515. url="2" >
  7516. </productMenu>
  7517. <productMenu id="waveIntercom"
  7518. type="0" >
  7519. </productMenu>
  7520. <productMenu id="bluetoothIntercom"
  7521. type="1" >
  7522. </productMenu>
  7523. <productMenu id="bluetoothIntercomGrouping"
  7524. type="0" >
  7525. </productMenu>
  7526. <productMenu id="fmradio"
  7527. type="1"
  7528. url="1" >
  7529. </productMenu>
  7530. <productMenu id="phone"
  7531. type="1" >
  7532. </productMenu>
  7533. <productMenu id="music"
  7534. type="1" >
  7535. </productMenu>
  7536. <productMenu id="musicSharing"
  7537. type="0" >
  7538. </productMenu>
  7539. <productMenu id="deviceSetting"
  7540. type="1"
  7541. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  7542. </productMenu>
  7543. <productMenu id="quickGuide"
  7544. type="0"
  7545. url=""
  7546. size="1.12MB" >
  7547. </productMenu>
  7548. <productMenu id="userGuide"
  7549. type="1"
  7550. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  7551. size="2.0MB" >
  7552. </productMenu>
  7553. <productMenu id="videoGuide"
  7554. type="0"
  7555. url=""
  7556. size="3.41MB" >
  7557. </productMenu>
  7558. <productMenu id="volume"
  7559. type="16" >
  7560. </productMenu>
  7561. <productMenu id="soundMode"
  7562. type="1" >
  7563. </productMenu>
  7564. <productMenu id="battery"
  7565. type="1" >
  7566. </productMenu>
  7567. <productID id="6A83"
  7568. />
  7569. <productGroupable type="0"
  7570. />
  7571. </product>
  7572. <product id="MeshStation"
  7573. name="Mesh Station"
  7574. series="50"
  7575. latestVersion="0.9"
  7576. show = "0" >
  7577. <productMenu id="protocol"
  7578. type="2" >
  7579. </productMenu>
  7580. <productMenu id="meshIntercom"
  7581. type="20"
  7582. url="99" >
  7583. </productMenu>
  7584. <productID id="3161"
  7585. />
  7586. <productGroupable type="0"
  7587. />
  7588. </product>
  7589. </products>
  7590. </sna>