snm.xml 259 KB

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