snm.xml 512 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260188" 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="APEX"
  85. name="APEX Series"
  86. show="1"
  87. />
  88. <series id="VORTEX"
  89. name="VORTEX Series"
  90. show="1"
  91. />
  92. <series id="20"
  93. name="20 Series"
  94. show="1"
  95. />
  96. <series id="SRL"
  97. name="SRL Series"
  98. show="1"
  99. />
  100. <series id="ACS"
  101. name="ACS Series"
  102. show="1"
  103. />
  104. <series id="10"
  105. name="10 Series"
  106. show="1"
  107. />
  108. <series id="5"
  109. name="5 Series"
  110. show="1"
  111. />
  112. <series id="3"
  113. name="3 Series"
  114. show="1"
  115. />
  116. <series id="R"
  117. name="R Series"
  118. show="1"
  119. />
  120. <series id="C"
  121. name="C Series"
  122. show="1"
  123. />
  124. <series id="Other"
  125. name="Other"
  126. show="1"
  127. />
  128. <!--
  129. <series id="smh"
  130. name="SMH"
  131. />
  132. <series id="cavalry"
  133. name="CAVALRY"
  134. show="0"
  135. />
  136. -->
  137. </serieses>
  138. <products>
  139. <product id="60SPRO"
  140. name="60S PRO"
  141. series="60"
  142. latestVersion="0.1"
  143. latestVersionMesh="0.19"
  144. latestVersionVoicePrompt="1.2"
  145. show = "-1" >
  146. <productMenu id="protocol"
  147. type="2" >
  148. </productMenu>
  149. <productMenu id="ota"
  150. type="0" >
  151. <otaLanguages>
  152. <otaLanguage
  153. id="0"
  154. name="English"
  155. package="0"
  156. />
  157. <otaLanguage
  158. id="0"
  159. name="French"
  160. package="1"
  161. />
  162. <otaLanguage
  163. id="0"
  164. name="Spanish"
  165. package="2"
  166. />
  167. <otaLanguage
  168. id="0"
  169. name="Italian"
  170. package="3"
  171. />
  172. <otaLanguage
  173. id="0"
  174. name="German"
  175. package="4"
  176. />
  177. <otaLanguage
  178. id="0"
  179. name="Dutch"
  180. package="5"
  181. />
  182. <otaLanguage
  183. id="0"
  184. name="Russian"
  185. package="6"
  186. />
  187. <otaLanguage
  188. id="0"
  189. name="Chinese"
  190. package="7"
  191. />
  192. <otaLanguage
  193. id="0"
  194. name="Korean"
  195. package="8"
  196. />
  197. <otaLanguage
  198. id="0"
  199. name="Japanese"
  200. package="9"
  201. />
  202. <otaLanguage
  203. id="0"
  204. name="Finnish"
  205. package="10"
  206. />
  207. <otaLanguage
  208. id="0"
  209. name="Polish"
  210. package="11"
  211. />
  212. </otaLanguages>
  213. <otaPackages>
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  256. size="5183988"
  257. />
  258. <package
  259. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  260. size="5183988"
  261. />
  262. </otaPackages>
  263. </productMenu>
  264. <productMenu id="sip"
  265. type="1" >
  266. </productMenu>
  267. <productMenu id="illusion"
  268. type="1" >
  269. </productMenu>
  270. <productMenu id="meshIntercom"
  271. type="30" >
  272. </productMenu>
  273. <productMenu id="meshIntercom+"
  274. type="3"
  275. url="2" >
  276. </productMenu>
  277. <productMenu id="waveIntercom"
  278. type="1" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercom"
  281. type="1"
  282. url="2" >
  283. </productMenu>
  284. <productMenu id="bluetoothIntercomGrouping"
  285. type="0" >
  286. </productMenu>
  287. <productMenu id="fmradio"
  288. type="1"
  289. url="1" >
  290. </productMenu>
  291. <productMenu id="phone"
  292. type="1" >
  293. </productMenu>
  294. <productMenu id="music"
  295. type="1" >
  296. </productMenu>
  297. <productMenu id="musicSharing"
  298. type="0" >
  299. </productMenu>
  300. <productMenu id="deviceSetting"
  301. type="1"
  302. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  303. </productMenu>
  304. <productMenu id="quickGuide"
  305. type="0"
  306. url=""
  307. size="1.12MB" >
  308. </productMenu>
  309. <productMenu id="userGuide"
  310. type="1"
  311. url=""
  312. size="2.0MB" >
  313. </productMenu>
  314. <productMenu id="videoGuide"
  315. type="0"
  316. url=""
  317. size="3.41MB" >
  318. </productMenu>
  319. <productMenu id="connectGuide"
  320. type="0"
  321. url=""
  322. size="1.12MB" >
  323. </productMenu>
  324. <productMenu id="volume"
  325. type="16" >
  326. </productMenu>
  327. <productMenu id="soundMode"
  328. type="1" >
  329. </productMenu>
  330. <productMenu id="battery"
  331. type="1" >
  332. </productMenu>
  333. <productID id="6A1A"
  334. />
  335. <productGroupable type="0"
  336. />
  337. </product>
  338. <product id="60SEVO"
  339. name="60S EVO"
  340. series="60"
  341. latestVersion="1.0.3"
  342. latestVersionMesh="0.19"
  343. latestVersionVoicePrompt="1.8"
  344. show = "1" >
  345. <productMenu id="protocol"
  346. type="2" >
  347. </productMenu>
  348. <productMenu id="warranty"
  349. type="1" >
  350. </productMenu>
  351. <productMenu id="serialNumber"
  352. type="1" >
  353. </productMenu>
  354. <productMenu id="ota"
  355. type="2" >
  356. <otaLanguages>
  357. <otaLanguage
  358. id="0"
  359. name="English"
  360. package="0"
  361. />
  362. <otaLanguage
  363. id="0"
  364. name="French"
  365. package="1"
  366. />
  367. <otaLanguage
  368. id="0"
  369. name="Spanish"
  370. package="2"
  371. />
  372. <otaLanguage
  373. id="0"
  374. name="Italian"
  375. package="3"
  376. />
  377. <otaLanguage
  378. id="0"
  379. name="German"
  380. package="4"
  381. />
  382. <otaLanguage
  383. id="0"
  384. name="Dutch"
  385. package="5"
  386. />
  387. <otaLanguage
  388. id="0"
  389. name="Russian"
  390. package="6"
  391. />
  392. <otaLanguage
  393. id="0"
  394. name="Chinese"
  395. package="7"
  396. />
  397. <otaLanguage
  398. id="0"
  399. name="Korean"
  400. package="8"
  401. />
  402. <otaLanguage
  403. id="0"
  404. name="Japanese"
  405. package="9"
  406. />
  407. <otaLanguage
  408. id="0"
  409. name="Finnish"
  410. package="10"
  411. />
  412. <otaLanguage
  413. id="0"
  414. name="Polish"
  415. package="11"
  416. />
  417. </otaLanguages>
  418. <otaPackages>
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  461. size="5183988"
  462. />
  463. <package
  464. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  465. size="5183988"
  466. />
  467. </otaPackages>
  468. </productMenu>
  469. <productMenu id="sip"
  470. type="1" >
  471. </productMenu>
  472. <productMenu id="illusion"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="meshIntercom"
  476. type="30" >
  477. </productMenu>
  478. <productMenu id="meshIntercom+"
  479. type="3"
  480. url="2" >
  481. </productMenu>
  482. <productMenu id="waveIntercom"
  483. type="1" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercom"
  486. type="1"
  487. url="2" >
  488. </productMenu>
  489. <productMenu id="bluetoothIntercomGrouping"
  490. type="0" >
  491. </productMenu>
  492. <productMenu id="fmradio"
  493. type="1"
  494. url="1" >
  495. </productMenu>
  496. <productMenu id="phone"
  497. type="1" >
  498. </productMenu>
  499. <productMenu id="music"
  500. type="1" >
  501. </productMenu>
  502. <productMenu id="musicSharing"
  503. type="0" >
  504. </productMenu>
  505. <productMenu id="deviceSetting"
  506. type="1"
  507. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  508. <productMenuURL version="1.0.2"
  509. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  510. />
  511. </productMenu>
  512. <productMenu id="quickGuide"
  513. type="0"
  514. url=""
  515. size="1.12MB" >
  516. </productMenu>
  517. <productMenu id="userGuide"
  518. type="1"
  519. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  520. size="2.0MB" >
  521. </productMenu>
  522. <productMenu id="videoGuide"
  523. type="0"
  524. url=""
  525. size="3.41MB" >
  526. </productMenu>
  527. <productMenu id="connectGuide"
  528. type="1"
  529. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  530. size="1.12MB" >
  531. </productMenu>
  532. <productMenu id="volume"
  533. type="16" >
  534. </productMenu>
  535. <productMenu id="volume+"
  536. type="2"
  537. url="0x6004" >
  538. </productMenu>
  539. <productMenu id="soundMode"
  540. type="1" >
  541. </productMenu>
  542. <productMenu id="appearance"
  543. type="1"
  544. url="1|white,silver,black,glossy_black" >
  545. </productMenu>
  546. <productMenu id="battery"
  547. type="1" >
  548. </productMenu>
  549. <productID id="6A15"
  550. />
  551. <productGroupable type="0"
  552. />
  553. </product>
  554. <product id="60S"
  555. name="60S"
  556. series="60"
  557. latestVersion="1.2.11"
  558. latestVersionMesh="1.2"
  559. latestVersionVoicePrompt="1.8"
  560. show = "1" >
  561. <productMenu id="protocol"
  562. type="2" >
  563. </productMenu>
  564. <productMenu id="ota"
  565. type="2" >
  566. <otaLanguages>
  567. <otaLanguage
  568. id="0"
  569. name="English"
  570. package="0"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="French"
  575. package="1"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Spanish"
  580. package="2"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Italian"
  585. package="3"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="German"
  590. package="4"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Dutch"
  595. package="5"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Russian"
  600. package="6"
  601. />
  602. <otaLanguage
  603. id="0"
  604. name="Chinese"
  605. package="7"
  606. />
  607. <otaLanguage
  608. id="0"
  609. name="Korean"
  610. package="8"
  611. />
  612. <otaLanguage
  613. id="0"
  614. name="Japanese"
  615. package="9"
  616. />
  617. <otaLanguage
  618. id="0"
  619. name="Finnish"
  620. package="10"
  621. />
  622. <otaLanguage
  623. id="0"
  624. name="Polish"
  625. package="11"
  626. />
  627. </otaLanguages>
  628. <otaPackages>
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  671. size="5183988"
  672. />
  673. <package
  674. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  675. size="5183988"
  676. />
  677. </otaPackages>
  678. </productMenu>
  679. <productMenu id="sip"
  680. type="1" >
  681. </productMenu>
  682. <productMenu id="illusion"
  683. type="1" >
  684. </productMenu>
  685. <productMenu id="meshIntercom"
  686. type="30" >
  687. </productMenu>
  688. <productMenu id="meshIntercom+"
  689. type="3"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="waveIntercom"
  693. type="1" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercom"
  696. type="1"
  697. url="2" >
  698. </productMenu>
  699. <productMenu id="bluetoothIntercomGrouping"
  700. type="0" >
  701. </productMenu>
  702. <productMenu id="fmradio"
  703. type="1"
  704. url="1" >
  705. </productMenu>
  706. <productMenu id="phone"
  707. type="1" >
  708. </productMenu>
  709. <productMenu id="music"
  710. type="1" >
  711. </productMenu>
  712. <productMenu id="musicSharing"
  713. type="0" >
  714. </productMenu>
  715. <productMenu id="deviceSetting"
  716. type="1"
  717. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  718. <productMenuURL version="1.2.10"
  719. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  720. />
  721. <productMenuURL version="1.2.6"
  722. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  723. />
  724. <productMenuURL version="1.2.3"
  725. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  726. />
  727. </productMenu>
  728. <productMenu id="quickGuide"
  729. type="0"
  730. url=""
  731. size="1.12MB" >
  732. </productMenu>
  733. <productMenu id="userGuide"
  734. type="1"
  735. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  736. size="2.0MB" >
  737. </productMenu>
  738. <productMenu id="videoGuide"
  739. type="0"
  740. url=""
  741. size="3.41MB" >
  742. </productMenu>
  743. <productMenu id="connectGuide"
  744. type="1"
  745. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  746. size="1.12MB" >
  747. </productMenu>
  748. <productMenu id="volume"
  749. type="16" >
  750. </productMenu>
  751. <productMenu id="volume+"
  752. type="2"
  753. url="0x6004" >
  754. <productMenuURL version="1.2.3"
  755. url="0x6004"
  756. />
  757. </productMenu>
  758. <productMenu id="soundMode"
  759. type="0" >
  760. </productMenu>
  761. <productMenu id="appearance"
  762. type="1"
  763. url="2|white,silver,chrome,black" >
  764. </productMenu>
  765. <productMenu id="battery"
  766. type="1" >
  767. </productMenu>
  768. <productID id="6A0D"
  769. />
  770. <productGroupable type="0"
  771. />
  772. </product>
  773. <product id="60S"
  774. name="60S"
  775. series="60"
  776. latestVersion="1.2.11"
  777. latestVersionMesh="1.2"
  778. latestVersionVoicePrompt="1.8"
  779. show = "-1" >
  780. <productMenu id="protocol"
  781. type="2" >
  782. </productMenu>
  783. <productMenu id="ota"
  784. type="2" >
  785. <otaLanguages>
  786. <otaLanguage
  787. id="0"
  788. name="English"
  789. package="0"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="French"
  794. package="1"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="Spanish"
  799. package="2"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Italian"
  804. package="3"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="German"
  809. package="4"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Dutch"
  814. package="5"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Russian"
  819. package="6"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="Chinese"
  824. package="7"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="Korean"
  829. package="8"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="Japanese"
  834. package="9"
  835. />
  836. <otaLanguage
  837. id="0"
  838. name="Finnish"
  839. package="10"
  840. />
  841. <otaLanguage
  842. id="0"
  843. name="Polish"
  844. package="11"
  845. />
  846. </otaLanguages>
  847. <otaPackages>
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  890. size="5183988"
  891. />
  892. <package
  893. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  894. size="5183988"
  895. />
  896. </otaPackages>
  897. </productMenu>
  898. <productMenu id="wa"
  899. type="0" >
  900. </productMenu>
  901. <productMenu id="sip"
  902. type="1" >
  903. </productMenu>
  904. <productMenu id="led"
  905. type="0" >
  906. </productMenu>
  907. <productMenu id="illusion"
  908. type="1" >
  909. </productMenu>
  910. <productMenu id="meshIntercom"
  911. type="30" >
  912. </productMenu>
  913. <productMenu id="meshIntercom+"
  914. type="3"
  915. url="2" >
  916. <productMenuURL version="1.0.2"
  917. url="10"
  918. />
  919. </productMenu>
  920. <productMenu id="waveIntercom"
  921. type="1" >
  922. <productMenuType version="1.0.9"
  923. type="0"
  924. />
  925. </productMenu>
  926. <productMenu id="bluetoothIntercom"
  927. type="1"
  928. url="2" >
  929. </productMenu>
  930. <productMenu id="bluetoothIntercomGrouping"
  931. type="0" >
  932. </productMenu>
  933. <productMenu id="fmradio"
  934. type="1"
  935. url="1" >
  936. </productMenu>
  937. <productMenu id="phone"
  938. type="1" >
  939. </productMenu>
  940. <productMenu id="music"
  941. type="1" >
  942. </productMenu>
  943. <productMenu id="musicSharing"
  944. type="0" >
  945. </productMenu>
  946. <productMenu id="deviceSetting"
  947. type="1"
  948. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  949. <productMenuURL version="1.2.10"
  950. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  951. />
  952. <productMenuURL version="1.2.6"
  953. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  954. />
  955. <productMenuURL version="1.2.3"
  956. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  957. />
  958. <productMenuURL version="1.0.2"
  959. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  960. />
  961. <productMenuURL version="1.0"
  962. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  963. />
  964. <productMenuURL version="0.9.11"
  965. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  966. />
  967. </productMenu>
  968. <productMenu id="quickGuide"
  969. type="0"
  970. url=""
  971. size="1.12MB" >
  972. </productMenu>
  973. <productMenu id="userGuide"
  974. type="1"
  975. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  976. size="2.0MB" >
  977. </productMenu>
  978. <productMenu id="videoGuide"
  979. type="0"
  980. url=""
  981. size="3.41MB" >
  982. </productMenu>
  983. <productMenu id="connectGuide"
  984. type="1"
  985. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  986. size="1.12MB" >
  987. </productMenu>
  988. <productMenu id="volume"
  989. type="16" >
  990. <productMenuType version="0.9.11"
  991. type="13"
  992. />
  993. </productMenu>
  994. <productMenu id="volume+"
  995. type="2"
  996. url="0x6004" >
  997. <productMenuURL version="1.2.3"
  998. url="0x6004"
  999. />
  1000. </productMenu>
  1001. <productMenu id="soundMode"
  1002. type="0" >
  1003. <productMenuType version="0.9.11"
  1004. type="0"
  1005. />
  1006. </productMenu>
  1007. <productMenu id="appearance"
  1008. type="1"
  1009. url="2|white,silver,chrome,black" >
  1010. </productMenu>
  1011. <productMenu id="battery"
  1012. type="1" >
  1013. </productMenu>
  1014. <productID id="6A02"
  1015. />
  1016. <productGroupable type="0"
  1017. />
  1018. </product>
  1019. <product id="60X"
  1020. name="60X"
  1021. series="60"
  1022. latestVersion="1.0.1"
  1023. latestVersionMesh="0.19"
  1024. latestVersionVoicePrompt="1.8"
  1025. show = "1" >
  1026. <productMenu id="protocol"
  1027. type="2" >
  1028. </productMenu>
  1029. <productMenu id="warranty"
  1030. type="1" >
  1031. </productMenu>
  1032. <productMenu id="serialNumber"
  1033. type="1" >
  1034. </productMenu>
  1035. <productMenu id="ota"
  1036. type="2" >
  1037. <otaLanguages>
  1038. <otaLanguage
  1039. id="0"
  1040. name="English"
  1041. package="0"
  1042. />
  1043. <otaLanguage
  1044. id="0"
  1045. name="French"
  1046. package="1"
  1047. />
  1048. <otaLanguage
  1049. id="0"
  1050. name="Spanish"
  1051. package="2"
  1052. />
  1053. <otaLanguage
  1054. id="0"
  1055. name="Italian"
  1056. package="3"
  1057. />
  1058. <otaLanguage
  1059. id="0"
  1060. name="German"
  1061. package="4"
  1062. />
  1063. <otaLanguage
  1064. id="0"
  1065. name="Dutch"
  1066. package="5"
  1067. />
  1068. <otaLanguage
  1069. id="0"
  1070. name="Russian"
  1071. package="6"
  1072. />
  1073. <otaLanguage
  1074. id="0"
  1075. name="Chinese"
  1076. package="7"
  1077. />
  1078. <otaLanguage
  1079. id="0"
  1080. name="Korean"
  1081. package="8"
  1082. />
  1083. <otaLanguage
  1084. id="0"
  1085. name="Japanese"
  1086. package="9"
  1087. />
  1088. <otaLanguage
  1089. id="0"
  1090. name="Finnish"
  1091. package="10"
  1092. />
  1093. <otaLanguage
  1094. id="0"
  1095. name="Polish"
  1096. package="11"
  1097. />
  1098. </otaLanguages>
  1099. <otaPackages>
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1142. size="5183988"
  1143. />
  1144. <package
  1145. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1146. size="5183988"
  1147. />
  1148. </otaPackages>
  1149. </productMenu>
  1150. <productMenu id="wa"
  1151. type="0" >
  1152. </productMenu>
  1153. <productMenu id="sip"
  1154. type="1" >
  1155. </productMenu>
  1156. <productMenu id="led"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="illusion"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="meshIntercom"
  1163. type="30" >
  1164. </productMenu>
  1165. <productMenu id="meshIntercom+"
  1166. type="3"
  1167. url="2" >
  1168. </productMenu>
  1169. <productMenu id="waveIntercom"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="bluetoothIntercom"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="fmradio"
  1176. type="1"
  1177. url="1" >
  1178. </productMenu>
  1179. <productMenu id="mic"
  1180. type="0" >
  1181. </productMenu>
  1182. <productMenu id="phone"
  1183. type="1" >
  1184. </productMenu>
  1185. <productMenu id="music"
  1186. type="1" >
  1187. </productMenu>
  1188. <productMenu id="musicSharing"
  1189. type="0" >
  1190. </productMenu>
  1191. <productMenu id="deviceSetting"
  1192. type="1"
  1193. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1194. <productMenuURL version="1.0"
  1195. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1196. />
  1197. </productMenu>
  1198. <productMenu id="quickGuide"
  1199. type="0"
  1200. url=""
  1201. size="1.12MB" >
  1202. </productMenu>
  1203. <productMenu id="userGuide"
  1204. type="1"
  1205. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1206. size="2.0MB" >
  1207. </productMenu>
  1208. <productMenu id="videoGuide"
  1209. type="0"
  1210. url=""
  1211. size="3.41MB" >
  1212. </productMenu>
  1213. <productMenu id="connectGuide"
  1214. type="1"
  1215. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1216. size="1.12MB" >
  1217. </productMenu>
  1218. <productMenu id="keySettings"
  1219. type="1"
  1220. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1221. </productMenu>
  1222. <productMenu id="volume"
  1223. type="13" >
  1224. </productMenu>
  1225. <productMenu id="volume+"
  1226. type="2"
  1227. url="0x6004" >
  1228. </productMenu>
  1229. <productMenu id="appearance"
  1230. type="1"
  1231. url="1|white,silver,black,glossy_black" >
  1232. </productMenu>
  1233. <productMenu id="battery"
  1234. type="1" >
  1235. </productMenu>
  1236. <productID id="6A03"
  1237. />
  1238. <productGroupable type="0"
  1239. />
  1240. </product>
  1241. <product id="R35"
  1242. name="R35"
  1243. series="R"
  1244. latestVersion="1.1.2"
  1245. latestVersionVoicePrompt="1.5"
  1246. show = "1" >
  1247. <productMenu id="protocol"
  1248. type="2" >
  1249. </productMenu>
  1250. <productMenu id="ota"
  1251. type="2" >
  1252. <otaLanguages>
  1253. <otaLanguage
  1254. id="0"
  1255. name="English"
  1256. package="0"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="Chinese"
  1261. package="1"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="Chinese Singapore"
  1266. package="2"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="Filipino"
  1271. package="3"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="Hebrew"
  1276. package="4"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="Hindi"
  1281. package="5"
  1282. />
  1283. <otaLanguage
  1284. id="0"
  1285. name="Indonesian"
  1286. package="6"
  1287. />
  1288. <otaLanguage
  1289. id="0"
  1290. name="Japanese"
  1291. package="7"
  1292. />
  1293. <otaLanguage
  1294. id="0"
  1295. name="Korean"
  1296. package="8"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="Malay"
  1301. package="9"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Modern Standard Arabic"
  1306. package="10"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Taiwanese"
  1311. package="11"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="Tamil"
  1316. package="12"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Thai"
  1321. package="13"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="东北话"
  1326. package="14"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="广东话"
  1331. package="15"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="江浙沪"
  1336. package="16"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="四川话"
  1341. package="17"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="陕西话"
  1346. package="18"
  1347. />
  1348. </otaLanguages>
  1349. <otaPackages>
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1392. size="5183988"
  1393. />
  1394. <package
  1395. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1396. size="5183988"
  1397. />
  1398. <package
  1399. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1400. size="5183988"
  1401. />
  1402. <package
  1403. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1404. size="5183988"
  1405. />
  1406. <package
  1407. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1408. size="5183988"
  1409. />
  1410. <package
  1411. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1412. size="5183988"
  1413. />
  1414. <package
  1415. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1416. size="5183988"
  1417. />
  1418. <package
  1419. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1420. size="5183988"
  1421. />
  1422. <package
  1423. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1424. size="5183988"
  1425. />
  1426. </otaPackages>
  1427. </productMenu>
  1428. <productMenu id="sip"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="illusion"
  1432. type="1" >
  1433. </productMenu>
  1434. <productMenu id="meshIntercom"
  1435. type="30" >
  1436. </productMenu>
  1437. <productMenu id="meshIntercom+"
  1438. type="3"
  1439. url="2" >
  1440. </productMenu>
  1441. <productMenu id="waveIntercom"
  1442. type="1" >
  1443. </productMenu>
  1444. <productMenu id="phone"
  1445. type="1" >
  1446. </productMenu>
  1447. <productMenu id="music"
  1448. type="1" >
  1449. </productMenu>
  1450. <productMenu id="musicSharing"
  1451. type="0" >
  1452. </productMenu>
  1453. <productMenu id="deviceSetting"
  1454. type="1"
  1455. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1456. <productMenuURL version="1.1.1"
  1457. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1458. />
  1459. <productMenuURL version="1.0.3"
  1460. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1461. />
  1462. </productMenu>
  1463. <productMenu id="quickGuide"
  1464. type="0"
  1465. url=""
  1466. size="1.12MB" >
  1467. </productMenu>
  1468. <productMenu id="userGuide"
  1469. type="1"
  1470. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1471. size="2.0MB" >
  1472. </productMenu>
  1473. <productMenu id="videoGuide"
  1474. type="0"
  1475. url=""
  1476. size="3.41MB" >
  1477. </productMenu>
  1478. <productMenu id="connectGuide"
  1479. type="1"
  1480. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1481. size="1.12MB" >
  1482. </productMenu>
  1483. <productMenu id="volume"
  1484. type="16" >
  1485. </productMenu>
  1486. <productMenu id="volume+"
  1487. type="2"
  1488. url="0x6004" >
  1489. </productMenu>
  1490. <productMenu id="soundMode"
  1491. type="0" >
  1492. </productMenu>
  1493. <productMenu id="appearance"
  1494. type="1"
  1495. url="1|white,silver,chrome,black" >
  1496. </productMenu>
  1497. <productMenu id="battery"
  1498. type="1" >
  1499. </productMenu>
  1500. <productID id="6A06"
  1501. />
  1502. <productGroupable type="0"
  1503. />
  1504. </product>
  1505. <product id="COM60X"
  1506. name="BMW MOTORRAD COM 60X"
  1507. series="60"
  1508. latestVersion="1.0"
  1509. latestVersionMesh="0.19"
  1510. latestVersionVoicePrompt="1.7"
  1511. show = "-1" >
  1512. <productMenu id="protocol"
  1513. type="2" >
  1514. </productMenu>
  1515. <productMenu id="ota"
  1516. type="0" >
  1517. <otaLanguages>
  1518. <otaLanguage
  1519. id="0"
  1520. name="English"
  1521. package="0"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="French"
  1526. package="1"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Spanish"
  1531. package="2"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Italian"
  1536. package="3"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="German"
  1541. package="4"
  1542. />
  1543. <otaLanguage
  1544. id="0"
  1545. name="Dutch"
  1546. package="5"
  1547. />
  1548. <otaLanguage
  1549. id="0"
  1550. name="Russian"
  1551. package="6"
  1552. />
  1553. <otaLanguage
  1554. id="0"
  1555. name="Chinese"
  1556. package="7"
  1557. />
  1558. <otaLanguage
  1559. id="0"
  1560. name="Korean"
  1561. package="8"
  1562. />
  1563. <otaLanguage
  1564. id="0"
  1565. name="Japanese"
  1566. package="9"
  1567. />
  1568. <otaLanguage
  1569. id="0"
  1570. name="Finnish"
  1571. package="10"
  1572. />
  1573. <otaLanguage
  1574. id="0"
  1575. name="Polish"
  1576. package="11"
  1577. />
  1578. </otaLanguages>
  1579. <otaPackages>
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fr-FR.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-es-ES.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-it-IT.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-de-DE.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-nl-NL.img"
  1602. size="5183988"
  1603. />
  1604. <package
  1605. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ru-RU.img"
  1606. size="5183988"
  1607. />
  1608. <package
  1609. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-cmn-CN.img"
  1610. size="5183988"
  1611. />
  1612. <package
  1613. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ko-KR.img"
  1614. size="5183988"
  1615. />
  1616. <package
  1617. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ja-JP.img"
  1618. size="5183988"
  1619. />
  1620. <package
  1621. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fi-FI.img"
  1622. size="5183988"
  1623. />
  1624. <package
  1625. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-pl-PL.img"
  1626. size="5183988"
  1627. />
  1628. </otaPackages>
  1629. </productMenu>
  1630. <productMenu id="wa"
  1631. type="0" >
  1632. </productMenu>
  1633. <productMenu id="sip"
  1634. type="1" >
  1635. </productMenu>
  1636. <productMenu id="led"
  1637. type="1" >
  1638. </productMenu>
  1639. <productMenu id="illusion"
  1640. type="1" >
  1641. </productMenu>
  1642. <productMenu id="meshIntercom"
  1643. type="30" >
  1644. </productMenu>
  1645. <productMenu id="meshIntercom+"
  1646. type="3"
  1647. url="2" >
  1648. </productMenu>
  1649. <productMenu id="bluetoothIntercom"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="fmradio"
  1653. type="1"
  1654. url="1" >
  1655. </productMenu>
  1656. <productMenu id="mic"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="phone"
  1660. type="1" >
  1661. </productMenu>
  1662. <productMenu id="music"
  1663. type="1" >
  1664. </productMenu>
  1665. <productMenu id="musicSharing"
  1666. type="0" >
  1667. </productMenu>
  1668. <productMenu id="deviceSetting"
  1669. type="1"
  1670. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1671. </productMenu>
  1672. <productMenu id="quickGuide"
  1673. type="0"
  1674. url=""
  1675. size="1.12MB" >
  1676. </productMenu>
  1677. <productMenu id="userGuide"
  1678. type="1"
  1679. url=""
  1680. size="2.0MB" >
  1681. </productMenu>
  1682. <productMenu id="videoGuide"
  1683. type="0"
  1684. url=""
  1685. size="3.41MB" >
  1686. </productMenu>
  1687. <productMenu id="keySettings"
  1688. type="1"
  1689. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1690. </productMenu>
  1691. <productMenu id="volume"
  1692. type="13" >
  1693. </productMenu>
  1694. <productMenu id="volume+"
  1695. type="2"
  1696. url="0x6004" >
  1697. </productMenu>
  1698. <productMenu id="battery"
  1699. type="1" >
  1700. </productMenu>
  1701. <productID id="6A1B"
  1702. />
  1703. <productGroupable type="0"
  1704. />
  1705. </product>
  1706. <product id="COMP1"
  1707. name="BMW COM P1"
  1708. series="60"
  1709. latestVersion="1.2"
  1710. latestVersionMesh="0.19"
  1711. latestVersionVoicePrompt="1.0"
  1712. show = "-1" >
  1713. <productMenu id="protocol"
  1714. type="2" >
  1715. </productMenu>
  1716. <productMenu id="ota"
  1717. type="2" >
  1718. <otaLanguages>
  1719. <otaLanguage
  1720. id="0"
  1721. name="English"
  1722. package="0"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="French"
  1727. package="1"
  1728. />
  1729. <otaLanguage
  1730. id="0"
  1731. name="Spanish"
  1732. package="2"
  1733. />
  1734. <otaLanguage
  1735. id="0"
  1736. name="Italian"
  1737. package="3"
  1738. />
  1739. <otaLanguage
  1740. id="0"
  1741. name="German"
  1742. package="4"
  1743. />
  1744. <otaLanguage
  1745. id="0"
  1746. name="Dutch"
  1747. package="5"
  1748. />
  1749. <otaLanguage
  1750. id="0"
  1751. name="Russian"
  1752. package="6"
  1753. />
  1754. <otaLanguage
  1755. id="0"
  1756. name="Chinese"
  1757. package="7"
  1758. />
  1759. <otaLanguage
  1760. id="0"
  1761. name="Korean"
  1762. package="8"
  1763. />
  1764. <otaLanguage
  1765. id="0"
  1766. name="Japanese"
  1767. package="9"
  1768. />
  1769. <otaLanguage
  1770. id="0"
  1771. name="Finnish"
  1772. package="10"
  1773. />
  1774. </otaLanguages>
  1775. <otaPackages>
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1794. size="5183988"
  1795. />
  1796. <package
  1797. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1798. size="5183988"
  1799. />
  1800. <package
  1801. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1802. size="5183988"
  1803. />
  1804. <package
  1805. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1806. size="5183988"
  1807. />
  1808. <package
  1809. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1810. size="5183988"
  1811. />
  1812. <package
  1813. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1814. size="5183988"
  1815. />
  1816. <package
  1817. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1818. size="5183988"
  1819. />
  1820. </otaPackages>
  1821. </productMenu>
  1822. <productMenu id="wa"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="sip"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="led"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="illusion"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="meshIntercom"
  1835. type="30" >
  1836. </productMenu>
  1837. <productMenu id="bluetoothIntercom"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="bluetoothIntercomGrouping"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="fmradio"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="phone"
  1847. type="1" >
  1848. </productMenu>
  1849. <productMenu id="music"
  1850. type="1" >
  1851. </productMenu>
  1852. <productMenu id="musicSharing"
  1853. type="0" >
  1854. </productMenu>
  1855. <productMenu id="deviceSetting"
  1856. type="1"
  1857. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1858. </productMenu>
  1859. <productMenu id="quickGuide"
  1860. type="0"
  1861. url=""
  1862. size="1.12MB" >
  1863. </productMenu>
  1864. <productMenu id="userGuide"
  1865. type="0"
  1866. url=""
  1867. size="2.0MB" >
  1868. </productMenu>
  1869. <productMenu id="videoGuide"
  1870. type="0"
  1871. url=""
  1872. size="3.41MB" >
  1873. </productMenu>
  1874. <productMenu id="volume"
  1875. type="16" >
  1876. </productMenu>
  1877. <productMenu id="battery"
  1878. type="1" >
  1879. </productMenu>
  1880. <productID id="6A80"
  1881. />
  1882. <productGroupable type="0"
  1883. />
  1884. </product>
  1885. <product id="50S"
  1886. name="50S"
  1887. series="50"
  1888. latestVersion="2.7.2"
  1889. show = "1" >
  1890. <productMenu id="protocol"
  1891. type="2" >
  1892. </productMenu>
  1893. <productMenu id="alexa"
  1894. type="0" >
  1895. </productMenu>
  1896. <productMenu id="ota"
  1897. type="0"
  1898. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1899. size="1150234" >
  1900. </productMenu>
  1901. <productMenu id="wa"
  1902. type="1" >
  1903. </productMenu>
  1904. <productMenu id="sip"
  1905. type="1" >
  1906. </productMenu>
  1907. <productMenu id="meshIntercom"
  1908. type="30" >
  1909. <productMenuType version="2.1.1"
  1910. type="20"
  1911. />
  1912. </productMenu>
  1913. <productMenu id="meshIntercom+"
  1914. type="3"
  1915. url="2" >
  1916. <productMenuType version="2.5.9"
  1917. type="2"
  1918. />
  1919. <productMenuURL version="2.1.1"
  1920. url="0"
  1921. />
  1922. </productMenu>
  1923. <productMenu id="waveIntercom"
  1924. type="1" >
  1925. <productMenuType version="2.6"
  1926. type="0"
  1927. />
  1928. </productMenu>
  1929. <productMenu id="bluetoothIntercom"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="phone"
  1933. type="1" >
  1934. </productMenu>
  1935. <productMenu id="music"
  1936. type="1" >
  1937. </productMenu>
  1938. <productMenu id="fmradio"
  1939. type="1" >
  1940. </productMenu>
  1941. <productMenu id="deviceSetting"
  1942. type="1"
  1943. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1944. <productMenuURL version="2.5.9"
  1945. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1946. />
  1947. <productMenuURL version="2.1.1"
  1948. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1949. />
  1950. <productMenuURL version="2.0.3"
  1951. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1952. />
  1953. </productMenu>
  1954. <productMenu id="quickGuide"
  1955. type="0"
  1956. url=""
  1957. size="934KB" >
  1958. </productMenu>
  1959. <productMenu id="userGuide"
  1960. type="1"
  1961. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1962. size="1.14MB" >
  1963. </productMenu>
  1964. <productMenu id="videoGuide"
  1965. type="1"
  1966. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1967. size="3.41MB" >
  1968. </productMenu>
  1969. <productMenu id="connectGuide"
  1970. type="1"
  1971. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1972. size="1.12MB" >
  1973. </productMenu>
  1974. <productMenu id="volume"
  1975. type="11" >
  1976. </productMenu>
  1977. <productMenu id="battery"
  1978. type="1" >
  1979. </productMenu>
  1980. <productID id="3210"
  1981. />
  1982. <productGroupable type="0"
  1983. />
  1984. </product>
  1985. <product id="50S"
  1986. name="50S"
  1987. series="50"
  1988. latestVersion="1.5.1"
  1989. show = "-1" >
  1990. <productMenu id="protocol"
  1991. type="2" >
  1992. </productMenu>
  1993. <productMenu id="alexa"
  1994. type="0" >
  1995. </productMenu>
  1996. <productMenu id="wa"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="sip"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="meshIntercom"
  2003. type="30" >
  2004. <productMenuType version="1.2.2"
  2005. type="20"
  2006. />
  2007. </productMenu>
  2008. <productMenu id="meshIntercom+"
  2009. type="3"
  2010. url="2" >
  2011. <productMenuType version="1.4.9"
  2012. type="2"
  2013. />
  2014. <productMenuURL version="1.2.2"
  2015. url="0"
  2016. />
  2017. </productMenu>
  2018. <productMenu id="waveIntercom"
  2019. type="1" >
  2020. <productMenuType version="1.3.9"
  2021. type="0"
  2022. />
  2023. </productMenu>
  2024. <productMenu id="bluetoothIntercom"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="phone"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="music"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="fmradio"
  2034. type="1" >
  2035. </productMenu>
  2036. <productMenu id="deviceSetting"
  2037. type="1"
  2038. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2039. <productMenuURL version="1.4.9"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2041. />
  2042. <productMenuURL version="1.3.9"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2044. />
  2045. <productMenuURL version="1.2.2"
  2046. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2047. />
  2048. <productMenuURL version="1.1.1"
  2049. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2050. />
  2051. </productMenu>
  2052. <productMenu id="quickGuide"
  2053. type="0"
  2054. url=""
  2055. size="934KB" >
  2056. </productMenu>
  2057. <productMenu id="userGuide"
  2058. type="1"
  2059. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2060. size="1.14MB" >
  2061. </productMenu>
  2062. <productMenu id="videoGuide"
  2063. type="1"
  2064. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2065. size="3.41MB" >
  2066. </productMenu>
  2067. <productMenu id="volume"
  2068. type="11" >
  2069. </productMenu>
  2070. <productMenu id="battery"
  2071. type="1" >
  2072. </productMenu>
  2073. <productID id="3132"
  2074. />
  2075. <productGroupable type="0"
  2076. />
  2077. </product>
  2078. <product id="50R"
  2079. name="50R"
  2080. series="50"
  2081. latestVersion="2.7.1"
  2082. show = "1" >
  2083. <productMenu id="protocol"
  2084. type="2" >
  2085. </productMenu>
  2086. <productMenu id="alexa"
  2087. type="0" >
  2088. </productMenu>
  2089. <productMenu id="ota"
  2090. type="0"
  2091. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2092. size="1150234" >
  2093. </productMenu>
  2094. <productMenu id="wa"
  2095. type="1" >
  2096. </productMenu>
  2097. <productMenu id="sip"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="meshIntercom"
  2101. type="30" >
  2102. <productMenuType version="2.1.1"
  2103. type="20"
  2104. />
  2105. </productMenu>
  2106. <productMenu id="meshIntercom+"
  2107. type="3"
  2108. url="2" >
  2109. <productMenuType version="2.5.9"
  2110. type="2"
  2111. />
  2112. <productMenuURL version="2.1.1"
  2113. url="0"
  2114. />
  2115. </productMenu>
  2116. <productMenu id="waveIntercom"
  2117. type="1" >
  2118. <productMenuType version="2.6"
  2119. type="0"
  2120. />
  2121. </productMenu>
  2122. <productMenu id="bluetoothIntercom"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="phone"
  2126. type="1" >
  2127. </productMenu>
  2128. <productMenu id="music"
  2129. type="1" >
  2130. </productMenu>
  2131. <productMenu id="fmradio"
  2132. type="1" >
  2133. </productMenu>
  2134. <productMenu id="deviceSetting"
  2135. type="1"
  2136. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2137. <productMenuURL version="2.5.9"
  2138. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2139. />
  2140. <productMenuURL version="2.1.1"
  2141. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2142. />
  2143. <productMenuURL version="2.0"
  2144. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2145. />
  2146. </productMenu>
  2147. <productMenu id="quickGuide"
  2148. type="0"
  2149. url=""
  2150. size="344KB" >
  2151. </productMenu>
  2152. <productMenu id="userGuide"
  2153. type="1"
  2154. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2155. size="3.41MB" >
  2156. </productMenu>
  2157. <productMenu id="videoGuide"
  2158. type="1"
  2159. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2160. size="3.41MB" >
  2161. </productMenu>
  2162. <productMenu id="connectGuide"
  2163. type="1"
  2164. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2165. size="1.12MB" >
  2166. </productMenu>
  2167. <productMenu id="volume"
  2168. type="11" >
  2169. </productMenu>
  2170. <productMenu id="battery"
  2171. type="1" >
  2172. </productMenu>
  2173. <productID id="3218"
  2174. />
  2175. <productGroupable type="0"
  2176. />
  2177. </product>
  2178. <product id="50R"
  2179. name="50R"
  2180. series="50"
  2181. latestVersion="1.5.1"
  2182. show = "-1" >
  2183. <productMenu id="protocol"
  2184. type="2" >
  2185. </productMenu>
  2186. <productMenu id="alexa"
  2187. type="0" >
  2188. </productMenu>
  2189. <productMenu id="wa"
  2190. type="1" >
  2191. </productMenu>
  2192. <productMenu id="sip"
  2193. type="1" >
  2194. </productMenu>
  2195. <productMenu id="meshIntercom"
  2196. type="30" >
  2197. <productMenuType version="1.2.2"
  2198. type="20"
  2199. />
  2200. </productMenu>
  2201. <productMenu id="meshIntercom+"
  2202. type="3"
  2203. url="2" >
  2204. <productMenuType version="1.4.9"
  2205. type="2"
  2206. />
  2207. <productMenuURL version="1.2.2"
  2208. url="0"
  2209. />
  2210. </productMenu>
  2211. <productMenu id="waveIntercom"
  2212. type="1" >
  2213. <productMenuType version="1.3.9"
  2214. type="0"
  2215. />
  2216. </productMenu>
  2217. <productMenu id="bluetoothIntercom"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="phone"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="music"
  2224. type="1" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="1" >
  2228. </productMenu>
  2229. <productMenu id="deviceSetting"
  2230. type="1"
  2231. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2232. <productMenuURL version="1.4.9"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2234. />
  2235. <productMenuURL version="1.3.9"
  2236. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2237. />
  2238. <productMenuURL version="1.2.2"
  2239. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2240. />
  2241. <productMenuURL version="1.1.1"
  2242. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2243. />
  2244. </productMenu>
  2245. <productMenu id="quickGuide"
  2246. type="0"
  2247. url=""
  2248. size="344KB" >
  2249. </productMenu>
  2250. <productMenu id="userGuide"
  2251. type="1"
  2252. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2253. size="3.41MB" >
  2254. </productMenu>
  2255. <productMenu id="videoGuide"
  2256. type="1"
  2257. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2258. size="3.41MB" >
  2259. </productMenu>
  2260. <productMenu id="volume"
  2261. type="11" >
  2262. </productMenu>
  2263. <productMenu id="battery"
  2264. type="1" >
  2265. </productMenu>
  2266. <productID id="3134"
  2267. />
  2268. <productGroupable type="0"
  2269. />
  2270. </product>
  2271. <product id="50C"
  2272. name="50C"
  2273. series="50"
  2274. latestVersion="1.4.3"
  2275. show = "1" >
  2276. <productMenu id="protocol"
  2277. type="2" >
  2278. </productMenu>
  2279. <productMenu id="ota"
  2280. type="0" >
  2281. </productMenu>
  2282. <productMenu id="wa"
  2283. type="1" >
  2284. </productMenu>
  2285. <productMenu id="sip"
  2286. type="1" >
  2287. </productMenu>
  2288. <productMenu id="meshIntercom"
  2289. type="30" >
  2290. <productMenuType version="1.1.1"
  2291. type="20"
  2292. />
  2293. </productMenu>
  2294. <productMenu id="meshIntercom+"
  2295. type="3"
  2296. url="2" >
  2297. <productMenuType version="1.3.9"
  2298. type="2"
  2299. />
  2300. <productMenuURL version="1.1.1"
  2301. url="0"
  2302. />
  2303. </productMenu>
  2304. <productMenu id="waveIntercom"
  2305. type="1" >
  2306. <productMenuType version="1.2.9"
  2307. type="0"
  2308. />
  2309. </productMenu>
  2310. <productMenu id="bluetoothIntercom"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="phone"
  2314. type="1" >
  2315. </productMenu>
  2316. <productMenu id="music"
  2317. type="1" >
  2318. </productMenu>
  2319. <productMenu id="fmradio"
  2320. type="1" >
  2321. </productMenu>
  2322. <productMenu id="deviceSetting"
  2323. type="1"
  2324. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2325. <productMenuURL version="1.3.9"
  2326. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2327. />
  2328. <productMenuURL version="1.1.1"
  2329. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2330. />
  2331. <productMenuURL version="1.0.1"
  2332. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2333. />
  2334. </productMenu>
  2335. <productMenu id="quickGuide"
  2336. type="0"
  2337. url=""
  2338. size="344KB" >
  2339. </productMenu>
  2340. <productMenu id="userGuide"
  2341. type="1"
  2342. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2343. size="3.41MB" >
  2344. </productMenu>
  2345. <productMenu id="connectGuide"
  2346. type="1"
  2347. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2348. size="1.12MB" >
  2349. </productMenu>
  2350. <productMenu id="volume"
  2351. type="11" >
  2352. </productMenu>
  2353. <productMenu id="battery"
  2354. type="1" >
  2355. </productMenu>
  2356. <productID id="3232"
  2357. />
  2358. <productGroupable type="0"
  2359. />
  2360. </product>
  2361. <product id="PHANTOMXB"
  2362. name="PHANTOM XB"
  2363. series="Helmet"
  2364. latestVersion="1.2.9"
  2365. latestVersionVoicePrompt="1.6"
  2366. show = "-1" >
  2367. <productMenu id="protocol"
  2368. type="2" >
  2369. </productMenu>
  2370. <productMenu id="ota"
  2371. type="2" >
  2372. <otaLanguages>
  2373. <otaLanguage
  2374. id="0"
  2375. name="English"
  2376. package="0"
  2377. />
  2378. <otaLanguage
  2379. id="0"
  2380. name="French"
  2381. package="1"
  2382. />
  2383. <otaLanguage
  2384. id="0"
  2385. name="Spanish"
  2386. package="2"
  2387. />
  2388. <otaLanguage
  2389. id="0"
  2390. name="Italian"
  2391. package="3"
  2392. />
  2393. <otaLanguage
  2394. id="0"
  2395. name="German"
  2396. package="4"
  2397. />
  2398. <otaLanguage
  2399. id="0"
  2400. name="Dutch"
  2401. package="5"
  2402. />
  2403. <otaLanguage
  2404. id="0"
  2405. name="Russian"
  2406. package="6"
  2407. />
  2408. <otaLanguage
  2409. id="0"
  2410. name="Chinese"
  2411. package="7"
  2412. />
  2413. <otaLanguage
  2414. id="0"
  2415. name="Korean"
  2416. package="8"
  2417. />
  2418. <otaLanguage
  2419. id="0"
  2420. name="Japanese"
  2421. package="9"
  2422. />
  2423. <otaLanguage
  2424. id="0"
  2425. name="Finnish"
  2426. package="10"
  2427. />
  2428. <otaLanguage
  2429. id="0"
  2430. name="Polish"
  2431. package="11"
  2432. />
  2433. </otaLanguages>
  2434. <otaPackages>
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2457. size="5183988"
  2458. />
  2459. <package
  2460. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2461. size="5183988"
  2462. />
  2463. <package
  2464. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2465. size="5183988"
  2466. />
  2467. <package
  2468. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2469. size="5183988"
  2470. />
  2471. <package
  2472. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2473. size="5183988"
  2474. />
  2475. <package
  2476. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2477. size="5183988"
  2478. />
  2479. <package
  2480. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2481. size="5183988"
  2482. />
  2483. </otaPackages>
  2484. </productMenu>
  2485. <productMenu id="wa"
  2486. type="0" >
  2487. </productMenu>
  2488. <productMenu id="led"
  2489. type="5" >
  2490. </productMenu>
  2491. <productMenu id="led+"
  2492. type="2"
  2493. url="1" >
  2494. </productMenu>
  2495. <productMenu id="meshIntercom"
  2496. type="30" >
  2497. </productMenu>
  2498. <productMenu id="meshIntercom+"
  2499. type="3"
  2500. url="2" >
  2501. </productMenu>
  2502. <productMenu id="waveIntercom"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="fmradio"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="phone"
  2509. type="1" >
  2510. </productMenu>
  2511. <productMenu id="music"
  2512. type="1" >
  2513. </productMenu>
  2514. <productMenu id="musicSharing"
  2515. type="0" >
  2516. </productMenu>
  2517. <productMenu id="deviceSetting"
  2518. type="1"
  2519. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2520. <productMenuURL version="1.2.10"
  2521. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2522. />
  2523. <productMenuURL version="1.2.4"
  2524. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2525. />
  2526. </productMenu>
  2527. <productMenu id="quickGuide"
  2528. type="0"
  2529. url=""
  2530. size="1.12MB" >
  2531. </productMenu>
  2532. <productMenu id="userGuide"
  2533. type="1"
  2534. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2535. size="2.0MB" >
  2536. </productMenu>
  2537. <productMenu id="videoGuide"
  2538. type="0"
  2539. url=""
  2540. size="3.41MB" >
  2541. </productMenu>
  2542. <productMenu id="volume"
  2543. type="16" >
  2544. </productMenu>
  2545. <productMenu id="volume+"
  2546. type="2"
  2547. url="0x6004" >
  2548. </productMenu>
  2549. <productMenu id="battery"
  2550. type="1" >
  2551. </productMenu>
  2552. <productID id="6A0F"
  2553. />
  2554. <productGroupable type="0"
  2555. />
  2556. </product>
  2557. <product id="PHANTOMXB"
  2558. name="PHANTOM XB"
  2559. series="Helmet"
  2560. latestVersion="1.2.9"
  2561. latestVersionVoicePrompt="1.6"
  2562. show = "-1" >
  2563. <productMenu id="protocol"
  2564. type="2" >
  2565. </productMenu>
  2566. <productMenu id="ota"
  2567. type="2" >
  2568. <otaLanguages>
  2569. <otaLanguage
  2570. id="0"
  2571. name="English"
  2572. package="0"
  2573. />
  2574. <otaLanguage
  2575. id="0"
  2576. name="French"
  2577. package="1"
  2578. />
  2579. <otaLanguage
  2580. id="0"
  2581. name="Spanish"
  2582. package="2"
  2583. />
  2584. <otaLanguage
  2585. id="0"
  2586. name="Italian"
  2587. package="3"
  2588. />
  2589. <otaLanguage
  2590. id="0"
  2591. name="German"
  2592. package="4"
  2593. />
  2594. <otaLanguage
  2595. id="0"
  2596. name="Dutch"
  2597. package="5"
  2598. />
  2599. <otaLanguage
  2600. id="0"
  2601. name="Russian"
  2602. package="6"
  2603. />
  2604. <otaLanguage
  2605. id="0"
  2606. name="Chinese"
  2607. package="7"
  2608. />
  2609. <otaLanguage
  2610. id="0"
  2611. name="Korean"
  2612. package="8"
  2613. />
  2614. <otaLanguage
  2615. id="0"
  2616. name="Japanese"
  2617. package="9"
  2618. />
  2619. <otaLanguage
  2620. id="0"
  2621. name="Finnish"
  2622. package="10"
  2623. />
  2624. <otaLanguage
  2625. id="0"
  2626. name="Polish"
  2627. package="11"
  2628. />
  2629. </otaLanguages>
  2630. <otaPackages>
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2665. size="5183988"
  2666. />
  2667. <package
  2668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2669. size="5183988"
  2670. />
  2671. <package
  2672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2673. size="5183988"
  2674. />
  2675. <package
  2676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2677. size="5183988"
  2678. />
  2679. </otaPackages>
  2680. </productMenu>
  2681. <productMenu id="wa"
  2682. type="0" >
  2683. </productMenu>
  2684. <productMenu id="led"
  2685. type="5" >
  2686. </productMenu>
  2687. <productMenu id="led+"
  2688. type="2"
  2689. url="1" >
  2690. </productMenu>
  2691. <productMenu id="meshIntercom"
  2692. type="30" >
  2693. </productMenu>
  2694. <productMenu id="meshIntercom+"
  2695. type="3"
  2696. url="2" >
  2697. </productMenu>
  2698. <productMenu id="waveIntercom"
  2699. type="1" >
  2700. </productMenu>
  2701. <productMenu id="fmradio"
  2702. type="0" >
  2703. </productMenu>
  2704. <productMenu id="phone"
  2705. type="1" >
  2706. </productMenu>
  2707. <productMenu id="music"
  2708. type="1" >
  2709. </productMenu>
  2710. <productMenu id="musicSharing"
  2711. type="0" >
  2712. </productMenu>
  2713. <productMenu id="deviceSetting"
  2714. type="1"
  2715. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2716. <productMenuURL version="1.2.10"
  2717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2718. />
  2719. <productMenuURL version="1.2.4"
  2720. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2721. />
  2722. <productMenuURL version="1.2.1"
  2723. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2724. />
  2725. </productMenu>
  2726. <productMenu id="quickGuide"
  2727. type="0"
  2728. url=""
  2729. size="1.12MB" >
  2730. </productMenu>
  2731. <productMenu id="userGuide"
  2732. type="1"
  2733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2734. size="2.0MB" >
  2735. </productMenu>
  2736. <productMenu id="videoGuide"
  2737. type="0"
  2738. url=""
  2739. size="3.41MB" >
  2740. </productMenu>
  2741. <productMenu id="volume"
  2742. type="16" >
  2743. </productMenu>
  2744. <productMenu id="volume+"
  2745. type="2"
  2746. url="0x6004" >
  2747. </productMenu>
  2748. <productMenu id="battery"
  2749. type="1" >
  2750. </productMenu>
  2751. <productID id="6A0C"
  2752. />
  2753. <productGroupable type="0"
  2754. />
  2755. </product>
  2756. <product id="PHANTOMKV"
  2757. name="PHANTOM KV"
  2758. series="Helmet"
  2759. latestVersion="1.2.10"
  2760. latestVersionVoicePrompt="1.7"
  2761. show = "1" >
  2762. <productMenu id="protocol"
  2763. type="2" >
  2764. </productMenu>
  2765. <productMenu id="ota"
  2766. type="2" >
  2767. <otaLanguages>
  2768. <otaLanguage
  2769. id="0"
  2770. name="English"
  2771. package="0"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="French"
  2776. package="1"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Spanish"
  2781. package="2"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Italian"
  2786. package="3"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="German"
  2791. package="4"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Dutch"
  2796. package="5"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Russian"
  2801. package="6"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Chinese"
  2806. package="7"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Korean"
  2811. package="8"
  2812. />
  2813. <otaLanguage
  2814. id="0"
  2815. name="Japanese"
  2816. package="9"
  2817. />
  2818. <otaLanguage
  2819. id="0"
  2820. name="Finnish"
  2821. package="10"
  2822. />
  2823. <otaLanguage
  2824. id="0"
  2825. name="Polish"
  2826. package="11"
  2827. />
  2828. </otaLanguages>
  2829. <otaPackages>
  2830. <package
  2831. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2832. size="5183988"
  2833. />
  2834. <package
  2835. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2836. size="5183988"
  2837. />
  2838. <package
  2839. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2840. size="5183988"
  2841. />
  2842. <package
  2843. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2844. size="5183988"
  2845. />
  2846. <package
  2847. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2848. size="5183988"
  2849. />
  2850. <package
  2851. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2852. size="5183988"
  2853. />
  2854. <package
  2855. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2856. size="5183988"
  2857. />
  2858. <package
  2859. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2860. size="5183988"
  2861. />
  2862. <package
  2863. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2864. size="5183988"
  2865. />
  2866. <package
  2867. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2868. size="5183988"
  2869. />
  2870. <package
  2871. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2872. size="5183988"
  2873. />
  2874. <package
  2875. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2876. size="5183988"
  2877. />
  2878. </otaPackages>
  2879. </productMenu>
  2880. <productMenu id="wa"
  2881. type="0" >
  2882. </productMenu>
  2883. <productMenu id="led"
  2884. type="5" >
  2885. </productMenu>
  2886. <productMenu id="led+"
  2887. type="2"
  2888. url="1" >
  2889. </productMenu>
  2890. <productMenu id="meshIntercom"
  2891. type="30" >
  2892. </productMenu>
  2893. <productMenu id="meshIntercom+"
  2894. type="3"
  2895. url="2" >
  2896. </productMenu>
  2897. <productMenu id="waveIntercom"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="fmradio"
  2901. type="0" >
  2902. </productMenu>
  2903. <productMenu id="phone"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="music"
  2907. type="1" >
  2908. </productMenu>
  2909. <productMenu id="musicSharing"
  2910. type="0" >
  2911. </productMenu>
  2912. <productMenu id="deviceSetting"
  2913. type="1"
  2914. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2915. <productMenuURL version="1.2.10"
  2916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2917. />
  2918. <productMenuURL version="1.2.4"
  2919. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2920. />
  2921. </productMenu>
  2922. <productMenu id="quickGuide"
  2923. type="0"
  2924. url=""
  2925. size="1.12MB" >
  2926. </productMenu>
  2927. <productMenu id="userGuide"
  2928. type="1"
  2929. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2930. size="2.0MB" >
  2931. </productMenu>
  2932. <productMenu id="videoGuide"
  2933. type="0"
  2934. url=""
  2935. size="3.41MB" >
  2936. </productMenu>
  2937. <productMenu id="connectGuide"
  2938. type="1"
  2939. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2940. size="1.1MB" >
  2941. </productMenu>
  2942. <productMenu id="volume"
  2943. type="16" >
  2944. </productMenu>
  2945. <productMenu id="volume+"
  2946. type="2"
  2947. url="0x6004" >
  2948. </productMenu>
  2949. <productMenu id="soundMode"
  2950. type="1" >
  2951. </productMenu>
  2952. <productMenu id="battery"
  2953. type="1" >
  2954. </productMenu>
  2955. <productID id="6A13"
  2956. />
  2957. <productGroupable type="0"
  2958. />
  2959. </product>
  2960. <product id="PHANTOMCamera"
  2961. name="PHANTOM Camera"
  2962. series="Helmet"
  2963. latestVersion="1.2.10"
  2964. latestVersionVoicePrompt="1.7"
  2965. show = "1" >
  2966. <productMenu id="protocol"
  2967. type="2" >
  2968. </productMenu>
  2969. <productMenu id="ota"
  2970. type="3" >
  2971. <otaLanguages>
  2972. <otaLanguage
  2973. id="0"
  2974. name="English"
  2975. package="0"
  2976. />
  2977. <otaLanguage
  2978. id="0"
  2979. name="French"
  2980. package="1"
  2981. />
  2982. <otaLanguage
  2983. id="0"
  2984. name="Spanish"
  2985. package="2"
  2986. />
  2987. <otaLanguage
  2988. id="0"
  2989. name="Italian"
  2990. package="3"
  2991. />
  2992. <otaLanguage
  2993. id="0"
  2994. name="German"
  2995. package="4"
  2996. />
  2997. <otaLanguage
  2998. id="0"
  2999. name="Dutch"
  3000. package="5"
  3001. />
  3002. <otaLanguage
  3003. id="0"
  3004. name="Russian"
  3005. package="6"
  3006. />
  3007. <otaLanguage
  3008. id="0"
  3009. name="Chinese"
  3010. package="7"
  3011. />
  3012. <otaLanguage
  3013. id="0"
  3014. name="Korean"
  3015. package="8"
  3016. />
  3017. <otaLanguage
  3018. id="0"
  3019. name="Japanese"
  3020. package="9"
  3021. />
  3022. <otaLanguage
  3023. id="0"
  3024. name="Finnish"
  3025. package="10"
  3026. />
  3027. <otaLanguage
  3028. id="0"
  3029. name="Polish"
  3030. package="11"
  3031. />
  3032. </otaLanguages>
  3033. <otaPackages>
  3034. <package
  3035. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3036. size="5183988"
  3037. />
  3038. <package
  3039. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3040. size="5183988"
  3041. />
  3042. <package
  3043. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3044. size="5183988"
  3045. />
  3046. <package
  3047. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3048. size="5183988"
  3049. />
  3050. <package
  3051. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3052. size="5183988"
  3053. />
  3054. <package
  3055. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3056. size="5183988"
  3057. />
  3058. <package
  3059. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3060. size="5183988"
  3061. />
  3062. <package
  3063. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3064. size="5183988"
  3065. />
  3066. <package
  3067. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3068. size="5183988"
  3069. />
  3070. <package
  3071. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3072. size="5183988"
  3073. />
  3074. <package
  3075. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3076. size="5183988"
  3077. />
  3078. <package
  3079. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3080. size="5183988"
  3081. />
  3082. </otaPackages>
  3083. </productMenu>
  3084. <productMenu id="wa"
  3085. type="0" >
  3086. </productMenu>
  3087. <productMenu id="led"
  3088. type="5" >
  3089. </productMenu>
  3090. <productMenu id="led+"
  3091. type="2"
  3092. url="1" >
  3093. </productMenu>
  3094. <productMenu id="meshIntercom"
  3095. type="30" >
  3096. </productMenu>
  3097. <productMenu id="meshIntercom+"
  3098. type="3"
  3099. url="2" >
  3100. </productMenu>
  3101. <productMenu id="waveIntercom"
  3102. type="1" >
  3103. </productMenu>
  3104. <productMenu id="fmradio"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="phone"
  3108. type="1" >
  3109. </productMenu>
  3110. <productMenu id="music"
  3111. type="1" >
  3112. </productMenu>
  3113. <productMenu id="musicSharing"
  3114. type="0" >
  3115. </productMenu>
  3116. <productMenu id="deviceSetting"
  3117. type="1"
  3118. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3119. </productMenu>
  3120. <productMenu id="quickGuide"
  3121. type="0"
  3122. url=""
  3123. size="1.12MB" >
  3124. </productMenu>
  3125. <productMenu id="userGuide"
  3126. type="1"
  3127. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3128. size="2.0MB" >
  3129. </productMenu>
  3130. <productMenu id="videoGuide"
  3131. type="0"
  3132. url=""
  3133. size="3.41MB" >
  3134. </productMenu>
  3135. <productMenu id="volume"
  3136. type="16" >
  3137. </productMenu>
  3138. <productMenu id="battery"
  3139. type="1" >
  3140. </productMenu>
  3141. <productID id="6A10"
  3142. />
  3143. <productGroupable type="0"
  3144. />
  3145. </product>
  3146. <product id="PHANTOMCamera"
  3147. name="PHANTOM Camera"
  3148. series="Helmet"
  3149. latestVersion="1.2.10"
  3150. latestVersionVoicePrompt="1.7"
  3151. show = "-1" >
  3152. <productMenu id="protocol"
  3153. type="2" >
  3154. </productMenu>
  3155. <productMenu id="ota"
  3156. type="3" >
  3157. <otaLanguages>
  3158. <otaLanguage
  3159. id="0"
  3160. name="English"
  3161. package="0"
  3162. />
  3163. <otaLanguage
  3164. id="0"
  3165. name="French"
  3166. package="1"
  3167. />
  3168. <otaLanguage
  3169. id="0"
  3170. name="Spanish"
  3171. package="2"
  3172. />
  3173. <otaLanguage
  3174. id="0"
  3175. name="Italian"
  3176. package="3"
  3177. />
  3178. <otaLanguage
  3179. id="0"
  3180. name="German"
  3181. package="4"
  3182. />
  3183. <otaLanguage
  3184. id="0"
  3185. name="Dutch"
  3186. package="5"
  3187. />
  3188. <otaLanguage
  3189. id="0"
  3190. name="Russian"
  3191. package="6"
  3192. />
  3193. <otaLanguage
  3194. id="0"
  3195. name="Chinese"
  3196. package="7"
  3197. />
  3198. <otaLanguage
  3199. id="0"
  3200. name="Korean"
  3201. package="8"
  3202. />
  3203. <otaLanguage
  3204. id="0"
  3205. name="Japanese"
  3206. package="9"
  3207. />
  3208. <otaLanguage
  3209. id="0"
  3210. name="Finnish"
  3211. package="10"
  3212. />
  3213. <otaLanguage
  3214. id="0"
  3215. name="Polish"
  3216. package="11"
  3217. />
  3218. </otaLanguages>
  3219. <otaPackages>
  3220. <package
  3221. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3222. size="5183988"
  3223. />
  3224. <package
  3225. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3226. size="5183988"
  3227. />
  3228. <package
  3229. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3230. size="5183988"
  3231. />
  3232. <package
  3233. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3234. size="5183988"
  3235. />
  3236. <package
  3237. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3238. size="5183988"
  3239. />
  3240. <package
  3241. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3242. size="5183988"
  3243. />
  3244. <package
  3245. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3246. size="5183988"
  3247. />
  3248. <package
  3249. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3250. size="5183988"
  3251. />
  3252. <package
  3253. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3254. size="5183988"
  3255. />
  3256. <package
  3257. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3258. size="5183988"
  3259. />
  3260. <package
  3261. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3262. size="5183988"
  3263. />
  3264. <package
  3265. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3266. size="5183988"
  3267. />
  3268. </otaPackages>
  3269. </productMenu>
  3270. <productMenu id="wa"
  3271. type="0" >
  3272. </productMenu>
  3273. <productMenu id="led"
  3274. type="5" >
  3275. </productMenu>
  3276. <productMenu id="led+"
  3277. type="2"
  3278. url="1" >
  3279. </productMenu>
  3280. <productMenu id="meshIntercom"
  3281. type="30" >
  3282. </productMenu>
  3283. <productMenu id="meshIntercom+"
  3284. type="3"
  3285. url="2" >
  3286. </productMenu>
  3287. <productMenu id="waveIntercom"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="fmradio"
  3291. type="0" >
  3292. </productMenu>
  3293. <productMenu id="phone"
  3294. type="1" >
  3295. </productMenu>
  3296. <productMenu id="music"
  3297. type="1" >
  3298. </productMenu>
  3299. <productMenu id="musicSharing"
  3300. type="0" >
  3301. </productMenu>
  3302. <productMenu id="deviceSetting"
  3303. type="1"
  3304. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="0"
  3308. url=""
  3309. size="1.12MB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3314. size="2.0MB" >
  3315. </productMenu>
  3316. <productMenu id="videoGuide"
  3317. type="0"
  3318. url=""
  3319. size="3.41MB" >
  3320. </productMenu>
  3321. <productMenu id="volume"
  3322. type="16" >
  3323. </productMenu>
  3324. <productMenu id="battery"
  3325. type="1" >
  3326. </productMenu>
  3327. <productID id="6A09"
  3328. />
  3329. <productGroupable type="0"
  3330. />
  3331. </product>
  3332. <product id="PHANTOM"
  3333. name="PHANTOM ANC"
  3334. series="Helmet"
  3335. latestVersion="1.2.9"
  3336. latestVersionVoicePrompt="1.7"
  3337. show = "1" >
  3338. <productMenu id="protocol"
  3339. type="2" >
  3340. </productMenu>
  3341. <productMenu id="ota"
  3342. type="2" >
  3343. <productMenuType version="0.6.9"
  3344. type="0"
  3345. />
  3346. <otaLanguages>
  3347. <otaLanguage
  3348. id="0"
  3349. name="English"
  3350. package="0"
  3351. />
  3352. <otaLanguage
  3353. id="0"
  3354. name="French"
  3355. package="1"
  3356. />
  3357. <otaLanguage
  3358. id="0"
  3359. name="Spanish"
  3360. package="2"
  3361. />
  3362. <otaLanguage
  3363. id="0"
  3364. name="Italian"
  3365. package="3"
  3366. />
  3367. <otaLanguage
  3368. id="0"
  3369. name="German"
  3370. package="4"
  3371. />
  3372. <otaLanguage
  3373. id="0"
  3374. name="Dutch"
  3375. package="5"
  3376. />
  3377. <otaLanguage
  3378. id="0"
  3379. name="Russian"
  3380. package="6"
  3381. />
  3382. <otaLanguage
  3383. id="0"
  3384. name="Chinese"
  3385. package="7"
  3386. />
  3387. <otaLanguage
  3388. id="0"
  3389. name="Korean"
  3390. package="8"
  3391. />
  3392. <otaLanguage
  3393. id="0"
  3394. name="Japanese"
  3395. package="9"
  3396. />
  3397. <otaLanguage
  3398. id="0"
  3399. name="Finnish"
  3400. package="10"
  3401. />
  3402. <otaLanguage
  3403. id="0"
  3404. name="Polish"
  3405. package="11"
  3406. />
  3407. </otaLanguages>
  3408. <otaPackages>
  3409. <package
  3410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3411. size="5183988"
  3412. />
  3413. <package
  3414. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3415. size="5183988"
  3416. />
  3417. <package
  3418. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3419. size="5183988"
  3420. />
  3421. <package
  3422. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3423. size="5183988"
  3424. />
  3425. <package
  3426. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3427. size="5183988"
  3428. />
  3429. <package
  3430. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3431. size="5183988"
  3432. />
  3433. <package
  3434. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3435. size="5183988"
  3436. />
  3437. <package
  3438. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3439. size="5183988"
  3440. />
  3441. <package
  3442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3443. size="5183988"
  3444. />
  3445. <package
  3446. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3447. size="5183988"
  3448. />
  3449. <package
  3450. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3451. size="5183988"
  3452. />
  3453. <package
  3454. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3455. size="5183988"
  3456. />
  3457. </otaPackages>
  3458. </productMenu>
  3459. <productMenu id="wa"
  3460. type="0" >
  3461. </productMenu>
  3462. <productMenu id="led"
  3463. type="5" >
  3464. </productMenu>
  3465. <productMenu id="led+"
  3466. type="2"
  3467. url="1" >
  3468. </productMenu>
  3469. <productMenu id="meshIntercom"
  3470. type="30" >
  3471. </productMenu>
  3472. <productMenu id="meshIntercom+"
  3473. type="3"
  3474. url="2" >
  3475. <productMenuURL version="1.0.4"
  3476. url="10"
  3477. />
  3478. </productMenu>
  3479. <productMenu id="waveIntercom"
  3480. type="1" >
  3481. <productMenuType version="1.0.9"
  3482. type="0"
  3483. />
  3484. </productMenu>
  3485. <productMenu id="fmradio"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="phone"
  3489. type="1" >
  3490. </productMenu>
  3491. <productMenu id="music"
  3492. type="1" >
  3493. </productMenu>
  3494. <productMenu id="musicSharing"
  3495. type="0" >
  3496. </productMenu>
  3497. <productMenu id="deviceSetting"
  3498. type="1"
  3499. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3500. <productMenuURL version="1.2.10"
  3501. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3502. />
  3503. <productMenuURL version="1.2.4"
  3504. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3505. />
  3506. <productMenuURL version="1.2.1"
  3507. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3508. />
  3509. <productMenuURL version="1.1.2"
  3510. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3511. />
  3512. <productMenuURL version="1.0.4"
  3513. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3514. />
  3515. </productMenu>
  3516. <productMenu id="quickGuide"
  3517. type="0"
  3518. url=""
  3519. size="1.12MB" >
  3520. </productMenu>
  3521. <productMenu id="userGuide"
  3522. type="1"
  3523. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3524. size="2.0MB" >
  3525. </productMenu>
  3526. <productMenu id="videoGuide"
  3527. type="0"
  3528. url=""
  3529. size="3.41MB" >
  3530. </productMenu>
  3531. <productMenu id="connectGuide"
  3532. type="1"
  3533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3534. size="1.1MB" >
  3535. </productMenu>
  3536. <productMenu id="volume"
  3537. type="16" >
  3538. </productMenu>
  3539. <productMenu id="volume+"
  3540. type="2"
  3541. url="0x6004" >
  3542. </productMenu>
  3543. <productMenu id="soundMode"
  3544. type="1" >
  3545. <productMenuType version="0.9.11"
  3546. type="0"
  3547. />
  3548. </productMenu>
  3549. <productMenu id="battery"
  3550. type="1" >
  3551. </productMenu>
  3552. <productID id="6A01"
  3553. />
  3554. <productGroupable type="0"
  3555. />
  3556. </product>
  3557. <product id="PHANTOM"
  3558. name="PHANTOM ANC"
  3559. series="Helmet"
  3560. latestVersion="1.2.9"
  3561. latestVersionVoicePrompt="1.7"
  3562. show = "-1" >
  3563. <productMenu id="protocol"
  3564. type="2" >
  3565. </productMenu>
  3566. <productMenu id="ota"
  3567. type="2" >
  3568. <otaLanguages>
  3569. <otaLanguage
  3570. id="0"
  3571. name="English"
  3572. package="0"
  3573. />
  3574. <otaLanguage
  3575. id="0"
  3576. name="French"
  3577. package="1"
  3578. />
  3579. <otaLanguage
  3580. id="0"
  3581. name="Spanish"
  3582. package="2"
  3583. />
  3584. <otaLanguage
  3585. id="0"
  3586. name="Italian"
  3587. package="3"
  3588. />
  3589. <otaLanguage
  3590. id="0"
  3591. name="German"
  3592. package="4"
  3593. />
  3594. <otaLanguage
  3595. id="0"
  3596. name="Dutch"
  3597. package="5"
  3598. />
  3599. <otaLanguage
  3600. id="0"
  3601. name="Russian"
  3602. package="6"
  3603. />
  3604. <otaLanguage
  3605. id="0"
  3606. name="Chinese"
  3607. package="7"
  3608. />
  3609. <otaLanguage
  3610. id="0"
  3611. name="Korean"
  3612. package="8"
  3613. />
  3614. <otaLanguage
  3615. id="0"
  3616. name="Japanese"
  3617. package="9"
  3618. />
  3619. <otaLanguage
  3620. id="0"
  3621. name="Finnish"
  3622. package="10"
  3623. />
  3624. <otaLanguage
  3625. id="0"
  3626. name="Polish"
  3627. package="11"
  3628. />
  3629. </otaLanguages>
  3630. <otaPackages>
  3631. <package
  3632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3633. size="5183988"
  3634. />
  3635. <package
  3636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3637. size="5183988"
  3638. />
  3639. <package
  3640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3641. size="5183988"
  3642. />
  3643. <package
  3644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3645. size="5183988"
  3646. />
  3647. <package
  3648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3649. size="5183988"
  3650. />
  3651. <package
  3652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3653. size="5183988"
  3654. />
  3655. <package
  3656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3657. size="5183988"
  3658. />
  3659. <package
  3660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3661. size="5183988"
  3662. />
  3663. <package
  3664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3665. size="5183988"
  3666. />
  3667. <package
  3668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3673. size="5183988"
  3674. />
  3675. <package
  3676. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3677. size="5183988"
  3678. />
  3679. </otaPackages>
  3680. </productMenu>
  3681. <productMenu id="led"
  3682. type="5" >
  3683. </productMenu>
  3684. <productMenu id="led+"
  3685. type="2"
  3686. url="1" >
  3687. </productMenu>
  3688. <productMenu id="meshIntercom"
  3689. type="30" >
  3690. </productMenu>
  3691. <productMenu id="meshIntercom+"
  3692. type="3"
  3693. url="2" >
  3694. </productMenu>
  3695. <productMenu id="waveIntercom"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="fmradio"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="phone"
  3702. type="1" >
  3703. </productMenu>
  3704. <productMenu id="music"
  3705. type="1" >
  3706. </productMenu>
  3707. <productMenu id="musicSharing"
  3708. type="0" >
  3709. </productMenu>
  3710. <productMenu id="deviceSetting"
  3711. type="1"
  3712. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3713. <productMenuURL version="1.2.10"
  3714. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3715. />
  3716. <productMenuURL version="1.2.4"
  3717. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3718. />
  3719. </productMenu>
  3720. <productMenu id="quickGuide"
  3721. type="0"
  3722. url=""
  3723. size="1.12MB" >
  3724. </productMenu>
  3725. <productMenu id="userGuide"
  3726. type="1"
  3727. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3728. size="2.0MB" >
  3729. </productMenu>
  3730. <productMenu id="videoGuide"
  3731. type="0"
  3732. url=""
  3733. size="3.41MB" >
  3734. </productMenu>
  3735. <productMenu id="connectGuide"
  3736. type="1"
  3737. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3738. size="1.1MB" >
  3739. </productMenu>
  3740. <productMenu id="volume"
  3741. type="16" >
  3742. </productMenu>
  3743. <productMenu id="volume+"
  3744. type="2"
  3745. url="0x6004" >
  3746. </productMenu>
  3747. <productMenu id="soundMode"
  3748. type="1" >
  3749. </productMenu>
  3750. <productMenu id="battery"
  3751. type="1" >
  3752. </productMenu>
  3753. <productID id="6A19"
  3754. />
  3755. <productGroupable type="0"
  3756. />
  3757. </product>
  3758. <product id="PHANTOM"
  3759. name="PHANTOM"
  3760. series="Helmet"
  3761. latestVersion="1.2.9"
  3762. latestVersionVoicePrompt="1.7"
  3763. show = "-1" >
  3764. <productMenu id="protocol"
  3765. type="2" >
  3766. </productMenu>
  3767. <productMenu id="ota"
  3768. type="2" >
  3769. <otaLanguages>
  3770. <otaLanguage
  3771. id="0"
  3772. name="English"
  3773. package="0"
  3774. />
  3775. <otaLanguage
  3776. id="0"
  3777. name="French"
  3778. package="1"
  3779. />
  3780. <otaLanguage
  3781. id="0"
  3782. name="Spanish"
  3783. package="2"
  3784. />
  3785. <otaLanguage
  3786. id="0"
  3787. name="Italian"
  3788. package="3"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="German"
  3793. package="4"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Dutch"
  3798. package="5"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Russian"
  3803. package="6"
  3804. />
  3805. <otaLanguage
  3806. id="0"
  3807. name="Chinese"
  3808. package="7"
  3809. />
  3810. <otaLanguage
  3811. id="0"
  3812. name="Korean"
  3813. package="8"
  3814. />
  3815. <otaLanguage
  3816. id="0"
  3817. name="Japanese"
  3818. package="9"
  3819. />
  3820. <otaLanguage
  3821. id="0"
  3822. name="Finnish"
  3823. package="10"
  3824. />
  3825. <otaLanguage
  3826. id="0"
  3827. name="Polish"
  3828. package="11"
  3829. />
  3830. </otaLanguages>
  3831. <otaPackages>
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3854. size="5183988"
  3855. />
  3856. <package
  3857. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3858. size="5183988"
  3859. />
  3860. <package
  3861. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3862. size="5183988"
  3863. />
  3864. <package
  3865. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3866. size="5183988"
  3867. />
  3868. <package
  3869. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3870. size="5183988"
  3871. />
  3872. <package
  3873. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3874. size="5183988"
  3875. />
  3876. <package
  3877. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3878. size="5183988"
  3879. />
  3880. </otaPackages>
  3881. </productMenu>
  3882. <productMenu id="wa"
  3883. type="0" >
  3884. </productMenu>
  3885. <productMenu id="led"
  3886. type="5" >
  3887. </productMenu>
  3888. <productMenu id="led+"
  3889. type="2"
  3890. url="1" >
  3891. </productMenu>
  3892. <productMenu id="meshIntercom"
  3893. type="30" >
  3894. </productMenu>
  3895. <productMenu id="meshIntercom+"
  3896. type="3"
  3897. url="2" >
  3898. </productMenu>
  3899. <productMenu id="waveIntercom"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="fmradio"
  3903. type="0" >
  3904. </productMenu>
  3905. <productMenu id="phone"
  3906. type="1" >
  3907. </productMenu>
  3908. <productMenu id="music"
  3909. type="1" >
  3910. </productMenu>
  3911. <productMenu id="musicSharing"
  3912. type="0" >
  3913. </productMenu>
  3914. <productMenu id="deviceSetting"
  3915. type="1"
  3916. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3917. <productMenuURL version="1.2.10"
  3918. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3919. />
  3920. <productMenuURL version="1.2.4"
  3921. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3922. />
  3923. </productMenu>
  3924. <productMenu id="quickGuide"
  3925. type="0"
  3926. url=""
  3927. size="1.52MB" >
  3928. </productMenu>
  3929. <productMenu id="userGuide"
  3930. type="1"
  3931. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3932. size="2.01MB" >
  3933. </productMenu>
  3934. <productMenu id="videoGuide"
  3935. type="0"
  3936. url=""
  3937. size="3.46MB" >
  3938. </productMenu>
  3939. <productMenu id="connectGuide"
  3940. type="1"
  3941. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3942. size="1.1MB" >
  3943. </productMenu>
  3944. <productMenu id="volume"
  3945. type="16" >
  3946. </productMenu>
  3947. <productMenu id="volume+"
  3948. type="2"
  3949. url="0x6004" >
  3950. </productMenu>
  3951. <productMenu id="battery"
  3952. type="1" >
  3953. </productMenu>
  3954. <productID id="6A0E"
  3955. />
  3956. <productGroupable type="0"
  3957. />
  3958. </product>
  3959. <product id="PHANTOM"
  3960. name="PHANTOM"
  3961. series="Helmet"
  3962. latestVersion="1.2.9"
  3963. latestVersionVoicePrompt="1.7"
  3964. show = "1" >
  3965. <productMenu id="protocol"
  3966. type="2" >
  3967. </productMenu>
  3968. <productMenu id="ota"
  3969. type="2" >
  3970. <otaLanguages>
  3971. <otaLanguage
  3972. id="0"
  3973. name="English"
  3974. package="0"
  3975. />
  3976. <otaLanguage
  3977. id="0"
  3978. name="French"
  3979. package="1"
  3980. />
  3981. <otaLanguage
  3982. id="0"
  3983. name="Spanish"
  3984. package="2"
  3985. />
  3986. <otaLanguage
  3987. id="0"
  3988. name="Italian"
  3989. package="3"
  3990. />
  3991. <otaLanguage
  3992. id="0"
  3993. name="German"
  3994. package="4"
  3995. />
  3996. <otaLanguage
  3997. id="0"
  3998. name="Dutch"
  3999. package="5"
  4000. />
  4001. <otaLanguage
  4002. id="0"
  4003. name="Russian"
  4004. package="6"
  4005. />
  4006. <otaLanguage
  4007. id="0"
  4008. name="Chinese"
  4009. package="7"
  4010. />
  4011. <otaLanguage
  4012. id="0"
  4013. name="Korean"
  4014. package="8"
  4015. />
  4016. <otaLanguage
  4017. id="0"
  4018. name="Japanese"
  4019. package="9"
  4020. />
  4021. <otaLanguage
  4022. id="0"
  4023. name="Finnish"
  4024. package="10"
  4025. />
  4026. <otaLanguage
  4027. id="0"
  4028. name="Polish"
  4029. package="11"
  4030. />
  4031. </otaLanguages>
  4032. <otaPackages>
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4075. size="5183988"
  4076. />
  4077. <package
  4078. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4079. size="5183988"
  4080. />
  4081. </otaPackages>
  4082. </productMenu>
  4083. <productMenu id="wa"
  4084. type="0" >
  4085. </productMenu>
  4086. <productMenu id="led"
  4087. type="5" >
  4088. <productMenuType version="1.0.1"
  4089. type="4"
  4090. />
  4091. </productMenu>
  4092. <productMenu id="led+"
  4093. type="2"
  4094. url="1" >
  4095. <productMenuType version="1.0.1"
  4096. type="-1"
  4097. />
  4098. </productMenu>
  4099. <productMenu id="meshIntercom"
  4100. type="30" >
  4101. </productMenu>
  4102. <productMenu id="meshIntercom+"
  4103. type="3"
  4104. url="2" >
  4105. <productMenuURL version="1.0.4"
  4106. url="10"
  4107. />
  4108. </productMenu>
  4109. <productMenu id="waveIntercom"
  4110. type="1" >
  4111. <productMenuType version="1.0.9"
  4112. type="0"
  4113. />
  4114. </productMenu>
  4115. <productMenu id="fmradio"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="phone"
  4119. type="1" >
  4120. </productMenu>
  4121. <productMenu id="music"
  4122. type="1" >
  4123. </productMenu>
  4124. <productMenu id="musicSharing"
  4125. type="0" >
  4126. </productMenu>
  4127. <productMenu id="deviceSetting"
  4128. type="1"
  4129. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4130. <productMenuURL version="1.2.10"
  4131. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4132. />
  4133. <productMenuURL version="1.2.4"
  4134. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4135. />
  4136. <productMenuURL version="1.2.1"
  4137. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4138. />
  4139. <productMenuURL version="1.0.4"
  4140. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4141. />
  4142. <productMenuURL version="1.0.1"
  4143. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4144. />
  4145. </productMenu>
  4146. <productMenu id="quickGuide"
  4147. type="0"
  4148. url=""
  4149. size="1.12MB" >
  4150. </productMenu>
  4151. <productMenu id="userGuide"
  4152. type="1"
  4153. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4154. size="2.0MB" >
  4155. </productMenu>
  4156. <productMenu id="videoGuide"
  4157. type="0"
  4158. url=""
  4159. size="3.41MB" >
  4160. </productMenu>
  4161. <productMenu id="connectGuide"
  4162. type="1"
  4163. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4164. size="1.12MB" >
  4165. </productMenu>
  4166. <productMenu id="volume"
  4167. type="16" >
  4168. <productMenuType version="1.0"
  4169. type="13"
  4170. />
  4171. </productMenu>
  4172. <productMenu id="volume+"
  4173. type="2"
  4174. url="0x6004" >
  4175. </productMenu>
  4176. <productMenu id="battery"
  4177. type="1" >
  4178. </productMenu>
  4179. <productID id="6A04"
  4180. />
  4181. <productGroupable type="0"
  4182. />
  4183. </product>
  4184. <product id="PHANTOMEasyLink"
  4185. name="PHANTOM EasyLink"
  4186. series="Helmet"
  4187. latestVersion="0.1"
  4188. latestVersionVoicePrompt="1.2"
  4189. show = "-1" >
  4190. <productMenu id="protocol"
  4191. type="2" >
  4192. </productMenu>
  4193. <productMenu id="ota"
  4194. type="0" >
  4195. <otaLanguages>
  4196. <otaLanguage
  4197. id="0"
  4198. name="English"
  4199. package="0"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="French"
  4204. package="1"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Spanish"
  4209. package="2"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Italian"
  4214. package="3"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="German"
  4219. package="4"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Dutch"
  4224. package="5"
  4225. />
  4226. <otaLanguage
  4227. id="0"
  4228. name="Russian"
  4229. package="6"
  4230. />
  4231. <otaLanguage
  4232. id="0"
  4233. name="Chinese"
  4234. package="7"
  4235. />
  4236. <otaLanguage
  4237. id="0"
  4238. name="Korean"
  4239. package="8"
  4240. />
  4241. <otaLanguage
  4242. id="0"
  4243. name="Japanese"
  4244. package="9"
  4245. />
  4246. <otaLanguage
  4247. id="0"
  4248. name="Finnish"
  4249. package="10"
  4250. />
  4251. <otaLanguage
  4252. id="0"
  4253. name="Polish"
  4254. package="11"
  4255. />
  4256. </otaLanguages>
  4257. <otaPackages>
  4258. <package
  4259. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4260. size="5183988"
  4261. />
  4262. <package
  4263. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4264. size="5183988"
  4265. />
  4266. <package
  4267. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4268. size="5183988"
  4269. />
  4270. <package
  4271. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4272. size="5183988"
  4273. />
  4274. <package
  4275. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4276. size="5183988"
  4277. />
  4278. <package
  4279. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4280. size="5183988"
  4281. />
  4282. <package
  4283. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4284. size="5183988"
  4285. />
  4286. <package
  4287. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4288. size="5183988"
  4289. />
  4290. <package
  4291. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4292. size="5183988"
  4293. />
  4294. <package
  4295. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4296. size="5183988"
  4297. />
  4298. <package
  4299. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4300. size="5183988"
  4301. />
  4302. <package
  4303. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4304. size="5183988"
  4305. />
  4306. </otaPackages>
  4307. </productMenu>
  4308. <productMenu id="meshIntercom"
  4309. type="30" >
  4310. </productMenu>
  4311. <productMenu id="meshIntercom+"
  4312. type="3"
  4313. url="2" >
  4314. </productMenu>
  4315. <productMenu id="waveIntercom"
  4316. type="1" >
  4317. </productMenu>
  4318. <productMenu id="fmradio"
  4319. type="0" >
  4320. </productMenu>
  4321. <productMenu id="phone"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="music"
  4325. type="1" >
  4326. </productMenu>
  4327. <productMenu id="musicSharing"
  4328. type="0" >
  4329. </productMenu>
  4330. <productMenu id="deviceSetting"
  4331. type="1"
  4332. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4333. </productMenu>
  4334. <productMenu id="quickGuide"
  4335. type="0"
  4336. url=""
  4337. size="1.12MB" >
  4338. </productMenu>
  4339. <productMenu id="userGuide"
  4340. type="1"
  4341. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4342. size="2.0MB" >
  4343. </productMenu>
  4344. <productMenu id="videoGuide"
  4345. type="0"
  4346. url=""
  4347. size="3.41MB" >
  4348. </productMenu>
  4349. <productMenu id="connectGuide"
  4350. type="0"
  4351. url=""
  4352. size="1.12MB" >
  4353. </productMenu>
  4354. <productMenu id="volume"
  4355. type="16" >
  4356. </productMenu>
  4357. <productMenu id="battery"
  4358. type="1" >
  4359. </productMenu>
  4360. <productID id="6A18"
  4361. />
  4362. <productGroupable type="0"
  4363. />
  4364. </product>
  4365. <product id="SPIDERXSlim"
  4366. name="SPIDER X Slim"
  4367. series="SPIDER"
  4368. latestVersion="1.0.1"
  4369. latestVersionVoicePrompt="1.8"
  4370. show = "1" >
  4371. <productMenu id="protocol"
  4372. type="2" >
  4373. </productMenu>
  4374. <productMenu id="warranty"
  4375. type="1" >
  4376. </productMenu>
  4377. <productMenu id="serialNumber"
  4378. type="1" >
  4379. </productMenu>
  4380. <productMenu id="ota"
  4381. type="2" >
  4382. <otaLanguages>
  4383. <otaLanguage
  4384. id="0"
  4385. name="English"
  4386. package="0"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="French"
  4391. package="1"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Spanish"
  4396. package="2"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Italian"
  4401. package="3"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="German"
  4406. package="4"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Dutch"
  4411. package="5"
  4412. />
  4413. <otaLanguage
  4414. id="0"
  4415. name="Russian"
  4416. package="6"
  4417. />
  4418. <otaLanguage
  4419. id="0"
  4420. name="Chinese"
  4421. package="7"
  4422. />
  4423. <otaLanguage
  4424. id="0"
  4425. name="Korean"
  4426. package="8"
  4427. />
  4428. <otaLanguage
  4429. id="0"
  4430. name="Japanese"
  4431. package="9"
  4432. />
  4433. <otaLanguage
  4434. id="0"
  4435. name="Finnish"
  4436. package="10"
  4437. />
  4438. <otaLanguage
  4439. id="0"
  4440. name="Polish"
  4441. package="11"
  4442. />
  4443. </otaLanguages>
  4444. <otaPackages>
  4445. <package
  4446. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  4447. size="5183988"
  4448. />
  4449. <package
  4450. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  4451. size="5183988"
  4452. />
  4453. <package
  4454. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  4455. size="5183988"
  4456. />
  4457. <package
  4458. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  4459. size="5183988"
  4460. />
  4461. <package
  4462. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  4463. size="5183988"
  4464. />
  4465. <package
  4466. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  4467. size="5183988"
  4468. />
  4469. <package
  4470. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  4471. size="5183988"
  4472. />
  4473. <package
  4474. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  4475. size="5183988"
  4476. />
  4477. <package
  4478. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  4479. size="5183988"
  4480. />
  4481. <package
  4482. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  4483. size="5183988"
  4484. />
  4485. <package
  4486. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  4487. size="5183988"
  4488. />
  4489. <package
  4490. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  4491. size="5183988"
  4492. />
  4493. </otaPackages>
  4494. </productMenu>
  4495. <productMenu id="meshIntercom"
  4496. type="30" >
  4497. </productMenu>
  4498. <productMenu id="meshIntercom+"
  4499. type="3"
  4500. url="2" >
  4501. </productMenu>
  4502. <productMenu id="waveIntercom"
  4503. type="1" >
  4504. </productMenu>
  4505. <productMenu id="fmradio"
  4506. type="1"
  4507. url="1" >
  4508. </productMenu>
  4509. <productMenu id="phone"
  4510. type="1" >
  4511. </productMenu>
  4512. <productMenu id="music"
  4513. type="1" >
  4514. </productMenu>
  4515. <productMenu id="musicSharing"
  4516. type="0" >
  4517. </productMenu>
  4518. <productMenu id="deviceSetting"
  4519. type="1"
  4520. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4521. <productMenuURL version="1.0"
  4522. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4523. />
  4524. </productMenu>
  4525. <productMenu id="quickGuide"
  4526. type="0"
  4527. url=""
  4528. size="1.12MB" >
  4529. </productMenu>
  4530. <productMenu id="userGuide"
  4531. type="1"
  4532. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4533. size="2.0MB" >
  4534. </productMenu>
  4535. <productMenu id="videoGuide"
  4536. type="0"
  4537. url=""
  4538. size="3.41MB" >
  4539. </productMenu>
  4540. <productMenu id="connectGuide"
  4541. type="1"
  4542. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4543. size="1.12MB" >
  4544. </productMenu>
  4545. <productMenu id="volume"
  4546. type="16" >
  4547. </productMenu>
  4548. <productMenu id="volume+"
  4549. type="2"
  4550. url="0x6004" >
  4551. </productMenu>
  4552. <productMenu id="appearance"
  4553. type="1"
  4554. url="2|white,silver,chrome,black" >
  4555. </productMenu>
  4556. <productMenu id="battery"
  4557. type="1" >
  4558. </productMenu>
  4559. <productID id="6A07"
  4560. />
  4561. <productGroupable type="0"
  4562. />
  4563. </product>
  4564. <product id="XFITM"
  4565. name="X-FIT M"
  4566. series="SPIDER"
  4567. latestVersion="0.1.11"
  4568. latestVersionVoicePrompt="1.1"
  4569. show = "-1" >
  4570. <productMenu id="protocol"
  4571. type="2" >
  4572. </productMenu>
  4573. <productMenu id="ota"
  4574. type="0" >
  4575. <otaLanguages>
  4576. <otaLanguage
  4577. id="0"
  4578. name="English"
  4579. package="0"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="French"
  4584. package="1"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Spanish"
  4589. package="2"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Italian"
  4594. package="3"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="German"
  4599. package="4"
  4600. />
  4601. <otaLanguage
  4602. id="0"
  4603. name="Dutch"
  4604. package="5"
  4605. />
  4606. <otaLanguage
  4607. id="0"
  4608. name="Russian"
  4609. package="6"
  4610. />
  4611. <otaLanguage
  4612. id="0"
  4613. name="Chinese"
  4614. package="7"
  4615. />
  4616. <otaLanguage
  4617. id="0"
  4618. name="Korean"
  4619. package="8"
  4620. />
  4621. <otaLanguage
  4622. id="0"
  4623. name="Japanese"
  4624. package="9"
  4625. />
  4626. <otaLanguage
  4627. id="0"
  4628. name="Finnish"
  4629. package="10"
  4630. />
  4631. <otaLanguage
  4632. id="0"
  4633. name="Polish"
  4634. package="11"
  4635. />
  4636. </otaLanguages>
  4637. <otaPackages>
  4638. <package
  4639. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4640. size="5183988"
  4641. />
  4642. <package
  4643. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4644. size="5183988"
  4645. />
  4646. <package
  4647. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4648. size="5183988"
  4649. />
  4650. <package
  4651. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4652. size="5183988"
  4653. />
  4654. <package
  4655. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4656. size="5183988"
  4657. />
  4658. <package
  4659. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4660. size="5183988"
  4661. />
  4662. <package
  4663. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4664. size="5183988"
  4665. />
  4666. <package
  4667. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4684. size="5183988"
  4685. />
  4686. </otaPackages>
  4687. </productMenu>
  4688. <productMenu id="meshIntercom"
  4689. type="30" >
  4690. </productMenu>
  4691. <productMenu id="meshIntercom+"
  4692. type="3"
  4693. url="2" >
  4694. </productMenu>
  4695. <productMenu id="waveIntercom"
  4696. type="1" >
  4697. </productMenu>
  4698. <productMenu id="fmradio"
  4699. type="1"
  4700. url="1" >
  4701. </productMenu>
  4702. <productMenu id="phone"
  4703. type="1" >
  4704. </productMenu>
  4705. <productMenu id="music"
  4706. type="1" >
  4707. </productMenu>
  4708. <productMenu id="musicSharing"
  4709. type="0" >
  4710. </productMenu>
  4711. <productMenu id="deviceSetting"
  4712. type="1"
  4713. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4714. </productMenu>
  4715. <productMenu id="quickGuide"
  4716. type="0"
  4717. url=""
  4718. size="1.12MB" >
  4719. </productMenu>
  4720. <productMenu id="userGuide"
  4721. type="1"
  4722. url=""
  4723. size="2.0MB" >
  4724. </productMenu>
  4725. <productMenu id="videoGuide"
  4726. type="0"
  4727. url=""
  4728. size="3.41MB" >
  4729. </productMenu>
  4730. <productMenu id="volume"
  4731. type="16" >
  4732. </productMenu>
  4733. <productMenu id="volume+"
  4734. type="2"
  4735. url="0x6004" >
  4736. </productMenu>
  4737. <productMenu id="battery"
  4738. type="1" >
  4739. </productMenu>
  4740. <productID id="6A17"
  4741. />
  4742. <productGroupable type="0"
  4743. />
  4744. </product>
  4745. <product id="VORTEXMESH"
  4746. name="VORTEX MESH"
  4747. series="Helmet"
  4748. latestVersion="0.1.11"
  4749. latestVersionVoicePrompt="1.1"
  4750. show = "-1" >
  4751. <productMenu id="protocol"
  4752. type="2" >
  4753. </productMenu>
  4754. <productMenu id="ota"
  4755. type="0" >
  4756. <otaLanguages>
  4757. <otaLanguage
  4758. id="0"
  4759. name="English"
  4760. package="0"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="French"
  4765. package="1"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Spanish"
  4770. package="2"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Italian"
  4775. package="3"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="German"
  4780. package="4"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="Dutch"
  4785. package="5"
  4786. />
  4787. <otaLanguage
  4788. id="0"
  4789. name="Russian"
  4790. package="6"
  4791. />
  4792. <otaLanguage
  4793. id="0"
  4794. name="Chinese"
  4795. package="7"
  4796. />
  4797. <otaLanguage
  4798. id="0"
  4799. name="Korean"
  4800. package="8"
  4801. />
  4802. <otaLanguage
  4803. id="0"
  4804. name="Japanese"
  4805. package="9"
  4806. />
  4807. <otaLanguage
  4808. id="0"
  4809. name="Finnish"
  4810. package="10"
  4811. />
  4812. <otaLanguage
  4813. id="0"
  4814. name="Polish"
  4815. package="11"
  4816. />
  4817. </otaLanguages>
  4818. <otaPackages>
  4819. <package
  4820. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4821. size="5183988"
  4822. />
  4823. <package
  4824. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4825. size="5183988"
  4826. />
  4827. <package
  4828. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4829. size="5183988"
  4830. />
  4831. <package
  4832. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4833. size="5183988"
  4834. />
  4835. <package
  4836. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4837. size="5183988"
  4838. />
  4839. <package
  4840. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4841. size="5183988"
  4842. />
  4843. <package
  4844. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4845. size="5183988"
  4846. />
  4847. <package
  4848. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4849. size="5183988"
  4850. />
  4851. <package
  4852. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4853. size="5183988"
  4854. />
  4855. <package
  4856. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4857. size="5183988"
  4858. />
  4859. <package
  4860. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4861. size="5183988"
  4862. />
  4863. <package
  4864. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4865. size="5183988"
  4866. />
  4867. </otaPackages>
  4868. </productMenu>
  4869. <productMenu id="wa"
  4870. type="0" >
  4871. </productMenu>
  4872. <productMenu id="led"
  4873. type="5" >
  4874. </productMenu>
  4875. <productMenu id="led+"
  4876. type="2"
  4877. url="1" >
  4878. </productMenu>
  4879. <productMenu id="meshIntercom"
  4880. type="30" >
  4881. </productMenu>
  4882. <productMenu id="meshIntercom+"
  4883. type="3"
  4884. url="2" >
  4885. </productMenu>
  4886. <productMenu id="waveIntercom"
  4887. type="1" >
  4888. </productMenu>
  4889. <productMenu id="fmradio"
  4890. type="0" >
  4891. </productMenu>
  4892. <productMenu id="phone"
  4893. type="1" >
  4894. </productMenu>
  4895. <productMenu id="music"
  4896. type="1" >
  4897. </productMenu>
  4898. <productMenu id="musicSharing"
  4899. type="0" >
  4900. </productMenu>
  4901. <productMenu id="deviceSetting"
  4902. type="1"
  4903. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4904. </productMenu>
  4905. <productMenu id="quickGuide"
  4906. type="0"
  4907. url=""
  4908. size="1.12MB" >
  4909. </productMenu>
  4910. <productMenu id="userGuide"
  4911. type="1"
  4912. url=""
  4913. size="2.0MB" >
  4914. </productMenu>
  4915. <productMenu id="videoGuide"
  4916. type="0"
  4917. url=""
  4918. size="3.41MB" >
  4919. </productMenu>
  4920. <productMenu id="volume"
  4921. type="16" >
  4922. </productMenu>
  4923. <productMenu id="battery"
  4924. type="1" >
  4925. </productMenu>
  4926. <productID id="6A12"
  4927. />
  4928. <productGroupable type="0"
  4929. />
  4930. </product>
  4931. <product id="MeshOn"
  4932. name="MeshON"
  4933. series="Other"
  4934. latestVersion="1.0.1"
  4935. latestVersionVoicePrompt="0.7"
  4936. show = "1" >
  4937. <productMenu id="protocol"
  4938. type="2" >
  4939. </productMenu>
  4940. <productMenu id="ota"
  4941. type="2" >
  4942. <otaPackages>
  4943. <package
  4944. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4945. size="2945812"
  4946. />
  4947. </otaPackages>
  4948. </productMenu>
  4949. <productMenu id="meshIntercom+"
  4950. type="3"
  4951. url="4" >
  4952. </productMenu>
  4953. <productMenu id="waveIntercom"
  4954. type="0" >
  4955. </productMenu>
  4956. <productMenu id="phone"
  4957. type="0" >
  4958. </productMenu>
  4959. <productMenu id="music"
  4960. type="0" >
  4961. </productMenu>
  4962. <productMenu id="musicSharing"
  4963. type="0" >
  4964. </productMenu>
  4965. <productMenu id="deviceSetting"
  4966. type="1"
  4967. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4968. </productMenu>
  4969. <productMenu id="userGuide"
  4970. type="1"
  4971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4972. size="2.0MB" >
  4973. </productMenu>
  4974. <productMenu id="connectGuide"
  4975. type="1"
  4976. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  4977. size="1.12MB" >
  4978. </productMenu>
  4979. <productMenu id="bluetoothHeadset"
  4980. type="1"
  4981. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4982. </productMenu>
  4983. <productMenu id="volume"
  4984. type="0" >
  4985. </productMenu>
  4986. <productMenu id="battery"
  4987. type="1" >
  4988. </productMenu>
  4989. <productID id="684E"
  4990. />
  4991. <productGroupable type="0"
  4992. />
  4993. </product>
  4994. <product id="Impulse"
  4995. name="Impulse"
  4996. series="Helmet"
  4997. latestVersion="1.4.1"
  4998. show = "1" >
  4999. <productMenu id="protocol"
  5000. type="2" >
  5001. </productMenu>
  5002. <productMenu id="alexa"
  5003. type="0" >
  5004. </productMenu>
  5005. <productMenu id="ota"
  5006. type="0" >
  5007. </productMenu>
  5008. <productMenu id="wa"
  5009. type="24" >
  5010. </productMenu>
  5011. <productMenu id="manager"
  5012. type="0" >
  5013. </productMenu>
  5014. <productMenu id="sip"
  5015. type="1" >
  5016. </productMenu>
  5017. <productMenu id="led"
  5018. type="1" >
  5019. <productMenuType version="1.0.1"
  5020. type="2"
  5021. />
  5022. <productMenuType version="1.0"
  5023. type="1"
  5024. />
  5025. </productMenu>
  5026. <productMenu id="meshIntercom"
  5027. type="30" >
  5028. <productMenuType version="1.1.1"
  5029. type="20"
  5030. />
  5031. </productMenu>
  5032. <productMenu id="meshIntercom+"
  5033. type="3"
  5034. url="2" >
  5035. <productMenuType version="1.3.9"
  5036. type="2"
  5037. />
  5038. <productMenuURL version="1.1.1"
  5039. url="0"
  5040. />
  5041. </productMenu>
  5042. <productMenu id="waveIntercom"
  5043. type="1" >
  5044. <productMenuType version="1.3.9"
  5045. type="0"
  5046. />
  5047. </productMenu>
  5048. <productMenu id="bluetoothIntercom"
  5049. type="1" >
  5050. </productMenu>
  5051. <productMenu id="phone"
  5052. type="1" >
  5053. </productMenu>
  5054. <productMenu id="music"
  5055. type="1" >
  5056. </productMenu>
  5057. <productMenu id="fmradio"
  5058. type="1" >
  5059. </productMenu>
  5060. <productMenu id="deviceSetting"
  5061. type="1"
  5062. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5063. <productMenuURL version="1.3.9"
  5064. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5065. />
  5066. <productMenuURL version="1.1.1"
  5067. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5068. />
  5069. <productMenuURL version="1.0.4"
  5070. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5071. />
  5072. </productMenu>
  5073. <productMenu id="quickGuide"
  5074. type="0"
  5075. url=""
  5076. size="344KB" >
  5077. </productMenu>
  5078. <productMenu id="userGuide"
  5079. type="1"
  5080. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5081. size="3.41MB" >
  5082. </productMenu>
  5083. <productMenu id="connectGuide"
  5084. type="1"
  5085. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5086. size="1.12MB" >
  5087. </productMenu>
  5088. <productMenu id="volume"
  5089. type="11" >
  5090. </productMenu>
  5091. <productMenu id="battery"
  5092. type="1" >
  5093. </productMenu>
  5094. <productID id="3148"
  5095. />
  5096. <productGroupable type="0"
  5097. />
  5098. </product>
  5099. <product id="Impulse"
  5100. name="Impulse"
  5101. series="Helmet"
  5102. latestVersion="2.0"
  5103. show = "-1" >
  5104. <productMenu id="protocol"
  5105. type="2" >
  5106. </productMenu>
  5107. <productMenu id="alexa"
  5108. type="0" >
  5109. </productMenu>
  5110. <productMenu id="ota"
  5111. type="0" >
  5112. </productMenu>
  5113. <productMenu id="wa"
  5114. type="8" >
  5115. </productMenu>
  5116. <productMenu id="manager"
  5117. type="0" >
  5118. </productMenu>
  5119. <productMenu id="sip"
  5120. type="1" >
  5121. </productMenu>
  5122. <productMenu id="led"
  5123. type="3" >
  5124. </productMenu>
  5125. <productMenu id="meshIntercom"
  5126. type="20" >
  5127. </productMenu>
  5128. <productMenu id="bluetoothIntercom"
  5129. type="1" >
  5130. </productMenu>
  5131. <productMenu id="phone"
  5132. type="1" >
  5133. </productMenu>
  5134. <productMenu id="music"
  5135. type="1" >
  5136. </productMenu>
  5137. <productMenu id="fmradio"
  5138. type="1" >
  5139. </productMenu>
  5140. <productMenu id="deviceSetting"
  5141. type="1"
  5142. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5143. </productMenu>
  5144. <productMenu id="quickGuide"
  5145. type="1"
  5146. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5147. size="344KB" >
  5148. </productMenu>
  5149. <productMenu id="userGuide"
  5150. type="1"
  5151. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5152. size="3.41MB" >
  5153. </productMenu>
  5154. <productMenu id="volume"
  5155. type="11" >
  5156. </productMenu>
  5157. <productMenu id="battery"
  5158. type="1" >
  5159. </productMenu>
  5160. <productID id="3221"
  5161. />
  5162. <productGroupable type="0"
  5163. />
  5164. </product>
  5165. <product id="Stryker"
  5166. name="Stryker"
  5167. series="Helmet"
  5168. latestVersion="1.4.1"
  5169. show = "1" >
  5170. <productMenu id="protocol"
  5171. type="2" >
  5172. </productMenu>
  5173. <productMenu id="alexa"
  5174. type="0" >
  5175. </productMenu>
  5176. <productMenu id="ota"
  5177. type="0" >
  5178. </productMenu>
  5179. <productMenu id="wa"
  5180. type="40" >
  5181. </productMenu>
  5182. <productMenu id="manager"
  5183. type="0" >
  5184. </productMenu>
  5185. <productMenu id="sip"
  5186. type="1" >
  5187. </productMenu>
  5188. <productMenu id="led"
  5189. type="1" >
  5190. <productMenuType version="1.0.1"
  5191. type="2"
  5192. />
  5193. <productMenuType version="1.0"
  5194. type="1"
  5195. />
  5196. </productMenu>
  5197. <productMenu id="meshIntercom"
  5198. type="30" >
  5199. <productMenuType version="1.1.1"
  5200. type="20"
  5201. />
  5202. </productMenu>
  5203. <productMenu id="meshIntercom+"
  5204. type="3"
  5205. url="2" >
  5206. <productMenuType version="1.3.9"
  5207. type="2"
  5208. />
  5209. <productMenuURL version="1.1.1"
  5210. url="0"
  5211. />
  5212. </productMenu>
  5213. <productMenu id="waveIntercom"
  5214. type="1" >
  5215. <productMenuType version="1.2.9"
  5216. type="0"
  5217. />
  5218. </productMenu>
  5219. <productMenu id="bluetoothIntercom"
  5220. type="1" >
  5221. </productMenu>
  5222. <productMenu id="phone"
  5223. type="1" >
  5224. </productMenu>
  5225. <productMenu id="music"
  5226. type="1" >
  5227. </productMenu>
  5228. <productMenu id="fmradio"
  5229. type="1" >
  5230. </productMenu>
  5231. <productMenu id="deviceSetting"
  5232. type="1"
  5233. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5234. <productMenuURL version="1.3.9"
  5235. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5236. />
  5237. <productMenuURL version="1.1.1"
  5238. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5239. />
  5240. <productMenuURL version="1.0.4"
  5241. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5242. />
  5243. </productMenu>
  5244. <productMenu id="quickGuide"
  5245. type="0"
  5246. url=""
  5247. size="344KB" >
  5248. </productMenu>
  5249. <productMenu id="userGuide"
  5250. type="1"
  5251. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5252. size="3.41MB" >
  5253. </productMenu>
  5254. <productMenu id="connectGuide"
  5255. type="1"
  5256. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5257. size="1.12MB" >
  5258. </productMenu>
  5259. <productMenu id="volume"
  5260. type="11" >
  5261. </productMenu>
  5262. <productMenu id="battery"
  5263. type="1" >
  5264. </productMenu>
  5265. <productID id="3154"
  5266. />
  5267. <productGroupable type="0"
  5268. />
  5269. </product>
  5270. <product id="SRL3Plus"
  5271. name="SRL3 Plus"
  5272. series="60"
  5273. latestVersion="0.9.14"
  5274. latestVersionMesh="0.19"
  5275. latestVersionVoicePrompt="1.8"
  5276. show = "-1" >
  5277. <productMenu id="protocol"
  5278. type="2" >
  5279. </productMenu>
  5280. <productMenu id="ota"
  5281. type="0" >
  5282. <otaLanguages>
  5283. <otaLanguage
  5284. id="0"
  5285. name="English"
  5286. package="0"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="French"
  5291. package="1"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Spanish"
  5296. package="2"
  5297. />
  5298. <otaLanguage
  5299. id="0"
  5300. name="Italian"
  5301. package="3"
  5302. />
  5303. <otaLanguage
  5304. id="0"
  5305. name="German"
  5306. package="4"
  5307. />
  5308. <otaLanguage
  5309. id="0"
  5310. name="Dutch"
  5311. package="5"
  5312. />
  5313. <otaLanguage
  5314. id="0"
  5315. name="Russian"
  5316. package="6"
  5317. />
  5318. <otaLanguage
  5319. id="0"
  5320. name="Chinese"
  5321. package="7"
  5322. />
  5323. <otaLanguage
  5324. id="0"
  5325. name="Korean"
  5326. package="8"
  5327. />
  5328. <otaLanguage
  5329. id="0"
  5330. name="Japanese"
  5331. package="9"
  5332. />
  5333. <otaLanguage
  5334. id="0"
  5335. name="Finnish"
  5336. package="10"
  5337. />
  5338. <otaLanguage
  5339. id="0"
  5340. name="Polish"
  5341. package="11"
  5342. />
  5343. </otaLanguages>
  5344. <otaPackages>
  5345. <package
  5346. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5347. size="5183988"
  5348. />
  5349. <package
  5350. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5351. size="5183988"
  5352. />
  5353. <package
  5354. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5355. size="5183988"
  5356. />
  5357. <package
  5358. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5359. size="5183988"
  5360. />
  5361. <package
  5362. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5363. size="5183988"
  5364. />
  5365. <package
  5366. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5367. size="5183988"
  5368. />
  5369. <package
  5370. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5371. size="5183988"
  5372. />
  5373. <package
  5374. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5375. size="5183988"
  5376. />
  5377. <package
  5378. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5379. size="5183988"
  5380. />
  5381. <package
  5382. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5383. size="5183988"
  5384. />
  5385. <package
  5386. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5387. size="5183988"
  5388. />
  5389. <package
  5390. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5391. size="5183988"
  5392. />
  5393. </otaPackages>
  5394. </productMenu>
  5395. <productMenu id="sip"
  5396. type="1" >
  5397. </productMenu>
  5398. <productMenu id="meshIntercom+"
  5399. type="3"
  5400. url="2" >
  5401. </productMenu>
  5402. <productMenu id="waveIntercom"
  5403. type="1" >
  5404. </productMenu>
  5405. <productMenu id="bluetoothIntercom"
  5406. type="1"
  5407. url="2" >
  5408. </productMenu>
  5409. <productMenu id="bluetoothIntercomGrouping"
  5410. type="0" >
  5411. </productMenu>
  5412. <productMenu id="fmradio"
  5413. type="1"
  5414. url="1" >
  5415. </productMenu>
  5416. <productMenu id="phone"
  5417. type="1" >
  5418. </productMenu>
  5419. <productMenu id="music"
  5420. type="1" >
  5421. </productMenu>
  5422. <productMenu id="musicSharing"
  5423. type="0" >
  5424. </productMenu>
  5425. <productMenu id="deviceSetting"
  5426. type="1"
  5427. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5428. </productMenu>
  5429. <productMenu id="quickGuide"
  5430. type="0"
  5431. url=""
  5432. size="1.12MB" >
  5433. </productMenu>
  5434. <productMenu id="userGuide"
  5435. type="0"
  5436. url=""
  5437. size="2.0MB" >
  5438. </productMenu>
  5439. <productMenu id="videoGuide"
  5440. type="0"
  5441. url=""
  5442. size="3.41MB" >
  5443. </productMenu>
  5444. <productMenu id="volume"
  5445. type="16" >
  5446. </productMenu>
  5447. <productMenu id="soundMode"
  5448. type="0" >
  5449. </productMenu>
  5450. <productMenu id="battery"
  5451. type="1" >
  5452. </productMenu>
  5453. <productID id="6A08"
  5454. />
  5455. <productGroupable type="0"
  5456. />
  5457. </product>
  5458. <product id="SRL3"
  5459. name="SRL3"
  5460. series="SRL"
  5461. latestVersion="1.5"
  5462. show = "1" >
  5463. <productMenu id="protocol"
  5464. type="2" >
  5465. </productMenu>
  5466. <productMenu id="alexa"
  5467. type="0" >
  5468. </productMenu>
  5469. <productMenu id="ota"
  5470. type="0" >
  5471. </productMenu>
  5472. <productMenu id="wa"
  5473. type="1" >
  5474. </productMenu>
  5475. <productMenu id="sip"
  5476. type="1" >
  5477. </productMenu>
  5478. <productMenu id="meshIntercom"
  5479. type="30" >
  5480. </productMenu>
  5481. <productMenu id="meshIntercom+"
  5482. type="3"
  5483. url="2" >
  5484. <productMenuType version="1.3.9"
  5485. type="2"
  5486. />
  5487. </productMenu>
  5488. <productMenu id="waveIntercom"
  5489. type="1" >
  5490. <productMenuType version="1.4.9"
  5491. type="0"
  5492. />
  5493. </productMenu>
  5494. <productMenu id="bluetoothIntercom"
  5495. type="1" >
  5496. </productMenu>
  5497. <productMenu id="phone"
  5498. type="1" >
  5499. </productMenu>
  5500. <productMenu id="music"
  5501. type="1" >
  5502. </productMenu>
  5503. <productMenu id="fmradio"
  5504. type="1" >
  5505. </productMenu>
  5506. <productMenu id="deviceSetting"
  5507. type="1"
  5508. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5509. <productMenuURL version="1.3"
  5510. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5511. />
  5512. </productMenu>
  5513. <productMenu id="quickGuide"
  5514. type="0"
  5515. url=""
  5516. size="344KB" >
  5517. </productMenu>
  5518. <productMenu id="userGuide"
  5519. type="1"
  5520. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5521. size="3.41MB" >
  5522. </productMenu>
  5523. <productMenu id="connectGuide"
  5524. type="1"
  5525. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5526. size="1.12MB" >
  5527. </productMenu>
  5528. <productMenu id="volume"
  5529. type="11" >
  5530. </productMenu>
  5531. <productMenu id="battery"
  5532. type="1" >
  5533. </productMenu>
  5534. <productID id="3219"
  5535. />
  5536. <productGroupable type="0"
  5537. />
  5538. </product>
  5539. <product id="SRL_Mesh"
  5540. name="SRL-Mesh"
  5541. series="SRL"
  5542. latestVersion="1.7.1"
  5543. show = "1" >
  5544. <productMenu id="protocol"
  5545. type="2" >
  5546. </productMenu>
  5547. <productMenu id="alexa"
  5548. type="0" >
  5549. </productMenu>
  5550. <productMenu id="ota"
  5551. type="0" >
  5552. </productMenu>
  5553. <productMenu id="wa"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="sip"
  5557. type="1" >
  5558. </productMenu>
  5559. <productMenu id="meshIntercom"
  5560. type="30" >
  5561. <productMenuType version="1.1.1"
  5562. type="20"
  5563. />
  5564. </productMenu>
  5565. <productMenu id="meshIntercom+"
  5566. type="3"
  5567. url="2" >
  5568. <productMenuType version="1.5.9"
  5569. type="2"
  5570. />
  5571. <productMenuURL version="1.1.1"
  5572. url="0"
  5573. />
  5574. </productMenu>
  5575. <productMenu id="waveIntercom"
  5576. type="1" >
  5577. <productMenuType version="1.6.9"
  5578. type="0"
  5579. />
  5580. </productMenu>
  5581. <productMenu id="bluetoothIntercom"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="phone"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="music"
  5588. type="1" >
  5589. </productMenu>
  5590. <productMenu id="fmradio"
  5591. type="1" >
  5592. </productMenu>
  5593. <productMenu id="deviceSetting"
  5594. type="1"
  5595. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5596. <productMenuURL version="1.5"
  5597. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5598. />
  5599. <productMenuURL version="1.1.1"
  5600. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5601. />
  5602. <productMenuURL version="1.0.3"
  5603. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5604. />
  5605. </productMenu>
  5606. <productMenu id="quickGuide"
  5607. type="0"
  5608. url=""
  5609. size="344KB" >
  5610. </productMenu>
  5611. <productMenu id="userGuide"
  5612. type="1"
  5613. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5614. size="3.41MB" >
  5615. </productMenu>
  5616. <productMenu id="connectGuide"
  5617. type="1"
  5618. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5619. size="1.12MB" >
  5620. </productMenu>
  5621. <productMenu id="volume"
  5622. type="11" >
  5623. </productMenu>
  5624. <productMenu id="battery"
  5625. type="1" >
  5626. </productMenu>
  5627. <productID id="3216"
  5628. />
  5629. <productGroupable type="0"
  5630. />
  5631. </product>
  5632. <product id="SRL_EXT"
  5633. name="SRL-EXT"
  5634. series="SRL"
  5635. latestVersion="1.7.1"
  5636. show = "1" >
  5637. <productMenu id="protocol"
  5638. type="2" >
  5639. </productMenu>
  5640. <productMenu id="alexa"
  5641. type="0" >
  5642. </productMenu>
  5643. <productMenu id="ota"
  5644. type="0" >
  5645. </productMenu>
  5646. <productMenu id="wa"
  5647. type="0" >
  5648. </productMenu>
  5649. <productMenu id="sip"
  5650. type="1" >
  5651. </productMenu>
  5652. <productMenu id="meshIntercom"
  5653. type="30" >
  5654. <productMenuType version="1.1.1"
  5655. type="20"
  5656. />
  5657. </productMenu>
  5658. <productMenu id="meshIntercom+"
  5659. type="3"
  5660. url="2" >
  5661. <productMenuType version="1.5.9"
  5662. type="2"
  5663. />
  5664. <productMenuURL version="1.1.1"
  5665. url="0"
  5666. />
  5667. </productMenu>
  5668. <productMenu id="waveIntercom"
  5669. type="1" >
  5670. <productMenuType version="1.6.9"
  5671. type="0"
  5672. />
  5673. </productMenu>
  5674. <productMenu id="bluetoothIntercom"
  5675. type="1" >
  5676. </productMenu>
  5677. <productMenu id="phone"
  5678. type="1" >
  5679. </productMenu>
  5680. <productMenu id="music"
  5681. type="1" >
  5682. </productMenu>
  5683. <productMenu id="fmradio"
  5684. type="1" >
  5685. </productMenu>
  5686. <productMenu id="deviceSetting"
  5687. type="1"
  5688. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5689. <productMenuURL version="1.5"
  5690. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5691. />
  5692. <productMenuURL version="1.1.1"
  5693. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5694. />
  5695. <productMenuURL version="1.0.3"
  5696. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5697. />
  5698. </productMenu>
  5699. <productMenu id="quickGuide"
  5700. type="0"
  5701. url=""
  5702. size="344KB" >
  5703. </productMenu>
  5704. <productMenu id="userGuide"
  5705. type="1"
  5706. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5707. size="3.41MB" >
  5708. </productMenu>
  5709. <productMenu id="connectGuide"
  5710. type="1"
  5711. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5712. size="1.12MB" >
  5713. </productMenu>
  5714. <productMenu id="volume"
  5715. type="11" >
  5716. </productMenu>
  5717. <productMenu id="battery"
  5718. type="1" >
  5719. </productMenu>
  5720. <productID id="3212"
  5721. />
  5722. <productGroupable type="0"
  5723. />
  5724. </product>
  5725. <product id="SRL2"
  5726. name="SRL2"
  5727. series="SRL"
  5728. latestVersion="1.0.9"
  5729. show = "1" >
  5730. <productMenu id="protocol"
  5731. type="0">
  5732. </productMenu>
  5733. <productMenu id="sip"
  5734. type="1" >
  5735. </productMenu>
  5736. <productMenu id="bluetoothIntercom"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="intercomSetting"
  5740. type="1" >
  5741. </productMenu>
  5742. <productMenu id="phone"
  5743. type="2" >
  5744. </productMenu>
  5745. <productMenu id="fmradio"
  5746. type="3" >
  5747. </productMenu>
  5748. <productMenu id="deviceSetting"
  5749. type="1"
  5750. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5751. </productMenu>
  5752. <productMenu id="quickGuide"
  5753. type="1"
  5754. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5755. size="846KB" >
  5756. </productMenu>
  5757. <productMenu id="userGuide"
  5758. type="1"
  5759. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5760. size="1.18MB" >
  5761. </productMenu>
  5762. <productMenu id="connectGuide"
  5763. type="1"
  5764. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5765. size="1.12MB" >
  5766. </productMenu>
  5767. <productID id="4530"
  5768. />
  5769. <productGroupable type="1"
  5770. />
  5771. </product>
  5772. <product id="Neotec2"
  5773. name="SRL Neotec2"
  5774. series="SRL"
  5775. latestVersion="1.1.5"
  5776. show = "1" >
  5777. <productMenu id="protocol"
  5778. type="0">
  5779. </productMenu>
  5780. <productMenu id="sip"
  5781. type="1" >
  5782. </productMenu>
  5783. <productMenu id="bluetoothIntercom"
  5784. type="1" >
  5785. </productMenu>
  5786. <productMenu id="intercomSetting"
  5787. type="1" >
  5788. </productMenu>
  5789. <productMenu id="phone"
  5790. type="2" >
  5791. </productMenu>
  5792. <productMenu id="fmradio"
  5793. type="3" >
  5794. </productMenu>
  5795. <productMenu id="deviceSetting"
  5796. type="1"
  5797. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5798. </productMenu>
  5799. <productMenu id="quickGuide"
  5800. type="0"
  5801. url=""
  5802. size="796KB" >
  5803. </productMenu>
  5804. <productMenu id="userGuide"
  5805. type="1"
  5806. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5807. size="1.90MB" >
  5808. </productMenu>
  5809. <productMenu id="connectGuide"
  5810. type="1"
  5811. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5812. size="1.12MB" >
  5813. </productMenu>
  5814. <productID id="4510"
  5815. />
  5816. <productGroupable type="1"
  5817. />
  5818. </product>
  5819. <product id="MultiComNeo"
  5820. name="MultiCom Neo"
  5821. series="MultiCom"
  5822. latestVersion="1.0"
  5823. latestVersionVoicePrompt="1.6"
  5824. show = "-1" >
  5825. <productMenu id="protocol"
  5826. type="2" >
  5827. </productMenu>
  5828. <productMenu id="ota"
  5829. type="0" >
  5830. <otaPackages>
  5831. <package
  5832. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5833. size="2945812"
  5834. />
  5835. </otaPackages>
  5836. </productMenu>
  5837. <productMenu id="meshIntercom+"
  5838. type="3"
  5839. url="2" >
  5840. </productMenu>
  5841. <productMenu id="waveIntercom"
  5842. type="1" >
  5843. </productMenu>
  5844. <productMenu id="phone"
  5845. type="1" >
  5846. </productMenu>
  5847. <productMenu id="music"
  5848. type="1" >
  5849. </productMenu>
  5850. <productMenu id="musicSharing"
  5851. type="0" >
  5852. </productMenu>
  5853. <productMenu id="deviceSetting"
  5854. type="1"
  5855. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5856. </productMenu>
  5857. <productMenu id="quickGuide"
  5858. type="0"
  5859. url=""
  5860. size="1.12MB" >
  5861. </productMenu>
  5862. <productMenu id="userGuide"
  5863. type="1"
  5864. url=""
  5865. size="2.0MB" >
  5866. </productMenu>
  5867. <productMenu id="videoGuide"
  5868. type="0"
  5869. url=""
  5870. size="3.41MB" >
  5871. </productMenu>
  5872. <productMenu id="connectGuide"
  5873. type="0"
  5874. url=""
  5875. size="1.12MB" >
  5876. </productMenu>
  5877. <productMenu id="volume"
  5878. type="12" >
  5879. </productMenu>
  5880. <productMenu id="volume+"
  5881. type="2"
  5882. url="0x2000" >
  5883. </productMenu>
  5884. <productMenu id="battery"
  5885. type="1" >
  5886. </productMenu>
  5887. <productID id="685F"
  5888. />
  5889. <productGroupable type="0"
  5890. />
  5891. </product>
  5892. <product id="SPIDERST2ANC"
  5893. name="SPIDER ST2 ANC"
  5894. series="SPIDER"
  5895. latestVersion="0.5.1"
  5896. latestVersionVoicePrompt="0.2"
  5897. latestVersionMesh="0.8"
  5898. show = "-1" >
  5899. <productMenu id="protocol"
  5900. type="2" >
  5901. </productMenu>
  5902. <productMenu id="ota"
  5903. type="0" >
  5904. <otaPackages>
  5905. <package
  5906. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5907. size="2945812"
  5908. />
  5909. </otaPackages>
  5910. </productMenu>
  5911. <productMenu id="wa"
  5912. type="0" >
  5913. </productMenu>
  5914. <productMenu id="led"
  5915. type="1" >
  5916. </productMenu>
  5917. <productMenu id="meshIntercom"
  5918. type="30" >
  5919. </productMenu>
  5920. <productMenu id="fmradio"
  5921. type="1" >
  5922. </productMenu>
  5923. <productMenu id="phone"
  5924. type="1" >
  5925. </productMenu>
  5926. <productMenu id="music"
  5927. type="1" >
  5928. </productMenu>
  5929. <productMenu id="musicSharing"
  5930. type="0" >
  5931. </productMenu>
  5932. <productMenu id="deviceSetting"
  5933. type="1"
  5934. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5935. </productMenu>
  5936. <productMenu id="quickGuide"
  5937. type="1"
  5938. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5939. size="1.12MB" >
  5940. </productMenu>
  5941. <productMenu id="userGuide"
  5942. type="1"
  5943. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5944. size="2.0MB" >
  5945. </productMenu>
  5946. <productMenu id="videoGuide"
  5947. type="1"
  5948. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5949. size="3.41MB" >
  5950. </productMenu>
  5951. <productMenu id="volume"
  5952. type="12" >
  5953. </productMenu>
  5954. <productMenu id="battery"
  5955. type="1" >
  5956. </productMenu>
  5957. <productID id="6A00"
  5958. />
  5959. <productGroupable type="0"
  5960. />
  5961. </product>
  5962. <product id="SPIDER_ST1"
  5963. name="SPIDER ST1"
  5964. series="SPIDER"
  5965. latestVersion="2.5.3"
  5966. latestVersionVoicePrompt="1.6"
  5967. show = "1" >
  5968. <productMenu id="protocol"
  5969. type="2" >
  5970. </productMenu>
  5971. <productMenu id="alexa"
  5972. type="0" >
  5973. </productMenu>
  5974. <productMenu id="ota"
  5975. type="2" >
  5976. <productMenuType version="2.1.9"
  5977. type="0"
  5978. />
  5979. <otaPackages>
  5980. <package
  5981. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5982. size="2945812"
  5983. />
  5984. </otaPackages>
  5985. </productMenu>
  5986. <productMenu id="wa"
  5987. type="0" >
  5988. </productMenu>
  5989. <productMenu id="meshIntercom"
  5990. type="30" >
  5991. <productMenuType version="2.1.1"
  5992. type="20"
  5993. />
  5994. </productMenu>
  5995. <productMenu id="meshIntercom+"
  5996. type="3"
  5997. url="2" >
  5998. <productMenuType version="2.2.9"
  5999. type="2"
  6000. />
  6001. <productMenuURL version="2.1.1"
  6002. url="0"
  6003. />
  6004. </productMenu>
  6005. <productMenu id="waveIntercom"
  6006. type="1" >
  6007. <productMenuType version="2.3.9"
  6008. type="0"
  6009. />
  6010. </productMenu>
  6011. <productMenu id="phone"
  6012. type="1" >
  6013. </productMenu>
  6014. <productMenu id="music"
  6015. type="1" >
  6016. </productMenu>
  6017. <productMenu id="musicSharing"
  6018. type="0" >
  6019. </productMenu>
  6020. <productMenu id="deviceSetting"
  6021. type="1"
  6022. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6023. <productMenuURL version="2.4.9"
  6024. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6025. />
  6026. <productMenuURL version="2.2.2"
  6027. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6028. />
  6029. <productMenuURL version="2.1.1"
  6030. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6031. />
  6032. </productMenu>
  6033. <productMenu id="quickGuide"
  6034. type="0"
  6035. url=""
  6036. size="1.12MB" >
  6037. </productMenu>
  6038. <productMenu id="userGuide"
  6039. type="1"
  6040. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6041. size="2.0MB" >
  6042. </productMenu>
  6043. <productMenu id="videoGuide"
  6044. type="1"
  6045. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6046. size="3.41MB" >
  6047. </productMenu>
  6048. <productMenu id="connectGuide"
  6049. type="1"
  6050. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6051. size="1.12MB" >
  6052. </productMenu>
  6053. <productMenu id="volume"
  6054. type="12" >
  6055. </productMenu>
  6056. <productMenu id="volume+"
  6057. type="2"
  6058. url="0x2000" >
  6059. </productMenu>
  6060. <productMenu id="battery"
  6061. type="1" >
  6062. </productMenu>
  6063. <productID id="6800"
  6064. />
  6065. <productGroupable type="0"
  6066. />
  6067. </product>
  6068. <product id="SPIDER_ST1"
  6069. name="SPIDER ST1"
  6070. series="SPIDER"
  6071. latestVersion="1.2.2"
  6072. show = "-1" >
  6073. <productMenu id="protocol"
  6074. type="2" >
  6075. </productMenu>
  6076. <productMenu id="alexa"
  6077. type="0" >
  6078. </productMenu>
  6079. <productMenu id="ota"
  6080. type="0" >
  6081. </productMenu>
  6082. <productMenu id="wa"
  6083. type="0" >
  6084. </productMenu>
  6085. <productMenu id="meshIntercom"
  6086. type="20" >
  6087. </productMenu>
  6088. <productMenu id="phone"
  6089. type="1" >
  6090. </productMenu>
  6091. <productMenu id="music"
  6092. type="1" >
  6093. </productMenu>
  6094. <productMenu id="deviceSetting"
  6095. type="1"
  6096. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6097. </productMenu>
  6098. <productMenu id="quickGuide"
  6099. type="0"
  6100. url=""
  6101. size="1.12MB" >
  6102. </productMenu>
  6103. <productMenu id="userGuide"
  6104. type="1"
  6105. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6106. size="2.0MB" >
  6107. </productMenu>
  6108. <productMenu id="videoGuide"
  6109. type="1"
  6110. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6111. size="3.41MB" >
  6112. </productMenu>
  6113. <productMenu id="volume"
  6114. type="13" >
  6115. <productMenuType version="1.1.6"
  6116. type="14"/>
  6117. </productMenu>
  6118. <productMenu id="battery"
  6119. type="1" >
  6120. </productMenu>
  6121. <productID id="6510"
  6122. />
  6123. <productGroupable type="0"
  6124. />
  6125. </product>
  6126. <product id="SPIDER_RT1"
  6127. name="SPIDER RT1"
  6128. series="SPIDER"
  6129. latestVersion="2.5.3"
  6130. latestVersionVoicePrompt="1.6"
  6131. show = "1" >
  6132. <productMenu id="protocol"
  6133. type="2" >
  6134. </productMenu>
  6135. <productMenu id="alexa"
  6136. type="0" >
  6137. </productMenu>
  6138. <productMenu id="ota"
  6139. type="2" >
  6140. <productMenuType version="2.1.9"
  6141. type="0"
  6142. />
  6143. <otaPackages>
  6144. <package
  6145. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6146. size="2945812"
  6147. />
  6148. </otaPackages>
  6149. </productMenu>
  6150. <productMenu id="wa"
  6151. type="0" >
  6152. </productMenu>
  6153. <productMenu id="meshIntercom"
  6154. type="30" >
  6155. <productMenuType version="2.1.1"
  6156. type="20"
  6157. />
  6158. </productMenu>
  6159. <productMenu id="meshIntercom+"
  6160. type="3"
  6161. url="2" >
  6162. <productMenuType version="2.2.9"
  6163. type="2"
  6164. />
  6165. <productMenuURL version="2.1.1"
  6166. url="0"
  6167. />
  6168. </productMenu>
  6169. <productMenu id="waveIntercom"
  6170. type="1" >
  6171. <productMenuType version="2.3.9"
  6172. type="0"
  6173. />
  6174. </productMenu>
  6175. <productMenu id="phone"
  6176. type="1" >
  6177. </productMenu>
  6178. <productMenu id="music"
  6179. type="1" >
  6180. </productMenu>
  6181. <productMenu id="musicSharing"
  6182. type="0" >
  6183. </productMenu>
  6184. <productMenu id="deviceSetting"
  6185. type="1"
  6186. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6187. <productMenuURL version="2.4.9"
  6188. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6189. />
  6190. <productMenuURL version="2.2.2"
  6191. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6192. />
  6193. <productMenuURL version="2.1.1"
  6194. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6195. />
  6196. </productMenu>
  6197. <productMenu id="quickGuide"
  6198. type="0"
  6199. url=""
  6200. size="1.12MB" >
  6201. </productMenu>
  6202. <productMenu id="userGuide"
  6203. type="1"
  6204. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6205. size="2.0MB" >
  6206. </productMenu>
  6207. <productMenu id="videoGuide"
  6208. type="1"
  6209. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6210. size="3.41MB" >
  6211. </productMenu>
  6212. <productMenu id="connectGuide"
  6213. type="1"
  6214. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6215. size="1.12MB" >
  6216. </productMenu>
  6217. <productMenu id="volume"
  6218. type="12" >
  6219. </productMenu>
  6220. <productMenu id="volume+"
  6221. type="2"
  6222. url="0x2000" >
  6223. </productMenu>
  6224. <productMenu id="battery"
  6225. type="1" >
  6226. </productMenu>
  6227. <productID id="6810"
  6228. />
  6229. <productGroupable type="0"
  6230. />
  6231. </product>
  6232. <product id="SPIDER_RT1"
  6233. name="SPIDER RT1"
  6234. series="SPIDER"
  6235. latestVersion="1.2.2"
  6236. show = "-1" >
  6237. <productMenu id="protocol"
  6238. type="2" >
  6239. </productMenu>
  6240. <productMenu id="alexa"
  6241. type="0" >
  6242. </productMenu>
  6243. <productMenu id="ota"
  6244. type="0" >
  6245. </productMenu>
  6246. <productMenu id="wa"
  6247. type="0" >
  6248. </productMenu>
  6249. <productMenu id="meshIntercom"
  6250. type="20" >
  6251. </productMenu>
  6252. <productMenu id="phone"
  6253. type="1" >
  6254. </productMenu>
  6255. <productMenu id="music"
  6256. type="1" >
  6257. </productMenu>
  6258. <productMenu id="deviceSetting"
  6259. type="1"
  6260. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6261. </productMenu>
  6262. <productMenu id="quickGuide"
  6263. type="0"
  6264. url=""
  6265. size="1.32MB" >
  6266. </productMenu>
  6267. <productMenu id="userGuide"
  6268. type="1"
  6269. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6270. size="1.79MB" >
  6271. </productMenu>
  6272. <productMenu id="videoGuide"
  6273. type="1"
  6274. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6275. size="3.41MB" >
  6276. </productMenu>
  6277. <productMenu id="volume"
  6278. type="13" >
  6279. <productMenuType version="1.1.6"
  6280. type="14"/>
  6281. </productMenu>
  6282. <productMenu id="battery"
  6283. type="1" >
  6284. </productMenu>
  6285. <productID id="6500"
  6286. />
  6287. <productGroupable type="0"
  6288. />
  6289. </product>
  6290. <product id="30K"
  6291. name="30K"
  6292. series="30"
  6293. latestVersion="4.5.1"
  6294. show = "1" >
  6295. <productMenu id="protocol"
  6296. type="2" >
  6297. </productMenu>
  6298. <productMenu id="alexa"
  6299. type="0" >
  6300. </productMenu>
  6301. <productMenu id="wa"
  6302. type="1" >
  6303. </productMenu>
  6304. <productMenu id="sip"
  6305. type="1" >
  6306. </productMenu>
  6307. <productMenu id="meshIntercom"
  6308. type="30" >
  6309. <productMenuType version="4.0.4"
  6310. type="20"
  6311. />
  6312. </productMenu>
  6313. <productMenu id="meshIntercom+"
  6314. type="3"
  6315. url="2" >
  6316. <productMenuType version="4.3.9"
  6317. type="2"
  6318. />
  6319. <productMenuURL version="4.0.4"
  6320. url="0"
  6321. />
  6322. </productMenu>
  6323. <productMenu id="waveIntercom"
  6324. type="1" >
  6325. <productMenuType version="4.4.9"
  6326. type="0"
  6327. />
  6328. </productMenu>
  6329. <productMenu id="bluetoothIntercom"
  6330. type="1" >
  6331. </productMenu>
  6332. <productMenu id="phone"
  6333. type="1" >
  6334. </productMenu>
  6335. <productMenu id="music"
  6336. type="1" >
  6337. </productMenu>
  6338. <productMenu id="fmradio"
  6339. type="1" >
  6340. </productMenu>
  6341. <productMenu id="deviceSetting"
  6342. type="1"
  6343. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6344. <productMenuURL version="4.3"
  6345. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6346. />
  6347. <productMenuURL version="4.2"
  6348. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6349. />
  6350. <productMenuURL version="4.0.4"
  6351. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6352. />
  6353. </productMenu>
  6354. <productMenu id="quickGuide"
  6355. type="0"
  6356. url=""
  6357. size="934KB" >
  6358. </productMenu>
  6359. <productMenu id="userGuide"
  6360. type="1"
  6361. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6362. size="1.14MB" >
  6363. </productMenu>
  6364. <productMenu id="connectGuide"
  6365. type="1"
  6366. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6367. size="1.12MB" >
  6368. </productMenu>
  6369. <productMenu id="volume"
  6370. type="11" >
  6371. </productMenu>
  6372. <productMenu id="battery"
  6373. type="1" >
  6374. </productMenu>
  6375. <productID id="3211"
  6376. />
  6377. <productGroupable type="0"
  6378. />
  6379. </product>
  6380. <product id="30K"
  6381. name="30K"
  6382. series="30"
  6383. latestVersion="3.5"
  6384. show = "-1" >
  6385. <productMenu id="protocol"
  6386. type="1"
  6387. url="0">
  6388. </productMenu>
  6389. <productMenu id="wa"
  6390. type="7" >
  6391. </productMenu>
  6392. <productMenu id="sip"
  6393. type="1" >
  6394. </productMenu>
  6395. <productMenu id="meshIntercom"
  6396. type="20" >
  6397. <productMenuType version="2.9.9"
  6398. type="10"
  6399. />
  6400. </productMenu>
  6401. <productMenu id="meshIntercom+"
  6402. type="3"
  6403. url="2" >
  6404. <productMenuType version="3.4.9"
  6405. type="2"
  6406. />
  6407. <productMenuType version="2.9.9"
  6408. type="1"
  6409. />
  6410. <productMenuURL version="3.3.1"
  6411. url="0"
  6412. />
  6413. </productMenu>
  6414. <productMenu id="bluetoothIntercom"
  6415. type="1" >
  6416. </productMenu>
  6417. <productMenu id="phone"
  6418. type="1" >
  6419. </productMenu>
  6420. <productMenu id="music"
  6421. type="1" >
  6422. </productMenu>
  6423. <productMenu id="fmradio"
  6424. type="1" >
  6425. </productMenu>
  6426. <productMenu id="deviceSetting"
  6427. type="1"
  6428. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6429. <productMenuURL version="3.4.9"
  6430. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6431. />
  6432. <productMenuURL version="3.3.1"
  6433. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6434. />
  6435. <productMenuURL version="3.0.1"
  6436. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6437. />
  6438. <productMenuURL version="2.3.1"
  6439. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6440. />
  6441. <productMenuURL version="2.0"
  6442. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6443. />
  6444. <productMenuURL version="1.0.3"
  6445. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6446. />
  6447. </productMenu>
  6448. <productMenu id="quickGuide"
  6449. type="0"
  6450. url=""
  6451. size="1.06MB" >
  6452. </productMenu>
  6453. <productMenu id="userGuide"
  6454. type="1"
  6455. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6456. size="3.15MB" >
  6457. </productMenu>
  6458. <productMenu id="volume"
  6459. type="1" >
  6460. </productMenu>
  6461. <productID id="3110"
  6462. />
  6463. <productGroupable type="0"
  6464. />
  6465. </product>
  6466. <product id="FURY"
  6467. name="FURY"
  6468. series="Helmet"
  6469. latestVersion="1.0"
  6470. show = "-1" >
  6471. <productMenu id="protocol"
  6472. type="2" >
  6473. </productMenu>
  6474. <productMenu id="alexa"
  6475. type="0" >
  6476. </productMenu>
  6477. <productMenu id="ota"
  6478. type="0" >
  6479. </productMenu>
  6480. <productMenu id="wa"
  6481. type="0" >
  6482. </productMenu>
  6483. <productMenu id="meshIntercom"
  6484. type="20" >
  6485. </productMenu>
  6486. <productMenu id="phone"
  6487. type="1" >
  6488. </productMenu>
  6489. <productMenu id="music"
  6490. type="1" >
  6491. </productMenu>
  6492. <productMenu id="fmradio"
  6493. type="1" >
  6494. </productMenu>
  6495. <productMenu id="deviceSetting"
  6496. type="1"
  6497. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6498. </productMenu>
  6499. <productMenu id="quickGuide"
  6500. type="1"
  6501. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6502. size="1.12MB" >
  6503. </productMenu>
  6504. <productMenu id="userGuide"
  6505. type="1"
  6506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6507. size="2.0MB" >
  6508. </productMenu>
  6509. <productMenu id="volume"
  6510. type="13" >
  6511. </productMenu>
  6512. <productMenu id="battery"
  6513. type="1" >
  6514. </productMenu>
  6515. <productID id="5552"
  6516. />
  6517. <productGroupable type="0"
  6518. />
  6519. </product>
  6520. <product id="MomentumM"
  6521. name="Momentum EVO"
  6522. series="Helmet"
  6523. latestVersion="2.1.2"
  6524. show = "1" >
  6525. <productMenu id="protocol"
  6526. type="1"
  6527. url="0">
  6528. </productMenu>
  6529. <productMenu id="wa"
  6530. type="3" >
  6531. </productMenu>
  6532. <productMenu id="sip"
  6533. type="1" >
  6534. </productMenu>
  6535. <productMenu id="meshIntercom"
  6536. type="20" >
  6537. <productMenuType version="1.9.9"
  6538. type="10"
  6539. />
  6540. </productMenu>
  6541. <productMenu id="bluetoothIntercom"
  6542. type="1" >
  6543. </productMenu>
  6544. <productMenu id="phone"
  6545. type="1" >
  6546. </productMenu>
  6547. <productMenu id="music"
  6548. type="1" >
  6549. </productMenu>
  6550. <productMenu id="fmradio"
  6551. type="1" >
  6552. </productMenu>
  6553. <productMenu id="deviceSetting"
  6554. type="1"
  6555. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6556. <productMenuURL version="1.0.1"
  6557. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6558. />
  6559. </productMenu>
  6560. <productMenu id="quickGuide"
  6561. type="1"
  6562. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6563. size="1.06MB" >
  6564. </productMenu>
  6565. <productMenu id="userGuide"
  6566. type="1"
  6567. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6568. size="3.15MB" >
  6569. </productMenu>
  6570. <productMenu id="connectGuide"
  6571. type="1"
  6572. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6573. size="1.12MB" >
  6574. </productMenu>
  6575. <productMenu id="volume"
  6576. type="2" >
  6577. </productMenu>
  6578. <productID id="3116"
  6579. />
  6580. <productGroupable type="0"
  6581. />
  6582. </product>
  6583. <product id="Momentum"
  6584. name="Momentum"
  6585. series="Helmet"
  6586. latestVersion="1.0.9"
  6587. show = "1" >
  6588. <productMenu id="protocol"
  6589. type="0">
  6590. </productMenu>
  6591. <productMenu id="sip"
  6592. type="1" >
  6593. </productMenu>
  6594. <productMenu id="bluetoothIntercom"
  6595. type="1" >
  6596. </productMenu>
  6597. <productMenu id="intercomSetting"
  6598. type="1" >
  6599. </productMenu>
  6600. <productMenu id="phone"
  6601. type="2" >
  6602. </productMenu>
  6603. <productMenu id="fmradio"
  6604. type="3" >
  6605. </productMenu>
  6606. <productMenu id="deviceSetting"
  6607. type="1"
  6608. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6609. </productMenu>
  6610. <productMenu id="quickGuide"
  6611. type="1"
  6612. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6613. size="796KB" >
  6614. </productMenu>
  6615. <productMenu id="userGuide"
  6616. type="1"
  6617. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6618. size="1.90MB" >
  6619. </productMenu>
  6620. <productMenu id="connectGuide"
  6621. type="1"
  6622. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6623. size="1.12MB" >
  6624. </productMenu>
  6625. <productID id="4310"
  6626. />
  6627. <productGroupable type="1"
  6628. />
  6629. </product>
  6630. <product id="Momentum_Pro"
  6631. name="Momentum Pro"
  6632. series="Helmet"
  6633. latestVersion="1.0.6"
  6634. show = "1" >
  6635. <productMenu id="protocol"
  6636. type="0">
  6637. </productMenu>
  6638. <productMenu id="sip"
  6639. type="1" >
  6640. </productMenu>
  6641. <productMenu id="bluetoothIntercom"
  6642. type="1" >
  6643. </productMenu>
  6644. <productMenu id="intercomSetting"
  6645. type="1" >
  6646. </productMenu>
  6647. <productMenu id="phone"
  6648. type="2" >
  6649. </productMenu>
  6650. <productMenu id="fmradio"
  6651. type="3" >
  6652. </productMenu>
  6653. <productMenu id="deviceSetting"
  6654. type="1"
  6655. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6656. </productMenu>
  6657. <productMenu id="quickGuide"
  6658. type="1"
  6659. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6660. size="796KB" >
  6661. </productMenu>
  6662. <productMenu id="userGuide"
  6663. type="1"
  6664. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6665. size="1.90MB" >
  6666. </productMenu>
  6667. <productMenu id="connectGuide"
  6668. type="1"
  6669. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6670. size="1.12MB" >
  6671. </productMenu>
  6672. <productID id="4330"
  6673. />
  6674. <productGroupable type="1"
  6675. />
  6676. </product>
  6677. <product id="Momentum_INC"
  6678. name="Momentum INC"
  6679. series="Helmet"
  6680. latestVersion="1.0.7"
  6681. show = "1" >
  6682. <productMenu id="protocol"
  6683. type="0">
  6684. </productMenu>
  6685. <productMenu id="sip"
  6686. type="1" >
  6687. </productMenu>
  6688. <productMenu id="bluetoothIntercom"
  6689. type="1" >
  6690. </productMenu>
  6691. <productMenu id="intercomSetting"
  6692. type="1" >
  6693. </productMenu>
  6694. <productMenu id="phone"
  6695. type="2" >
  6696. </productMenu>
  6697. <productMenu id="fmradio"
  6698. type="3" >
  6699. </productMenu>
  6700. <productMenu id="deviceSetting"
  6701. type="1"
  6702. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6703. </productMenu>
  6704. <productMenu id="quickGuide"
  6705. type="1"
  6706. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6707. size="794KB" >
  6708. </productMenu>
  6709. <productMenu id="userGuide"
  6710. type="1"
  6711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6712. size="1.53MB" >
  6713. </productMenu>
  6714. <productMenu id="connectGuide"
  6715. type="1"
  6716. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6717. size="1.12MB" >
  6718. </productMenu>
  6719. <productID id="4410"
  6720. />
  6721. <productGroupable type="1"
  6722. />
  6723. </product>
  6724. <product id="Momentum_INCP"
  6725. name="Momentum INC Pro"
  6726. series="Helmet"
  6727. latestVersion="1.0.4"
  6728. show = "1" >
  6729. <productMenu id="protocol"
  6730. type="0">
  6731. </productMenu>
  6732. <productMenu id="sip"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="bluetoothIntercom"
  6736. type="1" >
  6737. </productMenu>
  6738. <productMenu id="intercomSetting"
  6739. type="1" >
  6740. </productMenu>
  6741. <productMenu id="phone"
  6742. type="2" >
  6743. </productMenu>
  6744. <productMenu id="fmradio"
  6745. type="3" >
  6746. </productMenu>
  6747. <productMenu id="deviceSetting"
  6748. type="1"
  6749. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6750. </productMenu>
  6751. <productMenu id="quickGuide"
  6752. type="1"
  6753. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6754. size="794KB" >
  6755. </productMenu>
  6756. <productMenu id="userGuide"
  6757. type="1"
  6758. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6759. size="1.53MB" >
  6760. </productMenu>
  6761. <productMenu id="connectGuide"
  6762. type="1"
  6763. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6764. size="1.12MB" >
  6765. </productMenu>
  6766. <productID id="4430"
  6767. />
  6768. <productGroupable type="1"
  6769. />
  6770. </product>
  6771. <product id="Momentum_Lite"
  6772. name="Momentum Lite"
  6773. series="Helmet"
  6774. latestVersion="2.0.3"
  6775. show = "1" >
  6776. <productMenu id="protocol"
  6777. type="0">
  6778. </productMenu>
  6779. <productMenu id="sip"
  6780. type="1" >
  6781. </productMenu>
  6782. <productMenu id="bluetoothIntercom"
  6783. type="1" >
  6784. </productMenu>
  6785. <productMenu id="phone"
  6786. type="2" >
  6787. </productMenu>
  6788. <productMenu id="fmradio"
  6789. type="3" >
  6790. </productMenu>
  6791. <productMenu id="deviceSetting"
  6792. type="1"
  6793. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6794. <productMenuURL version="1.1"
  6795. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6796. />
  6797. </productMenu>
  6798. <productMenu id="quickGuide"
  6799. type="1"
  6800. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6801. size="790KB" >
  6802. </productMenu>
  6803. <productMenu id="userGuide"
  6804. type="1"
  6805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6806. size="1.42MB" >
  6807. </productMenu>
  6808. <productMenu id="connectGuide"
  6809. type="1"
  6810. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6811. size="1.12MB" >
  6812. </productMenu>
  6813. <productID id="5526"
  6814. />
  6815. <productGroupable type="0"
  6816. />
  6817. </product>
  6818. <product id="OUTRUSHM"
  6819. name="OUTRUSH M"
  6820. series="Helmet"
  6821. latestVersion="1.0"
  6822. show = "-1" >
  6823. <productMenu id="protocol"
  6824. type="2" >
  6825. </productMenu>
  6826. <productMenu id="alexa"
  6827. type="0" >
  6828. </productMenu>
  6829. <productMenu id="ota"
  6830. type="0" >
  6831. </productMenu>
  6832. <productMenu id="wa"
  6833. type="0" >
  6834. </productMenu>
  6835. <productMenu id="meshIntercom"
  6836. type="30" >
  6837. </productMenu>
  6838. <productMenu id="phone"
  6839. type="1" >
  6840. </productMenu>
  6841. <productMenu id="music"
  6842. type="1" >
  6843. </productMenu>
  6844. <productMenu id="fmradio"
  6845. type="1" >
  6846. </productMenu>
  6847. <productMenu id="deviceSetting"
  6848. type="1"
  6849. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6850. </productMenu>
  6851. <productMenu id="quickGuide"
  6852. type="1"
  6853. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6854. size="1.12MB" >
  6855. </productMenu>
  6856. <productMenu id="userGuide"
  6857. type="1"
  6858. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6859. size="2.0MB" >
  6860. </productMenu>
  6861. <productMenu id="volume"
  6862. type="13" >
  6863. </productMenu>
  6864. <productMenu id="battery"
  6865. type="1" >
  6866. </productMenu>
  6867. <productID id="5600"
  6868. />
  6869. <productGroupable type="0"
  6870. />
  6871. </product>
  6872. <product id="ProRideEVO"
  6873. name="ProRide EVO"
  6874. series="Helmet"
  6875. latestVersion="1.1.2"
  6876. show = "1" >
  6877. <productMenu id="protocol"
  6878. type="0">
  6879. </productMenu>
  6880. <productMenu id="sip"
  6881. type="1" >
  6882. </productMenu>
  6883. <productMenu id="bluetoothIntercom"
  6884. type="1" >
  6885. </productMenu>
  6886. <productMenu id="phone"
  6887. type="2" >
  6888. </productMenu>
  6889. <productMenu id="fmradio"
  6890. type="3" >
  6891. </productMenu>
  6892. <productMenu id="deviceSetting"
  6893. type="1"
  6894. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6895. </productMenu>
  6896. <productMenu id="userGuide"
  6897. type="1"
  6898. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6899. size="778KB" >
  6900. </productMenu>
  6901. <productMenu id="connectGuide"
  6902. type="1"
  6903. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6904. size="1.12MB" >
  6905. </productMenu>
  6906. <productID id="5426"
  6907. />
  6908. <productGroupable type="0"
  6909. />
  6910. </product>
  6911. <product id="OUTRUSHR"
  6912. name="OUTRUSH R"
  6913. series="Helmet"
  6914. latestVersion="2.1"
  6915. show = "1" >
  6916. <productMenu id="protocol"
  6917. type="3" >
  6918. </productMenu>
  6919. <productMenu id="sip"
  6920. type="1" >
  6921. </productMenu>
  6922. <productMenu id="bluetoothIntercom"
  6923. type="1" >
  6924. </productMenu>
  6925. <productMenu id="phone"
  6926. type="1" >
  6927. </productMenu>
  6928. <productMenu id="fmradio"
  6929. type="0" >
  6930. </productMenu>
  6931. <productMenu id="deviceSetting"
  6932. type="1"
  6933. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6934. </productMenu>
  6935. <productMenu id="userGuide"
  6936. type="1"
  6937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6938. size="1.14MB" >
  6939. </productMenu>
  6940. <productMenu id="connectGuide"
  6941. type="1"
  6942. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6943. size="1.12MB" >
  6944. </productMenu>
  6945. <productID id="5440"
  6946. />
  6947. <productGroupable type="0"
  6948. />
  6949. </product>
  6950. <product id="OUTRUSHR"
  6951. name="OUTRUSH R"
  6952. series="Helmet"
  6953. latestVersion="1.1.4"
  6954. show = "-1" >
  6955. <productMenu id="protocol"
  6956. type="0">
  6957. </productMenu>
  6958. <productMenu id="sip"
  6959. type="1" >
  6960. </productMenu>
  6961. <productMenu id="bluetoothIntercom"
  6962. type="1" >
  6963. </productMenu>
  6964. <productMenu id="phone"
  6965. type="2" >
  6966. </productMenu>
  6967. <productMenu id="fmradio"
  6968. type="3" >
  6969. </productMenu>
  6970. <productMenu id="deviceSetting"
  6971. type="1"
  6972. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6973. </productMenu>
  6974. <productMenu id="userGuide"
  6975. type="1"
  6976. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6977. size="660KB" >
  6978. </productMenu>
  6979. <productMenu id="connectGuide"
  6980. type="1"
  6981. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6982. size="1.12MB" >
  6983. </productMenu>
  6984. <productID id="5424"
  6985. />
  6986. <productGroupable type="0"
  6987. />
  6988. </product>
  6989. <product id="OUTSTARS"
  6990. name="OUTSTAR S"
  6991. series="Helmet"
  6992. latestVersion="2.0.1"
  6993. show = "-1" >
  6994. <productMenu id="protocol"
  6995. type="3" >
  6996. </productMenu>
  6997. <productMenu id="sip"
  6998. type="1" >
  6999. </productMenu>
  7000. <productMenu id="bluetoothIntercom"
  7001. type="1" >
  7002. </productMenu>
  7003. <productMenu id="phone"
  7004. type="1" >
  7005. </productMenu>
  7006. <productMenu id="fmradio"
  7007. type="0" >
  7008. </productMenu>
  7009. <productMenu id="deviceSetting"
  7010. type="1"
  7011. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7012. </productMenu>
  7013. <productMenu id="userGuide"
  7014. type="0"
  7015. url=""
  7016. size="1.14MB" >
  7017. </productMenu>
  7018. <productID id="5443"
  7019. />
  7020. <productGroupable type="0"
  7021. />
  7022. </product>
  7023. <product id="OUTSTARS"
  7024. name="OUTSTAR S"
  7025. series="Helmet"
  7026. latestVersion="1.1.4"
  7027. show = "1" >
  7028. <productMenu id="protocol"
  7029. type="0">
  7030. </productMenu>
  7031. <productMenu id="sip"
  7032. type="1" >
  7033. </productMenu>
  7034. <productMenu id="bluetoothIntercom"
  7035. type="1" >
  7036. </productMenu>
  7037. <productMenu id="phone"
  7038. type="2" >
  7039. </productMenu>
  7040. <productMenu id="fmradio"
  7041. type="3" >
  7042. </productMenu>
  7043. <productMenu id="deviceSetting"
  7044. type="1"
  7045. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7046. </productMenu>
  7047. <productMenu id="quickGuide"
  7048. type="1"
  7049. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7050. size="643KB" >
  7051. </productMenu>
  7052. <productMenu id="userGuide"
  7053. type="1"
  7054. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7055. size="1.15MB" >
  7056. </productMenu>
  7057. <productMenu id="connectGuide"
  7058. type="1"
  7059. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7060. size="1.12MB" >
  7061. </productMenu>
  7062. <productID id="5428"
  7063. />
  7064. <productGroupable type="0"
  7065. />
  7066. </product>
  7067. <product id="OUTRIDE"
  7068. name="OUTRIDE"
  7069. series="Helmet"
  7070. latestVersion="1.0.1"
  7071. show = "1" >
  7072. <productMenu id="protocol"
  7073. type="0">
  7074. </productMenu>
  7075. <productMenu id="sip"
  7076. type="1" >
  7077. </productMenu>
  7078. <productMenu id="bluetoothIntercom"
  7079. type="1" >
  7080. </productMenu>
  7081. <productMenu id="phone"
  7082. type="2" >
  7083. </productMenu>
  7084. <productMenu id="fmradio"
  7085. type="3" >
  7086. </productMenu>
  7087. <productMenu id="deviceSetting"
  7088. type="1"
  7089. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7090. </productMenu>
  7091. <productMenu id="quickGuide"
  7092. type="1"
  7093. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7094. size="643KB" >
  7095. </productMenu>
  7096. <productMenu id="userGuide"
  7097. type="1"
  7098. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7099. size="660KB" >
  7100. </productMenu>
  7101. <productMenu id="connectGuide"
  7102. type="1"
  7103. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7104. size="1.12MB" >
  7105. </productMenu>
  7106. <productID id="5432"
  7107. />
  7108. <productGroupable type="0"
  7109. />
  7110. </product>
  7111. <product id="OUTFORCE"
  7112. name="OUTFORCE"
  7113. series="Helmet"
  7114. latestVersion="1.0.1"
  7115. show = "1" >
  7116. <productMenu id="protocol"
  7117. type="0">
  7118. </productMenu>
  7119. <productMenu id="sip"
  7120. type="1" >
  7121. </productMenu>
  7122. <productMenu id="bluetoothIntercom"
  7123. type="1" >
  7124. </productMenu>
  7125. <productMenu id="phone"
  7126. type="2" >
  7127. </productMenu>
  7128. <productMenu id="fmradio"
  7129. type="3" >
  7130. </productMenu>
  7131. <productMenu id="deviceSetting"
  7132. type="1"
  7133. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7134. </productMenu>
  7135. <productMenu id="quickGuide"
  7136. type="1"
  7137. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7138. size="643KB" >
  7139. </productMenu>
  7140. <productMenu id="userGuide"
  7141. type="1"
  7142. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7143. size="660KB" >
  7144. </productMenu>
  7145. <productMenu id="connectGuide"
  7146. type="1"
  7147. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7148. size="1.12MB" >
  7149. </productMenu>
  7150. <productID id="5430"
  7151. />
  7152. <productGroupable type="0"
  7153. />
  7154. </product>
  7155. <product id="Rumba"
  7156. name="Rumba"
  7157. series="30"
  7158. latestVersion="2.0"
  7159. show = "-1" >
  7160. <productMenu id="protocol"
  7161. type="3" >
  7162. </productMenu>
  7163. <productMenu id="sip"
  7164. type="1" >
  7165. </productMenu>
  7166. <productMenu id="bluetoothIntercom"
  7167. type="1" >
  7168. </productMenu>
  7169. <productMenu id="deviceSetting"
  7170. type="1"
  7171. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7172. </productMenu>
  7173. <productMenu id="quickGuide"
  7174. type="1"
  7175. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7176. size="344KB" >
  7177. </productMenu>
  7178. <productMenu id="userGuide"
  7179. type="1"
  7180. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7181. size="1.14MB" >
  7182. </productMenu>
  7183. <productID id="6322"
  7184. />
  7185. <productGroupable type="0"
  7186. />
  7187. </product>
  7188. <product id="Savage"
  7189. name="Savage"
  7190. series="Helmet"
  7191. latestVersion="1.2.2"
  7192. show = "1" >
  7193. <productMenu id="protocol"
  7194. type="0">
  7195. </productMenu>
  7196. <productMenu id="sip"
  7197. type="1" >
  7198. </productMenu>
  7199. <productMenu id="bluetoothIntercom"
  7200. type="1" >
  7201. </productMenu>
  7202. <productMenu id="phone"
  7203. type="2" >
  7204. </productMenu>
  7205. <productMenu id="fmradio"
  7206. type="3" >
  7207. </productMenu>
  7208. <productMenu id="deviceSetting"
  7209. type="1"
  7210. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7211. <productMenuURL version="1.9"
  7212. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7213. />
  7214. <productMenuURL version="1.1"
  7215. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7216. />
  7217. </productMenu>
  7218. <productMenu id="quickGuide"
  7219. type="1"
  7220. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7221. size="796KB" >
  7222. </productMenu>
  7223. <productMenu id="userGuide"
  7224. type="1"
  7225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7226. size="910KB" >
  7227. </productMenu>
  7228. <productMenu id="connectGuide"
  7229. type="1"
  7230. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7231. size="1.12MB" >
  7232. </productMenu>
  7233. <productID id="5550"
  7234. />
  7235. <productGroupable type="0"
  7236. />
  7237. </product>
  7238. <product id="RECON"
  7239. name="RECON"
  7240. series="Helmet"
  7241. latestVersion="1.0"
  7242. latestVersionVoicePrompt="1.8"
  7243. show = "-1" >
  7244. <productMenu id="protocol"
  7245. type="2" >
  7246. </productMenu>
  7247. <productMenu id="ota"
  7248. type="2" >
  7249. <otaLanguages>
  7250. <otaLanguage
  7251. id="0"
  7252. name="English"
  7253. package="0"
  7254. />
  7255. <otaLanguage
  7256. id="0"
  7257. name="French"
  7258. package="1"
  7259. />
  7260. <otaLanguage
  7261. id="0"
  7262. name="Spanish"
  7263. package="2"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="Italian"
  7268. package="3"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="German"
  7273. package="4"
  7274. />
  7275. <otaLanguage
  7276. id="0"
  7277. name="Dutch"
  7278. package="5"
  7279. />
  7280. <otaLanguage
  7281. id="0"
  7282. name="Russian"
  7283. package="6"
  7284. />
  7285. <otaLanguage
  7286. id="0"
  7287. name="Chinese"
  7288. package="7"
  7289. />
  7290. <otaLanguage
  7291. id="0"
  7292. name="Korean"
  7293. package="8"
  7294. />
  7295. <otaLanguage
  7296. id="0"
  7297. name="Japanese"
  7298. package="9"
  7299. />
  7300. <otaLanguage
  7301. id="0"
  7302. name="Finnish"
  7303. package="10"
  7304. />
  7305. <otaLanguage
  7306. id="0"
  7307. name="Polish"
  7308. package="11"
  7309. />
  7310. </otaLanguages>
  7311. <otaPackages>
  7312. <package
  7313. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7314. size="5183988"
  7315. />
  7316. <package
  7317. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7318. size="5183988"
  7319. />
  7320. <package
  7321. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7322. size="5183988"
  7323. />
  7324. <package
  7325. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7326. size="5183988"
  7327. />
  7328. <package
  7329. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7330. size="5183988"
  7331. />
  7332. <package
  7333. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7334. size="5183988"
  7335. />
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7350. size="5183988"
  7351. />
  7352. <package
  7353. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7354. size="5183988"
  7355. />
  7356. <package
  7357. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7358. size="5183988"
  7359. />
  7360. </otaPackages>
  7361. </productMenu>
  7362. <productMenu id="wa"
  7363. type="0" >
  7364. </productMenu>
  7365. <productMenu id="led"
  7366. type="5" >
  7367. </productMenu>
  7368. <productMenu id="led+"
  7369. type="2"
  7370. url="1" >
  7371. </productMenu>
  7372. <productMenu id="meshIntercom+"
  7373. type="3"
  7374. url="2" >
  7375. </productMenu>
  7376. <productMenu id="waveIntercom"
  7377. type="1" >
  7378. </productMenu>
  7379. <productMenu id="fmradio"
  7380. type="0" >
  7381. </productMenu>
  7382. <productMenu id="phone"
  7383. type="1" >
  7384. </productMenu>
  7385. <productMenu id="music"
  7386. type="1" >
  7387. </productMenu>
  7388. <productMenu id="musicSharing"
  7389. type="0" >
  7390. </productMenu>
  7391. <productMenu id="deviceSetting"
  7392. type="1"
  7393. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7394. </productMenu>
  7395. <productMenu id="quickGuide"
  7396. type="0"
  7397. url=""
  7398. size="1.12MB" >
  7399. </productMenu>
  7400. <productMenu id="userGuide"
  7401. type="1"
  7402. url=""
  7403. size="2.28MB" >
  7404. </productMenu>
  7405. <productMenu id="videoGuide"
  7406. type="0"
  7407. url=""
  7408. size="3.41MB" >
  7409. </productMenu>
  7410. <productMenu id="volume"
  7411. type="16" >
  7412. </productMenu>
  7413. <productMenu id="volume+"
  7414. type="2"
  7415. url="0x6004" >
  7416. </productMenu>
  7417. <productMenu id="battery"
  7418. type="1" >
  7419. </productMenu>
  7420. <productID id="6A1D"
  7421. />
  7422. <productGroupable type="0"
  7423. />
  7424. </product>
  7425. <product id="SPECTER"
  7426. name="SPECTER"
  7427. series="Helmet"
  7428. latestVersion="1.0.9"
  7429. latestVersionVoicePrompt="1.7"
  7430. show = "1" >
  7431. <productMenu id="protocol"
  7432. type="2" >
  7433. </productMenu>
  7434. <productMenu id="ota"
  7435. type="2" >
  7436. <otaLanguages>
  7437. <otaLanguage
  7438. id="0"
  7439. name="English"
  7440. package="0"
  7441. />
  7442. <otaLanguage
  7443. id="0"
  7444. name="French"
  7445. package="1"
  7446. />
  7447. <otaLanguage
  7448. id="0"
  7449. name="Spanish"
  7450. package="2"
  7451. />
  7452. <otaLanguage
  7453. id="0"
  7454. name="Italian"
  7455. package="3"
  7456. />
  7457. <otaLanguage
  7458. id="0"
  7459. name="German"
  7460. package="4"
  7461. />
  7462. <otaLanguage
  7463. id="0"
  7464. name="Dutch"
  7465. package="5"
  7466. />
  7467. <otaLanguage
  7468. id="0"
  7469. name="Russian"
  7470. package="6"
  7471. />
  7472. <otaLanguage
  7473. id="0"
  7474. name="Chinese"
  7475. package="7"
  7476. />
  7477. <otaLanguage
  7478. id="0"
  7479. name="Korean"
  7480. package="8"
  7481. />
  7482. <otaLanguage
  7483. id="0"
  7484. name="Japanese"
  7485. package="9"
  7486. />
  7487. <otaLanguage
  7488. id="0"
  7489. name="Finnish"
  7490. package="10"
  7491. />
  7492. <otaLanguage
  7493. id="0"
  7494. name="Polish"
  7495. package="11"
  7496. />
  7497. </otaLanguages>
  7498. <otaPackages>
  7499. <package
  7500. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7501. size="5183988"
  7502. />
  7503. <package
  7504. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7505. size="5183988"
  7506. />
  7507. <package
  7508. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7509. size="5183988"
  7510. />
  7511. <package
  7512. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7513. size="5183988"
  7514. />
  7515. <package
  7516. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7517. size="5183988"
  7518. />
  7519. <package
  7520. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7521. size="5183988"
  7522. />
  7523. <package
  7524. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7525. size="5183988"
  7526. />
  7527. <package
  7528. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7529. size="5183988"
  7530. />
  7531. <package
  7532. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7533. size="5183988"
  7534. />
  7535. <package
  7536. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7537. size="5183988"
  7538. />
  7539. <package
  7540. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7541. size="5183988"
  7542. />
  7543. <package
  7544. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7545. size="5183988"
  7546. />
  7547. </otaPackages>
  7548. </productMenu>
  7549. <productMenu id="wa"
  7550. type="0" >
  7551. </productMenu>
  7552. <productMenu id="led"
  7553. type="5" >
  7554. </productMenu>
  7555. <productMenu id="led+"
  7556. type="2"
  7557. url="1" >
  7558. </productMenu>
  7559. <productMenu id="meshIntercom+"
  7560. type="3"
  7561. url="2" >
  7562. </productMenu>
  7563. <productMenu id="waveIntercom"
  7564. type="1" >
  7565. </productMenu>
  7566. <productMenu id="fmradio"
  7567. type="0" >
  7568. </productMenu>
  7569. <productMenu id="phone"
  7570. type="1" >
  7571. </productMenu>
  7572. <productMenu id="music"
  7573. type="1" >
  7574. </productMenu>
  7575. <productMenu id="musicSharing"
  7576. type="0" >
  7577. </productMenu>
  7578. <productMenu id="deviceSetting"
  7579. type="1"
  7580. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7581. <productMenuURL version="1.0.10"
  7582. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7583. />
  7584. <productMenuURL version="1.0.4"
  7585. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7586. />
  7587. </productMenu>
  7588. <productMenu id="quickGuide"
  7589. type="0"
  7590. url=""
  7591. size="1.12MB" >
  7592. </productMenu>
  7593. <productMenu id="userGuide"
  7594. type="1"
  7595. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7596. size="2.0MB" >
  7597. </productMenu>
  7598. <productMenu id="videoGuide"
  7599. type="0"
  7600. url=""
  7601. size="3.41MB" >
  7602. </productMenu>
  7603. <productMenu id="connectGuide"
  7604. type="1"
  7605. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7606. size="1.12MB" >
  7607. </productMenu>
  7608. <productMenu id="volume"
  7609. type="16" >
  7610. </productMenu>
  7611. <productMenu id="volume+"
  7612. type="2"
  7613. url="0x6004" >
  7614. </productMenu>
  7615. <productMenu id="battery"
  7616. type="1" >
  7617. </productMenu>
  7618. <productID id="6A11"
  7619. />
  7620. <productGroupable type="0"
  7621. />
  7622. </product>
  7623. <product id="SPECTER"
  7624. name="SPECTER"
  7625. series="Helmet"
  7626. latestVersion="1.0.9"
  7627. latestVersionVoicePrompt="1.7"
  7628. show = "-1" >
  7629. <productMenu id="protocol"
  7630. type="2" >
  7631. </productMenu>
  7632. <productMenu id="ota"
  7633. type="2" >
  7634. <otaLanguages>
  7635. <otaLanguage
  7636. id="0"
  7637. name="English"
  7638. package="0"
  7639. />
  7640. <otaLanguage
  7641. id="0"
  7642. name="French"
  7643. package="1"
  7644. />
  7645. <otaLanguage
  7646. id="0"
  7647. name="Spanish"
  7648. package="2"
  7649. />
  7650. <otaLanguage
  7651. id="0"
  7652. name="Italian"
  7653. package="3"
  7654. />
  7655. <otaLanguage
  7656. id="0"
  7657. name="German"
  7658. package="4"
  7659. />
  7660. <otaLanguage
  7661. id="0"
  7662. name="Dutch"
  7663. package="5"
  7664. />
  7665. <otaLanguage
  7666. id="0"
  7667. name="Russian"
  7668. package="6"
  7669. />
  7670. <otaLanguage
  7671. id="0"
  7672. name="Chinese"
  7673. package="7"
  7674. />
  7675. <otaLanguage
  7676. id="0"
  7677. name="Korean"
  7678. package="8"
  7679. />
  7680. <otaLanguage
  7681. id="0"
  7682. name="Japanese"
  7683. package="9"
  7684. />
  7685. <otaLanguage
  7686. id="0"
  7687. name="Finnish"
  7688. package="10"
  7689. />
  7690. <otaLanguage
  7691. id="0"
  7692. name="Polish"
  7693. package="11"
  7694. />
  7695. </otaLanguages>
  7696. <otaPackages>
  7697. <package
  7698. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7699. size="5183988"
  7700. />
  7701. <package
  7702. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7703. size="5183988"
  7704. />
  7705. <package
  7706. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7707. size="5183988"
  7708. />
  7709. <package
  7710. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7711. size="5183988"
  7712. />
  7713. <package
  7714. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7715. size="5183988"
  7716. />
  7717. <package
  7718. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7719. size="5183988"
  7720. />
  7721. <package
  7722. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7723. size="5183988"
  7724. />
  7725. <package
  7726. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7727. size="5183988"
  7728. />
  7729. <package
  7730. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7731. size="5183988"
  7732. />
  7733. <package
  7734. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7735. size="5183988"
  7736. />
  7737. <package
  7738. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7739. size="5183988"
  7740. />
  7741. <package
  7742. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7743. size="5183988"
  7744. />
  7745. </otaPackages>
  7746. </productMenu>
  7747. <productMenu id="wa"
  7748. type="0" >
  7749. </productMenu>
  7750. <productMenu id="led"
  7751. type="5" >
  7752. </productMenu>
  7753. <productMenu id="led+"
  7754. type="2"
  7755. url="1" >
  7756. </productMenu>
  7757. <productMenu id="meshIntercom+"
  7758. type="3"
  7759. url="2" >
  7760. </productMenu>
  7761. <productMenu id="waveIntercom"
  7762. type="1" >
  7763. </productMenu>
  7764. <productMenu id="fmradio"
  7765. type="0" >
  7766. </productMenu>
  7767. <productMenu id="phone"
  7768. type="1" >
  7769. </productMenu>
  7770. <productMenu id="music"
  7771. type="1" >
  7772. </productMenu>
  7773. <productMenu id="musicSharing"
  7774. type="0" >
  7775. </productMenu>
  7776. <productMenu id="deviceSetting"
  7777. type="1"
  7778. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7779. <productMenuURL version="1.0.10"
  7780. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7781. />
  7782. <productMenuURL version="1.0.4"
  7783. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7784. />
  7785. <productMenuURL version="1.0"
  7786. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7787. />
  7788. </productMenu>
  7789. <productMenu id="quickGuide"
  7790. type="0"
  7791. url=""
  7792. size="1.12MB" >
  7793. </productMenu>
  7794. <productMenu id="userGuide"
  7795. type="1"
  7796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7797. size="2.0MB" >
  7798. </productMenu>
  7799. <productMenu id="videoGuide"
  7800. type="0"
  7801. url=""
  7802. size="3.41MB" >
  7803. </productMenu>
  7804. <productMenu id="connectGuide"
  7805. type="1"
  7806. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7807. size="1.12MB" >
  7808. </productMenu>
  7809. <productMenu id="volume"
  7810. type="16" >
  7811. </productMenu>
  7812. <productMenu id="volume+"
  7813. type="2"
  7814. url="0x6004" >
  7815. </productMenu>
  7816. <productMenu id="battery"
  7817. type="1" >
  7818. </productMenu>
  7819. <productID id="6A0A"
  7820. />
  7821. <productGroupable type="0"
  7822. />
  7823. </product>
  7824. <product id="OUTLANDER"
  7825. name="OUTLANDER"
  7826. series="Helmet"
  7827. latestVersion="1.0.9"
  7828. latestVersionVoicePrompt="1.7"
  7829. show = "1" >
  7830. <productMenu id="protocol"
  7831. type="2" >
  7832. </productMenu>
  7833. <productMenu id="ota"
  7834. type="2" >
  7835. <otaLanguages>
  7836. <otaLanguage
  7837. id="0"
  7838. name="English"
  7839. package="0"
  7840. />
  7841. <otaLanguage
  7842. id="0"
  7843. name="French"
  7844. package="1"
  7845. />
  7846. <otaLanguage
  7847. id="0"
  7848. name="Spanish"
  7849. package="2"
  7850. />
  7851. <otaLanguage
  7852. id="0"
  7853. name="Italian"
  7854. package="3"
  7855. />
  7856. <otaLanguage
  7857. id="0"
  7858. name="German"
  7859. package="4"
  7860. />
  7861. <otaLanguage
  7862. id="0"
  7863. name="Dutch"
  7864. package="5"
  7865. />
  7866. <otaLanguage
  7867. id="0"
  7868. name="Russian"
  7869. package="6"
  7870. />
  7871. <otaLanguage
  7872. id="0"
  7873. name="Chinese"
  7874. package="7"
  7875. />
  7876. <otaLanguage
  7877. id="0"
  7878. name="Korean"
  7879. package="8"
  7880. />
  7881. <otaLanguage
  7882. id="0"
  7883. name="Japanese"
  7884. package="9"
  7885. />
  7886. <otaLanguage
  7887. id="0"
  7888. name="Finnish"
  7889. package="10"
  7890. />
  7891. <otaLanguage
  7892. id="0"
  7893. name="Polish"
  7894. package="11"
  7895. />
  7896. </otaLanguages>
  7897. <otaPackages>
  7898. <package
  7899. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7900. size="5183988"
  7901. />
  7902. <package
  7903. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7904. size="5183988"
  7905. />
  7906. <package
  7907. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7908. size="5183988"
  7909. />
  7910. <package
  7911. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7912. size="5183988"
  7913. />
  7914. <package
  7915. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7916. size="5183988"
  7917. />
  7918. <package
  7919. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7920. size="5183988"
  7921. />
  7922. <package
  7923. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7924. size="5183988"
  7925. />
  7926. <package
  7927. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7928. size="5183988"
  7929. />
  7930. <package
  7931. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7932. size="5183988"
  7933. />
  7934. <package
  7935. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7936. size="5183988"
  7937. />
  7938. <package
  7939. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7940. size="5183988"
  7941. />
  7942. <package
  7943. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7944. size="5183988"
  7945. />
  7946. </otaPackages>
  7947. </productMenu>
  7948. <productMenu id="wa"
  7949. type="0" >
  7950. </productMenu>
  7951. <productMenu id="led"
  7952. type="5" >
  7953. </productMenu>
  7954. <productMenu id="led+"
  7955. type="2"
  7956. url="1" >
  7957. </productMenu>
  7958. <productMenu id="meshIntercom+"
  7959. type="3"
  7960. url="2" >
  7961. </productMenu>
  7962. <productMenu id="waveIntercom"
  7963. type="1" >
  7964. </productMenu>
  7965. <productMenu id="fmradio"
  7966. type="0" >
  7967. </productMenu>
  7968. <productMenu id="phone"
  7969. type="1" >
  7970. </productMenu>
  7971. <productMenu id="music"
  7972. type="1" >
  7973. </productMenu>
  7974. <productMenu id="musicSharing"
  7975. type="0" >
  7976. </productMenu>
  7977. <productMenu id="deviceSetting"
  7978. type="1"
  7979. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  7980. <productMenuURL version="1.0.10"
  7981. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  7982. />
  7983. <productMenuURL version="1.0.4"
  7984. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7985. />
  7986. </productMenu>
  7987. <productMenu id="quickGuide"
  7988. type="0"
  7989. url=""
  7990. size="1.12MB" >
  7991. </productMenu>
  7992. <productMenu id="userGuide"
  7993. type="1"
  7994. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7995. size="2.0MB" >
  7996. </productMenu>
  7997. <productMenu id="connectGuide"
  7998. type="1"
  7999. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8000. size="1.12MB" >
  8001. </productMenu>
  8002. <productMenu id="videoGuide"
  8003. type="0"
  8004. url=""
  8005. size="3.41MB" >
  8006. </productMenu>
  8007. <productMenu id="volume"
  8008. type="16" >
  8009. </productMenu>
  8010. <productMenu id="volume+"
  8011. type="2"
  8012. url="0x6004" >
  8013. </productMenu>
  8014. <productMenu id="battery"
  8015. type="1" >
  8016. </productMenu>
  8017. <productID id="6A05"
  8018. />
  8019. <productGroupable type="0"
  8020. />
  8021. </product>
  8022. <product id="OUTRUSH2"
  8023. name="OUTRUSH 2"
  8024. series="Helmet"
  8025. latestVersion="1.0.3"
  8026. latestVersionVoicePrompt="1.6"
  8027. show = "1" >
  8028. <productMenu id="protocol"
  8029. type="2" >
  8030. </productMenu>
  8031. <productMenu id="alexa"
  8032. type="0" >
  8033. </productMenu>
  8034. <productMenu id="ota"
  8035. type="2" >
  8036. <otaPackages>
  8037. <package
  8038. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8039. size="2945812"
  8040. />
  8041. </otaPackages>
  8042. </productMenu>
  8043. <productMenu id="meshIntercom+"
  8044. type="3"
  8045. url="2" >
  8046. </productMenu>
  8047. <productMenu id="waveIntercom"
  8048. type="1" >
  8049. </productMenu>
  8050. <productMenu id="phone"
  8051. type="1" >
  8052. </productMenu>
  8053. <productMenu id="music"
  8054. type="1" >
  8055. </productMenu>
  8056. <productMenu id="musicSharing"
  8057. type="0" >
  8058. </productMenu>
  8059. <productMenu id="deviceSetting"
  8060. type="1"
  8061. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8062. <productMenuURL version="1.0"
  8063. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8064. />
  8065. </productMenu>
  8066. <productMenu id="quickGuide"
  8067. type="0"
  8068. url=""
  8069. size="1.12MB" >
  8070. </productMenu>
  8071. <productMenu id="userGuide"
  8072. type="1"
  8073. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8074. size="2.0MB" >
  8075. </productMenu>
  8076. <productMenu id="connectGuide"
  8077. type="1"
  8078. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8079. size="1.12MB" >
  8080. </productMenu>
  8081. <productMenu id="volume"
  8082. type="12" >
  8083. </productMenu>
  8084. <productMenu id="battery"
  8085. type="1" >
  8086. </productMenu>
  8087. <productID id="684A"
  8088. />
  8089. <productGroupable type="0"
  8090. />
  8091. </product>
  8092. <product id="OUTSTAR2"
  8093. name="OUTSTAR 2"
  8094. series="Helmet"
  8095. latestVersion="1.0.2"
  8096. latestVersionVoicePrompt="1.6"
  8097. show = "1" >
  8098. <productMenu id="protocol"
  8099. type="2" >
  8100. </productMenu>
  8101. <productMenu id="alexa"
  8102. type="0" >
  8103. </productMenu>
  8104. <productMenu id="ota"
  8105. type="2" >
  8106. <otaPackages>
  8107. <package
  8108. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8109. size="2945812"
  8110. />
  8111. </otaPackages>
  8112. </productMenu>
  8113. <productMenu id="meshIntercom+"
  8114. type="3"
  8115. url="2" >
  8116. </productMenu>
  8117. <productMenu id="waveIntercom"
  8118. type="1" >
  8119. </productMenu>
  8120. <productMenu id="phone"
  8121. type="1" >
  8122. </productMenu>
  8123. <productMenu id="music"
  8124. type="1" >
  8125. </productMenu>
  8126. <productMenu id="musicSharing"
  8127. type="0" >
  8128. </productMenu>
  8129. <productMenu id="deviceSetting"
  8130. type="1"
  8131. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8132. </productMenu>
  8133. <productMenu id="quickGuide"
  8134. type="0"
  8135. url=""
  8136. size="1.12MB" >
  8137. </productMenu>
  8138. <productMenu id="userGuide"
  8139. type="1"
  8140. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8141. size="2.0MB" >
  8142. </productMenu>
  8143. <productMenu id="connectGuide"
  8144. type="1"
  8145. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8146. size="1.12MB" >
  8147. </productMenu>
  8148. <productMenu id="volume"
  8149. type="12" >
  8150. </productMenu>
  8151. <productMenu id="battery"
  8152. type="1" >
  8153. </productMenu>
  8154. <productID id="684B"
  8155. />
  8156. <productGroupable type="0"
  8157. />
  8158. </product>
  8159. <product id="SURGE"
  8160. name="SURGE"
  8161. series="Helmet"
  8162. latestVersion="1.2"
  8163. latestVersionVoicePrompt="1.3"
  8164. show = "1" >
  8165. <productMenu id="protocol"
  8166. type="2" >
  8167. </productMenu>
  8168. <productMenu id="alexa"
  8169. type="0" >
  8170. </productMenu>
  8171. <productMenu id="ota"
  8172. type="2" >
  8173. <otaPackages>
  8174. <package
  8175. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8176. size="2945812"
  8177. />
  8178. </otaPackages>
  8179. </productMenu>
  8180. <productMenu id="meshIntercom"
  8181. type="30" >
  8182. </productMenu>
  8183. <productMenu id="meshIntercom+"
  8184. type="3"
  8185. url="2" >
  8186. <productMenuType version="1.0.1"
  8187. type="2"
  8188. />
  8189. </productMenu>
  8190. <productMenu id="waveIntercom"
  8191. type="1" >
  8192. <productMenuType version="1.0.9"
  8193. type="0"
  8194. />
  8195. </productMenu>
  8196. <productMenu id="phone"
  8197. type="1" >
  8198. </productMenu>
  8199. <productMenu id="music"
  8200. type="1" >
  8201. </productMenu>
  8202. <productMenu id="musicSharing"
  8203. type="0" >
  8204. </productMenu>
  8205. <productMenu id="deviceSetting"
  8206. type="1"
  8207. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8208. <productMenuURL version="1.1.9"
  8209. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8210. />
  8211. <productMenuURL version="1.0.1"
  8212. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8213. />
  8214. </productMenu>
  8215. <productMenu id="quickGuide"
  8216. type="0"
  8217. url=""
  8218. size="1.12MB" >
  8219. </productMenu>
  8220. <productMenu id="userGuide"
  8221. type="1"
  8222. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8223. size="2.0MB" >
  8224. </productMenu>
  8225. <productMenu id="volume"
  8226. type="12" >
  8227. </productMenu>
  8228. <productMenu id="battery"
  8229. type="1" >
  8230. </productMenu>
  8231. <productID id="6840"
  8232. />
  8233. <productGroupable type="0"
  8234. />
  8235. </product>
  8236. <product id="Cavalry2"
  8237. name="Cavalry 2"
  8238. series="Helmet"
  8239. latestVersion="1.2"
  8240. latestVersionVoicePrompt="1.3"
  8241. show = "1" >
  8242. <productMenu id="protocol"
  8243. type="2" >
  8244. </productMenu>
  8245. <productMenu id="alexa"
  8246. type="0" >
  8247. </productMenu>
  8248. <productMenu id="ota"
  8249. type="2" >
  8250. <otaPackages>
  8251. <package
  8252. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8253. size="3144148"
  8254. />
  8255. </otaPackages>
  8256. </productMenu>
  8257. <productMenu id="wa"
  8258. type="0" >
  8259. </productMenu>
  8260. <productMenu id="meshIntercom"
  8261. type="30" >
  8262. </productMenu>
  8263. <productMenu id="meshIntercom+"
  8264. type="3"
  8265. url="2" >
  8266. <productMenuType version="1.0"
  8267. type="2"
  8268. />
  8269. </productMenu>
  8270. <productMenu id="waveIntercom"
  8271. type="1" >
  8272. <productMenuType version="1.0.9"
  8273. type="0"
  8274. />
  8275. </productMenu>
  8276. <productMenu id="phone"
  8277. type="1" >
  8278. </productMenu>
  8279. <productMenu id="music"
  8280. type="1" >
  8281. </productMenu>
  8282. <productMenu id="musicSharing"
  8283. type="0" >
  8284. </productMenu>
  8285. <productMenu id="deviceSetting"
  8286. type="1"
  8287. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8288. <productMenuURL version="1.1.9"
  8289. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8290. />
  8291. <productMenuURL version="1.0"
  8292. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8293. />
  8294. </productMenu>
  8295. <productMenu id="quickGuide"
  8296. type="0"
  8297. url=""
  8298. size="1.12MB" >
  8299. </productMenu>
  8300. <productMenu id="userGuide"
  8301. type="1"
  8302. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8303. size="2.0MB" >
  8304. </productMenu>
  8305. <productMenu id="connectGuide"
  8306. type="1"
  8307. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8308. size="1.12MB" >
  8309. </productMenu>
  8310. <productMenu id="volume"
  8311. type="12" >
  8312. </productMenu>
  8313. <productMenu id="battery"
  8314. type="1" >
  8315. </productMenu>
  8316. <productID id="6839"
  8317. />
  8318. <productGroupable type="0"
  8319. />
  8320. </product>
  8321. <product id="Cavalry"
  8322. name="Cavalry"
  8323. series="Helmet"
  8324. latestVersion="1.2.2"
  8325. show = "1" >
  8326. <productMenu id="protocol"
  8327. type="0">
  8328. </productMenu>
  8329. <productMenu id="sip"
  8330. type="1" >
  8331. </productMenu>
  8332. <productMenu id="bluetoothIntercom"
  8333. type="1" >
  8334. </productMenu>
  8335. <productMenu id="phone"
  8336. type="2" >
  8337. </productMenu>
  8338. <productMenu id="fmradio"
  8339. type="3" >
  8340. </productMenu>
  8341. <productMenu id="deviceSetting"
  8342. type="1"
  8343. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8344. <productMenuURL version="1.9"
  8345. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8346. />
  8347. <productMenuURL version="1.0.1"
  8348. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8349. />
  8350. </productMenu>
  8351. <productMenu id="quickGuide"
  8352. type="1"
  8353. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8354. size="795KB" >
  8355. </productMenu>
  8356. <productMenu id="userGuide"
  8357. type="1"
  8358. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8359. size="1.87MB" >
  8360. </productMenu>
  8361. <productMenu id="connectGuide"
  8362. type="1"
  8363. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8364. size="1.12MB" >
  8365. </productMenu>
  8366. <productID id="5524"
  8367. />
  8368. <productGroupable type="0"
  8369. />
  8370. </product>
  8371. <product id="Cavalry_Lite"
  8372. name="Cavalry Lite"
  8373. series="Helmet"
  8374. latestVersion="1.0.2"
  8375. show = "1" >
  8376. <productMenu id="protocol"
  8377. type="0">
  8378. </productMenu>
  8379. <productMenu id="sip"
  8380. type="1" >
  8381. </productMenu>
  8382. <productMenu id="bluetoothIntercom"
  8383. type="1" >
  8384. </productMenu>
  8385. <productMenu id="phone"
  8386. type="2" >
  8387. </productMenu>
  8388. <productMenu id="fmradio"
  8389. type="3" >
  8390. </productMenu>
  8391. <productMenu id="deviceSetting"
  8392. type="1"
  8393. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8394. </productMenu>
  8395. <productMenu id="userGuide"
  8396. type="1"
  8397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8398. size="1.74MB" >
  8399. </productMenu>
  8400. <productMenu id="connectGuide"
  8401. type="1"
  8402. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8403. size="1.12MB" >
  8404. </productMenu>
  8405. <productID id="5536"
  8406. />
  8407. <productGroupable type="0"
  8408. />
  8409. </product>
  8410. <product id="VORTEX"
  8411. name="VORTEX"
  8412. series="VORTEX"
  8413. latestVersion="1.0.2"
  8414. latestVersionVoicePrompt="1.0"
  8415. show = "1" >
  8416. <productMenu id="protocol"
  8417. type="2" >
  8418. </productMenu>
  8419. <productMenu id="warranty"
  8420. type="1" >
  8421. </productMenu>
  8422. <productMenu id="serialNumber"
  8423. type="1" >
  8424. </productMenu>
  8425. <productMenu id="ota"
  8426. type="2" >
  8427. <otaLanguages>
  8428. <otaLanguage
  8429. id="0"
  8430. name="English"
  8431. package="0"
  8432. />
  8433. <otaLanguage
  8434. id="0"
  8435. name="French"
  8436. package="1"
  8437. />
  8438. <otaLanguage
  8439. id="0"
  8440. name="Spanish"
  8441. package="2"
  8442. />
  8443. <otaLanguage
  8444. id="0"
  8445. name="Italian"
  8446. package="3"
  8447. />
  8448. <otaLanguage
  8449. id="0"
  8450. name="German"
  8451. package="4"
  8452. />
  8453. <otaLanguage
  8454. id="0"
  8455. name="Dutch"
  8456. package="5"
  8457. />
  8458. <otaLanguage
  8459. id="0"
  8460. name="Russian"
  8461. package="6"
  8462. />
  8463. <otaLanguage
  8464. id="0"
  8465. name="Chinese"
  8466. package="7"
  8467. />
  8468. <otaLanguage
  8469. id="0"
  8470. name="Korean"
  8471. package="8"
  8472. />
  8473. <otaLanguage
  8474. id="0"
  8475. name="Japanese"
  8476. package="9"
  8477. />
  8478. <otaLanguage
  8479. id="0"
  8480. name="Finnish"
  8481. package="10"
  8482. />
  8483. <otaLanguage
  8484. id="0"
  8485. name="Polish"
  8486. package="11"
  8487. />
  8488. </otaLanguages>
  8489. <otaPackages>
  8490. <package
  8491. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8492. size="5183988"
  8493. />
  8494. <package
  8495. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8496. size="5183988"
  8497. />
  8498. <package
  8499. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8500. size="5183988"
  8501. />
  8502. <package
  8503. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8504. size="5183988"
  8505. />
  8506. <package
  8507. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8508. size="5183988"
  8509. />
  8510. <package
  8511. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8512. size="5183988"
  8513. />
  8514. <package
  8515. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8516. size="5183988"
  8517. />
  8518. <package
  8519. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8520. size="5183988"
  8521. />
  8522. <package
  8523. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8524. size="5183988"
  8525. />
  8526. <package
  8527. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8528. size="5183988"
  8529. />
  8530. <package
  8531. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8532. size="5183988"
  8533. />
  8534. <package
  8535. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8536. size="5183988"
  8537. />
  8538. </otaPackages>
  8539. </productMenu>
  8540. <productMenu id="sip"
  8541. type="1" >
  8542. </productMenu>
  8543. <productMenu id="bluetoothIntercom"
  8544. type="1" >
  8545. </productMenu>
  8546. <productMenu id="phone"
  8547. type="1" >
  8548. </productMenu>
  8549. <productMenu id="music"
  8550. type="1" >
  8551. </productMenu>
  8552. <productMenu id="fmradio"
  8553. type="1"
  8554. url="1" >
  8555. </productMenu>
  8556. <productMenu id="deviceSetting"
  8557. type="1"
  8558. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8559. </productMenu>
  8560. <productMenu id="quickGuide"
  8561. type="0"
  8562. url=""
  8563. size="934KB" >
  8564. </productMenu>
  8565. <productMenu id="userGuide"
  8566. type="1"
  8567. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  8568. size="1.14MB" >
  8569. </productMenu>
  8570. <productMenu id="connectGuide"
  8571. type="1"
  8572. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  8573. size="1.12MB" >
  8574. </productMenu>
  8575. <productMenu id="volume"
  8576. type="15" >
  8577. </productMenu>
  8578. <productMenu id="volume+"
  8579. type="2"
  8580. url="0x0018" >
  8581. </productMenu>
  8582. <productMenu id="appearance"
  8583. type="1"
  8584. url="1|white,silver,black" >
  8585. </productMenu>
  8586. <productID id="3451"
  8587. />
  8588. <productGroupable type="0"
  8589. />
  8590. </product>
  8591. <product id="SF4"
  8592. name="SF4"
  8593. series="SF"
  8594. latestVersion="1.1.5"
  8595. show = "-1" >
  8596. <productMenu id="protocol"
  8597. type="1"
  8598. url="3">
  8599. </productMenu>
  8600. <productMenu id="sip"
  8601. type="1" >
  8602. </productMenu>
  8603. <productMenu id="bluetoothIntercom"
  8604. type="1" >
  8605. </productMenu>
  8606. <productMenu id="phone"
  8607. type="1" >
  8608. </productMenu>
  8609. <productMenu id="music"
  8610. type="1" >
  8611. </productMenu>
  8612. <productMenu id="fmradio"
  8613. type="1" >
  8614. </productMenu>
  8615. <productMenu id="deviceSetting"
  8616. type="1"
  8617. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8618. <productMenuURL version="1.0.1"
  8619. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8620. />
  8621. </productMenu>
  8622. <productMenu id="quickGuide"
  8623. type="1"
  8624. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8625. size="607KB" >
  8626. </productMenu>
  8627. <productMenu id="userGuide"
  8628. type="1"
  8629. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8630. size="1.91MB" >
  8631. </productMenu>
  8632. <productMenu id="volume"
  8633. type="4" >
  8634. </productMenu>
  8635. <productID id="5414"
  8636. />
  8637. <productGroupable type="0"
  8638. />
  8639. </product>
  8640. <product id="SF4"
  8641. name="SF4"
  8642. series="SF"
  8643. latestVersion="3.4.4"
  8644. show = "1" >
  8645. <productMenu id="protocol"
  8646. type="2" >
  8647. </productMenu>
  8648. <productMenu id="sip"
  8649. type="1" >
  8650. </productMenu>
  8651. <productMenu id="bluetoothIntercom"
  8652. type="1" >
  8653. </productMenu>
  8654. <productMenu id="phone"
  8655. type="1" >
  8656. </productMenu>
  8657. <productMenu id="music"
  8658. type="1" >
  8659. </productMenu>
  8660. <productMenu id="fmradio"
  8661. type="1" >
  8662. </productMenu>
  8663. <productMenu id="deviceSetting"
  8664. type="1"
  8665. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8666. <productMenuURL version="3.0"
  8667. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8668. />
  8669. </productMenu>
  8670. <productMenu id="quickGuide"
  8671. type="0"
  8672. url=""
  8673. size="934KB" >
  8674. </productMenu>
  8675. <productMenu id="userGuide"
  8676. type="1"
  8677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8678. size="1.14MB" >
  8679. </productMenu>
  8680. <productMenu id="connectGuide"
  8681. type="1"
  8682. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8683. size="1.12MB" >
  8684. </productMenu>
  8685. <productMenu id="volume"
  8686. type="15" >
  8687. </productMenu>
  8688. <productID id="3370"
  8689. />
  8690. <productGroupable type="0"
  8691. />
  8692. </product>
  8693. <product id="SF2"
  8694. name="SF2"
  8695. series="SF"
  8696. latestVersion="1.2.1"
  8697. show = "-1" >
  8698. <productMenu id="protocol"
  8699. type="1"
  8700. url="2">
  8701. </productMenu>
  8702. <productMenu id="sip"
  8703. type="1" >
  8704. </productMenu>
  8705. <productMenu id="bluetoothIntercom"
  8706. type="1" >
  8707. </productMenu>
  8708. <productMenu id="phone"
  8709. type="1" >
  8710. </productMenu>
  8711. <productMenu id="music"
  8712. type="1" >
  8713. </productMenu>
  8714. <productMenu id="fmradio"
  8715. type="1" >
  8716. </productMenu>
  8717. <productMenu id="deviceSetting"
  8718. type="1"
  8719. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8720. <productMenuURL version="1.0.1"
  8721. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8722. />
  8723. </productMenu>
  8724. <productMenu id="quickGuide"
  8725. type="1"
  8726. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8727. size="607KB" >
  8728. </productMenu>
  8729. <productMenu id="userGuide"
  8730. type="1"
  8731. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8732. size="1.91MB" >
  8733. </productMenu>
  8734. <productMenu id="volume"
  8735. type="4" >
  8736. </productMenu>
  8737. <productID id="5412"
  8738. />
  8739. <productGroupable type="0"
  8740. />
  8741. </product>
  8742. <product id="SF2"
  8743. name="SF2"
  8744. series="SF"
  8745. latestVersion="3.3.4"
  8746. show = "1" >
  8747. <productMenu id="protocol"
  8748. type="2" >
  8749. </productMenu>
  8750. <productMenu id="sip"
  8751. type="1" >
  8752. </productMenu>
  8753. <productMenu id="bluetoothIntercom"
  8754. type="1" >
  8755. </productMenu>
  8756. <productMenu id="phone"
  8757. type="1" >
  8758. </productMenu>
  8759. <productMenu id="music"
  8760. type="1" >
  8761. </productMenu>
  8762. <productMenu id="fmradio"
  8763. type="0" >
  8764. </productMenu>
  8765. <productMenu id="deviceSetting"
  8766. type="1"
  8767. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8768. <productMenuURL version="3.0"
  8769. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8770. />
  8771. </productMenu>
  8772. <productMenu id="quickGuide"
  8773. type="0"
  8774. url=""
  8775. size="934KB" >
  8776. </productMenu>
  8777. <productMenu id="userGuide"
  8778. type="1"
  8779. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8780. size="1.14MB" >
  8781. </productMenu>
  8782. <productMenu id="connectGuide"
  8783. type="1"
  8784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8785. size="1.12MB" >
  8786. </productMenu>
  8787. <productMenu id="volume"
  8788. type="15" >
  8789. </productMenu>
  8790. <productID id="3360"
  8791. />
  8792. <productGroupable type="0"
  8793. />
  8794. </product>
  8795. <product id="SF1"
  8796. name="SF1"
  8797. series="SF"
  8798. latestVersion="2.0.5"
  8799. show = "-1" >
  8800. <productMenu id="protocol"
  8801. type="1"
  8802. url="1">
  8803. </productMenu>
  8804. <productMenu id="sip"
  8805. type="1" >
  8806. </productMenu>
  8807. <productMenu id="bluetoothIntercom"
  8808. type="1" >
  8809. <productMenuType version="1.1"
  8810. type="0"
  8811. />
  8812. </productMenu>
  8813. <productMenu id="phone"
  8814. type="1" >
  8815. </productMenu>
  8816. <productMenu id="music"
  8817. type="1" >
  8818. </productMenu>
  8819. <productMenu id="deviceSetting"
  8820. type="1"
  8821. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8822. <productMenuURL version="1.1"
  8823. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8824. />
  8825. <productMenuURL version="1.0"
  8826. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8827. />
  8828. </productMenu>
  8829. <productMenu id="quickGuide"
  8830. type="1"
  8831. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8832. size="401KB" >
  8833. </productMenu>
  8834. <productMenu id="userGuide"
  8835. type="1"
  8836. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8837. size="1.91MB" >
  8838. </productMenu>
  8839. <productMenu id="volume"
  8840. type="3" >
  8841. </productMenu>
  8842. <productID id="5410"
  8843. />
  8844. <productGroupable type="0"
  8845. />
  8846. </product>
  8847. <product id="SF1"
  8848. name="SF1"
  8849. series="SF"
  8850. latestVersion="3.3.4"
  8851. show = "1" >
  8852. <productMenu id="protocol"
  8853. type="2" >
  8854. </productMenu>
  8855. <productMenu id="sip"
  8856. type="1" >
  8857. </productMenu>
  8858. <productMenu id="bluetoothIntercom"
  8859. type="1" >
  8860. </productMenu>
  8861. <productMenu id="phone"
  8862. type="1" >
  8863. </productMenu>
  8864. <productMenu id="music"
  8865. type="1" >
  8866. </productMenu>
  8867. <productMenu id="fmradio"
  8868. type="0" >
  8869. </productMenu>
  8870. <productMenu id="deviceSetting"
  8871. type="1"
  8872. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8873. <productMenuURL version="3.0"
  8874. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8875. />
  8876. </productMenu>
  8877. <productMenu id="quickGuide"
  8878. type="0"
  8879. url=""
  8880. size="934KB" >
  8881. </productMenu>
  8882. <productMenu id="userGuide"
  8883. type="1"
  8884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8885. size="1.14MB" >
  8886. </productMenu>
  8887. <productMenu id="connectGuide"
  8888. type="1"
  8889. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8890. size="1.12MB" >
  8891. </productMenu>
  8892. <productMenu id="volume"
  8893. type="15" >
  8894. </productMenu>
  8895. <productID id="3350"
  8896. />
  8897. <productGroupable type="0"
  8898. />
  8899. </product>
  8900. <product id="SFR"
  8901. name="SFR"
  8902. series="SF"
  8903. latestVersion="1.1.1"
  8904. show = "1" >
  8905. <productMenu id="protocol"
  8906. type="1"
  8907. url="3">
  8908. </productMenu>
  8909. <productMenu id="sip"
  8910. type="1" >
  8911. </productMenu>
  8912. <productMenu id="bluetoothIntercom"
  8913. type="1" >
  8914. </productMenu>
  8915. <productMenu id="phone"
  8916. type="1" >
  8917. </productMenu>
  8918. <productMenu id="music"
  8919. type="1" >
  8920. </productMenu>
  8921. <productMenu id="fmradio"
  8922. type="1" >
  8923. </productMenu>
  8924. <productMenu id="deviceSetting"
  8925. type="1"
  8926. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8927. </productMenu>
  8928. <productMenu id="quickGuide"
  8929. type="1"
  8930. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8931. size="607KB" >
  8932. </productMenu>
  8933. <productMenu id="userGuide"
  8934. type="1"
  8935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8936. size="1.91MB" >
  8937. </productMenu>
  8938. <productMenu id="volume"
  8939. type="4" >
  8940. </productMenu>
  8941. <productID id="5418"
  8942. />
  8943. <productGroupable type="0"
  8944. />
  8945. </product>
  8946. <product id="20S"
  8947. name="20S"
  8948. series="20"
  8949. latestVersion="2.2.3"
  8950. show = "1" >
  8951. <productMenu id="protocol"
  8952. type="0">
  8953. </productMenu>
  8954. <productMenu id="wa"
  8955. type="5" >
  8956. </productMenu>
  8957. <productMenu id="sip"
  8958. type="1" >
  8959. <productMenuType version="1.0"
  8960. type="0"
  8961. />
  8962. </productMenu>
  8963. <productMenu id="bluetoothIntercom"
  8964. type="1" >
  8965. <productMenuType version="1.0"
  8966. type="0"
  8967. />
  8968. </productMenu>
  8969. <productMenu id="intercomSetting"
  8970. type="1" >
  8971. </productMenu>
  8972. <productMenu id="phone"
  8973. type="2" >
  8974. </productMenu>
  8975. <productMenu id="fmradio"
  8976. type="3" >
  8977. </productMenu>
  8978. <productMenu id="deviceSetting"
  8979. type="1"
  8980. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8981. <productMenuURL version="2.0.2"
  8982. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8983. />
  8984. <productMenuURL version="1.5"
  8985. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8986. />
  8987. <productMenuURL version="1.4.1"
  8988. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8989. />
  8990. <productMenuURL version="1.1"
  8991. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8992. />
  8993. <productMenuURL version="1.0"
  8994. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8995. />
  8996. </productMenu>
  8997. <productMenu id="quickGuide"
  8998. type="0"
  8999. url=""
  9000. size="264KB" >
  9001. </productMenu>
  9002. <productMenu id="userGuide"
  9003. type="1"
  9004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9005. size="3.09MB" >
  9006. </productMenu>
  9007. <productMenu id="connectGuide"
  9008. type="1"
  9009. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9010. size="1.12MB" >
  9011. </productMenu>
  9012. <productID id="4210"
  9013. />
  9014. <productGroupable type="1"
  9015. />
  9016. </product>
  9017. <product id="20S_EVO"
  9018. name="20S EVO"
  9019. series="20"
  9020. latestVersion="2.2.3"
  9021. show = "1" >
  9022. <productMenu id="protocol"
  9023. type="0">
  9024. </productMenu>
  9025. <productMenu id="wa"
  9026. type="5" >
  9027. </productMenu>
  9028. <productMenu id="sip"
  9029. type="1" >
  9030. <productMenuType version="1.0"
  9031. type="0"
  9032. />
  9033. </productMenu>
  9034. <productMenu id="bluetoothIntercom"
  9035. type="1" >
  9036. <productMenuType version="1.0"
  9037. type="0"
  9038. />
  9039. </productMenu>
  9040. <productMenu id="intercomSetting"
  9041. type="1" >
  9042. </productMenu>
  9043. <productMenu id="phone"
  9044. type="2" >
  9045. </productMenu>
  9046. <productMenu id="fmradio"
  9047. type="3" >
  9048. </productMenu>
  9049. <productMenu id="deviceSetting"
  9050. type="1"
  9051. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9052. <productMenuURL version="2.0.2"
  9053. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9054. />
  9055. <productMenuURL version="1.5"
  9056. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9057. />
  9058. <productMenuURL version="1.4.1"
  9059. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9060. />
  9061. <productMenuURL version="1.1"
  9062. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9063. />
  9064. <productMenuURL version="1.0"
  9065. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9066. />
  9067. </productMenu>
  9068. <productMenu id="quickGuide"
  9069. type="0"
  9070. url=""
  9071. size="264KB" >
  9072. </productMenu>
  9073. <productMenu id="userGuide"
  9074. type="1"
  9075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9076. size="3.09MB" >
  9077. </productMenu>
  9078. <productMenu id="connectGuide"
  9079. type="1"
  9080. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9081. size="1.12MB" >
  9082. </productMenu>
  9083. <productID id="4210"
  9084. />
  9085. <productProductKey key="16"
  9086. />
  9087. <productGroupable type="1"
  9088. />
  9089. </product>
  9090. <product id="10S"
  9091. name="10S"
  9092. series="10"
  9093. latestVersion="3.0.2"
  9094. show = "1" >
  9095. <productMenu id="protocol"
  9096. type="3" >
  9097. </productMenu>
  9098. <productMenu id="sip"
  9099. type="1" >
  9100. </productMenu>
  9101. <productMenu id="bluetoothIntercom"
  9102. type="1" >
  9103. </productMenu>
  9104. <productMenu id="phone"
  9105. type="1" >
  9106. </productMenu>
  9107. <productMenu id="deviceSetting"
  9108. type="1"
  9109. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9110. </productMenu>
  9111. <productMenu id="quickGuide"
  9112. type="1"
  9113. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9114. size="934KB" >
  9115. </productMenu>
  9116. <productMenu id="userGuide"
  9117. type="1"
  9118. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9119. size="1.14MB" >
  9120. </productMenu>
  9121. <productMenu id="connectGuide"
  9122. type="1"
  9123. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9124. size="1.12MB" >
  9125. </productMenu>
  9126. <productID id="3380"
  9127. />
  9128. <productGroupable type="0"
  9129. />
  9130. </product>
  9131. <product id="10S"
  9132. name="10S"
  9133. series="10"
  9134. latestVersion="2.1.1"
  9135. show = "-1" >
  9136. <productMenu id="protocol"
  9137. type="0">
  9138. </productMenu>
  9139. <productMenu id="sip"
  9140. type="1" >
  9141. </productMenu>
  9142. <productMenu id="bluetoothIntercom"
  9143. type="1" >
  9144. </productMenu>
  9145. <productMenu id="phone"
  9146. type="2" >
  9147. </productMenu>
  9148. <productMenu id="fmradio"
  9149. type="3" >
  9150. </productMenu>
  9151. <productMenu id="deviceSetting"
  9152. type="1"
  9153. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9154. <productMenuURL version="1.5"
  9155. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9156. />
  9157. <productMenuURL version="1.3.1"
  9158. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9159. />
  9160. </productMenu>
  9161. <productMenu id="quickGuide"
  9162. type="1"
  9163. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9164. size="310KB" >
  9165. </productMenu>
  9166. <productMenu id="userGuide"
  9167. type="1"
  9168. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9169. size="1.57MB" >
  9170. </productMenu>
  9171. <productID id="5530"
  9172. />
  9173. <productGroupable type="0"
  9174. />
  9175. </product>
  9176. <product id="Apex"
  9177. name="Apex"
  9178. series="APEX"
  9179. latestVersion="1.0"
  9180. latestVersionVoicePrompt="0.2"
  9181. show = "1" >
  9182. <productMenu id="protocol"
  9183. type="2" >
  9184. </productMenu>
  9185. <productMenu id="warranty"
  9186. type="1" >
  9187. </productMenu>
  9188. <productMenu id="serialNumber"
  9189. type="1" >
  9190. </productMenu>
  9191. <productMenu id="ota"
  9192. type="2" >
  9193. <otaLanguages>
  9194. <otaLanguage
  9195. id="0"
  9196. name="English"
  9197. package="0"
  9198. />
  9199. <otaLanguage
  9200. id="0"
  9201. name="French"
  9202. package="1"
  9203. />
  9204. <otaLanguage
  9205. id="0"
  9206. name="Spanish"
  9207. package="2"
  9208. />
  9209. <otaLanguage
  9210. id="0"
  9211. name="Italian"
  9212. package="3"
  9213. />
  9214. <otaLanguage
  9215. id="0"
  9216. name="German"
  9217. package="4"
  9218. />
  9219. <otaLanguage
  9220. id="0"
  9221. name="Dutch"
  9222. package="5"
  9223. />
  9224. <otaLanguage
  9225. id="0"
  9226. name="Russian"
  9227. package="6"
  9228. />
  9229. <otaLanguage
  9230. id="0"
  9231. name="Chinese"
  9232. package="7"
  9233. />
  9234. <otaLanguage
  9235. id="0"
  9236. name="Korean"
  9237. package="8"
  9238. />
  9239. <otaLanguage
  9240. id="0"
  9241. name="Japanese"
  9242. package="9"
  9243. />
  9244. <otaLanguage
  9245. id="0"
  9246. name="Finnish"
  9247. package="10"
  9248. />
  9249. <otaLanguage
  9250. id="0"
  9251. name="Polish"
  9252. package="11"
  9253. />
  9254. </otaLanguages>
  9255. <otaPackages>
  9256. <package
  9257. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9258. size="5183988"
  9259. />
  9260. <package
  9261. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9262. size="5183988"
  9263. />
  9264. <package
  9265. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9266. size="5183988"
  9267. />
  9268. <package
  9269. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9270. size="5183988"
  9271. />
  9272. <package
  9273. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9274. size="5183988"
  9275. />
  9276. <package
  9277. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9278. size="5183988"
  9279. />
  9280. <package
  9281. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9282. size="5183988"
  9283. />
  9284. <package
  9285. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9286. size="5183988"
  9287. />
  9288. <package
  9289. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9290. size="5183988"
  9291. />
  9292. <package
  9293. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9294. size="5183988"
  9295. />
  9296. <package
  9297. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9298. size="5183988"
  9299. />
  9300. <package
  9301. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9302. size="5183988"
  9303. />
  9304. </otaPackages>
  9305. </productMenu>
  9306. <productMenu id="sip"
  9307. type="1" >
  9308. </productMenu>
  9309. <productMenu id="bluetoothIntercom"
  9310. type="1" >
  9311. </productMenu>
  9312. <productMenu id="phone"
  9313. type="1" >
  9314. </productMenu>
  9315. <productMenu id="music"
  9316. type="1" >
  9317. </productMenu>
  9318. <productMenu id="fmradio"
  9319. type="1"
  9320. url="1" >
  9321. </productMenu>
  9322. <productMenu id="deviceSetting"
  9323. type="1"
  9324. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9325. <productMenuURL version="1.0"
  9326. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9327. />
  9328. </productMenu>
  9329. <productMenu id="quickGuide"
  9330. type="0"
  9331. url=""
  9332. size="934KB" >
  9333. </productMenu>
  9334. <productMenu id="userGuide"
  9335. type="1"
  9336. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9337. size="1.14MB" >
  9338. </productMenu>
  9339. <productMenu id="connectGuide"
  9340. type="1"
  9341. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  9342. size="1.12MB" >
  9343. </productMenu>
  9344. <productMenu id="volume+"
  9345. type="2"
  9346. url="0x0004" >
  9347. </productMenu>
  9348. <productMenu id="appearance"
  9349. type="1"
  9350. url="1|white,silver,black" >
  9351. </productMenu>
  9352. <productMenu id="battery"
  9353. type="1" >
  9354. </productMenu>
  9355. <productID id="3452"
  9356. />
  9357. <productGroupable type="0"
  9358. />
  9359. </product>
  9360. <product id="ApexPlus"
  9361. name="Apex Plus"
  9362. series="APEX"
  9363. latestVersion="1.0"
  9364. latestVersionVoicePrompt="0.2"
  9365. show = "1" >
  9366. <productMenu id="protocol"
  9367. type="2" >
  9368. </productMenu>
  9369. <productMenu id="warranty"
  9370. type="1" >
  9371. </productMenu>
  9372. <productMenu id="serialNumber"
  9373. type="1" >
  9374. </productMenu>
  9375. <productMenu id="ota"
  9376. type="2" >
  9377. <otaLanguages>
  9378. <otaLanguage
  9379. id="0"
  9380. name="English"
  9381. package="0"
  9382. />
  9383. <otaLanguage
  9384. id="0"
  9385. name="French"
  9386. package="1"
  9387. />
  9388. <otaLanguage
  9389. id="0"
  9390. name="Spanish"
  9391. package="2"
  9392. />
  9393. <otaLanguage
  9394. id="0"
  9395. name="Italian"
  9396. package="3"
  9397. />
  9398. <otaLanguage
  9399. id="0"
  9400. name="German"
  9401. package="4"
  9402. />
  9403. <otaLanguage
  9404. id="0"
  9405. name="Dutch"
  9406. package="5"
  9407. />
  9408. <otaLanguage
  9409. id="0"
  9410. name="Russian"
  9411. package="6"
  9412. />
  9413. <otaLanguage
  9414. id="0"
  9415. name="Chinese"
  9416. package="7"
  9417. />
  9418. <otaLanguage
  9419. id="0"
  9420. name="Korean"
  9421. package="8"
  9422. />
  9423. <otaLanguage
  9424. id="0"
  9425. name="Japanese"
  9426. package="9"
  9427. />
  9428. <otaLanguage
  9429. id="0"
  9430. name="Finnish"
  9431. package="10"
  9432. />
  9433. <otaLanguage
  9434. id="0"
  9435. name="Polish"
  9436. package="11"
  9437. />
  9438. </otaLanguages>
  9439. <otaPackages>
  9440. <package
  9441. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9442. size="5183988"
  9443. />
  9444. <package
  9445. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9446. size="5183988"
  9447. />
  9448. <package
  9449. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9450. size="5183988"
  9451. />
  9452. <package
  9453. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9454. size="5183988"
  9455. />
  9456. <package
  9457. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9458. size="5183988"
  9459. />
  9460. <package
  9461. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9462. size="5183988"
  9463. />
  9464. <package
  9465. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9466. size="5183988"
  9467. />
  9468. <package
  9469. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9470. size="5183988"
  9471. />
  9472. <package
  9473. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9474. size="5183988"
  9475. />
  9476. <package
  9477. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9478. size="5183988"
  9479. />
  9480. <package
  9481. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9482. size="5183988"
  9483. />
  9484. <package
  9485. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9486. size="5183988"
  9487. />
  9488. </otaPackages>
  9489. </productMenu>
  9490. <productMenu id="sip"
  9491. type="1" >
  9492. </productMenu>
  9493. <productMenu id="bluetoothIntercom"
  9494. type="1" >
  9495. </productMenu>
  9496. <productMenu id="phone"
  9497. type="1" >
  9498. </productMenu>
  9499. <productMenu id="music"
  9500. type="1" >
  9501. </productMenu>
  9502. <productMenu id="fmradio"
  9503. type="1"
  9504. url="1" >
  9505. </productMenu>
  9506. <productMenu id="deviceSetting"
  9507. type="1"
  9508. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9509. <productMenuURL version="1.0"
  9510. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9511. />
  9512. </productMenu>
  9513. <productMenu id="quickGuide"
  9514. type="0"
  9515. url=""
  9516. size="934KB" >
  9517. </productMenu>
  9518. <productMenu id="userGuide"
  9519. type="1"
  9520. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9521. size="1.14MB" >
  9522. </productMenu>
  9523. <productMenu id="connectGuide"
  9524. type="1"
  9525. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  9526. size="1.12MB" >
  9527. </productMenu>
  9528. <productMenu id="volume+"
  9529. type="2"
  9530. url="0x0004" >
  9531. </productMenu>
  9532. <productMenu id="appearance"
  9533. type="1"
  9534. url="1|white,silver,black" >
  9535. </productMenu>
  9536. <productMenu id="battery"
  9537. type="1" >
  9538. </productMenu>
  9539. <productID id="3453"
  9540. />
  9541. <productGroupable type="0"
  9542. />
  9543. </product>
  9544. <product id="10R2"
  9545. name="10R 2"
  9546. series="10"
  9547. latestVersion="0.9"
  9548. latestVersionVoicePrompt="1.1"
  9549. show = "-1" >
  9550. <productMenu id="protocol"
  9551. type="2" >
  9552. </productMenu>
  9553. <productMenu id="ota"
  9554. type="2" >
  9555. <otaPackages>
  9556. <package
  9557. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9558. size="2945812"
  9559. />
  9560. </otaPackages>
  9561. </productMenu>
  9562. <productMenu id="sip"
  9563. type="1" >
  9564. </productMenu>
  9565. <productMenu id="bluetoothIntercom"
  9566. type="1" >
  9567. </productMenu>
  9568. <productMenu id="phone"
  9569. type="1" >
  9570. </productMenu>
  9571. <productMenu id="music"
  9572. type="1" >
  9573. </productMenu>
  9574. <productMenu id="fmradio"
  9575. type="1"
  9576. url="1" >
  9577. </productMenu>
  9578. <productMenu id="deviceSetting"
  9579. type="1"
  9580. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9581. </productMenu>
  9582. <productMenu id="quickGuide"
  9583. type="1"
  9584. url=""
  9585. size="934KB" >
  9586. </productMenu>
  9587. <productMenu id="userGuide"
  9588. type="0"
  9589. url=""
  9590. size="1.14MB" >
  9591. </productMenu>
  9592. <productMenu id="volume"
  9593. type="15" >
  9594. </productMenu>
  9595. <productID id="4000"
  9596. />
  9597. <productGroupable type="0"
  9598. />
  9599. </product>
  9600. <product id="10R"
  9601. name="10R"
  9602. series="10"
  9603. latestVersion="2.1.1"
  9604. show = "1" >
  9605. <productMenu id="protocol"
  9606. type="0">
  9607. </productMenu>
  9608. <productMenu id="sip"
  9609. type="1" >
  9610. <productMenuType version="1.0.2"
  9611. type="0"
  9612. />
  9613. </productMenu>
  9614. <productMenu id="bluetoothIntercom"
  9615. type="1" >
  9616. <productMenuType version="1.0.2"
  9617. type="0"
  9618. />
  9619. </productMenu>
  9620. <productMenu id="phone"
  9621. type="2" >
  9622. </productMenu>
  9623. <productMenu id="fmradio"
  9624. type="3" >
  9625. </productMenu>
  9626. <productMenu id="deviceSetting"
  9627. type="1"
  9628. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9629. <productMenuURL version="1.4"
  9630. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9631. />
  9632. <productMenuURL version="1.2.1"
  9633. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9634. />
  9635. <productMenuURL version="1.0.2"
  9636. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9637. />
  9638. <productMenuURL version="1.0"
  9639. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9640. />
  9641. </productMenu>
  9642. <productMenu id="quickGuide"
  9643. type="1"
  9644. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9645. size="400KB" >
  9646. </productMenu>
  9647. <productMenu id="userGuide"
  9648. type="1"
  9649. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9650. size="2.75MB" >
  9651. </productMenu>
  9652. <productMenu id="connectGuide"
  9653. type="1"
  9654. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9655. size="1.12MB" >
  9656. </productMenu>
  9657. <productID id="5520"
  9658. />
  9659. <productGroupable type="0"
  9660. />
  9661. </product>
  9662. <product id="10C_EVO"
  9663. name="10C EVO"
  9664. series="10"
  9665. latestVersion="1.7"
  9666. show = "1" >
  9667. <productMenu id="protocol"
  9668. type="0">
  9669. </productMenu>
  9670. <productMenu id="sip"
  9671. type="1" >
  9672. </productMenu>
  9673. <productMenu id="bluetoothIntercom"
  9674. type="1" >
  9675. </productMenu>
  9676. <productMenu id="phone"
  9677. type="2" >
  9678. </productMenu>
  9679. <productMenu id="fmradio"
  9680. type="3" >
  9681. </productMenu>
  9682. <productMenu id="deviceSetting"
  9683. type="1"
  9684. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9685. <productMenuURL version="1.3.1"
  9686. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9687. />
  9688. </productMenu>
  9689. <productMenu id="quickGuide"
  9690. type="1"
  9691. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9692. size="1.32MB" >
  9693. </productMenu>
  9694. <productMenu id="userGuide"
  9695. type="1"
  9696. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9697. size="1.68MB" >
  9698. </productMenu>
  9699. <productMenu id="connectGuide"
  9700. type="1"
  9701. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9702. size="1.12MB" >
  9703. </productMenu>
  9704. <productID id="5570"
  9705. />
  9706. <productGroupable type="0"
  9707. />
  9708. </product>
  9709. <product id="10C_Pro"
  9710. name="10C Pro"
  9711. series="10"
  9712. latestVersion="2.7.1"
  9713. show = "1" >
  9714. <productMenu id="protocol"
  9715. type="0">
  9716. </productMenu>
  9717. <productMenu id="sip"
  9718. type="1" >
  9719. </productMenu>
  9720. <productMenu id="bluetoothIntercom"
  9721. type="1" >
  9722. </productMenu>
  9723. <productMenu id="phone"
  9724. type="2" >
  9725. </productMenu>
  9726. <productMenu id="fmradio"
  9727. type="3" >
  9728. </productMenu>
  9729. <productMenu id="deviceSetting"
  9730. type="1"
  9731. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9732. <productMenuURL version="2.5.1"
  9733. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9734. />
  9735. <productMenuURL version="1.0"
  9736. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9737. />
  9738. </productMenu>
  9739. <productMenu id="quickGuide"
  9740. type="1"
  9741. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9742. size="651KB" >
  9743. </productMenu>
  9744. <productMenu id="userGuide"
  9745. type="1"
  9746. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9747. size="2.34MB" >
  9748. </productMenu>
  9749. <productMenu id="connectGuide"
  9750. type="1"
  9751. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9752. size="1.12MB" >
  9753. </productMenu>
  9754. <productID id="5580"
  9755. />
  9756. <productGroupable type="0"
  9757. />
  9758. </product>
  9759. <product id="10C"
  9760. name="10C"
  9761. series="10"
  9762. latestVersion="3.0.4"
  9763. show = "1" >
  9764. <productMenu id="protocol"
  9765. type="0">
  9766. </productMenu>
  9767. <productMenu id="sip"
  9768. type="1" >
  9769. <productMenuType version="1.0.4"
  9770. type="0"
  9771. />
  9772. </productMenu>
  9773. <productMenu id="bluetoothIntercom"
  9774. type="1" >
  9775. <productMenuType version="1.0.4"
  9776. type="0"
  9777. />
  9778. </productMenu>
  9779. <productMenu id="phone"
  9780. type="2" >
  9781. </productMenu>
  9782. <productMenu id="fmradio"
  9783. type="3" >
  9784. </productMenu>
  9785. <productMenu id="deviceSetting"
  9786. type="1"
  9787. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9788. <productMenuURL version="2.3"
  9789. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9790. />
  9791. <productMenuURL version="2.1.1"
  9792. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9793. />
  9794. <productMenuURL version="1.0.4"
  9795. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9796. />
  9797. <productMenuURL version="1.0.2"
  9798. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9799. />
  9800. </productMenu>
  9801. <productMenu id="quickGuide"
  9802. type="1"
  9803. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9804. size="935KB" >
  9805. </productMenu>
  9806. <productMenu id="userGuide"
  9807. type="1"
  9808. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9809. size="2.82MB" >
  9810. </productMenu>
  9811. <productMenu id="connectGuide"
  9812. type="1"
  9813. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9814. size="1.12MB" >
  9815. </productMenu>
  9816. <productID id="5510"
  9817. />
  9818. <productGroupable type="0"
  9819. />
  9820. </product>
  9821. <product id="10U_GT_AIR"
  9822. name="10U GT-Air"
  9823. series="10"
  9824. latestVersion="2.0.4"
  9825. show = "1" >
  9826. <productMenu id="protocol"
  9827. type="0">
  9828. </productMenu>
  9829. <productMenu id="sip"
  9830. type="1" >
  9831. <productMenuType version="1.0.2"
  9832. type="0"
  9833. />
  9834. </productMenu>
  9835. <productMenu id="bluetoothIntercom"
  9836. type="1" >
  9837. <productMenuType version="1.0.2"
  9838. type="0"
  9839. />
  9840. </productMenu>
  9841. <productMenu id="phone"
  9842. type="2" >
  9843. </productMenu>
  9844. <productMenu id="fmradio"
  9845. type="3" >
  9846. </productMenu>
  9847. <productMenu id="deviceSetting"
  9848. type="1"
  9849. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9850. <productMenuURL version="1.3.2"
  9851. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9852. />
  9853. <productMenuURL version="1.0.2"
  9854. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9855. />
  9856. </productMenu>
  9857. <productMenu id="quickGuide"
  9858. type="1"
  9859. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9860. size="685KB" >
  9861. </productMenu>
  9862. <productMenu id="userGuide"
  9863. type="1"
  9864. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9865. size="684KB" >
  9866. </productMenu>
  9867. <productMenu id="connectGuide"
  9868. type="1"
  9869. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9870. size="1.12MB" >
  9871. </productMenu>
  9872. <productID id="5610"
  9873. />
  9874. <productGroupable type="0"
  9875. />
  9876. </product>
  9877. <product id="10U_NEOTEC"
  9878. name="10U Neotec"
  9879. series="10"
  9880. latestVersion="2.0.4"
  9881. show = "1" >
  9882. <productMenu id="protocol"
  9883. type="0">
  9884. </productMenu>
  9885. <productMenu id="sip"
  9886. type="1" >
  9887. <productMenuType version="1.0.2"
  9888. type="0"
  9889. />
  9890. </productMenu>
  9891. <productMenu id="bluetoothIntercom"
  9892. type="1" >
  9893. <productMenuType version="1.0.2"
  9894. type="0"
  9895. />
  9896. </productMenu>
  9897. <productMenu id="phone"
  9898. type="2" >
  9899. </productMenu>
  9900. <productMenu id="fmradio"
  9901. type="3" >
  9902. </productMenu>
  9903. <productMenu id="deviceSetting"
  9904. type="1"
  9905. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9906. <productMenuURL version="1.3.2"
  9907. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9908. />
  9909. <productMenuURL version="1.0.2"
  9910. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9911. />
  9912. </productMenu>
  9913. <productMenu id="quickGuide"
  9914. type="1"
  9915. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9916. size="689KB" >
  9917. </productMenu>
  9918. <productMenu id="userGuide"
  9919. type="1"
  9920. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9921. size="684KB" >
  9922. </productMenu>
  9923. <productMenu id="connectGuide"
  9924. type="1"
  9925. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9926. size="1.12MB" >
  9927. </productMenu>
  9928. <productID id="5611"
  9929. />
  9930. <productGroupable type="0"
  9931. />
  9932. </product>
  9933. <product id="10U_J_CRUISE"
  9934. name="10U J-Cruise"
  9935. series="10"
  9936. latestVersion="2.0.4"
  9937. show = "1" >
  9938. <productMenu id="protocol"
  9939. type="0">
  9940. </productMenu>
  9941. <productMenu id="sip"
  9942. type="1" >
  9943. <productMenuType version="1.0.2"
  9944. type="0"
  9945. />
  9946. </productMenu>
  9947. <productMenu id="bluetoothIntercom"
  9948. type="1" >
  9949. <productMenuType version="1.0.2"
  9950. type="0"
  9951. />
  9952. </productMenu>
  9953. <productMenu id="phone"
  9954. type="2" >
  9955. </productMenu>
  9956. <productMenu id="fmradio"
  9957. type="3" >
  9958. </productMenu>
  9959. <productMenu id="deviceSetting"
  9960. type="1"
  9961. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9962. <productMenuURL version="1.3.2"
  9963. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9964. />
  9965. <productMenuURL version="1.0.2"
  9966. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9967. />
  9968. </productMenu>
  9969. <productMenu id="quickGuide"
  9970. type="1"
  9971. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9972. size="686KB" >
  9973. </productMenu>
  9974. <productMenu id="userGuide"
  9975. type="1"
  9976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9977. size="684KB" >
  9978. </productMenu>
  9979. <productMenu id="connectGuide"
  9980. type="1"
  9981. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9982. size="1.12MB" >
  9983. </productMenu>
  9984. <productID id="5612"
  9985. />
  9986. <productGroupable type="0"
  9987. />
  9988. </product>
  9989. <product id="10U_C3"
  9990. name="10U C3/C3Pro"
  9991. series="10"
  9992. latestVersion="2.0.4"
  9993. show = "1" >
  9994. <productMenu id="protocol"
  9995. type="0">
  9996. </productMenu>
  9997. <productMenu id="sip"
  9998. type="1" >
  9999. <productMenuType version="1.0.2"
  10000. type="0"
  10001. />
  10002. </productMenu>
  10003. <productMenu id="bluetoothIntercom"
  10004. type="1" >
  10005. <productMenuType version="1.0.2"
  10006. type="0"
  10007. />
  10008. </productMenu>
  10009. <productMenu id="phone"
  10010. type="2" >
  10011. </productMenu>
  10012. <productMenu id="fmradio"
  10013. type="3" >
  10014. </productMenu>
  10015. <productMenu id="deviceSetting"
  10016. type="1"
  10017. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10018. <productMenuURL version="1.3.2"
  10019. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10020. />
  10021. <productMenuURL version="1.0.2"
  10022. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10023. />
  10024. </productMenu>
  10025. <productMenu id="quickGuide"
  10026. type="1"
  10027. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10028. size="199KB" >
  10029. </productMenu>
  10030. <productMenu id="userGuide"
  10031. type="1"
  10032. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10033. size="684KB" >
  10034. </productMenu>
  10035. <productMenu id="connectGuide"
  10036. type="1"
  10037. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10038. size="1.12MB" >
  10039. </productMenu>
  10040. <productID id="5620"
  10041. />
  10042. <productGroupable type="0"
  10043. />
  10044. </product>
  10045. <product id="10U_ARAI"
  10046. name="10U Arai"
  10047. series="10"
  10048. latestVersion="2.0.4"
  10049. show = "1" >
  10050. <productMenu id="protocol"
  10051. type="0">
  10052. </productMenu>
  10053. <productMenu id="sip"
  10054. type="1" >
  10055. <productMenuType version="1.0.2"
  10056. type="0"
  10057. />
  10058. </productMenu>
  10059. <productMenu id="bluetoothIntercom"
  10060. type="1" >
  10061. <productMenuType version="1.0.2"
  10062. type="0"
  10063. />
  10064. </productMenu>
  10065. <productMenu id="phone"
  10066. type="2" >
  10067. </productMenu>
  10068. <productMenu id="fmradio"
  10069. type="3" >
  10070. </productMenu>
  10071. <productMenu id="deviceSetting"
  10072. type="1"
  10073. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10074. <productMenuURL version="1.3.2"
  10075. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10076. />
  10077. <productMenuURL version="1.0.2"
  10078. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10079. />
  10080. </productMenu>
  10081. <productMenu id="quickGuide"
  10082. type="1"
  10083. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10084. size="689KB" >
  10085. </productMenu>
  10086. <productMenu id="userGuide"
  10087. type="1"
  10088. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10089. size="684KB" >
  10090. </productMenu>
  10091. <productMenu id="connectGuide"
  10092. type="1"
  10093. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10094. size="1.12MB" >
  10095. </productMenu>
  10096. <productID id="5621"
  10097. />
  10098. <productGroupable type="0"
  10099. />
  10100. </product>
  10101. <product id="10Upad"
  10102. name="10Upad"
  10103. series="10"
  10104. latestVersion="2.0.3"
  10105. show = "1" >
  10106. <productMenu id="protocol"
  10107. type="0">
  10108. </productMenu>
  10109. <productMenu id="sip"
  10110. type="1" >
  10111. </productMenu>
  10112. <productMenu id="bluetoothIntercom"
  10113. type="1" >
  10114. </productMenu>
  10115. <productMenu id="phone"
  10116. type="2" >
  10117. </productMenu>
  10118. <productMenu id="fmradio"
  10119. type="3" >
  10120. </productMenu>
  10121. <productMenu id="deviceSetting"
  10122. type="1"
  10123. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10124. <productMenuURL version="1.0.3"
  10125. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10126. />
  10127. </productMenu>
  10128. <productMenu id="quickGuide"
  10129. type="1"
  10130. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10131. size="615KB" >
  10132. </productMenu>
  10133. <productMenu id="userGuide"
  10134. type="1"
  10135. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10136. size="0.99MB" >
  10137. </productMenu>
  10138. <productMenu id="connectGuide"
  10139. type="1"
  10140. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10141. size="1.12MB" >
  10142. </productMenu>
  10143. <productID id="6210"
  10144. />
  10145. <productGroupable type="0"
  10146. />
  10147. </product>
  10148. <product id="5S"
  10149. name="5S"
  10150. series="5"
  10151. latestVersion="2.3.1"
  10152. show = "1" >
  10153. <productMenu id="protocol"
  10154. type="3" >
  10155. </productMenu>
  10156. <productMenu id="sip"
  10157. type="1" >
  10158. </productMenu>
  10159. <productMenu id="bluetoothIntercom"
  10160. type="1" >
  10161. </productMenu>
  10162. <productMenu id="phone"
  10163. type="1" >
  10164. </productMenu>
  10165. <productMenu id="fmradio"
  10166. type="0" >
  10167. </productMenu>
  10168. <productMenu id="deviceSetting"
  10169. type="1"
  10170. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10171. </productMenu>
  10172. <productMenu id="quickGuide"
  10173. type="0"
  10174. url=""
  10175. size="934KB" >
  10176. </productMenu>
  10177. <productMenu id="userGuide"
  10178. type="1"
  10179. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10180. size="1.14MB" >
  10181. </productMenu>
  10182. <productMenu id="connectGuide"
  10183. type="1"
  10184. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10185. size="1.12MB" >
  10186. </productMenu>
  10187. <productID id="5590"
  10188. />
  10189. <productGroupable type="0"
  10190. />
  10191. </product>
  10192. <product id="5S"
  10193. name="5S"
  10194. series="5"
  10195. latestVersion="1.2"
  10196. show = "-1" >
  10197. <productMenu id="protocol"
  10198. type="0">
  10199. </productMenu>
  10200. <productMenu id="sip"
  10201. type="1" >
  10202. </productMenu>
  10203. <productMenu id="bluetoothIntercom"
  10204. type="1" >
  10205. </productMenu>
  10206. <productMenu id="phone"
  10207. type="2" >
  10208. </productMenu>
  10209. <productMenu id="fmradio"
  10210. type="3" >
  10211. </productMenu>
  10212. <productMenu id="deviceSetting"
  10213. type="1"
  10214. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10215. </productMenu>
  10216. <productMenu id="quickGuide"
  10217. type="0"
  10218. url=""
  10219. size="970KB" >
  10220. </productMenu>
  10221. <productMenu id="userGuide"
  10222. type="1"
  10223. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10224. size="1.26MB" >
  10225. </productMenu>
  10226. <productID id="5534"
  10227. />
  10228. <productGroupable type="0"
  10229. />
  10230. </product>
  10231. <product id="5S"
  10232. name="5S"
  10233. series="5"
  10234. latestVersion="3.0.1"
  10235. show = "-1" >
  10236. <productMenu id="protocol"
  10237. type="0">
  10238. </productMenu>
  10239. <productMenu id="sip"
  10240. type="1" >
  10241. </productMenu>
  10242. <productMenu id="bluetoothIntercom"
  10243. type="1" >
  10244. </productMenu>
  10245. <productMenu id="phone"
  10246. type="2" >
  10247. </productMenu>
  10248. <productMenu id="fmradio"
  10249. type="0" >
  10250. </productMenu>
  10251. <productMenu id="deviceSetting"
  10252. type="1"
  10253. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10254. </productMenu>
  10255. <productMenu id="quickGuide"
  10256. type="0"
  10257. url=""
  10258. size="970KB" >
  10259. </productMenu>
  10260. <productMenu id="userGuide"
  10261. type="1"
  10262. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10263. size="1.26MB" >
  10264. </productMenu>
  10265. <productID id="5538"
  10266. />
  10267. <productGroupable type="0"
  10268. />
  10269. </product>
  10270. <product id="3SPLUS"
  10271. name="3S PLUS"
  10272. series="3"
  10273. latestVersion="2.2"
  10274. show = "1" >
  10275. <productMenu id="protocol"
  10276. type="3" >
  10277. </productMenu>
  10278. <productMenu id="sip"
  10279. type="1" >
  10280. </productMenu>
  10281. <productMenu id="bluetoothIntercom"
  10282. type="1" >
  10283. </productMenu>
  10284. <productMenu id="deviceSetting"
  10285. type="1"
  10286. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10287. <productMenuURL version="2.2.1"
  10288. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10289. />
  10290. </productMenu>
  10291. <productMenu id="quickGuide"
  10292. type="1"
  10293. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10294. size="344KB" >
  10295. </productMenu>
  10296. <productMenu id="userGuide"
  10297. type="1"
  10298. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10299. size="1.14MB" >
  10300. </productMenu>
  10301. <productMenu id="connectGuide"
  10302. type="1"
  10303. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10304. size="1.12MB" >
  10305. </productMenu>
  10306. <productID id="4023"
  10307. />
  10308. <productGroupable type="0"
  10309. />
  10310. </product>
  10311. <product id="3SPLUS"
  10312. name="3S PLUS"
  10313. series="3"
  10314. latestVersion="1.1"
  10315. show = "-1" >
  10316. <productMenu id="protocol"
  10317. type="0">
  10318. </productMenu>
  10319. <productMenu id="sip"
  10320. type="1" >
  10321. </productMenu>
  10322. <productMenu id="bluetoothIntercom"
  10323. type="1" >
  10324. </productMenu>
  10325. <productMenu id="deviceSetting"
  10326. type="1"
  10327. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10328. </productMenu>
  10329. <productMenu id="quickGuide"
  10330. type="1"
  10331. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10332. size="842KB" >
  10333. </productMenu>
  10334. <productMenu id="userGuide"
  10335. type="1"
  10336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10337. size="1.02MB" >
  10338. </productMenu>
  10339. <productID id="6320"
  10340. />
  10341. <productGroupable type="0"
  10342. />
  10343. </product>
  10344. <product id="AConnect"
  10345. name="Alpinestars A-Connect"
  10346. series="60"
  10347. latestVersion="1.0.2"
  10348. latestVersionMesh="0.19"
  10349. latestVersionVoicePrompt="1.6"
  10350. show = "-1" >
  10351. <productMenu id="protocol"
  10352. type="2" >
  10353. </productMenu>
  10354. <productMenu id="ota"
  10355. type="2" >
  10356. <otaLanguages>
  10357. <otaLanguage
  10358. id="0"
  10359. name="English"
  10360. package="0"
  10361. />
  10362. <otaLanguage
  10363. id="0"
  10364. name="French"
  10365. package="1"
  10366. />
  10367. <otaLanguage
  10368. id="0"
  10369. name="Spanish"
  10370. package="2"
  10371. />
  10372. <otaLanguage
  10373. id="0"
  10374. name="Italian"
  10375. package="3"
  10376. />
  10377. <otaLanguage
  10378. id="0"
  10379. name="German"
  10380. package="4"
  10381. />
  10382. <otaLanguage
  10383. id="0"
  10384. name="Dutch"
  10385. package="5"
  10386. />
  10387. <otaLanguage
  10388. id="0"
  10389. name="Russian"
  10390. package="6"
  10391. />
  10392. <otaLanguage
  10393. id="0"
  10394. name="Chinese"
  10395. package="7"
  10396. />
  10397. <otaLanguage
  10398. id="0"
  10399. name="Korean"
  10400. package="8"
  10401. />
  10402. <otaLanguage
  10403. id="0"
  10404. name="Japanese"
  10405. package="9"
  10406. />
  10407. <otaLanguage
  10408. id="0"
  10409. name="Finnish"
  10410. package="10"
  10411. />
  10412. <otaLanguage
  10413. id="0"
  10414. name="Polish"
  10415. package="11"
  10416. />
  10417. </otaLanguages>
  10418. <otaPackages>
  10419. <package
  10420. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10421. size="5183988"
  10422. />
  10423. <package
  10424. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10425. size="5183988"
  10426. />
  10427. <package
  10428. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10429. size="5183988"
  10430. />
  10431. <package
  10432. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10433. size="5183988"
  10434. />
  10435. <package
  10436. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10437. size="5183988"
  10438. />
  10439. <package
  10440. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10441. size="5183988"
  10442. />
  10443. <package
  10444. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10445. size="5183988"
  10446. />
  10447. <package
  10448. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10449. size="5183988"
  10450. />
  10451. <package
  10452. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10453. size="5183988"
  10454. />
  10455. <package
  10456. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10457. size="5183988"
  10458. />
  10459. <package
  10460. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10461. size="5183988"
  10462. />
  10463. <package
  10464. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10465. size="5183988"
  10466. />
  10467. </otaPackages>
  10468. </productMenu>
  10469. <productMenu id="sip"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="illusion"
  10473. type="0" >
  10474. </productMenu>
  10475. <productMenu id="meshIntercom+"
  10476. type="3"
  10477. url="2" >
  10478. </productMenu>
  10479. <productMenu id="waveIntercom"
  10480. type="1" >
  10481. </productMenu>
  10482. <productMenu id="bluetoothIntercom"
  10483. type="1"
  10484. url="2" >
  10485. </productMenu>
  10486. <productMenu id="bluetoothIntercomGrouping"
  10487. type="0" >
  10488. </productMenu>
  10489. <productMenu id="fmradio"
  10490. type="1"
  10491. url="1" >
  10492. </productMenu>
  10493. <productMenu id="phone"
  10494. type="1" >
  10495. </productMenu>
  10496. <productMenu id="music"
  10497. type="1" >
  10498. </productMenu>
  10499. <productMenu id="musicSharing"
  10500. type="0" >
  10501. </productMenu>
  10502. <productMenu id="deviceSetting"
  10503. type="1"
  10504. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10505. <productMenuURL version="1.0.3"
  10506. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10507. />
  10508. </productMenu>
  10509. <productMenu id="quickGuide"
  10510. type="0"
  10511. url=""
  10512. size="1.12MB" >
  10513. </productMenu>
  10514. <productMenu id="userGuide"
  10515. type="1"
  10516. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10517. size="2.0MB" >
  10518. </productMenu>
  10519. <productMenu id="videoGuide"
  10520. type="0"
  10521. url=""
  10522. size="3.41MB" >
  10523. </productMenu>
  10524. <productMenu id="volume"
  10525. type="16" >
  10526. </productMenu>
  10527. <productMenu id="volume+"
  10528. type="2"
  10529. url="0x6004" >
  10530. </productMenu>
  10531. <productMenu id="soundMode"
  10532. type="0" >
  10533. </productMenu>
  10534. <productMenu id="battery"
  10535. type="1" >
  10536. </productMenu>
  10537. <productID id="6A82"
  10538. />
  10539. <productGroupable type="0"
  10540. />
  10541. </product>
  10542. <product id="iCon"
  10543. name="iCon"
  10544. series="50"
  10545. latestVersion="1.2"
  10546. show = "0" >
  10547. <productMenu id="protocol"
  10548. type="2" >
  10549. </productMenu>
  10550. <productMenu id="alexa"
  10551. type="0" >
  10552. </productMenu>
  10553. <productMenu id="wa"
  10554. type="0" >
  10555. </productMenu>
  10556. <productMenu id="sip"
  10557. type="1" >
  10558. </productMenu>
  10559. <productMenu id="led"
  10560. type="3" >
  10561. </productMenu>
  10562. <productMenu id="meshIntercom"
  10563. type="20" >
  10564. </productMenu>
  10565. <productMenu id="meshIntercom+"
  10566. type="3"
  10567. url="0" >
  10568. <productMenuType version="1.0.9"
  10569. type="2"
  10570. />
  10571. </productMenu>
  10572. <productMenu id="bluetoothIntercom"
  10573. type="1" >
  10574. </productMenu>
  10575. <productMenu id="phone"
  10576. type="1" >
  10577. </productMenu>
  10578. <productMenu id="music"
  10579. type="1" >
  10580. </productMenu>
  10581. <productMenu id="fmradio"
  10582. type="1" >
  10583. </productMenu>
  10584. <productMenu id="deviceSetting"
  10585. type="1"
  10586. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10587. <productMenuURL version="1.0.9"
  10588. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10589. />
  10590. </productMenu>
  10591. <productMenu id="quickGuide"
  10592. type="1"
  10593. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10594. size="344KB" >
  10595. </productMenu>
  10596. <productMenu id="userGuide"
  10597. type="1"
  10598. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10599. size="3.41MB" >
  10600. </productMenu>
  10601. <productMenu id="volume"
  10602. type="11" >
  10603. </productMenu>
  10604. <productMenu id="battery"
  10605. type="1" >
  10606. </productMenu>
  10607. <productID id="3900"
  10608. />
  10609. <productGroupable type="0"
  10610. />
  10611. </product>
  10612. <product id="ICONHelmLinkSL"
  10613. name="ICON HelmLink SL"
  10614. series="50"
  10615. latestVersion="1.0"
  10616. latestVersionVoicePrompt="1.6"
  10617. show = "-1" >
  10618. <productMenu id="protocol"
  10619. type="2" >
  10620. </productMenu>
  10621. <productMenu id="alexa"
  10622. type="0" >
  10623. </productMenu>
  10624. <productMenu id="ota"
  10625. type="2" >
  10626. <otaPackages>
  10627. <package
  10628. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10629. size="2945812"
  10630. />
  10631. </otaPackages>
  10632. </productMenu>
  10633. <productMenu id="wa"
  10634. type="0" >
  10635. </productMenu>
  10636. <productMenu id="meshIntercom"
  10637. type="30" >
  10638. </productMenu>
  10639. <productMenu id="meshIntercom+"
  10640. type="3"
  10641. url="2" >
  10642. </productMenu>
  10643. <productMenu id="waveIntercom"
  10644. type="1" >
  10645. </productMenu>
  10646. <productMenu id="phone"
  10647. type="1" >
  10648. </productMenu>
  10649. <productMenu id="music"
  10650. type="1" >
  10651. </productMenu>
  10652. <productMenu id="musicSharing"
  10653. type="0" >
  10654. </productMenu>
  10655. <productMenu id="deviceSetting"
  10656. type="1"
  10657. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10658. </productMenu>
  10659. <productMenu id="quickGuide"
  10660. type="0"
  10661. url=""
  10662. size="1.12MB" >
  10663. </productMenu>
  10664. <productMenu id="userGuide"
  10665. type="1"
  10666. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10667. size="2.0MB" >
  10668. </productMenu>
  10669. <productMenu id="volume"
  10670. type="12" >
  10671. </productMenu>
  10672. <productMenu id="battery"
  10673. type="1" >
  10674. </productMenu>
  10675. <productID id="6842"
  10676. />
  10677. <productGroupable type="0"
  10678. />
  10679. </product>
  10680. <product id="HD50S"
  10681. name="H-D Audio 50S"
  10682. series="50"
  10683. latestVersion="1.0.1"
  10684. show = "-1" >
  10685. <productMenu id="protocol"
  10686. type="2" >
  10687. </productMenu>
  10688. <productMenu id="alexa"
  10689. type="0" >
  10690. </productMenu>
  10691. <productMenu id="ota"
  10692. type="0"
  10693. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10694. size="1150234" >
  10695. </productMenu>
  10696. <productMenu id="wa"
  10697. type="1" >
  10698. </productMenu>
  10699. <productMenu id="sip"
  10700. type="1" >
  10701. </productMenu>
  10702. <productMenu id="meshIntercom"
  10703. type="20" >
  10704. </productMenu>
  10705. <productMenu id="meshIntercom+"
  10706. type="3"
  10707. url="0" >
  10708. <productMenuType version="1.0.9"
  10709. type="2"
  10710. />
  10711. </productMenu>
  10712. <productMenu id="bluetoothIntercom"
  10713. type="1" >
  10714. </productMenu>
  10715. <productMenu id="phone"
  10716. type="1" >
  10717. </productMenu>
  10718. <productMenu id="music"
  10719. type="1" >
  10720. </productMenu>
  10721. <productMenu id="fmradio"
  10722. type="1" >
  10723. </productMenu>
  10724. <productMenu id="deviceSetting"
  10725. type="1"
  10726. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10727. <productMenuURL version="1.0.9"
  10728. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10729. />
  10730. </productMenu>
  10731. <productMenu id="quickGuide"
  10732. type="1"
  10733. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10734. size="934KB" >
  10735. </productMenu>
  10736. <productMenu id="userGuide"
  10737. type="1"
  10738. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10739. size="1.14MB" >
  10740. </productMenu>
  10741. <productMenu id="volume"
  10742. type="11" >
  10743. </productMenu>
  10744. <productMenu id="battery"
  10745. type="1" >
  10746. </productMenu>
  10747. <productID id="3156"
  10748. />
  10749. <productGroupable type="0"
  10750. />
  10751. </product>
  10752. <product id="HD50S"
  10753. name="H-D Audio 50S"
  10754. series="50"
  10755. latestVersion="2.0.2"
  10756. show = "0" >
  10757. <productMenu id="protocol"
  10758. type="2" >
  10759. </productMenu>
  10760. <productMenu id="alexa"
  10761. type="0" >
  10762. </productMenu>
  10763. <productMenu id="ota"
  10764. type="0"
  10765. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10766. size="1150234" >
  10767. </productMenu>
  10768. <productMenu id="wa"
  10769. type="1" >
  10770. </productMenu>
  10771. <productMenu id="sip"
  10772. type="1" >
  10773. </productMenu>
  10774. <productMenu id="meshIntercom"
  10775. type="20" >
  10776. </productMenu>
  10777. <productMenu id="meshIntercom+"
  10778. type="3"
  10779. url="0" >
  10780. <productMenuType version="2.0.9"
  10781. type="2"
  10782. />
  10783. </productMenu>
  10784. <productMenu id="bluetoothIntercom"
  10785. type="1" >
  10786. </productMenu>
  10787. <productMenu id="phone"
  10788. type="1" >
  10789. </productMenu>
  10790. <productMenu id="music"
  10791. type="1" >
  10792. </productMenu>
  10793. <productMenu id="fmradio"
  10794. type="1" >
  10795. </productMenu>
  10796. <productMenu id="deviceSetting"
  10797. type="1"
  10798. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10799. <productMenuURL version="2.0.9"
  10800. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10801. />
  10802. </productMenu>
  10803. <productMenu id="quickGuide"
  10804. type="1"
  10805. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10806. size="934KB" >
  10807. </productMenu>
  10808. <productMenu id="userGuide"
  10809. type="1"
  10810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10811. size="1.14MB" >
  10812. </productMenu>
  10813. <productMenu id="volume"
  10814. type="11" >
  10815. </productMenu>
  10816. <productMenu id="battery"
  10817. type="1" >
  10818. </productMenu>
  10819. <productID id="3213"
  10820. />
  10821. <productGroupable type="0"
  10822. />
  10823. </product>
  10824. <product id="HD50C"
  10825. name="H-D Audio 50C"
  10826. series="50"
  10827. latestVersion="1.0.1"
  10828. show = "0" >
  10829. <productMenu id="protocol"
  10830. type="2" >
  10831. </productMenu>
  10832. <productMenu id="ota"
  10833. type="0" >
  10834. </productMenu>
  10835. <productMenu id="wa"
  10836. type="1" >
  10837. </productMenu>
  10838. <productMenu id="sip"
  10839. type="1" >
  10840. </productMenu>
  10841. <productMenu id="meshIntercom"
  10842. type="20" >
  10843. </productMenu>
  10844. <productMenu id="meshIntercom+"
  10845. type="3"
  10846. url="0" >
  10847. <productMenuType version="1.0.9"
  10848. type="2"
  10849. />
  10850. </productMenu>
  10851. <productMenu id="bluetoothIntercom"
  10852. type="1" >
  10853. </productMenu>
  10854. <productMenu id="phone"
  10855. type="1" >
  10856. </productMenu>
  10857. <productMenu id="music"
  10858. type="1" >
  10859. </productMenu>
  10860. <productMenu id="fmradio"
  10861. type="1" >
  10862. </productMenu>
  10863. <productMenu id="deviceSetting"
  10864. type="1"
  10865. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10866. <productMenuURL version="1.0.9"
  10867. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10868. />
  10869. </productMenu>
  10870. <productMenu id="quickGuide"
  10871. type="1"
  10872. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10873. size="344KB" >
  10874. </productMenu>
  10875. <productMenu id="userGuide"
  10876. type="1"
  10877. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10878. size="3.41MB" >
  10879. </productMenu>
  10880. <productMenu id="volume"
  10881. type="11" >
  10882. </productMenu>
  10883. <productMenu id="battery"
  10884. type="1" >
  10885. </productMenu>
  10886. <productID id="3240"
  10887. />
  10888. <productGroupable type="0"
  10889. />
  10890. </product>
  10891. <product id="HD50S"
  10892. name="FURY N04"
  10893. series="Helmet"
  10894. latestVersion="1.0"
  10895. show = "0" >
  10896. <productMenu id="protocol"
  10897. type="2" >
  10898. </productMenu>
  10899. <productMenu id="alexa"
  10900. type="0" >
  10901. </productMenu>
  10902. <productMenu id="ota"
  10903. type="0" >
  10904. </productMenu>
  10905. <productMenu id="wa"
  10906. type="0" >
  10907. </productMenu>
  10908. <productMenu id="meshIntercom"
  10909. type="20" >
  10910. </productMenu>
  10911. <productMenu id="meshIntercom+"
  10912. type="3"
  10913. url="0" >
  10914. <productMenuType version="1.0.9"
  10915. type="2"
  10916. />
  10917. </productMenu>
  10918. <productMenu id="phone"
  10919. type="1" >
  10920. </productMenu>
  10921. <productMenu id="music"
  10922. type="1" >
  10923. </productMenu>
  10924. <productMenu id="fmradio"
  10925. type="1" >
  10926. </productMenu>
  10927. <productMenu id="deviceSetting"
  10928. type="1"
  10929. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10930. <productMenuURL version="1.0.9"
  10931. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10932. />
  10933. </productMenu>
  10934. <productMenu id="quickGuide"
  10935. type="1"
  10936. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10937. size="1.12MB" >
  10938. </productMenu>
  10939. <productMenu id="userGuide"
  10940. type="1"
  10941. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10942. size="2.0MB" >
  10943. </productMenu>
  10944. <productMenu id="volume"
  10945. type="13" >
  10946. </productMenu>
  10947. <productMenu id="battery"
  10948. type="1" >
  10949. </productMenu>
  10950. <productID id="5553"
  10951. />
  10952. <productGroupable type="0"
  10953. />
  10954. </product>
  10955. <product id="XCOM3Pro"
  10956. name="X-COM3 Pro"
  10957. series="50"
  10958. latestVersion="1.1"
  10959. show = "0" >
  10960. <productMenu id="protocol"
  10961. type="2" >
  10962. </productMenu>
  10963. <productMenu id="alexa"
  10964. type="0" >
  10965. </productMenu>
  10966. <productMenu id="ota"
  10967. type="0" >
  10968. </productMenu>
  10969. <productMenu id="wa"
  10970. type="0" >
  10971. </productMenu>
  10972. <productMenu id="sip"
  10973. type="1" >
  10974. </productMenu>
  10975. <productMenu id="meshIntercom"
  10976. type="30" >
  10977. </productMenu>
  10978. <productMenu id="meshIntercom+"
  10979. type="3"
  10980. url="2" >
  10981. <productMenuType version="1.1"
  10982. type="2"
  10983. />
  10984. </productMenu>
  10985. <productMenu id="waveIntercom"
  10986. type="1" >
  10987. <productMenuType version="1.1"
  10988. type="0"
  10989. />
  10990. </productMenu>
  10991. <productMenu id="bluetoothIntercom"
  10992. type="1" >
  10993. </productMenu>
  10994. <productMenu id="phone"
  10995. type="1" >
  10996. </productMenu>
  10997. <productMenu id="music"
  10998. type="1" >
  10999. </productMenu>
  11000. <productMenu id="fmradio"
  11001. type="1" >
  11002. </productMenu>
  11003. <productMenu id="deviceSetting"
  11004. type="1"
  11005. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  11006. <productMenuURL version="1.1"
  11007. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  11008. />
  11009. </productMenu>
  11010. <productMenu id="quickGuide"
  11011. type="0"
  11012. url=""
  11013. size="344KB" >
  11014. </productMenu>
  11015. <productMenu id="userGuide"
  11016. type="1"
  11017. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  11018. size="3.41MB" >
  11019. </productMenu>
  11020. <productMenu id="volume"
  11021. type="11" >
  11022. </productMenu>
  11023. <productMenu id="battery"
  11024. type="1" >
  11025. </productMenu>
  11026. <productID id="321A"
  11027. />
  11028. <productGroupable type="0"
  11029. />
  11030. </product>
  11031. <product id="XCOM3"
  11032. name="X-COM3"
  11033. series="20"
  11034. latestVersion="1.0"
  11035. show = "0" >
  11036. <productMenu id="protocol"
  11037. type="2" >
  11038. </productMenu>
  11039. <productMenu id="sip"
  11040. type="1" >
  11041. </productMenu>
  11042. <productMenu id="bluetoothIntercom"
  11043. type="1" >
  11044. </productMenu>
  11045. <productMenu id="phone"
  11046. type="1" >
  11047. </productMenu>
  11048. <productMenu id="music"
  11049. type="1" >
  11050. </productMenu>
  11051. <productMenu id="fmradio"
  11052. type="1" >
  11053. </productMenu>
  11054. <productMenu id="deviceSetting"
  11055. type="1"
  11056. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11057. </productMenu>
  11058. <productMenu id="quickGuide"
  11059. type="0"
  11060. url=""
  11061. size="934KB" >
  11062. </productMenu>
  11063. <productMenu id="userGuide"
  11064. type="1"
  11065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11066. size="1.14MB" >
  11067. </productMenu>
  11068. <productMenu id="volume"
  11069. type="15" >
  11070. </productMenu>
  11071. <productID id="3410"
  11072. />
  11073. <productGroupable type="0"
  11074. />
  11075. </product>
  11076. <product id="X-COM2"
  11077. name="X-COM2"
  11078. series="20"
  11079. latestVersion="1.0.5"
  11080. show = "0" >
  11081. <productMenu id="protocol"
  11082. type="0">
  11083. </productMenu>
  11084. <productMenu id="sip"
  11085. type="1" >
  11086. </productMenu>
  11087. <productMenu id="bluetoothIntercom"
  11088. type="1" >
  11089. </productMenu>
  11090. <productMenu id="intercomSetting"
  11091. type="1" >
  11092. </productMenu>
  11093. <productMenu id="phone"
  11094. type="2" >
  11095. </productMenu>
  11096. <productMenu id="fmradio"
  11097. type="3" >
  11098. </productMenu>
  11099. <productMenu id="deviceSetting"
  11100. type="1"
  11101. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11102. </productMenu>
  11103. <productMenu id="quickGuide"
  11104. type="1"
  11105. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11106. size="796KB" >
  11107. </productMenu>
  11108. <productMenu id="userGuide"
  11109. type="1"
  11110. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11111. size="1.90MB" >
  11112. </productMenu>
  11113. <productID id="2030"
  11114. />
  11115. <productGroupable type="1"
  11116. />
  11117. </product>
  11118. <product id="AVAABC"
  11119. name="AVA ABC"
  11120. series="SPIDER"
  11121. latestVersion="1.1"
  11122. show = "0" >
  11123. <productMenu id="protocol"
  11124. type="2" >
  11125. </productMenu>
  11126. <productMenu id="alexa"
  11127. type="0" >
  11128. </productMenu>
  11129. <productMenu id="ota"
  11130. type="0" >
  11131. <productMenuType version="1.0"
  11132. type="0"
  11133. />
  11134. <otaPackages>
  11135. <package
  11136. url="https://api.sena.com/support/OTA/"
  11137. size="2945812"
  11138. />
  11139. </otaPackages>
  11140. </productMenu>
  11141. <productMenu id="wa"
  11142. type="0" >
  11143. </productMenu>
  11144. <productMenu id="meshIntercom"
  11145. type="30" >
  11146. <productMenuType version="1.0"
  11147. type="20"
  11148. />
  11149. </productMenu>
  11150. <productMenu id="meshIntercom+"
  11151. type="3"
  11152. url="2" >
  11153. <productMenuType version="1.0"
  11154. type="2"
  11155. />
  11156. <productMenuURL version="1.0"
  11157. url="0"
  11158. />
  11159. </productMenu>
  11160. <productMenu id="waveIntercom"
  11161. type="1" >
  11162. <productMenuType version="1.0"
  11163. type="0"
  11164. />
  11165. </productMenu>
  11166. <productMenu id="phone"
  11167. type="1" >
  11168. </productMenu>
  11169. <productMenu id="music"
  11170. type="1" >
  11171. </productMenu>
  11172. <productMenu id="musicSharing"
  11173. type="0" >
  11174. </productMenu>
  11175. <productMenu id="deviceSetting"
  11176. type="1"
  11177. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11178. <productMenuURL version="1.0"
  11179. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11180. />
  11181. </productMenu>
  11182. <productMenu id="quickGuide"
  11183. type="1"
  11184. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11185. size="1.12MB" >
  11186. </productMenu>
  11187. <productMenu id="userGuide"
  11188. type="1"
  11189. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11190. size="2.0MB" >
  11191. </productMenu>
  11192. <productMenu id="volume"
  11193. type="12" >
  11194. </productMenu>
  11195. <productMenu id="battery"
  11196. type="1" >
  11197. </productMenu>
  11198. <productID id="6808"
  11199. />
  11200. <productGroupable type="0"
  11201. />
  11202. </product>
  11203. <product id="ADVANCEProCOM2"
  11204. name="ADVANCE ProCOM 2"
  11205. series="Helmet"
  11206. latestVersion="0.5"
  11207. latestVersionVoicePrompt="0.3"
  11208. show = "-1" >
  11209. <productMenu id="protocol"
  11210. type="2" >
  11211. </productMenu>
  11212. <productMenu id="ota"
  11213. type="2" >
  11214. <otaLanguages>
  11215. <otaLanguage
  11216. id="0"
  11217. name="English"
  11218. package="0"
  11219. />
  11220. <otaLanguage
  11221. id="0"
  11222. name="French"
  11223. package="1"
  11224. />
  11225. <otaLanguage
  11226. id="0"
  11227. name="Spanish"
  11228. package="2"
  11229. />
  11230. <otaLanguage
  11231. id="0"
  11232. name="Italian"
  11233. package="3"
  11234. />
  11235. <otaLanguage
  11236. id="0"
  11237. name="German"
  11238. package="4"
  11239. />
  11240. <otaLanguage
  11241. id="0"
  11242. name="Dutch"
  11243. package="5"
  11244. />
  11245. <otaLanguage
  11246. id="0"
  11247. name="Russian"
  11248. package="6"
  11249. />
  11250. <otaLanguage
  11251. id="0"
  11252. name="Chinese"
  11253. package="7"
  11254. />
  11255. <otaLanguage
  11256. id="0"
  11257. name="Korean"
  11258. package="8"
  11259. />
  11260. <otaLanguage
  11261. id="0"
  11262. name="Japanese"
  11263. package="9"
  11264. />
  11265. <otaLanguage
  11266. id="0"
  11267. name="Finnish"
  11268. package="10"
  11269. />
  11270. <otaLanguage
  11271. id="0"
  11272. name="Polish"
  11273. package="11"
  11274. />
  11275. </otaLanguages>
  11276. <otaPackages>
  11277. <package
  11278. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11279. size="5183988"
  11280. />
  11281. <package
  11282. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11283. size="5183988"
  11284. />
  11285. <package
  11286. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11287. size="5183988"
  11288. />
  11289. <package
  11290. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11291. size="5183988"
  11292. />
  11293. <package
  11294. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11295. size="5183988"
  11296. />
  11297. <package
  11298. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11299. size="5183988"
  11300. />
  11301. <package
  11302. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11303. size="5183988"
  11304. />
  11305. <package
  11306. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11307. size="5183988"
  11308. />
  11309. <package
  11310. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11311. size="5183988"
  11312. />
  11313. <package
  11314. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11315. size="5183988"
  11316. />
  11317. <package
  11318. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11319. size="5183988"
  11320. />
  11321. <package
  11322. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11323. size="5183988"
  11324. />
  11325. </otaPackages>
  11326. </productMenu>
  11327. <productMenu id="wa"
  11328. type="0" >
  11329. </productMenu>
  11330. <productMenu id="meshIntercom"
  11331. type="30" >
  11332. </productMenu>
  11333. <productMenu id="meshIntercom+"
  11334. type="3"
  11335. url="2" >
  11336. </productMenu>
  11337. <productMenu id="waveIntercom"
  11338. type="1" >
  11339. </productMenu>
  11340. <productMenu id="fmradio"
  11341. type="1" >
  11342. </productMenu>
  11343. <productMenu id="phone"
  11344. type="0" >
  11345. </productMenu>
  11346. <productMenu id="music"
  11347. type="1" >
  11348. </productMenu>
  11349. <productMenu id="musicSharing"
  11350. type="0" >
  11351. </productMenu>
  11352. <productMenu id="deviceSetting"
  11353. type="1"
  11354. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11355. </productMenu>
  11356. <productMenu id="quickGuide"
  11357. type="0"
  11358. url=""
  11359. size="1.12MB" >
  11360. </productMenu>
  11361. <productMenu id="userGuide"
  11362. type="1"
  11363. url=""
  11364. size="2.0MB" >
  11365. </productMenu>
  11366. <productMenu id="videoGuide"
  11367. type="0"
  11368. url=""
  11369. size="3.41MB" >
  11370. </productMenu>
  11371. <productMenu id="connectGuide"
  11372. type="1"
  11373. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11374. size="1.12MB" >
  11375. </productMenu>
  11376. <productMenu id="volume"
  11377. type="16" >
  11378. </productMenu>
  11379. <productMenu id="battery"
  11380. type="1" >
  11381. </productMenu>
  11382. <productID id="6A85"
  11383. />
  11384. <productGroupable type="0"
  11385. />
  11386. </product>
  11387. <product id="TRIUMPH60X"
  11388. name="TRIUMPH 60X"
  11389. series="60"
  11390. latestVersion="1.0"
  11391. latestVersionMesh="0.19"
  11392. latestVersionVoicePrompt="1.7"
  11393. show = "-1" >
  11394. <productMenu id="protocol"
  11395. type="2" >
  11396. </productMenu>
  11397. <productMenu id="ota"
  11398. type="0" >
  11399. <otaLanguages>
  11400. <otaLanguage
  11401. id="0"
  11402. name="English"
  11403. package="0"
  11404. />
  11405. <otaLanguage
  11406. id="0"
  11407. name="French"
  11408. package="1"
  11409. />
  11410. <otaLanguage
  11411. id="0"
  11412. name="Spanish"
  11413. package="2"
  11414. />
  11415. <otaLanguage
  11416. id="0"
  11417. name="Italian"
  11418. package="3"
  11419. />
  11420. <otaLanguage
  11421. id="0"
  11422. name="German"
  11423. package="4"
  11424. />
  11425. <otaLanguage
  11426. id="0"
  11427. name="Dutch"
  11428. package="5"
  11429. />
  11430. <otaLanguage
  11431. id="0"
  11432. name="Russian"
  11433. package="6"
  11434. />
  11435. <otaLanguage
  11436. id="0"
  11437. name="Chinese"
  11438. package="7"
  11439. />
  11440. <otaLanguage
  11441. id="0"
  11442. name="Korean"
  11443. package="8"
  11444. />
  11445. <otaLanguage
  11446. id="0"
  11447. name="Japanese"
  11448. package="9"
  11449. />
  11450. <otaLanguage
  11451. id="0"
  11452. name="Finnish"
  11453. package="10"
  11454. />
  11455. <otaLanguage
  11456. id="0"
  11457. name="Polish"
  11458. package="11"
  11459. />
  11460. </otaLanguages>
  11461. <otaPackages>
  11462. <package
  11463. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11464. size="5183988"
  11465. />
  11466. <package
  11467. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11468. size="5183988"
  11469. />
  11470. <package
  11471. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11472. size="5183988"
  11473. />
  11474. <package
  11475. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11476. size="5183988"
  11477. />
  11478. <package
  11479. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11480. size="5183988"
  11481. />
  11482. <package
  11483. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11484. size="5183988"
  11485. />
  11486. <package
  11487. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11488. size="5183988"
  11489. />
  11490. <package
  11491. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11492. size="5183988"
  11493. />
  11494. <package
  11495. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11496. size="5183988"
  11497. />
  11498. <package
  11499. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11500. size="5183988"
  11501. />
  11502. <package
  11503. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11504. size="5183988"
  11505. />
  11506. <package
  11507. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11508. size="5183988"
  11509. />
  11510. </otaPackages>
  11511. </productMenu>
  11512. <productMenu id="wa"
  11513. type="0" >
  11514. </productMenu>
  11515. <productMenu id="sip"
  11516. type="1" >
  11517. </productMenu>
  11518. <productMenu id="led"
  11519. type="1" >
  11520. </productMenu>
  11521. <productMenu id="illusion"
  11522. type="1" >
  11523. </productMenu>
  11524. <productMenu id="meshIntercom"
  11525. type="30" >
  11526. </productMenu>
  11527. <productMenu id="meshIntercom+"
  11528. type="3"
  11529. url="2" >
  11530. </productMenu>
  11531. <productMenu id="bluetoothIntercom"
  11532. type="1" >
  11533. </productMenu>
  11534. <productMenu id="fmradio"
  11535. type="1"
  11536. url="1" >
  11537. </productMenu>
  11538. <productMenu id="mic"
  11539. type="0" >
  11540. </productMenu>
  11541. <productMenu id="phone"
  11542. type="1" >
  11543. </productMenu>
  11544. <productMenu id="music"
  11545. type="1" >
  11546. </productMenu>
  11547. <productMenu id="musicSharing"
  11548. type="0" >
  11549. </productMenu>
  11550. <productMenu id="deviceSetting"
  11551. type="1"
  11552. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11553. </productMenu>
  11554. <productMenu id="quickGuide"
  11555. type="0"
  11556. url=""
  11557. size="1.12MB" >
  11558. </productMenu>
  11559. <productMenu id="userGuide"
  11560. type="1"
  11561. url=""
  11562. size="2.0MB" >
  11563. </productMenu>
  11564. <productMenu id="videoGuide"
  11565. type="0"
  11566. url=""
  11567. size="3.41MB" >
  11568. </productMenu>
  11569. <productMenu id="keySettings"
  11570. type="1"
  11571. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11572. </productMenu>
  11573. <productMenu id="volume"
  11574. type="13" >
  11575. </productMenu>
  11576. <productMenu id="volume+"
  11577. type="2"
  11578. url="0x6004" >
  11579. </productMenu>
  11580. <productMenu id="battery"
  11581. type="1" >
  11582. </productMenu>
  11583. <productID id="6A1C"
  11584. />
  11585. <productGroupable type="0"
  11586. />
  11587. </product>
  11588. <product id="Triumph_50S"
  11589. name="Triumph 50S"
  11590. series="50"
  11591. latestVersion="1.5"
  11592. show = "0" >
  11593. <productMenu id="protocol"
  11594. type="2" >
  11595. </productMenu>
  11596. <productMenu id="alexa"
  11597. type="0" >
  11598. </productMenu>
  11599. <productMenu id="ota"
  11600. type="0"
  11601. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11602. size="1150234" >
  11603. </productMenu>
  11604. <productMenu id="wa"
  11605. type="1" >
  11606. </productMenu>
  11607. <productMenu id="sip"
  11608. type="1" >
  11609. </productMenu>
  11610. <productMenu id="meshIntercom"
  11611. type="20" >
  11612. </productMenu>
  11613. <productMenu id="bluetoothIntercom"
  11614. type="1" >
  11615. </productMenu>
  11616. <productMenu id="meshIntercom+"
  11617. type="3"
  11618. url="2" >
  11619. <productMenuType version="1.2.9"
  11620. type="2"
  11621. />
  11622. <productMenuURL version="1.2.9"
  11623. url="0"
  11624. />
  11625. </productMenu>
  11626. <productMenu id="waveIntercom"
  11627. type="1" >
  11628. <productMenuType version="1.2.9"
  11629. type="0"
  11630. />
  11631. </productMenu>
  11632. <productMenu id="phone"
  11633. type="1" >
  11634. </productMenu>
  11635. <productMenu id="music"
  11636. type="1" >
  11637. </productMenu>
  11638. <productMenu id="fmradio"
  11639. type="1" >
  11640. </productMenu>
  11641. <productMenu id="deviceSetting"
  11642. type="1"
  11643. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11644. <productMenuURL version="1.2.9"
  11645. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11646. />
  11647. <productMenuURL version="1.0"
  11648. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11649. />
  11650. </productMenu>
  11651. <productMenu id="quickGuide"
  11652. type="1"
  11653. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11654. size="934KB" >
  11655. </productMenu>
  11656. <productMenu id="userGuide"
  11657. type="1"
  11658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11659. size="1.14MB" >
  11660. </productMenu>
  11661. <productMenu id="volume"
  11662. type="11" >
  11663. </productMenu>
  11664. <productMenu id="battery"
  11665. type="1" >
  11666. </productMenu>
  11667. <productID id="3264"
  11668. />
  11669. <productGroupable type="0"
  11670. />
  11671. </product>
  11672. <product id="RE50S"
  11673. name="RE 50S"
  11674. series="50"
  11675. latestVersion="2.7"
  11676. show = "0" >
  11677. <productMenu id="protocol"
  11678. type="2" >
  11679. </productMenu>
  11680. <productMenu id="alexa"
  11681. type="0" >
  11682. </productMenu>
  11683. <productMenu id="ota"
  11684. type="0"
  11685. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11686. size="1150234" >
  11687. </productMenu>
  11688. <productMenu id="wa"
  11689. type="1" >
  11690. </productMenu>
  11691. <productMenu id="sip"
  11692. type="1" >
  11693. </productMenu>
  11694. <productMenu id="meshIntercom"
  11695. type="30" >
  11696. </productMenu>
  11697. <productMenu id="meshIntercom+"
  11698. type="3"
  11699. url="2" >
  11700. <productMenuType version="2.5"
  11701. type="2"
  11702. />
  11703. </productMenu>
  11704. <productMenu id="waveIntercom"
  11705. type="1" >
  11706. <productMenuType version="2.5"
  11707. type="0"
  11708. />
  11709. </productMenu>
  11710. <productMenu id="bluetoothIntercom"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="phone"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="music"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="fmradio"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="deviceSetting"
  11723. type="1"
  11724. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11725. <productMenuURL version="2.5.9"
  11726. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11727. />
  11728. </productMenu>
  11729. <productMenu id="quickGuide"
  11730. type="1"
  11731. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11732. size="934KB" >
  11733. </productMenu>
  11734. <productMenu id="userGuide"
  11735. type="1"
  11736. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11737. size="1.14MB" >
  11738. </productMenu>
  11739. <productMenu id="videoGuide"
  11740. type="0"
  11741. url=""
  11742. size="3.41MB" >
  11743. </productMenu>
  11744. <productMenu id="volume"
  11745. type="11" >
  11746. </productMenu>
  11747. <productMenu id="battery"
  11748. type="1" >
  11749. </productMenu>
  11750. <productID id="321C"
  11751. />
  11752. <productGroupable type="0"
  11753. />
  11754. </product>
  11755. <product id="BMW_HELMET_II_U1"
  11756. name="BMW HELMET II U1"
  11757. series="50"
  11758. latestVersion="1.0"
  11759. show = "0" >
  11760. <productMenu id="protocol"
  11761. type="2" >
  11762. </productMenu>
  11763. <productMenu id="alexa"
  11764. type="0" >
  11765. </productMenu>
  11766. <productMenu id="sip"
  11767. type="1" >
  11768. </productMenu>
  11769. <productMenu id="meshIntercom"
  11770. type="20" >
  11771. </productMenu>
  11772. <productMenu id="bluetoothIntercom"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="bluetoothIntercom2"
  11776. type="1" >
  11777. </productMenu>
  11778. <productMenu id="phone"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="music"
  11782. type="1" >
  11783. </productMenu>
  11784. <productMenu id="fmradio"
  11785. type="1" >
  11786. </productMenu>
  11787. <productMenu id="deviceSetting"
  11788. type="1"
  11789. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11790. </productMenu>
  11791. <productMenu id="quickGuide"
  11792. type="1"
  11793. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11794. size="934KB" >
  11795. </productMenu>
  11796. <productMenu id="userGuide"
  11797. type="1"
  11798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11799. size="1.14MB" >
  11800. </productMenu>
  11801. <productMenu id="volume"
  11802. type="11" >
  11803. </productMenu>
  11804. <productMenu id="battery"
  11805. type="1" >
  11806. </productMenu>
  11807. <productID id="3260"
  11808. />
  11809. <productGroupable type="0"
  11810. />
  11811. </product>
  11812. <product id="OUTRUSHR"
  11813. name="CX935"
  11814. series="Helmet"
  11815. latestVersion="2.1"
  11816. show = "-1" >
  11817. <productMenu id="protocol"
  11818. type="3">
  11819. </productMenu>
  11820. <productMenu id="sip"
  11821. type="1" >
  11822. </productMenu>
  11823. <productMenu id="bluetoothIntercom"
  11824. type="1" >
  11825. </productMenu>
  11826. <productMenu id="phone"
  11827. type="1" >
  11828. </productMenu>
  11829. <productMenu id="fmradio"
  11830. type="0" >
  11831. </productMenu>
  11832. <productMenu id="deviceSetting"
  11833. type="1"
  11834. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11835. </productMenu>
  11836. <productMenu id="userGuide"
  11837. type="1"
  11838. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11839. size="660KB" >
  11840. </productMenu>
  11841. <productID id="5446"
  11842. />
  11843. <productGroupable type="0"
  11844. />
  11845. </product>
  11846. <product id="LSE_01"
  11847. name="LSE-01"
  11848. series="SF"
  11849. latestVersion="1.2.3"
  11850. show = "0" >
  11851. <productMenu id="protocol"
  11852. type="1"
  11853. url="3">
  11854. </productMenu>
  11855. <productMenu id="sip"
  11856. type="1" >
  11857. </productMenu>
  11858. <productMenu id="bluetoothIntercom"
  11859. type="1" >
  11860. </productMenu>
  11861. <productMenu id="phone"
  11862. type="1" >
  11863. </productMenu>
  11864. <productMenu id="music"
  11865. type="1" >
  11866. </productMenu>
  11867. <productMenu id="fmradio"
  11868. type="1" >
  11869. </productMenu>
  11870. <productMenu id="deviceSetting"
  11871. type="1"
  11872. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11873. <productMenuURL version="1.1"
  11874. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11875. />
  11876. <productMenuURL version="1.0"
  11877. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11878. />
  11879. </productMenu>
  11880. <productMenu id="quickGuide"
  11881. type="1"
  11882. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11883. size="607KB" >
  11884. </productMenu>
  11885. <productMenu id="userGuide"
  11886. type="1"
  11887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11888. size="1.91MB" >
  11889. </productMenu>
  11890. <productMenu id="volume"
  11891. type="4" >
  11892. </productMenu>
  11893. <productID id="5416"
  11894. />
  11895. <productGroupable type="0"
  11896. />
  11897. </product>
  11898. <product id="AGV_ARK"
  11899. name="AGV ARK"
  11900. series="SF"
  11901. latestVersion="1.0.3"
  11902. show = "0" >
  11903. <productMenu id="protocol"
  11904. type="1"
  11905. url="3">
  11906. </productMenu>
  11907. <productMenu id="sip"
  11908. type="1" >
  11909. </productMenu>
  11910. <productMenu id="bluetoothIntercom"
  11911. type="1" >
  11912. </productMenu>
  11913. <productMenu id="phone"
  11914. type="1" >
  11915. </productMenu>
  11916. <productMenu id="music"
  11917. type="1" >
  11918. </productMenu>
  11919. <productMenu id="fmradio"
  11920. type="1" >
  11921. </productMenu>
  11922. <productMenu id="deviceSetting"
  11923. type="1"
  11924. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11925. </productMenu>
  11926. <productMenu id="quickGuide"
  11927. type="1"
  11928. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11929. size="607KB" >
  11930. </productMenu>
  11931. <productMenu id="userGuide"
  11932. type="1"
  11933. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11934. size="1.91MB" >
  11935. </productMenu>
  11936. <productMenu id="volume"
  11937. type="4" >
  11938. </productMenu>
  11939. <productID id="5420"
  11940. />
  11941. <productGroupable type="0"
  11942. />
  11943. </product>
  11944. <product id="KLIM_KRIOS"
  11945. name="KLIM Krios"
  11946. series="10"
  11947. latestVersion="1.1.2"
  11948. show = "0" >
  11949. <productMenu id="protocol"
  11950. type="0">
  11951. </productMenu>
  11952. <productMenu id="sip"
  11953. type="1" >
  11954. </productMenu>
  11955. <productMenu id="bluetoothIntercom"
  11956. type="1" >
  11957. </productMenu>
  11958. <productMenu id="phone"
  11959. type="2" >
  11960. </productMenu>
  11961. <productMenu id="fmradio"
  11962. type="3" >
  11963. </productMenu>
  11964. <productMenu id="deviceSetting"
  11965. type="1"
  11966. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11967. <productMenuURL version="1.0"
  11968. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11969. />
  11970. </productMenu>
  11971. <productMenu id="quickGuide"
  11972. type="1"
  11973. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11974. size="649KB" >
  11975. </productMenu>
  11976. <productMenu id="userGuide"
  11977. type="1"
  11978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11979. size="1.43MB" >
  11980. </productMenu>
  11981. <productID id="5910"
  11982. />
  11983. <productGroupable type="0"
  11984. />
  11985. </product>
  11986. <product id="POLARIS_SLINGSHOT"
  11987. name="Polaris Slingshot"
  11988. series="10"
  11989. latestVersion="1.1.2"
  11990. show = "0" >
  11991. <productMenu id="protocol"
  11992. type="0">
  11993. </productMenu>
  11994. <productMenu id="sip"
  11995. type="1" >
  11996. </productMenu>
  11997. <productMenu id="bluetoothIntercom"
  11998. type="1" >
  11999. </productMenu>
  12000. <productMenu id="phone"
  12001. type="2" >
  12002. </productMenu>
  12003. <productMenu id="fmradio"
  12004. type="3" >
  12005. </productMenu>
  12006. <productMenu id="deviceSetting"
  12007. type="1"
  12008. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  12009. <productMenuURL version="1.0"
  12010. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  12011. />
  12012. </productMenu>
  12013. <productMenu id="quickGuide"
  12014. type="1"
  12015. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  12016. size="689KB" >
  12017. </productMenu>
  12018. <productMenu id="userGuide"
  12019. type="1"
  12020. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  12021. size="1.43MB" >
  12022. </productMenu>
  12023. <productID id="5920"
  12024. />
  12025. <productGroupable type="0"
  12026. />
  12027. </product>
  12028. <product id="DWO6"
  12029. name="SEDICI DWO6-PRO"
  12030. series="10"
  12031. latestVersion="1.0.2"
  12032. show = "0" >
  12033. <productMenu id="protocol"
  12034. type="0">
  12035. </productMenu>
  12036. <productMenu id="sip"
  12037. type="1" >
  12038. </productMenu>
  12039. <productMenu id="bluetoothIntercom"
  12040. type="1" >
  12041. </productMenu>
  12042. <productMenu id="phone"
  12043. type="2" >
  12044. </productMenu>
  12045. <productMenu id="fmradio"
  12046. type="3" >
  12047. </productMenu>
  12048. <productMenu id="deviceSetting"
  12049. type="1"
  12050. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12051. </productMenu>
  12052. <productMenu id="quickGuide"
  12053. type="1"
  12054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12055. size="529KB" >
  12056. </productMenu>
  12057. <productMenu id="userGuide"
  12058. type="1"
  12059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12060. size="4.09MB" >
  12061. </productMenu>
  12062. <productID id="6112"
  12063. />
  12064. <productGroupable type="0"
  12065. />
  12066. </product>
  12067. <product id="DWO6A"
  12068. name="SEDICI DWO-6"
  12069. series="10"
  12070. latestVersion="1.0.2"
  12071. show = "0" >
  12072. <productMenu id="protocol"
  12073. type="0">
  12074. </productMenu>
  12075. <productMenu id="sip"
  12076. type="1" >
  12077. </productMenu>
  12078. <productMenu id="bluetoothIntercom"
  12079. type="1" >
  12080. </productMenu>
  12081. <productMenu id="phone"
  12082. type="2" >
  12083. </productMenu>
  12084. <productMenu id="fmradio"
  12085. type="3" >
  12086. </productMenu>
  12087. <productMenu id="deviceSetting"
  12088. type="1"
  12089. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12090. </productMenu>
  12091. <productMenu id="quickGuide"
  12092. type="1"
  12093. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12094. size="522KB" >
  12095. </productMenu>
  12096. <productMenu id="userGuide"
  12097. type="1"
  12098. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12099. size="2.71MB" >
  12100. </productMenu>
  12101. <productID id="6114"
  12102. />
  12103. <productGroupable type="0"
  12104. />
  12105. </product>
  12106. <product id="3SPLUS"
  12107. name="ZILL"
  12108. series="3"
  12109. latestVersion="1.0.4"
  12110. show = "0" >
  12111. <productMenu id="protocol"
  12112. type="0">
  12113. </productMenu>
  12114. <productMenu id="sip"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="bluetoothIntercom"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="deviceSetting"
  12121. type="1"
  12122. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12123. </productMenu>
  12124. <productMenu id="quickGuide"
  12125. type="1"
  12126. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12127. size="842KB" >
  12128. </productMenu>
  12129. <productMenu id="userGuide"
  12130. type="1"
  12131. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12132. size="1.02MB" >
  12133. </productMenu>
  12134. <productID id="6335"
  12135. />
  12136. <productGroupable type="0"
  12137. />
  12138. </product>
  12139. <product id="HD50S"
  12140. name="Boom! Audio 30K"
  12141. series="30"
  12142. latestVersion="3.4"
  12143. show = "0" >
  12144. <productMenu id="protocol"
  12145. type="1"
  12146. url="0">
  12147. </productMenu>
  12148. <productMenu id="wa"
  12149. type="0" >
  12150. </productMenu>
  12151. <productMenu id="sip"
  12152. type="1" >
  12153. </productMenu>
  12154. <productMenu id="meshIntercom"
  12155. type="20" >
  12156. <productMenuType version="2.9.9"
  12157. type="10"
  12158. />
  12159. </productMenu>
  12160. <productMenu id="bluetoothIntercom"
  12161. type="1" >
  12162. </productMenu>
  12163. <productMenu id="phone"
  12164. type="1" >
  12165. </productMenu>
  12166. <productMenu id="music"
  12167. type="1" >
  12168. </productMenu>
  12169. <productMenu id="fmradio"
  12170. type="1" >
  12171. </productMenu>
  12172. <productMenu id="deviceSetting"
  12173. type="1"
  12174. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12175. <productMenuURL version="3.2"
  12176. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12177. />
  12178. <productMenuURL version="3.0"
  12179. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12180. />
  12181. <productMenuURL version="2.2"
  12182. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12183. />
  12184. </productMenu>
  12185. <productMenu id="quickGuide"
  12186. type="1"
  12187. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12188. size="1.06MB" >
  12189. </productMenu>
  12190. <productMenu id="userGuide"
  12191. type="1"
  12192. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12193. size="3.15MB" >
  12194. </productMenu>
  12195. <productMenu id="volume"
  12196. type="1" >
  12197. </productMenu>
  12198. <productID id="3112"
  12199. />
  12200. <productGroupable type="0"
  12201. />
  12202. </product>
  12203. <product id="HD50S"
  12204. name="Boom! Audio N02"
  12205. series="30"
  12206. latestVersion="3.1"
  12207. show = "0" >
  12208. <productMenu id="protocol"
  12209. type="1"
  12210. url="0">
  12211. </productMenu>
  12212. <productMenu id="wa"
  12213. type="2" >
  12214. </productMenu>
  12215. <productMenu id="sip"
  12216. type="1" >
  12217. </productMenu>
  12218. <productMenu id="meshIntercom"
  12219. type="20" >
  12220. <productMenuType version="2.9.9"
  12221. type="10"
  12222. />
  12223. </productMenu>
  12224. <productMenu id="bluetoothIntercom"
  12225. type="1" >
  12226. </productMenu>
  12227. <productMenu id="phone"
  12228. type="1" >
  12229. </productMenu>
  12230. <productMenu id="music"
  12231. type="1" >
  12232. </productMenu>
  12233. <productMenu id="fmradio"
  12234. type="1" >
  12235. </productMenu>
  12236. <productMenu id="deviceSetting"
  12237. type="1"
  12238. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12239. <productMenuURL version="2.2"
  12240. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12241. />
  12242. </productMenu>
  12243. <productMenu id="quickGuide"
  12244. type="1"
  12245. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12246. size="1.06MB" >
  12247. </productMenu>
  12248. <productMenu id="userGuide"
  12249. type="1"
  12250. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12251. size="3.15MB" >
  12252. </productMenu>
  12253. <productMenu id="volume"
  12254. type="2" >
  12255. </productMenu>
  12256. <productID id="3114"
  12257. />
  12258. <productGroupable type="0"
  12259. />
  12260. </product>
  12261. <product id="HD50S"
  12262. name="Boom Audio 20S"
  12263. series="50"
  12264. latestVersion="2.5.2"
  12265. show = "0" >
  12266. <productMenu id="protocol"
  12267. type="0">
  12268. </productMenu>
  12269. <productMenu id="sip"
  12270. type="1" >
  12271. <productMenuType version="1.0"
  12272. type="0"
  12273. />
  12274. </productMenu>
  12275. <productMenu id="bluetoothIntercom"
  12276. type="1" >
  12277. <productMenuType version="1.0"
  12278. type="0"
  12279. />
  12280. </productMenu>
  12281. <productMenu id="intercomSetting"
  12282. type="1" >
  12283. </productMenu>
  12284. <productMenu id="phone"
  12285. type="2" >
  12286. </productMenu>
  12287. <productMenu id="fmradio"
  12288. type="3" >
  12289. </productMenu>
  12290. <productMenu id="deviceSetting"
  12291. type="1"
  12292. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12293. <productMenuURL version="2.4"
  12294. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12295. />
  12296. <productMenuURL version="1.5"
  12297. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12298. />
  12299. <productMenuURL version="1.4.1"
  12300. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12301. />
  12302. <productMenuURL version="1.1"
  12303. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12304. />
  12305. <productMenuURL version="1.0"
  12306. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12307. />
  12308. </productMenu>
  12309. <productMenu id="quickGuide"
  12310. type="1"
  12311. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12312. size="264KB" >
  12313. </productMenu>
  12314. <productMenu id="userGuide"
  12315. type="1"
  12316. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12317. size="3.09MB" >
  12318. </productMenu>
  12319. <productMenu id="connectGuide"
  12320. type="1"
  12321. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12322. size="1.12MB" >
  12323. </productMenu>
  12324. <productID id="4210"
  12325. />
  12326. <productProductKey key="11"
  12327. />
  12328. <productID id="4230"
  12329. />
  12330. <productProductKey key="11"
  12331. />
  12332. <productGroupable type="1"
  12333. />
  12334. </product>
  12335. <product id="HD50S"
  12336. name="Boom Audio 20S EVO"
  12337. series="50"
  12338. latestVersion="2.5.2"
  12339. show = "0" >
  12340. <productMenu id="protocol"
  12341. type="0">
  12342. </productMenu>
  12343. <productMenu id="sip"
  12344. type="1" >
  12345. <productMenuType version="1.0"
  12346. type="0"
  12347. />
  12348. </productMenu>
  12349. <productMenu id="bluetoothIntercom"
  12350. type="1" >
  12351. <productMenuType version="1.0"
  12352. type="0"
  12353. />
  12354. </productMenu>
  12355. <productMenu id="intercomSetting"
  12356. type="1" >
  12357. </productMenu>
  12358. <productMenu id="phone"
  12359. type="2" >
  12360. </productMenu>
  12361. <productMenu id="fmradio"
  12362. type="3" >
  12363. </productMenu>
  12364. <productMenu id="deviceSetting"
  12365. type="1"
  12366. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12367. <productMenuURL version="2.4"
  12368. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12369. />
  12370. <productMenuURL version="1.5"
  12371. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12372. />
  12373. <productMenuURL version="1.4.1"
  12374. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12375. />
  12376. <productMenuURL version="1.1"
  12377. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12378. />
  12379. <productMenuURL version="1.0"
  12380. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12381. />
  12382. </productMenu>
  12383. <productMenu id="quickGuide"
  12384. type="1"
  12385. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12386. size="321KB" >
  12387. </productMenu>
  12388. <productMenu id="userGuide"
  12389. type="1"
  12390. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12391. size="2.46MB" >
  12392. </productMenu>
  12393. <productID id="4230"
  12394. />
  12395. <productProductKey key="27"
  12396. />
  12397. <productGroupable type="1"
  12398. />
  12399. </product>
  12400. <product id="HD50S"
  12401. name="Boom! Audio 10S"
  12402. series="50"
  12403. latestVersion="1.1.3"
  12404. show = "0" >
  12405. <productMenu id="protocol"
  12406. type="0">
  12407. </productMenu>
  12408. <productMenu id="sip"
  12409. type="1" >
  12410. </productMenu>
  12411. <productMenu id="bluetoothIntercom"
  12412. type="1" >
  12413. </productMenu>
  12414. <productMenu id="phone"
  12415. type="2" >
  12416. </productMenu>
  12417. <productMenu id="fmradio"
  12418. type="3" >
  12419. </productMenu>
  12420. <productMenu id="deviceSetting"
  12421. type="1"
  12422. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12423. </productMenu>
  12424. <productMenu id="quickGuide"
  12425. type="1"
  12426. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12427. size="538KB" >
  12428. </productMenu>
  12429. <productMenu id="userGuide"
  12430. type="1"
  12431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12432. size="1.55MB" >
  12433. </productMenu>
  12434. <productID id="5532"
  12435. />
  12436. <productGroupable type="0"
  12437. />
  12438. </product>
  12439. <product id="HD50S"
  12440. name="Boom! Audio N01 10R"
  12441. series="50"
  12442. latestVersion="1.1.3"
  12443. show = "0" >
  12444. <productMenu id="protocol"
  12445. type="0">
  12446. </productMenu>
  12447. <productMenu id="sip"
  12448. type="1" >
  12449. </productMenu>
  12450. <productMenu id="bluetoothIntercom"
  12451. type="1" >
  12452. </productMenu>
  12453. <productMenu id="phone"
  12454. type="2" >
  12455. </productMenu>
  12456. <productMenu id="fmradio"
  12457. type="3" >
  12458. </productMenu>
  12459. <productMenu id="deviceSetting"
  12460. type="1"
  12461. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12462. </productMenu>
  12463. <productMenu id="quickGuide"
  12464. type="1"
  12465. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12466. size="766KB" >
  12467. </productMenu>
  12468. <productMenu id="userGuide"
  12469. type="1"
  12470. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12471. size="1.45MB" >
  12472. </productMenu>
  12473. <productID id="5522"
  12474. />
  12475. <productGroupable type="0"
  12476. />
  12477. </product>
  12478. <product id="HD50S"
  12479. name="OUTRUSH-R N03"
  12480. series="50"
  12481. latestVersion="1.2.1"
  12482. show = "-1" >
  12483. <productMenu id="protocol"
  12484. type="0">
  12485. </productMenu>
  12486. <productMenu id="sip"
  12487. type="1" >
  12488. </productMenu>
  12489. <productMenu id="bluetoothIntercom"
  12490. type="1" >
  12491. </productMenu>
  12492. <productMenu id="phone"
  12493. type="2" >
  12494. </productMenu>
  12495. <productMenu id="fmradio"
  12496. type="3" >
  12497. </productMenu>
  12498. <productMenu id="deviceSetting"
  12499. type="1"
  12500. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12501. </productMenu>
  12502. <productMenu id="userGuide"
  12503. type="1"
  12504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12505. size="660KB" >
  12506. </productMenu>
  12507. <productID id="5434"
  12508. />
  12509. <productGroupable type="0"
  12510. />
  12511. </product>
  12512. <product id="HD50S"
  12513. name="OUTRUSH-R N03"
  12514. series="50"
  12515. latestVersion="2.0"
  12516. show = "0" >
  12517. <productMenu id="protocol"
  12518. type="3" >
  12519. </productMenu>
  12520. <productMenu id="sip"
  12521. type="1" >
  12522. </productMenu>
  12523. <productMenu id="bluetoothIntercom"
  12524. type="1" >
  12525. </productMenu>
  12526. <productMenu id="phone"
  12527. type="1" >
  12528. </productMenu>
  12529. <productMenu id="fmradio"
  12530. type="1" >
  12531. </productMenu>
  12532. <productMenu id="deviceSetting"
  12533. type="1"
  12534. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12535. </productMenu>
  12536. <productMenu id="userGuide"
  12537. type="1"
  12538. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12539. size="1.14MB" >
  12540. </productMenu>
  12541. <productID id="5441"
  12542. />
  12543. <productGroupable type="0"
  12544. />
  12545. </product>
  12546. <product id="5R"
  12547. name="5R"
  12548. series="5"
  12549. latestVersion="1.0.1"
  12550. show = "1" >
  12551. <productMenu id="protocol"
  12552. type="3" >
  12553. </productMenu>
  12554. <productMenu id="sip"
  12555. type="1" >
  12556. </productMenu>
  12557. <productMenu id="bluetoothIntercom"
  12558. type="1" >
  12559. </productMenu>
  12560. <productMenu id="phone"
  12561. type="1" >
  12562. </productMenu>
  12563. <productMenu id="fmradio"
  12564. type="1" >
  12565. </productMenu>
  12566. <productMenu id="deviceSetting"
  12567. type="1"
  12568. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12569. </productMenu>
  12570. <productMenu id="quickGuide"
  12571. type="0"
  12572. url=""
  12573. size="934KB" >
  12574. </productMenu>
  12575. <productMenu id="userGuide"
  12576. type="1"
  12577. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12578. size="1.14MB" >
  12579. </productMenu>
  12580. <productMenu id="connectGuide"
  12581. type="1"
  12582. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12583. size="1.12MB" >
  12584. </productMenu>
  12585. <productID id="5591"
  12586. />
  12587. <productGroupable type="0"
  12588. />
  12589. </product>
  12590. <product id="5R"
  12591. name="5R LITE"
  12592. series="5"
  12593. latestVersion="1.0.1"
  12594. show = "1" >
  12595. <productMenu id="protocol"
  12596. type="3" >
  12597. </productMenu>
  12598. <productMenu id="sip"
  12599. type="1" >
  12600. </productMenu>
  12601. <productMenu id="bluetoothIntercom"
  12602. type="1" >
  12603. </productMenu>
  12604. <productMenu id="phone"
  12605. type="1" >
  12606. </productMenu>
  12607. <productMenu id="fmradio"
  12608. type="1" >
  12609. </productMenu>
  12610. <productMenu id="deviceSetting"
  12611. type="1"
  12612. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12613. </productMenu>
  12614. <productMenu id="quickGuide"
  12615. type="0"
  12616. url=""
  12617. size="934KB" >
  12618. </productMenu>
  12619. <productMenu id="userGuide"
  12620. type="1"
  12621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12622. size="1.14MB" >
  12623. </productMenu>
  12624. <productMenu id="connectGuide"
  12625. type="1"
  12626. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12627. size="1.12MB" >
  12628. </productMenu>
  12629. <productID id="5592"
  12630. />
  12631. <productGroupable type="0"
  12632. />
  12633. </product>
  12634. <product id="50RLE"
  12635. name="50R LE"
  12636. series="50"
  12637. latestVersion="1.1"
  12638. show = "0" >
  12639. <productMenu id="protocol"
  12640. type="2" >
  12641. </productMenu>
  12642. <productMenu id="alexa"
  12643. type="0" >
  12644. </productMenu>
  12645. <productMenu id="sip"
  12646. type="1" >
  12647. </productMenu>
  12648. <productMenu id="meshIntercom"
  12649. type="30" >
  12650. </productMenu>
  12651. <productMenu id="meshIntercom+"
  12652. type="3"
  12653. url="2" >
  12654. <productMenuType version="1.0.9"
  12655. type="2"
  12656. />
  12657. </productMenu>
  12658. <productMenu id="waveIntercom"
  12659. type="1" >
  12660. <productMenuType version="1.0.9"
  12661. type="0"
  12662. />
  12663. </productMenu>
  12664. <productMenu id="bluetoothIntercom"
  12665. type="1" >
  12666. </productMenu>
  12667. <productMenu id="phone"
  12668. type="1" >
  12669. </productMenu>
  12670. <productMenu id="music"
  12671. type="1" >
  12672. </productMenu>
  12673. <productMenu id="fmradio"
  12674. type="0" >
  12675. </productMenu>
  12676. <productMenu id="deviceSetting"
  12677. type="1"
  12678. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12679. <productMenuURL version="1.0.9"
  12680. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12681. />
  12682. </productMenu>
  12683. <productMenu id="quickGuide"
  12684. type="0"
  12685. url=""
  12686. size="344KB" >
  12687. </productMenu>
  12688. <productMenu id="userGuide"
  12689. type="0"
  12690. url=""
  12691. size="3.41MB" >
  12692. </productMenu>
  12693. <productMenu id="volume"
  12694. type="11" >
  12695. </productMenu>
  12696. <productMenu id="battery"
  12697. type="1" >
  12698. </productMenu>
  12699. <productID id="3223"
  12700. />
  12701. <productGroupable type="0"
  12702. />
  12703. </product>
  12704. <product id="5RLOUIS"
  12705. name="5R LOUIS EDITION"
  12706. series="5"
  12707. latestVersion="1.0"
  12708. show = "-1" >
  12709. <productMenu id="protocol"
  12710. type="3" >
  12711. </productMenu>
  12712. <productMenu id="sip"
  12713. type="1" >
  12714. </productMenu>
  12715. <productMenu id="bluetoothIntercom"
  12716. type="1" >
  12717. </productMenu>
  12718. <productMenu id="phone"
  12719. type="1" >
  12720. </productMenu>
  12721. <productMenu id="fmradio"
  12722. type="1" >
  12723. </productMenu>
  12724. <productMenu id="deviceSetting"
  12725. type="1"
  12726. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12727. </productMenu>
  12728. <productMenu id="quickGuide"
  12729. type="0"
  12730. url=""
  12731. size="934KB" >
  12732. </productMenu>
  12733. <productMenu id="userGuide"
  12734. type="0"
  12735. url=""
  12736. size="1.14MB" >
  12737. </productMenu>
  12738. <productID id="5597"
  12739. />
  12740. <productGroupable type="0"
  12741. />
  12742. </product>
  12743. <product id="5S"
  12744. name="Ridekont 5S"
  12745. series="5"
  12746. latestVersion="2.3"
  12747. show = "-1" >
  12748. <productMenu id="protocol"
  12749. type="3" >
  12750. </productMenu>
  12751. <productMenu id="sip"
  12752. type="1" >
  12753. </productMenu>
  12754. <productMenu id="bluetoothIntercom"
  12755. type="1" >
  12756. </productMenu>
  12757. <productMenu id="phone"
  12758. type="1" >
  12759. </productMenu>
  12760. <productMenu id="fmradio"
  12761. type="0" >
  12762. </productMenu>
  12763. <productMenu id="deviceSetting"
  12764. type="1"
  12765. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12766. </productMenu>
  12767. <productMenu id="quickGuide"
  12768. type="0"
  12769. url=""
  12770. size="934KB" >
  12771. </productMenu>
  12772. <productMenu id="userGuide"
  12773. type="1"
  12774. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12775. size="1.14MB" >
  12776. </productMenu>
  12777. <productID id="5589"
  12778. />
  12779. <productGroupable type="0"
  12780. />
  12781. </product>
  12782. <product id="5R"
  12783. name="Ridekont 5R"
  12784. series="5"
  12785. latestVersion="1.0"
  12786. show = "0" >
  12787. <productMenu id="protocol"
  12788. type="3" >
  12789. </productMenu>
  12790. <productMenu id="sip"
  12791. type="1" >
  12792. </productMenu>
  12793. <productMenu id="bluetoothIntercom"
  12794. type="1" >
  12795. </productMenu>
  12796. <productMenu id="phone"
  12797. type="1" >
  12798. </productMenu>
  12799. <productMenu id="fmradio"
  12800. type="1" >
  12801. </productMenu>
  12802. <productMenu id="deviceSetting"
  12803. type="1"
  12804. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12805. </productMenu>
  12806. <productMenu id="quickGuide"
  12807. type="1"
  12808. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12809. size="934KB" >
  12810. </productMenu>
  12811. <productMenu id="userGuide"
  12812. type="1"
  12813. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12814. size="1.14MB" >
  12815. </productMenu>
  12816. <productID id="5593"
  12817. />
  12818. <productGroupable type="0"
  12819. />
  12820. </product>
  12821. <product id="5R"
  12822. name="Ridekont 5R LITE"
  12823. series="5"
  12824. latestVersion="1.0"
  12825. show = "0" >
  12826. <productMenu id="protocol"
  12827. type="3" >
  12828. </productMenu>
  12829. <productMenu id="sip"
  12830. type="1" >
  12831. </productMenu>
  12832. <productMenu id="bluetoothIntercom"
  12833. type="1" >
  12834. </productMenu>
  12835. <productMenu id="phone"
  12836. type="1" >
  12837. </productMenu>
  12838. <productMenu id="fmradio"
  12839. type="1" >
  12840. </productMenu>
  12841. <productMenu id="deviceSetting"
  12842. type="1"
  12843. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12844. </productMenu>
  12845. <productMenu id="quickGuide"
  12846. type="0"
  12847. url=""
  12848. size="934KB" >
  12849. </productMenu>
  12850. <productMenu id="userGuide"
  12851. type="1"
  12852. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12853. size="1.14MB" >
  12854. </productMenu>
  12855. <productID id="5594"
  12856. />
  12857. <productGroupable type="0"
  12858. />
  12859. </product>
  12860. <product id="SA30"
  12861. name="SA30"
  12862. series="SA"
  12863. latestVersion="1.0.3"
  12864. latestVersionVoicePrompt="0.15"
  12865. show = "-1" >
  12866. <productMenu id="protocol"
  12867. type="2" >
  12868. </productMenu>
  12869. <productMenu id="ota"
  12870. type="2" >
  12871. <otaPackages>
  12872. <package
  12873. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12874. size="3144148"
  12875. />
  12876. </otaPackages>
  12877. </productMenu>
  12878. <productMenu id="meshIntercom"
  12879. type="30" >
  12880. </productMenu>
  12881. <productMenu id="meshIntercom+"
  12882. type="3"
  12883. url="2" >
  12884. </productMenu>
  12885. <productMenu id="phone"
  12886. type="1" >
  12887. </productMenu>
  12888. <productMenu id="music"
  12889. type="1" >
  12890. </productMenu>
  12891. <productMenu id="musicSharing"
  12892. type="0" >
  12893. </productMenu>
  12894. <productMenu id="deviceSetting"
  12895. type="1"
  12896. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12897. </productMenu>
  12898. <productMenu id="quickGuide"
  12899. type="0"
  12900. url=""
  12901. size="1.12MB" >
  12902. </productMenu>
  12903. <productMenu id="userGuide"
  12904. type="1"
  12905. url=""
  12906. size="2.0MB" >
  12907. </productMenu>
  12908. <productMenu id="videoGuide"
  12909. type="0"
  12910. url=""
  12911. size="3.41MB" >
  12912. </productMenu>
  12913. <productMenu id="volume"
  12914. type="12" >
  12915. </productMenu>
  12916. <productMenu id="battery"
  12917. type="1" >
  12918. </productMenu>
  12919. <productID id="6852"
  12920. />
  12921. <productGroupable type="0"
  12922. />
  12923. </product>
  12924. <product id="I30"
  12925. name="I30"
  12926. series="I"
  12927. latestVersion="1.0.3"
  12928. latestVersionVoicePrompt="0.2"
  12929. show = "-1" >
  12930. <productMenu id="protocol"
  12931. type="2" >
  12932. </productMenu>
  12933. <productMenu id="ota"
  12934. type="2" >
  12935. <otaPackages>
  12936. <package
  12937. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12938. size="3144148"
  12939. />
  12940. </otaPackages>
  12941. </productMenu>
  12942. <productMenu id="meshIntercom"
  12943. type="30" >
  12944. </productMenu>
  12945. <productMenu id="meshIntercom+"
  12946. type="3"
  12947. url="2" >
  12948. </productMenu>
  12949. <productMenu id="phone"
  12950. type="1" >
  12951. </productMenu>
  12952. <productMenu id="music"
  12953. type="1" >
  12954. </productMenu>
  12955. <productMenu id="musicSharing"
  12956. type="0" >
  12957. </productMenu>
  12958. <productMenu id="deviceSetting"
  12959. type="1"
  12960. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12961. </productMenu>
  12962. <productMenu id="quickGuide"
  12963. type="0"
  12964. url=""
  12965. size="1.12MB" >
  12966. </productMenu>
  12967. <productMenu id="userGuide"
  12968. type="1"
  12969. url=""
  12970. size="2.10MB" >
  12971. </productMenu>
  12972. <productMenu id="videoGuide"
  12973. type="0"
  12974. url=""
  12975. size="3.11MB" >
  12976. </productMenu>
  12977. <productMenu id="volume"
  12978. type="12" >
  12979. </productMenu>
  12980. <productMenu id="battery"
  12981. type="1" >
  12982. </productMenu>
  12983. <productID id="6853"
  12984. />
  12985. <productGroupable type="0"
  12986. />
  12987. </product>
  12988. <product id="LS2C30"
  12989. name="LS2-C30"
  12990. series="C"
  12991. latestVersion="1.0"
  12992. latestVersionVoicePrompt="0.13"
  12993. show = "-1" >
  12994. <productMenu id="protocol"
  12995. type="2" >
  12996. </productMenu>
  12997. <productMenu id="ota"
  12998. type="0" >
  12999. <otaPackages>
  13000. <package
  13001. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  13002. size="3144148"
  13003. />
  13004. </otaPackages>
  13005. </productMenu>
  13006. <productMenu id="meshIntercom+"
  13007. type="3"
  13008. url="2" >
  13009. </productMenu>
  13010. <productMenu id="waveIntercom"
  13011. type="1" >
  13012. </productMenu>
  13013. <productMenu id="phone"
  13014. type="1" >
  13015. </productMenu>
  13016. <productMenu id="music"
  13017. type="1" >
  13018. </productMenu>
  13019. <productMenu id="musicSharing"
  13020. type="0" >
  13021. </productMenu>
  13022. <productMenu id="deviceSetting"
  13023. type="1"
  13024. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13025. </productMenu>
  13026. <productMenu id="quickGuide"
  13027. type="0"
  13028. url=""
  13029. size="1.17MB" >
  13030. </productMenu>
  13031. <productMenu id="userGuide"
  13032. type="1"
  13033. url=""
  13034. size="2.0MB" >
  13035. </productMenu>
  13036. <productMenu id="videoGuide"
  13037. type="0"
  13038. url=""
  13039. size="3.41MB" >
  13040. </productMenu>
  13041. <productMenu id="volume"
  13042. type="12" >
  13043. </productMenu>
  13044. <productMenu id="battery"
  13045. type="1" >
  13046. </productMenu>
  13047. <productID id="685E"
  13048. />
  13049. <productGroupable type="0"
  13050. />
  13051. </product>
  13052. <product id="C30EVO"
  13053. name="C30 EVO"
  13054. series="C"
  13055. latestVersion="1.0"
  13056. latestVersionVoicePrompt="0.13"
  13057. show = "-1" >
  13058. <productMenu id="protocol"
  13059. type="2" >
  13060. </productMenu>
  13061. <productMenu id="ota"
  13062. type="0" >
  13063. <otaPackages>
  13064. <package
  13065. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13066. size="3144148"
  13067. />
  13068. </otaPackages>
  13069. </productMenu>
  13070. <productMenu id="meshIntercom+"
  13071. type="3"
  13072. url="2" >
  13073. </productMenu>
  13074. <productMenu id="waveIntercom"
  13075. type="1" >
  13076. </productMenu>
  13077. <productMenu id="phone"
  13078. type="1" >
  13079. </productMenu>
  13080. <productMenu id="music"
  13081. type="1" >
  13082. </productMenu>
  13083. <productMenu id="musicSharing"
  13084. type="0" >
  13085. </productMenu>
  13086. <productMenu id="deviceSetting"
  13087. type="1"
  13088. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13089. </productMenu>
  13090. <productMenu id="quickGuide"
  13091. type="0"
  13092. url=""
  13093. size="1.17MB" >
  13094. </productMenu>
  13095. <productMenu id="userGuide"
  13096. type="1"
  13097. url=""
  13098. size="2.0MB" >
  13099. </productMenu>
  13100. <productMenu id="videoGuide"
  13101. type="0"
  13102. url=""
  13103. size="3.41MB" >
  13104. </productMenu>
  13105. <productMenu id="volume"
  13106. type="12" >
  13107. </productMenu>
  13108. <productMenu id="battery"
  13109. type="1" >
  13110. </productMenu>
  13111. <productID id="685B"
  13112. />
  13113. <productGroupable type="0"
  13114. />
  13115. </product>
  13116. <product id="C30"
  13117. name="SENA C30"
  13118. series="C"
  13119. latestVersion="1.2.4"
  13120. latestVersionVoicePrompt="0.13"
  13121. show = "1" >
  13122. <productMenu id="protocol"
  13123. type="2" >
  13124. </productMenu>
  13125. <productMenu id="alexa"
  13126. type="0" >
  13127. </productMenu>
  13128. <productMenu id="ota"
  13129. type="2" >
  13130. <otaPackages>
  13131. <package
  13132. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13133. size="3144148"
  13134. />
  13135. </otaPackages>
  13136. </productMenu>
  13137. <productMenu id="wa"
  13138. type="0" >
  13139. </productMenu>
  13140. <productMenu id="meshIntercom"
  13141. type="30" >
  13142. </productMenu>
  13143. <productMenu id="meshIntercom+"
  13144. type="3"
  13145. url="2" >
  13146. <productMenuType version="1.0.9"
  13147. type="2"
  13148. />
  13149. </productMenu>
  13150. <productMenu id="waveIntercom"
  13151. type="1" >
  13152. <productMenuType version="1.1.9"
  13153. type="0"
  13154. />
  13155. </productMenu>
  13156. <productMenu id="phone"
  13157. type="1" >
  13158. </productMenu>
  13159. <productMenu id="music"
  13160. type="1" >
  13161. </productMenu>
  13162. <productMenu id="musicSharing"
  13163. type="0" >
  13164. </productMenu>
  13165. <productMenu id="deviceSetting"
  13166. type="1"
  13167. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13168. <productMenuURL version="1.1.3"
  13169. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13170. />
  13171. <productMenuURL version="1.0.9"
  13172. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13173. />
  13174. </productMenu>
  13175. <productMenu id="quickGuide"
  13176. type="1"
  13177. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13178. size="1.12MB" >
  13179. </productMenu>
  13180. <productMenu id="userGuide"
  13181. type="0"
  13182. url=""
  13183. size="2.0MB" >
  13184. </productMenu>
  13185. <productMenu id="videoGuide"
  13186. type="0"
  13187. url=""
  13188. size="3.41MB" >
  13189. </productMenu>
  13190. <productMenu id="volume"
  13191. type="12" >
  13192. </productMenu>
  13193. <productMenu id="battery"
  13194. type="1" >
  13195. </productMenu>
  13196. <productID id="683A"
  13197. />
  13198. <productGroupable type="0"
  13199. />
  13200. </product>
  13201. <product id="C20"
  13202. name="C20"
  13203. series="C"
  13204. latestVersion="1.0"
  13205. show = "1" >
  13206. <productMenu id="protocol"
  13207. type="3" >
  13208. </productMenu>
  13209. <productMenu id="sip"
  13210. type="1" >
  13211. </productMenu>
  13212. <productMenu id="bluetoothIntercom"
  13213. type="1" >
  13214. </productMenu>
  13215. <productMenu id="phone"
  13216. type="1" >
  13217. </productMenu>
  13218. <productMenu id="deviceSetting"
  13219. type="1"
  13220. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13221. </productMenu>
  13222. <productMenu id="quickGuide"
  13223. type="1"
  13224. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13225. size="934KB" >
  13226. </productMenu>
  13227. <productMenu id="userGuide"
  13228. type="1"
  13229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13230. size="1.14MB" >
  13231. </productMenu>
  13232. <productID id="3701"
  13233. />
  13234. <productGroupable type="0"
  13235. />
  13236. </product>
  13237. <product id="C10"
  13238. name="C10"
  13239. series="C"
  13240. latestVersion="1.4.4"
  13241. show = "1" >
  13242. <productMenu id="protocol"
  13243. type="3" >
  13244. </productMenu>
  13245. <productMenu id="sip"
  13246. type="1" >
  13247. </productMenu>
  13248. <productMenu id="bluetoothIntercom"
  13249. type="1" >
  13250. </productMenu>
  13251. <productMenu id="phone"
  13252. type="1" >
  13253. </productMenu>
  13254. <productMenu id="fmradio"
  13255. type="0" >
  13256. </productMenu>
  13257. <productMenu id="deviceSetting"
  13258. type="1"
  13259. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13260. </productMenu>
  13261. <productMenu id="userGuide"
  13262. type="1"
  13263. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13264. size="1.14MB" >
  13265. </productMenu>
  13266. <productID id="5595"
  13267. />
  13268. <productGroupable type="0"
  13269. />
  13270. </product>
  13271. <product id="CA1"
  13272. name="CA1"
  13273. series="C"
  13274. latestVersion="0.2"
  13275. show = "-1" >
  13276. <productMenu id="protocol"
  13277. type="2" >
  13278. </productMenu>
  13279. <productMenu id="ota"
  13280. type="2" >
  13281. <otaPackages>
  13282. <package
  13283. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13284. size="3144148"
  13285. />
  13286. </otaPackages>
  13287. </productMenu>
  13288. <productMenu id="phone"
  13289. type="1" >
  13290. </productMenu>
  13291. <productMenu id="music"
  13292. type="1" >
  13293. </productMenu>
  13294. <productMenu id="musicSharing"
  13295. type="0" >
  13296. </productMenu>
  13297. <productMenu id="deviceSetting"
  13298. type="1"
  13299. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13300. </productMenu>
  13301. <productMenu id="quickGuide"
  13302. type="1"
  13303. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13304. size="1.12MB" >
  13305. </productMenu>
  13306. <productMenu id="userGuide"
  13307. type="0"
  13308. url=""
  13309. size="2.0MB" >
  13310. </productMenu>
  13311. <productMenu id="videoGuide"
  13312. type="1"
  13313. url=""
  13314. size="3.41MB" >
  13315. </productMenu>
  13316. <productMenu id="volume"
  13317. type="12" >
  13318. </productMenu>
  13319. <productMenu id="battery"
  13320. type="1" >
  13321. </productMenu>
  13322. <productID id="5F01"
  13323. />
  13324. <productGroupable type="0"
  13325. />
  13326. </product>
  13327. <product id="J30"
  13328. name="J30"
  13329. series="J"
  13330. latestVersion="1.2.4"
  13331. latestVersionVoicePrompt="0.14"
  13332. show = "0" >
  13333. <productMenu id="protocol"
  13334. type="2" >
  13335. </productMenu>
  13336. <productMenu id="alexa"
  13337. type="0" >
  13338. </productMenu>
  13339. <productMenu id="ota"
  13340. type="2" >
  13341. <otaPackages>
  13342. <package
  13343. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13344. size="3144148"
  13345. />
  13346. </otaPackages>
  13347. </productMenu>
  13348. <productMenu id="wa"
  13349. type="0" >
  13350. </productMenu>
  13351. <productMenu id="meshIntercom"
  13352. type="30" >
  13353. </productMenu>
  13354. <productMenu id="meshIntercom+"
  13355. type="3"
  13356. url="2" >
  13357. <productMenuType version="1.0.9"
  13358. type="2"
  13359. />
  13360. </productMenu>
  13361. <productMenu id="waveIntercom"
  13362. type="1" >
  13363. <productMenuType version="1.1.9"
  13364. type="0"
  13365. />
  13366. </productMenu>
  13367. <productMenu id="phone"
  13368. type="1" >
  13369. </productMenu>
  13370. <productMenu id="music"
  13371. type="1" >
  13372. </productMenu>
  13373. <productMenu id="musicSharing"
  13374. type="0" >
  13375. </productMenu>
  13376. <productMenu id="deviceSetting"
  13377. type="1"
  13378. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13379. <productMenuURL version="1.0.9"
  13380. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13381. />
  13382. </productMenu>
  13383. <productMenu id="quickGuide"
  13384. type="0"
  13385. url=""
  13386. size="1.12MB" >
  13387. </productMenu>
  13388. <productMenu id="userGuide"
  13389. type="1"
  13390. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13391. size="2.0MB" >
  13392. </productMenu>
  13393. <productMenu id="videoGuide"
  13394. type="0"
  13395. url=""
  13396. size="3.41MB" >
  13397. </productMenu>
  13398. <productMenu id="volume"
  13399. type="12" >
  13400. </productMenu>
  13401. <productMenu id="battery"
  13402. type="1" >
  13403. </productMenu>
  13404. <productID id="6848"
  13405. />
  13406. <productGroupable type="0"
  13407. />
  13408. </product>
  13409. <product id="J10"
  13410. name="J10"
  13411. series="5"
  13412. latestVersion="1.1.4"
  13413. show = "0" >
  13414. <productMenu id="protocol"
  13415. type="3" >
  13416. </productMenu>
  13417. <productMenu id="sip"
  13418. type="1" >
  13419. </productMenu>
  13420. <productMenu id="bluetoothIntercom"
  13421. type="1" >
  13422. </productMenu>
  13423. <productMenu id="phone"
  13424. type="1" >
  13425. </productMenu>
  13426. <productMenu id="fmradio"
  13427. type="0" >
  13428. </productMenu>
  13429. <productMenu id="deviceSetting"
  13430. type="1"
  13431. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13432. </productMenu>
  13433. <productMenu id="userGuide"
  13434. type="1"
  13435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13436. size="1.14MB" >
  13437. </productMenu>
  13438. <productID id="5598"
  13439. />
  13440. <productGroupable type="0"
  13441. />
  13442. </product>
  13443. <product id="B20"
  13444. name="B20"
  13445. series="B"
  13446. latestVersion="1.1.4"
  13447. latestVersionVoicePrompt="0.14"
  13448. show = "0" >
  13449. <productMenu id="protocol"
  13450. type="2" >
  13451. </productMenu>
  13452. <productMenu id="alexa"
  13453. type="0" >
  13454. </productMenu>
  13455. <productMenu id="ota"
  13456. type="2" >
  13457. <otaPackages>
  13458. <package
  13459. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13460. size="3144148"
  13461. />
  13462. </otaPackages>
  13463. </productMenu>
  13464. <productMenu id="wa"
  13465. type="0" >
  13466. </productMenu>
  13467. <productMenu id="meshIntercom"
  13468. type="30" >
  13469. </productMenu>
  13470. <productMenu id="phone"
  13471. type="1" >
  13472. </productMenu>
  13473. <productMenu id="music"
  13474. type="1" >
  13475. </productMenu>
  13476. <productMenu id="musicSharing"
  13477. type="0" >
  13478. </productMenu>
  13479. <productMenu id="deviceSetting"
  13480. type="1"
  13481. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13482. <productMenuURL version="1.0.9"
  13483. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13484. />
  13485. </productMenu>
  13486. <productMenu id="quickGuide"
  13487. type="0"
  13488. url=""
  13489. size="1.12MB" >
  13490. </productMenu>
  13491. <productMenu id="userGuide"
  13492. type="1"
  13493. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13494. size="2.0MB" >
  13495. </productMenu>
  13496. <productMenu id="videoGuide"
  13497. type="0"
  13498. url=""
  13499. size="3.41MB" >
  13500. </productMenu>
  13501. <productMenu id="volume"
  13502. type="12" >
  13503. </productMenu>
  13504. <productMenu id="battery"
  13505. type="1" >
  13506. </productMenu>
  13507. <productID id="6847"
  13508. />
  13509. <productGroupable type="0"
  13510. />
  13511. </product>
  13512. <product id="B10"
  13513. name="B10"
  13514. series="5"
  13515. latestVersion="1.2.4"
  13516. show = "0" >
  13517. <productMenu id="protocol"
  13518. type="3" >
  13519. </productMenu>
  13520. <productMenu id="sip"
  13521. type="1" >
  13522. </productMenu>
  13523. <productMenu id="bluetoothIntercom"
  13524. type="1" >
  13525. </productMenu>
  13526. <productMenu id="phone"
  13527. type="1" >
  13528. </productMenu>
  13529. <productMenu id="fmradio"
  13530. type="0" >
  13531. </productMenu>
  13532. <productMenu id="deviceSetting"
  13533. type="1"
  13534. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13535. </productMenu>
  13536. <productMenu id="userGuide"
  13537. type="1"
  13538. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13539. size="1.14MB" >
  13540. </productMenu>
  13541. <productID id="5596"
  13542. />
  13543. <productGroupable type="0"
  13544. />
  13545. </product>
  13546. <product id="E30"
  13547. name="E30"
  13548. series="E"
  13549. latestVersion="1.1.4"
  13550. latestVersionVoicePrompt="0.14"
  13551. show = "0" >
  13552. <productMenu id="protocol"
  13553. type="2" >
  13554. </productMenu>
  13555. <productMenu id="alexa"
  13556. type="0" >
  13557. </productMenu>
  13558. <productMenu id="ota"
  13559. type="2" >
  13560. <otaPackages>
  13561. <package
  13562. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13563. size="3144148"
  13564. />
  13565. </otaPackages>
  13566. </productMenu>
  13567. <productMenu id="wa"
  13568. type="0" >
  13569. </productMenu>
  13570. <productMenu id="meshIntercom"
  13571. type="30" >
  13572. </productMenu>
  13573. <productMenu id="meshIntercom+"
  13574. type="3"
  13575. url="2" >
  13576. </productMenu>
  13577. <productMenu id="waveIntercom"
  13578. type="1" >
  13579. <productMenuType version="1.0.9"
  13580. type="0"
  13581. />
  13582. </productMenu>
  13583. <productMenu id="phone"
  13584. type="1" >
  13585. </productMenu>
  13586. <productMenu id="music"
  13587. type="1" >
  13588. </productMenu>
  13589. <productMenu id="musicSharing"
  13590. type="0" >
  13591. </productMenu>
  13592. <productMenu id="deviceSetting"
  13593. type="1"
  13594. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13595. </productMenu>
  13596. <productMenu id="quickGuide"
  13597. type="0"
  13598. url=""
  13599. size="1.12MB" >
  13600. </productMenu>
  13601. <productMenu id="userGuide"
  13602. type="1"
  13603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13604. size="2.0MB" >
  13605. </productMenu>
  13606. <productMenu id="videoGuide"
  13607. type="0"
  13608. url=""
  13609. size="3.41MB" >
  13610. </productMenu>
  13611. <productMenu id="volume"
  13612. type="12" >
  13613. </productMenu>
  13614. <productMenu id="battery"
  13615. type="1" >
  13616. </productMenu>
  13617. <productID id="6846"
  13618. />
  13619. <productGroupable type="0"
  13620. />
  13621. </product>
  13622. <product id="ACSRAM"
  13623. name="ACS-RAM"
  13624. series="ACS"
  13625. latestVersion="1.0.5"
  13626. show = "1" >
  13627. <productMenu id="protocol"
  13628. type="3" >
  13629. </productMenu>
  13630. <productMenu id="sip"
  13631. type="1" >
  13632. </productMenu>
  13633. <productMenu id="bluetoothIntercom"
  13634. type="1" >
  13635. </productMenu>
  13636. <productMenu id="deviceSetting"
  13637. type="1"
  13638. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13639. <productMenuURL version="1.0.9"
  13640. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13641. />
  13642. </productMenu>
  13643. <productMenu id="quickGuide"
  13644. type="1"
  13645. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13646. size="344KB" >
  13647. </productMenu>
  13648. <productMenu id="userGuide"
  13649. type="1"
  13650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13651. size="1.14MB" >
  13652. </productMenu>
  13653. <productMenu id="connectGuide"
  13654. type="1"
  13655. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13656. size="1.12MB" >
  13657. </productMenu>
  13658. <productID id="3400"
  13659. />
  13660. <productGroupable type="0"
  13661. />
  13662. </product>
  13663. <product id="ACS10"
  13664. name="ACS10"
  13665. series="ACS"
  13666. latestVersion="1.0.2"
  13667. show = "1" >
  13668. <productMenu id="protocol"
  13669. type="0">
  13670. </productMenu>
  13671. <productMenu id="sip"
  13672. type="1" >
  13673. </productMenu>
  13674. <productMenu id="bluetoothIntercom"
  13675. type="1" >
  13676. </productMenu>
  13677. <productMenu id="phone"
  13678. type="2" >
  13679. </productMenu>
  13680. <productMenu id="deviceSetting"
  13681. type="1"
  13682. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13683. </productMenu>
  13684. <productMenu id="quickGuide"
  13685. type="1"
  13686. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13687. size="970KB" >
  13688. </productMenu>
  13689. <productMenu id="userGuide"
  13690. type="1"
  13691. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13692. size="1.26MB" >
  13693. </productMenu>
  13694. <productMenu id="connectGuide"
  13695. type="1"
  13696. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13697. size="1.12MB" >
  13698. </productMenu>
  13699. <productID id="3300"
  13700. />
  13701. <productGroupable type="0"
  13702. />
  13703. </product>
  13704. <product id="DWO7ProMesh"
  13705. name="DWO 7 Pro Mesh"
  13706. series="50"
  13707. latestVersion="1.1"
  13708. latestVersionVoicePrompt="0.9"
  13709. show = "0" >
  13710. <productMenu id="protocol"
  13711. type="2" >
  13712. </productMenu>
  13713. <productMenu id="alexa"
  13714. type="0" >
  13715. </productMenu>
  13716. <productMenu id="ota"
  13717. type="2" >
  13718. <otaPackages>
  13719. <package
  13720. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13721. size="2945812"
  13722. />
  13723. </otaPackages>
  13724. </productMenu>
  13725. <productMenu id="wa"
  13726. type="0" >
  13727. </productMenu>
  13728. <productMenu id="meshIntercom"
  13729. type="20" >
  13730. </productMenu>
  13731. <productMenu id="meshIntercom+"
  13732. type="3"
  13733. url="2" >
  13734. <productMenuType version="1.0.9"
  13735. type="2"
  13736. />
  13737. <productMenuURL version="2.1.1"
  13738. url="0"
  13739. />
  13740. </productMenu>
  13741. <productMenu id="waveIntercom"
  13742. type="1" >
  13743. <productMenuType version="1.0.9"
  13744. type="0"
  13745. />
  13746. </productMenu>
  13747. <productMenu id="phone"
  13748. type="1" >
  13749. </productMenu>
  13750. <productMenu id="music"
  13751. type="1" >
  13752. </productMenu>
  13753. <productMenu id="fmradio"
  13754. type="1" >
  13755. </productMenu>
  13756. <productMenu id="musicSharing"
  13757. type="0" >
  13758. </productMenu>
  13759. <productMenu id="deviceSetting"
  13760. type="1"
  13761. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13762. <productMenuURL version="1.0.9"
  13763. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13764. />
  13765. </productMenu>
  13766. <productMenu id="quickGuide"
  13767. type="1"
  13768. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13769. size="1.12MB" >
  13770. </productMenu>
  13771. <productMenu id="userGuide"
  13772. type="1"
  13773. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13774. size="2.0MB" >
  13775. </productMenu>
  13776. <productMenu id="volume"
  13777. type="12" >
  13778. </productMenu>
  13779. <productMenu id="battery"
  13780. type="1" >
  13781. </productMenu>
  13782. <productID id="6806"
  13783. />
  13784. <productGroupable type="0"
  13785. />
  13786. </product>
  13787. <product id="ERA1X"
  13788. name="ERA 1 X"
  13789. series="UCOM"
  13790. latestVersion="0.2.1"
  13791. latestVersionMesh="0.19"
  13792. latestVersionVoicePrompt="1.2"
  13793. show = "-1" >
  13794. <productMenu id="protocol"
  13795. type="2" >
  13796. </productMenu>
  13797. <productMenu id="ota"
  13798. type="2" >
  13799. <otaLanguages>
  13800. <otaLanguage
  13801. id="0"
  13802. name="English"
  13803. package="0"
  13804. />
  13805. <otaLanguage
  13806. id="0"
  13807. name="French"
  13808. package="1"
  13809. />
  13810. <otaLanguage
  13811. id="0"
  13812. name="Spanish"
  13813. package="2"
  13814. />
  13815. <otaLanguage
  13816. id="0"
  13817. name="Italian"
  13818. package="3"
  13819. />
  13820. <otaLanguage
  13821. id="0"
  13822. name="German"
  13823. package="4"
  13824. />
  13825. <otaLanguage
  13826. id="0"
  13827. name="Dutch"
  13828. package="5"
  13829. />
  13830. <otaLanguage
  13831. id="0"
  13832. name="Russian"
  13833. package="6"
  13834. />
  13835. <otaLanguage
  13836. id="0"
  13837. name="Chinese"
  13838. package="7"
  13839. />
  13840. <otaLanguage
  13841. id="0"
  13842. name="Korean"
  13843. package="8"
  13844. />
  13845. <otaLanguage
  13846. id="0"
  13847. name="Japanese"
  13848. package="9"
  13849. />
  13850. <otaLanguage
  13851. id="0"
  13852. name="Finnish"
  13853. package="10"
  13854. />
  13855. <otaLanguage
  13856. id="0"
  13857. name="Polish"
  13858. package="11"
  13859. />
  13860. <otaLanguage
  13861. id="0"
  13862. name="Czech"
  13863. package="12"
  13864. />
  13865. <otaLanguage
  13866. id="0"
  13867. name="Danish"
  13868. package="13"
  13869. />
  13870. <otaLanguage
  13871. id="0"
  13872. name="Norwegian"
  13873. package="14"
  13874. />
  13875. <otaLanguage
  13876. id="0"
  13877. name="Swedish"
  13878. package="15"
  13879. />
  13880. <otaLanguage
  13881. id="0"
  13882. name="Turkish"
  13883. package="16"
  13884. />
  13885. <otaLanguage
  13886. id="0"
  13887. name="Hungarian"
  13888. package="17"
  13889. />
  13890. <otaLanguage
  13891. id="0"
  13892. name="Portuguese"
  13893. package="18"
  13894. />
  13895. <otaLanguage
  13896. id="0"
  13897. name="Hebrew"
  13898. package="19"
  13899. />
  13900. <otaLanguage
  13901. id="0"
  13902. name="Greek"
  13903. package="20"
  13904. />
  13905. </otaLanguages>
  13906. <otaPackages>
  13907. <package
  13908. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13909. size="5183988"
  13910. />
  13911. <package
  13912. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13913. size="5183988"
  13914. />
  13915. <package
  13916. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13917. size="5183988"
  13918. />
  13919. <package
  13920. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13921. size="5183988"
  13922. />
  13923. <package
  13924. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13925. size="5183988"
  13926. />
  13927. <package
  13928. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13929. size="5183988"
  13930. />
  13931. <package
  13932. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13933. size="5183988"
  13934. />
  13935. <package
  13936. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13937. size="5183988"
  13938. />
  13939. <package
  13940. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13941. size="5183988"
  13942. />
  13943. <package
  13944. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13945. size="5183988"
  13946. />
  13947. <package
  13948. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13949. size="5183988"
  13950. />
  13951. <package
  13952. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13953. size="5183988"
  13954. />
  13955. <package
  13956. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13957. size="5183988"
  13958. />
  13959. <package
  13960. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13961. size="5183988"
  13962. />
  13963. <package
  13964. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13965. size="5183988"
  13966. />
  13967. <package
  13968. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13969. size="5183988"
  13970. />
  13971. <package
  13972. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13973. size="5183988"
  13974. />
  13975. <package
  13976. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13977. size="5183988"
  13978. />
  13979. <package
  13980. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13981. size="5183988"
  13982. />
  13983. <package
  13984. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13985. size="5183988"
  13986. />
  13987. <package
  13988. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13989. size="5183988"
  13990. />
  13991. </otaPackages>
  13992. </productMenu>
  13993. <productMenu id="wa"
  13994. type="0" >
  13995. </productMenu>
  13996. <productMenu id="sip"
  13997. type="1" >
  13998. </productMenu>
  13999. <productMenu id="led"
  14000. type="0" >
  14001. </productMenu>
  14002. <productMenu id="illusion"
  14003. type="1" >
  14004. </productMenu>
  14005. <productMenu id="meshIntercom"
  14006. type="30" >
  14007. </productMenu>
  14008. <productMenu id="meshIntercom+"
  14009. type="3"
  14010. url="2" >
  14011. </productMenu>
  14012. <productMenu id="waveIntercom"
  14013. type="0" >
  14014. </productMenu>
  14015. <productMenu id="bluetoothIntercom"
  14016. type="1" >
  14017. </productMenu>
  14018. <productMenu id="bluetoothIntercomGrouping"
  14019. type="0" >
  14020. </productMenu>
  14021. <productMenu id="fmradio"
  14022. type="1"
  14023. url="1" >
  14024. </productMenu>
  14025. <productMenu id="phone"
  14026. type="1" >
  14027. </productMenu>
  14028. <productMenu id="music"
  14029. type="1" >
  14030. </productMenu>
  14031. <productMenu id="musicSharing"
  14032. type="0" >
  14033. </productMenu>
  14034. <productMenu id="deviceSetting"
  14035. type="1"
  14036. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14037. </productMenu>
  14038. <productMenu id="quickGuide"
  14039. type="0"
  14040. url=""
  14041. size="1.12MB" >
  14042. </productMenu>
  14043. <productMenu id="userGuide"
  14044. type="1"
  14045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14046. size="2.0MB" >
  14047. </productMenu>
  14048. <productMenu id="videoGuide"
  14049. type="0"
  14050. url=""
  14051. size="3.41MB" >
  14052. </productMenu>
  14053. <productMenu id="volume"
  14054. type="16" >
  14055. </productMenu>
  14056. <productMenu id="soundMode"
  14057. type="1" >
  14058. </productMenu>
  14059. <productMenu id="battery"
  14060. type="1" >
  14061. </productMenu>
  14062. <productID id="6A83"
  14063. />
  14064. <productGroupable type="0"
  14065. />
  14066. </product>
  14067. <product id="MeshStation"
  14068. name="Mesh Station"
  14069. series="50"
  14070. latestVersion="0.9"
  14071. show = "-1" >
  14072. <productMenu id="protocol"
  14073. type="2" >
  14074. </productMenu>
  14075. <productMenu id="meshIntercom"
  14076. type="20"
  14077. url="99" >
  14078. </productMenu>
  14079. <productID id="3161"
  14080. />
  14081. <productGroupable type="0"
  14082. />
  14083. </product>
  14084. </products>
  14085. </sna>