snm.xml 488 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260134" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml" >
  504. </productMenu>
  505. <productMenu id="quickGuide"
  506. type="0"
  507. url=""
  508. size="1.12MB" >
  509. </productMenu>
  510. <productMenu id="userGuide"
  511. type="1"
  512. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  513. size="2.0MB" >
  514. </productMenu>
  515. <productMenu id="videoGuide"
  516. type="0"
  517. url=""
  518. size="3.41MB" >
  519. </productMenu>
  520. <productMenu id="connectGuide"
  521. type="0"
  522. url=""
  523. size="1.12MB" >
  524. </productMenu>
  525. <productMenu id="volume"
  526. type="16" >
  527. </productMenu>
  528. <productMenu id="volume+"
  529. type="2"
  530. url="0x6004" >
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="1" >
  534. </productMenu>
  535. <productMenu id="appearance"
  536. type="1"
  537. url="1|white,silver,black,glossy_black" >
  538. </productMenu>
  539. <productMenu id="battery"
  540. type="1" >
  541. </productMenu>
  542. <productID id="6A15"
  543. />
  544. <productGroupable type="0"
  545. />
  546. </product>
  547. <product id="60S"
  548. name="60S"
  549. series="60"
  550. latestVersion="1.2.9"
  551. latestVersionMesh="1.2"
  552. latestVersionVoicePrompt="1.7"
  553. show = "1" >
  554. <productMenu id="protocol"
  555. type="2" >
  556. </productMenu>
  557. <productMenu id="ota"
  558. type="2" >
  559. <otaLanguages>
  560. <otaLanguage
  561. id="0"
  562. name="English"
  563. package="0"
  564. />
  565. <otaLanguage
  566. id="0"
  567. name="French"
  568. package="1"
  569. />
  570. <otaLanguage
  571. id="0"
  572. name="Spanish"
  573. package="2"
  574. />
  575. <otaLanguage
  576. id="0"
  577. name="Italian"
  578. package="3"
  579. />
  580. <otaLanguage
  581. id="0"
  582. name="German"
  583. package="4"
  584. />
  585. <otaLanguage
  586. id="0"
  587. name="Dutch"
  588. package="5"
  589. />
  590. <otaLanguage
  591. id="0"
  592. name="Russian"
  593. package="6"
  594. />
  595. <otaLanguage
  596. id="0"
  597. name="Chinese"
  598. package="7"
  599. />
  600. <otaLanguage
  601. id="0"
  602. name="Korean"
  603. package="8"
  604. />
  605. <otaLanguage
  606. id="0"
  607. name="Japanese"
  608. package="9"
  609. />
  610. <otaLanguage
  611. id="0"
  612. name="Finnish"
  613. package="10"
  614. />
  615. <otaLanguage
  616. id="0"
  617. name="Polish"
  618. package="11"
  619. />
  620. </otaLanguages>
  621. <otaPackages>
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  660. size="5183988"
  661. />
  662. <package
  663. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  664. size="5183988"
  665. />
  666. <package
  667. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  668. size="5183988"
  669. />
  670. </otaPackages>
  671. </productMenu>
  672. <productMenu id="sip"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="illusion"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="meshIntercom"
  679. type="30" >
  680. </productMenu>
  681. <productMenu id="meshIntercom+"
  682. type="3"
  683. url="2" >
  684. </productMenu>
  685. <productMenu id="waveIntercom"
  686. type="1" >
  687. </productMenu>
  688. <productMenu id="bluetoothIntercom"
  689. type="1"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="bluetoothIntercomGrouping"
  693. type="0" >
  694. </productMenu>
  695. <productMenu id="fmradio"
  696. type="1"
  697. url="1" >
  698. </productMenu>
  699. <productMenu id="phone"
  700. type="1" >
  701. </productMenu>
  702. <productMenu id="music"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="musicSharing"
  706. type="0" >
  707. </productMenu>
  708. <productMenu id="deviceSetting"
  709. type="1"
  710. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  711. <productMenuURL version="1.2.6"
  712. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  713. />
  714. <productMenuURL version="1.2.3"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  716. />
  717. </productMenu>
  718. <productMenu id="quickGuide"
  719. type="0"
  720. url=""
  721. size="1.12MB" >
  722. </productMenu>
  723. <productMenu id="userGuide"
  724. type="1"
  725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  726. size="2.0MB" >
  727. </productMenu>
  728. <productMenu id="videoGuide"
  729. type="0"
  730. url=""
  731. size="3.41MB" >
  732. </productMenu>
  733. <productMenu id="connectGuide"
  734. type="1"
  735. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  736. size="1.12MB" >
  737. </productMenu>
  738. <productMenu id="volume"
  739. type="16" >
  740. </productMenu>
  741. <productMenu id="volume+"
  742. type="2"
  743. url="0x6004" >
  744. <productMenuURL version="1.2.3"
  745. url="0x6004"
  746. />
  747. </productMenu>
  748. <productMenu id="soundMode"
  749. type="0" >
  750. </productMenu>
  751. <productMenu id="appearance"
  752. type="1"
  753. url="2|white,silver,chrome,black" >
  754. </productMenu>
  755. <productMenu id="battery"
  756. type="1" >
  757. </productMenu>
  758. <productID id="6A0D"
  759. />
  760. <productGroupable type="0"
  761. />
  762. </product>
  763. <product id="60S"
  764. name="60S"
  765. series="60"
  766. latestVersion="1.2.9"
  767. latestVersionMesh="1.2"
  768. latestVersionVoicePrompt="1.7"
  769. show = "-1" >
  770. <productMenu id="protocol"
  771. type="2" >
  772. </productMenu>
  773. <productMenu id="ota"
  774. type="2" >
  775. <otaLanguages>
  776. <otaLanguage
  777. id="0"
  778. name="English"
  779. package="0"
  780. />
  781. <otaLanguage
  782. id="0"
  783. name="French"
  784. package="1"
  785. />
  786. <otaLanguage
  787. id="0"
  788. name="Spanish"
  789. package="2"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Italian"
  794. package="3"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="German"
  799. package="4"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Dutch"
  804. package="5"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Russian"
  809. package="6"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Chinese"
  814. package="7"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Korean"
  819. package="8"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="Japanese"
  824. package="9"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="Finnish"
  829. package="10"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="Polish"
  834. package="11"
  835. />
  836. </otaLanguages>
  837. <otaPackages>
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  876. size="5183988"
  877. />
  878. <package
  879. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  880. size="5183988"
  881. />
  882. <package
  883. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  884. size="5183988"
  885. />
  886. </otaPackages>
  887. </productMenu>
  888. <productMenu id="wa"
  889. type="0" >
  890. </productMenu>
  891. <productMenu id="sip"
  892. type="1" >
  893. </productMenu>
  894. <productMenu id="led"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="illusion"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="meshIntercom"
  901. type="30" >
  902. </productMenu>
  903. <productMenu id="meshIntercom+"
  904. type="3"
  905. url="2" >
  906. <productMenuURL version="1.0.2"
  907. url="10"
  908. />
  909. </productMenu>
  910. <productMenu id="waveIntercom"
  911. type="1" >
  912. <productMenuType version="1.0.9"
  913. type="0"
  914. />
  915. </productMenu>
  916. <productMenu id="bluetoothIntercom"
  917. type="1"
  918. url="2" >
  919. </productMenu>
  920. <productMenu id="bluetoothIntercomGrouping"
  921. type="0" >
  922. </productMenu>
  923. <productMenu id="fmradio"
  924. type="1"
  925. url="1" >
  926. </productMenu>
  927. <productMenu id="phone"
  928. type="1" >
  929. </productMenu>
  930. <productMenu id="music"
  931. type="1" >
  932. </productMenu>
  933. <productMenu id="musicSharing"
  934. type="0" >
  935. </productMenu>
  936. <productMenu id="deviceSetting"
  937. type="1"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  939. <productMenuURL version="1.2.6"
  940. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  941. />
  942. <productMenuURL version="1.2.3"
  943. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  944. />
  945. <productMenuURL version="1.0.2"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  947. />
  948. <productMenuURL version="1.0"
  949. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  950. />
  951. <productMenuURL version="0.9.11"
  952. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  953. />
  954. </productMenu>
  955. <productMenu id="quickGuide"
  956. type="0"
  957. url=""
  958. size="1.12MB" >
  959. </productMenu>
  960. <productMenu id="userGuide"
  961. type="1"
  962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  963. size="2.0MB" >
  964. </productMenu>
  965. <productMenu id="videoGuide"
  966. type="0"
  967. url=""
  968. size="3.41MB" >
  969. </productMenu>
  970. <productMenu id="connectGuide"
  971. type="1"
  972. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  973. size="1.12MB" >
  974. </productMenu>
  975. <productMenu id="volume"
  976. type="16" >
  977. <productMenuType version="0.9.11"
  978. type="13"
  979. />
  980. </productMenu>
  981. <productMenu id="volume+"
  982. type="2"
  983. url="0x6004" >
  984. <productMenuURL version="1.2.3"
  985. url="0x6004"
  986. />
  987. </productMenu>
  988. <productMenu id="soundMode"
  989. type="0" >
  990. <productMenuType version="0.9.11"
  991. type="0"
  992. />
  993. </productMenu>
  994. <productMenu id="appearance"
  995. type="1"
  996. url="2|white,silver,chrome,black" >
  997. </productMenu>
  998. <productMenu id="battery"
  999. type="1" >
  1000. </productMenu>
  1001. <productID id="6A02"
  1002. />
  1003. <productGroupable type="0"
  1004. />
  1005. </product>
  1006. <product id="60X"
  1007. name="60X"
  1008. series="60"
  1009. latestVersion="1.0"
  1010. latestVersionMesh="0.19"
  1011. latestVersionVoicePrompt="1.7"
  1012. show = "1" >
  1013. <productMenu id="protocol"
  1014. type="2" >
  1015. </productMenu>
  1016. <productMenu id="warranty"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="serialNumber"
  1020. type="1" >
  1021. </productMenu>
  1022. <productMenu id="ota"
  1023. type="2" >
  1024. <otaLanguages>
  1025. <otaLanguage
  1026. id="0"
  1027. name="English"
  1028. package="0"
  1029. />
  1030. <otaLanguage
  1031. id="0"
  1032. name="French"
  1033. package="1"
  1034. />
  1035. <otaLanguage
  1036. id="0"
  1037. name="Spanish"
  1038. package="2"
  1039. />
  1040. <otaLanguage
  1041. id="0"
  1042. name="Italian"
  1043. package="3"
  1044. />
  1045. <otaLanguage
  1046. id="0"
  1047. name="German"
  1048. package="4"
  1049. />
  1050. <otaLanguage
  1051. id="0"
  1052. name="Dutch"
  1053. package="5"
  1054. />
  1055. <otaLanguage
  1056. id="0"
  1057. name="Russian"
  1058. package="6"
  1059. />
  1060. <otaLanguage
  1061. id="0"
  1062. name="Chinese"
  1063. package="7"
  1064. />
  1065. <otaLanguage
  1066. id="0"
  1067. name="Korean"
  1068. package="8"
  1069. />
  1070. <otaLanguage
  1071. id="0"
  1072. name="Japanese"
  1073. package="9"
  1074. />
  1075. <otaLanguage
  1076. id="0"
  1077. name="Finnish"
  1078. package="10"
  1079. />
  1080. <otaLanguage
  1081. id="0"
  1082. name="Polish"
  1083. package="11"
  1084. />
  1085. </otaLanguages>
  1086. <otaPackages>
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1125. size="5183988"
  1126. />
  1127. <package
  1128. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1129. size="5183988"
  1130. />
  1131. <package
  1132. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1133. size="5183988"
  1134. />
  1135. </otaPackages>
  1136. </productMenu>
  1137. <productMenu id="wa"
  1138. type="0" >
  1139. </productMenu>
  1140. <productMenu id="sip"
  1141. type="1" >
  1142. </productMenu>
  1143. <productMenu id="led"
  1144. type="1" >
  1145. </productMenu>
  1146. <productMenu id="illusion"
  1147. type="1" >
  1148. </productMenu>
  1149. <productMenu id="meshIntercom"
  1150. type="30" >
  1151. </productMenu>
  1152. <productMenu id="meshIntercom+"
  1153. type="3"
  1154. url="2" >
  1155. </productMenu>
  1156. <productMenu id="waveIntercom"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="bluetoothIntercom"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="fmradio"
  1163. type="1"
  1164. url="1" >
  1165. </productMenu>
  1166. <productMenu id="mic"
  1167. type="0" >
  1168. </productMenu>
  1169. <productMenu id="phone"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="music"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="musicSharing"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="deviceSetting"
  1179. type="1"
  1180. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1181. </productMenu>
  1182. <productMenu id="quickGuide"
  1183. type="0"
  1184. url=""
  1185. size="1.12MB" >
  1186. </productMenu>
  1187. <productMenu id="userGuide"
  1188. type="0"
  1189. url=""
  1190. size="2.0MB" >
  1191. </productMenu>
  1192. <productMenu id="videoGuide"
  1193. type="0"
  1194. url=""
  1195. size="3.41MB" >
  1196. </productMenu>
  1197. <productMenu id="keySettings"
  1198. type="1"
  1199. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1200. </productMenu>
  1201. <productMenu id="volume"
  1202. type="13" >
  1203. </productMenu>
  1204. <productMenu id="volume+"
  1205. type="2"
  1206. url="0x6004" >
  1207. </productMenu>
  1208. <productMenu id="appearance"
  1209. type="1"
  1210. url="1|white,silver,black,glossy_black" >
  1211. </productMenu>
  1212. <productMenu id="battery"
  1213. type="1" >
  1214. </productMenu>
  1215. <productID id="6A03"
  1216. />
  1217. <productGroupable type="0"
  1218. />
  1219. </product>
  1220. <product id="R35"
  1221. name="R35"
  1222. series="R"
  1223. latestVersion="1.1.1"
  1224. latestVersionVoicePrompt="1.5"
  1225. show = "1" >
  1226. <productMenu id="protocol"
  1227. type="2" >
  1228. </productMenu>
  1229. <productMenu id="ota"
  1230. type="2" >
  1231. <otaLanguages>
  1232. <otaLanguage
  1233. id="0"
  1234. name="English"
  1235. package="0"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Chinese"
  1240. package="1"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="Chinese Singapore"
  1245. package="2"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="Filipino"
  1250. package="3"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="Hebrew"
  1255. package="4"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="Hindi"
  1260. package="5"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="Indonesian"
  1265. package="6"
  1266. />
  1267. <otaLanguage
  1268. id="0"
  1269. name="Japanese"
  1270. package="7"
  1271. />
  1272. <otaLanguage
  1273. id="0"
  1274. name="Korean"
  1275. package="8"
  1276. />
  1277. <otaLanguage
  1278. id="0"
  1279. name="Malay"
  1280. package="9"
  1281. />
  1282. <otaLanguage
  1283. id="0"
  1284. name="Modern Standard Arabic"
  1285. package="10"
  1286. />
  1287. <otaLanguage
  1288. id="0"
  1289. name="Taiwanese"
  1290. package="11"
  1291. />
  1292. <otaLanguage
  1293. id="0"
  1294. name="Tamil"
  1295. package="12"
  1296. />
  1297. <otaLanguage
  1298. id="0"
  1299. name="Thai"
  1300. package="13"
  1301. />
  1302. <otaLanguage
  1303. id="0"
  1304. name="东北话"
  1305. package="14"
  1306. />
  1307. <otaLanguage
  1308. id="0"
  1309. name="广东话"
  1310. package="15"
  1311. />
  1312. <otaLanguage
  1313. id="0"
  1314. name="江浙沪"
  1315. package="16"
  1316. />
  1317. <otaLanguage
  1318. id="0"
  1319. name="四川话"
  1320. package="17"
  1321. />
  1322. <otaLanguage
  1323. id="0"
  1324. name="陕西话"
  1325. package="18"
  1326. />
  1327. </otaLanguages>
  1328. <otaPackages>
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1403. size="5183988"
  1404. />
  1405. </otaPackages>
  1406. </productMenu>
  1407. <productMenu id="sip"
  1408. type="1" >
  1409. </productMenu>
  1410. <productMenu id="illusion"
  1411. type="1" >
  1412. </productMenu>
  1413. <productMenu id="meshIntercom"
  1414. type="30" >
  1415. </productMenu>
  1416. <productMenu id="meshIntercom+"
  1417. type="3"
  1418. url="2" >
  1419. </productMenu>
  1420. <productMenu id="waveIntercom"
  1421. type="1" >
  1422. </productMenu>
  1423. <productMenu id="phone"
  1424. type="1" >
  1425. </productMenu>
  1426. <productMenu id="music"
  1427. type="1" >
  1428. </productMenu>
  1429. <productMenu id="musicSharing"
  1430. type="0" >
  1431. </productMenu>
  1432. <productMenu id="deviceSetting"
  1433. type="1"
  1434. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1435. <productMenuURL version="1.0.3"
  1436. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.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_R35_1.1.1_en_260226.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="connectGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="volume"
  1460. type="16" >
  1461. </productMenu>
  1462. <productMenu id="volume+"
  1463. type="2"
  1464. url="0x6004" >
  1465. </productMenu>
  1466. <productMenu id="soundMode"
  1467. type="0" >
  1468. </productMenu>
  1469. <productMenu id="appearance"
  1470. type="1"
  1471. url="1|white,silver,chrome,black" >
  1472. </productMenu>
  1473. <productMenu id="battery"
  1474. type="1" >
  1475. </productMenu>
  1476. <productID id="6A06"
  1477. />
  1478. <productGroupable type="0"
  1479. />
  1480. </product>
  1481. <product id="COM60X"
  1482. name="BMW MOTORRAD COM 60X"
  1483. series="60"
  1484. latestVersion="1.0"
  1485. latestVersionMesh="0.19"
  1486. latestVersionVoicePrompt="1.7"
  1487. show = "-1" >
  1488. <productMenu id="protocol"
  1489. type="2" >
  1490. </productMenu>
  1491. <productMenu id="ota"
  1492. type="0" >
  1493. <otaLanguages>
  1494. <otaLanguage
  1495. id="0"
  1496. name="English"
  1497. package="0"
  1498. />
  1499. <otaLanguage
  1500. id="0"
  1501. name="French"
  1502. package="1"
  1503. />
  1504. <otaLanguage
  1505. id="0"
  1506. name="Spanish"
  1507. package="2"
  1508. />
  1509. <otaLanguage
  1510. id="0"
  1511. name="Italian"
  1512. package="3"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="German"
  1517. package="4"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Dutch"
  1522. package="5"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Russian"
  1527. package="6"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Chinese"
  1532. package="7"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Korean"
  1537. package="8"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Japanese"
  1542. package="9"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Finnish"
  1547. package="10"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Polish"
  1552. package="11"
  1553. />
  1554. </otaLanguages>
  1555. <otaPackages>
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1602. size="5183988"
  1603. />
  1604. </otaPackages>
  1605. </productMenu>
  1606. <productMenu id="wa"
  1607. type="0" >
  1608. </productMenu>
  1609. <productMenu id="sip"
  1610. type="1" >
  1611. </productMenu>
  1612. <productMenu id="led"
  1613. type="1" >
  1614. </productMenu>
  1615. <productMenu id="illusion"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. </productMenu>
  1621. <productMenu id="meshIntercom+"
  1622. type="3"
  1623. url="2" >
  1624. </productMenu>
  1625. <productMenu id="bluetoothIntercom"
  1626. type="1" >
  1627. </productMenu>
  1628. <productMenu id="fmradio"
  1629. type="1"
  1630. url="1" >
  1631. </productMenu>
  1632. <productMenu id="mic"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="phone"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="music"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="musicSharing"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="deviceSetting"
  1645. type="1"
  1646. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1647. </productMenu>
  1648. <productMenu id="quickGuide"
  1649. type="0"
  1650. url=""
  1651. size="1.12MB" >
  1652. </productMenu>
  1653. <productMenu id="userGuide"
  1654. type="1"
  1655. url=""
  1656. size="2.0MB" >
  1657. </productMenu>
  1658. <productMenu id="videoGuide"
  1659. type="0"
  1660. url=""
  1661. size="3.41MB" >
  1662. </productMenu>
  1663. <productMenu id="keySettings"
  1664. type="1"
  1665. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1666. </productMenu>
  1667. <productMenu id="volume"
  1668. type="13" >
  1669. </productMenu>
  1670. <productMenu id="volume+"
  1671. type="2"
  1672. url="0x6004" >
  1673. </productMenu>
  1674. <productMenu id="battery"
  1675. type="1" >
  1676. </productMenu>
  1677. <productID id="6A1B"
  1678. />
  1679. <productGroupable type="0"
  1680. />
  1681. </product>
  1682. <product id="COMP1"
  1683. name="BMW COM P1"
  1684. series="60"
  1685. latestVersion="1.2"
  1686. latestVersionMesh="0.19"
  1687. latestVersionVoicePrompt="1.0"
  1688. show = "-1" >
  1689. <productMenu id="protocol"
  1690. type="2" >
  1691. </productMenu>
  1692. <productMenu id="ota"
  1693. type="2" >
  1694. <otaLanguages>
  1695. <otaLanguage
  1696. id="0"
  1697. name="English"
  1698. package="0"
  1699. />
  1700. <otaLanguage
  1701. id="0"
  1702. name="French"
  1703. package="1"
  1704. />
  1705. <otaLanguage
  1706. id="0"
  1707. name="Spanish"
  1708. package="2"
  1709. />
  1710. <otaLanguage
  1711. id="0"
  1712. name="Italian"
  1713. package="3"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="German"
  1718. package="4"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Dutch"
  1723. package="5"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Russian"
  1728. package="6"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Chinese"
  1733. package="7"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Korean"
  1738. package="8"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Japanese"
  1743. package="9"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Finnish"
  1748. package="10"
  1749. />
  1750. </otaLanguages>
  1751. <otaPackages>
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1794. size="5183988"
  1795. />
  1796. </otaPackages>
  1797. </productMenu>
  1798. <productMenu id="wa"
  1799. type="0" >
  1800. </productMenu>
  1801. <productMenu id="sip"
  1802. type="1" >
  1803. </productMenu>
  1804. <productMenu id="led"
  1805. type="0" >
  1806. </productMenu>
  1807. <productMenu id="illusion"
  1808. type="0" >
  1809. </productMenu>
  1810. <productMenu id="meshIntercom"
  1811. type="30" >
  1812. </productMenu>
  1813. <productMenu id="bluetoothIntercom"
  1814. type="1" >
  1815. </productMenu>
  1816. <productMenu id="bluetoothIntercomGrouping"
  1817. type="0" >
  1818. </productMenu>
  1819. <productMenu id="fmradio"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="phone"
  1823. type="1" >
  1824. </productMenu>
  1825. <productMenu id="music"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="musicSharing"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="deviceSetting"
  1832. type="1"
  1833. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1834. </productMenu>
  1835. <productMenu id="quickGuide"
  1836. type="0"
  1837. url=""
  1838. size="1.12MB" >
  1839. </productMenu>
  1840. <productMenu id="userGuide"
  1841. type="0"
  1842. url=""
  1843. size="2.0MB" >
  1844. </productMenu>
  1845. <productMenu id="videoGuide"
  1846. type="0"
  1847. url=""
  1848. size="3.41MB" >
  1849. </productMenu>
  1850. <productMenu id="volume"
  1851. type="16" >
  1852. </productMenu>
  1853. <productMenu id="battery"
  1854. type="1" >
  1855. </productMenu>
  1856. <productID id="6A80"
  1857. />
  1858. <productGroupable type="0"
  1859. />
  1860. </product>
  1861. <product id="50S"
  1862. name="50S"
  1863. series="50"
  1864. latestVersion="2.7.2"
  1865. show = "1" >
  1866. <productMenu id="protocol"
  1867. type="2" >
  1868. </productMenu>
  1869. <productMenu id="alexa"
  1870. type="0" >
  1871. </productMenu>
  1872. <productMenu id="ota"
  1873. type="0"
  1874. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1875. size="1150234" >
  1876. </productMenu>
  1877. <productMenu id="wa"
  1878. type="1" >
  1879. </productMenu>
  1880. <productMenu id="sip"
  1881. type="1" >
  1882. </productMenu>
  1883. <productMenu id="meshIntercom"
  1884. type="30" >
  1885. <productMenuType version="2.1.1"
  1886. type="20"
  1887. />
  1888. </productMenu>
  1889. <productMenu id="meshIntercom+"
  1890. type="3"
  1891. url="2" >
  1892. <productMenuType version="2.5.9"
  1893. type="2"
  1894. />
  1895. <productMenuURL version="2.1.1"
  1896. url="0"
  1897. />
  1898. </productMenu>
  1899. <productMenu id="waveIntercom"
  1900. type="1" >
  1901. <productMenuType version="2.6"
  1902. type="0"
  1903. />
  1904. </productMenu>
  1905. <productMenu id="bluetoothIntercom"
  1906. type="1" >
  1907. </productMenu>
  1908. <productMenu id="phone"
  1909. type="1" >
  1910. </productMenu>
  1911. <productMenu id="music"
  1912. type="1" >
  1913. </productMenu>
  1914. <productMenu id="fmradio"
  1915. type="1" >
  1916. </productMenu>
  1917. <productMenu id="deviceSetting"
  1918. type="1"
  1919. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1920. <productMenuURL version="2.5.9"
  1921. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1922. />
  1923. <productMenuURL version="2.1.1"
  1924. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1925. />
  1926. <productMenuURL version="2.0.3"
  1927. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1928. />
  1929. </productMenu>
  1930. <productMenu id="quickGuide"
  1931. type="0"
  1932. url=""
  1933. size="934KB" >
  1934. </productMenu>
  1935. <productMenu id="userGuide"
  1936. type="1"
  1937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1938. size="1.14MB" >
  1939. </productMenu>
  1940. <productMenu id="videoGuide"
  1941. type="1"
  1942. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1943. size="3.41MB" >
  1944. </productMenu>
  1945. <productMenu id="connectGuide"
  1946. type="1"
  1947. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1948. size="1.12MB" >
  1949. </productMenu>
  1950. <productMenu id="volume"
  1951. type="11" >
  1952. </productMenu>
  1953. <productMenu id="battery"
  1954. type="1" >
  1955. </productMenu>
  1956. <productID id="3210"
  1957. />
  1958. <productGroupable type="0"
  1959. />
  1960. </product>
  1961. <product id="50S"
  1962. name="50S"
  1963. series="50"
  1964. latestVersion="1.5.1"
  1965. show = "-1" >
  1966. <productMenu id="protocol"
  1967. type="2" >
  1968. </productMenu>
  1969. <productMenu id="alexa"
  1970. type="0" >
  1971. </productMenu>
  1972. <productMenu id="wa"
  1973. type="1" >
  1974. </productMenu>
  1975. <productMenu id="sip"
  1976. type="1" >
  1977. </productMenu>
  1978. <productMenu id="meshIntercom"
  1979. type="30" >
  1980. <productMenuType version="1.2.2"
  1981. type="20"
  1982. />
  1983. </productMenu>
  1984. <productMenu id="meshIntercom+"
  1985. type="3"
  1986. url="2" >
  1987. <productMenuType version="1.4.9"
  1988. type="2"
  1989. />
  1990. <productMenuURL version="1.2.2"
  1991. url="0"
  1992. />
  1993. </productMenu>
  1994. <productMenu id="waveIntercom"
  1995. type="1" >
  1996. <productMenuType version="1.3.9"
  1997. type="0"
  1998. />
  1999. </productMenu>
  2000. <productMenu id="bluetoothIntercom"
  2001. type="1" >
  2002. </productMenu>
  2003. <productMenu id="phone"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="music"
  2007. type="1" >
  2008. </productMenu>
  2009. <productMenu id="fmradio"
  2010. type="1" >
  2011. </productMenu>
  2012. <productMenu id="deviceSetting"
  2013. type="1"
  2014. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2015. <productMenuURL version="1.4.9"
  2016. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2017. />
  2018. <productMenuURL version="1.3.9"
  2019. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2020. />
  2021. <productMenuURL version="1.2.2"
  2022. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2023. />
  2024. <productMenuURL version="1.1.1"
  2025. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2026. />
  2027. </productMenu>
  2028. <productMenu id="quickGuide"
  2029. type="0"
  2030. url=""
  2031. size="934KB" >
  2032. </productMenu>
  2033. <productMenu id="userGuide"
  2034. type="1"
  2035. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2036. size="1.14MB" >
  2037. </productMenu>
  2038. <productMenu id="videoGuide"
  2039. type="1"
  2040. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2041. size="3.41MB" >
  2042. </productMenu>
  2043. <productMenu id="volume"
  2044. type="11" >
  2045. </productMenu>
  2046. <productMenu id="battery"
  2047. type="1" >
  2048. </productMenu>
  2049. <productID id="3132"
  2050. />
  2051. <productGroupable type="0"
  2052. />
  2053. </product>
  2054. <product id="50R"
  2055. name="50R"
  2056. series="50"
  2057. latestVersion="2.7.1"
  2058. show = "1" >
  2059. <productMenu id="protocol"
  2060. type="2" >
  2061. </productMenu>
  2062. <productMenu id="alexa"
  2063. type="0" >
  2064. </productMenu>
  2065. <productMenu id="ota"
  2066. type="0"
  2067. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2068. size="1150234" >
  2069. </productMenu>
  2070. <productMenu id="wa"
  2071. type="1" >
  2072. </productMenu>
  2073. <productMenu id="sip"
  2074. type="1" >
  2075. </productMenu>
  2076. <productMenu id="meshIntercom"
  2077. type="30" >
  2078. <productMenuType version="2.1.1"
  2079. type="20"
  2080. />
  2081. </productMenu>
  2082. <productMenu id="meshIntercom+"
  2083. type="3"
  2084. url="2" >
  2085. <productMenuType version="2.5.9"
  2086. type="2"
  2087. />
  2088. <productMenuURL version="2.1.1"
  2089. url="0"
  2090. />
  2091. </productMenu>
  2092. <productMenu id="waveIntercom"
  2093. type="1" >
  2094. <productMenuType version="2.6"
  2095. type="0"
  2096. />
  2097. </productMenu>
  2098. <productMenu id="bluetoothIntercom"
  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="fmradio"
  2108. type="1" >
  2109. </productMenu>
  2110. <productMenu id="deviceSetting"
  2111. type="1"
  2112. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2113. <productMenuURL version="2.5.9"
  2114. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2115. />
  2116. <productMenuURL version="2.1.1"
  2117. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2118. />
  2119. <productMenuURL version="2.0"
  2120. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2121. />
  2122. </productMenu>
  2123. <productMenu id="quickGuide"
  2124. type="0"
  2125. url=""
  2126. size="344KB" >
  2127. </productMenu>
  2128. <productMenu id="userGuide"
  2129. type="1"
  2130. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2131. size="3.41MB" >
  2132. </productMenu>
  2133. <productMenu id="videoGuide"
  2134. type="1"
  2135. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2136. size="3.41MB" >
  2137. </productMenu>
  2138. <productMenu id="connectGuide"
  2139. type="1"
  2140. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2141. size="1.12MB" >
  2142. </productMenu>
  2143. <productMenu id="volume"
  2144. type="11" >
  2145. </productMenu>
  2146. <productMenu id="battery"
  2147. type="1" >
  2148. </productMenu>
  2149. <productID id="3218"
  2150. />
  2151. <productGroupable type="0"
  2152. />
  2153. </product>
  2154. <product id="50R"
  2155. name="50R"
  2156. series="50"
  2157. latestVersion="1.5.1"
  2158. show = "-1" >
  2159. <productMenu id="protocol"
  2160. type="2" >
  2161. </productMenu>
  2162. <productMenu id="alexa"
  2163. type="0" >
  2164. </productMenu>
  2165. <productMenu id="wa"
  2166. type="1" >
  2167. </productMenu>
  2168. <productMenu id="sip"
  2169. type="1" >
  2170. </productMenu>
  2171. <productMenu id="meshIntercom"
  2172. type="30" >
  2173. <productMenuType version="1.2.2"
  2174. type="20"
  2175. />
  2176. </productMenu>
  2177. <productMenu id="meshIntercom+"
  2178. type="3"
  2179. url="2" >
  2180. <productMenuType version="1.4.9"
  2181. type="2"
  2182. />
  2183. <productMenuURL version="1.2.2"
  2184. url="0"
  2185. />
  2186. </productMenu>
  2187. <productMenu id="waveIntercom"
  2188. type="1" >
  2189. <productMenuType version="1.3.9"
  2190. type="0"
  2191. />
  2192. </productMenu>
  2193. <productMenu id="bluetoothIntercom"
  2194. type="1" >
  2195. </productMenu>
  2196. <productMenu id="phone"
  2197. type="1" >
  2198. </productMenu>
  2199. <productMenu id="music"
  2200. type="1" >
  2201. </productMenu>
  2202. <productMenu id="fmradio"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="deviceSetting"
  2206. type="1"
  2207. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2208. <productMenuURL version="1.4.9"
  2209. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2210. />
  2211. <productMenuURL version="1.3.9"
  2212. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2213. />
  2214. <productMenuURL version="1.2.2"
  2215. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2216. />
  2217. <productMenuURL version="1.1.1"
  2218. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2219. />
  2220. </productMenu>
  2221. <productMenu id="quickGuide"
  2222. type="0"
  2223. url=""
  2224. size="344KB" >
  2225. </productMenu>
  2226. <productMenu id="userGuide"
  2227. type="1"
  2228. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2229. size="3.41MB" >
  2230. </productMenu>
  2231. <productMenu id="videoGuide"
  2232. type="1"
  2233. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2234. size="3.41MB" >
  2235. </productMenu>
  2236. <productMenu id="volume"
  2237. type="11" >
  2238. </productMenu>
  2239. <productMenu id="battery"
  2240. type="1" >
  2241. </productMenu>
  2242. <productID id="3134"
  2243. />
  2244. <productGroupable type="0"
  2245. />
  2246. </product>
  2247. <product id="50C"
  2248. name="50C"
  2249. series="50"
  2250. latestVersion="1.4.3"
  2251. show = "1" >
  2252. <productMenu id="protocol"
  2253. type="2" >
  2254. </productMenu>
  2255. <productMenu id="ota"
  2256. type="0" >
  2257. </productMenu>
  2258. <productMenu id="wa"
  2259. type="1" >
  2260. </productMenu>
  2261. <productMenu id="sip"
  2262. type="1" >
  2263. </productMenu>
  2264. <productMenu id="meshIntercom"
  2265. type="30" >
  2266. <productMenuType version="1.1.1"
  2267. type="20"
  2268. />
  2269. </productMenu>
  2270. <productMenu id="meshIntercom+"
  2271. type="3"
  2272. url="2" >
  2273. <productMenuType version="1.3.9"
  2274. type="2"
  2275. />
  2276. <productMenuURL version="1.1.1"
  2277. url="0"
  2278. />
  2279. </productMenu>
  2280. <productMenu id="waveIntercom"
  2281. type="1" >
  2282. <productMenuType version="1.2.9"
  2283. type="0"
  2284. />
  2285. </productMenu>
  2286. <productMenu id="bluetoothIntercom"
  2287. type="1" >
  2288. </productMenu>
  2289. <productMenu id="phone"
  2290. type="1" >
  2291. </productMenu>
  2292. <productMenu id="music"
  2293. type="1" >
  2294. </productMenu>
  2295. <productMenu id="fmradio"
  2296. type="1" >
  2297. </productMenu>
  2298. <productMenu id="deviceSetting"
  2299. type="1"
  2300. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2301. <productMenuURL version="1.3.9"
  2302. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2303. />
  2304. <productMenuURL version="1.1.1"
  2305. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2306. />
  2307. <productMenuURL version="1.0.1"
  2308. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2309. />
  2310. </productMenu>
  2311. <productMenu id="quickGuide"
  2312. type="0"
  2313. url=""
  2314. size="344KB" >
  2315. </productMenu>
  2316. <productMenu id="userGuide"
  2317. type="1"
  2318. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2319. size="3.41MB" >
  2320. </productMenu>
  2321. <productMenu id="connectGuide"
  2322. type="1"
  2323. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2324. size="1.12MB" >
  2325. </productMenu>
  2326. <productMenu id="volume"
  2327. type="11" >
  2328. </productMenu>
  2329. <productMenu id="battery"
  2330. type="1" >
  2331. </productMenu>
  2332. <productID id="3232"
  2333. />
  2334. <productGroupable type="0"
  2335. />
  2336. </product>
  2337. <product id="PHANTOMXB"
  2338. name="PHANTOM XB"
  2339. series="Helmet"
  2340. latestVersion="1.2.9"
  2341. latestVersionVoicePrompt="1.6"
  2342. show = "-1" >
  2343. <productMenu id="protocol"
  2344. type="2" >
  2345. </productMenu>
  2346. <productMenu id="ota"
  2347. type="2" >
  2348. <otaLanguages>
  2349. <otaLanguage
  2350. id="0"
  2351. name="English"
  2352. package="0"
  2353. />
  2354. <otaLanguage
  2355. id="0"
  2356. name="French"
  2357. package="1"
  2358. />
  2359. <otaLanguage
  2360. id="0"
  2361. name="Spanish"
  2362. package="2"
  2363. />
  2364. <otaLanguage
  2365. id="0"
  2366. name="Italian"
  2367. package="3"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="German"
  2372. package="4"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Dutch"
  2377. package="5"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Russian"
  2382. package="6"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="Chinese"
  2387. package="7"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Korean"
  2392. package="8"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Japanese"
  2397. package="9"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Finnish"
  2402. package="10"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Polish"
  2407. package="11"
  2408. />
  2409. </otaLanguages>
  2410. <otaPackages>
  2411. <package
  2412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2413. size="5183988"
  2414. />
  2415. <package
  2416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2417. size="5183988"
  2418. />
  2419. <package
  2420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2421. size="5183988"
  2422. />
  2423. <package
  2424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2425. size="5183988"
  2426. />
  2427. <package
  2428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2429. size="5183988"
  2430. />
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2457. size="5183988"
  2458. />
  2459. </otaPackages>
  2460. </productMenu>
  2461. <productMenu id="wa"
  2462. type="0" >
  2463. </productMenu>
  2464. <productMenu id="led"
  2465. type="5" >
  2466. </productMenu>
  2467. <productMenu id="led+"
  2468. type="2"
  2469. url="1" >
  2470. </productMenu>
  2471. <productMenu id="meshIntercom"
  2472. type="30" >
  2473. </productMenu>
  2474. <productMenu id="meshIntercom+"
  2475. type="3"
  2476. url="2" >
  2477. </productMenu>
  2478. <productMenu id="waveIntercom"
  2479. type="1" >
  2480. </productMenu>
  2481. <productMenu id="fmradio"
  2482. type="0" >
  2483. </productMenu>
  2484. <productMenu id="phone"
  2485. type="1" >
  2486. </productMenu>
  2487. <productMenu id="music"
  2488. type="1" >
  2489. </productMenu>
  2490. <productMenu id="musicSharing"
  2491. type="0" >
  2492. </productMenu>
  2493. <productMenu id="deviceSetting"
  2494. type="1"
  2495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2496. <productMenuURL version="1.2.4"
  2497. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2498. />
  2499. </productMenu>
  2500. <productMenu id="quickGuide"
  2501. type="0"
  2502. url=""
  2503. size="1.12MB" >
  2504. </productMenu>
  2505. <productMenu id="userGuide"
  2506. type="1"
  2507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2508. size="2.0MB" >
  2509. </productMenu>
  2510. <productMenu id="videoGuide"
  2511. type="0"
  2512. url=""
  2513. size="3.41MB" >
  2514. </productMenu>
  2515. <productMenu id="volume"
  2516. type="16" >
  2517. </productMenu>
  2518. <productMenu id="volume+"
  2519. type="2"
  2520. url="0x6004" >
  2521. </productMenu>
  2522. <productMenu id="battery"
  2523. type="1" >
  2524. </productMenu>
  2525. <productID id="6A0F"
  2526. />
  2527. <productGroupable type="0"
  2528. />
  2529. </product>
  2530. <product id="PHANTOMXB"
  2531. name="PHANTOM XB"
  2532. series="Helmet"
  2533. latestVersion="1.2.9"
  2534. latestVersionVoicePrompt="1.6"
  2535. show = "-1" >
  2536. <productMenu id="protocol"
  2537. type="2" >
  2538. </productMenu>
  2539. <productMenu id="ota"
  2540. type="2" >
  2541. <otaLanguages>
  2542. <otaLanguage
  2543. id="0"
  2544. name="English"
  2545. package="0"
  2546. />
  2547. <otaLanguage
  2548. id="0"
  2549. name="French"
  2550. package="1"
  2551. />
  2552. <otaLanguage
  2553. id="0"
  2554. name="Spanish"
  2555. package="2"
  2556. />
  2557. <otaLanguage
  2558. id="0"
  2559. name="Italian"
  2560. package="3"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="German"
  2565. package="4"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Dutch"
  2570. package="5"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Russian"
  2575. package="6"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="Chinese"
  2580. package="7"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Korean"
  2585. package="8"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Japanese"
  2590. package="9"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Finnish"
  2595. package="10"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Polish"
  2600. package="11"
  2601. />
  2602. </otaLanguages>
  2603. <otaPackages>
  2604. <package
  2605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2606. size="5183988"
  2607. />
  2608. <package
  2609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2610. size="5183988"
  2611. />
  2612. <package
  2613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2614. size="5183988"
  2615. />
  2616. <package
  2617. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2618. size="5183988"
  2619. />
  2620. <package
  2621. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2622. size="5183988"
  2623. />
  2624. <package
  2625. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2626. size="5183988"
  2627. />
  2628. <package
  2629. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2630. size="5183988"
  2631. />
  2632. <package
  2633. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2634. size="5183988"
  2635. />
  2636. <package
  2637. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2638. size="5183988"
  2639. />
  2640. <package
  2641. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2642. size="5183988"
  2643. />
  2644. <package
  2645. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2646. size="5183988"
  2647. />
  2648. <package
  2649. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2650. size="5183988"
  2651. />
  2652. </otaPackages>
  2653. </productMenu>
  2654. <productMenu id="wa"
  2655. type="0" >
  2656. </productMenu>
  2657. <productMenu id="led"
  2658. type="5" >
  2659. </productMenu>
  2660. <productMenu id="led+"
  2661. type="2"
  2662. url="1" >
  2663. </productMenu>
  2664. <productMenu id="meshIntercom"
  2665. type="30" >
  2666. </productMenu>
  2667. <productMenu id="meshIntercom+"
  2668. type="3"
  2669. url="2" >
  2670. </productMenu>
  2671. <productMenu id="waveIntercom"
  2672. type="1" >
  2673. </productMenu>
  2674. <productMenu id="fmradio"
  2675. type="0" >
  2676. </productMenu>
  2677. <productMenu id="phone"
  2678. type="1" >
  2679. </productMenu>
  2680. <productMenu id="music"
  2681. type="1" >
  2682. </productMenu>
  2683. <productMenu id="musicSharing"
  2684. type="0" >
  2685. </productMenu>
  2686. <productMenu id="deviceSetting"
  2687. type="1"
  2688. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2689. <productMenuURL version="1.2.4"
  2690. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2691. />
  2692. <productMenuURL version="1.2.1"
  2693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2694. />
  2695. </productMenu>
  2696. <productMenu id="quickGuide"
  2697. type="0"
  2698. url=""
  2699. size="1.12MB" >
  2700. </productMenu>
  2701. <productMenu id="userGuide"
  2702. type="1"
  2703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2704. size="2.0MB" >
  2705. </productMenu>
  2706. <productMenu id="videoGuide"
  2707. type="0"
  2708. url=""
  2709. size="3.41MB" >
  2710. </productMenu>
  2711. <productMenu id="volume"
  2712. type="16" >
  2713. </productMenu>
  2714. <productMenu id="volume+"
  2715. type="2"
  2716. url="0x6004" >
  2717. </productMenu>
  2718. <productMenu id="battery"
  2719. type="1" >
  2720. </productMenu>
  2721. <productID id="6A0C"
  2722. />
  2723. <productGroupable type="0"
  2724. />
  2725. </product>
  2726. <product id="PHANTOMKV"
  2727. name="PHANTOM KV"
  2728. series="Helmet"
  2729. latestVersion="1.2.10"
  2730. latestVersionVoicePrompt="1.7"
  2731. show = "-1" >
  2732. <productMenu id="protocol"
  2733. type="2" >
  2734. </productMenu>
  2735. <productMenu id="ota"
  2736. type="2" >
  2737. <otaLanguages>
  2738. <otaLanguage
  2739. id="0"
  2740. name="English"
  2741. package="0"
  2742. />
  2743. <otaLanguage
  2744. id="0"
  2745. name="French"
  2746. package="1"
  2747. />
  2748. <otaLanguage
  2749. id="0"
  2750. name="Spanish"
  2751. package="2"
  2752. />
  2753. <otaLanguage
  2754. id="0"
  2755. name="Italian"
  2756. package="3"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="German"
  2761. package="4"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Dutch"
  2766. package="5"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Russian"
  2771. package="6"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="Chinese"
  2776. package="7"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Korean"
  2781. package="8"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Japanese"
  2786. package="9"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Finnish"
  2791. package="10"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Polish"
  2796. package="11"
  2797. />
  2798. </otaLanguages>
  2799. <otaPackages>
  2800. <package
  2801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2802. size="5183988"
  2803. />
  2804. <package
  2805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2806. size="5183988"
  2807. />
  2808. <package
  2809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2810. size="5183988"
  2811. />
  2812. <package
  2813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2814. size="5183988"
  2815. />
  2816. <package
  2817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2818. size="5183988"
  2819. />
  2820. <package
  2821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2822. size="5183988"
  2823. />
  2824. <package
  2825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2826. size="5183988"
  2827. />
  2828. <package
  2829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2830. size="5183988"
  2831. />
  2832. <package
  2833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2834. size="5183988"
  2835. />
  2836. <package
  2837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2838. size="5183988"
  2839. />
  2840. <package
  2841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2842. size="5183988"
  2843. />
  2844. <package
  2845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2846. size="5183988"
  2847. />
  2848. </otaPackages>
  2849. </productMenu>
  2850. <productMenu id="wa"
  2851. type="0" >
  2852. </productMenu>
  2853. <productMenu id="led"
  2854. type="5" >
  2855. </productMenu>
  2856. <productMenu id="led+"
  2857. type="2"
  2858. url="1" >
  2859. </productMenu>
  2860. <productMenu id="meshIntercom"
  2861. type="30" >
  2862. </productMenu>
  2863. <productMenu id="meshIntercom+"
  2864. type="3"
  2865. url="2" >
  2866. </productMenu>
  2867. <productMenu id="waveIntercom"
  2868. type="1" >
  2869. </productMenu>
  2870. <productMenu id="fmradio"
  2871. type="0" >
  2872. </productMenu>
  2873. <productMenu id="phone"
  2874. type="1" >
  2875. </productMenu>
  2876. <productMenu id="music"
  2877. type="1" >
  2878. </productMenu>
  2879. <productMenu id="musicSharing"
  2880. type="0" >
  2881. </productMenu>
  2882. <productMenu id="deviceSetting"
  2883. type="1"
  2884. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2885. <productMenuURL version="1.2.4"
  2886. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2887. />
  2888. </productMenu>
  2889. <productMenu id="quickGuide"
  2890. type="0"
  2891. url=""
  2892. size="1.12MB" >
  2893. </productMenu>
  2894. <productMenu id="userGuide"
  2895. type="1"
  2896. url=""
  2897. size="2.0MB" >
  2898. </productMenu>
  2899. <productMenu id="videoGuide"
  2900. type="0"
  2901. url=""
  2902. size="3.41MB" >
  2903. </productMenu>
  2904. <productMenu id="volume"
  2905. type="16" >
  2906. </productMenu>
  2907. <productMenu id="volume+"
  2908. type="2"
  2909. url="0x6004" >
  2910. </productMenu>
  2911. <productMenu id="soundMode"
  2912. type="1" >
  2913. </productMenu>
  2914. <productMenu id="battery"
  2915. type="1" >
  2916. </productMenu>
  2917. <productID id="6A13"
  2918. />
  2919. <productGroupable type="0"
  2920. />
  2921. </product>
  2922. <product id="PHANTOMCamera"
  2923. name="PHANTOM Camera"
  2924. series="Helmet"
  2925. latestVersion="1.0.1"
  2926. latestVersionVoicePrompt="0.4"
  2927. show = "-1" >
  2928. <productMenu id="protocol"
  2929. type="2" >
  2930. </productMenu>
  2931. <productMenu id="ota"
  2932. type="3" >
  2933. <otaLanguages>
  2934. <otaLanguage
  2935. id="0"
  2936. name="English"
  2937. package="0"
  2938. />
  2939. <otaLanguage
  2940. id="0"
  2941. name="French"
  2942. package="1"
  2943. />
  2944. <otaLanguage
  2945. id="0"
  2946. name="Spanish"
  2947. package="2"
  2948. />
  2949. <otaLanguage
  2950. id="0"
  2951. name="Italian"
  2952. package="3"
  2953. />
  2954. <otaLanguage
  2955. id="0"
  2956. name="German"
  2957. package="4"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="Dutch"
  2962. package="5"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Russian"
  2967. package="6"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Chinese"
  2972. package="7"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="Korean"
  2977. package="8"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Japanese"
  2982. package="9"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Finnish"
  2987. package="10"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Polish"
  2992. package="11"
  2993. />
  2994. </otaLanguages>
  2995. <otaPackages>
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3010. size="5183988"
  3011. />
  3012. <package
  3013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3014. size="5183988"
  3015. />
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3042. size="5183988"
  3043. />
  3044. </otaPackages>
  3045. </productMenu>
  3046. <productMenu id="wa"
  3047. type="0" >
  3048. </productMenu>
  3049. <productMenu id="led"
  3050. type="5" >
  3051. </productMenu>
  3052. <productMenu id="led+"
  3053. type="2"
  3054. url="1" >
  3055. </productMenu>
  3056. <productMenu id="meshIntercom"
  3057. type="30" >
  3058. </productMenu>
  3059. <productMenu id="meshIntercom+"
  3060. type="3"
  3061. url="2" >
  3062. </productMenu>
  3063. <productMenu id="waveIntercom"
  3064. type="1" >
  3065. </productMenu>
  3066. <productMenu id="fmradio"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="phone"
  3070. type="1" >
  3071. </productMenu>
  3072. <productMenu id="music"
  3073. type="1" >
  3074. </productMenu>
  3075. <productMenu id="musicSharing"
  3076. type="0" >
  3077. </productMenu>
  3078. <productMenu id="deviceSetting"
  3079. type="1"
  3080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3081. </productMenu>
  3082. <productMenu id="quickGuide"
  3083. type="0"
  3084. url=""
  3085. size="1.12MB" >
  3086. </productMenu>
  3087. <productMenu id="userGuide"
  3088. type="1"
  3089. url=""
  3090. size="2.0MB" >
  3091. </productMenu>
  3092. <productMenu id="videoGuide"
  3093. type="0"
  3094. url=""
  3095. size="3.41MB" >
  3096. </productMenu>
  3097. <productMenu id="volume"
  3098. type="16" >
  3099. </productMenu>
  3100. <productMenu id="battery"
  3101. type="1" >
  3102. </productMenu>
  3103. <productID id="6A10"
  3104. />
  3105. <productGroupable type="0"
  3106. />
  3107. </product>
  3108. <product id="PHANTOMCamera"
  3109. name="PHANTOM Camera"
  3110. series="Helmet"
  3111. latestVersion="1.0.1"
  3112. latestVersionVoicePrompt="0.4"
  3113. show = "-1" >
  3114. <productMenu id="protocol"
  3115. type="2" >
  3116. </productMenu>
  3117. <productMenu id="ota"
  3118. type="3" >
  3119. <otaLanguages>
  3120. <otaLanguage
  3121. id="0"
  3122. name="English"
  3123. package="0"
  3124. />
  3125. <otaLanguage
  3126. id="0"
  3127. name="French"
  3128. package="1"
  3129. />
  3130. <otaLanguage
  3131. id="0"
  3132. name="Spanish"
  3133. package="2"
  3134. />
  3135. <otaLanguage
  3136. id="0"
  3137. name="Italian"
  3138. package="3"
  3139. />
  3140. <otaLanguage
  3141. id="0"
  3142. name="German"
  3143. package="4"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="Dutch"
  3148. package="5"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Russian"
  3153. package="6"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Chinese"
  3158. package="7"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="Korean"
  3163. package="8"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Japanese"
  3168. package="9"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Finnish"
  3173. package="10"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Polish"
  3178. package="11"
  3179. />
  3180. </otaLanguages>
  3181. <otaPackages>
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3196. size="5183988"
  3197. />
  3198. <package
  3199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3200. size="5183988"
  3201. />
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3228. size="5183988"
  3229. />
  3230. </otaPackages>
  3231. </productMenu>
  3232. <productMenu id="wa"
  3233. type="0" >
  3234. </productMenu>
  3235. <productMenu id="led"
  3236. type="5" >
  3237. </productMenu>
  3238. <productMenu id="led+"
  3239. type="2"
  3240. url="1" >
  3241. </productMenu>
  3242. <productMenu id="meshIntercom"
  3243. type="30" >
  3244. </productMenu>
  3245. <productMenu id="meshIntercom+"
  3246. type="3"
  3247. url="2" >
  3248. </productMenu>
  3249. <productMenu id="waveIntercom"
  3250. type="1" >
  3251. </productMenu>
  3252. <productMenu id="fmradio"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="phone"
  3256. type="1" >
  3257. </productMenu>
  3258. <productMenu id="music"
  3259. type="1" >
  3260. </productMenu>
  3261. <productMenu id="musicSharing"
  3262. type="0" >
  3263. </productMenu>
  3264. <productMenu id="deviceSetting"
  3265. type="1"
  3266. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3267. </productMenu>
  3268. <productMenu id="quickGuide"
  3269. type="0"
  3270. url=""
  3271. size="1.12MB" >
  3272. </productMenu>
  3273. <productMenu id="userGuide"
  3274. type="1"
  3275. url=""
  3276. size="2.0MB" >
  3277. </productMenu>
  3278. <productMenu id="videoGuide"
  3279. type="0"
  3280. url=""
  3281. size="3.41MB" >
  3282. </productMenu>
  3283. <productMenu id="volume"
  3284. type="16" >
  3285. </productMenu>
  3286. <productMenu id="battery"
  3287. type="1" >
  3288. </productMenu>
  3289. <productID id="6A09"
  3290. />
  3291. <productGroupable type="0"
  3292. />
  3293. </product>
  3294. <product id="PHANTOM"
  3295. name="PHANTOM ANC"
  3296. series="Helmet"
  3297. latestVersion="1.2.9"
  3298. latestVersionVoicePrompt="1.7"
  3299. show = "1" >
  3300. <productMenu id="protocol"
  3301. type="2" >
  3302. </productMenu>
  3303. <productMenu id="ota"
  3304. type="2" >
  3305. <productMenuType version="0.6.9"
  3306. type="0"
  3307. />
  3308. <otaLanguages>
  3309. <otaLanguage
  3310. id="0"
  3311. name="English"
  3312. package="0"
  3313. />
  3314. <otaLanguage
  3315. id="0"
  3316. name="French"
  3317. package="1"
  3318. />
  3319. <otaLanguage
  3320. id="0"
  3321. name="Spanish"
  3322. package="2"
  3323. />
  3324. <otaLanguage
  3325. id="0"
  3326. name="Italian"
  3327. package="3"
  3328. />
  3329. <otaLanguage
  3330. id="0"
  3331. name="German"
  3332. package="4"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="Dutch"
  3337. package="5"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Russian"
  3342. package="6"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Chinese"
  3347. package="7"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="Korean"
  3352. package="8"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Japanese"
  3357. package="9"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Finnish"
  3362. package="10"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Polish"
  3367. package="11"
  3368. />
  3369. </otaLanguages>
  3370. <otaPackages>
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3417. size="5183988"
  3418. />
  3419. </otaPackages>
  3420. </productMenu>
  3421. <productMenu id="wa"
  3422. type="0" >
  3423. </productMenu>
  3424. <productMenu id="led"
  3425. type="5" >
  3426. </productMenu>
  3427. <productMenu id="led+"
  3428. type="2"
  3429. url="1" >
  3430. </productMenu>
  3431. <productMenu id="meshIntercom"
  3432. type="30" >
  3433. </productMenu>
  3434. <productMenu id="meshIntercom+"
  3435. type="3"
  3436. url="2" >
  3437. <productMenuURL version="1.0.4"
  3438. url="10"
  3439. />
  3440. </productMenu>
  3441. <productMenu id="waveIntercom"
  3442. type="1" >
  3443. <productMenuType version="1.0.9"
  3444. type="0"
  3445. />
  3446. </productMenu>
  3447. <productMenu id="fmradio"
  3448. type="0" >
  3449. </productMenu>
  3450. <productMenu id="phone"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="music"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="musicSharing"
  3457. type="0" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3462. <productMenuURL version="1.2.4"
  3463. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3464. />
  3465. <productMenuURL version="1.2.1"
  3466. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3467. />
  3468. <productMenuURL version="1.1.2"
  3469. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3470. />
  3471. <productMenuURL version="1.0.4"
  3472. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3473. />
  3474. </productMenu>
  3475. <productMenu id="quickGuide"
  3476. type="0"
  3477. url=""
  3478. size="1.12MB" >
  3479. </productMenu>
  3480. <productMenu id="userGuide"
  3481. type="1"
  3482. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3483. size="2.0MB" >
  3484. </productMenu>
  3485. <productMenu id="videoGuide"
  3486. type="0"
  3487. url=""
  3488. size="3.41MB" >
  3489. </productMenu>
  3490. <productMenu id="volume"
  3491. type="16" >
  3492. </productMenu>
  3493. <productMenu id="volume+"
  3494. type="2"
  3495. url="0x6004" >
  3496. </productMenu>
  3497. <productMenu id="soundMode"
  3498. type="1" >
  3499. <productMenuType version="0.9.11"
  3500. type="0"
  3501. />
  3502. </productMenu>
  3503. <productMenu id="battery"
  3504. type="1" >
  3505. </productMenu>
  3506. <productID id="6A01"
  3507. />
  3508. <productGroupable type="0"
  3509. />
  3510. </product>
  3511. <product id="PHANTOM"
  3512. name="PHANTOM ANC"
  3513. series="Helmet"
  3514. latestVersion="1.2.9"
  3515. latestVersionVoicePrompt="1.7"
  3516. show = "-1" >
  3517. <productMenu id="protocol"
  3518. type="2" >
  3519. </productMenu>
  3520. <productMenu id="ota"
  3521. type="2" >
  3522. <otaLanguages>
  3523. <otaLanguage
  3524. id="0"
  3525. name="English"
  3526. package="0"
  3527. />
  3528. <otaLanguage
  3529. id="0"
  3530. name="French"
  3531. package="1"
  3532. />
  3533. <otaLanguage
  3534. id="0"
  3535. name="Spanish"
  3536. package="2"
  3537. />
  3538. <otaLanguage
  3539. id="0"
  3540. name="Italian"
  3541. package="3"
  3542. />
  3543. <otaLanguage
  3544. id="0"
  3545. name="German"
  3546. package="4"
  3547. />
  3548. <otaLanguage
  3549. id="0"
  3550. name="Dutch"
  3551. package="5"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="Russian"
  3556. package="6"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Chinese"
  3561. package="7"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Korean"
  3566. package="8"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="Japanese"
  3571. package="9"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Finnish"
  3576. package="10"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Polish"
  3581. package="11"
  3582. />
  3583. </otaLanguages>
  3584. <otaPackages>
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3599. size="5183988"
  3600. />
  3601. <package
  3602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3603. size="5183988"
  3604. />
  3605. <package
  3606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3607. size="5183988"
  3608. />
  3609. <package
  3610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3623. size="5183988"
  3624. />
  3625. <package
  3626. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3627. size="5183988"
  3628. />
  3629. <package
  3630. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3631. size="5183988"
  3632. />
  3633. </otaPackages>
  3634. </productMenu>
  3635. <productMenu id="led"
  3636. type="5" >
  3637. </productMenu>
  3638. <productMenu id="led+"
  3639. type="2"
  3640. url="1" >
  3641. </productMenu>
  3642. <productMenu id="meshIntercom"
  3643. type="30" >
  3644. </productMenu>
  3645. <productMenu id="meshIntercom+"
  3646. type="3"
  3647. url="2" >
  3648. </productMenu>
  3649. <productMenu id="waveIntercom"
  3650. type="1" >
  3651. </productMenu>
  3652. <productMenu id="fmradio"
  3653. type="0" >
  3654. </productMenu>
  3655. <productMenu id="phone"
  3656. type="1" >
  3657. </productMenu>
  3658. <productMenu id="music"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="musicSharing"
  3662. type="0" >
  3663. </productMenu>
  3664. <productMenu id="deviceSetting"
  3665. type="1"
  3666. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3667. <productMenuURL version="1.2.4"
  3668. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3669. />
  3670. </productMenu>
  3671. <productMenu id="quickGuide"
  3672. type="0"
  3673. url=""
  3674. size="1.12MB" >
  3675. </productMenu>
  3676. <productMenu id="userGuide"
  3677. type="1"
  3678. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3679. size="2.0MB" >
  3680. </productMenu>
  3681. <productMenu id="videoGuide"
  3682. type="0"
  3683. url=""
  3684. size="3.41MB" >
  3685. </productMenu>
  3686. <productMenu id="volume"
  3687. type="16" >
  3688. </productMenu>
  3689. <productMenu id="volume+"
  3690. type="2"
  3691. url="0x6004" >
  3692. </productMenu>
  3693. <productMenu id="soundMode"
  3694. type="1" >
  3695. </productMenu>
  3696. <productMenu id="battery"
  3697. type="1" >
  3698. </productMenu>
  3699. <productID id="6A19"
  3700. />
  3701. <productGroupable type="0"
  3702. />
  3703. </product>
  3704. <product id="PHANTOM"
  3705. name="PHANTOM"
  3706. series="Helmet"
  3707. latestVersion="1.2.9"
  3708. latestVersionVoicePrompt="1.7"
  3709. show = "-1" >
  3710. <productMenu id="protocol"
  3711. type="2" >
  3712. </productMenu>
  3713. <productMenu id="ota"
  3714. type="2" >
  3715. <otaLanguages>
  3716. <otaLanguage
  3717. id="0"
  3718. name="English"
  3719. package="0"
  3720. />
  3721. <otaLanguage
  3722. id="0"
  3723. name="French"
  3724. package="1"
  3725. />
  3726. <otaLanguage
  3727. id="0"
  3728. name="Spanish"
  3729. package="2"
  3730. />
  3731. <otaLanguage
  3732. id="0"
  3733. name="Italian"
  3734. package="3"
  3735. />
  3736. <otaLanguage
  3737. id="0"
  3738. name="German"
  3739. package="4"
  3740. />
  3741. <otaLanguage
  3742. id="0"
  3743. name="Dutch"
  3744. package="5"
  3745. />
  3746. <otaLanguage
  3747. id="0"
  3748. name="Russian"
  3749. package="6"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="Chinese"
  3754. package="7"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Korean"
  3759. package="8"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Japanese"
  3764. package="9"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="Finnish"
  3769. package="10"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Polish"
  3774. package="11"
  3775. />
  3776. </otaLanguages>
  3777. <otaPackages>
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3800. size="5183988"
  3801. />
  3802. <package
  3803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3804. size="5183988"
  3805. />
  3806. <package
  3807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3808. size="5183988"
  3809. />
  3810. <package
  3811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3812. size="5183988"
  3813. />
  3814. <package
  3815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3816. size="5183988"
  3817. />
  3818. <package
  3819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3820. size="5183988"
  3821. />
  3822. <package
  3823. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3824. size="5183988"
  3825. />
  3826. </otaPackages>
  3827. </productMenu>
  3828. <productMenu id="wa"
  3829. type="0" >
  3830. </productMenu>
  3831. <productMenu id="led"
  3832. type="5" >
  3833. </productMenu>
  3834. <productMenu id="led+"
  3835. type="2"
  3836. url="1" >
  3837. </productMenu>
  3838. <productMenu id="meshIntercom"
  3839. type="30" >
  3840. </productMenu>
  3841. <productMenu id="meshIntercom+"
  3842. type="3"
  3843. url="2" >
  3844. </productMenu>
  3845. <productMenu id="waveIntercom"
  3846. type="1" >
  3847. </productMenu>
  3848. <productMenu id="fmradio"
  3849. type="0" >
  3850. </productMenu>
  3851. <productMenu id="phone"
  3852. type="1" >
  3853. </productMenu>
  3854. <productMenu id="music"
  3855. type="1" >
  3856. </productMenu>
  3857. <productMenu id="musicSharing"
  3858. type="0" >
  3859. </productMenu>
  3860. <productMenu id="deviceSetting"
  3861. type="1"
  3862. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3863. <productMenuURL version="1.2.4"
  3864. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3865. />
  3866. </productMenu>
  3867. <productMenu id="quickGuide"
  3868. type="0"
  3869. url=""
  3870. size="1.52MB" >
  3871. </productMenu>
  3872. <productMenu id="userGuide"
  3873. type="1"
  3874. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3875. size="2.01MB" >
  3876. </productMenu>
  3877. <productMenu id="videoGuide"
  3878. type="0"
  3879. url=""
  3880. size="3.46MB" >
  3881. </productMenu>
  3882. <productMenu id="connectGuide"
  3883. type="1"
  3884. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3885. size="1.1MB" >
  3886. </productMenu>
  3887. <productMenu id="volume"
  3888. type="16" >
  3889. </productMenu>
  3890. <productMenu id="volume+"
  3891. type="2"
  3892. url="0x6004" >
  3893. </productMenu>
  3894. <productMenu id="battery"
  3895. type="1" >
  3896. </productMenu>
  3897. <productID id="6A0E"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="PHANTOM"
  3903. name="PHANTOM"
  3904. series="Helmet"
  3905. latestVersion="1.2.9"
  3906. latestVersionVoicePrompt="1.7"
  3907. show = "1" >
  3908. <productMenu id="protocol"
  3909. type="2" >
  3910. </productMenu>
  3911. <productMenu id="ota"
  3912. type="2" >
  3913. <otaLanguages>
  3914. <otaLanguage
  3915. id="0"
  3916. name="English"
  3917. package="0"
  3918. />
  3919. <otaLanguage
  3920. id="0"
  3921. name="French"
  3922. package="1"
  3923. />
  3924. <otaLanguage
  3925. id="0"
  3926. name="Spanish"
  3927. package="2"
  3928. />
  3929. <otaLanguage
  3930. id="0"
  3931. name="Italian"
  3932. package="3"
  3933. />
  3934. <otaLanguage
  3935. id="0"
  3936. name="German"
  3937. package="4"
  3938. />
  3939. <otaLanguage
  3940. id="0"
  3941. name="Dutch"
  3942. package="5"
  3943. />
  3944. <otaLanguage
  3945. id="0"
  3946. name="Russian"
  3947. package="6"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="Chinese"
  3952. package="7"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Korean"
  3957. package="8"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Japanese"
  3962. package="9"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="Finnish"
  3967. package="10"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Polish"
  3972. package="11"
  3973. />
  3974. </otaLanguages>
  3975. <otaPackages>
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4018. size="5183988"
  4019. />
  4020. <package
  4021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4022. size="5183988"
  4023. />
  4024. </otaPackages>
  4025. </productMenu>
  4026. <productMenu id="wa"
  4027. type="0" >
  4028. </productMenu>
  4029. <productMenu id="led"
  4030. type="5" >
  4031. <productMenuType version="1.0.1"
  4032. type="4"
  4033. />
  4034. </productMenu>
  4035. <productMenu id="led+"
  4036. type="2"
  4037. url="1" >
  4038. <productMenuType version="1.0.1"
  4039. type="-1"
  4040. />
  4041. </productMenu>
  4042. <productMenu id="meshIntercom"
  4043. type="30" >
  4044. </productMenu>
  4045. <productMenu id="meshIntercom+"
  4046. type="3"
  4047. url="2" >
  4048. <productMenuURL version="1.0.4"
  4049. url="10"
  4050. />
  4051. </productMenu>
  4052. <productMenu id="waveIntercom"
  4053. type="1" >
  4054. <productMenuType version="1.0.9"
  4055. type="0"
  4056. />
  4057. </productMenu>
  4058. <productMenu id="fmradio"
  4059. type="0" >
  4060. </productMenu>
  4061. <productMenu id="phone"
  4062. type="1" >
  4063. </productMenu>
  4064. <productMenu id="music"
  4065. type="1" >
  4066. </productMenu>
  4067. <productMenu id="musicSharing"
  4068. type="0" >
  4069. </productMenu>
  4070. <productMenu id="deviceSetting"
  4071. type="1"
  4072. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4073. <productMenuURL version="1.2.4"
  4074. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4075. />
  4076. <productMenuURL version="1.2.1"
  4077. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4078. />
  4079. <productMenuURL version="1.0.4"
  4080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4081. />
  4082. <productMenuURL version="1.0.1"
  4083. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4084. />
  4085. </productMenu>
  4086. <productMenu id="quickGuide"
  4087. type="0"
  4088. url=""
  4089. size="1.12MB" >
  4090. </productMenu>
  4091. <productMenu id="userGuide"
  4092. type="1"
  4093. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4094. size="2.0MB" >
  4095. </productMenu>
  4096. <productMenu id="videoGuide"
  4097. type="0"
  4098. url=""
  4099. size="3.41MB" >
  4100. </productMenu>
  4101. <productMenu id="connectGuide"
  4102. type="1"
  4103. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4104. size="1.12MB" >
  4105. </productMenu>
  4106. <productMenu id="volume"
  4107. type="16" >
  4108. <productMenuType version="1.0"
  4109. type="13"
  4110. />
  4111. </productMenu>
  4112. <productMenu id="volume+"
  4113. type="2"
  4114. url="0x6004" >
  4115. </productMenu>
  4116. <productMenu id="battery"
  4117. type="1" >
  4118. </productMenu>
  4119. <productID id="6A04"
  4120. />
  4121. <productGroupable type="0"
  4122. />
  4123. </product>
  4124. <product id="PHANTOMEasyLink"
  4125. name="PHANTOM EasyLink"
  4126. series="Helmet"
  4127. latestVersion="0.1"
  4128. latestVersionVoicePrompt="1.2"
  4129. show = "-1" >
  4130. <productMenu id="protocol"
  4131. type="2" >
  4132. </productMenu>
  4133. <productMenu id="ota"
  4134. type="0" >
  4135. <otaLanguages>
  4136. <otaLanguage
  4137. id="0"
  4138. name="English"
  4139. package="0"
  4140. />
  4141. <otaLanguage
  4142. id="0"
  4143. name="French"
  4144. package="1"
  4145. />
  4146. <otaLanguage
  4147. id="0"
  4148. name="Spanish"
  4149. package="2"
  4150. />
  4151. <otaLanguage
  4152. id="0"
  4153. name="Italian"
  4154. package="3"
  4155. />
  4156. <otaLanguage
  4157. id="0"
  4158. name="German"
  4159. package="4"
  4160. />
  4161. <otaLanguage
  4162. id="0"
  4163. name="Dutch"
  4164. package="5"
  4165. />
  4166. <otaLanguage
  4167. id="0"
  4168. name="Russian"
  4169. package="6"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="Chinese"
  4174. package="7"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Korean"
  4179. package="8"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Japanese"
  4184. package="9"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="Finnish"
  4189. package="10"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Polish"
  4194. package="11"
  4195. />
  4196. </otaLanguages>
  4197. <otaPackages>
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4236. size="5183988"
  4237. />
  4238. <package
  4239. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4240. size="5183988"
  4241. />
  4242. <package
  4243. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4244. size="5183988"
  4245. />
  4246. </otaPackages>
  4247. </productMenu>
  4248. <productMenu id="meshIntercom"
  4249. type="30" >
  4250. </productMenu>
  4251. <productMenu id="meshIntercom+"
  4252. type="3"
  4253. url="2" >
  4254. </productMenu>
  4255. <productMenu id="waveIntercom"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="fmradio"
  4259. type="0" >
  4260. </productMenu>
  4261. <productMenu id="phone"
  4262. type="1" >
  4263. </productMenu>
  4264. <productMenu id="music"
  4265. type="1" >
  4266. </productMenu>
  4267. <productMenu id="musicSharing"
  4268. type="0" >
  4269. </productMenu>
  4270. <productMenu id="deviceSetting"
  4271. type="1"
  4272. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4273. </productMenu>
  4274. <productMenu id="quickGuide"
  4275. type="0"
  4276. url=""
  4277. size="1.12MB" >
  4278. </productMenu>
  4279. <productMenu id="userGuide"
  4280. type="1"
  4281. url=""
  4282. size="2.0MB" >
  4283. </productMenu>
  4284. <productMenu id="videoGuide"
  4285. type="0"
  4286. url=""
  4287. size="3.41MB" >
  4288. </productMenu>
  4289. <productMenu id="connectGuide"
  4290. type="0"
  4291. url=""
  4292. size="1.12MB" >
  4293. </productMenu>
  4294. <productMenu id="volume"
  4295. type="16" >
  4296. </productMenu>
  4297. <productMenu id="battery"
  4298. type="1" >
  4299. </productMenu>
  4300. <productID id="6A18"
  4301. />
  4302. <productGroupable type="0"
  4303. />
  4304. </product>
  4305. <product id="SPIDERXSlim"
  4306. name="SPIDER X Slim"
  4307. series="SPIDER"
  4308. latestVersion="1.0"
  4309. latestVersionVoicePrompt="1.7"
  4310. show = "1" >
  4311. <productMenu id="protocol"
  4312. type="2" >
  4313. </productMenu>
  4314. <productMenu id="ota"
  4315. type="2" >
  4316. <otaLanguages>
  4317. <otaLanguage
  4318. id="0"
  4319. name="English"
  4320. package="0"
  4321. />
  4322. <otaLanguage
  4323. id="0"
  4324. name="French"
  4325. package="1"
  4326. />
  4327. <otaLanguage
  4328. id="0"
  4329. name="Spanish"
  4330. package="2"
  4331. />
  4332. <otaLanguage
  4333. id="0"
  4334. name="Italian"
  4335. package="3"
  4336. />
  4337. <otaLanguage
  4338. id="0"
  4339. name="German"
  4340. package="4"
  4341. />
  4342. <otaLanguage
  4343. id="0"
  4344. name="Dutch"
  4345. package="5"
  4346. />
  4347. <otaLanguage
  4348. id="0"
  4349. name="Russian"
  4350. package="6"
  4351. />
  4352. <otaLanguage
  4353. id="0"
  4354. name="Chinese"
  4355. package="7"
  4356. />
  4357. <otaLanguage
  4358. id="0"
  4359. name="Korean"
  4360. package="8"
  4361. />
  4362. <otaLanguage
  4363. id="0"
  4364. name="Japanese"
  4365. package="9"
  4366. />
  4367. <otaLanguage
  4368. id="0"
  4369. name="Finnish"
  4370. package="10"
  4371. />
  4372. <otaLanguage
  4373. id="0"
  4374. name="Polish"
  4375. package="11"
  4376. />
  4377. </otaLanguages>
  4378. <otaPackages>
  4379. <package
  4380. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4425. size="5183988"
  4426. />
  4427. </otaPackages>
  4428. </productMenu>
  4429. <productMenu id="meshIntercom"
  4430. type="30" >
  4431. </productMenu>
  4432. <productMenu id="meshIntercom+"
  4433. type="3"
  4434. url="2" >
  4435. </productMenu>
  4436. <productMenu id="waveIntercom"
  4437. type="1" >
  4438. </productMenu>
  4439. <productMenu id="fmradio"
  4440. type="1"
  4441. url="1" >
  4442. </productMenu>
  4443. <productMenu id="phone"
  4444. type="1" >
  4445. </productMenu>
  4446. <productMenu id="music"
  4447. type="1" >
  4448. </productMenu>
  4449. <productMenu id="musicSharing"
  4450. type="0" >
  4451. </productMenu>
  4452. <productMenu id="deviceSetting"
  4453. type="1"
  4454. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4455. </productMenu>
  4456. <productMenu id="quickGuide"
  4457. type="0"
  4458. url=""
  4459. size="1.12MB" >
  4460. </productMenu>
  4461. <productMenu id="userGuide"
  4462. type="1"
  4463. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4464. size="2.0MB" >
  4465. </productMenu>
  4466. <productMenu id="videoGuide"
  4467. type="0"
  4468. url=""
  4469. size="3.41MB" >
  4470. </productMenu>
  4471. <productMenu id="volume"
  4472. type="16" >
  4473. </productMenu>
  4474. <productMenu id="volume+"
  4475. type="2"
  4476. url="0x6004" >
  4477. </productMenu>
  4478. <productMenu id="appearance"
  4479. type="1"
  4480. url="2|white,silver,chrome,black" >
  4481. </productMenu>
  4482. <productMenu id="battery"
  4483. type="1" >
  4484. </productMenu>
  4485. <productID id="6A07"
  4486. />
  4487. <productGroupable type="0"
  4488. />
  4489. </product>
  4490. <product id="XFITM"
  4491. name="X-FIT M"
  4492. series="SPIDER"
  4493. latestVersion="0.1.11"
  4494. latestVersionVoicePrompt="1.1"
  4495. show = "-1" >
  4496. <productMenu id="protocol"
  4497. type="2" >
  4498. </productMenu>
  4499. <productMenu id="ota"
  4500. type="0" >
  4501. <otaLanguages>
  4502. <otaLanguage
  4503. id="0"
  4504. name="English"
  4505. package="0"
  4506. />
  4507. <otaLanguage
  4508. id="0"
  4509. name="French"
  4510. package="1"
  4511. />
  4512. <otaLanguage
  4513. id="0"
  4514. name="Spanish"
  4515. package="2"
  4516. />
  4517. <otaLanguage
  4518. id="0"
  4519. name="Italian"
  4520. package="3"
  4521. />
  4522. <otaLanguage
  4523. id="0"
  4524. name="German"
  4525. package="4"
  4526. />
  4527. <otaLanguage
  4528. id="0"
  4529. name="Dutch"
  4530. package="5"
  4531. />
  4532. <otaLanguage
  4533. id="0"
  4534. name="Russian"
  4535. package="6"
  4536. />
  4537. <otaLanguage
  4538. id="0"
  4539. name="Chinese"
  4540. package="7"
  4541. />
  4542. <otaLanguage
  4543. id="0"
  4544. name="Korean"
  4545. package="8"
  4546. />
  4547. <otaLanguage
  4548. id="0"
  4549. name="Japanese"
  4550. package="9"
  4551. />
  4552. <otaLanguage
  4553. id="0"
  4554. name="Finnish"
  4555. package="10"
  4556. />
  4557. <otaLanguage
  4558. id="0"
  4559. name="Polish"
  4560. package="11"
  4561. />
  4562. </otaLanguages>
  4563. <otaPackages>
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4602. size="5183988"
  4603. />
  4604. <package
  4605. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4606. size="5183988"
  4607. />
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4610. size="5183988"
  4611. />
  4612. </otaPackages>
  4613. </productMenu>
  4614. <productMenu id="meshIntercom"
  4615. type="30" >
  4616. </productMenu>
  4617. <productMenu id="meshIntercom+"
  4618. type="3"
  4619. url="2" >
  4620. </productMenu>
  4621. <productMenu id="waveIntercom"
  4622. type="1" >
  4623. </productMenu>
  4624. <productMenu id="fmradio"
  4625. type="1"
  4626. url="1" >
  4627. </productMenu>
  4628. <productMenu id="phone"
  4629. type="1" >
  4630. </productMenu>
  4631. <productMenu id="music"
  4632. type="1" >
  4633. </productMenu>
  4634. <productMenu id="musicSharing"
  4635. type="0" >
  4636. </productMenu>
  4637. <productMenu id="deviceSetting"
  4638. type="1"
  4639. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4640. </productMenu>
  4641. <productMenu id="quickGuide"
  4642. type="0"
  4643. url=""
  4644. size="1.12MB" >
  4645. </productMenu>
  4646. <productMenu id="userGuide"
  4647. type="1"
  4648. url=""
  4649. size="2.0MB" >
  4650. </productMenu>
  4651. <productMenu id="videoGuide"
  4652. type="0"
  4653. url=""
  4654. size="3.41MB" >
  4655. </productMenu>
  4656. <productMenu id="volume"
  4657. type="16" >
  4658. </productMenu>
  4659. <productMenu id="volume+"
  4660. type="2"
  4661. url="0x6004" >
  4662. </productMenu>
  4663. <productMenu id="battery"
  4664. type="1" >
  4665. </productMenu>
  4666. <productID id="6A17"
  4667. />
  4668. <productGroupable type="0"
  4669. />
  4670. </product>
  4671. <product id="VORTEXMESH"
  4672. name="VORTEX MESH"
  4673. series="Helmet"
  4674. latestVersion="0.1.11"
  4675. latestVersionVoicePrompt="1.1"
  4676. show = "-1" >
  4677. <productMenu id="protocol"
  4678. type="2" >
  4679. </productMenu>
  4680. <productMenu id="ota"
  4681. type="0" >
  4682. <otaLanguages>
  4683. <otaLanguage
  4684. id="0"
  4685. name="English"
  4686. package="0"
  4687. />
  4688. <otaLanguage
  4689. id="0"
  4690. name="French"
  4691. package="1"
  4692. />
  4693. <otaLanguage
  4694. id="0"
  4695. name="Spanish"
  4696. package="2"
  4697. />
  4698. <otaLanguage
  4699. id="0"
  4700. name="Italian"
  4701. package="3"
  4702. />
  4703. <otaLanguage
  4704. id="0"
  4705. name="German"
  4706. package="4"
  4707. />
  4708. <otaLanguage
  4709. id="0"
  4710. name="Dutch"
  4711. package="5"
  4712. />
  4713. <otaLanguage
  4714. id="0"
  4715. name="Russian"
  4716. package="6"
  4717. />
  4718. <otaLanguage
  4719. id="0"
  4720. name="Chinese"
  4721. package="7"
  4722. />
  4723. <otaLanguage
  4724. id="0"
  4725. name="Korean"
  4726. package="8"
  4727. />
  4728. <otaLanguage
  4729. id="0"
  4730. name="Japanese"
  4731. package="9"
  4732. />
  4733. <otaLanguage
  4734. id="0"
  4735. name="Finnish"
  4736. package="10"
  4737. />
  4738. <otaLanguage
  4739. id="0"
  4740. name="Polish"
  4741. package="11"
  4742. />
  4743. </otaLanguages>
  4744. <otaPackages>
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4759. size="5183988"
  4760. />
  4761. <package
  4762. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4763. size="5183988"
  4764. />
  4765. <package
  4766. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4767. size="5183988"
  4768. />
  4769. <package
  4770. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4771. size="5183988"
  4772. />
  4773. <package
  4774. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4775. size="5183988"
  4776. />
  4777. <package
  4778. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4779. size="5183988"
  4780. />
  4781. <package
  4782. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4783. size="5183988"
  4784. />
  4785. <package
  4786. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4787. size="5183988"
  4788. />
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4791. size="5183988"
  4792. />
  4793. </otaPackages>
  4794. </productMenu>
  4795. <productMenu id="wa"
  4796. type="0" >
  4797. </productMenu>
  4798. <productMenu id="led"
  4799. type="5" >
  4800. </productMenu>
  4801. <productMenu id="led+"
  4802. type="2"
  4803. url="1" >
  4804. </productMenu>
  4805. <productMenu id="meshIntercom"
  4806. type="30" >
  4807. </productMenu>
  4808. <productMenu id="meshIntercom+"
  4809. type="3"
  4810. url="2" >
  4811. </productMenu>
  4812. <productMenu id="waveIntercom"
  4813. type="1" >
  4814. </productMenu>
  4815. <productMenu id="fmradio"
  4816. type="0" >
  4817. </productMenu>
  4818. <productMenu id="phone"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="music"
  4822. type="1" >
  4823. </productMenu>
  4824. <productMenu id="musicSharing"
  4825. type="0" >
  4826. </productMenu>
  4827. <productMenu id="deviceSetting"
  4828. type="1"
  4829. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4830. </productMenu>
  4831. <productMenu id="quickGuide"
  4832. type="0"
  4833. url=""
  4834. size="1.12MB" >
  4835. </productMenu>
  4836. <productMenu id="userGuide"
  4837. type="1"
  4838. url=""
  4839. size="2.0MB" >
  4840. </productMenu>
  4841. <productMenu id="videoGuide"
  4842. type="0"
  4843. url=""
  4844. size="3.41MB" >
  4845. </productMenu>
  4846. <productMenu id="volume"
  4847. type="16" >
  4848. </productMenu>
  4849. <productMenu id="battery"
  4850. type="1" >
  4851. </productMenu>
  4852. <productID id="6A12"
  4853. />
  4854. <productGroupable type="0"
  4855. />
  4856. </product>
  4857. <product id="MeshOn"
  4858. name="Mesh ON"
  4859. series="Other"
  4860. latestVersion="1.0.1"
  4861. latestVersionVoicePrompt="0.7"
  4862. show = "1" >
  4863. <productMenu id="protocol"
  4864. type="2" >
  4865. </productMenu>
  4866. <productMenu id="ota"
  4867. type="2" >
  4868. <otaPackages>
  4869. <package
  4870. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4871. size="2945812"
  4872. />
  4873. </otaPackages>
  4874. </productMenu>
  4875. <productMenu id="meshIntercom+"
  4876. type="3"
  4877. url="4" >
  4878. </productMenu>
  4879. <productMenu id="waveIntercom"
  4880. type="0" >
  4881. </productMenu>
  4882. <productMenu id="phone"
  4883. type="0" >
  4884. </productMenu>
  4885. <productMenu id="music"
  4886. type="0" >
  4887. </productMenu>
  4888. <productMenu id="musicSharing"
  4889. type="0" >
  4890. </productMenu>
  4891. <productMenu id="deviceSetting"
  4892. type="1"
  4893. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4894. </productMenu>
  4895. <productMenu id="userGuide"
  4896. type="1"
  4897. url=""
  4898. size="2.0MB" >
  4899. </productMenu>
  4900. <productMenu id="bluetoothHeadset"
  4901. type="1"
  4902. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4903. </productMenu>
  4904. <productMenu id="volume"
  4905. type="0" >
  4906. </productMenu>
  4907. <productMenu id="battery"
  4908. type="1" >
  4909. </productMenu>
  4910. <productID id="684E"
  4911. />
  4912. <productGroupable type="0"
  4913. />
  4914. </product>
  4915. <product id="Impulse"
  4916. name="Impulse"
  4917. series="Helmet"
  4918. latestVersion="1.4.1"
  4919. show = "1" >
  4920. <productMenu id="protocol"
  4921. type="2" >
  4922. </productMenu>
  4923. <productMenu id="alexa"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="ota"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="wa"
  4930. type="24" >
  4931. </productMenu>
  4932. <productMenu id="manager"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="sip"
  4936. type="1" >
  4937. </productMenu>
  4938. <productMenu id="led"
  4939. type="1" >
  4940. <productMenuType version="1.0.1"
  4941. type="2"
  4942. />
  4943. <productMenuType version="1.0"
  4944. type="1"
  4945. />
  4946. </productMenu>
  4947. <productMenu id="meshIntercom"
  4948. type="30" >
  4949. <productMenuType version="1.1.1"
  4950. type="20"
  4951. />
  4952. </productMenu>
  4953. <productMenu id="meshIntercom+"
  4954. type="3"
  4955. url="2" >
  4956. <productMenuType version="1.3.9"
  4957. type="2"
  4958. />
  4959. <productMenuURL version="1.1.1"
  4960. url="0"
  4961. />
  4962. </productMenu>
  4963. <productMenu id="waveIntercom"
  4964. type="1" >
  4965. <productMenuType version="1.3.9"
  4966. type="0"
  4967. />
  4968. </productMenu>
  4969. <productMenu id="bluetoothIntercom"
  4970. type="1" >
  4971. </productMenu>
  4972. <productMenu id="phone"
  4973. type="1" >
  4974. </productMenu>
  4975. <productMenu id="music"
  4976. type="1" >
  4977. </productMenu>
  4978. <productMenu id="fmradio"
  4979. type="1" >
  4980. </productMenu>
  4981. <productMenu id="deviceSetting"
  4982. type="1"
  4983. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4984. <productMenuURL version="1.3.9"
  4985. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4986. />
  4987. <productMenuURL version="1.1.1"
  4988. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4989. />
  4990. <productMenuURL version="1.0.4"
  4991. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4992. />
  4993. </productMenu>
  4994. <productMenu id="quickGuide"
  4995. type="0"
  4996. url=""
  4997. size="344KB" >
  4998. </productMenu>
  4999. <productMenu id="userGuide"
  5000. type="1"
  5001. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5002. size="3.41MB" >
  5003. </productMenu>
  5004. <productMenu id="connectGuide"
  5005. type="1"
  5006. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5007. size="1.12MB" >
  5008. </productMenu>
  5009. <productMenu id="volume"
  5010. type="11" >
  5011. </productMenu>
  5012. <productMenu id="battery"
  5013. type="1" >
  5014. </productMenu>
  5015. <productID id="3148"
  5016. />
  5017. <productGroupable type="0"
  5018. />
  5019. </product>
  5020. <product id="Impulse"
  5021. name="Impulse"
  5022. series="Helmet"
  5023. latestVersion="2.0"
  5024. show = "-1" >
  5025. <productMenu id="protocol"
  5026. type="2" >
  5027. </productMenu>
  5028. <productMenu id="alexa"
  5029. type="0" >
  5030. </productMenu>
  5031. <productMenu id="ota"
  5032. type="0" >
  5033. </productMenu>
  5034. <productMenu id="wa"
  5035. type="8" >
  5036. </productMenu>
  5037. <productMenu id="manager"
  5038. type="0" >
  5039. </productMenu>
  5040. <productMenu id="sip"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="led"
  5044. type="3" >
  5045. </productMenu>
  5046. <productMenu id="meshIntercom"
  5047. type="20" >
  5048. </productMenu>
  5049. <productMenu id="bluetoothIntercom"
  5050. type="1" >
  5051. </productMenu>
  5052. <productMenu id="phone"
  5053. type="1" >
  5054. </productMenu>
  5055. <productMenu id="music"
  5056. type="1" >
  5057. </productMenu>
  5058. <productMenu id="fmradio"
  5059. type="1" >
  5060. </productMenu>
  5061. <productMenu id="deviceSetting"
  5062. type="1"
  5063. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5064. </productMenu>
  5065. <productMenu id="quickGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5068. size="344KB" >
  5069. </productMenu>
  5070. <productMenu id="userGuide"
  5071. type="1"
  5072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5073. size="3.41MB" >
  5074. </productMenu>
  5075. <productMenu id="volume"
  5076. type="11" >
  5077. </productMenu>
  5078. <productMenu id="battery"
  5079. type="1" >
  5080. </productMenu>
  5081. <productID id="3221"
  5082. />
  5083. <productGroupable type="0"
  5084. />
  5085. </product>
  5086. <product id="Stryker"
  5087. name="Stryker"
  5088. series="Helmet"
  5089. latestVersion="1.4.1"
  5090. show = "1" >
  5091. <productMenu id="protocol"
  5092. type="2" >
  5093. </productMenu>
  5094. <productMenu id="alexa"
  5095. type="0" >
  5096. </productMenu>
  5097. <productMenu id="ota"
  5098. type="0" >
  5099. </productMenu>
  5100. <productMenu id="wa"
  5101. type="40" >
  5102. </productMenu>
  5103. <productMenu id="manager"
  5104. type="0" >
  5105. </productMenu>
  5106. <productMenu id="sip"
  5107. type="1" >
  5108. </productMenu>
  5109. <productMenu id="led"
  5110. type="1" >
  5111. <productMenuType version="1.0.1"
  5112. type="2"
  5113. />
  5114. <productMenuType version="1.0"
  5115. type="1"
  5116. />
  5117. </productMenu>
  5118. <productMenu id="meshIntercom"
  5119. type="30" >
  5120. <productMenuType version="1.1.1"
  5121. type="20"
  5122. />
  5123. </productMenu>
  5124. <productMenu id="meshIntercom+"
  5125. type="3"
  5126. url="2" >
  5127. <productMenuType version="1.3.9"
  5128. type="2"
  5129. />
  5130. <productMenuURL version="1.1.1"
  5131. url="0"
  5132. />
  5133. </productMenu>
  5134. <productMenu id="waveIntercom"
  5135. type="1" >
  5136. <productMenuType version="1.2.9"
  5137. type="0"
  5138. />
  5139. </productMenu>
  5140. <productMenu id="bluetoothIntercom"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="phone"
  5144. type="1" >
  5145. </productMenu>
  5146. <productMenu id="music"
  5147. type="1" >
  5148. </productMenu>
  5149. <productMenu id="fmradio"
  5150. type="1" >
  5151. </productMenu>
  5152. <productMenu id="deviceSetting"
  5153. type="1"
  5154. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5155. <productMenuURL version="1.3.9"
  5156. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5157. />
  5158. <productMenuURL version="1.1.1"
  5159. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5160. />
  5161. <productMenuURL version="1.0.4"
  5162. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5163. />
  5164. </productMenu>
  5165. <productMenu id="quickGuide"
  5166. type="0"
  5167. url=""
  5168. size="344KB" >
  5169. </productMenu>
  5170. <productMenu id="userGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5173. size="3.41MB" >
  5174. </productMenu>
  5175. <productMenu id="connectGuide"
  5176. type="1"
  5177. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5178. size="1.12MB" >
  5179. </productMenu>
  5180. <productMenu id="volume"
  5181. type="11" >
  5182. </productMenu>
  5183. <productMenu id="battery"
  5184. type="1" >
  5185. </productMenu>
  5186. <productID id="3154"
  5187. />
  5188. <productGroupable type="0"
  5189. />
  5190. </product>
  5191. <product id="SRL3Plus"
  5192. name="SRL3 Plus"
  5193. series="60"
  5194. latestVersion="0.9.5"
  5195. latestVersionMesh="0.19"
  5196. latestVersionVoicePrompt="1.2"
  5197. show = "-1" >
  5198. <productMenu id="protocol"
  5199. type="2" >
  5200. </productMenu>
  5201. <productMenu id="ota"
  5202. type="2" >
  5203. <otaLanguages>
  5204. <otaLanguage
  5205. id="0"
  5206. name="English"
  5207. package="0"
  5208. />
  5209. <otaLanguage
  5210. id="0"
  5211. name="French"
  5212. package="1"
  5213. />
  5214. <otaLanguage
  5215. id="0"
  5216. name="Spanish"
  5217. package="2"
  5218. />
  5219. <otaLanguage
  5220. id="0"
  5221. name="Italian"
  5222. package="3"
  5223. />
  5224. <otaLanguage
  5225. id="0"
  5226. name="German"
  5227. package="4"
  5228. />
  5229. <otaLanguage
  5230. id="0"
  5231. name="Dutch"
  5232. package="5"
  5233. />
  5234. <otaLanguage
  5235. id="0"
  5236. name="Russian"
  5237. package="6"
  5238. />
  5239. <otaLanguage
  5240. id="0"
  5241. name="Chinese"
  5242. package="7"
  5243. />
  5244. <otaLanguage
  5245. id="0"
  5246. name="Korean"
  5247. package="8"
  5248. />
  5249. <otaLanguage
  5250. id="0"
  5251. name="Japanese"
  5252. package="9"
  5253. />
  5254. <otaLanguage
  5255. id="0"
  5256. name="Finnish"
  5257. package="10"
  5258. />
  5259. </otaLanguages>
  5260. <otaPackages>
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5271. size="5183988"
  5272. />
  5273. <package
  5274. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5275. size="5183988"
  5276. />
  5277. <package
  5278. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5279. size="5183988"
  5280. />
  5281. <package
  5282. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5283. size="5183988"
  5284. />
  5285. <package
  5286. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5287. size="5183988"
  5288. />
  5289. <package
  5290. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5295. size="5183988"
  5296. />
  5297. <package
  5298. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5299. size="5183988"
  5300. />
  5301. <package
  5302. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5303. size="5183988"
  5304. />
  5305. </otaPackages>
  5306. </productMenu>
  5307. <productMenu id="sip"
  5308. type="1" >
  5309. </productMenu>
  5310. <productMenu id="illusion"
  5311. type="1" >
  5312. </productMenu>
  5313. <productMenu id="meshIntercom+"
  5314. type="3"
  5315. url="2" >
  5316. </productMenu>
  5317. <productMenu id="waveIntercom"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="bluetoothIntercom"
  5321. type="1"
  5322. url="2" >
  5323. </productMenu>
  5324. <productMenu id="bluetoothIntercomGrouping"
  5325. type="0" >
  5326. </productMenu>
  5327. <productMenu id="fmradio"
  5328. type="1"
  5329. url="1" >
  5330. </productMenu>
  5331. <productMenu id="phone"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="music"
  5335. type="1" >
  5336. </productMenu>
  5337. <productMenu id="musicSharing"
  5338. type="0" >
  5339. </productMenu>
  5340. <productMenu id="deviceSetting"
  5341. type="1"
  5342. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5343. </productMenu>
  5344. <productMenu id="quickGuide"
  5345. type="0"
  5346. url=""
  5347. size="1.12MB" >
  5348. </productMenu>
  5349. <productMenu id="userGuide"
  5350. type="0"
  5351. url=""
  5352. size="2.0MB" >
  5353. </productMenu>
  5354. <productMenu id="videoGuide"
  5355. type="0"
  5356. url=""
  5357. size="3.41MB" >
  5358. </productMenu>
  5359. <productMenu id="volume"
  5360. type="16" >
  5361. </productMenu>
  5362. <productMenu id="soundMode"
  5363. type="1" >
  5364. </productMenu>
  5365. <productMenu id="battery"
  5366. type="1" >
  5367. </productMenu>
  5368. <productID id="6A08"
  5369. />
  5370. <productGroupable type="0"
  5371. />
  5372. </product>
  5373. <product id="SRL3"
  5374. name="SRL3"
  5375. series="SRL"
  5376. latestVersion="1.5"
  5377. show = "1" >
  5378. <productMenu id="protocol"
  5379. type="2" >
  5380. </productMenu>
  5381. <productMenu id="alexa"
  5382. type="0" >
  5383. </productMenu>
  5384. <productMenu id="ota"
  5385. type="0" >
  5386. </productMenu>
  5387. <productMenu id="wa"
  5388. type="1" >
  5389. </productMenu>
  5390. <productMenu id="sip"
  5391. type="1" >
  5392. </productMenu>
  5393. <productMenu id="meshIntercom"
  5394. type="30" >
  5395. </productMenu>
  5396. <productMenu id="meshIntercom+"
  5397. type="3"
  5398. url="2" >
  5399. <productMenuType version="1.3.9"
  5400. type="2"
  5401. />
  5402. </productMenu>
  5403. <productMenu id="waveIntercom"
  5404. type="1" >
  5405. <productMenuType version="1.4.9"
  5406. type="0"
  5407. />
  5408. </productMenu>
  5409. <productMenu id="bluetoothIntercom"
  5410. type="1" >
  5411. </productMenu>
  5412. <productMenu id="phone"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="music"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="fmradio"
  5419. type="1" >
  5420. </productMenu>
  5421. <productMenu id="deviceSetting"
  5422. type="1"
  5423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5424. <productMenuURL version="1.3"
  5425. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5426. />
  5427. </productMenu>
  5428. <productMenu id="quickGuide"
  5429. type="0"
  5430. url=""
  5431. size="344KB" >
  5432. </productMenu>
  5433. <productMenu id="userGuide"
  5434. type="1"
  5435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5436. size="3.41MB" >
  5437. </productMenu>
  5438. <productMenu id="connectGuide"
  5439. type="1"
  5440. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5441. size="1.12MB" >
  5442. </productMenu>
  5443. <productMenu id="volume"
  5444. type="11" >
  5445. </productMenu>
  5446. <productMenu id="battery"
  5447. type="1" >
  5448. </productMenu>
  5449. <productID id="3219"
  5450. />
  5451. <productGroupable type="0"
  5452. />
  5453. </product>
  5454. <product id="SRL_Mesh"
  5455. name="SRL-Mesh"
  5456. series="SRL"
  5457. latestVersion="1.7.1"
  5458. show = "1" >
  5459. <productMenu id="protocol"
  5460. type="2" >
  5461. </productMenu>
  5462. <productMenu id="alexa"
  5463. type="0" >
  5464. </productMenu>
  5465. <productMenu id="ota"
  5466. type="0" >
  5467. </productMenu>
  5468. <productMenu id="wa"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="sip"
  5472. type="1" >
  5473. </productMenu>
  5474. <productMenu id="meshIntercom"
  5475. type="30" >
  5476. <productMenuType version="1.1.1"
  5477. type="20"
  5478. />
  5479. </productMenu>
  5480. <productMenu id="meshIntercom+"
  5481. type="3"
  5482. url="2" >
  5483. <productMenuType version="1.5.9"
  5484. type="2"
  5485. />
  5486. <productMenuURL version="1.1.1"
  5487. url="0"
  5488. />
  5489. </productMenu>
  5490. <productMenu id="waveIntercom"
  5491. type="1" >
  5492. <productMenuType version="1.6.9"
  5493. type="0"
  5494. />
  5495. </productMenu>
  5496. <productMenu id="bluetoothIntercom"
  5497. type="1" >
  5498. </productMenu>
  5499. <productMenu id="phone"
  5500. type="1" >
  5501. </productMenu>
  5502. <productMenu id="music"
  5503. type="1" >
  5504. </productMenu>
  5505. <productMenu id="fmradio"
  5506. type="1" >
  5507. </productMenu>
  5508. <productMenu id="deviceSetting"
  5509. type="1"
  5510. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5511. <productMenuURL version="1.5"
  5512. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5513. />
  5514. <productMenuURL version="1.1.1"
  5515. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5516. />
  5517. <productMenuURL version="1.0.3"
  5518. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5519. />
  5520. </productMenu>
  5521. <productMenu id="quickGuide"
  5522. type="0"
  5523. url=""
  5524. size="344KB" >
  5525. </productMenu>
  5526. <productMenu id="userGuide"
  5527. type="1"
  5528. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5529. size="3.41MB" >
  5530. </productMenu>
  5531. <productMenu id="connectGuide"
  5532. type="1"
  5533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5534. size="1.12MB" >
  5535. </productMenu>
  5536. <productMenu id="volume"
  5537. type="11" >
  5538. </productMenu>
  5539. <productMenu id="battery"
  5540. type="1" >
  5541. </productMenu>
  5542. <productID id="3216"
  5543. />
  5544. <productGroupable type="0"
  5545. />
  5546. </product>
  5547. <product id="SRL_EXT"
  5548. name="SRL-EXT"
  5549. series="SRL"
  5550. latestVersion="1.7.1"
  5551. show = "1" >
  5552. <productMenu id="protocol"
  5553. type="2" >
  5554. </productMenu>
  5555. <productMenu id="alexa"
  5556. type="0" >
  5557. </productMenu>
  5558. <productMenu id="ota"
  5559. type="0" >
  5560. </productMenu>
  5561. <productMenu id="wa"
  5562. type="0" >
  5563. </productMenu>
  5564. <productMenu id="sip"
  5565. type="1" >
  5566. </productMenu>
  5567. <productMenu id="meshIntercom"
  5568. type="30" >
  5569. <productMenuType version="1.1.1"
  5570. type="20"
  5571. />
  5572. </productMenu>
  5573. <productMenu id="meshIntercom+"
  5574. type="3"
  5575. url="2" >
  5576. <productMenuType version="1.5.9"
  5577. type="2"
  5578. />
  5579. <productMenuURL version="1.1.1"
  5580. url="0"
  5581. />
  5582. </productMenu>
  5583. <productMenu id="waveIntercom"
  5584. type="1" >
  5585. <productMenuType version="1.6.9"
  5586. type="0"
  5587. />
  5588. </productMenu>
  5589. <productMenu id="bluetoothIntercom"
  5590. type="1" >
  5591. </productMenu>
  5592. <productMenu id="phone"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="music"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="fmradio"
  5599. type="1" >
  5600. </productMenu>
  5601. <productMenu id="deviceSetting"
  5602. type="1"
  5603. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5604. <productMenuURL version="1.5"
  5605. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5606. />
  5607. <productMenuURL version="1.1.1"
  5608. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5609. />
  5610. <productMenuURL version="1.0.3"
  5611. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5612. />
  5613. </productMenu>
  5614. <productMenu id="quickGuide"
  5615. type="0"
  5616. url=""
  5617. size="344KB" >
  5618. </productMenu>
  5619. <productMenu id="userGuide"
  5620. type="1"
  5621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5622. size="3.41MB" >
  5623. </productMenu>
  5624. <productMenu id="connectGuide"
  5625. type="1"
  5626. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5627. size="1.12MB" >
  5628. </productMenu>
  5629. <productMenu id="volume"
  5630. type="11" >
  5631. </productMenu>
  5632. <productMenu id="battery"
  5633. type="1" >
  5634. </productMenu>
  5635. <productID id="3212"
  5636. />
  5637. <productGroupable type="0"
  5638. />
  5639. </product>
  5640. <product id="SRL2"
  5641. name="SRL2"
  5642. series="SRL"
  5643. latestVersion="1.0.9"
  5644. show = "1" >
  5645. <productMenu id="protocol"
  5646. type="0">
  5647. </productMenu>
  5648. <productMenu id="sip"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="bluetoothIntercom"
  5652. type="1" >
  5653. </productMenu>
  5654. <productMenu id="intercomSetting"
  5655. type="1" >
  5656. </productMenu>
  5657. <productMenu id="phone"
  5658. type="2" >
  5659. </productMenu>
  5660. <productMenu id="fmradio"
  5661. type="3" >
  5662. </productMenu>
  5663. <productMenu id="deviceSetting"
  5664. type="1"
  5665. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5666. </productMenu>
  5667. <productMenu id="quickGuide"
  5668. type="1"
  5669. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5670. size="846KB" >
  5671. </productMenu>
  5672. <productMenu id="userGuide"
  5673. type="1"
  5674. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5675. size="1.18MB" >
  5676. </productMenu>
  5677. <productMenu id="connectGuide"
  5678. type="1"
  5679. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5680. size="1.12MB" >
  5681. </productMenu>
  5682. <productID id="4530"
  5683. />
  5684. <productGroupable type="1"
  5685. />
  5686. </product>
  5687. <product id="Neotec2"
  5688. name="SRL Neotec2"
  5689. series="SRL"
  5690. latestVersion="1.1.5"
  5691. show = "1" >
  5692. <productMenu id="protocol"
  5693. type="0">
  5694. </productMenu>
  5695. <productMenu id="sip"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="bluetoothIntercom"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="intercomSetting"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="phone"
  5705. type="2" >
  5706. </productMenu>
  5707. <productMenu id="fmradio"
  5708. type="3" >
  5709. </productMenu>
  5710. <productMenu id="deviceSetting"
  5711. type="1"
  5712. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5713. </productMenu>
  5714. <productMenu id="quickGuide"
  5715. type="0"
  5716. url=""
  5717. size="796KB" >
  5718. </productMenu>
  5719. <productMenu id="userGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5722. size="1.90MB" >
  5723. </productMenu>
  5724. <productMenu id="connectGuide"
  5725. type="1"
  5726. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5727. size="1.12MB" >
  5728. </productMenu>
  5729. <productID id="4510"
  5730. />
  5731. <productGroupable type="1"
  5732. />
  5733. </product>
  5734. <product id="SPIDERST2ANC"
  5735. name="SPIDER ST2 ANC"
  5736. series="SPIDER"
  5737. latestVersion="0.5.1"
  5738. latestVersionVoicePrompt="0.2"
  5739. latestVersionMesh="0.8"
  5740. show = "-1" >
  5741. <productMenu id="protocol"
  5742. type="2" >
  5743. </productMenu>
  5744. <productMenu id="ota"
  5745. type="0" >
  5746. <otaPackages>
  5747. <package
  5748. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5749. size="2945812"
  5750. />
  5751. </otaPackages>
  5752. </productMenu>
  5753. <productMenu id="wa"
  5754. type="0" >
  5755. </productMenu>
  5756. <productMenu id="led"
  5757. type="1" >
  5758. </productMenu>
  5759. <productMenu id="meshIntercom"
  5760. type="30" >
  5761. </productMenu>
  5762. <productMenu id="fmradio"
  5763. type="1" >
  5764. </productMenu>
  5765. <productMenu id="phone"
  5766. type="1" >
  5767. </productMenu>
  5768. <productMenu id="music"
  5769. type="1" >
  5770. </productMenu>
  5771. <productMenu id="musicSharing"
  5772. type="0" >
  5773. </productMenu>
  5774. <productMenu id="deviceSetting"
  5775. type="1"
  5776. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5777. </productMenu>
  5778. <productMenu id="quickGuide"
  5779. type="1"
  5780. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5781. size="1.12MB" >
  5782. </productMenu>
  5783. <productMenu id="userGuide"
  5784. type="1"
  5785. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5786. size="2.0MB" >
  5787. </productMenu>
  5788. <productMenu id="videoGuide"
  5789. type="1"
  5790. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5791. size="3.41MB" >
  5792. </productMenu>
  5793. <productMenu id="volume"
  5794. type="12" >
  5795. </productMenu>
  5796. <productMenu id="battery"
  5797. type="1" >
  5798. </productMenu>
  5799. <productID id="6A00"
  5800. />
  5801. <productGroupable type="0"
  5802. />
  5803. </product>
  5804. <product id="SPIDER_ST1"
  5805. name="SPIDER ST1"
  5806. series="SPIDER"
  5807. latestVersion="2.5.3"
  5808. latestVersionVoicePrompt="1.6"
  5809. show = "1" >
  5810. <productMenu id="protocol"
  5811. type="2" >
  5812. </productMenu>
  5813. <productMenu id="alexa"
  5814. type="0" >
  5815. </productMenu>
  5816. <productMenu id="ota"
  5817. type="2" >
  5818. <productMenuType version="2.1.9"
  5819. type="0"
  5820. />
  5821. <otaPackages>
  5822. <package
  5823. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5824. size="2945812"
  5825. />
  5826. </otaPackages>
  5827. </productMenu>
  5828. <productMenu id="wa"
  5829. type="0" >
  5830. </productMenu>
  5831. <productMenu id="meshIntercom"
  5832. type="30" >
  5833. <productMenuType version="2.1.1"
  5834. type="20"
  5835. />
  5836. </productMenu>
  5837. <productMenu id="meshIntercom+"
  5838. type="3"
  5839. url="2" >
  5840. <productMenuType version="2.2.9"
  5841. type="2"
  5842. />
  5843. <productMenuURL version="2.1.1"
  5844. url="0"
  5845. />
  5846. </productMenu>
  5847. <productMenu id="waveIntercom"
  5848. type="1" >
  5849. <productMenuType version="2.3.9"
  5850. type="0"
  5851. />
  5852. </productMenu>
  5853. <productMenu id="phone"
  5854. type="1" >
  5855. </productMenu>
  5856. <productMenu id="music"
  5857. type="1" >
  5858. </productMenu>
  5859. <productMenu id="musicSharing"
  5860. type="0" >
  5861. </productMenu>
  5862. <productMenu id="deviceSetting"
  5863. type="1"
  5864. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5865. <productMenuURL version="2.4.9"
  5866. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5867. />
  5868. <productMenuURL version="2.2.2"
  5869. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5870. />
  5871. <productMenuURL version="2.1.1"
  5872. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5873. />
  5874. </productMenu>
  5875. <productMenu id="quickGuide"
  5876. type="0"
  5877. url=""
  5878. size="1.12MB" >
  5879. </productMenu>
  5880. <productMenu id="userGuide"
  5881. type="1"
  5882. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5883. size="2.0MB" >
  5884. </productMenu>
  5885. <productMenu id="videoGuide"
  5886. type="1"
  5887. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5888. size="3.41MB" >
  5889. </productMenu>
  5890. <productMenu id="connectGuide"
  5891. type="1"
  5892. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5893. size="1.12MB" >
  5894. </productMenu>
  5895. <productMenu id="volume"
  5896. type="12" >
  5897. </productMenu>
  5898. <productMenu id="volume+"
  5899. type="2"
  5900. url="0x2000" >
  5901. </productMenu>
  5902. <productMenu id="battery"
  5903. type="1" >
  5904. </productMenu>
  5905. <productID id="6800"
  5906. />
  5907. <productGroupable type="0"
  5908. />
  5909. </product>
  5910. <product id="SPIDER_ST1"
  5911. name="SPIDER ST1"
  5912. series="SPIDER"
  5913. latestVersion="1.2.2"
  5914. show = "-1" >
  5915. <productMenu id="protocol"
  5916. type="2" >
  5917. </productMenu>
  5918. <productMenu id="alexa"
  5919. type="0" >
  5920. </productMenu>
  5921. <productMenu id="ota"
  5922. type="0" >
  5923. </productMenu>
  5924. <productMenu id="wa"
  5925. type="0" >
  5926. </productMenu>
  5927. <productMenu id="meshIntercom"
  5928. type="20" >
  5929. </productMenu>
  5930. <productMenu id="phone"
  5931. type="1" >
  5932. </productMenu>
  5933. <productMenu id="music"
  5934. type="1" >
  5935. </productMenu>
  5936. <productMenu id="deviceSetting"
  5937. type="1"
  5938. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5939. </productMenu>
  5940. <productMenu id="quickGuide"
  5941. type="0"
  5942. url=""
  5943. size="1.12MB" >
  5944. </productMenu>
  5945. <productMenu id="userGuide"
  5946. type="1"
  5947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5948. size="2.0MB" >
  5949. </productMenu>
  5950. <productMenu id="videoGuide"
  5951. type="1"
  5952. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5953. size="3.41MB" >
  5954. </productMenu>
  5955. <productMenu id="volume"
  5956. type="13" >
  5957. <productMenuType version="1.1.6"
  5958. type="14"/>
  5959. </productMenu>
  5960. <productMenu id="battery"
  5961. type="1" >
  5962. </productMenu>
  5963. <productID id="6510"
  5964. />
  5965. <productGroupable type="0"
  5966. />
  5967. </product>
  5968. <product id="SPIDER_RT1"
  5969. name="SPIDER RT1"
  5970. series="SPIDER"
  5971. latestVersion="2.5.3"
  5972. latestVersionVoicePrompt="1.6"
  5973. show = "1" >
  5974. <productMenu id="protocol"
  5975. type="2" >
  5976. </productMenu>
  5977. <productMenu id="alexa"
  5978. type="0" >
  5979. </productMenu>
  5980. <productMenu id="ota"
  5981. type="2" >
  5982. <productMenuType version="2.1.9"
  5983. type="0"
  5984. />
  5985. <otaPackages>
  5986. <package
  5987. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5988. size="2945812"
  5989. />
  5990. </otaPackages>
  5991. </productMenu>
  5992. <productMenu id="wa"
  5993. type="0" >
  5994. </productMenu>
  5995. <productMenu id="meshIntercom"
  5996. type="30" >
  5997. <productMenuType version="2.1.1"
  5998. type="20"
  5999. />
  6000. </productMenu>
  6001. <productMenu id="meshIntercom+"
  6002. type="3"
  6003. url="2" >
  6004. <productMenuType version="2.2.9"
  6005. type="2"
  6006. />
  6007. <productMenuURL version="2.1.1"
  6008. url="0"
  6009. />
  6010. </productMenu>
  6011. <productMenu id="waveIntercom"
  6012. type="1" >
  6013. <productMenuType version="2.3.9"
  6014. type="0"
  6015. />
  6016. </productMenu>
  6017. <productMenu id="phone"
  6018. type="1" >
  6019. </productMenu>
  6020. <productMenu id="music"
  6021. type="1" >
  6022. </productMenu>
  6023. <productMenu id="musicSharing"
  6024. type="0" >
  6025. </productMenu>
  6026. <productMenu id="deviceSetting"
  6027. type="1"
  6028. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6029. <productMenuURL version="2.4.9"
  6030. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6031. />
  6032. <productMenuURL version="2.2.2"
  6033. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6034. />
  6035. <productMenuURL version="2.1.1"
  6036. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6037. />
  6038. </productMenu>
  6039. <productMenu id="quickGuide"
  6040. type="0"
  6041. url=""
  6042. size="1.12MB" >
  6043. </productMenu>
  6044. <productMenu id="userGuide"
  6045. type="1"
  6046. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6047. size="2.0MB" >
  6048. </productMenu>
  6049. <productMenu id="videoGuide"
  6050. type="1"
  6051. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6052. size="3.41MB" >
  6053. </productMenu>
  6054. <productMenu id="connectGuide"
  6055. type="1"
  6056. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6057. size="1.12MB" >
  6058. </productMenu>
  6059. <productMenu id="volume"
  6060. type="12" >
  6061. </productMenu>
  6062. <productMenu id="volume+"
  6063. type="2"
  6064. url="0x2000" >
  6065. </productMenu>
  6066. <productMenu id="battery"
  6067. type="1" >
  6068. </productMenu>
  6069. <productID id="6810"
  6070. />
  6071. <productGroupable type="0"
  6072. />
  6073. </product>
  6074. <product id="SPIDER_RT1"
  6075. name="SPIDER RT1"
  6076. series="SPIDER"
  6077. latestVersion="1.2.2"
  6078. show = "-1" >
  6079. <productMenu id="protocol"
  6080. type="2" >
  6081. </productMenu>
  6082. <productMenu id="alexa"
  6083. type="0" >
  6084. </productMenu>
  6085. <productMenu id="ota"
  6086. type="0" >
  6087. </productMenu>
  6088. <productMenu id="wa"
  6089. type="0" >
  6090. </productMenu>
  6091. <productMenu id="meshIntercom"
  6092. type="20" >
  6093. </productMenu>
  6094. <productMenu id="phone"
  6095. type="1" >
  6096. </productMenu>
  6097. <productMenu id="music"
  6098. type="1" >
  6099. </productMenu>
  6100. <productMenu id="deviceSetting"
  6101. type="1"
  6102. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6103. </productMenu>
  6104. <productMenu id="quickGuide"
  6105. type="0"
  6106. url=""
  6107. size="1.32MB" >
  6108. </productMenu>
  6109. <productMenu id="userGuide"
  6110. type="1"
  6111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6112. size="1.79MB" >
  6113. </productMenu>
  6114. <productMenu id="videoGuide"
  6115. type="1"
  6116. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6117. size="3.41MB" >
  6118. </productMenu>
  6119. <productMenu id="volume"
  6120. type="13" >
  6121. <productMenuType version="1.1.6"
  6122. type="14"/>
  6123. </productMenu>
  6124. <productMenu id="battery"
  6125. type="1" >
  6126. </productMenu>
  6127. <productID id="6500"
  6128. />
  6129. <productGroupable type="0"
  6130. />
  6131. </product>
  6132. <product id="30K"
  6133. name="30K"
  6134. series="30"
  6135. latestVersion="4.5.1"
  6136. show = "1" >
  6137. <productMenu id="protocol"
  6138. type="2" >
  6139. </productMenu>
  6140. <productMenu id="alexa"
  6141. type="0" >
  6142. </productMenu>
  6143. <productMenu id="wa"
  6144. type="1" >
  6145. </productMenu>
  6146. <productMenu id="sip"
  6147. type="1" >
  6148. </productMenu>
  6149. <productMenu id="meshIntercom"
  6150. type="30" >
  6151. <productMenuType version="4.0.4"
  6152. type="20"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="meshIntercom+"
  6156. type="3"
  6157. url="2" >
  6158. <productMenuType version="4.3.9"
  6159. type="2"
  6160. />
  6161. <productMenuURL version="4.0.4"
  6162. url="0"
  6163. />
  6164. </productMenu>
  6165. <productMenu id="waveIntercom"
  6166. type="1" >
  6167. <productMenuType version="4.4.9"
  6168. type="0"
  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_30KV2_04.xml" >
  6186. <productMenuURL version="4.3"
  6187. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6188. />
  6189. <productMenuURL version="4.2"
  6190. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6191. />
  6192. <productMenuURL version="4.0.4"
  6193. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6194. />
  6195. </productMenu>
  6196. <productMenu id="quickGuide"
  6197. type="0"
  6198. url=""
  6199. size="934KB" >
  6200. </productMenu>
  6201. <productMenu id="userGuide"
  6202. type="1"
  6203. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6204. size="1.14MB" >
  6205. </productMenu>
  6206. <productMenu id="connectGuide"
  6207. type="1"
  6208. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6209. size="1.12MB" >
  6210. </productMenu>
  6211. <productMenu id="volume"
  6212. type="11" >
  6213. </productMenu>
  6214. <productMenu id="battery"
  6215. type="1" >
  6216. </productMenu>
  6217. <productID id="3211"
  6218. />
  6219. <productGroupable type="0"
  6220. />
  6221. </product>
  6222. <product id="30K"
  6223. name="30K"
  6224. series="30"
  6225. latestVersion="3.5"
  6226. show = "-1" >
  6227. <productMenu id="protocol"
  6228. type="1"
  6229. url="0">
  6230. </productMenu>
  6231. <productMenu id="wa"
  6232. type="7" >
  6233. </productMenu>
  6234. <productMenu id="sip"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="meshIntercom"
  6238. type="20" >
  6239. <productMenuType version="2.9.9"
  6240. type="10"
  6241. />
  6242. </productMenu>
  6243. <productMenu id="meshIntercom+"
  6244. type="3"
  6245. url="2" >
  6246. <productMenuType version="3.4.9"
  6247. type="2"
  6248. />
  6249. <productMenuType version="2.9.9"
  6250. type="1"
  6251. />
  6252. <productMenuURL version="3.3.1"
  6253. url="0"
  6254. />
  6255. </productMenu>
  6256. <productMenu id="bluetoothIntercom"
  6257. type="1" >
  6258. </productMenu>
  6259. <productMenu id="phone"
  6260. type="1" >
  6261. </productMenu>
  6262. <productMenu id="music"
  6263. type="1" >
  6264. </productMenu>
  6265. <productMenu id="fmradio"
  6266. type="1" >
  6267. </productMenu>
  6268. <productMenu id="deviceSetting"
  6269. type="1"
  6270. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6271. <productMenuURL version="3.4.9"
  6272. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6273. />
  6274. <productMenuURL version="3.3.1"
  6275. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6276. />
  6277. <productMenuURL version="3.0.1"
  6278. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6279. />
  6280. <productMenuURL version="2.3.1"
  6281. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6282. />
  6283. <productMenuURL version="2.0"
  6284. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6285. />
  6286. <productMenuURL version="1.0.3"
  6287. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6288. />
  6289. </productMenu>
  6290. <productMenu id="quickGuide"
  6291. type="0"
  6292. url=""
  6293. size="1.06MB" >
  6294. </productMenu>
  6295. <productMenu id="userGuide"
  6296. type="1"
  6297. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6298. size="3.15MB" >
  6299. </productMenu>
  6300. <productMenu id="volume"
  6301. type="1" >
  6302. </productMenu>
  6303. <productID id="3110"
  6304. />
  6305. <productGroupable type="0"
  6306. />
  6307. </product>
  6308. <product id="FURY"
  6309. name="FURY"
  6310. series="Helmet"
  6311. latestVersion="1.0"
  6312. show = "-1" >
  6313. <productMenu id="protocol"
  6314. type="2" >
  6315. </productMenu>
  6316. <productMenu id="alexa"
  6317. type="0" >
  6318. </productMenu>
  6319. <productMenu id="ota"
  6320. type="0" >
  6321. </productMenu>
  6322. <productMenu id="wa"
  6323. type="0" >
  6324. </productMenu>
  6325. <productMenu id="meshIntercom"
  6326. type="20" >
  6327. </productMenu>
  6328. <productMenu id="phone"
  6329. type="1" >
  6330. </productMenu>
  6331. <productMenu id="music"
  6332. type="1" >
  6333. </productMenu>
  6334. <productMenu id="fmradio"
  6335. type="1" >
  6336. </productMenu>
  6337. <productMenu id="deviceSetting"
  6338. type="1"
  6339. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6340. </productMenu>
  6341. <productMenu id="quickGuide"
  6342. type="1"
  6343. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6344. size="1.12MB" >
  6345. </productMenu>
  6346. <productMenu id="userGuide"
  6347. type="1"
  6348. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6349. size="2.0MB" >
  6350. </productMenu>
  6351. <productMenu id="volume"
  6352. type="13" >
  6353. </productMenu>
  6354. <productMenu id="battery"
  6355. type="1" >
  6356. </productMenu>
  6357. <productID id="5552"
  6358. />
  6359. <productGroupable type="0"
  6360. />
  6361. </product>
  6362. <product id="MomentumM"
  6363. name="Momentum EVO"
  6364. series="Helmet"
  6365. latestVersion="2.1.2"
  6366. show = "1" >
  6367. <productMenu id="protocol"
  6368. type="1"
  6369. url="0">
  6370. </productMenu>
  6371. <productMenu id="wa"
  6372. type="3" >
  6373. </productMenu>
  6374. <productMenu id="sip"
  6375. type="1" >
  6376. </productMenu>
  6377. <productMenu id="meshIntercom"
  6378. type="20" >
  6379. <productMenuType version="1.9.9"
  6380. type="10"
  6381. />
  6382. </productMenu>
  6383. <productMenu id="bluetoothIntercom"
  6384. type="1" >
  6385. </productMenu>
  6386. <productMenu id="phone"
  6387. type="1" >
  6388. </productMenu>
  6389. <productMenu id="music"
  6390. type="1" >
  6391. </productMenu>
  6392. <productMenu id="fmradio"
  6393. type="1" >
  6394. </productMenu>
  6395. <productMenu id="deviceSetting"
  6396. type="1"
  6397. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6398. <productMenuURL version="1.0.1"
  6399. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6400. />
  6401. </productMenu>
  6402. <productMenu id="quickGuide"
  6403. type="1"
  6404. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6405. size="1.06MB" >
  6406. </productMenu>
  6407. <productMenu id="userGuide"
  6408. type="1"
  6409. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6410. size="3.15MB" >
  6411. </productMenu>
  6412. <productMenu id="connectGuide"
  6413. type="1"
  6414. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6415. size="1.12MB" >
  6416. </productMenu>
  6417. <productMenu id="volume"
  6418. type="2" >
  6419. </productMenu>
  6420. <productID id="3116"
  6421. />
  6422. <productGroupable type="0"
  6423. />
  6424. </product>
  6425. <product id="Momentum"
  6426. name="Momentum"
  6427. series="Helmet"
  6428. latestVersion="1.0.9"
  6429. show = "1" >
  6430. <productMenu id="protocol"
  6431. type="0">
  6432. </productMenu>
  6433. <productMenu id="sip"
  6434. type="1" >
  6435. </productMenu>
  6436. <productMenu id="bluetoothIntercom"
  6437. type="1" >
  6438. </productMenu>
  6439. <productMenu id="intercomSetting"
  6440. type="1" >
  6441. </productMenu>
  6442. <productMenu id="phone"
  6443. type="2" >
  6444. </productMenu>
  6445. <productMenu id="fmradio"
  6446. type="3" >
  6447. </productMenu>
  6448. <productMenu id="deviceSetting"
  6449. type="1"
  6450. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6451. </productMenu>
  6452. <productMenu id="quickGuide"
  6453. type="1"
  6454. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6455. size="796KB" >
  6456. </productMenu>
  6457. <productMenu id="userGuide"
  6458. type="1"
  6459. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6460. size="1.90MB" >
  6461. </productMenu>
  6462. <productMenu id="connectGuide"
  6463. type="1"
  6464. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6465. size="1.12MB" >
  6466. </productMenu>
  6467. <productID id="4310"
  6468. />
  6469. <productGroupable type="1"
  6470. />
  6471. </product>
  6472. <product id="Momentum_Pro"
  6473. name="Momentum Pro"
  6474. series="Helmet"
  6475. latestVersion="1.0.6"
  6476. show = "1" >
  6477. <productMenu id="protocol"
  6478. type="0">
  6479. </productMenu>
  6480. <productMenu id="sip"
  6481. type="1" >
  6482. </productMenu>
  6483. <productMenu id="bluetoothIntercom"
  6484. type="1" >
  6485. </productMenu>
  6486. <productMenu id="intercomSetting"
  6487. type="1" >
  6488. </productMenu>
  6489. <productMenu id="phone"
  6490. type="2" >
  6491. </productMenu>
  6492. <productMenu id="fmradio"
  6493. type="3" >
  6494. </productMenu>
  6495. <productMenu id="deviceSetting"
  6496. type="1"
  6497. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6498. </productMenu>
  6499. <productMenu id="quickGuide"
  6500. type="1"
  6501. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6502. size="796KB" >
  6503. </productMenu>
  6504. <productMenu id="userGuide"
  6505. type="1"
  6506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6507. size="1.90MB" >
  6508. </productMenu>
  6509. <productMenu id="connectGuide"
  6510. type="1"
  6511. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6512. size="1.12MB" >
  6513. </productMenu>
  6514. <productID id="4330"
  6515. />
  6516. <productGroupable type="1"
  6517. />
  6518. </product>
  6519. <product id="Momentum_INC"
  6520. name="Momentum INC"
  6521. series="Helmet"
  6522. latestVersion="1.0.7"
  6523. show = "1" >
  6524. <productMenu id="protocol"
  6525. type="0">
  6526. </productMenu>
  6527. <productMenu id="sip"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="bluetoothIntercom"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="intercomSetting"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="phone"
  6537. type="2" >
  6538. </productMenu>
  6539. <productMenu id="fmradio"
  6540. type="3" >
  6541. </productMenu>
  6542. <productMenu id="deviceSetting"
  6543. type="1"
  6544. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6545. </productMenu>
  6546. <productMenu id="quickGuide"
  6547. type="1"
  6548. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6549. size="794KB" >
  6550. </productMenu>
  6551. <productMenu id="userGuide"
  6552. type="1"
  6553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6554. size="1.53MB" >
  6555. </productMenu>
  6556. <productMenu id="connectGuide"
  6557. type="1"
  6558. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6559. size="1.12MB" >
  6560. </productMenu>
  6561. <productID id="4410"
  6562. />
  6563. <productGroupable type="1"
  6564. />
  6565. </product>
  6566. <product id="Momentum_INCP"
  6567. name="Momentum INC Pro"
  6568. series="Helmet"
  6569. latestVersion="1.0.4"
  6570. show = "1" >
  6571. <productMenu id="protocol"
  6572. type="0">
  6573. </productMenu>
  6574. <productMenu id="sip"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="bluetoothIntercom"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="intercomSetting"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="phone"
  6584. type="2" >
  6585. </productMenu>
  6586. <productMenu id="fmradio"
  6587. type="3" >
  6588. </productMenu>
  6589. <productMenu id="deviceSetting"
  6590. type="1"
  6591. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6592. </productMenu>
  6593. <productMenu id="quickGuide"
  6594. type="1"
  6595. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6596. size="794KB" >
  6597. </productMenu>
  6598. <productMenu id="userGuide"
  6599. type="1"
  6600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6601. size="1.53MB" >
  6602. </productMenu>
  6603. <productMenu id="connectGuide"
  6604. type="1"
  6605. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6606. size="1.12MB" >
  6607. </productMenu>
  6608. <productID id="4430"
  6609. />
  6610. <productGroupable type="1"
  6611. />
  6612. </product>
  6613. <product id="Momentum_Lite"
  6614. name="Momentum Lite"
  6615. series="Helmet"
  6616. latestVersion="2.0.3"
  6617. show = "1" >
  6618. <productMenu id="protocol"
  6619. type="0">
  6620. </productMenu>
  6621. <productMenu id="sip"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="bluetoothIntercom"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="phone"
  6628. type="2" >
  6629. </productMenu>
  6630. <productMenu id="fmradio"
  6631. type="3" >
  6632. </productMenu>
  6633. <productMenu id="deviceSetting"
  6634. type="1"
  6635. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6636. <productMenuURL version="1.1"
  6637. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6638. />
  6639. </productMenu>
  6640. <productMenu id="quickGuide"
  6641. type="1"
  6642. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6643. size="790KB" >
  6644. </productMenu>
  6645. <productMenu id="userGuide"
  6646. type="1"
  6647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6648. size="1.42MB" >
  6649. </productMenu>
  6650. <productMenu id="connectGuide"
  6651. type="1"
  6652. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6653. size="1.12MB" >
  6654. </productMenu>
  6655. <productID id="5526"
  6656. />
  6657. <productGroupable type="0"
  6658. />
  6659. </product>
  6660. <product id="OUTRUSHM"
  6661. name="OUTRUSH M"
  6662. series="Helmet"
  6663. latestVersion="1.0"
  6664. show = "-1" >
  6665. <productMenu id="protocol"
  6666. type="2" >
  6667. </productMenu>
  6668. <productMenu id="alexa"
  6669. type="0" >
  6670. </productMenu>
  6671. <productMenu id="ota"
  6672. type="0" >
  6673. </productMenu>
  6674. <productMenu id="wa"
  6675. type="0" >
  6676. </productMenu>
  6677. <productMenu id="meshIntercom"
  6678. type="30" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="music"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="fmradio"
  6687. type="1" >
  6688. </productMenu>
  6689. <productMenu id="deviceSetting"
  6690. type="1"
  6691. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6692. </productMenu>
  6693. <productMenu id="quickGuide"
  6694. type="1"
  6695. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6696. size="1.12MB" >
  6697. </productMenu>
  6698. <productMenu id="userGuide"
  6699. type="1"
  6700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6701. size="2.0MB" >
  6702. </productMenu>
  6703. <productMenu id="volume"
  6704. type="13" >
  6705. </productMenu>
  6706. <productMenu id="battery"
  6707. type="1" >
  6708. </productMenu>
  6709. <productID id="5600"
  6710. />
  6711. <productGroupable type="0"
  6712. />
  6713. </product>
  6714. <product id="ProRideEVO"
  6715. name="ProRide EVO"
  6716. series="Helmet"
  6717. latestVersion="1.1.2"
  6718. show = "1" >
  6719. <productMenu id="protocol"
  6720. type="0">
  6721. </productMenu>
  6722. <productMenu id="sip"
  6723. type="1" >
  6724. </productMenu>
  6725. <productMenu id="bluetoothIntercom"
  6726. type="1" >
  6727. </productMenu>
  6728. <productMenu id="phone"
  6729. type="2" >
  6730. </productMenu>
  6731. <productMenu id="fmradio"
  6732. type="3" >
  6733. </productMenu>
  6734. <productMenu id="deviceSetting"
  6735. type="1"
  6736. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6737. </productMenu>
  6738. <productMenu id="userGuide"
  6739. type="1"
  6740. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6741. size="778KB" >
  6742. </productMenu>
  6743. <productMenu id="connectGuide"
  6744. type="1"
  6745. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6746. size="1.12MB" >
  6747. </productMenu>
  6748. <productID id="5426"
  6749. />
  6750. <productGroupable type="0"
  6751. />
  6752. </product>
  6753. <product id="OUTRUSHR"
  6754. name="OUTRUSH R"
  6755. series="Helmet"
  6756. latestVersion="2.1"
  6757. show = "1" >
  6758. <productMenu id="protocol"
  6759. type="3" >
  6760. </productMenu>
  6761. <productMenu id="sip"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="bluetoothIntercom"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="phone"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="fmradio"
  6771. type="0" >
  6772. </productMenu>
  6773. <productMenu id="deviceSetting"
  6774. type="1"
  6775. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6776. </productMenu>
  6777. <productMenu id="userGuide"
  6778. type="1"
  6779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6780. size="1.14MB" >
  6781. </productMenu>
  6782. <productMenu id="connectGuide"
  6783. type="1"
  6784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6785. size="1.12MB" >
  6786. </productMenu>
  6787. <productID id="5440"
  6788. />
  6789. <productGroupable type="0"
  6790. />
  6791. </product>
  6792. <product id="OUTRUSHR"
  6793. name="OUTRUSH R"
  6794. series="Helmet"
  6795. latestVersion="1.1.4"
  6796. show = "-1" >
  6797. <productMenu id="protocol"
  6798. type="0">
  6799. </productMenu>
  6800. <productMenu id="sip"
  6801. type="1" >
  6802. </productMenu>
  6803. <productMenu id="bluetoothIntercom"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="phone"
  6807. type="2" >
  6808. </productMenu>
  6809. <productMenu id="fmradio"
  6810. type="3" >
  6811. </productMenu>
  6812. <productMenu id="deviceSetting"
  6813. type="1"
  6814. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6815. </productMenu>
  6816. <productMenu id="userGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6819. size="660KB" >
  6820. </productMenu>
  6821. <productMenu id="connectGuide"
  6822. type="1"
  6823. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productID id="5424"
  6827. />
  6828. <productGroupable type="0"
  6829. />
  6830. </product>
  6831. <product id="OUTSTARS"
  6832. name="OUTSTAR S"
  6833. series="Helmet"
  6834. latestVersion="2.0.1"
  6835. show = "-1" >
  6836. <productMenu id="protocol"
  6837. type="3" >
  6838. </productMenu>
  6839. <productMenu id="sip"
  6840. type="1" >
  6841. </productMenu>
  6842. <productMenu id="bluetoothIntercom"
  6843. type="1" >
  6844. </productMenu>
  6845. <productMenu id="phone"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="fmradio"
  6849. type="0" >
  6850. </productMenu>
  6851. <productMenu id="deviceSetting"
  6852. type="1"
  6853. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6854. </productMenu>
  6855. <productMenu id="userGuide"
  6856. type="0"
  6857. url=""
  6858. size="1.14MB" >
  6859. </productMenu>
  6860. <productID id="5443"
  6861. />
  6862. <productGroupable type="0"
  6863. />
  6864. </product>
  6865. <product id="OUTSTARS"
  6866. name="OUTSTAR S"
  6867. series="Helmet"
  6868. latestVersion="1.1.4"
  6869. show = "1" >
  6870. <productMenu id="protocol"
  6871. type="0">
  6872. </productMenu>
  6873. <productMenu id="sip"
  6874. type="1" >
  6875. </productMenu>
  6876. <productMenu id="bluetoothIntercom"
  6877. type="1" >
  6878. </productMenu>
  6879. <productMenu id="phone"
  6880. type="2" >
  6881. </productMenu>
  6882. <productMenu id="fmradio"
  6883. type="3" >
  6884. </productMenu>
  6885. <productMenu id="deviceSetting"
  6886. type="1"
  6887. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6888. </productMenu>
  6889. <productMenu id="quickGuide"
  6890. type="1"
  6891. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6892. size="643KB" >
  6893. </productMenu>
  6894. <productMenu id="userGuide"
  6895. type="1"
  6896. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6897. size="1.15MB" >
  6898. </productMenu>
  6899. <productMenu id="connectGuide"
  6900. type="1"
  6901. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6902. size="1.12MB" >
  6903. </productMenu>
  6904. <productID id="5428"
  6905. />
  6906. <productGroupable type="0"
  6907. />
  6908. </product>
  6909. <product id="OUTRIDE"
  6910. name="OUTRIDE"
  6911. series="Helmet"
  6912. latestVersion="1.0.1"
  6913. show = "1" >
  6914. <productMenu id="protocol"
  6915. type="0">
  6916. </productMenu>
  6917. <productMenu id="sip"
  6918. type="1" >
  6919. </productMenu>
  6920. <productMenu id="bluetoothIntercom"
  6921. type="1" >
  6922. </productMenu>
  6923. <productMenu id="phone"
  6924. type="2" >
  6925. </productMenu>
  6926. <productMenu id="fmradio"
  6927. type="3" >
  6928. </productMenu>
  6929. <productMenu id="deviceSetting"
  6930. type="1"
  6931. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6932. </productMenu>
  6933. <productMenu id="quickGuide"
  6934. type="1"
  6935. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6936. size="643KB" >
  6937. </productMenu>
  6938. <productMenu id="userGuide"
  6939. type="1"
  6940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6941. size="660KB" >
  6942. </productMenu>
  6943. <productMenu id="connectGuide"
  6944. type="1"
  6945. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6946. size="1.12MB" >
  6947. </productMenu>
  6948. <productID id="5432"
  6949. />
  6950. <productGroupable type="0"
  6951. />
  6952. </product>
  6953. <product id="OUTFORCE"
  6954. name="OUTFORCE"
  6955. series="Helmet"
  6956. latestVersion="1.0.1"
  6957. show = "1" >
  6958. <productMenu id="protocol"
  6959. type="0">
  6960. </productMenu>
  6961. <productMenu id="sip"
  6962. type="1" >
  6963. </productMenu>
  6964. <productMenu id="bluetoothIntercom"
  6965. type="1" >
  6966. </productMenu>
  6967. <productMenu id="phone"
  6968. type="2" >
  6969. </productMenu>
  6970. <productMenu id="fmradio"
  6971. type="3" >
  6972. </productMenu>
  6973. <productMenu id="deviceSetting"
  6974. type="1"
  6975. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6976. </productMenu>
  6977. <productMenu id="quickGuide"
  6978. type="1"
  6979. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6980. size="643KB" >
  6981. </productMenu>
  6982. <productMenu id="userGuide"
  6983. type="1"
  6984. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6985. size="660KB" >
  6986. </productMenu>
  6987. <productMenu id="connectGuide"
  6988. type="1"
  6989. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6990. size="1.12MB" >
  6991. </productMenu>
  6992. <productID id="5430"
  6993. />
  6994. <productGroupable type="0"
  6995. />
  6996. </product>
  6997. <product id="Rumba"
  6998. name="Rumba"
  6999. series="30"
  7000. latestVersion="2.0"
  7001. show = "-1" >
  7002. <productMenu id="protocol"
  7003. type="3" >
  7004. </productMenu>
  7005. <productMenu id="sip"
  7006. type="1" >
  7007. </productMenu>
  7008. <productMenu id="bluetoothIntercom"
  7009. type="1" >
  7010. </productMenu>
  7011. <productMenu id="deviceSetting"
  7012. type="1"
  7013. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7014. </productMenu>
  7015. <productMenu id="quickGuide"
  7016. type="1"
  7017. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7018. size="344KB" >
  7019. </productMenu>
  7020. <productMenu id="userGuide"
  7021. type="1"
  7022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7023. size="1.14MB" >
  7024. </productMenu>
  7025. <productID id="6322"
  7026. />
  7027. <productGroupable type="0"
  7028. />
  7029. </product>
  7030. <product id="Savage"
  7031. name="Savage"
  7032. series="Helmet"
  7033. latestVersion="1.2.2"
  7034. show = "1" >
  7035. <productMenu id="protocol"
  7036. type="0">
  7037. </productMenu>
  7038. <productMenu id="sip"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="bluetoothIntercom"
  7042. type="1" >
  7043. </productMenu>
  7044. <productMenu id="phone"
  7045. type="2" >
  7046. </productMenu>
  7047. <productMenu id="fmradio"
  7048. type="3" >
  7049. </productMenu>
  7050. <productMenu id="deviceSetting"
  7051. type="1"
  7052. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7053. <productMenuURL version="1.9"
  7054. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7055. />
  7056. <productMenuURL version="1.1"
  7057. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7058. />
  7059. </productMenu>
  7060. <productMenu id="quickGuide"
  7061. type="1"
  7062. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7063. size="796KB" >
  7064. </productMenu>
  7065. <productMenu id="userGuide"
  7066. type="1"
  7067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7068. size="910KB" >
  7069. </productMenu>
  7070. <productMenu id="connectGuide"
  7071. type="1"
  7072. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7073. size="1.12MB" >
  7074. </productMenu>
  7075. <productID id="5550"
  7076. />
  7077. <productGroupable type="0"
  7078. />
  7079. </product>
  7080. <product id="RECON"
  7081. name="RECON"
  7082. series="Helmet"
  7083. latestVersion="1.0"
  7084. latestVersionVoicePrompt="1.7"
  7085. show = "-1" >
  7086. <productMenu id="protocol"
  7087. type="2" >
  7088. </productMenu>
  7089. <productMenu id="ota"
  7090. type="0" >
  7091. <otaLanguages>
  7092. <otaLanguage
  7093. id="0"
  7094. name="English"
  7095. package="0"
  7096. />
  7097. <otaLanguage
  7098. id="0"
  7099. name="French"
  7100. package="1"
  7101. />
  7102. <otaLanguage
  7103. id="0"
  7104. name="Spanish"
  7105. package="2"
  7106. />
  7107. <otaLanguage
  7108. id="0"
  7109. name="Italian"
  7110. package="3"
  7111. />
  7112. <otaLanguage
  7113. id="0"
  7114. name="German"
  7115. package="4"
  7116. />
  7117. <otaLanguage
  7118. id="0"
  7119. name="Dutch"
  7120. package="5"
  7121. />
  7122. <otaLanguage
  7123. id="0"
  7124. name="Russian"
  7125. package="6"
  7126. />
  7127. <otaLanguage
  7128. id="0"
  7129. name="Chinese"
  7130. package="7"
  7131. />
  7132. <otaLanguage
  7133. id="0"
  7134. name="Korean"
  7135. package="8"
  7136. />
  7137. <otaLanguage
  7138. id="0"
  7139. name="Japanese"
  7140. package="9"
  7141. />
  7142. <otaLanguage
  7143. id="0"
  7144. name="Finnish"
  7145. package="10"
  7146. />
  7147. <otaLanguage
  7148. id="0"
  7149. name="Polish"
  7150. package="11"
  7151. />
  7152. </otaLanguages>
  7153. <otaPackages>
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fr-FR.img"
  7160. size="5183988"
  7161. />
  7162. <package
  7163. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-es-ES.img"
  7164. size="5183988"
  7165. />
  7166. <package
  7167. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-it-IT.img"
  7168. size="5183988"
  7169. />
  7170. <package
  7171. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-de-DE.img"
  7172. size="5183988"
  7173. />
  7174. <package
  7175. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-nl-NL.img"
  7176. size="5183988"
  7177. />
  7178. <package
  7179. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ru-RU.img"
  7180. size="5183988"
  7181. />
  7182. <package
  7183. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-cmn-CN.img"
  7184. size="5183988"
  7185. />
  7186. <package
  7187. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ko-KR.img"
  7188. size="5183988"
  7189. />
  7190. <package
  7191. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ja-JP.img"
  7192. size="5183988"
  7193. />
  7194. <package
  7195. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fi-FI.img"
  7196. size="5183988"
  7197. />
  7198. <package
  7199. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-pl-PL.img"
  7200. size="5183988"
  7201. />
  7202. </otaPackages>
  7203. </productMenu>
  7204. <productMenu id="wa"
  7205. type="0" >
  7206. </productMenu>
  7207. <productMenu id="led"
  7208. type="5" >
  7209. </productMenu>
  7210. <productMenu id="led+"
  7211. type="2"
  7212. url="1" >
  7213. </productMenu>
  7214. <productMenu id="meshIntercom+"
  7215. type="3"
  7216. url="2" >
  7217. </productMenu>
  7218. <productMenu id="waveIntercom"
  7219. type="1" >
  7220. </productMenu>
  7221. <productMenu id="fmradio"
  7222. type="0" >
  7223. </productMenu>
  7224. <productMenu id="phone"
  7225. type="1" >
  7226. </productMenu>
  7227. <productMenu id="music"
  7228. type="1" >
  7229. </productMenu>
  7230. <productMenu id="musicSharing"
  7231. type="0" >
  7232. </productMenu>
  7233. <productMenu id="deviceSetting"
  7234. type="1"
  7235. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7236. </productMenu>
  7237. <productMenu id="quickGuide"
  7238. type="0"
  7239. url=""
  7240. size="1.12MB" >
  7241. </productMenu>
  7242. <productMenu id="userGuide"
  7243. type="1"
  7244. url=""
  7245. size="2.28MB" >
  7246. </productMenu>
  7247. <productMenu id="videoGuide"
  7248. type="0"
  7249. url=""
  7250. size="3.41MB" >
  7251. </productMenu>
  7252. <productMenu id="volume"
  7253. type="16" >
  7254. </productMenu>
  7255. <productMenu id="volume+"
  7256. type="2"
  7257. url="0x6004" >
  7258. </productMenu>
  7259. <productMenu id="battery"
  7260. type="1" >
  7261. </productMenu>
  7262. <productID id="6A1D"
  7263. />
  7264. <productGroupable type="0"
  7265. />
  7266. </product>
  7267. <product id="SPECTER"
  7268. name="SPECTER"
  7269. series="Helmet"
  7270. latestVersion="1.0.9"
  7271. latestVersionVoicePrompt="1.7"
  7272. show = "1" >
  7273. <productMenu id="protocol"
  7274. type="2" >
  7275. </productMenu>
  7276. <productMenu id="ota"
  7277. type="2" >
  7278. <otaLanguages>
  7279. <otaLanguage
  7280. id="0"
  7281. name="English"
  7282. package="0"
  7283. />
  7284. <otaLanguage
  7285. id="0"
  7286. name="French"
  7287. package="1"
  7288. />
  7289. <otaLanguage
  7290. id="0"
  7291. name="Spanish"
  7292. package="2"
  7293. />
  7294. <otaLanguage
  7295. id="0"
  7296. name="Italian"
  7297. package="3"
  7298. />
  7299. <otaLanguage
  7300. id="0"
  7301. name="German"
  7302. package="4"
  7303. />
  7304. <otaLanguage
  7305. id="0"
  7306. name="Dutch"
  7307. package="5"
  7308. />
  7309. <otaLanguage
  7310. id="0"
  7311. name="Russian"
  7312. package="6"
  7313. />
  7314. <otaLanguage
  7315. id="0"
  7316. name="Chinese"
  7317. package="7"
  7318. />
  7319. <otaLanguage
  7320. id="0"
  7321. name="Korean"
  7322. package="8"
  7323. />
  7324. <otaLanguage
  7325. id="0"
  7326. name="Japanese"
  7327. package="9"
  7328. />
  7329. <otaLanguage
  7330. id="0"
  7331. name="Finnish"
  7332. package="10"
  7333. />
  7334. <otaLanguage
  7335. id="0"
  7336. name="Polish"
  7337. package="11"
  7338. />
  7339. </otaLanguages>
  7340. <otaPackages>
  7341. <package
  7342. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7343. size="5183988"
  7344. />
  7345. <package
  7346. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7347. size="5183988"
  7348. />
  7349. <package
  7350. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7351. size="5183988"
  7352. />
  7353. <package
  7354. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7355. size="5183988"
  7356. />
  7357. <package
  7358. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7359. size="5183988"
  7360. />
  7361. <package
  7362. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7363. size="5183988"
  7364. />
  7365. <package
  7366. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7367. size="5183988"
  7368. />
  7369. <package
  7370. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7371. size="5183988"
  7372. />
  7373. <package
  7374. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7375. size="5183988"
  7376. />
  7377. <package
  7378. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7379. size="5183988"
  7380. />
  7381. <package
  7382. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7383. size="5183988"
  7384. />
  7385. <package
  7386. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7387. size="5183988"
  7388. />
  7389. </otaPackages>
  7390. </productMenu>
  7391. <productMenu id="wa"
  7392. type="0" >
  7393. </productMenu>
  7394. <productMenu id="led"
  7395. type="5" >
  7396. </productMenu>
  7397. <productMenu id="led+"
  7398. type="2"
  7399. url="1" >
  7400. </productMenu>
  7401. <productMenu id="meshIntercom+"
  7402. type="3"
  7403. url="2" >
  7404. </productMenu>
  7405. <productMenu id="waveIntercom"
  7406. type="1" >
  7407. </productMenu>
  7408. <productMenu id="fmradio"
  7409. type="0" >
  7410. </productMenu>
  7411. <productMenu id="phone"
  7412. type="1" >
  7413. </productMenu>
  7414. <productMenu id="music"
  7415. type="1" >
  7416. </productMenu>
  7417. <productMenu id="musicSharing"
  7418. type="0" >
  7419. </productMenu>
  7420. <productMenu id="deviceSetting"
  7421. type="1"
  7422. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7423. <productMenuURL version="1.0.4"
  7424. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7425. />
  7426. </productMenu>
  7427. <productMenu id="quickGuide"
  7428. type="0"
  7429. url=""
  7430. size="1.12MB" >
  7431. </productMenu>
  7432. <productMenu id="userGuide"
  7433. type="1"
  7434. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7435. size="2.0MB" >
  7436. </productMenu>
  7437. <productMenu id="videoGuide"
  7438. type="0"
  7439. url=""
  7440. size="3.41MB" >
  7441. </productMenu>
  7442. <productMenu id="volume"
  7443. type="16" >
  7444. </productMenu>
  7445. <productMenu id="volume+"
  7446. type="2"
  7447. url="0x6004" >
  7448. </productMenu>
  7449. <productMenu id="battery"
  7450. type="1" >
  7451. </productMenu>
  7452. <productID id="6A11"
  7453. />
  7454. <productGroupable type="0"
  7455. />
  7456. </product>
  7457. <product id="SPECTER"
  7458. name="SPECTER"
  7459. series="Helmet"
  7460. latestVersion="1.0.9"
  7461. latestVersionVoicePrompt="1.7"
  7462. show = "-1" >
  7463. <productMenu id="protocol"
  7464. type="2" >
  7465. </productMenu>
  7466. <productMenu id="ota"
  7467. type="2" >
  7468. <otaLanguages>
  7469. <otaLanguage
  7470. id="0"
  7471. name="English"
  7472. package="0"
  7473. />
  7474. <otaLanguage
  7475. id="0"
  7476. name="French"
  7477. package="1"
  7478. />
  7479. <otaLanguage
  7480. id="0"
  7481. name="Spanish"
  7482. package="2"
  7483. />
  7484. <otaLanguage
  7485. id="0"
  7486. name="Italian"
  7487. package="3"
  7488. />
  7489. <otaLanguage
  7490. id="0"
  7491. name="German"
  7492. package="4"
  7493. />
  7494. <otaLanguage
  7495. id="0"
  7496. name="Dutch"
  7497. package="5"
  7498. />
  7499. <otaLanguage
  7500. id="0"
  7501. name="Russian"
  7502. package="6"
  7503. />
  7504. <otaLanguage
  7505. id="0"
  7506. name="Chinese"
  7507. package="7"
  7508. />
  7509. <otaLanguage
  7510. id="0"
  7511. name="Korean"
  7512. package="8"
  7513. />
  7514. <otaLanguage
  7515. id="0"
  7516. name="Japanese"
  7517. package="9"
  7518. />
  7519. <otaLanguage
  7520. id="0"
  7521. name="Finnish"
  7522. package="10"
  7523. />
  7524. <otaLanguage
  7525. id="0"
  7526. name="Polish"
  7527. package="11"
  7528. />
  7529. </otaLanguages>
  7530. <otaPackages>
  7531. <package
  7532. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7533. size="5183988"
  7534. />
  7535. <package
  7536. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7537. size="5183988"
  7538. />
  7539. <package
  7540. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7541. size="5183988"
  7542. />
  7543. <package
  7544. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7545. size="5183988"
  7546. />
  7547. <package
  7548. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7549. size="5183988"
  7550. />
  7551. <package
  7552. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7553. size="5183988"
  7554. />
  7555. <package
  7556. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7557. size="5183988"
  7558. />
  7559. <package
  7560. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7561. size="5183988"
  7562. />
  7563. <package
  7564. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7565. size="5183988"
  7566. />
  7567. <package
  7568. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7569. size="5183988"
  7570. />
  7571. <package
  7572. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7573. size="5183988"
  7574. />
  7575. <package
  7576. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7577. size="5183988"
  7578. />
  7579. </otaPackages>
  7580. </productMenu>
  7581. <productMenu id="wa"
  7582. type="0" >
  7583. </productMenu>
  7584. <productMenu id="led"
  7585. type="5" >
  7586. </productMenu>
  7587. <productMenu id="led+"
  7588. type="2"
  7589. url="1" >
  7590. </productMenu>
  7591. <productMenu id="meshIntercom+"
  7592. type="3"
  7593. url="2" >
  7594. </productMenu>
  7595. <productMenu id="waveIntercom"
  7596. type="1" >
  7597. </productMenu>
  7598. <productMenu id="fmradio"
  7599. type="0" >
  7600. </productMenu>
  7601. <productMenu id="phone"
  7602. type="1" >
  7603. </productMenu>
  7604. <productMenu id="music"
  7605. type="1" >
  7606. </productMenu>
  7607. <productMenu id="musicSharing"
  7608. type="0" >
  7609. </productMenu>
  7610. <productMenu id="deviceSetting"
  7611. type="1"
  7612. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7613. <productMenuURL version="1.0.4"
  7614. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7615. />
  7616. <productMenuURL version="1.0"
  7617. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7618. />
  7619. </productMenu>
  7620. <productMenu id="quickGuide"
  7621. type="0"
  7622. url=""
  7623. size="1.12MB" >
  7624. </productMenu>
  7625. <productMenu id="userGuide"
  7626. type="1"
  7627. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7628. size="2.0MB" >
  7629. </productMenu>
  7630. <productMenu id="videoGuide"
  7631. type="0"
  7632. url=""
  7633. size="3.41MB" >
  7634. </productMenu>
  7635. <productMenu id="volume"
  7636. type="16" >
  7637. </productMenu>
  7638. <productMenu id="volume+"
  7639. type="2"
  7640. url="0x6004" >
  7641. </productMenu>
  7642. <productMenu id="battery"
  7643. type="1" >
  7644. </productMenu>
  7645. <productID id="6A0A"
  7646. />
  7647. <productGroupable type="0"
  7648. />
  7649. </product>
  7650. <product id="OUTLANDER"
  7651. name="OUTLANDER"
  7652. series="Helmet"
  7653. latestVersion="1.0.9"
  7654. latestVersionVoicePrompt="1.7"
  7655. show = "1" >
  7656. <productMenu id="protocol"
  7657. type="2" >
  7658. </productMenu>
  7659. <productMenu id="ota"
  7660. type="2" >
  7661. <otaLanguages>
  7662. <otaLanguage
  7663. id="0"
  7664. name="English"
  7665. package="0"
  7666. />
  7667. <otaLanguage
  7668. id="0"
  7669. name="French"
  7670. package="1"
  7671. />
  7672. <otaLanguage
  7673. id="0"
  7674. name="Spanish"
  7675. package="2"
  7676. />
  7677. <otaLanguage
  7678. id="0"
  7679. name="Italian"
  7680. package="3"
  7681. />
  7682. <otaLanguage
  7683. id="0"
  7684. name="German"
  7685. package="4"
  7686. />
  7687. <otaLanguage
  7688. id="0"
  7689. name="Dutch"
  7690. package="5"
  7691. />
  7692. <otaLanguage
  7693. id="0"
  7694. name="Russian"
  7695. package="6"
  7696. />
  7697. <otaLanguage
  7698. id="0"
  7699. name="Chinese"
  7700. package="7"
  7701. />
  7702. <otaLanguage
  7703. id="0"
  7704. name="Korean"
  7705. package="8"
  7706. />
  7707. <otaLanguage
  7708. id="0"
  7709. name="Japanese"
  7710. package="9"
  7711. />
  7712. <otaLanguage
  7713. id="0"
  7714. name="Finnish"
  7715. package="10"
  7716. />
  7717. <otaLanguage
  7718. id="0"
  7719. name="Polish"
  7720. package="11"
  7721. />
  7722. </otaLanguages>
  7723. <otaPackages>
  7724. <package
  7725. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7726. size="5183988"
  7727. />
  7728. <package
  7729. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7730. size="5183988"
  7731. />
  7732. <package
  7733. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7734. size="5183988"
  7735. />
  7736. <package
  7737. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7738. size="5183988"
  7739. />
  7740. <package
  7741. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7742. size="5183988"
  7743. />
  7744. <package
  7745. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7746. size="5183988"
  7747. />
  7748. <package
  7749. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7750. size="5183988"
  7751. />
  7752. <package
  7753. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7754. size="5183988"
  7755. />
  7756. <package
  7757. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7758. size="5183988"
  7759. />
  7760. <package
  7761. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7762. size="5183988"
  7763. />
  7764. <package
  7765. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7766. size="5183988"
  7767. />
  7768. <package
  7769. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7770. size="5183988"
  7771. />
  7772. </otaPackages>
  7773. </productMenu>
  7774. <productMenu id="wa"
  7775. type="0" >
  7776. </productMenu>
  7777. <productMenu id="led"
  7778. type="5" >
  7779. </productMenu>
  7780. <productMenu id="led+"
  7781. type="2"
  7782. url="1" >
  7783. </productMenu>
  7784. <productMenu id="meshIntercom+"
  7785. type="3"
  7786. url="2" >
  7787. </productMenu>
  7788. <productMenu id="waveIntercom"
  7789. type="1" >
  7790. </productMenu>
  7791. <productMenu id="fmradio"
  7792. type="0" >
  7793. </productMenu>
  7794. <productMenu id="phone"
  7795. type="1" >
  7796. </productMenu>
  7797. <productMenu id="music"
  7798. type="1" >
  7799. </productMenu>
  7800. <productMenu id="musicSharing"
  7801. type="0" >
  7802. </productMenu>
  7803. <productMenu id="deviceSetting"
  7804. type="1"
  7805. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7806. <productMenuURL version="1.0.4"
  7807. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7808. />
  7809. </productMenu>
  7810. <productMenu id="quickGuide"
  7811. type="0"
  7812. url=""
  7813. size="1.12MB" >
  7814. </productMenu>
  7815. <productMenu id="userGuide"
  7816. type="1"
  7817. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7818. size="2.0MB" >
  7819. </productMenu>
  7820. <productMenu id="videoGuide"
  7821. type="0"
  7822. url=""
  7823. size="3.41MB" >
  7824. </productMenu>
  7825. <productMenu id="volume"
  7826. type="16" >
  7827. </productMenu>
  7828. <productMenu id="volume+"
  7829. type="2"
  7830. url="0x6004" >
  7831. </productMenu>
  7832. <productMenu id="battery"
  7833. type="1" >
  7834. </productMenu>
  7835. <productID id="6A05"
  7836. />
  7837. <productGroupable type="0"
  7838. />
  7839. </product>
  7840. <product id="OUTRUSH2"
  7841. name="OUTRUSH 2"
  7842. series="Helmet"
  7843. latestVersion="1.0.3"
  7844. latestVersionVoicePrompt="1.6"
  7845. show = "1" >
  7846. <productMenu id="protocol"
  7847. type="2" >
  7848. </productMenu>
  7849. <productMenu id="alexa"
  7850. type="0" >
  7851. </productMenu>
  7852. <productMenu id="ota"
  7853. type="2" >
  7854. <otaPackages>
  7855. <package
  7856. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7857. size="2945812"
  7858. />
  7859. </otaPackages>
  7860. </productMenu>
  7861. <productMenu id="meshIntercom+"
  7862. type="3"
  7863. url="2" >
  7864. </productMenu>
  7865. <productMenu id="waveIntercom"
  7866. type="1" >
  7867. </productMenu>
  7868. <productMenu id="phone"
  7869. type="1" >
  7870. </productMenu>
  7871. <productMenu id="music"
  7872. type="1" >
  7873. </productMenu>
  7874. <productMenu id="musicSharing"
  7875. type="0" >
  7876. </productMenu>
  7877. <productMenu id="deviceSetting"
  7878. type="1"
  7879. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7880. <productMenuURL version="1.0"
  7881. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7882. />
  7883. </productMenu>
  7884. <productMenu id="quickGuide"
  7885. type="0"
  7886. url=""
  7887. size="1.12MB" >
  7888. </productMenu>
  7889. <productMenu id="userGuide"
  7890. type="1"
  7891. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7892. size="2.0MB" >
  7893. </productMenu>
  7894. <productMenu id="volume"
  7895. type="12" >
  7896. </productMenu>
  7897. <productMenu id="battery"
  7898. type="1" >
  7899. </productMenu>
  7900. <productID id="684A"
  7901. />
  7902. <productGroupable type="0"
  7903. />
  7904. </product>
  7905. <product id="OUTSTAR2"
  7906. name="OUTSTAR 2"
  7907. series="Helmet"
  7908. latestVersion="1.0.2"
  7909. latestVersionVoicePrompt="1.6"
  7910. show = "1" >
  7911. <productMenu id="protocol"
  7912. type="2" >
  7913. </productMenu>
  7914. <productMenu id="alexa"
  7915. type="0" >
  7916. </productMenu>
  7917. <productMenu id="ota"
  7918. type="2" >
  7919. <otaPackages>
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7922. size="2945812"
  7923. />
  7924. </otaPackages>
  7925. </productMenu>
  7926. <productMenu id="meshIntercom+"
  7927. type="3"
  7928. url="2" >
  7929. </productMenu>
  7930. <productMenu id="waveIntercom"
  7931. type="1" >
  7932. </productMenu>
  7933. <productMenu id="phone"
  7934. type="1" >
  7935. </productMenu>
  7936. <productMenu id="music"
  7937. type="1" >
  7938. </productMenu>
  7939. <productMenu id="musicSharing"
  7940. type="0" >
  7941. </productMenu>
  7942. <productMenu id="deviceSetting"
  7943. type="1"
  7944. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7945. </productMenu>
  7946. <productMenu id="quickGuide"
  7947. type="0"
  7948. url=""
  7949. size="1.12MB" >
  7950. </productMenu>
  7951. <productMenu id="userGuide"
  7952. type="1"
  7953. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7954. size="2.0MB" >
  7955. </productMenu>
  7956. <productMenu id="volume"
  7957. type="12" >
  7958. </productMenu>
  7959. <productMenu id="battery"
  7960. type="1" >
  7961. </productMenu>
  7962. <productID id="684B"
  7963. />
  7964. <productGroupable type="0"
  7965. />
  7966. </product>
  7967. <product id="SURGE"
  7968. name="SURGE"
  7969. series="Helmet"
  7970. latestVersion="1.2"
  7971. latestVersionVoicePrompt="1.3"
  7972. show = "1" >
  7973. <productMenu id="protocol"
  7974. type="2" >
  7975. </productMenu>
  7976. <productMenu id="alexa"
  7977. type="0" >
  7978. </productMenu>
  7979. <productMenu id="ota"
  7980. type="2" >
  7981. <otaPackages>
  7982. <package
  7983. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7984. size="2945812"
  7985. />
  7986. </otaPackages>
  7987. </productMenu>
  7988. <productMenu id="meshIntercom"
  7989. type="30" >
  7990. </productMenu>
  7991. <productMenu id="meshIntercom+"
  7992. type="3"
  7993. url="2" >
  7994. <productMenuType version="1.0.1"
  7995. type="2"
  7996. />
  7997. </productMenu>
  7998. <productMenu id="waveIntercom"
  7999. type="1" >
  8000. <productMenuType version="1.0.9"
  8001. type="0"
  8002. />
  8003. </productMenu>
  8004. <productMenu id="phone"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="music"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="musicSharing"
  8011. type="0" >
  8012. </productMenu>
  8013. <productMenu id="deviceSetting"
  8014. type="1"
  8015. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8016. <productMenuURL version="1.1.9"
  8017. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8018. />
  8019. <productMenuURL version="1.0.1"
  8020. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8021. />
  8022. </productMenu>
  8023. <productMenu id="quickGuide"
  8024. type="0"
  8025. url=""
  8026. size="1.12MB" >
  8027. </productMenu>
  8028. <productMenu id="userGuide"
  8029. type="1"
  8030. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8031. size="2.0MB" >
  8032. </productMenu>
  8033. <productMenu id="volume"
  8034. type="12" >
  8035. </productMenu>
  8036. <productMenu id="battery"
  8037. type="1" >
  8038. </productMenu>
  8039. <productID id="6840"
  8040. />
  8041. <productGroupable type="0"
  8042. />
  8043. </product>
  8044. <product id="Cavalry2"
  8045. name="Cavalry 2"
  8046. series="Helmet"
  8047. latestVersion="1.2"
  8048. latestVersionVoicePrompt="1.3"
  8049. show = "1" >
  8050. <productMenu id="protocol"
  8051. type="2" >
  8052. </productMenu>
  8053. <productMenu id="alexa"
  8054. type="0" >
  8055. </productMenu>
  8056. <productMenu id="ota"
  8057. type="2" >
  8058. <otaPackages>
  8059. <package
  8060. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8061. size="3144148"
  8062. />
  8063. </otaPackages>
  8064. </productMenu>
  8065. <productMenu id="wa"
  8066. type="0" >
  8067. </productMenu>
  8068. <productMenu id="meshIntercom"
  8069. type="30" >
  8070. </productMenu>
  8071. <productMenu id="meshIntercom+"
  8072. type="3"
  8073. url="2" >
  8074. <productMenuType version="1.0"
  8075. type="2"
  8076. />
  8077. </productMenu>
  8078. <productMenu id="waveIntercom"
  8079. type="1" >
  8080. <productMenuType version="1.0.9"
  8081. type="0"
  8082. />
  8083. </productMenu>
  8084. <productMenu id="phone"
  8085. type="1" >
  8086. </productMenu>
  8087. <productMenu id="music"
  8088. type="1" >
  8089. </productMenu>
  8090. <productMenu id="musicSharing"
  8091. type="0" >
  8092. </productMenu>
  8093. <productMenu id="deviceSetting"
  8094. type="1"
  8095. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8096. <productMenuURL version="1.1.9"
  8097. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8098. />
  8099. <productMenuURL version="1.0"
  8100. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8101. />
  8102. </productMenu>
  8103. <productMenu id="quickGuide"
  8104. type="0"
  8105. url=""
  8106. size="1.12MB" >
  8107. </productMenu>
  8108. <productMenu id="userGuide"
  8109. type="1"
  8110. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8111. size="2.0MB" >
  8112. </productMenu>
  8113. <productMenu id="connectGuide"
  8114. type="1"
  8115. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8116. size="1.12MB" >
  8117. </productMenu>
  8118. <productMenu id="volume"
  8119. type="12" >
  8120. </productMenu>
  8121. <productMenu id="battery"
  8122. type="1" >
  8123. </productMenu>
  8124. <productID id="6839"
  8125. />
  8126. <productGroupable type="0"
  8127. />
  8128. </product>
  8129. <product id="Cavalry"
  8130. name="Cavalry"
  8131. series="Helmet"
  8132. latestVersion="1.2.2"
  8133. show = "1" >
  8134. <productMenu id="protocol"
  8135. type="0">
  8136. </productMenu>
  8137. <productMenu id="sip"
  8138. type="1" >
  8139. </productMenu>
  8140. <productMenu id="bluetoothIntercom"
  8141. type="1" >
  8142. </productMenu>
  8143. <productMenu id="phone"
  8144. type="2" >
  8145. </productMenu>
  8146. <productMenu id="fmradio"
  8147. type="3" >
  8148. </productMenu>
  8149. <productMenu id="deviceSetting"
  8150. type="1"
  8151. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8152. <productMenuURL version="1.9"
  8153. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8154. />
  8155. <productMenuURL version="1.0.1"
  8156. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8157. />
  8158. </productMenu>
  8159. <productMenu id="quickGuide"
  8160. type="1"
  8161. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8162. size="795KB" >
  8163. </productMenu>
  8164. <productMenu id="userGuide"
  8165. type="1"
  8166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8167. size="1.87MB" >
  8168. </productMenu>
  8169. <productMenu id="connectGuide"
  8170. type="1"
  8171. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8172. size="1.12MB" >
  8173. </productMenu>
  8174. <productID id="5524"
  8175. />
  8176. <productGroupable type="0"
  8177. />
  8178. </product>
  8179. <product id="Cavalry_Lite"
  8180. name="Cavalry Lite"
  8181. series="Helmet"
  8182. latestVersion="1.0.2"
  8183. show = "1" >
  8184. <productMenu id="protocol"
  8185. type="0">
  8186. </productMenu>
  8187. <productMenu id="sip"
  8188. type="1" >
  8189. </productMenu>
  8190. <productMenu id="bluetoothIntercom"
  8191. type="1" >
  8192. </productMenu>
  8193. <productMenu id="phone"
  8194. type="2" >
  8195. </productMenu>
  8196. <productMenu id="fmradio"
  8197. type="3" >
  8198. </productMenu>
  8199. <productMenu id="deviceSetting"
  8200. type="1"
  8201. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8202. </productMenu>
  8203. <productMenu id="userGuide"
  8204. type="1"
  8205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8206. size="1.74MB" >
  8207. </productMenu>
  8208. <productMenu id="connectGuide"
  8209. type="1"
  8210. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8211. size="1.12MB" >
  8212. </productMenu>
  8213. <productID id="5536"
  8214. />
  8215. <productGroupable type="0"
  8216. />
  8217. </product>
  8218. <product id="VORTEX"
  8219. name="VORTEX"
  8220. series="VORTEX"
  8221. latestVersion="1.0.2"
  8222. latestVersionVoicePrompt="1.0"
  8223. show = "1" >
  8224. <productMenu id="protocol"
  8225. type="2" >
  8226. </productMenu>
  8227. <productMenu id="warranty"
  8228. type="1" >
  8229. </productMenu>
  8230. <productMenu id="serialNumber"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="ota"
  8234. type="2" >
  8235. <otaLanguages>
  8236. <otaLanguage
  8237. id="0"
  8238. name="English"
  8239. package="0"
  8240. />
  8241. <otaLanguage
  8242. id="0"
  8243. name="French"
  8244. package="1"
  8245. />
  8246. <otaLanguage
  8247. id="0"
  8248. name="Spanish"
  8249. package="2"
  8250. />
  8251. <otaLanguage
  8252. id="0"
  8253. name="Italian"
  8254. package="3"
  8255. />
  8256. <otaLanguage
  8257. id="0"
  8258. name="German"
  8259. package="4"
  8260. />
  8261. <otaLanguage
  8262. id="0"
  8263. name="Dutch"
  8264. package="5"
  8265. />
  8266. <otaLanguage
  8267. id="0"
  8268. name="Russian"
  8269. package="6"
  8270. />
  8271. <otaLanguage
  8272. id="0"
  8273. name="Chinese"
  8274. package="7"
  8275. />
  8276. <otaLanguage
  8277. id="0"
  8278. name="Korean"
  8279. package="8"
  8280. />
  8281. <otaLanguage
  8282. id="0"
  8283. name="Japanese"
  8284. package="9"
  8285. />
  8286. <otaLanguage
  8287. id="0"
  8288. name="Finnish"
  8289. package="10"
  8290. />
  8291. <otaLanguage
  8292. id="0"
  8293. name="Polish"
  8294. package="11"
  8295. />
  8296. </otaLanguages>
  8297. <otaPackages>
  8298. <package
  8299. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8300. size="5183988"
  8301. />
  8302. <package
  8303. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8304. size="5183988"
  8305. />
  8306. <package
  8307. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8308. size="5183988"
  8309. />
  8310. <package
  8311. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8312. size="5183988"
  8313. />
  8314. <package
  8315. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8316. size="5183988"
  8317. />
  8318. <package
  8319. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8320. size="5183988"
  8321. />
  8322. <package
  8323. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8324. size="5183988"
  8325. />
  8326. <package
  8327. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8328. size="5183988"
  8329. />
  8330. <package
  8331. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8332. size="5183988"
  8333. />
  8334. <package
  8335. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8336. size="5183988"
  8337. />
  8338. <package
  8339. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8340. size="5183988"
  8341. />
  8342. <package
  8343. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8344. size="5183988"
  8345. />
  8346. </otaPackages>
  8347. </productMenu>
  8348. <productMenu id="sip"
  8349. type="1" >
  8350. </productMenu>
  8351. <productMenu id="bluetoothIntercom"
  8352. type="1" >
  8353. </productMenu>
  8354. <productMenu id="phone"
  8355. type="1" >
  8356. </productMenu>
  8357. <productMenu id="music"
  8358. type="1" >
  8359. </productMenu>
  8360. <productMenu id="fmradio"
  8361. type="1"
  8362. url="1" >
  8363. </productMenu>
  8364. <productMenu id="deviceSetting"
  8365. type="1"
  8366. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8367. </productMenu>
  8368. <productMenu id="quickGuide"
  8369. type="0"
  8370. url=""
  8371. size="934KB" >
  8372. </productMenu>
  8373. <productMenu id="userGuide"
  8374. type="1"
  8375. url=""
  8376. size="1.14MB" >
  8377. </productMenu>
  8378. <productMenu id="connectGuide"
  8379. type="0"
  8380. url=""
  8381. size="1.12MB" >
  8382. </productMenu>
  8383. <productMenu id="volume"
  8384. type="15" >
  8385. </productMenu>
  8386. <productMenu id="volume+"
  8387. type="2"
  8388. url="0x0018" >
  8389. </productMenu>
  8390. <productMenu id="appearance"
  8391. type="1"
  8392. url="1|white,silver,black" >
  8393. </productMenu>
  8394. <productID id="3451"
  8395. />
  8396. <productGroupable type="0"
  8397. />
  8398. </product>
  8399. <product id="SF4"
  8400. name="SF4"
  8401. series="SF"
  8402. latestVersion="1.1.5"
  8403. show = "-1" >
  8404. <productMenu id="protocol"
  8405. type="1"
  8406. url="3">
  8407. </productMenu>
  8408. <productMenu id="sip"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="bluetoothIntercom"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="phone"
  8415. type="1" >
  8416. </productMenu>
  8417. <productMenu id="music"
  8418. type="1" >
  8419. </productMenu>
  8420. <productMenu id="fmradio"
  8421. type="1" >
  8422. </productMenu>
  8423. <productMenu id="deviceSetting"
  8424. type="1"
  8425. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8426. <productMenuURL version="1.0.1"
  8427. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8428. />
  8429. </productMenu>
  8430. <productMenu id="quickGuide"
  8431. type="1"
  8432. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8433. size="607KB" >
  8434. </productMenu>
  8435. <productMenu id="userGuide"
  8436. type="1"
  8437. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8438. size="1.91MB" >
  8439. </productMenu>
  8440. <productMenu id="volume"
  8441. type="4" >
  8442. </productMenu>
  8443. <productID id="5414"
  8444. />
  8445. <productGroupable type="0"
  8446. />
  8447. </product>
  8448. <product id="SF4"
  8449. name="SF4"
  8450. series="SF"
  8451. latestVersion="3.4.4"
  8452. show = "1" >
  8453. <productMenu id="protocol"
  8454. type="2" >
  8455. </productMenu>
  8456. <productMenu id="sip"
  8457. type="1" >
  8458. </productMenu>
  8459. <productMenu id="bluetoothIntercom"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="phone"
  8463. type="1" >
  8464. </productMenu>
  8465. <productMenu id="music"
  8466. type="1" >
  8467. </productMenu>
  8468. <productMenu id="fmradio"
  8469. type="1" >
  8470. </productMenu>
  8471. <productMenu id="deviceSetting"
  8472. type="1"
  8473. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8474. <productMenuURL version="3.0"
  8475. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8476. />
  8477. </productMenu>
  8478. <productMenu id="quickGuide"
  8479. type="0"
  8480. url=""
  8481. size="934KB" >
  8482. </productMenu>
  8483. <productMenu id="userGuide"
  8484. type="1"
  8485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8486. size="1.14MB" >
  8487. </productMenu>
  8488. <productMenu id="connectGuide"
  8489. type="1"
  8490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8491. size="1.12MB" >
  8492. </productMenu>
  8493. <productMenu id="volume"
  8494. type="15" >
  8495. </productMenu>
  8496. <productID id="3370"
  8497. />
  8498. <productGroupable type="0"
  8499. />
  8500. </product>
  8501. <product id="SF2"
  8502. name="SF2"
  8503. series="SF"
  8504. latestVersion="1.2.1"
  8505. show = "-1" >
  8506. <productMenu id="protocol"
  8507. type="1"
  8508. url="2">
  8509. </productMenu>
  8510. <productMenu id="sip"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="bluetoothIntercom"
  8514. type="1" >
  8515. </productMenu>
  8516. <productMenu id="phone"
  8517. type="1" >
  8518. </productMenu>
  8519. <productMenu id="music"
  8520. type="1" >
  8521. </productMenu>
  8522. <productMenu id="fmradio"
  8523. type="1" >
  8524. </productMenu>
  8525. <productMenu id="deviceSetting"
  8526. type="1"
  8527. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8528. <productMenuURL version="1.0.1"
  8529. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8530. />
  8531. </productMenu>
  8532. <productMenu id="quickGuide"
  8533. type="1"
  8534. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8535. size="607KB" >
  8536. </productMenu>
  8537. <productMenu id="userGuide"
  8538. type="1"
  8539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8540. size="1.91MB" >
  8541. </productMenu>
  8542. <productMenu id="volume"
  8543. type="4" >
  8544. </productMenu>
  8545. <productID id="5412"
  8546. />
  8547. <productGroupable type="0"
  8548. />
  8549. </product>
  8550. <product id="SF2"
  8551. name="SF2"
  8552. series="SF"
  8553. latestVersion="3.3.4"
  8554. show = "1" >
  8555. <productMenu id="protocol"
  8556. type="2" >
  8557. </productMenu>
  8558. <productMenu id="sip"
  8559. type="1" >
  8560. </productMenu>
  8561. <productMenu id="bluetoothIntercom"
  8562. type="1" >
  8563. </productMenu>
  8564. <productMenu id="phone"
  8565. type="1" >
  8566. </productMenu>
  8567. <productMenu id="music"
  8568. type="1" >
  8569. </productMenu>
  8570. <productMenu id="fmradio"
  8571. type="0" >
  8572. </productMenu>
  8573. <productMenu id="deviceSetting"
  8574. type="1"
  8575. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8576. <productMenuURL version="3.0"
  8577. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8578. />
  8579. </productMenu>
  8580. <productMenu id="quickGuide"
  8581. type="0"
  8582. url=""
  8583. size="934KB" >
  8584. </productMenu>
  8585. <productMenu id="userGuide"
  8586. type="1"
  8587. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8588. size="1.14MB" >
  8589. </productMenu>
  8590. <productMenu id="connectGuide"
  8591. type="1"
  8592. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8593. size="1.12MB" >
  8594. </productMenu>
  8595. <productMenu id="volume"
  8596. type="15" >
  8597. </productMenu>
  8598. <productID id="3360"
  8599. />
  8600. <productGroupable type="0"
  8601. />
  8602. </product>
  8603. <product id="SF1"
  8604. name="SF1"
  8605. series="SF"
  8606. latestVersion="2.0.5"
  8607. show = "-1" >
  8608. <productMenu id="protocol"
  8609. type="1"
  8610. url="1">
  8611. </productMenu>
  8612. <productMenu id="sip"
  8613. type="1" >
  8614. </productMenu>
  8615. <productMenu id="bluetoothIntercom"
  8616. type="1" >
  8617. <productMenuType version="1.1"
  8618. type="0"
  8619. />
  8620. </productMenu>
  8621. <productMenu id="phone"
  8622. type="1" >
  8623. </productMenu>
  8624. <productMenu id="music"
  8625. type="1" >
  8626. </productMenu>
  8627. <productMenu id="deviceSetting"
  8628. type="1"
  8629. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8630. <productMenuURL version="1.1"
  8631. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8632. />
  8633. <productMenuURL version="1.0"
  8634. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8635. />
  8636. </productMenu>
  8637. <productMenu id="quickGuide"
  8638. type="1"
  8639. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8640. size="401KB" >
  8641. </productMenu>
  8642. <productMenu id="userGuide"
  8643. type="1"
  8644. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8645. size="1.91MB" >
  8646. </productMenu>
  8647. <productMenu id="volume"
  8648. type="3" >
  8649. </productMenu>
  8650. <productID id="5410"
  8651. />
  8652. <productGroupable type="0"
  8653. />
  8654. </product>
  8655. <product id="SF1"
  8656. name="SF1"
  8657. series="SF"
  8658. latestVersion="3.3.4"
  8659. show = "1" >
  8660. <productMenu id="protocol"
  8661. type="2" >
  8662. </productMenu>
  8663. <productMenu id="sip"
  8664. type="1" >
  8665. </productMenu>
  8666. <productMenu id="bluetoothIntercom"
  8667. type="1" >
  8668. </productMenu>
  8669. <productMenu id="phone"
  8670. type="1" >
  8671. </productMenu>
  8672. <productMenu id="music"
  8673. type="1" >
  8674. </productMenu>
  8675. <productMenu id="fmradio"
  8676. type="0" >
  8677. </productMenu>
  8678. <productMenu id="deviceSetting"
  8679. type="1"
  8680. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8681. <productMenuURL version="3.0"
  8682. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8683. />
  8684. </productMenu>
  8685. <productMenu id="quickGuide"
  8686. type="0"
  8687. url=""
  8688. size="934KB" >
  8689. </productMenu>
  8690. <productMenu id="userGuide"
  8691. type="1"
  8692. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8693. size="1.14MB" >
  8694. </productMenu>
  8695. <productMenu id="connectGuide"
  8696. type="1"
  8697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8698. size="1.12MB" >
  8699. </productMenu>
  8700. <productMenu id="volume"
  8701. type="15" >
  8702. </productMenu>
  8703. <productID id="3350"
  8704. />
  8705. <productGroupable type="0"
  8706. />
  8707. </product>
  8708. <product id="SFR"
  8709. name="SFR"
  8710. series="SF"
  8711. latestVersion="1.1.1"
  8712. show = "1" >
  8713. <productMenu id="protocol"
  8714. type="1"
  8715. url="3">
  8716. </productMenu>
  8717. <productMenu id="sip"
  8718. type="1" >
  8719. </productMenu>
  8720. <productMenu id="bluetoothIntercom"
  8721. type="1" >
  8722. </productMenu>
  8723. <productMenu id="phone"
  8724. type="1" >
  8725. </productMenu>
  8726. <productMenu id="music"
  8727. type="1" >
  8728. </productMenu>
  8729. <productMenu id="fmradio"
  8730. type="1" >
  8731. </productMenu>
  8732. <productMenu id="deviceSetting"
  8733. type="1"
  8734. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8735. </productMenu>
  8736. <productMenu id="quickGuide"
  8737. type="1"
  8738. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8739. size="607KB" >
  8740. </productMenu>
  8741. <productMenu id="userGuide"
  8742. type="1"
  8743. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8744. size="1.91MB" >
  8745. </productMenu>
  8746. <productMenu id="volume"
  8747. type="4" >
  8748. </productMenu>
  8749. <productID id="5418"
  8750. />
  8751. <productGroupable type="0"
  8752. />
  8753. </product>
  8754. <product id="20S"
  8755. name="20S"
  8756. series="20"
  8757. latestVersion="2.2.3"
  8758. show = "1" >
  8759. <productMenu id="protocol"
  8760. type="0">
  8761. </productMenu>
  8762. <productMenu id="wa"
  8763. type="5" >
  8764. </productMenu>
  8765. <productMenu id="sip"
  8766. type="1" >
  8767. <productMenuType version="1.0"
  8768. type="0"
  8769. />
  8770. </productMenu>
  8771. <productMenu id="bluetoothIntercom"
  8772. type="1" >
  8773. <productMenuType version="1.0"
  8774. type="0"
  8775. />
  8776. </productMenu>
  8777. <productMenu id="intercomSetting"
  8778. type="1" >
  8779. </productMenu>
  8780. <productMenu id="phone"
  8781. type="2" >
  8782. </productMenu>
  8783. <productMenu id="fmradio"
  8784. type="3" >
  8785. </productMenu>
  8786. <productMenu id="deviceSetting"
  8787. type="1"
  8788. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8789. <productMenuURL version="2.0.2"
  8790. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8791. />
  8792. <productMenuURL version="1.5"
  8793. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8794. />
  8795. <productMenuURL version="1.4.1"
  8796. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8797. />
  8798. <productMenuURL version="1.1"
  8799. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8800. />
  8801. <productMenuURL version="1.0"
  8802. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8803. />
  8804. </productMenu>
  8805. <productMenu id="quickGuide"
  8806. type="0"
  8807. url=""
  8808. size="264KB" >
  8809. </productMenu>
  8810. <productMenu id="userGuide"
  8811. type="1"
  8812. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8813. size="3.09MB" >
  8814. </productMenu>
  8815. <productMenu id="connectGuide"
  8816. type="1"
  8817. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8818. size="1.12MB" >
  8819. </productMenu>
  8820. <productID id="4210"
  8821. />
  8822. <productGroupable type="1"
  8823. />
  8824. </product>
  8825. <product id="20S_EVO"
  8826. name="20S EVO"
  8827. series="20"
  8828. latestVersion="2.2.3"
  8829. show = "1" >
  8830. <productMenu id="protocol"
  8831. type="0">
  8832. </productMenu>
  8833. <productMenu id="wa"
  8834. type="5" >
  8835. </productMenu>
  8836. <productMenu id="sip"
  8837. type="1" >
  8838. <productMenuType version="1.0"
  8839. type="0"
  8840. />
  8841. </productMenu>
  8842. <productMenu id="bluetoothIntercom"
  8843. type="1" >
  8844. <productMenuType version="1.0"
  8845. type="0"
  8846. />
  8847. </productMenu>
  8848. <productMenu id="intercomSetting"
  8849. type="1" >
  8850. </productMenu>
  8851. <productMenu id="phone"
  8852. type="2" >
  8853. </productMenu>
  8854. <productMenu id="fmradio"
  8855. type="3" >
  8856. </productMenu>
  8857. <productMenu id="deviceSetting"
  8858. type="1"
  8859. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8860. <productMenuURL version="2.0.2"
  8861. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8862. />
  8863. <productMenuURL version="1.5"
  8864. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8865. />
  8866. <productMenuURL version="1.4.1"
  8867. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8868. />
  8869. <productMenuURL version="1.1"
  8870. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8871. />
  8872. <productMenuURL version="1.0"
  8873. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8874. />
  8875. </productMenu>
  8876. <productMenu id="quickGuide"
  8877. type="0"
  8878. url=""
  8879. size="264KB" >
  8880. </productMenu>
  8881. <productMenu id="userGuide"
  8882. type="1"
  8883. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8884. size="3.09MB" >
  8885. </productMenu>
  8886. <productMenu id="connectGuide"
  8887. type="1"
  8888. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8889. size="1.12MB" >
  8890. </productMenu>
  8891. <productID id="4210"
  8892. />
  8893. <productProductKey key="16"
  8894. />
  8895. <productGroupable type="1"
  8896. />
  8897. </product>
  8898. <product id="10S"
  8899. name="10S"
  8900. series="10"
  8901. latestVersion="3.0.2"
  8902. show = "1" >
  8903. <productMenu id="protocol"
  8904. type="3" >
  8905. </productMenu>
  8906. <productMenu id="sip"
  8907. type="1" >
  8908. </productMenu>
  8909. <productMenu id="bluetoothIntercom"
  8910. type="1" >
  8911. </productMenu>
  8912. <productMenu id="phone"
  8913. type="1" >
  8914. </productMenu>
  8915. <productMenu id="deviceSetting"
  8916. type="1"
  8917. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8918. </productMenu>
  8919. <productMenu id="quickGuide"
  8920. type="1"
  8921. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8922. size="934KB" >
  8923. </productMenu>
  8924. <productMenu id="userGuide"
  8925. type="1"
  8926. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8927. size="1.14MB" >
  8928. </productMenu>
  8929. <productMenu id="connectGuide"
  8930. type="1"
  8931. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8932. size="1.12MB" >
  8933. </productMenu>
  8934. <productID id="3380"
  8935. />
  8936. <productGroupable type="0"
  8937. />
  8938. </product>
  8939. <product id="10S"
  8940. name="10S"
  8941. series="10"
  8942. latestVersion="2.1.1"
  8943. show = "-1" >
  8944. <productMenu id="protocol"
  8945. type="0">
  8946. </productMenu>
  8947. <productMenu id="sip"
  8948. type="1" >
  8949. </productMenu>
  8950. <productMenu id="bluetoothIntercom"
  8951. type="1" >
  8952. </productMenu>
  8953. <productMenu id="phone"
  8954. type="2" >
  8955. </productMenu>
  8956. <productMenu id="fmradio"
  8957. type="3" >
  8958. </productMenu>
  8959. <productMenu id="deviceSetting"
  8960. type="1"
  8961. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8962. <productMenuURL version="1.5"
  8963. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8964. />
  8965. <productMenuURL version="1.3.1"
  8966. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8967. />
  8968. </productMenu>
  8969. <productMenu id="quickGuide"
  8970. type="1"
  8971. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8972. size="310KB" >
  8973. </productMenu>
  8974. <productMenu id="userGuide"
  8975. type="1"
  8976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8977. size="1.57MB" >
  8978. </productMenu>
  8979. <productID id="5530"
  8980. />
  8981. <productGroupable type="0"
  8982. />
  8983. </product>
  8984. <product id="Apex"
  8985. name="Apex"
  8986. series="Apex"
  8987. latestVersion="1.0"
  8988. latestVersionVoicePrompt="1.0"
  8989. show = "-1" >
  8990. <productMenu id="protocol"
  8991. type="2" >
  8992. </productMenu>
  8993. <productMenu id="serialNumber"
  8994. type="1" >
  8995. </productMenu>
  8996. <productMenu id="ota"
  8997. type="0" >
  8998. <otaLanguages>
  8999. <otaLanguage
  9000. id="0"
  9001. name="English"
  9002. package="0"
  9003. />
  9004. <otaLanguage
  9005. id="0"
  9006. name="French"
  9007. package="1"
  9008. />
  9009. <otaLanguage
  9010. id="0"
  9011. name="Spanish"
  9012. package="2"
  9013. />
  9014. <otaLanguage
  9015. id="0"
  9016. name="Italian"
  9017. package="3"
  9018. />
  9019. <otaLanguage
  9020. id="0"
  9021. name="German"
  9022. package="4"
  9023. />
  9024. <otaLanguage
  9025. id="0"
  9026. name="Dutch"
  9027. package="5"
  9028. />
  9029. <otaLanguage
  9030. id="0"
  9031. name="Russian"
  9032. package="6"
  9033. />
  9034. <otaLanguage
  9035. id="0"
  9036. name="Chinese"
  9037. package="7"
  9038. />
  9039. <otaLanguage
  9040. id="0"
  9041. name="Korean"
  9042. package="8"
  9043. />
  9044. <otaLanguage
  9045. id="0"
  9046. name="Japanese"
  9047. package="9"
  9048. />
  9049. <otaLanguage
  9050. id="0"
  9051. name="Finnish"
  9052. package="10"
  9053. />
  9054. <otaLanguage
  9055. id="0"
  9056. name="Polish"
  9057. package="11"
  9058. />
  9059. </otaLanguages>
  9060. <otaPackages>
  9061. <package
  9062. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  9063. size="5183988"
  9064. />
  9065. <package
  9066. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  9067. size="5183988"
  9068. />
  9069. <package
  9070. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  9071. size="5183988"
  9072. />
  9073. <package
  9074. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  9075. size="5183988"
  9076. />
  9077. <package
  9078. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  9079. size="5183988"
  9080. />
  9081. <package
  9082. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  9083. size="5183988"
  9084. />
  9085. <package
  9086. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  9087. size="5183988"
  9088. />
  9089. <package
  9090. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  9091. size="5183988"
  9092. />
  9093. <package
  9094. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  9095. size="5183988"
  9096. />
  9097. <package
  9098. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  9099. size="5183988"
  9100. />
  9101. <package
  9102. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  9103. size="5183988"
  9104. />
  9105. <package
  9106. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  9107. size="5183988"
  9108. />
  9109. </otaPackages>
  9110. </productMenu>
  9111. <productMenu id="sip"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="bluetoothIntercom"
  9115. type="1" >
  9116. </productMenu>
  9117. <productMenu id="phone"
  9118. type="1" >
  9119. </productMenu>
  9120. <productMenu id="music"
  9121. type="1" >
  9122. </productMenu>
  9123. <productMenu id="fmradio"
  9124. type="1"
  9125. url="1" >
  9126. </productMenu>
  9127. <productMenu id="deviceSetting"
  9128. type="1"
  9129. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml" >
  9130. </productMenu>
  9131. <productMenu id="quickGuide"
  9132. type="0"
  9133. url=""
  9134. size="934KB" >
  9135. </productMenu>
  9136. <productMenu id="userGuide"
  9137. type="1"
  9138. url=""
  9139. size="1.14MB" >
  9140. </productMenu>
  9141. <productMenu id="volume+"
  9142. type="2"
  9143. url="0x0000" >
  9144. </productMenu>
  9145. <productMenu id="battery"
  9146. type="1" >
  9147. </productMenu>
  9148. <productID id="3452"
  9149. />
  9150. <productGroupable type="0"
  9151. />
  9152. </product>
  9153. <product id="ApexPlus"
  9154. name="Apex Plus"
  9155. series="Apex"
  9156. latestVersion="1.0"
  9157. latestVersionVoicePrompt="1.0"
  9158. show = "-1" >
  9159. <productMenu id="protocol"
  9160. type="2" >
  9161. </productMenu>
  9162. <productMenu id="serialNumber"
  9163. type="1" >
  9164. </productMenu>
  9165. <productMenu id="ota"
  9166. type="0" >
  9167. <otaLanguages>
  9168. <otaLanguage
  9169. id="0"
  9170. name="English"
  9171. package="0"
  9172. />
  9173. <otaLanguage
  9174. id="0"
  9175. name="French"
  9176. package="1"
  9177. />
  9178. <otaLanguage
  9179. id="0"
  9180. name="Spanish"
  9181. package="2"
  9182. />
  9183. <otaLanguage
  9184. id="0"
  9185. name="Italian"
  9186. package="3"
  9187. />
  9188. <otaLanguage
  9189. id="0"
  9190. name="German"
  9191. package="4"
  9192. />
  9193. <otaLanguage
  9194. id="0"
  9195. name="Dutch"
  9196. package="5"
  9197. />
  9198. <otaLanguage
  9199. id="0"
  9200. name="Russian"
  9201. package="6"
  9202. />
  9203. <otaLanguage
  9204. id="0"
  9205. name="Chinese"
  9206. package="7"
  9207. />
  9208. <otaLanguage
  9209. id="0"
  9210. name="Korean"
  9211. package="8"
  9212. />
  9213. <otaLanguage
  9214. id="0"
  9215. name="Japanese"
  9216. package="9"
  9217. />
  9218. <otaLanguage
  9219. id="0"
  9220. name="Finnish"
  9221. package="10"
  9222. />
  9223. <otaLanguage
  9224. id="0"
  9225. name="Polish"
  9226. package="11"
  9227. />
  9228. </otaLanguages>
  9229. <otaPackages>
  9230. <package
  9231. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9232. size="5183988"
  9233. />
  9234. <package
  9235. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9236. size="5183988"
  9237. />
  9238. <package
  9239. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9240. size="5183988"
  9241. />
  9242. <package
  9243. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9244. size="5183988"
  9245. />
  9246. <package
  9247. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9248. size="5183988"
  9249. />
  9250. <package
  9251. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9252. size="5183988"
  9253. />
  9254. <package
  9255. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9256. size="5183988"
  9257. />
  9258. <package
  9259. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9260. size="5183988"
  9261. />
  9262. <package
  9263. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9264. size="5183988"
  9265. />
  9266. <package
  9267. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9268. size="5183988"
  9269. />
  9270. <package
  9271. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9272. size="5183988"
  9273. />
  9274. <package
  9275. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9276. size="5183988"
  9277. />
  9278. </otaPackages>
  9279. </productMenu>
  9280. <productMenu id="sip"
  9281. type="1" >
  9282. </productMenu>
  9283. <productMenu id="bluetoothIntercom"
  9284. type="1" >
  9285. </productMenu>
  9286. <productMenu id="phone"
  9287. type="1" >
  9288. </productMenu>
  9289. <productMenu id="music"
  9290. type="1" >
  9291. </productMenu>
  9292. <productMenu id="fmradio"
  9293. type="1"
  9294. url="1" >
  9295. </productMenu>
  9296. <productMenu id="deviceSetting"
  9297. type="1"
  9298. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml" >
  9299. </productMenu>
  9300. <productMenu id="quickGuide"
  9301. type="0"
  9302. url=""
  9303. size="934KB" >
  9304. </productMenu>
  9305. <productMenu id="userGuide"
  9306. type="1"
  9307. url=""
  9308. size="1.14MB" >
  9309. </productMenu>
  9310. <productMenu id="volume+"
  9311. type="2"
  9312. url="0x0000" >
  9313. </productMenu>
  9314. <productMenu id="battery"
  9315. type="1" >
  9316. </productMenu>
  9317. <productID id="3453"
  9318. />
  9319. <productGroupable type="0"
  9320. />
  9321. </product>
  9322. <product id="10R2"
  9323. name="10R 2"
  9324. series="10"
  9325. latestVersion="0.9"
  9326. latestVersionVoicePrompt="1.1"
  9327. show = "-1" >
  9328. <productMenu id="protocol"
  9329. type="2" >
  9330. </productMenu>
  9331. <productMenu id="ota"
  9332. type="2" >
  9333. <otaPackages>
  9334. <package
  9335. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9336. size="2945812"
  9337. />
  9338. </otaPackages>
  9339. </productMenu>
  9340. <productMenu id="sip"
  9341. type="1" >
  9342. </productMenu>
  9343. <productMenu id="bluetoothIntercom"
  9344. type="1" >
  9345. </productMenu>
  9346. <productMenu id="phone"
  9347. type="1" >
  9348. </productMenu>
  9349. <productMenu id="music"
  9350. type="1" >
  9351. </productMenu>
  9352. <productMenu id="fmradio"
  9353. type="1"
  9354. url="1" >
  9355. </productMenu>
  9356. <productMenu id="deviceSetting"
  9357. type="1"
  9358. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9359. </productMenu>
  9360. <productMenu id="quickGuide"
  9361. type="1"
  9362. url=""
  9363. size="934KB" >
  9364. </productMenu>
  9365. <productMenu id="userGuide"
  9366. type="0"
  9367. url=""
  9368. size="1.14MB" >
  9369. </productMenu>
  9370. <productMenu id="volume"
  9371. type="15" >
  9372. </productMenu>
  9373. <productID id="4000"
  9374. />
  9375. <productGroupable type="0"
  9376. />
  9377. </product>
  9378. <product id="10R"
  9379. name="10R"
  9380. series="10"
  9381. latestVersion="2.1.1"
  9382. show = "1" >
  9383. <productMenu id="protocol"
  9384. type="0">
  9385. </productMenu>
  9386. <productMenu id="sip"
  9387. type="1" >
  9388. <productMenuType version="1.0.2"
  9389. type="0"
  9390. />
  9391. </productMenu>
  9392. <productMenu id="bluetoothIntercom"
  9393. type="1" >
  9394. <productMenuType version="1.0.2"
  9395. type="0"
  9396. />
  9397. </productMenu>
  9398. <productMenu id="phone"
  9399. type="2" >
  9400. </productMenu>
  9401. <productMenu id="fmradio"
  9402. type="3" >
  9403. </productMenu>
  9404. <productMenu id="deviceSetting"
  9405. type="1"
  9406. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9407. <productMenuURL version="1.4"
  9408. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9409. />
  9410. <productMenuURL version="1.2.1"
  9411. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9412. />
  9413. <productMenuURL version="1.0.2"
  9414. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9415. />
  9416. <productMenuURL version="1.0"
  9417. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9418. />
  9419. </productMenu>
  9420. <productMenu id="quickGuide"
  9421. type="1"
  9422. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9423. size="400KB" >
  9424. </productMenu>
  9425. <productMenu id="userGuide"
  9426. type="1"
  9427. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9428. size="2.75MB" >
  9429. </productMenu>
  9430. <productMenu id="connectGuide"
  9431. type="1"
  9432. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9433. size="1.12MB" >
  9434. </productMenu>
  9435. <productID id="5520"
  9436. />
  9437. <productGroupable type="0"
  9438. />
  9439. </product>
  9440. <product id="10C_EVO"
  9441. name="10C EVO"
  9442. series="10"
  9443. latestVersion="1.7"
  9444. show = "1" >
  9445. <productMenu id="protocol"
  9446. type="0">
  9447. </productMenu>
  9448. <productMenu id="sip"
  9449. type="1" >
  9450. </productMenu>
  9451. <productMenu id="bluetoothIntercom"
  9452. type="1" >
  9453. </productMenu>
  9454. <productMenu id="phone"
  9455. type="2" >
  9456. </productMenu>
  9457. <productMenu id="fmradio"
  9458. type="3" >
  9459. </productMenu>
  9460. <productMenu id="deviceSetting"
  9461. type="1"
  9462. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9463. <productMenuURL version="1.3.1"
  9464. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9465. />
  9466. </productMenu>
  9467. <productMenu id="quickGuide"
  9468. type="1"
  9469. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9470. size="1.32MB" >
  9471. </productMenu>
  9472. <productMenu id="userGuide"
  9473. type="1"
  9474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9475. size="1.68MB" >
  9476. </productMenu>
  9477. <productMenu id="connectGuide"
  9478. type="1"
  9479. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9480. size="1.12MB" >
  9481. </productMenu>
  9482. <productID id="5570"
  9483. />
  9484. <productGroupable type="0"
  9485. />
  9486. </product>
  9487. <product id="10C_Pro"
  9488. name="10C Pro"
  9489. series="10"
  9490. latestVersion="2.7.1"
  9491. show = "1" >
  9492. <productMenu id="protocol"
  9493. type="0">
  9494. </productMenu>
  9495. <productMenu id="sip"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="bluetoothIntercom"
  9499. type="1" >
  9500. </productMenu>
  9501. <productMenu id="phone"
  9502. type="2" >
  9503. </productMenu>
  9504. <productMenu id="fmradio"
  9505. type="3" >
  9506. </productMenu>
  9507. <productMenu id="deviceSetting"
  9508. type="1"
  9509. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9510. <productMenuURL version="2.5.1"
  9511. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9512. />
  9513. <productMenuURL version="1.0"
  9514. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9515. />
  9516. </productMenu>
  9517. <productMenu id="quickGuide"
  9518. type="1"
  9519. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9520. size="651KB" >
  9521. </productMenu>
  9522. <productMenu id="userGuide"
  9523. type="1"
  9524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9525. size="2.34MB" >
  9526. </productMenu>
  9527. <productMenu id="connectGuide"
  9528. type="1"
  9529. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9530. size="1.12MB" >
  9531. </productMenu>
  9532. <productID id="5580"
  9533. />
  9534. <productGroupable type="0"
  9535. />
  9536. </product>
  9537. <product id="10C"
  9538. name="10C"
  9539. series="10"
  9540. latestVersion="3.0.4"
  9541. show = "1" >
  9542. <productMenu id="protocol"
  9543. type="0">
  9544. </productMenu>
  9545. <productMenu id="sip"
  9546. type="1" >
  9547. <productMenuType version="1.0.4"
  9548. type="0"
  9549. />
  9550. </productMenu>
  9551. <productMenu id="bluetoothIntercom"
  9552. type="1" >
  9553. <productMenuType version="1.0.4"
  9554. type="0"
  9555. />
  9556. </productMenu>
  9557. <productMenu id="phone"
  9558. type="2" >
  9559. </productMenu>
  9560. <productMenu id="fmradio"
  9561. type="3" >
  9562. </productMenu>
  9563. <productMenu id="deviceSetting"
  9564. type="1"
  9565. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9566. <productMenuURL version="2.3"
  9567. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9568. />
  9569. <productMenuURL version="2.1.1"
  9570. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9571. />
  9572. <productMenuURL version="1.0.4"
  9573. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9574. />
  9575. <productMenuURL version="1.0.2"
  9576. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9577. />
  9578. </productMenu>
  9579. <productMenu id="quickGuide"
  9580. type="1"
  9581. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9582. size="935KB" >
  9583. </productMenu>
  9584. <productMenu id="userGuide"
  9585. type="1"
  9586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9587. size="2.82MB" >
  9588. </productMenu>
  9589. <productMenu id="connectGuide"
  9590. type="1"
  9591. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9592. size="1.12MB" >
  9593. </productMenu>
  9594. <productID id="5510"
  9595. />
  9596. <productGroupable type="0"
  9597. />
  9598. </product>
  9599. <product id="10U_GT_AIR"
  9600. name="10U GT-Air"
  9601. series="10"
  9602. latestVersion="2.0.4"
  9603. show = "1" >
  9604. <productMenu id="protocol"
  9605. type="0">
  9606. </productMenu>
  9607. <productMenu id="sip"
  9608. type="1" >
  9609. <productMenuType version="1.0.2"
  9610. type="0"
  9611. />
  9612. </productMenu>
  9613. <productMenu id="bluetoothIntercom"
  9614. type="1" >
  9615. <productMenuType version="1.0.2"
  9616. type="0"
  9617. />
  9618. </productMenu>
  9619. <productMenu id="phone"
  9620. type="2" >
  9621. </productMenu>
  9622. <productMenu id="fmradio"
  9623. type="3" >
  9624. </productMenu>
  9625. <productMenu id="deviceSetting"
  9626. type="1"
  9627. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9628. <productMenuURL version="1.3.2"
  9629. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9630. />
  9631. <productMenuURL version="1.0.2"
  9632. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9633. />
  9634. </productMenu>
  9635. <productMenu id="quickGuide"
  9636. type="1"
  9637. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9638. size="685KB" >
  9639. </productMenu>
  9640. <productMenu id="userGuide"
  9641. type="1"
  9642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9643. size="684KB" >
  9644. </productMenu>
  9645. <productMenu id="connectGuide"
  9646. type="1"
  9647. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9648. size="1.12MB" >
  9649. </productMenu>
  9650. <productID id="5610"
  9651. />
  9652. <productGroupable type="0"
  9653. />
  9654. </product>
  9655. <product id="10U_NEOTEC"
  9656. name="10U Neotec"
  9657. series="10"
  9658. latestVersion="2.0.4"
  9659. show = "1" >
  9660. <productMenu id="protocol"
  9661. type="0">
  9662. </productMenu>
  9663. <productMenu id="sip"
  9664. type="1" >
  9665. <productMenuType version="1.0.2"
  9666. type="0"
  9667. />
  9668. </productMenu>
  9669. <productMenu id="bluetoothIntercom"
  9670. type="1" >
  9671. <productMenuType version="1.0.2"
  9672. type="0"
  9673. />
  9674. </productMenu>
  9675. <productMenu id="phone"
  9676. type="2" >
  9677. </productMenu>
  9678. <productMenu id="fmradio"
  9679. type="3" >
  9680. </productMenu>
  9681. <productMenu id="deviceSetting"
  9682. type="1"
  9683. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9684. <productMenuURL version="1.3.2"
  9685. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9686. />
  9687. <productMenuURL version="1.0.2"
  9688. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9689. />
  9690. </productMenu>
  9691. <productMenu id="quickGuide"
  9692. type="1"
  9693. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9694. size="689KB" >
  9695. </productMenu>
  9696. <productMenu id="userGuide"
  9697. type="1"
  9698. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9699. size="684KB" >
  9700. </productMenu>
  9701. <productMenu id="connectGuide"
  9702. type="1"
  9703. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9704. size="1.12MB" >
  9705. </productMenu>
  9706. <productID id="5611"
  9707. />
  9708. <productGroupable type="0"
  9709. />
  9710. </product>
  9711. <product id="10U_J_CRUISE"
  9712. name="10U J-Cruise"
  9713. series="10"
  9714. latestVersion="2.0.4"
  9715. show = "1" >
  9716. <productMenu id="protocol"
  9717. type="0">
  9718. </productMenu>
  9719. <productMenu id="sip"
  9720. type="1" >
  9721. <productMenuType version="1.0.2"
  9722. type="0"
  9723. />
  9724. </productMenu>
  9725. <productMenu id="bluetoothIntercom"
  9726. type="1" >
  9727. <productMenuType version="1.0.2"
  9728. type="0"
  9729. />
  9730. </productMenu>
  9731. <productMenu id="phone"
  9732. type="2" >
  9733. </productMenu>
  9734. <productMenu id="fmradio"
  9735. type="3" >
  9736. </productMenu>
  9737. <productMenu id="deviceSetting"
  9738. type="1"
  9739. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9740. <productMenuURL version="1.3.2"
  9741. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9742. />
  9743. <productMenuURL version="1.0.2"
  9744. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9745. />
  9746. </productMenu>
  9747. <productMenu id="quickGuide"
  9748. type="1"
  9749. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9750. size="686KB" >
  9751. </productMenu>
  9752. <productMenu id="userGuide"
  9753. type="1"
  9754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9755. size="684KB" >
  9756. </productMenu>
  9757. <productMenu id="connectGuide"
  9758. type="1"
  9759. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9760. size="1.12MB" >
  9761. </productMenu>
  9762. <productID id="5612"
  9763. />
  9764. <productGroupable type="0"
  9765. />
  9766. </product>
  9767. <product id="10U_C3"
  9768. name="10U C3/C3Pro"
  9769. series="10"
  9770. latestVersion="2.0.4"
  9771. show = "1" >
  9772. <productMenu id="protocol"
  9773. type="0">
  9774. </productMenu>
  9775. <productMenu id="sip"
  9776. type="1" >
  9777. <productMenuType version="1.0.2"
  9778. type="0"
  9779. />
  9780. </productMenu>
  9781. <productMenu id="bluetoothIntercom"
  9782. type="1" >
  9783. <productMenuType version="1.0.2"
  9784. type="0"
  9785. />
  9786. </productMenu>
  9787. <productMenu id="phone"
  9788. type="2" >
  9789. </productMenu>
  9790. <productMenu id="fmradio"
  9791. type="3" >
  9792. </productMenu>
  9793. <productMenu id="deviceSetting"
  9794. type="1"
  9795. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9796. <productMenuURL version="1.3.2"
  9797. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9798. />
  9799. <productMenuURL version="1.0.2"
  9800. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9801. />
  9802. </productMenu>
  9803. <productMenu id="quickGuide"
  9804. type="1"
  9805. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9806. size="199KB" >
  9807. </productMenu>
  9808. <productMenu id="userGuide"
  9809. type="1"
  9810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9811. size="684KB" >
  9812. </productMenu>
  9813. <productMenu id="connectGuide"
  9814. type="1"
  9815. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9816. size="1.12MB" >
  9817. </productMenu>
  9818. <productID id="5620"
  9819. />
  9820. <productGroupable type="0"
  9821. />
  9822. </product>
  9823. <product id="10U_ARAI"
  9824. name="10U Arai"
  9825. series="10"
  9826. latestVersion="2.0.4"
  9827. show = "1" >
  9828. <productMenu id="protocol"
  9829. type="0">
  9830. </productMenu>
  9831. <productMenu id="sip"
  9832. type="1" >
  9833. <productMenuType version="1.0.2"
  9834. type="0"
  9835. />
  9836. </productMenu>
  9837. <productMenu id="bluetoothIntercom"
  9838. type="1" >
  9839. <productMenuType version="1.0.2"
  9840. type="0"
  9841. />
  9842. </productMenu>
  9843. <productMenu id="phone"
  9844. type="2" >
  9845. </productMenu>
  9846. <productMenu id="fmradio"
  9847. type="3" >
  9848. </productMenu>
  9849. <productMenu id="deviceSetting"
  9850. type="1"
  9851. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9852. <productMenuURL version="1.3.2"
  9853. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9854. />
  9855. <productMenuURL version="1.0.2"
  9856. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9857. />
  9858. </productMenu>
  9859. <productMenu id="quickGuide"
  9860. type="1"
  9861. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9862. size="689KB" >
  9863. </productMenu>
  9864. <productMenu id="userGuide"
  9865. type="1"
  9866. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9867. size="684KB" >
  9868. </productMenu>
  9869. <productMenu id="connectGuide"
  9870. type="1"
  9871. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9872. size="1.12MB" >
  9873. </productMenu>
  9874. <productID id="5621"
  9875. />
  9876. <productGroupable type="0"
  9877. />
  9878. </product>
  9879. <product id="10Upad"
  9880. name="10Upad"
  9881. series="10"
  9882. latestVersion="2.0.3"
  9883. show = "1" >
  9884. <productMenu id="protocol"
  9885. type="0">
  9886. </productMenu>
  9887. <productMenu id="sip"
  9888. type="1" >
  9889. </productMenu>
  9890. <productMenu id="bluetoothIntercom"
  9891. type="1" >
  9892. </productMenu>
  9893. <productMenu id="phone"
  9894. type="2" >
  9895. </productMenu>
  9896. <productMenu id="fmradio"
  9897. type="3" >
  9898. </productMenu>
  9899. <productMenu id="deviceSetting"
  9900. type="1"
  9901. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9902. <productMenuURL version="1.0.3"
  9903. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9904. />
  9905. </productMenu>
  9906. <productMenu id="quickGuide"
  9907. type="1"
  9908. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9909. size="615KB" >
  9910. </productMenu>
  9911. <productMenu id="userGuide"
  9912. type="1"
  9913. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9914. size="0.99MB" >
  9915. </productMenu>
  9916. <productMenu id="connectGuide"
  9917. type="1"
  9918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9919. size="1.12MB" >
  9920. </productMenu>
  9921. <productID id="6210"
  9922. />
  9923. <productGroupable type="0"
  9924. />
  9925. </product>
  9926. <product id="5S"
  9927. name="5S"
  9928. series="5"
  9929. latestVersion="2.3.1"
  9930. show = "1" >
  9931. <productMenu id="protocol"
  9932. type="3" >
  9933. </productMenu>
  9934. <productMenu id="sip"
  9935. type="1" >
  9936. </productMenu>
  9937. <productMenu id="bluetoothIntercom"
  9938. type="1" >
  9939. </productMenu>
  9940. <productMenu id="phone"
  9941. type="1" >
  9942. </productMenu>
  9943. <productMenu id="fmradio"
  9944. type="0" >
  9945. </productMenu>
  9946. <productMenu id="deviceSetting"
  9947. type="1"
  9948. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9949. </productMenu>
  9950. <productMenu id="quickGuide"
  9951. type="0"
  9952. url=""
  9953. size="934KB" >
  9954. </productMenu>
  9955. <productMenu id="userGuide"
  9956. type="1"
  9957. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9958. size="1.14MB" >
  9959. </productMenu>
  9960. <productMenu id="connectGuide"
  9961. type="1"
  9962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9963. size="1.12MB" >
  9964. </productMenu>
  9965. <productID id="5590"
  9966. />
  9967. <productGroupable type="0"
  9968. />
  9969. </product>
  9970. <product id="5S"
  9971. name="5S"
  9972. series="5"
  9973. latestVersion="1.2"
  9974. show = "-1" >
  9975. <productMenu id="protocol"
  9976. type="0">
  9977. </productMenu>
  9978. <productMenu id="sip"
  9979. type="1" >
  9980. </productMenu>
  9981. <productMenu id="bluetoothIntercom"
  9982. type="1" >
  9983. </productMenu>
  9984. <productMenu id="phone"
  9985. type="2" >
  9986. </productMenu>
  9987. <productMenu id="fmradio"
  9988. type="3" >
  9989. </productMenu>
  9990. <productMenu id="deviceSetting"
  9991. type="1"
  9992. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9993. </productMenu>
  9994. <productMenu id="quickGuide"
  9995. type="0"
  9996. url=""
  9997. size="970KB" >
  9998. </productMenu>
  9999. <productMenu id="userGuide"
  10000. type="1"
  10001. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10002. size="1.26MB" >
  10003. </productMenu>
  10004. <productID id="5534"
  10005. />
  10006. <productGroupable type="0"
  10007. />
  10008. </product>
  10009. <product id="5S"
  10010. name="5S"
  10011. series="5"
  10012. latestVersion="3.0.1"
  10013. show = "-1" >
  10014. <productMenu id="protocol"
  10015. type="0">
  10016. </productMenu>
  10017. <productMenu id="sip"
  10018. type="1" >
  10019. </productMenu>
  10020. <productMenu id="bluetoothIntercom"
  10021. type="1" >
  10022. </productMenu>
  10023. <productMenu id="phone"
  10024. type="2" >
  10025. </productMenu>
  10026. <productMenu id="fmradio"
  10027. type="0" >
  10028. </productMenu>
  10029. <productMenu id="deviceSetting"
  10030. type="1"
  10031. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10032. </productMenu>
  10033. <productMenu id="quickGuide"
  10034. type="0"
  10035. url=""
  10036. size="970KB" >
  10037. </productMenu>
  10038. <productMenu id="userGuide"
  10039. type="1"
  10040. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10041. size="1.26MB" >
  10042. </productMenu>
  10043. <productID id="5538"
  10044. />
  10045. <productGroupable type="0"
  10046. />
  10047. </product>
  10048. <product id="3SPLUS"
  10049. name="3S PLUS"
  10050. series="3"
  10051. latestVersion="2.2"
  10052. show = "1" >
  10053. <productMenu id="protocol"
  10054. type="3" >
  10055. </productMenu>
  10056. <productMenu id="sip"
  10057. type="1" >
  10058. </productMenu>
  10059. <productMenu id="bluetoothIntercom"
  10060. type="1" >
  10061. </productMenu>
  10062. <productMenu id="deviceSetting"
  10063. type="1"
  10064. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10065. <productMenuURL version="2.2.1"
  10066. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10067. />
  10068. </productMenu>
  10069. <productMenu id="quickGuide"
  10070. type="1"
  10071. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10072. size="344KB" >
  10073. </productMenu>
  10074. <productMenu id="userGuide"
  10075. type="1"
  10076. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10077. size="1.14MB" >
  10078. </productMenu>
  10079. <productMenu id="connectGuide"
  10080. type="1"
  10081. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10082. size="1.12MB" >
  10083. </productMenu>
  10084. <productID id="4023"
  10085. />
  10086. <productGroupable type="0"
  10087. />
  10088. </product>
  10089. <product id="3SPLUS"
  10090. name="3S PLUS"
  10091. series="3"
  10092. latestVersion="1.1"
  10093. show = "-1" >
  10094. <productMenu id="protocol"
  10095. type="0">
  10096. </productMenu>
  10097. <productMenu id="sip"
  10098. type="1" >
  10099. </productMenu>
  10100. <productMenu id="bluetoothIntercom"
  10101. type="1" >
  10102. </productMenu>
  10103. <productMenu id="deviceSetting"
  10104. type="1"
  10105. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10106. </productMenu>
  10107. <productMenu id="quickGuide"
  10108. type="1"
  10109. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10110. size="842KB" >
  10111. </productMenu>
  10112. <productMenu id="userGuide"
  10113. type="1"
  10114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10115. size="1.02MB" >
  10116. </productMenu>
  10117. <productID id="6320"
  10118. />
  10119. <productGroupable type="0"
  10120. />
  10121. </product>
  10122. <product id="AConnect"
  10123. name="Alpinestars A-Connect"
  10124. series="60"
  10125. latestVersion="1.0.2"
  10126. latestVersionMesh="0.19"
  10127. latestVersionVoicePrompt="1.6"
  10128. show = "-1" >
  10129. <productMenu id="protocol"
  10130. type="2" >
  10131. </productMenu>
  10132. <productMenu id="ota"
  10133. type="2" >
  10134. <otaLanguages>
  10135. <otaLanguage
  10136. id="0"
  10137. name="English"
  10138. package="0"
  10139. />
  10140. <otaLanguage
  10141. id="0"
  10142. name="French"
  10143. package="1"
  10144. />
  10145. <otaLanguage
  10146. id="0"
  10147. name="Spanish"
  10148. package="2"
  10149. />
  10150. <otaLanguage
  10151. id="0"
  10152. name="Italian"
  10153. package="3"
  10154. />
  10155. <otaLanguage
  10156. id="0"
  10157. name="German"
  10158. package="4"
  10159. />
  10160. <otaLanguage
  10161. id="0"
  10162. name="Dutch"
  10163. package="5"
  10164. />
  10165. <otaLanguage
  10166. id="0"
  10167. name="Russian"
  10168. package="6"
  10169. />
  10170. <otaLanguage
  10171. id="0"
  10172. name="Chinese"
  10173. package="7"
  10174. />
  10175. <otaLanguage
  10176. id="0"
  10177. name="Korean"
  10178. package="8"
  10179. />
  10180. <otaLanguage
  10181. id="0"
  10182. name="Japanese"
  10183. package="9"
  10184. />
  10185. <otaLanguage
  10186. id="0"
  10187. name="Finnish"
  10188. package="10"
  10189. />
  10190. <otaLanguage
  10191. id="0"
  10192. name="Polish"
  10193. package="11"
  10194. />
  10195. </otaLanguages>
  10196. <otaPackages>
  10197. <package
  10198. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10199. size="5183988"
  10200. />
  10201. <package
  10202. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10203. size="5183988"
  10204. />
  10205. <package
  10206. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10207. size="5183988"
  10208. />
  10209. <package
  10210. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10211. size="5183988"
  10212. />
  10213. <package
  10214. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10215. size="5183988"
  10216. />
  10217. <package
  10218. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10219. size="5183988"
  10220. />
  10221. <package
  10222. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10223. size="5183988"
  10224. />
  10225. <package
  10226. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10227. size="5183988"
  10228. />
  10229. <package
  10230. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10231. size="5183988"
  10232. />
  10233. <package
  10234. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10235. size="5183988"
  10236. />
  10237. <package
  10238. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10239. size="5183988"
  10240. />
  10241. <package
  10242. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10243. size="5183988"
  10244. />
  10245. </otaPackages>
  10246. </productMenu>
  10247. <productMenu id="sip"
  10248. type="1" >
  10249. </productMenu>
  10250. <productMenu id="illusion"
  10251. type="0" >
  10252. </productMenu>
  10253. <productMenu id="meshIntercom+"
  10254. type="3"
  10255. url="2" >
  10256. </productMenu>
  10257. <productMenu id="waveIntercom"
  10258. type="1" >
  10259. </productMenu>
  10260. <productMenu id="bluetoothIntercom"
  10261. type="1"
  10262. url="2" >
  10263. </productMenu>
  10264. <productMenu id="bluetoothIntercomGrouping"
  10265. type="0" >
  10266. </productMenu>
  10267. <productMenu id="fmradio"
  10268. type="1"
  10269. url="1" >
  10270. </productMenu>
  10271. <productMenu id="phone"
  10272. type="1" >
  10273. </productMenu>
  10274. <productMenu id="music"
  10275. type="1" >
  10276. </productMenu>
  10277. <productMenu id="musicSharing"
  10278. type="0" >
  10279. </productMenu>
  10280. <productMenu id="deviceSetting"
  10281. type="1"
  10282. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10283. </productMenu>
  10284. <productMenu id="quickGuide"
  10285. type="0"
  10286. url=""
  10287. size="1.12MB" >
  10288. </productMenu>
  10289. <productMenu id="userGuide"
  10290. type="1"
  10291. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10292. size="2.0MB" >
  10293. </productMenu>
  10294. <productMenu id="videoGuide"
  10295. type="0"
  10296. url=""
  10297. size="3.41MB" >
  10298. </productMenu>
  10299. <productMenu id="volume"
  10300. type="16" >
  10301. </productMenu>
  10302. <productMenu id="volume+"
  10303. type="2"
  10304. url="0x6004" >
  10305. </productMenu>
  10306. <productMenu id="soundMode"
  10307. type="0" >
  10308. </productMenu>
  10309. <productMenu id="battery"
  10310. type="1" >
  10311. </productMenu>
  10312. <productID id="6A82"
  10313. />
  10314. <productGroupable type="0"
  10315. />
  10316. </product>
  10317. <product id="iCon"
  10318. name="iCon"
  10319. series="50"
  10320. latestVersion="1.2"
  10321. show = "0" >
  10322. <productMenu id="protocol"
  10323. type="2" >
  10324. </productMenu>
  10325. <productMenu id="alexa"
  10326. type="0" >
  10327. </productMenu>
  10328. <productMenu id="wa"
  10329. type="0" >
  10330. </productMenu>
  10331. <productMenu id="sip"
  10332. type="1" >
  10333. </productMenu>
  10334. <productMenu id="led"
  10335. type="3" >
  10336. </productMenu>
  10337. <productMenu id="meshIntercom"
  10338. type="20" >
  10339. </productMenu>
  10340. <productMenu id="meshIntercom+"
  10341. type="3"
  10342. url="0" >
  10343. <productMenuType version="1.0.9"
  10344. type="2"
  10345. />
  10346. </productMenu>
  10347. <productMenu id="bluetoothIntercom"
  10348. type="1" >
  10349. </productMenu>
  10350. <productMenu id="phone"
  10351. type="1" >
  10352. </productMenu>
  10353. <productMenu id="music"
  10354. type="1" >
  10355. </productMenu>
  10356. <productMenu id="fmradio"
  10357. type="1" >
  10358. </productMenu>
  10359. <productMenu id="deviceSetting"
  10360. type="1"
  10361. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10362. <productMenuURL version="1.0.9"
  10363. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10364. />
  10365. </productMenu>
  10366. <productMenu id="quickGuide"
  10367. type="1"
  10368. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10369. size="344KB" >
  10370. </productMenu>
  10371. <productMenu id="userGuide"
  10372. type="1"
  10373. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10374. size="3.41MB" >
  10375. </productMenu>
  10376. <productMenu id="volume"
  10377. type="11" >
  10378. </productMenu>
  10379. <productMenu id="battery"
  10380. type="1" >
  10381. </productMenu>
  10382. <productID id="3900"
  10383. />
  10384. <productGroupable type="0"
  10385. />
  10386. </product>
  10387. <product id="ICONHelmLinkSL"
  10388. name="ICON HelmLink SL"
  10389. series="50"
  10390. latestVersion="1.0"
  10391. latestVersionVoicePrompt="1.6"
  10392. show = "-1" >
  10393. <productMenu id="protocol"
  10394. type="2" >
  10395. </productMenu>
  10396. <productMenu id="alexa"
  10397. type="0" >
  10398. </productMenu>
  10399. <productMenu id="ota"
  10400. type="2" >
  10401. <otaPackages>
  10402. <package
  10403. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10404. size="2945812"
  10405. />
  10406. </otaPackages>
  10407. </productMenu>
  10408. <productMenu id="wa"
  10409. type="0" >
  10410. </productMenu>
  10411. <productMenu id="meshIntercom"
  10412. type="30" >
  10413. </productMenu>
  10414. <productMenu id="meshIntercom+"
  10415. type="3"
  10416. url="2" >
  10417. </productMenu>
  10418. <productMenu id="waveIntercom"
  10419. type="1" >
  10420. </productMenu>
  10421. <productMenu id="phone"
  10422. type="1" >
  10423. </productMenu>
  10424. <productMenu id="music"
  10425. type="1" >
  10426. </productMenu>
  10427. <productMenu id="musicSharing"
  10428. type="0" >
  10429. </productMenu>
  10430. <productMenu id="deviceSetting"
  10431. type="1"
  10432. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10433. </productMenu>
  10434. <productMenu id="quickGuide"
  10435. type="0"
  10436. url=""
  10437. size="1.12MB" >
  10438. </productMenu>
  10439. <productMenu id="userGuide"
  10440. type="1"
  10441. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10442. size="2.0MB" >
  10443. </productMenu>
  10444. <productMenu id="volume"
  10445. type="12" >
  10446. </productMenu>
  10447. <productMenu id="battery"
  10448. type="1" >
  10449. </productMenu>
  10450. <productID id="6842"
  10451. />
  10452. <productGroupable type="0"
  10453. />
  10454. </product>
  10455. <product id="HD50S"
  10456. name="H-D Audio 50S"
  10457. series="50"
  10458. latestVersion="1.0.1"
  10459. show = "-1" >
  10460. <productMenu id="protocol"
  10461. type="2" >
  10462. </productMenu>
  10463. <productMenu id="alexa"
  10464. type="0" >
  10465. </productMenu>
  10466. <productMenu id="ota"
  10467. type="0"
  10468. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10469. size="1150234" >
  10470. </productMenu>
  10471. <productMenu id="wa"
  10472. type="1" >
  10473. </productMenu>
  10474. <productMenu id="sip"
  10475. type="1" >
  10476. </productMenu>
  10477. <productMenu id="meshIntercom"
  10478. type="20" >
  10479. </productMenu>
  10480. <productMenu id="meshIntercom+"
  10481. type="3"
  10482. url="0" >
  10483. <productMenuType version="1.0.9"
  10484. type="2"
  10485. />
  10486. </productMenu>
  10487. <productMenu id="bluetoothIntercom"
  10488. type="1" >
  10489. </productMenu>
  10490. <productMenu id="phone"
  10491. type="1" >
  10492. </productMenu>
  10493. <productMenu id="music"
  10494. type="1" >
  10495. </productMenu>
  10496. <productMenu id="fmradio"
  10497. type="1" >
  10498. </productMenu>
  10499. <productMenu id="deviceSetting"
  10500. type="1"
  10501. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10502. <productMenuURL version="1.0.9"
  10503. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10504. />
  10505. </productMenu>
  10506. <productMenu id="quickGuide"
  10507. type="1"
  10508. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10509. size="934KB" >
  10510. </productMenu>
  10511. <productMenu id="userGuide"
  10512. type="1"
  10513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10514. size="1.14MB" >
  10515. </productMenu>
  10516. <productMenu id="volume"
  10517. type="11" >
  10518. </productMenu>
  10519. <productMenu id="battery"
  10520. type="1" >
  10521. </productMenu>
  10522. <productID id="3156"
  10523. />
  10524. <productGroupable type="0"
  10525. />
  10526. </product>
  10527. <product id="HD50S"
  10528. name="H-D Audio 50S"
  10529. series="50"
  10530. latestVersion="2.0.2"
  10531. show = "0" >
  10532. <productMenu id="protocol"
  10533. type="2" >
  10534. </productMenu>
  10535. <productMenu id="alexa"
  10536. type="0" >
  10537. </productMenu>
  10538. <productMenu id="ota"
  10539. type="0"
  10540. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10541. size="1150234" >
  10542. </productMenu>
  10543. <productMenu id="wa"
  10544. type="1" >
  10545. </productMenu>
  10546. <productMenu id="sip"
  10547. type="1" >
  10548. </productMenu>
  10549. <productMenu id="meshIntercom"
  10550. type="20" >
  10551. </productMenu>
  10552. <productMenu id="meshIntercom+"
  10553. type="3"
  10554. url="0" >
  10555. <productMenuType version="2.0.9"
  10556. type="2"
  10557. />
  10558. </productMenu>
  10559. <productMenu id="bluetoothIntercom"
  10560. type="1" >
  10561. </productMenu>
  10562. <productMenu id="phone"
  10563. type="1" >
  10564. </productMenu>
  10565. <productMenu id="music"
  10566. type="1" >
  10567. </productMenu>
  10568. <productMenu id="fmradio"
  10569. type="1" >
  10570. </productMenu>
  10571. <productMenu id="deviceSetting"
  10572. type="1"
  10573. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10574. <productMenuURL version="2.0.9"
  10575. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10576. />
  10577. </productMenu>
  10578. <productMenu id="quickGuide"
  10579. type="1"
  10580. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10581. size="934KB" >
  10582. </productMenu>
  10583. <productMenu id="userGuide"
  10584. type="1"
  10585. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10586. size="1.14MB" >
  10587. </productMenu>
  10588. <productMenu id="volume"
  10589. type="11" >
  10590. </productMenu>
  10591. <productMenu id="battery"
  10592. type="1" >
  10593. </productMenu>
  10594. <productID id="3213"
  10595. />
  10596. <productGroupable type="0"
  10597. />
  10598. </product>
  10599. <product id="HD50C"
  10600. name="H-D Audio 50C"
  10601. series="50"
  10602. latestVersion="1.0.1"
  10603. show = "0" >
  10604. <productMenu id="protocol"
  10605. type="2" >
  10606. </productMenu>
  10607. <productMenu id="ota"
  10608. type="0" >
  10609. </productMenu>
  10610. <productMenu id="wa"
  10611. type="1" >
  10612. </productMenu>
  10613. <productMenu id="sip"
  10614. type="1" >
  10615. </productMenu>
  10616. <productMenu id="meshIntercom"
  10617. type="20" >
  10618. </productMenu>
  10619. <productMenu id="meshIntercom+"
  10620. type="3"
  10621. url="0" >
  10622. <productMenuType version="1.0.9"
  10623. type="2"
  10624. />
  10625. </productMenu>
  10626. <productMenu id="bluetoothIntercom"
  10627. type="1" >
  10628. </productMenu>
  10629. <productMenu id="phone"
  10630. type="1" >
  10631. </productMenu>
  10632. <productMenu id="music"
  10633. type="1" >
  10634. </productMenu>
  10635. <productMenu id="fmradio"
  10636. type="1" >
  10637. </productMenu>
  10638. <productMenu id="deviceSetting"
  10639. type="1"
  10640. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10641. <productMenuURL version="1.0.9"
  10642. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10643. />
  10644. </productMenu>
  10645. <productMenu id="quickGuide"
  10646. type="1"
  10647. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10648. size="344KB" >
  10649. </productMenu>
  10650. <productMenu id="userGuide"
  10651. type="1"
  10652. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10653. size="3.41MB" >
  10654. </productMenu>
  10655. <productMenu id="volume"
  10656. type="11" >
  10657. </productMenu>
  10658. <productMenu id="battery"
  10659. type="1" >
  10660. </productMenu>
  10661. <productID id="3240"
  10662. />
  10663. <productGroupable type="0"
  10664. />
  10665. </product>
  10666. <product id="HD50S"
  10667. name="FURY N04"
  10668. series="Helmet"
  10669. latestVersion="1.0"
  10670. show = "0" >
  10671. <productMenu id="protocol"
  10672. type="2" >
  10673. </productMenu>
  10674. <productMenu id="alexa"
  10675. type="0" >
  10676. </productMenu>
  10677. <productMenu id="ota"
  10678. type="0" >
  10679. </productMenu>
  10680. <productMenu id="wa"
  10681. type="0" >
  10682. </productMenu>
  10683. <productMenu id="meshIntercom"
  10684. type="20" >
  10685. </productMenu>
  10686. <productMenu id="meshIntercom+"
  10687. type="3"
  10688. url="0" >
  10689. <productMenuType version="1.0.9"
  10690. type="2"
  10691. />
  10692. </productMenu>
  10693. <productMenu id="phone"
  10694. type="1" >
  10695. </productMenu>
  10696. <productMenu id="music"
  10697. type="1" >
  10698. </productMenu>
  10699. <productMenu id="fmradio"
  10700. type="1" >
  10701. </productMenu>
  10702. <productMenu id="deviceSetting"
  10703. type="1"
  10704. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10705. <productMenuURL version="1.0.9"
  10706. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10707. />
  10708. </productMenu>
  10709. <productMenu id="quickGuide"
  10710. type="1"
  10711. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10712. size="1.12MB" >
  10713. </productMenu>
  10714. <productMenu id="userGuide"
  10715. type="1"
  10716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10717. size="2.0MB" >
  10718. </productMenu>
  10719. <productMenu id="volume"
  10720. type="13" >
  10721. </productMenu>
  10722. <productMenu id="battery"
  10723. type="1" >
  10724. </productMenu>
  10725. <productID id="5553"
  10726. />
  10727. <productGroupable type="0"
  10728. />
  10729. </product>
  10730. <product id="XCOM3Pro"
  10731. name="X-COM3 Pro"
  10732. series="50"
  10733. latestVersion="1.1"
  10734. show = "0" >
  10735. <productMenu id="protocol"
  10736. type="2" >
  10737. </productMenu>
  10738. <productMenu id="alexa"
  10739. type="0" >
  10740. </productMenu>
  10741. <productMenu id="ota"
  10742. type="0" >
  10743. </productMenu>
  10744. <productMenu id="wa"
  10745. type="0" >
  10746. </productMenu>
  10747. <productMenu id="sip"
  10748. type="1" >
  10749. </productMenu>
  10750. <productMenu id="meshIntercom"
  10751. type="30" >
  10752. </productMenu>
  10753. <productMenu id="meshIntercom+"
  10754. type="3"
  10755. url="2" >
  10756. <productMenuType version="1.1"
  10757. type="2"
  10758. />
  10759. </productMenu>
  10760. <productMenu id="waveIntercom"
  10761. type="1" >
  10762. <productMenuType version="1.1"
  10763. type="0"
  10764. />
  10765. </productMenu>
  10766. <productMenu id="bluetoothIntercom"
  10767. type="1" >
  10768. </productMenu>
  10769. <productMenu id="phone"
  10770. type="1" >
  10771. </productMenu>
  10772. <productMenu id="music"
  10773. type="1" >
  10774. </productMenu>
  10775. <productMenu id="fmradio"
  10776. type="1" >
  10777. </productMenu>
  10778. <productMenu id="deviceSetting"
  10779. type="1"
  10780. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10781. <productMenuURL version="1.1"
  10782. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10783. />
  10784. </productMenu>
  10785. <productMenu id="quickGuide"
  10786. type="0"
  10787. url=""
  10788. size="344KB" >
  10789. </productMenu>
  10790. <productMenu id="userGuide"
  10791. type="1"
  10792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10793. size="3.41MB" >
  10794. </productMenu>
  10795. <productMenu id="volume"
  10796. type="11" >
  10797. </productMenu>
  10798. <productMenu id="battery"
  10799. type="1" >
  10800. </productMenu>
  10801. <productID id="321A"
  10802. />
  10803. <productGroupable type="0"
  10804. />
  10805. </product>
  10806. <product id="XCOM3"
  10807. name="X-COM3"
  10808. series="20"
  10809. latestVersion="1.0"
  10810. show = "0" >
  10811. <productMenu id="protocol"
  10812. type="2" >
  10813. </productMenu>
  10814. <productMenu id="sip"
  10815. type="1" >
  10816. </productMenu>
  10817. <productMenu id="bluetoothIntercom"
  10818. type="1" >
  10819. </productMenu>
  10820. <productMenu id="phone"
  10821. type="1" >
  10822. </productMenu>
  10823. <productMenu id="music"
  10824. type="1" >
  10825. </productMenu>
  10826. <productMenu id="fmradio"
  10827. type="1" >
  10828. </productMenu>
  10829. <productMenu id="deviceSetting"
  10830. type="1"
  10831. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10832. </productMenu>
  10833. <productMenu id="quickGuide"
  10834. type="0"
  10835. url=""
  10836. size="934KB" >
  10837. </productMenu>
  10838. <productMenu id="userGuide"
  10839. type="1"
  10840. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10841. size="1.14MB" >
  10842. </productMenu>
  10843. <productMenu id="volume"
  10844. type="15" >
  10845. </productMenu>
  10846. <productID id="3410"
  10847. />
  10848. <productGroupable type="0"
  10849. />
  10850. </product>
  10851. <product id="X-COM2"
  10852. name="X-COM2"
  10853. series="20"
  10854. latestVersion="1.0.5"
  10855. show = "0" >
  10856. <productMenu id="protocol"
  10857. type="0">
  10858. </productMenu>
  10859. <productMenu id="sip"
  10860. type="1" >
  10861. </productMenu>
  10862. <productMenu id="bluetoothIntercom"
  10863. type="1" >
  10864. </productMenu>
  10865. <productMenu id="intercomSetting"
  10866. type="1" >
  10867. </productMenu>
  10868. <productMenu id="phone"
  10869. type="2" >
  10870. </productMenu>
  10871. <productMenu id="fmradio"
  10872. type="3" >
  10873. </productMenu>
  10874. <productMenu id="deviceSetting"
  10875. type="1"
  10876. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10877. </productMenu>
  10878. <productMenu id="quickGuide"
  10879. type="1"
  10880. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10881. size="796KB" >
  10882. </productMenu>
  10883. <productMenu id="userGuide"
  10884. type="1"
  10885. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10886. size="1.90MB" >
  10887. </productMenu>
  10888. <productID id="2030"
  10889. />
  10890. <productGroupable type="1"
  10891. />
  10892. </product>
  10893. <product id="AVAABC"
  10894. name="AVA ABC"
  10895. series="SPIDER"
  10896. latestVersion="1.1"
  10897. show = "0" >
  10898. <productMenu id="protocol"
  10899. type="2" >
  10900. </productMenu>
  10901. <productMenu id="alexa"
  10902. type="0" >
  10903. </productMenu>
  10904. <productMenu id="ota"
  10905. type="0" >
  10906. <productMenuType version="1.0"
  10907. type="0"
  10908. />
  10909. <otaPackages>
  10910. <package
  10911. url="https://api.sena.com/support/OTA/"
  10912. size="2945812"
  10913. />
  10914. </otaPackages>
  10915. </productMenu>
  10916. <productMenu id="wa"
  10917. type="0" >
  10918. </productMenu>
  10919. <productMenu id="meshIntercom"
  10920. type="30" >
  10921. <productMenuType version="1.0"
  10922. type="20"
  10923. />
  10924. </productMenu>
  10925. <productMenu id="meshIntercom+"
  10926. type="3"
  10927. url="2" >
  10928. <productMenuType version="1.0"
  10929. type="2"
  10930. />
  10931. <productMenuURL version="1.0"
  10932. url="0"
  10933. />
  10934. </productMenu>
  10935. <productMenu id="waveIntercom"
  10936. type="1" >
  10937. <productMenuType version="1.0"
  10938. type="0"
  10939. />
  10940. </productMenu>
  10941. <productMenu id="phone"
  10942. type="1" >
  10943. </productMenu>
  10944. <productMenu id="music"
  10945. type="1" >
  10946. </productMenu>
  10947. <productMenu id="musicSharing"
  10948. type="0" >
  10949. </productMenu>
  10950. <productMenu id="deviceSetting"
  10951. type="1"
  10952. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10953. <productMenuURL version="1.0"
  10954. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10955. />
  10956. </productMenu>
  10957. <productMenu id="quickGuide"
  10958. type="1"
  10959. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10960. size="1.12MB" >
  10961. </productMenu>
  10962. <productMenu id="userGuide"
  10963. type="1"
  10964. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10965. size="2.0MB" >
  10966. </productMenu>
  10967. <productMenu id="volume"
  10968. type="12" >
  10969. </productMenu>
  10970. <productMenu id="battery"
  10971. type="1" >
  10972. </productMenu>
  10973. <productID id="6808"
  10974. />
  10975. <productGroupable type="0"
  10976. />
  10977. </product>
  10978. <product id="ADVANCEProCOM2"
  10979. name="ADVANCE ProCOM 2"
  10980. series="Helmet"
  10981. latestVersion="0.5"
  10982. latestVersionVoicePrompt="0.3"
  10983. show = "-1" >
  10984. <productMenu id="protocol"
  10985. type="2" >
  10986. </productMenu>
  10987. <productMenu id="ota"
  10988. type="2" >
  10989. <otaLanguages>
  10990. <otaLanguage
  10991. id="0"
  10992. name="English"
  10993. package="0"
  10994. />
  10995. <otaLanguage
  10996. id="0"
  10997. name="French"
  10998. package="1"
  10999. />
  11000. <otaLanguage
  11001. id="0"
  11002. name="Spanish"
  11003. package="2"
  11004. />
  11005. <otaLanguage
  11006. id="0"
  11007. name="Italian"
  11008. package="3"
  11009. />
  11010. <otaLanguage
  11011. id="0"
  11012. name="German"
  11013. package="4"
  11014. />
  11015. <otaLanguage
  11016. id="0"
  11017. name="Dutch"
  11018. package="5"
  11019. />
  11020. <otaLanguage
  11021. id="0"
  11022. name="Russian"
  11023. package="6"
  11024. />
  11025. <otaLanguage
  11026. id="0"
  11027. name="Chinese"
  11028. package="7"
  11029. />
  11030. <otaLanguage
  11031. id="0"
  11032. name="Korean"
  11033. package="8"
  11034. />
  11035. <otaLanguage
  11036. id="0"
  11037. name="Japanese"
  11038. package="9"
  11039. />
  11040. <otaLanguage
  11041. id="0"
  11042. name="Finnish"
  11043. package="10"
  11044. />
  11045. <otaLanguage
  11046. id="0"
  11047. name="Polish"
  11048. package="11"
  11049. />
  11050. </otaLanguages>
  11051. <otaPackages>
  11052. <package
  11053. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11054. size="5183988"
  11055. />
  11056. <package
  11057. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11058. size="5183988"
  11059. />
  11060. <package
  11061. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11062. size="5183988"
  11063. />
  11064. <package
  11065. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11066. size="5183988"
  11067. />
  11068. <package
  11069. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11070. size="5183988"
  11071. />
  11072. <package
  11073. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11074. size="5183988"
  11075. />
  11076. <package
  11077. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11078. size="5183988"
  11079. />
  11080. <package
  11081. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11082. size="5183988"
  11083. />
  11084. <package
  11085. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11086. size="5183988"
  11087. />
  11088. <package
  11089. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11090. size="5183988"
  11091. />
  11092. <package
  11093. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11094. size="5183988"
  11095. />
  11096. <package
  11097. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11098. size="5183988"
  11099. />
  11100. </otaPackages>
  11101. </productMenu>
  11102. <productMenu id="wa"
  11103. type="0" >
  11104. </productMenu>
  11105. <productMenu id="meshIntercom"
  11106. type="30" >
  11107. </productMenu>
  11108. <productMenu id="meshIntercom+"
  11109. type="3"
  11110. url="2" >
  11111. </productMenu>
  11112. <productMenu id="waveIntercom"
  11113. type="1" >
  11114. </productMenu>
  11115. <productMenu id="fmradio"
  11116. type="1" >
  11117. </productMenu>
  11118. <productMenu id="phone"
  11119. type="0" >
  11120. </productMenu>
  11121. <productMenu id="music"
  11122. type="1" >
  11123. </productMenu>
  11124. <productMenu id="musicSharing"
  11125. type="0" >
  11126. </productMenu>
  11127. <productMenu id="deviceSetting"
  11128. type="1"
  11129. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11130. </productMenu>
  11131. <productMenu id="quickGuide"
  11132. type="0"
  11133. url=""
  11134. size="1.12MB" >
  11135. </productMenu>
  11136. <productMenu id="userGuide"
  11137. type="1"
  11138. url=""
  11139. size="2.0MB" >
  11140. </productMenu>
  11141. <productMenu id="videoGuide"
  11142. type="0"
  11143. url=""
  11144. size="3.41MB" >
  11145. </productMenu>
  11146. <productMenu id="connectGuide"
  11147. type="1"
  11148. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11149. size="1.12MB" >
  11150. </productMenu>
  11151. <productMenu id="volume"
  11152. type="16" >
  11153. </productMenu>
  11154. <productMenu id="battery"
  11155. type="1" >
  11156. </productMenu>
  11157. <productID id="6A85"
  11158. />
  11159. <productGroupable type="0"
  11160. />
  11161. </product>
  11162. <product id="TRIUMPH60X"
  11163. name="TRIUMPH 60X"
  11164. series="60"
  11165. latestVersion="1.0"
  11166. latestVersionMesh="0.19"
  11167. latestVersionVoicePrompt="1.7"
  11168. show = "-1" >
  11169. <productMenu id="protocol"
  11170. type="2" >
  11171. </productMenu>
  11172. <productMenu id="ota"
  11173. type="0" >
  11174. <otaLanguages>
  11175. <otaLanguage
  11176. id="0"
  11177. name="English"
  11178. package="0"
  11179. />
  11180. <otaLanguage
  11181. id="0"
  11182. name="French"
  11183. package="1"
  11184. />
  11185. <otaLanguage
  11186. id="0"
  11187. name="Spanish"
  11188. package="2"
  11189. />
  11190. <otaLanguage
  11191. id="0"
  11192. name="Italian"
  11193. package="3"
  11194. />
  11195. <otaLanguage
  11196. id="0"
  11197. name="German"
  11198. package="4"
  11199. />
  11200. <otaLanguage
  11201. id="0"
  11202. name="Dutch"
  11203. package="5"
  11204. />
  11205. <otaLanguage
  11206. id="0"
  11207. name="Russian"
  11208. package="6"
  11209. />
  11210. <otaLanguage
  11211. id="0"
  11212. name="Chinese"
  11213. package="7"
  11214. />
  11215. <otaLanguage
  11216. id="0"
  11217. name="Korean"
  11218. package="8"
  11219. />
  11220. <otaLanguage
  11221. id="0"
  11222. name="Japanese"
  11223. package="9"
  11224. />
  11225. <otaLanguage
  11226. id="0"
  11227. name="Finnish"
  11228. package="10"
  11229. />
  11230. <otaLanguage
  11231. id="0"
  11232. name="Polish"
  11233. package="11"
  11234. />
  11235. </otaLanguages>
  11236. <otaPackages>
  11237. <package
  11238. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11239. size="5183988"
  11240. />
  11241. <package
  11242. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11243. size="5183988"
  11244. />
  11245. <package
  11246. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11247. size="5183988"
  11248. />
  11249. <package
  11250. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11251. size="5183988"
  11252. />
  11253. <package
  11254. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11255. size="5183988"
  11256. />
  11257. <package
  11258. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11259. size="5183988"
  11260. />
  11261. <package
  11262. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11263. size="5183988"
  11264. />
  11265. <package
  11266. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11267. size="5183988"
  11268. />
  11269. <package
  11270. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11271. size="5183988"
  11272. />
  11273. <package
  11274. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11275. size="5183988"
  11276. />
  11277. <package
  11278. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11279. size="5183988"
  11280. />
  11281. <package
  11282. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11283. size="5183988"
  11284. />
  11285. </otaPackages>
  11286. </productMenu>
  11287. <productMenu id="wa"
  11288. type="0" >
  11289. </productMenu>
  11290. <productMenu id="sip"
  11291. type="1" >
  11292. </productMenu>
  11293. <productMenu id="led"
  11294. type="1" >
  11295. </productMenu>
  11296. <productMenu id="illusion"
  11297. type="1" >
  11298. </productMenu>
  11299. <productMenu id="meshIntercom"
  11300. type="30" >
  11301. </productMenu>
  11302. <productMenu id="meshIntercom+"
  11303. type="3"
  11304. url="2" >
  11305. </productMenu>
  11306. <productMenu id="bluetoothIntercom"
  11307. type="1" >
  11308. </productMenu>
  11309. <productMenu id="fmradio"
  11310. type="1"
  11311. url="1" >
  11312. </productMenu>
  11313. <productMenu id="mic"
  11314. type="0" >
  11315. </productMenu>
  11316. <productMenu id="phone"
  11317. type="1" >
  11318. </productMenu>
  11319. <productMenu id="music"
  11320. type="1" >
  11321. </productMenu>
  11322. <productMenu id="musicSharing"
  11323. type="0" >
  11324. </productMenu>
  11325. <productMenu id="deviceSetting"
  11326. type="1"
  11327. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11328. </productMenu>
  11329. <productMenu id="quickGuide"
  11330. type="0"
  11331. url=""
  11332. size="1.12MB" >
  11333. </productMenu>
  11334. <productMenu id="userGuide"
  11335. type="1"
  11336. url=""
  11337. size="2.0MB" >
  11338. </productMenu>
  11339. <productMenu id="videoGuide"
  11340. type="0"
  11341. url=""
  11342. size="3.41MB" >
  11343. </productMenu>
  11344. <productMenu id="keySettings"
  11345. type="1"
  11346. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11347. </productMenu>
  11348. <productMenu id="volume"
  11349. type="13" >
  11350. </productMenu>
  11351. <productMenu id="volume+"
  11352. type="2"
  11353. url="0x6004" >
  11354. </productMenu>
  11355. <productMenu id="battery"
  11356. type="1" >
  11357. </productMenu>
  11358. <productID id="6A1C"
  11359. />
  11360. <productGroupable type="0"
  11361. />
  11362. </product>
  11363. <product id="Triumph_50S"
  11364. name="Triumph 50S"
  11365. series="50"
  11366. latestVersion="1.5"
  11367. show = "0" >
  11368. <productMenu id="protocol"
  11369. type="2" >
  11370. </productMenu>
  11371. <productMenu id="alexa"
  11372. type="0" >
  11373. </productMenu>
  11374. <productMenu id="ota"
  11375. type="0"
  11376. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11377. size="1150234" >
  11378. </productMenu>
  11379. <productMenu id="wa"
  11380. type="1" >
  11381. </productMenu>
  11382. <productMenu id="sip"
  11383. type="1" >
  11384. </productMenu>
  11385. <productMenu id="meshIntercom"
  11386. type="20" >
  11387. </productMenu>
  11388. <productMenu id="bluetoothIntercom"
  11389. type="1" >
  11390. </productMenu>
  11391. <productMenu id="meshIntercom+"
  11392. type="3"
  11393. url="2" >
  11394. <productMenuType version="1.2.9"
  11395. type="2"
  11396. />
  11397. <productMenuURL version="1.2.9"
  11398. url="0"
  11399. />
  11400. </productMenu>
  11401. <productMenu id="waveIntercom"
  11402. type="1" >
  11403. <productMenuType version="1.2.9"
  11404. type="0"
  11405. />
  11406. </productMenu>
  11407. <productMenu id="phone"
  11408. type="1" >
  11409. </productMenu>
  11410. <productMenu id="music"
  11411. type="1" >
  11412. </productMenu>
  11413. <productMenu id="fmradio"
  11414. type="1" >
  11415. </productMenu>
  11416. <productMenu id="deviceSetting"
  11417. type="1"
  11418. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11419. <productMenuURL version="1.2.9"
  11420. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11421. />
  11422. <productMenuURL version="1.0"
  11423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11424. />
  11425. </productMenu>
  11426. <productMenu id="quickGuide"
  11427. type="1"
  11428. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11429. size="934KB" >
  11430. </productMenu>
  11431. <productMenu id="userGuide"
  11432. type="1"
  11433. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11434. size="1.14MB" >
  11435. </productMenu>
  11436. <productMenu id="volume"
  11437. type="11" >
  11438. </productMenu>
  11439. <productMenu id="battery"
  11440. type="1" >
  11441. </productMenu>
  11442. <productID id="3264"
  11443. />
  11444. <productGroupable type="0"
  11445. />
  11446. </product>
  11447. <product id="RE50S"
  11448. name="RE 50S"
  11449. series="50"
  11450. latestVersion="2.7"
  11451. show = "0" >
  11452. <productMenu id="protocol"
  11453. type="2" >
  11454. </productMenu>
  11455. <productMenu id="alexa"
  11456. type="0" >
  11457. </productMenu>
  11458. <productMenu id="ota"
  11459. type="0"
  11460. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11461. size="1150234" >
  11462. </productMenu>
  11463. <productMenu id="wa"
  11464. type="1" >
  11465. </productMenu>
  11466. <productMenu id="sip"
  11467. type="1" >
  11468. </productMenu>
  11469. <productMenu id="meshIntercom"
  11470. type="30" >
  11471. </productMenu>
  11472. <productMenu id="meshIntercom+"
  11473. type="3"
  11474. url="2" >
  11475. <productMenuType version="2.5"
  11476. type="2"
  11477. />
  11478. </productMenu>
  11479. <productMenu id="waveIntercom"
  11480. type="1" >
  11481. <productMenuType version="2.5"
  11482. type="0"
  11483. />
  11484. </productMenu>
  11485. <productMenu id="bluetoothIntercom"
  11486. type="1" >
  11487. </productMenu>
  11488. <productMenu id="phone"
  11489. type="1" >
  11490. </productMenu>
  11491. <productMenu id="music"
  11492. type="1" >
  11493. </productMenu>
  11494. <productMenu id="fmradio"
  11495. type="1" >
  11496. </productMenu>
  11497. <productMenu id="deviceSetting"
  11498. type="1"
  11499. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11500. <productMenuURL version="2.5.9"
  11501. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11502. />
  11503. </productMenu>
  11504. <productMenu id="quickGuide"
  11505. type="1"
  11506. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11507. size="934KB" >
  11508. </productMenu>
  11509. <productMenu id="userGuide"
  11510. type="1"
  11511. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11512. size="1.14MB" >
  11513. </productMenu>
  11514. <productMenu id="videoGuide"
  11515. type="0"
  11516. url=""
  11517. size="3.41MB" >
  11518. </productMenu>
  11519. <productMenu id="volume"
  11520. type="11" >
  11521. </productMenu>
  11522. <productMenu id="battery"
  11523. type="1" >
  11524. </productMenu>
  11525. <productID id="321C"
  11526. />
  11527. <productGroupable type="0"
  11528. />
  11529. </product>
  11530. <product id="BMW_HELMET_II_U1"
  11531. name="BMW HELMET II U1"
  11532. series="50"
  11533. latestVersion="1.0"
  11534. show = "0" >
  11535. <productMenu id="protocol"
  11536. type="2" >
  11537. </productMenu>
  11538. <productMenu id="alexa"
  11539. type="0" >
  11540. </productMenu>
  11541. <productMenu id="sip"
  11542. type="1" >
  11543. </productMenu>
  11544. <productMenu id="meshIntercom"
  11545. type="20" >
  11546. </productMenu>
  11547. <productMenu id="bluetoothIntercom"
  11548. type="1" >
  11549. </productMenu>
  11550. <productMenu id="bluetoothIntercom2"
  11551. type="1" >
  11552. </productMenu>
  11553. <productMenu id="phone"
  11554. type="1" >
  11555. </productMenu>
  11556. <productMenu id="music"
  11557. type="1" >
  11558. </productMenu>
  11559. <productMenu id="fmradio"
  11560. type="1" >
  11561. </productMenu>
  11562. <productMenu id="deviceSetting"
  11563. type="1"
  11564. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11565. </productMenu>
  11566. <productMenu id="quickGuide"
  11567. type="1"
  11568. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11569. size="934KB" >
  11570. </productMenu>
  11571. <productMenu id="userGuide"
  11572. type="1"
  11573. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11574. size="1.14MB" >
  11575. </productMenu>
  11576. <productMenu id="volume"
  11577. type="11" >
  11578. </productMenu>
  11579. <productMenu id="battery"
  11580. type="1" >
  11581. </productMenu>
  11582. <productID id="3260"
  11583. />
  11584. <productGroupable type="0"
  11585. />
  11586. </product>
  11587. <product id="OUTRUSHR"
  11588. name="CX935"
  11589. series="Helmet"
  11590. latestVersion="2.1"
  11591. show = "-1" >
  11592. <productMenu id="protocol"
  11593. type="3">
  11594. </productMenu>
  11595. <productMenu id="sip"
  11596. type="1" >
  11597. </productMenu>
  11598. <productMenu id="bluetoothIntercom"
  11599. type="1" >
  11600. </productMenu>
  11601. <productMenu id="phone"
  11602. type="1" >
  11603. </productMenu>
  11604. <productMenu id="fmradio"
  11605. type="0" >
  11606. </productMenu>
  11607. <productMenu id="deviceSetting"
  11608. type="1"
  11609. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11610. </productMenu>
  11611. <productMenu id="userGuide"
  11612. type="1"
  11613. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11614. size="660KB" >
  11615. </productMenu>
  11616. <productID id="5446"
  11617. />
  11618. <productGroupable type="0"
  11619. />
  11620. </product>
  11621. <product id="LSE_01"
  11622. name="LSE-01"
  11623. series="SF"
  11624. latestVersion="1.2.3"
  11625. show = "0" >
  11626. <productMenu id="protocol"
  11627. type="1"
  11628. url="3">
  11629. </productMenu>
  11630. <productMenu id="sip"
  11631. type="1" >
  11632. </productMenu>
  11633. <productMenu id="bluetoothIntercom"
  11634. type="1" >
  11635. </productMenu>
  11636. <productMenu id="phone"
  11637. type="1" >
  11638. </productMenu>
  11639. <productMenu id="music"
  11640. type="1" >
  11641. </productMenu>
  11642. <productMenu id="fmradio"
  11643. type="1" >
  11644. </productMenu>
  11645. <productMenu id="deviceSetting"
  11646. type="1"
  11647. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11648. <productMenuURL version="1.1"
  11649. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11650. />
  11651. <productMenuURL version="1.0"
  11652. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11653. />
  11654. </productMenu>
  11655. <productMenu id="quickGuide"
  11656. type="1"
  11657. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11658. size="607KB" >
  11659. </productMenu>
  11660. <productMenu id="userGuide"
  11661. type="1"
  11662. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11663. size="1.91MB" >
  11664. </productMenu>
  11665. <productMenu id="volume"
  11666. type="4" >
  11667. </productMenu>
  11668. <productID id="5416"
  11669. />
  11670. <productGroupable type="0"
  11671. />
  11672. </product>
  11673. <product id="AGV_ARK"
  11674. name="AGV ARK"
  11675. series="SF"
  11676. latestVersion="1.0.3"
  11677. show = "0" >
  11678. <productMenu id="protocol"
  11679. type="1"
  11680. url="3">
  11681. </productMenu>
  11682. <productMenu id="sip"
  11683. type="1" >
  11684. </productMenu>
  11685. <productMenu id="bluetoothIntercom"
  11686. type="1" >
  11687. </productMenu>
  11688. <productMenu id="phone"
  11689. type="1" >
  11690. </productMenu>
  11691. <productMenu id="music"
  11692. type="1" >
  11693. </productMenu>
  11694. <productMenu id="fmradio"
  11695. type="1" >
  11696. </productMenu>
  11697. <productMenu id="deviceSetting"
  11698. type="1"
  11699. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11700. </productMenu>
  11701. <productMenu id="quickGuide"
  11702. type="1"
  11703. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11704. size="607KB" >
  11705. </productMenu>
  11706. <productMenu id="userGuide"
  11707. type="1"
  11708. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11709. size="1.91MB" >
  11710. </productMenu>
  11711. <productMenu id="volume"
  11712. type="4" >
  11713. </productMenu>
  11714. <productID id="5420"
  11715. />
  11716. <productGroupable type="0"
  11717. />
  11718. </product>
  11719. <product id="KLIM_KRIOS"
  11720. name="KLIM Krios"
  11721. series="10"
  11722. latestVersion="1.1.2"
  11723. show = "0" >
  11724. <productMenu id="protocol"
  11725. type="0">
  11726. </productMenu>
  11727. <productMenu id="sip"
  11728. type="1" >
  11729. </productMenu>
  11730. <productMenu id="bluetoothIntercom"
  11731. type="1" >
  11732. </productMenu>
  11733. <productMenu id="phone"
  11734. type="2" >
  11735. </productMenu>
  11736. <productMenu id="fmradio"
  11737. type="3" >
  11738. </productMenu>
  11739. <productMenu id="deviceSetting"
  11740. type="1"
  11741. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11742. <productMenuURL version="1.0"
  11743. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11744. />
  11745. </productMenu>
  11746. <productMenu id="quickGuide"
  11747. type="1"
  11748. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11749. size="649KB" >
  11750. </productMenu>
  11751. <productMenu id="userGuide"
  11752. type="1"
  11753. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11754. size="1.43MB" >
  11755. </productMenu>
  11756. <productID id="5910"
  11757. />
  11758. <productGroupable type="0"
  11759. />
  11760. </product>
  11761. <product id="POLARIS_SLINGSHOT"
  11762. name="Polaris Slingshot"
  11763. series="10"
  11764. latestVersion="1.1.2"
  11765. show = "0" >
  11766. <productMenu id="protocol"
  11767. type="0">
  11768. </productMenu>
  11769. <productMenu id="sip"
  11770. type="1" >
  11771. </productMenu>
  11772. <productMenu id="bluetoothIntercom"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="phone"
  11776. type="2" >
  11777. </productMenu>
  11778. <productMenu id="fmradio"
  11779. type="3" >
  11780. </productMenu>
  11781. <productMenu id="deviceSetting"
  11782. type="1"
  11783. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11784. <productMenuURL version="1.0"
  11785. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11786. />
  11787. </productMenu>
  11788. <productMenu id="quickGuide"
  11789. type="1"
  11790. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11791. size="689KB" >
  11792. </productMenu>
  11793. <productMenu id="userGuide"
  11794. type="1"
  11795. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11796. size="1.43MB" >
  11797. </productMenu>
  11798. <productID id="5920"
  11799. />
  11800. <productGroupable type="0"
  11801. />
  11802. </product>
  11803. <product id="DWO6"
  11804. name="SEDICI DWO6-PRO"
  11805. series="10"
  11806. latestVersion="1.0.2"
  11807. show = "0" >
  11808. <productMenu id="protocol"
  11809. type="0">
  11810. </productMenu>
  11811. <productMenu id="sip"
  11812. type="1" >
  11813. </productMenu>
  11814. <productMenu id="bluetoothIntercom"
  11815. type="1" >
  11816. </productMenu>
  11817. <productMenu id="phone"
  11818. type="2" >
  11819. </productMenu>
  11820. <productMenu id="fmradio"
  11821. type="3" >
  11822. </productMenu>
  11823. <productMenu id="deviceSetting"
  11824. type="1"
  11825. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11826. </productMenu>
  11827. <productMenu id="quickGuide"
  11828. type="1"
  11829. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11830. size="529KB" >
  11831. </productMenu>
  11832. <productMenu id="userGuide"
  11833. type="1"
  11834. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11835. size="4.09MB" >
  11836. </productMenu>
  11837. <productID id="6112"
  11838. />
  11839. <productGroupable type="0"
  11840. />
  11841. </product>
  11842. <product id="DWO6A"
  11843. name="SEDICI DWO-6"
  11844. series="10"
  11845. latestVersion="1.0.2"
  11846. show = "0" >
  11847. <productMenu id="protocol"
  11848. type="0">
  11849. </productMenu>
  11850. <productMenu id="sip"
  11851. type="1" >
  11852. </productMenu>
  11853. <productMenu id="bluetoothIntercom"
  11854. type="1" >
  11855. </productMenu>
  11856. <productMenu id="phone"
  11857. type="2" >
  11858. </productMenu>
  11859. <productMenu id="fmradio"
  11860. type="3" >
  11861. </productMenu>
  11862. <productMenu id="deviceSetting"
  11863. type="1"
  11864. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11865. </productMenu>
  11866. <productMenu id="quickGuide"
  11867. type="1"
  11868. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11869. size="522KB" >
  11870. </productMenu>
  11871. <productMenu id="userGuide"
  11872. type="1"
  11873. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11874. size="2.71MB" >
  11875. </productMenu>
  11876. <productID id="6114"
  11877. />
  11878. <productGroupable type="0"
  11879. />
  11880. </product>
  11881. <product id="3SPLUS"
  11882. name="ZILL"
  11883. series="3"
  11884. latestVersion="1.0.4"
  11885. show = "0" >
  11886. <productMenu id="protocol"
  11887. type="0">
  11888. </productMenu>
  11889. <productMenu id="sip"
  11890. type="1" >
  11891. </productMenu>
  11892. <productMenu id="bluetoothIntercom"
  11893. type="1" >
  11894. </productMenu>
  11895. <productMenu id="deviceSetting"
  11896. type="1"
  11897. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11898. </productMenu>
  11899. <productMenu id="quickGuide"
  11900. type="1"
  11901. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11902. size="842KB" >
  11903. </productMenu>
  11904. <productMenu id="userGuide"
  11905. type="1"
  11906. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11907. size="1.02MB" >
  11908. </productMenu>
  11909. <productID id="6335"
  11910. />
  11911. <productGroupable type="0"
  11912. />
  11913. </product>
  11914. <product id="HD50S"
  11915. name="Boom! Audio 30K"
  11916. series="30"
  11917. latestVersion="3.4"
  11918. show = "0" >
  11919. <productMenu id="protocol"
  11920. type="1"
  11921. url="0">
  11922. </productMenu>
  11923. <productMenu id="wa"
  11924. type="0" >
  11925. </productMenu>
  11926. <productMenu id="sip"
  11927. type="1" >
  11928. </productMenu>
  11929. <productMenu id="meshIntercom"
  11930. type="20" >
  11931. <productMenuType version="2.9.9"
  11932. type="10"
  11933. />
  11934. </productMenu>
  11935. <productMenu id="bluetoothIntercom"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="phone"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="music"
  11942. type="1" >
  11943. </productMenu>
  11944. <productMenu id="fmradio"
  11945. type="1" >
  11946. </productMenu>
  11947. <productMenu id="deviceSetting"
  11948. type="1"
  11949. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11950. <productMenuURL version="3.2"
  11951. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11952. />
  11953. <productMenuURL version="3.0"
  11954. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11955. />
  11956. <productMenuURL version="2.2"
  11957. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11958. />
  11959. </productMenu>
  11960. <productMenu id="quickGuide"
  11961. type="1"
  11962. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11963. size="1.06MB" >
  11964. </productMenu>
  11965. <productMenu id="userGuide"
  11966. type="1"
  11967. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11968. size="3.15MB" >
  11969. </productMenu>
  11970. <productMenu id="volume"
  11971. type="1" >
  11972. </productMenu>
  11973. <productID id="3112"
  11974. />
  11975. <productGroupable type="0"
  11976. />
  11977. </product>
  11978. <product id="HD50S"
  11979. name="Boom! Audio N02"
  11980. series="30"
  11981. latestVersion="3.1"
  11982. show = "0" >
  11983. <productMenu id="protocol"
  11984. type="1"
  11985. url="0">
  11986. </productMenu>
  11987. <productMenu id="wa"
  11988. type="2" >
  11989. </productMenu>
  11990. <productMenu id="sip"
  11991. type="1" >
  11992. </productMenu>
  11993. <productMenu id="meshIntercom"
  11994. type="20" >
  11995. <productMenuType version="2.9.9"
  11996. type="10"
  11997. />
  11998. </productMenu>
  11999. <productMenu id="bluetoothIntercom"
  12000. type="1" >
  12001. </productMenu>
  12002. <productMenu id="phone"
  12003. type="1" >
  12004. </productMenu>
  12005. <productMenu id="music"
  12006. type="1" >
  12007. </productMenu>
  12008. <productMenu id="fmradio"
  12009. type="1" >
  12010. </productMenu>
  12011. <productMenu id="deviceSetting"
  12012. type="1"
  12013. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12014. <productMenuURL version="2.2"
  12015. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12016. />
  12017. </productMenu>
  12018. <productMenu id="quickGuide"
  12019. type="1"
  12020. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12021. size="1.06MB" >
  12022. </productMenu>
  12023. <productMenu id="userGuide"
  12024. type="1"
  12025. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12026. size="3.15MB" >
  12027. </productMenu>
  12028. <productMenu id="volume"
  12029. type="2" >
  12030. </productMenu>
  12031. <productID id="3114"
  12032. />
  12033. <productGroupable type="0"
  12034. />
  12035. </product>
  12036. <product id="HD50S"
  12037. name="Boom Audio 20S"
  12038. series="50"
  12039. latestVersion="2.5.2"
  12040. show = "0" >
  12041. <productMenu id="protocol"
  12042. type="0">
  12043. </productMenu>
  12044. <productMenu id="sip"
  12045. type="1" >
  12046. <productMenuType version="1.0"
  12047. type="0"
  12048. />
  12049. </productMenu>
  12050. <productMenu id="bluetoothIntercom"
  12051. type="1" >
  12052. <productMenuType version="1.0"
  12053. type="0"
  12054. />
  12055. </productMenu>
  12056. <productMenu id="intercomSetting"
  12057. type="1" >
  12058. </productMenu>
  12059. <productMenu id="phone"
  12060. type="2" >
  12061. </productMenu>
  12062. <productMenu id="fmradio"
  12063. type="3" >
  12064. </productMenu>
  12065. <productMenu id="deviceSetting"
  12066. type="1"
  12067. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12068. <productMenuURL version="2.4"
  12069. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12070. />
  12071. <productMenuURL version="1.5"
  12072. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12073. />
  12074. <productMenuURL version="1.4.1"
  12075. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12076. />
  12077. <productMenuURL version="1.1"
  12078. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12079. />
  12080. <productMenuURL version="1.0"
  12081. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12082. />
  12083. </productMenu>
  12084. <productMenu id="quickGuide"
  12085. type="1"
  12086. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12087. size="264KB" >
  12088. </productMenu>
  12089. <productMenu id="userGuide"
  12090. type="1"
  12091. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12092. size="3.09MB" >
  12093. </productMenu>
  12094. <productMenu id="connectGuide"
  12095. type="1"
  12096. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12097. size="1.12MB" >
  12098. </productMenu>
  12099. <productID id="4210"
  12100. />
  12101. <productProductKey key="11"
  12102. />
  12103. <productID id="4230"
  12104. />
  12105. <productProductKey key="11"
  12106. />
  12107. <productGroupable type="1"
  12108. />
  12109. </product>
  12110. <product id="HD50S"
  12111. name="Boom Audio 20S EVO"
  12112. series="50"
  12113. latestVersion="2.5.2"
  12114. show = "0" >
  12115. <productMenu id="protocol"
  12116. type="0">
  12117. </productMenu>
  12118. <productMenu id="sip"
  12119. type="1" >
  12120. <productMenuType version="1.0"
  12121. type="0"
  12122. />
  12123. </productMenu>
  12124. <productMenu id="bluetoothIntercom"
  12125. type="1" >
  12126. <productMenuType version="1.0"
  12127. type="0"
  12128. />
  12129. </productMenu>
  12130. <productMenu id="intercomSetting"
  12131. type="1" >
  12132. </productMenu>
  12133. <productMenu id="phone"
  12134. type="2" >
  12135. </productMenu>
  12136. <productMenu id="fmradio"
  12137. type="3" >
  12138. </productMenu>
  12139. <productMenu id="deviceSetting"
  12140. type="1"
  12141. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12142. <productMenuURL version="2.4"
  12143. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12144. />
  12145. <productMenuURL version="1.5"
  12146. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12147. />
  12148. <productMenuURL version="1.4.1"
  12149. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12150. />
  12151. <productMenuURL version="1.1"
  12152. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12153. />
  12154. <productMenuURL version="1.0"
  12155. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12156. />
  12157. </productMenu>
  12158. <productMenu id="quickGuide"
  12159. type="1"
  12160. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12161. size="321KB" >
  12162. </productMenu>
  12163. <productMenu id="userGuide"
  12164. type="1"
  12165. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12166. size="2.46MB" >
  12167. </productMenu>
  12168. <productID id="4230"
  12169. />
  12170. <productProductKey key="27"
  12171. />
  12172. <productGroupable type="1"
  12173. />
  12174. </product>
  12175. <product id="HD50S"
  12176. name="Boom! Audio 10S"
  12177. series="50"
  12178. latestVersion="1.1.3"
  12179. show = "0" >
  12180. <productMenu id="protocol"
  12181. type="0">
  12182. </productMenu>
  12183. <productMenu id="sip"
  12184. type="1" >
  12185. </productMenu>
  12186. <productMenu id="bluetoothIntercom"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="phone"
  12190. type="2" >
  12191. </productMenu>
  12192. <productMenu id="fmradio"
  12193. type="3" >
  12194. </productMenu>
  12195. <productMenu id="deviceSetting"
  12196. type="1"
  12197. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12198. </productMenu>
  12199. <productMenu id="quickGuide"
  12200. type="1"
  12201. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12202. size="538KB" >
  12203. </productMenu>
  12204. <productMenu id="userGuide"
  12205. type="1"
  12206. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12207. size="1.55MB" >
  12208. </productMenu>
  12209. <productID id="5532"
  12210. />
  12211. <productGroupable type="0"
  12212. />
  12213. </product>
  12214. <product id="HD50S"
  12215. name="Boom! Audio N01 10R"
  12216. series="50"
  12217. latestVersion="1.1.3"
  12218. show = "0" >
  12219. <productMenu id="protocol"
  12220. type="0">
  12221. </productMenu>
  12222. <productMenu id="sip"
  12223. type="1" >
  12224. </productMenu>
  12225. <productMenu id="bluetoothIntercom"
  12226. type="1" >
  12227. </productMenu>
  12228. <productMenu id="phone"
  12229. type="2" >
  12230. </productMenu>
  12231. <productMenu id="fmradio"
  12232. type="3" >
  12233. </productMenu>
  12234. <productMenu id="deviceSetting"
  12235. type="1"
  12236. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12237. </productMenu>
  12238. <productMenu id="quickGuide"
  12239. type="1"
  12240. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12241. size="766KB" >
  12242. </productMenu>
  12243. <productMenu id="userGuide"
  12244. type="1"
  12245. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12246. size="1.45MB" >
  12247. </productMenu>
  12248. <productID id="5522"
  12249. />
  12250. <productGroupable type="0"
  12251. />
  12252. </product>
  12253. <product id="HD50S"
  12254. name="OUTRUSH-R N03"
  12255. series="50"
  12256. latestVersion="1.2.1"
  12257. show = "-1" >
  12258. <productMenu id="protocol"
  12259. type="0">
  12260. </productMenu>
  12261. <productMenu id="sip"
  12262. type="1" >
  12263. </productMenu>
  12264. <productMenu id="bluetoothIntercom"
  12265. type="1" >
  12266. </productMenu>
  12267. <productMenu id="phone"
  12268. type="2" >
  12269. </productMenu>
  12270. <productMenu id="fmradio"
  12271. type="3" >
  12272. </productMenu>
  12273. <productMenu id="deviceSetting"
  12274. type="1"
  12275. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12276. </productMenu>
  12277. <productMenu id="userGuide"
  12278. type="1"
  12279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12280. size="660KB" >
  12281. </productMenu>
  12282. <productID id="5434"
  12283. />
  12284. <productGroupable type="0"
  12285. />
  12286. </product>
  12287. <product id="HD50S"
  12288. name="OUTRUSH-R N03"
  12289. series="50"
  12290. latestVersion="2.0"
  12291. show = "0" >
  12292. <productMenu id="protocol"
  12293. type="3" >
  12294. </productMenu>
  12295. <productMenu id="sip"
  12296. type="1" >
  12297. </productMenu>
  12298. <productMenu id="bluetoothIntercom"
  12299. type="1" >
  12300. </productMenu>
  12301. <productMenu id="phone"
  12302. type="1" >
  12303. </productMenu>
  12304. <productMenu id="fmradio"
  12305. type="1" >
  12306. </productMenu>
  12307. <productMenu id="deviceSetting"
  12308. type="1"
  12309. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12310. </productMenu>
  12311. <productMenu id="userGuide"
  12312. type="1"
  12313. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12314. size="1.14MB" >
  12315. </productMenu>
  12316. <productID id="5441"
  12317. />
  12318. <productGroupable type="0"
  12319. />
  12320. </product>
  12321. <product id="5R"
  12322. name="5R"
  12323. series="5"
  12324. latestVersion="1.0.1"
  12325. show = "1" >
  12326. <productMenu id="protocol"
  12327. type="3" >
  12328. </productMenu>
  12329. <productMenu id="sip"
  12330. type="1" >
  12331. </productMenu>
  12332. <productMenu id="bluetoothIntercom"
  12333. type="1" >
  12334. </productMenu>
  12335. <productMenu id="phone"
  12336. type="1" >
  12337. </productMenu>
  12338. <productMenu id="fmradio"
  12339. type="1" >
  12340. </productMenu>
  12341. <productMenu id="deviceSetting"
  12342. type="1"
  12343. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12344. </productMenu>
  12345. <productMenu id="quickGuide"
  12346. type="0"
  12347. url=""
  12348. size="934KB" >
  12349. </productMenu>
  12350. <productMenu id="userGuide"
  12351. type="1"
  12352. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12353. size="1.14MB" >
  12354. </productMenu>
  12355. <productMenu id="connectGuide"
  12356. type="1"
  12357. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12358. size="1.12MB" >
  12359. </productMenu>
  12360. <productID id="5591"
  12361. />
  12362. <productGroupable type="0"
  12363. />
  12364. </product>
  12365. <product id="5R"
  12366. name="5R LITE"
  12367. series="5"
  12368. latestVersion="1.0.1"
  12369. show = "1" >
  12370. <productMenu id="protocol"
  12371. type="3" >
  12372. </productMenu>
  12373. <productMenu id="sip"
  12374. type="1" >
  12375. </productMenu>
  12376. <productMenu id="bluetoothIntercom"
  12377. type="1" >
  12378. </productMenu>
  12379. <productMenu id="phone"
  12380. type="1" >
  12381. </productMenu>
  12382. <productMenu id="fmradio"
  12383. type="1" >
  12384. </productMenu>
  12385. <productMenu id="deviceSetting"
  12386. type="1"
  12387. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12388. </productMenu>
  12389. <productMenu id="quickGuide"
  12390. type="0"
  12391. url=""
  12392. size="934KB" >
  12393. </productMenu>
  12394. <productMenu id="userGuide"
  12395. type="1"
  12396. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12397. size="1.14MB" >
  12398. </productMenu>
  12399. <productMenu id="connectGuide"
  12400. type="1"
  12401. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12402. size="1.12MB" >
  12403. </productMenu>
  12404. <productID id="5592"
  12405. />
  12406. <productGroupable type="0"
  12407. />
  12408. </product>
  12409. <product id="50RLE"
  12410. name="50R LE"
  12411. series="50"
  12412. latestVersion="1.1"
  12413. show = "0" >
  12414. <productMenu id="protocol"
  12415. type="2" >
  12416. </productMenu>
  12417. <productMenu id="alexa"
  12418. type="0" >
  12419. </productMenu>
  12420. <productMenu id="sip"
  12421. type="1" >
  12422. </productMenu>
  12423. <productMenu id="meshIntercom"
  12424. type="30" >
  12425. </productMenu>
  12426. <productMenu id="meshIntercom+"
  12427. type="3"
  12428. url="2" >
  12429. <productMenuType version="1.0.9"
  12430. type="2"
  12431. />
  12432. </productMenu>
  12433. <productMenu id="waveIntercom"
  12434. type="1" >
  12435. <productMenuType version="1.0.9"
  12436. type="0"
  12437. />
  12438. </productMenu>
  12439. <productMenu id="bluetoothIntercom"
  12440. type="1" >
  12441. </productMenu>
  12442. <productMenu id="phone"
  12443. type="1" >
  12444. </productMenu>
  12445. <productMenu id="music"
  12446. type="1" >
  12447. </productMenu>
  12448. <productMenu id="fmradio"
  12449. type="0" >
  12450. </productMenu>
  12451. <productMenu id="deviceSetting"
  12452. type="1"
  12453. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12454. <productMenuURL version="1.0.9"
  12455. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12456. />
  12457. </productMenu>
  12458. <productMenu id="quickGuide"
  12459. type="0"
  12460. url=""
  12461. size="344KB" >
  12462. </productMenu>
  12463. <productMenu id="userGuide"
  12464. type="0"
  12465. url=""
  12466. size="3.41MB" >
  12467. </productMenu>
  12468. <productMenu id="volume"
  12469. type="11" >
  12470. </productMenu>
  12471. <productMenu id="battery"
  12472. type="1" >
  12473. </productMenu>
  12474. <productID id="3223"
  12475. />
  12476. <productGroupable type="0"
  12477. />
  12478. </product>
  12479. <product id="5RLOUIS"
  12480. name="5R LOUIS EDITION"
  12481. series="5"
  12482. latestVersion="1.0"
  12483. show = "-1" >
  12484. <productMenu id="protocol"
  12485. type="3" >
  12486. </productMenu>
  12487. <productMenu id="sip"
  12488. type="1" >
  12489. </productMenu>
  12490. <productMenu id="bluetoothIntercom"
  12491. type="1" >
  12492. </productMenu>
  12493. <productMenu id="phone"
  12494. type="1" >
  12495. </productMenu>
  12496. <productMenu id="fmradio"
  12497. type="1" >
  12498. </productMenu>
  12499. <productMenu id="deviceSetting"
  12500. type="1"
  12501. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12502. </productMenu>
  12503. <productMenu id="quickGuide"
  12504. type="0"
  12505. url=""
  12506. size="934KB" >
  12507. </productMenu>
  12508. <productMenu id="userGuide"
  12509. type="0"
  12510. url=""
  12511. size="1.14MB" >
  12512. </productMenu>
  12513. <productID id="5597"
  12514. />
  12515. <productGroupable type="0"
  12516. />
  12517. </product>
  12518. <product id="5S"
  12519. name="Ridekont 5S"
  12520. series="5"
  12521. latestVersion="2.3"
  12522. show = "-1" >
  12523. <productMenu id="protocol"
  12524. type="3" >
  12525. </productMenu>
  12526. <productMenu id="sip"
  12527. type="1" >
  12528. </productMenu>
  12529. <productMenu id="bluetoothIntercom"
  12530. type="1" >
  12531. </productMenu>
  12532. <productMenu id="phone"
  12533. type="1" >
  12534. </productMenu>
  12535. <productMenu id="fmradio"
  12536. type="0" >
  12537. </productMenu>
  12538. <productMenu id="deviceSetting"
  12539. type="1"
  12540. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12541. </productMenu>
  12542. <productMenu id="quickGuide"
  12543. type="0"
  12544. url=""
  12545. size="934KB" >
  12546. </productMenu>
  12547. <productMenu id="userGuide"
  12548. type="1"
  12549. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12550. size="1.14MB" >
  12551. </productMenu>
  12552. <productID id="5589"
  12553. />
  12554. <productGroupable type="0"
  12555. />
  12556. </product>
  12557. <product id="5R"
  12558. name="Ridekont 5R"
  12559. series="5"
  12560. latestVersion="1.0"
  12561. show = "0" >
  12562. <productMenu id="protocol"
  12563. type="3" >
  12564. </productMenu>
  12565. <productMenu id="sip"
  12566. type="1" >
  12567. </productMenu>
  12568. <productMenu id="bluetoothIntercom"
  12569. type="1" >
  12570. </productMenu>
  12571. <productMenu id="phone"
  12572. type="1" >
  12573. </productMenu>
  12574. <productMenu id="fmradio"
  12575. type="1" >
  12576. </productMenu>
  12577. <productMenu id="deviceSetting"
  12578. type="1"
  12579. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12580. </productMenu>
  12581. <productMenu id="quickGuide"
  12582. type="1"
  12583. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12584. size="934KB" >
  12585. </productMenu>
  12586. <productMenu id="userGuide"
  12587. type="1"
  12588. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12589. size="1.14MB" >
  12590. </productMenu>
  12591. <productID id="5593"
  12592. />
  12593. <productGroupable type="0"
  12594. />
  12595. </product>
  12596. <product id="5R"
  12597. name="Ridekont 5R LITE"
  12598. series="5"
  12599. latestVersion="1.0"
  12600. show = "0" >
  12601. <productMenu id="protocol"
  12602. type="3" >
  12603. </productMenu>
  12604. <productMenu id="sip"
  12605. type="1" >
  12606. </productMenu>
  12607. <productMenu id="bluetoothIntercom"
  12608. type="1" >
  12609. </productMenu>
  12610. <productMenu id="phone"
  12611. type="1" >
  12612. </productMenu>
  12613. <productMenu id="fmradio"
  12614. type="1" >
  12615. </productMenu>
  12616. <productMenu id="deviceSetting"
  12617. type="1"
  12618. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12619. </productMenu>
  12620. <productMenu id="quickGuide"
  12621. type="0"
  12622. url=""
  12623. size="934KB" >
  12624. </productMenu>
  12625. <productMenu id="userGuide"
  12626. type="1"
  12627. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12628. size="1.14MB" >
  12629. </productMenu>
  12630. <productID id="5594"
  12631. />
  12632. <productGroupable type="0"
  12633. />
  12634. </product>
  12635. <product id="SA30"
  12636. name="SA30"
  12637. series="SA"
  12638. latestVersion="1.0.1"
  12639. latestVersionVoicePrompt="0.15"
  12640. show = "-1" >
  12641. <productMenu id="protocol"
  12642. type="2" >
  12643. </productMenu>
  12644. <productMenu id="ota"
  12645. type="2" >
  12646. <otaPackages>
  12647. <package
  12648. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12649. size="3144148"
  12650. />
  12651. </otaPackages>
  12652. </productMenu>
  12653. <productMenu id="meshIntercom"
  12654. type="30" >
  12655. </productMenu>
  12656. <productMenu id="meshIntercom+"
  12657. type="3"
  12658. url="2" >
  12659. </productMenu>
  12660. <productMenu id="phone"
  12661. type="1" >
  12662. </productMenu>
  12663. <productMenu id="music"
  12664. type="1" >
  12665. </productMenu>
  12666. <productMenu id="musicSharing"
  12667. type="0" >
  12668. </productMenu>
  12669. <productMenu id="deviceSetting"
  12670. type="1"
  12671. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12672. </productMenu>
  12673. <productMenu id="quickGuide"
  12674. type="0"
  12675. url=""
  12676. size="1.12MB" >
  12677. </productMenu>
  12678. <productMenu id="userGuide"
  12679. type="1"
  12680. url=""
  12681. size="2.0MB" >
  12682. </productMenu>
  12683. <productMenu id="videoGuide"
  12684. type="0"
  12685. url=""
  12686. size="3.41MB" >
  12687. </productMenu>
  12688. <productMenu id="volume"
  12689. type="12" >
  12690. </productMenu>
  12691. <productMenu id="battery"
  12692. type="1" >
  12693. </productMenu>
  12694. <productID id="6852"
  12695. />
  12696. <productGroupable type="0"
  12697. />
  12698. </product>
  12699. <product id="I30"
  12700. name="I30"
  12701. series="I"
  12702. latestVersion="1.0.1"
  12703. latestVersionVoicePrompt="0.2"
  12704. show = "-1" >
  12705. <productMenu id="protocol"
  12706. type="2" >
  12707. </productMenu>
  12708. <productMenu id="ota"
  12709. type="2" >
  12710. <otaPackages>
  12711. <package
  12712. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12713. size="3144148"
  12714. />
  12715. </otaPackages>
  12716. </productMenu>
  12717. <productMenu id="meshIntercom"
  12718. type="30" >
  12719. </productMenu>
  12720. <productMenu id="meshIntercom+"
  12721. type="3"
  12722. url="2" >
  12723. </productMenu>
  12724. <productMenu id="phone"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="music"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="musicSharing"
  12731. type="0" >
  12732. </productMenu>
  12733. <productMenu id="deviceSetting"
  12734. type="1"
  12735. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12736. </productMenu>
  12737. <productMenu id="quickGuide"
  12738. type="0"
  12739. url=""
  12740. size="1.12MB" >
  12741. </productMenu>
  12742. <productMenu id="userGuide"
  12743. type="1"
  12744. url=""
  12745. size="2.10MB" >
  12746. </productMenu>
  12747. <productMenu id="videoGuide"
  12748. type="0"
  12749. url=""
  12750. size="3.11MB" >
  12751. </productMenu>
  12752. <productMenu id="volume"
  12753. type="12" >
  12754. </productMenu>
  12755. <productMenu id="battery"
  12756. type="1" >
  12757. </productMenu>
  12758. <productID id="6853"
  12759. />
  12760. <productGroupable type="0"
  12761. />
  12762. </product>
  12763. <product id="LS2C30"
  12764. name="LS2-C30"
  12765. series="C"
  12766. latestVersion="1.0"
  12767. latestVersionVoicePrompt="0.13"
  12768. show = "-1" >
  12769. <productMenu id="protocol"
  12770. type="2" >
  12771. </productMenu>
  12772. <productMenu id="ota"
  12773. type="0" >
  12774. <otaPackages>
  12775. <package
  12776. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12777. size="3144148"
  12778. />
  12779. </otaPackages>
  12780. </productMenu>
  12781. <productMenu id="meshIntercom+"
  12782. type="3"
  12783. url="2" >
  12784. </productMenu>
  12785. <productMenu id="waveIntercom"
  12786. type="1" >
  12787. </productMenu>
  12788. <productMenu id="phone"
  12789. type="1" >
  12790. </productMenu>
  12791. <productMenu id="music"
  12792. type="1" >
  12793. </productMenu>
  12794. <productMenu id="musicSharing"
  12795. type="0" >
  12796. </productMenu>
  12797. <productMenu id="deviceSetting"
  12798. type="1"
  12799. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12800. </productMenu>
  12801. <productMenu id="quickGuide"
  12802. type="0"
  12803. url=""
  12804. size="1.17MB" >
  12805. </productMenu>
  12806. <productMenu id="userGuide"
  12807. type="1"
  12808. url=""
  12809. size="2.0MB" >
  12810. </productMenu>
  12811. <productMenu id="videoGuide"
  12812. type="0"
  12813. url=""
  12814. size="3.41MB" >
  12815. </productMenu>
  12816. <productMenu id="volume"
  12817. type="12" >
  12818. </productMenu>
  12819. <productMenu id="battery"
  12820. type="1" >
  12821. </productMenu>
  12822. <productID id="685E"
  12823. />
  12824. <productGroupable type="0"
  12825. />
  12826. </product>
  12827. <product id="C30EVO"
  12828. name="C30 EVO"
  12829. series="C"
  12830. latestVersion="1.0"
  12831. latestVersionVoicePrompt="0.13"
  12832. show = "-1" >
  12833. <productMenu id="protocol"
  12834. type="2" >
  12835. </productMenu>
  12836. <productMenu id="ota"
  12837. type="0" >
  12838. <otaPackages>
  12839. <package
  12840. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12841. size="3144148"
  12842. />
  12843. </otaPackages>
  12844. </productMenu>
  12845. <productMenu id="meshIntercom+"
  12846. type="3"
  12847. url="2" >
  12848. </productMenu>
  12849. <productMenu id="waveIntercom"
  12850. type="1" >
  12851. </productMenu>
  12852. <productMenu id="phone"
  12853. type="1" >
  12854. </productMenu>
  12855. <productMenu id="music"
  12856. type="1" >
  12857. </productMenu>
  12858. <productMenu id="musicSharing"
  12859. type="0" >
  12860. </productMenu>
  12861. <productMenu id="deviceSetting"
  12862. type="1"
  12863. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12864. </productMenu>
  12865. <productMenu id="quickGuide"
  12866. type="0"
  12867. url=""
  12868. size="1.17MB" >
  12869. </productMenu>
  12870. <productMenu id="userGuide"
  12871. type="1"
  12872. url=""
  12873. size="2.0MB" >
  12874. </productMenu>
  12875. <productMenu id="videoGuide"
  12876. type="0"
  12877. url=""
  12878. size="3.41MB" >
  12879. </productMenu>
  12880. <productMenu id="volume"
  12881. type="12" >
  12882. </productMenu>
  12883. <productMenu id="battery"
  12884. type="1" >
  12885. </productMenu>
  12886. <productID id="685B"
  12887. />
  12888. <productGroupable type="0"
  12889. />
  12890. </product>
  12891. <product id="C30"
  12892. name="SENA C30"
  12893. series="C"
  12894. latestVersion="1.2.2"
  12895. latestVersionVoicePrompt="0.13"
  12896. show = "1" >
  12897. <productMenu id="protocol"
  12898. type="2" >
  12899. </productMenu>
  12900. <productMenu id="alexa"
  12901. type="0" >
  12902. </productMenu>
  12903. <productMenu id="ota"
  12904. type="2" >
  12905. <otaPackages>
  12906. <package
  12907. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12908. size="3144148"
  12909. />
  12910. </otaPackages>
  12911. </productMenu>
  12912. <productMenu id="wa"
  12913. type="0" >
  12914. </productMenu>
  12915. <productMenu id="meshIntercom"
  12916. type="30" >
  12917. </productMenu>
  12918. <productMenu id="meshIntercom+"
  12919. type="3"
  12920. url="2" >
  12921. <productMenuType version="1.0.9"
  12922. type="2"
  12923. />
  12924. </productMenu>
  12925. <productMenu id="waveIntercom"
  12926. type="1" >
  12927. <productMenuType version="1.1.9"
  12928. type="0"
  12929. />
  12930. </productMenu>
  12931. <productMenu id="phone"
  12932. type="1" >
  12933. </productMenu>
  12934. <productMenu id="music"
  12935. type="1" >
  12936. </productMenu>
  12937. <productMenu id="musicSharing"
  12938. type="0" >
  12939. </productMenu>
  12940. <productMenu id="deviceSetting"
  12941. type="1"
  12942. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12943. <productMenuURL version="1.1.3"
  12944. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12945. />
  12946. <productMenuURL version="1.0.9"
  12947. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12948. />
  12949. </productMenu>
  12950. <productMenu id="quickGuide"
  12951. type="1"
  12952. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12953. size="1.12MB" >
  12954. </productMenu>
  12955. <productMenu id="userGuide"
  12956. type="0"
  12957. url=""
  12958. size="2.0MB" >
  12959. </productMenu>
  12960. <productMenu id="videoGuide"
  12961. type="0"
  12962. url=""
  12963. size="3.41MB" >
  12964. </productMenu>
  12965. <productMenu id="volume"
  12966. type="12" >
  12967. </productMenu>
  12968. <productMenu id="battery"
  12969. type="1" >
  12970. </productMenu>
  12971. <productID id="683A"
  12972. />
  12973. <productGroupable type="0"
  12974. />
  12975. </product>
  12976. <product id="C20"
  12977. name="C20"
  12978. series="C"
  12979. latestVersion="1.0"
  12980. show = "1" >
  12981. <productMenu id="protocol"
  12982. type="3" >
  12983. </productMenu>
  12984. <productMenu id="sip"
  12985. type="1" >
  12986. </productMenu>
  12987. <productMenu id="bluetoothIntercom"
  12988. type="1" >
  12989. </productMenu>
  12990. <productMenu id="phone"
  12991. type="1" >
  12992. </productMenu>
  12993. <productMenu id="deviceSetting"
  12994. type="1"
  12995. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12996. </productMenu>
  12997. <productMenu id="quickGuide"
  12998. type="1"
  12999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13000. size="934KB" >
  13001. </productMenu>
  13002. <productMenu id="userGuide"
  13003. type="1"
  13004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13005. size="1.14MB" >
  13006. </productMenu>
  13007. <productID id="3701"
  13008. />
  13009. <productGroupable type="0"
  13010. />
  13011. </product>
  13012. <product id="C10"
  13013. name="C10"
  13014. series="C"
  13015. latestVersion="1.4.4"
  13016. show = "1" >
  13017. <productMenu id="protocol"
  13018. type="3" >
  13019. </productMenu>
  13020. <productMenu id="sip"
  13021. type="1" >
  13022. </productMenu>
  13023. <productMenu id="bluetoothIntercom"
  13024. type="1" >
  13025. </productMenu>
  13026. <productMenu id="phone"
  13027. type="1" >
  13028. </productMenu>
  13029. <productMenu id="fmradio"
  13030. type="0" >
  13031. </productMenu>
  13032. <productMenu id="deviceSetting"
  13033. type="1"
  13034. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13035. </productMenu>
  13036. <productMenu id="userGuide"
  13037. type="1"
  13038. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13039. size="1.14MB" >
  13040. </productMenu>
  13041. <productID id="5595"
  13042. />
  13043. <productGroupable type="0"
  13044. />
  13045. </product>
  13046. <product id="CA1"
  13047. name="CA1"
  13048. series="C"
  13049. latestVersion="0.2"
  13050. show = "-1" >
  13051. <productMenu id="protocol"
  13052. type="2" >
  13053. </productMenu>
  13054. <productMenu id="ota"
  13055. type="2" >
  13056. <otaPackages>
  13057. <package
  13058. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13059. size="3144148"
  13060. />
  13061. </otaPackages>
  13062. </productMenu>
  13063. <productMenu id="phone"
  13064. type="1" >
  13065. </productMenu>
  13066. <productMenu id="music"
  13067. type="1" >
  13068. </productMenu>
  13069. <productMenu id="musicSharing"
  13070. type="0" >
  13071. </productMenu>
  13072. <productMenu id="deviceSetting"
  13073. type="1"
  13074. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13075. </productMenu>
  13076. <productMenu id="quickGuide"
  13077. type="1"
  13078. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13079. size="1.12MB" >
  13080. </productMenu>
  13081. <productMenu id="userGuide"
  13082. type="0"
  13083. url=""
  13084. size="2.0MB" >
  13085. </productMenu>
  13086. <productMenu id="videoGuide"
  13087. type="1"
  13088. url=""
  13089. size="3.41MB" >
  13090. </productMenu>
  13091. <productMenu id="volume"
  13092. type="12" >
  13093. </productMenu>
  13094. <productMenu id="battery"
  13095. type="1" >
  13096. </productMenu>
  13097. <productID id="5F01"
  13098. />
  13099. <productGroupable type="0"
  13100. />
  13101. </product>
  13102. <product id="J30"
  13103. name="J30"
  13104. series="J"
  13105. latestVersion="1.2.2"
  13106. latestVersionVoicePrompt="0.14"
  13107. show = "0" >
  13108. <productMenu id="protocol"
  13109. type="2" >
  13110. </productMenu>
  13111. <productMenu id="alexa"
  13112. type="0" >
  13113. </productMenu>
  13114. <productMenu id="ota"
  13115. type="2" >
  13116. <otaPackages>
  13117. <package
  13118. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  13119. size="3144148"
  13120. />
  13121. </otaPackages>
  13122. </productMenu>
  13123. <productMenu id="wa"
  13124. type="0" >
  13125. </productMenu>
  13126. <productMenu id="meshIntercom"
  13127. type="30" >
  13128. </productMenu>
  13129. <productMenu id="meshIntercom+"
  13130. type="3"
  13131. url="2" >
  13132. <productMenuType version="1.0.9"
  13133. type="2"
  13134. />
  13135. </productMenu>
  13136. <productMenu id="waveIntercom"
  13137. type="1" >
  13138. <productMenuType version="1.1.9"
  13139. type="0"
  13140. />
  13141. </productMenu>
  13142. <productMenu id="phone"
  13143. type="1" >
  13144. </productMenu>
  13145. <productMenu id="music"
  13146. type="1" >
  13147. </productMenu>
  13148. <productMenu id="musicSharing"
  13149. type="0" >
  13150. </productMenu>
  13151. <productMenu id="deviceSetting"
  13152. type="1"
  13153. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13154. <productMenuURL version="1.0.9"
  13155. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13156. />
  13157. </productMenu>
  13158. <productMenu id="quickGuide"
  13159. type="0"
  13160. url=""
  13161. size="1.12MB" >
  13162. </productMenu>
  13163. <productMenu id="userGuide"
  13164. type="1"
  13165. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13166. size="2.0MB" >
  13167. </productMenu>
  13168. <productMenu id="videoGuide"
  13169. type="0"
  13170. url=""
  13171. size="3.41MB" >
  13172. </productMenu>
  13173. <productMenu id="volume"
  13174. type="12" >
  13175. </productMenu>
  13176. <productMenu id="battery"
  13177. type="1" >
  13178. </productMenu>
  13179. <productID id="6848"
  13180. />
  13181. <productGroupable type="0"
  13182. />
  13183. </product>
  13184. <product id="J10"
  13185. name="J10"
  13186. series="5"
  13187. latestVersion="1.1.4"
  13188. show = "0" >
  13189. <productMenu id="protocol"
  13190. type="3" >
  13191. </productMenu>
  13192. <productMenu id="sip"
  13193. type="1" >
  13194. </productMenu>
  13195. <productMenu id="bluetoothIntercom"
  13196. type="1" >
  13197. </productMenu>
  13198. <productMenu id="phone"
  13199. type="1" >
  13200. </productMenu>
  13201. <productMenu id="fmradio"
  13202. type="0" >
  13203. </productMenu>
  13204. <productMenu id="deviceSetting"
  13205. type="1"
  13206. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13207. </productMenu>
  13208. <productMenu id="userGuide"
  13209. type="1"
  13210. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13211. size="1.14MB" >
  13212. </productMenu>
  13213. <productID id="5598"
  13214. />
  13215. <productGroupable type="0"
  13216. />
  13217. </product>
  13218. <product id="B20"
  13219. name="B20"
  13220. series="B"
  13221. latestVersion="1.1.2"
  13222. latestVersionVoicePrompt="0.14"
  13223. show = "0" >
  13224. <productMenu id="protocol"
  13225. type="2" >
  13226. </productMenu>
  13227. <productMenu id="alexa"
  13228. type="0" >
  13229. </productMenu>
  13230. <productMenu id="ota"
  13231. type="2" >
  13232. <otaPackages>
  13233. <package
  13234. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  13235. size="3144148"
  13236. />
  13237. </otaPackages>
  13238. </productMenu>
  13239. <productMenu id="wa"
  13240. type="0" >
  13241. </productMenu>
  13242. <productMenu id="meshIntercom"
  13243. type="30" >
  13244. </productMenu>
  13245. <productMenu id="phone"
  13246. type="1" >
  13247. </productMenu>
  13248. <productMenu id="music"
  13249. type="1" >
  13250. </productMenu>
  13251. <productMenu id="musicSharing"
  13252. type="0" >
  13253. </productMenu>
  13254. <productMenu id="deviceSetting"
  13255. type="1"
  13256. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13257. <productMenuURL version="1.0.9"
  13258. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13259. />
  13260. </productMenu>
  13261. <productMenu id="quickGuide"
  13262. type="0"
  13263. url=""
  13264. size="1.12MB" >
  13265. </productMenu>
  13266. <productMenu id="userGuide"
  13267. type="1"
  13268. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13269. size="2.0MB" >
  13270. </productMenu>
  13271. <productMenu id="videoGuide"
  13272. type="0"
  13273. url=""
  13274. size="3.41MB" >
  13275. </productMenu>
  13276. <productMenu id="volume"
  13277. type="12" >
  13278. </productMenu>
  13279. <productMenu id="battery"
  13280. type="1" >
  13281. </productMenu>
  13282. <productID id="6847"
  13283. />
  13284. <productGroupable type="0"
  13285. />
  13286. </product>
  13287. <product id="B10"
  13288. name="B10"
  13289. series="5"
  13290. latestVersion="1.2.4"
  13291. show = "0" >
  13292. <productMenu id="protocol"
  13293. type="3" >
  13294. </productMenu>
  13295. <productMenu id="sip"
  13296. type="1" >
  13297. </productMenu>
  13298. <productMenu id="bluetoothIntercom"
  13299. type="1" >
  13300. </productMenu>
  13301. <productMenu id="phone"
  13302. type="1" >
  13303. </productMenu>
  13304. <productMenu id="fmradio"
  13305. type="0" >
  13306. </productMenu>
  13307. <productMenu id="deviceSetting"
  13308. type="1"
  13309. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13310. </productMenu>
  13311. <productMenu id="userGuide"
  13312. type="1"
  13313. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13314. size="1.14MB" >
  13315. </productMenu>
  13316. <productID id="5596"
  13317. />
  13318. <productGroupable type="0"
  13319. />
  13320. </product>
  13321. <product id="E30"
  13322. name="E30"
  13323. series="E"
  13324. latestVersion="1.1.2"
  13325. latestVersionVoicePrompt="0.14"
  13326. show = "0" >
  13327. <productMenu id="protocol"
  13328. type="2" >
  13329. </productMenu>
  13330. <productMenu id="alexa"
  13331. type="0" >
  13332. </productMenu>
  13333. <productMenu id="ota"
  13334. type="2" >
  13335. <otaPackages>
  13336. <package
  13337. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  13338. size="3144148"
  13339. />
  13340. </otaPackages>
  13341. </productMenu>
  13342. <productMenu id="wa"
  13343. type="0" >
  13344. </productMenu>
  13345. <productMenu id="meshIntercom"
  13346. type="30" >
  13347. </productMenu>
  13348. <productMenu id="meshIntercom+"
  13349. type="3"
  13350. url="2" >
  13351. </productMenu>
  13352. <productMenu id="waveIntercom"
  13353. type="1" >
  13354. <productMenuType version="1.0.9"
  13355. type="0"
  13356. />
  13357. </productMenu>
  13358. <productMenu id="phone"
  13359. type="1" >
  13360. </productMenu>
  13361. <productMenu id="music"
  13362. type="1" >
  13363. </productMenu>
  13364. <productMenu id="musicSharing"
  13365. type="0" >
  13366. </productMenu>
  13367. <productMenu id="deviceSetting"
  13368. type="1"
  13369. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13370. </productMenu>
  13371. <productMenu id="quickGuide"
  13372. type="0"
  13373. url=""
  13374. size="1.12MB" >
  13375. </productMenu>
  13376. <productMenu id="userGuide"
  13377. type="1"
  13378. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13379. size="2.0MB" >
  13380. </productMenu>
  13381. <productMenu id="videoGuide"
  13382. type="0"
  13383. url=""
  13384. size="3.41MB" >
  13385. </productMenu>
  13386. <productMenu id="volume"
  13387. type="12" >
  13388. </productMenu>
  13389. <productMenu id="battery"
  13390. type="1" >
  13391. </productMenu>
  13392. <productID id="6846"
  13393. />
  13394. <productGroupable type="0"
  13395. />
  13396. </product>
  13397. <product id="ACSRAM"
  13398. name="ACS-RAM"
  13399. series="ACS"
  13400. latestVersion="1.0.5"
  13401. show = "1" >
  13402. <productMenu id="protocol"
  13403. type="3" >
  13404. </productMenu>
  13405. <productMenu id="sip"
  13406. type="1" >
  13407. </productMenu>
  13408. <productMenu id="bluetoothIntercom"
  13409. type="1" >
  13410. </productMenu>
  13411. <productMenu id="deviceSetting"
  13412. type="1"
  13413. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13414. </productMenu>
  13415. <productMenu id="quickGuide"
  13416. type="1"
  13417. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13418. size="344KB" >
  13419. </productMenu>
  13420. <productMenu id="userGuide"
  13421. type="1"
  13422. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13423. size="1.14MB" >
  13424. </productMenu>
  13425. <productMenu id="connectGuide"
  13426. type="1"
  13427. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13428. size="1.12MB" >
  13429. </productMenu>
  13430. <productID id="3400"
  13431. />
  13432. <productGroupable type="0"
  13433. />
  13434. </product>
  13435. <product id="ACS10"
  13436. name="ACS10"
  13437. series="ACS"
  13438. latestVersion="1.0.2"
  13439. show = "1" >
  13440. <productMenu id="protocol"
  13441. type="0">
  13442. </productMenu>
  13443. <productMenu id="sip"
  13444. type="1" >
  13445. </productMenu>
  13446. <productMenu id="bluetoothIntercom"
  13447. type="1" >
  13448. </productMenu>
  13449. <productMenu id="phone"
  13450. type="2" >
  13451. </productMenu>
  13452. <productMenu id="deviceSetting"
  13453. type="1"
  13454. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13455. </productMenu>
  13456. <productMenu id="quickGuide"
  13457. type="1"
  13458. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13459. size="970KB" >
  13460. </productMenu>
  13461. <productMenu id="userGuide"
  13462. type="1"
  13463. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13464. size="1.26MB" >
  13465. </productMenu>
  13466. <productMenu id="connectGuide"
  13467. type="1"
  13468. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13469. size="1.12MB" >
  13470. </productMenu>
  13471. <productID id="3300"
  13472. />
  13473. <productGroupable type="0"
  13474. />
  13475. </product>
  13476. <product id="DWO7ProMesh"
  13477. name="DWO 7 Pro Mesh"
  13478. series="50"
  13479. latestVersion="1.1"
  13480. latestVersionVoicePrompt="0.9"
  13481. show = "0" >
  13482. <productMenu id="protocol"
  13483. type="2" >
  13484. </productMenu>
  13485. <productMenu id="alexa"
  13486. type="0" >
  13487. </productMenu>
  13488. <productMenu id="ota"
  13489. type="2" >
  13490. <otaPackages>
  13491. <package
  13492. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13493. size="2945812"
  13494. />
  13495. </otaPackages>
  13496. </productMenu>
  13497. <productMenu id="wa"
  13498. type="0" >
  13499. </productMenu>
  13500. <productMenu id="meshIntercom"
  13501. type="20" >
  13502. </productMenu>
  13503. <productMenu id="meshIntercom+"
  13504. type="3"
  13505. url="2" >
  13506. <productMenuType version="1.0.9"
  13507. type="2"
  13508. />
  13509. <productMenuURL version="2.1.1"
  13510. url="0"
  13511. />
  13512. </productMenu>
  13513. <productMenu id="waveIntercom"
  13514. type="1" >
  13515. <productMenuType version="1.0.9"
  13516. type="0"
  13517. />
  13518. </productMenu>
  13519. <productMenu id="phone"
  13520. type="1" >
  13521. </productMenu>
  13522. <productMenu id="music"
  13523. type="1" >
  13524. </productMenu>
  13525. <productMenu id="fmradio"
  13526. type="1" >
  13527. </productMenu>
  13528. <productMenu id="musicSharing"
  13529. type="0" >
  13530. </productMenu>
  13531. <productMenu id="deviceSetting"
  13532. type="1"
  13533. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13534. <productMenuURL version="1.0.9"
  13535. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13536. />
  13537. </productMenu>
  13538. <productMenu id="quickGuide"
  13539. type="1"
  13540. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13541. size="1.12MB" >
  13542. </productMenu>
  13543. <productMenu id="userGuide"
  13544. type="1"
  13545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13546. size="2.0MB" >
  13547. </productMenu>
  13548. <productMenu id="volume"
  13549. type="12" >
  13550. </productMenu>
  13551. <productMenu id="battery"
  13552. type="1" >
  13553. </productMenu>
  13554. <productID id="6806"
  13555. />
  13556. <productGroupable type="0"
  13557. />
  13558. </product>
  13559. <product id="ERA1X"
  13560. name="ERA 1 X"
  13561. series="UCOM"
  13562. latestVersion="0.2.1"
  13563. latestVersionMesh="0.19"
  13564. latestVersionVoicePrompt="1.2"
  13565. show = "-1" >
  13566. <productMenu id="protocol"
  13567. type="2" >
  13568. </productMenu>
  13569. <productMenu id="ota"
  13570. type="2" >
  13571. <otaLanguages>
  13572. <otaLanguage
  13573. id="0"
  13574. name="English"
  13575. package="0"
  13576. />
  13577. <otaLanguage
  13578. id="0"
  13579. name="French"
  13580. package="1"
  13581. />
  13582. <otaLanguage
  13583. id="0"
  13584. name="Spanish"
  13585. package="2"
  13586. />
  13587. <otaLanguage
  13588. id="0"
  13589. name="Italian"
  13590. package="3"
  13591. />
  13592. <otaLanguage
  13593. id="0"
  13594. name="German"
  13595. package="4"
  13596. />
  13597. <otaLanguage
  13598. id="0"
  13599. name="Dutch"
  13600. package="5"
  13601. />
  13602. <otaLanguage
  13603. id="0"
  13604. name="Russian"
  13605. package="6"
  13606. />
  13607. <otaLanguage
  13608. id="0"
  13609. name="Chinese"
  13610. package="7"
  13611. />
  13612. <otaLanguage
  13613. id="0"
  13614. name="Korean"
  13615. package="8"
  13616. />
  13617. <otaLanguage
  13618. id="0"
  13619. name="Japanese"
  13620. package="9"
  13621. />
  13622. <otaLanguage
  13623. id="0"
  13624. name="Finnish"
  13625. package="10"
  13626. />
  13627. <otaLanguage
  13628. id="0"
  13629. name="Polish"
  13630. package="11"
  13631. />
  13632. <otaLanguage
  13633. id="0"
  13634. name="Czech"
  13635. package="12"
  13636. />
  13637. <otaLanguage
  13638. id="0"
  13639. name="Danish"
  13640. package="13"
  13641. />
  13642. <otaLanguage
  13643. id="0"
  13644. name="Norwegian"
  13645. package="14"
  13646. />
  13647. <otaLanguage
  13648. id="0"
  13649. name="Swedish"
  13650. package="15"
  13651. />
  13652. <otaLanguage
  13653. id="0"
  13654. name="Turkish"
  13655. package="16"
  13656. />
  13657. <otaLanguage
  13658. id="0"
  13659. name="Hungarian"
  13660. package="17"
  13661. />
  13662. <otaLanguage
  13663. id="0"
  13664. name="Portuguese"
  13665. package="18"
  13666. />
  13667. <otaLanguage
  13668. id="0"
  13669. name="Hebrew"
  13670. package="19"
  13671. />
  13672. <otaLanguage
  13673. id="0"
  13674. name="Greek"
  13675. package="20"
  13676. />
  13677. </otaLanguages>
  13678. <otaPackages>
  13679. <package
  13680. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13681. size="5183988"
  13682. />
  13683. <package
  13684. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13685. size="5183988"
  13686. />
  13687. <package
  13688. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13689. size="5183988"
  13690. />
  13691. <package
  13692. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13693. size="5183988"
  13694. />
  13695. <package
  13696. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13697. size="5183988"
  13698. />
  13699. <package
  13700. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13701. size="5183988"
  13702. />
  13703. <package
  13704. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13705. size="5183988"
  13706. />
  13707. <package
  13708. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13709. size="5183988"
  13710. />
  13711. <package
  13712. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13713. size="5183988"
  13714. />
  13715. <package
  13716. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13717. size="5183988"
  13718. />
  13719. <package
  13720. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13721. size="5183988"
  13722. />
  13723. <package
  13724. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13725. size="5183988"
  13726. />
  13727. <package
  13728. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13729. size="5183988"
  13730. />
  13731. <package
  13732. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13733. size="5183988"
  13734. />
  13735. <package
  13736. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13737. size="5183988"
  13738. />
  13739. <package
  13740. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13741. size="5183988"
  13742. />
  13743. <package
  13744. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13745. size="5183988"
  13746. />
  13747. <package
  13748. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13749. size="5183988"
  13750. />
  13751. <package
  13752. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13753. size="5183988"
  13754. />
  13755. <package
  13756. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13757. size="5183988"
  13758. />
  13759. <package
  13760. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13761. size="5183988"
  13762. />
  13763. </otaPackages>
  13764. </productMenu>
  13765. <productMenu id="wa"
  13766. type="0" >
  13767. </productMenu>
  13768. <productMenu id="sip"
  13769. type="1" >
  13770. </productMenu>
  13771. <productMenu id="led"
  13772. type="0" >
  13773. </productMenu>
  13774. <productMenu id="illusion"
  13775. type="1" >
  13776. </productMenu>
  13777. <productMenu id="meshIntercom"
  13778. type="30" >
  13779. </productMenu>
  13780. <productMenu id="meshIntercom+"
  13781. type="3"
  13782. url="2" >
  13783. </productMenu>
  13784. <productMenu id="waveIntercom"
  13785. type="0" >
  13786. </productMenu>
  13787. <productMenu id="bluetoothIntercom"
  13788. type="1" >
  13789. </productMenu>
  13790. <productMenu id="bluetoothIntercomGrouping"
  13791. type="0" >
  13792. </productMenu>
  13793. <productMenu id="fmradio"
  13794. type="1"
  13795. url="1" >
  13796. </productMenu>
  13797. <productMenu id="phone"
  13798. type="1" >
  13799. </productMenu>
  13800. <productMenu id="music"
  13801. type="1" >
  13802. </productMenu>
  13803. <productMenu id="musicSharing"
  13804. type="0" >
  13805. </productMenu>
  13806. <productMenu id="deviceSetting"
  13807. type="1"
  13808. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13809. </productMenu>
  13810. <productMenu id="quickGuide"
  13811. type="0"
  13812. url=""
  13813. size="1.12MB" >
  13814. </productMenu>
  13815. <productMenu id="userGuide"
  13816. type="1"
  13817. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13818. size="2.0MB" >
  13819. </productMenu>
  13820. <productMenu id="videoGuide"
  13821. type="0"
  13822. url=""
  13823. size="3.41MB" >
  13824. </productMenu>
  13825. <productMenu id="volume"
  13826. type="16" >
  13827. </productMenu>
  13828. <productMenu id="soundMode"
  13829. type="1" >
  13830. </productMenu>
  13831. <productMenu id="battery"
  13832. type="1" >
  13833. </productMenu>
  13834. <productID id="6A83"
  13835. />
  13836. <productGroupable type="0"
  13837. />
  13838. </product>
  13839. <product id="MeshStation"
  13840. name="Mesh Station"
  13841. series="50"
  13842. latestVersion="0.9"
  13843. show = "-1" >
  13844. <productMenu id="protocol"
  13845. type="2" >
  13846. </productMenu>
  13847. <productMenu id="meshIntercom"
  13848. type="20"
  13849. url="99" >
  13850. </productMenu>
  13851. <productID id="3161"
  13852. />
  13853. <productGroupable type="0"
  13854. />
  13855. </product>
  13856. </products>
  13857. </sna>