snm.xml 261 KB

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