snm.xml 261 KB

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