snm.xml 520 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260192" 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="0.1.1"
  1509. latestVersionMesh="0.19"
  1510. latestVersionVoicePrompt="1.8"
  1511. show = "-1" >
  1512. <productMenu id="protocol"
  1513. type="2" >
  1514. </productMenu>
  1515. <productMenu id="ota"
  1516. type="2" >
  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/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fr-FR.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-es-ES.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-it-IT.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-de-DE.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-nl-NL.img"
  1602. size="5183988"
  1603. />
  1604. <package
  1605. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ru-RU.img"
  1606. size="5183988"
  1607. />
  1608. <package
  1609. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-cmn-CN.img"
  1610. size="5183988"
  1611. />
  1612. <package
  1613. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ko-KR.img"
  1614. size="5183988"
  1615. />
  1616. <package
  1617. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-ja-JP.img"
  1618. size="5183988"
  1619. />
  1620. <package
  1621. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-fi-FI.img"
  1622. size="5183988"
  1623. />
  1624. <package
  1625. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/BMWCOM60X/BMW_MOTORRAD_COM_60X-v0.1.1-build0-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="SPIDERX"
  4366. name="SPIDER X"
  4367. series="SPIDER"
  4368. latestVersion="1.0.1"
  4369. latestVersionMesh="0.19"
  4370. latestVersionVoicePrompt="1.8"
  4371. show="-1" >
  4372. <productMenu id="protocol"
  4373. type="2" >
  4374. </productMenu>
  4375. <productMenu id="warranty"
  4376. type="1" >
  4377. </productMenu>
  4378. <productMenu id="serialNumber"
  4379. type="1" >
  4380. </productMenu>
  4381. <productMenu id="ota"
  4382. type="0" >
  4383. <otaLanguages>
  4384. <otaLanguage
  4385. id="0"
  4386. name="English"
  4387. package="0"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="French"
  4392. package="1"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="Spanish"
  4397. package="2"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="Italian"
  4402. package="3"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="German"
  4407. package="4"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Dutch"
  4412. package="5"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Russian"
  4417. package="6"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Chinese"
  4422. package="7"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Korean"
  4427. package="8"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Japanese"
  4432. package="9"
  4433. />
  4434. <otaLanguage
  4435. id="0"
  4436. name="Finnish"
  4437. package="10"
  4438. />
  4439. <otaLanguage
  4440. id="0"
  4441. name="Polish"
  4442. package="11"
  4443. />
  4444. </otaLanguages>
  4445. <otaPackages>
  4446. <package
  4447. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0.img"
  4448. size="5183988"
  4449. />
  4450. <package
  4451. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fr-FR.img"
  4452. size="5183988"
  4453. />
  4454. <package
  4455. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-es-ES.img"
  4456. size="5183988"
  4457. />
  4458. <package
  4459. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-it-IT.img"
  4460. size="5183988"
  4461. />
  4462. <package
  4463. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-de-DE.img"
  4464. size="5183988"
  4465. />
  4466. <package
  4467. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-nl-NL.img"
  4468. size="5183988"
  4469. />
  4470. <package
  4471. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ru-RU.img"
  4472. size="5183988"
  4473. />
  4474. <package
  4475. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-cmn-CN.img"
  4476. size="5183988"
  4477. />
  4478. <package
  4479. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ko-KR.img"
  4480. size="5183988"
  4481. />
  4482. <package
  4483. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-ja-JP.img"
  4484. size="5183988"
  4485. />
  4486. <package
  4487. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-fi-FI.img"
  4488. size="5183988"
  4489. />
  4490. <package
  4491. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERX/SPIDERX-v1.0-build0-pl-PL.img"
  4492. size="5183988"
  4493. />
  4494. </otaPackages>
  4495. </productMenu>
  4496. <productMenu id="meshIntercom+"
  4497. type="3"
  4498. url="2" >
  4499. </productMenu>
  4500. <productMenu id="waveIntercom"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="fmradio"
  4504. type="1"
  4505. url="1" >
  4506. </productMenu>
  4507. <productMenu id="mic"
  4508. type="0" >
  4509. </productMenu>
  4510. <productMenu id="phone"
  4511. type="1" >
  4512. </productMenu>
  4513. <productMenu id="music"
  4514. type="1" >
  4515. </productMenu>
  4516. <productMenu id="musicSharing"
  4517. type="0" >
  4518. </productMenu>
  4519. <productMenu id="deviceSetting"
  4520. type="1"
  4521. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  4522. </productMenu>
  4523. <productMenu id="quickGuide"
  4524. type="0"
  4525. url=""
  4526. size="1.12MB" >
  4527. </productMenu>
  4528. <productMenu id="userGuide"
  4529. type="1"
  4530. url=""
  4531. size="2.0MB" >
  4532. </productMenu>
  4533. <productMenu id="videoGuide"
  4534. type="0"
  4535. url=""
  4536. size="3.41MB" >
  4537. </productMenu>
  4538. <productMenu id="connectGuide"
  4539. type="1"
  4540. url=""
  4541. size="1.12MB" >
  4542. </productMenu>
  4543. <productMenu id="keySettings"
  4544. type="0"
  4545. url="" >
  4546. </productMenu>
  4547. <productMenu id="volume"
  4548. type="13" >
  4549. </productMenu>
  4550. <productMenu id="volume+"
  4551. type="2"
  4552. url="0x6004" >
  4553. </productMenu>
  4554. <productMenu id="appearance"
  4555. type="0"
  4556. url="" >
  4557. </productMenu>
  4558. <productMenu id="battery"
  4559. type="1" >
  4560. </productMenu>
  4561. <productID id="6A20"
  4562. />
  4563. <productGroupable type="0"
  4564. />
  4565. </product>
  4566. <product id="SPIDERXSlim"
  4567. name="SPIDER X Slim"
  4568. series="SPIDER"
  4569. latestVersion="1.0.1"
  4570. latestVersionVoicePrompt="1.8"
  4571. show = "1" >
  4572. <productMenu id="protocol"
  4573. type="2" >
  4574. </productMenu>
  4575. <productMenu id="warranty"
  4576. type="1" >
  4577. </productMenu>
  4578. <productMenu id="serialNumber"
  4579. type="1" >
  4580. </productMenu>
  4581. <productMenu id="ota"
  4582. type="2" >
  4583. <otaLanguages>
  4584. <otaLanguage
  4585. id="0"
  4586. name="English"
  4587. package="0"
  4588. />
  4589. <otaLanguage
  4590. id="0"
  4591. name="French"
  4592. package="1"
  4593. />
  4594. <otaLanguage
  4595. id="0"
  4596. name="Spanish"
  4597. package="2"
  4598. />
  4599. <otaLanguage
  4600. id="0"
  4601. name="Italian"
  4602. package="3"
  4603. />
  4604. <otaLanguage
  4605. id="0"
  4606. name="German"
  4607. package="4"
  4608. />
  4609. <otaLanguage
  4610. id="0"
  4611. name="Dutch"
  4612. package="5"
  4613. />
  4614. <otaLanguage
  4615. id="0"
  4616. name="Russian"
  4617. package="6"
  4618. />
  4619. <otaLanguage
  4620. id="0"
  4621. name="Chinese"
  4622. package="7"
  4623. />
  4624. <otaLanguage
  4625. id="0"
  4626. name="Korean"
  4627. package="8"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="Japanese"
  4632. package="9"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Finnish"
  4637. package="10"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Polish"
  4642. package="11"
  4643. />
  4644. </otaLanguages>
  4645. <otaPackages>
  4646. <package
  4647. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  4648. size="5183988"
  4649. />
  4650. <package
  4651. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  4652. size="5183988"
  4653. />
  4654. <package
  4655. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  4656. size="5183988"
  4657. />
  4658. <package
  4659. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  4660. size="5183988"
  4661. />
  4662. <package
  4663. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  4664. size="5183988"
  4665. />
  4666. <package
  4667. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  4692. size="5183988"
  4693. />
  4694. </otaPackages>
  4695. </productMenu>
  4696. <productMenu id="meshIntercom"
  4697. type="30" >
  4698. </productMenu>
  4699. <productMenu id="meshIntercom+"
  4700. type="3"
  4701. url="2" >
  4702. </productMenu>
  4703. <productMenu id="waveIntercom"
  4704. type="1" >
  4705. </productMenu>
  4706. <productMenu id="fmradio"
  4707. type="1"
  4708. url="1" >
  4709. </productMenu>
  4710. <productMenu id="phone"
  4711. type="1" >
  4712. </productMenu>
  4713. <productMenu id="music"
  4714. type="1" >
  4715. </productMenu>
  4716. <productMenu id="musicSharing"
  4717. type="0" >
  4718. </productMenu>
  4719. <productMenu id="deviceSetting"
  4720. type="1"
  4721. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4722. <productMenuURL version="1.0"
  4723. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4724. />
  4725. </productMenu>
  4726. <productMenu id="quickGuide"
  4727. type="0"
  4728. url=""
  4729. size="1.12MB" >
  4730. </productMenu>
  4731. <productMenu id="userGuide"
  4732. type="1"
  4733. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4734. size="2.0MB" >
  4735. </productMenu>
  4736. <productMenu id="videoGuide"
  4737. type="0"
  4738. url=""
  4739. size="3.41MB" >
  4740. </productMenu>
  4741. <productMenu id="connectGuide"
  4742. type="1"
  4743. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4744. size="1.12MB" >
  4745. </productMenu>
  4746. <productMenu id="volume"
  4747. type="16" >
  4748. </productMenu>
  4749. <productMenu id="volume+"
  4750. type="2"
  4751. url="0x6004" >
  4752. </productMenu>
  4753. <productMenu id="appearance"
  4754. type="1"
  4755. url="2|white,silver,chrome,black" >
  4756. </productMenu>
  4757. <productMenu id="battery"
  4758. type="1" >
  4759. </productMenu>
  4760. <productID id="6A07"
  4761. />
  4762. <productGroupable type="0"
  4763. />
  4764. </product>
  4765. <product id="XFITM"
  4766. name="X-FIT M"
  4767. series="SPIDER"
  4768. latestVersion="0.1.11"
  4769. latestVersionVoicePrompt="1.1"
  4770. show = "-1" >
  4771. <productMenu id="protocol"
  4772. type="2" >
  4773. </productMenu>
  4774. <productMenu id="ota"
  4775. type="0" >
  4776. <otaLanguages>
  4777. <otaLanguage
  4778. id="0"
  4779. name="English"
  4780. package="0"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="French"
  4785. package="1"
  4786. />
  4787. <otaLanguage
  4788. id="0"
  4789. name="Spanish"
  4790. package="2"
  4791. />
  4792. <otaLanguage
  4793. id="0"
  4794. name="Italian"
  4795. package="3"
  4796. />
  4797. <otaLanguage
  4798. id="0"
  4799. name="German"
  4800. package="4"
  4801. />
  4802. <otaLanguage
  4803. id="0"
  4804. name="Dutch"
  4805. package="5"
  4806. />
  4807. <otaLanguage
  4808. id="0"
  4809. name="Russian"
  4810. package="6"
  4811. />
  4812. <otaLanguage
  4813. id="0"
  4814. name="Chinese"
  4815. package="7"
  4816. />
  4817. <otaLanguage
  4818. id="0"
  4819. name="Korean"
  4820. package="8"
  4821. />
  4822. <otaLanguage
  4823. id="0"
  4824. name="Japanese"
  4825. package="9"
  4826. />
  4827. <otaLanguage
  4828. id="0"
  4829. name="Finnish"
  4830. package="10"
  4831. />
  4832. <otaLanguage
  4833. id="0"
  4834. name="Polish"
  4835. package="11"
  4836. />
  4837. </otaLanguages>
  4838. <otaPackages>
  4839. <package
  4840. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4841. size="5183988"
  4842. />
  4843. <package
  4844. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4845. size="5183988"
  4846. />
  4847. <package
  4848. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4849. size="5183988"
  4850. />
  4851. <package
  4852. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4853. size="5183988"
  4854. />
  4855. <package
  4856. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4857. size="5183988"
  4858. />
  4859. <package
  4860. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4861. size="5183988"
  4862. />
  4863. <package
  4864. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4865. size="5183988"
  4866. />
  4867. <package
  4868. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4869. size="5183988"
  4870. />
  4871. <package
  4872. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4873. size="5183988"
  4874. />
  4875. <package
  4876. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4877. size="5183988"
  4878. />
  4879. <package
  4880. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4881. size="5183988"
  4882. />
  4883. <package
  4884. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4885. size="5183988"
  4886. />
  4887. </otaPackages>
  4888. </productMenu>
  4889. <productMenu id="meshIntercom"
  4890. type="30" >
  4891. </productMenu>
  4892. <productMenu id="meshIntercom+"
  4893. type="3"
  4894. url="2" >
  4895. </productMenu>
  4896. <productMenu id="waveIntercom"
  4897. type="1" >
  4898. </productMenu>
  4899. <productMenu id="fmradio"
  4900. type="1"
  4901. url="1" >
  4902. </productMenu>
  4903. <productMenu id="phone"
  4904. type="1" >
  4905. </productMenu>
  4906. <productMenu id="music"
  4907. type="1" >
  4908. </productMenu>
  4909. <productMenu id="musicSharing"
  4910. type="0" >
  4911. </productMenu>
  4912. <productMenu id="deviceSetting"
  4913. type="1"
  4914. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4915. </productMenu>
  4916. <productMenu id="quickGuide"
  4917. type="0"
  4918. url=""
  4919. size="1.12MB" >
  4920. </productMenu>
  4921. <productMenu id="userGuide"
  4922. type="1"
  4923. url=""
  4924. size="2.0MB" >
  4925. </productMenu>
  4926. <productMenu id="videoGuide"
  4927. type="0"
  4928. url=""
  4929. size="3.41MB" >
  4930. </productMenu>
  4931. <productMenu id="volume"
  4932. type="16" >
  4933. </productMenu>
  4934. <productMenu id="volume+"
  4935. type="2"
  4936. url="0x6004" >
  4937. </productMenu>
  4938. <productMenu id="battery"
  4939. type="1" >
  4940. </productMenu>
  4941. <productID id="6A17"
  4942. />
  4943. <productGroupable type="0"
  4944. />
  4945. </product>
  4946. <product id="VORTEXMESH"
  4947. name="VORTEX MESH"
  4948. series="Helmet"
  4949. latestVersion="0.1.11"
  4950. latestVersionVoicePrompt="1.1"
  4951. show = "-1" >
  4952. <productMenu id="protocol"
  4953. type="2" >
  4954. </productMenu>
  4955. <productMenu id="ota"
  4956. type="0" >
  4957. <otaLanguages>
  4958. <otaLanguage
  4959. id="0"
  4960. name="English"
  4961. package="0"
  4962. />
  4963. <otaLanguage
  4964. id="0"
  4965. name="French"
  4966. package="1"
  4967. />
  4968. <otaLanguage
  4969. id="0"
  4970. name="Spanish"
  4971. package="2"
  4972. />
  4973. <otaLanguage
  4974. id="0"
  4975. name="Italian"
  4976. package="3"
  4977. />
  4978. <otaLanguage
  4979. id="0"
  4980. name="German"
  4981. package="4"
  4982. />
  4983. <otaLanguage
  4984. id="0"
  4985. name="Dutch"
  4986. package="5"
  4987. />
  4988. <otaLanguage
  4989. id="0"
  4990. name="Russian"
  4991. package="6"
  4992. />
  4993. <otaLanguage
  4994. id="0"
  4995. name="Chinese"
  4996. package="7"
  4997. />
  4998. <otaLanguage
  4999. id="0"
  5000. name="Korean"
  5001. package="8"
  5002. />
  5003. <otaLanguage
  5004. id="0"
  5005. name="Japanese"
  5006. package="9"
  5007. />
  5008. <otaLanguage
  5009. id="0"
  5010. name="Finnish"
  5011. package="10"
  5012. />
  5013. <otaLanguage
  5014. id="0"
  5015. name="Polish"
  5016. package="11"
  5017. />
  5018. </otaLanguages>
  5019. <otaPackages>
  5020. <package
  5021. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  5022. size="5183988"
  5023. />
  5024. <package
  5025. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  5026. size="5183988"
  5027. />
  5028. <package
  5029. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  5030. size="5183988"
  5031. />
  5032. <package
  5033. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  5034. size="5183988"
  5035. />
  5036. <package
  5037. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  5038. size="5183988"
  5039. />
  5040. <package
  5041. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  5042. size="5183988"
  5043. />
  5044. <package
  5045. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  5046. size="5183988"
  5047. />
  5048. <package
  5049. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  5050. size="5183988"
  5051. />
  5052. <package
  5053. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  5054. size="5183988"
  5055. />
  5056. <package
  5057. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  5058. size="5183988"
  5059. />
  5060. <package
  5061. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  5062. size="5183988"
  5063. />
  5064. <package
  5065. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  5066. size="5183988"
  5067. />
  5068. </otaPackages>
  5069. </productMenu>
  5070. <productMenu id="wa"
  5071. type="0" >
  5072. </productMenu>
  5073. <productMenu id="led"
  5074. type="5" >
  5075. </productMenu>
  5076. <productMenu id="led+"
  5077. type="2"
  5078. url="1" >
  5079. </productMenu>
  5080. <productMenu id="meshIntercom"
  5081. type="30" >
  5082. </productMenu>
  5083. <productMenu id="meshIntercom+"
  5084. type="3"
  5085. url="2" >
  5086. </productMenu>
  5087. <productMenu id="waveIntercom"
  5088. type="1" >
  5089. </productMenu>
  5090. <productMenu id="fmradio"
  5091. type="0" >
  5092. </productMenu>
  5093. <productMenu id="phone"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="music"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="musicSharing"
  5100. type="0" >
  5101. </productMenu>
  5102. <productMenu id="deviceSetting"
  5103. type="1"
  5104. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  5105. </productMenu>
  5106. <productMenu id="quickGuide"
  5107. type="0"
  5108. url=""
  5109. size="1.12MB" >
  5110. </productMenu>
  5111. <productMenu id="userGuide"
  5112. type="1"
  5113. url=""
  5114. size="2.0MB" >
  5115. </productMenu>
  5116. <productMenu id="videoGuide"
  5117. type="0"
  5118. url=""
  5119. size="3.41MB" >
  5120. </productMenu>
  5121. <productMenu id="volume"
  5122. type="16" >
  5123. </productMenu>
  5124. <productMenu id="battery"
  5125. type="1" >
  5126. </productMenu>
  5127. <productID id="6A12"
  5128. />
  5129. <productGroupable type="0"
  5130. />
  5131. </product>
  5132. <product id="MeshOn"
  5133. name="MeshON"
  5134. series="Other"
  5135. latestVersion="1.0.1"
  5136. latestVersionVoicePrompt="0.7"
  5137. show = "1" >
  5138. <productMenu id="protocol"
  5139. type="2" >
  5140. </productMenu>
  5141. <productMenu id="ota"
  5142. type="2" >
  5143. <otaPackages>
  5144. <package
  5145. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  5146. size="2945812"
  5147. />
  5148. </otaPackages>
  5149. </productMenu>
  5150. <productMenu id="meshIntercom+"
  5151. type="3"
  5152. url="4" >
  5153. </productMenu>
  5154. <productMenu id="waveIntercom"
  5155. type="0" >
  5156. </productMenu>
  5157. <productMenu id="phone"
  5158. type="0" >
  5159. </productMenu>
  5160. <productMenu id="music"
  5161. type="0" >
  5162. </productMenu>
  5163. <productMenu id="musicSharing"
  5164. type="0" >
  5165. </productMenu>
  5166. <productMenu id="deviceSetting"
  5167. type="1"
  5168. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  5169. </productMenu>
  5170. <productMenu id="userGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  5173. size="2.0MB" >
  5174. </productMenu>
  5175. <productMenu id="connectGuide"
  5176. type="1"
  5177. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  5178. size="1.12MB" >
  5179. </productMenu>
  5180. <productMenu id="bluetoothHeadset"
  5181. type="1"
  5182. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  5183. </productMenu>
  5184. <productMenu id="volume"
  5185. type="0" >
  5186. </productMenu>
  5187. <productMenu id="battery"
  5188. type="1" >
  5189. </productMenu>
  5190. <productID id="684E"
  5191. />
  5192. <productGroupable type="0"
  5193. />
  5194. </product>
  5195. <product id="Impulse"
  5196. name="Impulse"
  5197. series="Helmet"
  5198. latestVersion="1.4.1"
  5199. show = "1" >
  5200. <productMenu id="protocol"
  5201. type="2" >
  5202. </productMenu>
  5203. <productMenu id="alexa"
  5204. type="0" >
  5205. </productMenu>
  5206. <productMenu id="ota"
  5207. type="0" >
  5208. </productMenu>
  5209. <productMenu id="wa"
  5210. type="24" >
  5211. </productMenu>
  5212. <productMenu id="manager"
  5213. type="0" >
  5214. </productMenu>
  5215. <productMenu id="sip"
  5216. type="1" >
  5217. </productMenu>
  5218. <productMenu id="led"
  5219. type="1" >
  5220. <productMenuType version="1.0.1"
  5221. type="2"
  5222. />
  5223. <productMenuType version="1.0"
  5224. type="1"
  5225. />
  5226. </productMenu>
  5227. <productMenu id="meshIntercom"
  5228. type="30" >
  5229. <productMenuType version="1.1.1"
  5230. type="20"
  5231. />
  5232. </productMenu>
  5233. <productMenu id="meshIntercom+"
  5234. type="3"
  5235. url="2" >
  5236. <productMenuType version="1.3.9"
  5237. type="2"
  5238. />
  5239. <productMenuURL version="1.1.1"
  5240. url="0"
  5241. />
  5242. </productMenu>
  5243. <productMenu id="waveIntercom"
  5244. type="1" >
  5245. <productMenuType version="1.3.9"
  5246. type="0"
  5247. />
  5248. </productMenu>
  5249. <productMenu id="bluetoothIntercom"
  5250. type="1" >
  5251. </productMenu>
  5252. <productMenu id="phone"
  5253. type="1" >
  5254. </productMenu>
  5255. <productMenu id="music"
  5256. type="1" >
  5257. </productMenu>
  5258. <productMenu id="fmradio"
  5259. type="1" >
  5260. </productMenu>
  5261. <productMenu id="deviceSetting"
  5262. type="1"
  5263. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5264. <productMenuURL version="1.3.9"
  5265. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5266. />
  5267. <productMenuURL version="1.1.1"
  5268. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5269. />
  5270. <productMenuURL version="1.0.4"
  5271. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5272. />
  5273. </productMenu>
  5274. <productMenu id="quickGuide"
  5275. type="0"
  5276. url=""
  5277. size="344KB" >
  5278. </productMenu>
  5279. <productMenu id="userGuide"
  5280. type="1"
  5281. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5282. size="3.41MB" >
  5283. </productMenu>
  5284. <productMenu id="connectGuide"
  5285. type="1"
  5286. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5287. size="1.12MB" >
  5288. </productMenu>
  5289. <productMenu id="volume"
  5290. type="11" >
  5291. </productMenu>
  5292. <productMenu id="battery"
  5293. type="1" >
  5294. </productMenu>
  5295. <productID id="3148"
  5296. />
  5297. <productGroupable type="0"
  5298. />
  5299. </product>
  5300. <product id="Impulse"
  5301. name="Impulse"
  5302. series="Helmet"
  5303. latestVersion="2.0"
  5304. show = "-1" >
  5305. <productMenu id="protocol"
  5306. type="2" >
  5307. </productMenu>
  5308. <productMenu id="alexa"
  5309. type="0" >
  5310. </productMenu>
  5311. <productMenu id="ota"
  5312. type="0" >
  5313. </productMenu>
  5314. <productMenu id="wa"
  5315. type="8" >
  5316. </productMenu>
  5317. <productMenu id="manager"
  5318. type="0" >
  5319. </productMenu>
  5320. <productMenu id="sip"
  5321. type="1" >
  5322. </productMenu>
  5323. <productMenu id="led"
  5324. type="3" >
  5325. </productMenu>
  5326. <productMenu id="meshIntercom"
  5327. type="20" >
  5328. </productMenu>
  5329. <productMenu id="bluetoothIntercom"
  5330. type="1" >
  5331. </productMenu>
  5332. <productMenu id="phone"
  5333. type="1" >
  5334. </productMenu>
  5335. <productMenu id="music"
  5336. type="1" >
  5337. </productMenu>
  5338. <productMenu id="fmradio"
  5339. type="1" >
  5340. </productMenu>
  5341. <productMenu id="deviceSetting"
  5342. type="1"
  5343. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5344. </productMenu>
  5345. <productMenu id="quickGuide"
  5346. type="1"
  5347. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5348. size="344KB" >
  5349. </productMenu>
  5350. <productMenu id="userGuide"
  5351. type="1"
  5352. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5353. size="3.41MB" >
  5354. </productMenu>
  5355. <productMenu id="volume"
  5356. type="11" >
  5357. </productMenu>
  5358. <productMenu id="battery"
  5359. type="1" >
  5360. </productMenu>
  5361. <productID id="3221"
  5362. />
  5363. <productGroupable type="0"
  5364. />
  5365. </product>
  5366. <product id="Stryker"
  5367. name="Stryker"
  5368. series="Helmet"
  5369. latestVersion="1.4.1"
  5370. show = "1" >
  5371. <productMenu id="protocol"
  5372. type="2" >
  5373. </productMenu>
  5374. <productMenu id="alexa"
  5375. type="0" >
  5376. </productMenu>
  5377. <productMenu id="ota"
  5378. type="0" >
  5379. </productMenu>
  5380. <productMenu id="wa"
  5381. type="40" >
  5382. </productMenu>
  5383. <productMenu id="manager"
  5384. type="0" >
  5385. </productMenu>
  5386. <productMenu id="sip"
  5387. type="1" >
  5388. </productMenu>
  5389. <productMenu id="led"
  5390. type="1" >
  5391. <productMenuType version="1.0.1"
  5392. type="2"
  5393. />
  5394. <productMenuType version="1.0"
  5395. type="1"
  5396. />
  5397. </productMenu>
  5398. <productMenu id="meshIntercom"
  5399. type="30" >
  5400. <productMenuType version="1.1.1"
  5401. type="20"
  5402. />
  5403. </productMenu>
  5404. <productMenu id="meshIntercom+"
  5405. type="3"
  5406. url="2" >
  5407. <productMenuType version="1.3.9"
  5408. type="2"
  5409. />
  5410. <productMenuURL version="1.1.1"
  5411. url="0"
  5412. />
  5413. </productMenu>
  5414. <productMenu id="waveIntercom"
  5415. type="1" >
  5416. <productMenuType version="1.2.9"
  5417. type="0"
  5418. />
  5419. </productMenu>
  5420. <productMenu id="bluetoothIntercom"
  5421. type="1" >
  5422. </productMenu>
  5423. <productMenu id="phone"
  5424. type="1" >
  5425. </productMenu>
  5426. <productMenu id="music"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="fmradio"
  5430. type="1" >
  5431. </productMenu>
  5432. <productMenu id="deviceSetting"
  5433. type="1"
  5434. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5435. <productMenuURL version="1.3.9"
  5436. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5437. />
  5438. <productMenuURL version="1.1.1"
  5439. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5440. />
  5441. <productMenuURL version="1.0.4"
  5442. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5443. />
  5444. </productMenu>
  5445. <productMenu id="quickGuide"
  5446. type="0"
  5447. url=""
  5448. size="344KB" >
  5449. </productMenu>
  5450. <productMenu id="userGuide"
  5451. type="1"
  5452. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5453. size="3.41MB" >
  5454. </productMenu>
  5455. <productMenu id="connectGuide"
  5456. type="1"
  5457. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5458. size="1.12MB" >
  5459. </productMenu>
  5460. <productMenu id="volume"
  5461. type="11" >
  5462. </productMenu>
  5463. <productMenu id="battery"
  5464. type="1" >
  5465. </productMenu>
  5466. <productID id="3154"
  5467. />
  5468. <productGroupable type="0"
  5469. />
  5470. </product>
  5471. <product id="SRL3Plus"
  5472. name="SRL3 Plus"
  5473. series="60"
  5474. latestVersion="0.9.14"
  5475. latestVersionMesh="0.19"
  5476. latestVersionVoicePrompt="1.8"
  5477. show = "-1" >
  5478. <productMenu id="protocol"
  5479. type="2" >
  5480. </productMenu>
  5481. <productMenu id="ota"
  5482. type="0" >
  5483. <otaLanguages>
  5484. <otaLanguage
  5485. id="0"
  5486. name="English"
  5487. package="0"
  5488. />
  5489. <otaLanguage
  5490. id="0"
  5491. name="French"
  5492. package="1"
  5493. />
  5494. <otaLanguage
  5495. id="0"
  5496. name="Spanish"
  5497. package="2"
  5498. />
  5499. <otaLanguage
  5500. id="0"
  5501. name="Italian"
  5502. package="3"
  5503. />
  5504. <otaLanguage
  5505. id="0"
  5506. name="German"
  5507. package="4"
  5508. />
  5509. <otaLanguage
  5510. id="0"
  5511. name="Dutch"
  5512. package="5"
  5513. />
  5514. <otaLanguage
  5515. id="0"
  5516. name="Russian"
  5517. package="6"
  5518. />
  5519. <otaLanguage
  5520. id="0"
  5521. name="Chinese"
  5522. package="7"
  5523. />
  5524. <otaLanguage
  5525. id="0"
  5526. name="Korean"
  5527. package="8"
  5528. />
  5529. <otaLanguage
  5530. id="0"
  5531. name="Japanese"
  5532. package="9"
  5533. />
  5534. <otaLanguage
  5535. id="0"
  5536. name="Finnish"
  5537. package="10"
  5538. />
  5539. <otaLanguage
  5540. id="0"
  5541. name="Polish"
  5542. package="11"
  5543. />
  5544. </otaLanguages>
  5545. <otaPackages>
  5546. <package
  5547. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5548. size="5183988"
  5549. />
  5550. <package
  5551. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5552. size="5183988"
  5553. />
  5554. <package
  5555. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5556. size="5183988"
  5557. />
  5558. <package
  5559. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5560. size="5183988"
  5561. />
  5562. <package
  5563. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5564. size="5183988"
  5565. />
  5566. <package
  5567. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5568. size="5183988"
  5569. />
  5570. <package
  5571. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5572. size="5183988"
  5573. />
  5574. <package
  5575. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5576. size="5183988"
  5577. />
  5578. <package
  5579. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5580. size="5183988"
  5581. />
  5582. <package
  5583. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5584. size="5183988"
  5585. />
  5586. <package
  5587. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5588. size="5183988"
  5589. />
  5590. <package
  5591. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5592. size="5183988"
  5593. />
  5594. </otaPackages>
  5595. </productMenu>
  5596. <productMenu id="sip"
  5597. type="1" >
  5598. </productMenu>
  5599. <productMenu id="meshIntercom+"
  5600. type="3"
  5601. url="2" >
  5602. </productMenu>
  5603. <productMenu id="waveIntercom"
  5604. type="1" >
  5605. </productMenu>
  5606. <productMenu id="bluetoothIntercom"
  5607. type="1"
  5608. url="2" >
  5609. </productMenu>
  5610. <productMenu id="bluetoothIntercomGrouping"
  5611. type="0" >
  5612. </productMenu>
  5613. <productMenu id="fmradio"
  5614. type="1"
  5615. url="1" >
  5616. </productMenu>
  5617. <productMenu id="phone"
  5618. type="1" >
  5619. </productMenu>
  5620. <productMenu id="music"
  5621. type="1" >
  5622. </productMenu>
  5623. <productMenu id="musicSharing"
  5624. type="0" >
  5625. </productMenu>
  5626. <productMenu id="deviceSetting"
  5627. type="1"
  5628. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5629. </productMenu>
  5630. <productMenu id="quickGuide"
  5631. type="0"
  5632. url=""
  5633. size="1.12MB" >
  5634. </productMenu>
  5635. <productMenu id="userGuide"
  5636. type="0"
  5637. url=""
  5638. size="2.0MB" >
  5639. </productMenu>
  5640. <productMenu id="videoGuide"
  5641. type="0"
  5642. url=""
  5643. size="3.41MB" >
  5644. </productMenu>
  5645. <productMenu id="volume"
  5646. type="16" >
  5647. </productMenu>
  5648. <productMenu id="soundMode"
  5649. type="0" >
  5650. </productMenu>
  5651. <productMenu id="battery"
  5652. type="1" >
  5653. </productMenu>
  5654. <productID id="6A08"
  5655. />
  5656. <productGroupable type="0"
  5657. />
  5658. </product>
  5659. <product id="SRL3"
  5660. name="SRL3"
  5661. series="SRL"
  5662. latestVersion="1.5"
  5663. show = "1" >
  5664. <productMenu id="protocol"
  5665. type="2" >
  5666. </productMenu>
  5667. <productMenu id="alexa"
  5668. type="0" >
  5669. </productMenu>
  5670. <productMenu id="ota"
  5671. type="0" >
  5672. </productMenu>
  5673. <productMenu id="wa"
  5674. type="1" >
  5675. </productMenu>
  5676. <productMenu id="sip"
  5677. type="1" >
  5678. </productMenu>
  5679. <productMenu id="meshIntercom"
  5680. type="30" >
  5681. </productMenu>
  5682. <productMenu id="meshIntercom+"
  5683. type="3"
  5684. url="2" >
  5685. <productMenuType version="1.3.9"
  5686. type="2"
  5687. />
  5688. </productMenu>
  5689. <productMenu id="waveIntercom"
  5690. type="1" >
  5691. <productMenuType version="1.4.9"
  5692. type="0"
  5693. />
  5694. </productMenu>
  5695. <productMenu id="bluetoothIntercom"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="phone"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="music"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="fmradio"
  5705. type="1" >
  5706. </productMenu>
  5707. <productMenu id="deviceSetting"
  5708. type="1"
  5709. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5710. <productMenuURL version="1.3"
  5711. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5712. />
  5713. </productMenu>
  5714. <productMenu id="quickGuide"
  5715. type="0"
  5716. url=""
  5717. size="344KB" >
  5718. </productMenu>
  5719. <productMenu id="userGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.4.1_en_260831.pdf"
  5722. size="3.41MB" >
  5723. </productMenu>
  5724. <productMenu id="connectGuide"
  5725. type="1"
  5726. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5727. size="1.12MB" >
  5728. </productMenu>
  5729. <productMenu id="volume"
  5730. type="11" >
  5731. </productMenu>
  5732. <productMenu id="battery"
  5733. type="1" >
  5734. </productMenu>
  5735. <productID id="3219"
  5736. />
  5737. <productGroupable type="0"
  5738. />
  5739. </product>
  5740. <product id="SRL_Mesh"
  5741. name="SRL-Mesh"
  5742. series="SRL"
  5743. latestVersion="1.7.1"
  5744. show = "1" >
  5745. <productMenu id="protocol"
  5746. type="2" >
  5747. </productMenu>
  5748. <productMenu id="alexa"
  5749. type="0" >
  5750. </productMenu>
  5751. <productMenu id="ota"
  5752. type="0" >
  5753. </productMenu>
  5754. <productMenu id="wa"
  5755. type="1" >
  5756. </productMenu>
  5757. <productMenu id="sip"
  5758. type="1" >
  5759. </productMenu>
  5760. <productMenu id="meshIntercom"
  5761. type="30" >
  5762. <productMenuType version="1.1.1"
  5763. type="20"
  5764. />
  5765. </productMenu>
  5766. <productMenu id="meshIntercom+"
  5767. type="3"
  5768. url="2" >
  5769. <productMenuType version="1.5.9"
  5770. type="2"
  5771. />
  5772. <productMenuURL version="1.1.1"
  5773. url="0"
  5774. />
  5775. </productMenu>
  5776. <productMenu id="waveIntercom"
  5777. type="1" >
  5778. <productMenuType version="1.6.9"
  5779. type="0"
  5780. />
  5781. </productMenu>
  5782. <productMenu id="bluetoothIntercom"
  5783. type="1" >
  5784. </productMenu>
  5785. <productMenu id="phone"
  5786. type="1" >
  5787. </productMenu>
  5788. <productMenu id="music"
  5789. type="1" >
  5790. </productMenu>
  5791. <productMenu id="fmradio"
  5792. type="1" >
  5793. </productMenu>
  5794. <productMenu id="deviceSetting"
  5795. type="1"
  5796. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5797. <productMenuURL version="1.5"
  5798. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5799. />
  5800. <productMenuURL version="1.1.1"
  5801. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5802. />
  5803. <productMenuURL version="1.0.3"
  5804. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5805. />
  5806. </productMenu>
  5807. <productMenu id="quickGuide"
  5808. type="0"
  5809. url=""
  5810. size="344KB" >
  5811. </productMenu>
  5812. <productMenu id="userGuide"
  5813. type="1"
  5814. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5815. size="3.41MB" >
  5816. </productMenu>
  5817. <productMenu id="connectGuide"
  5818. type="1"
  5819. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5820. size="1.12MB" >
  5821. </productMenu>
  5822. <productMenu id="volume"
  5823. type="11" >
  5824. </productMenu>
  5825. <productMenu id="battery"
  5826. type="1" >
  5827. </productMenu>
  5828. <productID id="3216"
  5829. />
  5830. <productGroupable type="0"
  5831. />
  5832. </product>
  5833. <product id="SRL_EXT"
  5834. name="SRL-EXT"
  5835. series="SRL"
  5836. latestVersion="1.7.1"
  5837. show = "1" >
  5838. <productMenu id="protocol"
  5839. type="2" >
  5840. </productMenu>
  5841. <productMenu id="alexa"
  5842. type="0" >
  5843. </productMenu>
  5844. <productMenu id="ota"
  5845. type="0" >
  5846. </productMenu>
  5847. <productMenu id="wa"
  5848. type="0" >
  5849. </productMenu>
  5850. <productMenu id="sip"
  5851. type="1" >
  5852. </productMenu>
  5853. <productMenu id="meshIntercom"
  5854. type="30" >
  5855. <productMenuType version="1.1.1"
  5856. type="20"
  5857. />
  5858. </productMenu>
  5859. <productMenu id="meshIntercom+"
  5860. type="3"
  5861. url="2" >
  5862. <productMenuType version="1.5.9"
  5863. type="2"
  5864. />
  5865. <productMenuURL version="1.1.1"
  5866. url="0"
  5867. />
  5868. </productMenu>
  5869. <productMenu id="waveIntercom"
  5870. type="1" >
  5871. <productMenuType version="1.6.9"
  5872. type="0"
  5873. />
  5874. </productMenu>
  5875. <productMenu id="bluetoothIntercom"
  5876. type="1" >
  5877. </productMenu>
  5878. <productMenu id="phone"
  5879. type="1" >
  5880. </productMenu>
  5881. <productMenu id="music"
  5882. type="1" >
  5883. </productMenu>
  5884. <productMenu id="fmradio"
  5885. type="1" >
  5886. </productMenu>
  5887. <productMenu id="deviceSetting"
  5888. type="1"
  5889. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5890. <productMenuURL version="1.5"
  5891. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5892. />
  5893. <productMenuURL version="1.1.1"
  5894. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5895. />
  5896. <productMenuURL version="1.0.3"
  5897. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5898. />
  5899. </productMenu>
  5900. <productMenu id="quickGuide"
  5901. type="0"
  5902. url=""
  5903. size="344KB" >
  5904. </productMenu>
  5905. <productMenu id="userGuide"
  5906. type="1"
  5907. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5908. size="3.41MB" >
  5909. </productMenu>
  5910. <productMenu id="connectGuide"
  5911. type="1"
  5912. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5913. size="1.12MB" >
  5914. </productMenu>
  5915. <productMenu id="volume"
  5916. type="11" >
  5917. </productMenu>
  5918. <productMenu id="battery"
  5919. type="1" >
  5920. </productMenu>
  5921. <productID id="3212"
  5922. />
  5923. <productGroupable type="0"
  5924. />
  5925. </product>
  5926. <product id="SRL2"
  5927. name="SRL2"
  5928. series="SRL"
  5929. latestVersion="1.0.9"
  5930. show = "1" >
  5931. <productMenu id="protocol"
  5932. type="0">
  5933. </productMenu>
  5934. <productMenu id="sip"
  5935. type="1" >
  5936. </productMenu>
  5937. <productMenu id="bluetoothIntercom"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="intercomSetting"
  5941. type="1" >
  5942. </productMenu>
  5943. <productMenu id="phone"
  5944. type="2" >
  5945. </productMenu>
  5946. <productMenu id="fmradio"
  5947. type="3" >
  5948. </productMenu>
  5949. <productMenu id="deviceSetting"
  5950. type="1"
  5951. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5952. </productMenu>
  5953. <productMenu id="quickGuide"
  5954. type="1"
  5955. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5956. size="846KB" >
  5957. </productMenu>
  5958. <productMenu id="userGuide"
  5959. type="1"
  5960. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5961. size="1.18MB" >
  5962. </productMenu>
  5963. <productMenu id="connectGuide"
  5964. type="1"
  5965. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5966. size="1.12MB" >
  5967. </productMenu>
  5968. <productID id="4530"
  5969. />
  5970. <productGroupable type="1"
  5971. />
  5972. </product>
  5973. <product id="Neotec2"
  5974. name="SRL Neotec2"
  5975. series="SRL"
  5976. latestVersion="1.1.5"
  5977. show = "1" >
  5978. <productMenu id="protocol"
  5979. type="0">
  5980. </productMenu>
  5981. <productMenu id="sip"
  5982. type="1" >
  5983. </productMenu>
  5984. <productMenu id="bluetoothIntercom"
  5985. type="1" >
  5986. </productMenu>
  5987. <productMenu id="intercomSetting"
  5988. type="1" >
  5989. </productMenu>
  5990. <productMenu id="phone"
  5991. type="2" >
  5992. </productMenu>
  5993. <productMenu id="fmradio"
  5994. type="3" >
  5995. </productMenu>
  5996. <productMenu id="deviceSetting"
  5997. type="1"
  5998. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5999. </productMenu>
  6000. <productMenu id="quickGuide"
  6001. type="0"
  6002. url=""
  6003. size="796KB" >
  6004. </productMenu>
  6005. <productMenu id="userGuide"
  6006. type="1"
  6007. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  6008. size="1.90MB" >
  6009. </productMenu>
  6010. <productMenu id="connectGuide"
  6011. type="1"
  6012. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6013. size="1.12MB" >
  6014. </productMenu>
  6015. <productID id="4510"
  6016. />
  6017. <productGroupable type="1"
  6018. />
  6019. </product>
  6020. <product id="MultiComNeo"
  6021. name="MultiCom Neo"
  6022. series="MultiCom"
  6023. latestVersion="1.0"
  6024. latestVersionVoicePrompt="1.6"
  6025. show = "-1" >
  6026. <productMenu id="protocol"
  6027. type="2" >
  6028. </productMenu>
  6029. <productMenu id="ota"
  6030. type="0" >
  6031. <otaPackages>
  6032. <package
  6033. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  6034. size="2945812"
  6035. />
  6036. </otaPackages>
  6037. </productMenu>
  6038. <productMenu id="meshIntercom+"
  6039. type="3"
  6040. url="2" >
  6041. </productMenu>
  6042. <productMenu id="waveIntercom"
  6043. type="1" >
  6044. </productMenu>
  6045. <productMenu id="phone"
  6046. type="1" >
  6047. </productMenu>
  6048. <productMenu id="music"
  6049. type="1" >
  6050. </productMenu>
  6051. <productMenu id="musicSharing"
  6052. type="0" >
  6053. </productMenu>
  6054. <productMenu id="deviceSetting"
  6055. type="1"
  6056. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  6057. </productMenu>
  6058. <productMenu id="quickGuide"
  6059. type="0"
  6060. url=""
  6061. size="1.12MB" >
  6062. </productMenu>
  6063. <productMenu id="userGuide"
  6064. type="1"
  6065. url=""
  6066. size="2.0MB" >
  6067. </productMenu>
  6068. <productMenu id="videoGuide"
  6069. type="0"
  6070. url=""
  6071. size="3.41MB" >
  6072. </productMenu>
  6073. <productMenu id="connectGuide"
  6074. type="0"
  6075. url=""
  6076. size="1.12MB" >
  6077. </productMenu>
  6078. <productMenu id="volume"
  6079. type="12" >
  6080. </productMenu>
  6081. <productMenu id="volume+"
  6082. type="2"
  6083. url="0x2000" >
  6084. </productMenu>
  6085. <productMenu id="battery"
  6086. type="1" >
  6087. </productMenu>
  6088. <productID id="685F"
  6089. />
  6090. <productGroupable type="0"
  6091. />
  6092. </product>
  6093. <product id="SPIDERST2ANC"
  6094. name="SPIDER ST2 ANC"
  6095. series="SPIDER"
  6096. latestVersion="0.5.1"
  6097. latestVersionVoicePrompt="0.2"
  6098. latestVersionMesh="0.8"
  6099. show = "-1" >
  6100. <productMenu id="protocol"
  6101. type="2" >
  6102. </productMenu>
  6103. <productMenu id="ota"
  6104. type="0" >
  6105. <otaPackages>
  6106. <package
  6107. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  6108. size="2945812"
  6109. />
  6110. </otaPackages>
  6111. </productMenu>
  6112. <productMenu id="wa"
  6113. type="0" >
  6114. </productMenu>
  6115. <productMenu id="led"
  6116. type="1" >
  6117. </productMenu>
  6118. <productMenu id="meshIntercom"
  6119. type="30" >
  6120. </productMenu>
  6121. <productMenu id="fmradio"
  6122. type="1" >
  6123. </productMenu>
  6124. <productMenu id="phone"
  6125. type="1" >
  6126. </productMenu>
  6127. <productMenu id="music"
  6128. type="1" >
  6129. </productMenu>
  6130. <productMenu id="musicSharing"
  6131. type="0" >
  6132. </productMenu>
  6133. <productMenu id="deviceSetting"
  6134. type="1"
  6135. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  6136. </productMenu>
  6137. <productMenu id="quickGuide"
  6138. type="1"
  6139. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  6140. size="1.12MB" >
  6141. </productMenu>
  6142. <productMenu id="userGuide"
  6143. type="1"
  6144. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  6145. size="2.0MB" >
  6146. </productMenu>
  6147. <productMenu id="videoGuide"
  6148. type="1"
  6149. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6150. size="3.41MB" >
  6151. </productMenu>
  6152. <productMenu id="volume"
  6153. type="12" >
  6154. </productMenu>
  6155. <productMenu id="battery"
  6156. type="1" >
  6157. </productMenu>
  6158. <productID id="6A00"
  6159. />
  6160. <productGroupable type="0"
  6161. />
  6162. </product>
  6163. <product id="SPIDER_ST1"
  6164. name="SPIDER ST1"
  6165. series="SPIDER"
  6166. latestVersion="2.5.3"
  6167. latestVersionVoicePrompt="1.6"
  6168. show = "1" >
  6169. <productMenu id="protocol"
  6170. type="2" >
  6171. </productMenu>
  6172. <productMenu id="alexa"
  6173. type="0" >
  6174. </productMenu>
  6175. <productMenu id="ota"
  6176. type="2" >
  6177. <productMenuType version="2.1.9"
  6178. type="0"
  6179. />
  6180. <otaPackages>
  6181. <package
  6182. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  6183. size="2945812"
  6184. />
  6185. </otaPackages>
  6186. </productMenu>
  6187. <productMenu id="wa"
  6188. type="0" >
  6189. </productMenu>
  6190. <productMenu id="meshIntercom"
  6191. type="30" >
  6192. <productMenuType version="2.1.1"
  6193. type="20"
  6194. />
  6195. </productMenu>
  6196. <productMenu id="meshIntercom+"
  6197. type="3"
  6198. url="2" >
  6199. <productMenuType version="2.2.9"
  6200. type="2"
  6201. />
  6202. <productMenuURL version="2.1.1"
  6203. url="0"
  6204. />
  6205. </productMenu>
  6206. <productMenu id="waveIntercom"
  6207. type="1" >
  6208. <productMenuType version="2.3.9"
  6209. type="0"
  6210. />
  6211. </productMenu>
  6212. <productMenu id="phone"
  6213. type="1" >
  6214. </productMenu>
  6215. <productMenu id="music"
  6216. type="1" >
  6217. </productMenu>
  6218. <productMenu id="musicSharing"
  6219. type="0" >
  6220. </productMenu>
  6221. <productMenu id="deviceSetting"
  6222. type="1"
  6223. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6224. <productMenuURL version="2.4.9"
  6225. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6226. />
  6227. <productMenuURL version="2.2.2"
  6228. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6229. />
  6230. <productMenuURL version="2.1.1"
  6231. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6232. />
  6233. </productMenu>
  6234. <productMenu id="quickGuide"
  6235. type="0"
  6236. url=""
  6237. size="1.12MB" >
  6238. </productMenu>
  6239. <productMenu id="userGuide"
  6240. type="1"
  6241. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6242. size="2.0MB" >
  6243. </productMenu>
  6244. <productMenu id="videoGuide"
  6245. type="1"
  6246. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6247. size="3.41MB" >
  6248. </productMenu>
  6249. <productMenu id="connectGuide"
  6250. type="1"
  6251. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6252. size="1.12MB" >
  6253. </productMenu>
  6254. <productMenu id="volume"
  6255. type="12" >
  6256. </productMenu>
  6257. <productMenu id="volume+"
  6258. type="2"
  6259. url="0x2000" >
  6260. </productMenu>
  6261. <productMenu id="battery"
  6262. type="1" >
  6263. </productMenu>
  6264. <productID id="6800"
  6265. />
  6266. <productGroupable type="0"
  6267. />
  6268. </product>
  6269. <product id="SPIDER_ST1"
  6270. name="SPIDER ST1"
  6271. series="SPIDER"
  6272. latestVersion="1.2.2"
  6273. show = "-1" >
  6274. <productMenu id="protocol"
  6275. type="2" >
  6276. </productMenu>
  6277. <productMenu id="alexa"
  6278. type="0" >
  6279. </productMenu>
  6280. <productMenu id="ota"
  6281. type="0" >
  6282. </productMenu>
  6283. <productMenu id="wa"
  6284. type="0" >
  6285. </productMenu>
  6286. <productMenu id="meshIntercom"
  6287. type="20" >
  6288. </productMenu>
  6289. <productMenu id="phone"
  6290. type="1" >
  6291. </productMenu>
  6292. <productMenu id="music"
  6293. type="1" >
  6294. </productMenu>
  6295. <productMenu id="deviceSetting"
  6296. type="1"
  6297. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6298. </productMenu>
  6299. <productMenu id="quickGuide"
  6300. type="0"
  6301. url=""
  6302. size="1.12MB" >
  6303. </productMenu>
  6304. <productMenu id="userGuide"
  6305. type="1"
  6306. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6307. size="2.0MB" >
  6308. </productMenu>
  6309. <productMenu id="videoGuide"
  6310. type="1"
  6311. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6312. size="3.41MB" >
  6313. </productMenu>
  6314. <productMenu id="volume"
  6315. type="13" >
  6316. <productMenuType version="1.1.6"
  6317. type="14"/>
  6318. </productMenu>
  6319. <productMenu id="battery"
  6320. type="1" >
  6321. </productMenu>
  6322. <productID id="6510"
  6323. />
  6324. <productGroupable type="0"
  6325. />
  6326. </product>
  6327. <product id="SPIDER_RT1"
  6328. name="SPIDER RT1"
  6329. series="SPIDER"
  6330. latestVersion="2.5.3"
  6331. latestVersionVoicePrompt="1.6"
  6332. show = "1" >
  6333. <productMenu id="protocol"
  6334. type="2" >
  6335. </productMenu>
  6336. <productMenu id="alexa"
  6337. type="0" >
  6338. </productMenu>
  6339. <productMenu id="ota"
  6340. type="2" >
  6341. <productMenuType version="2.1.9"
  6342. type="0"
  6343. />
  6344. <otaPackages>
  6345. <package
  6346. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6347. size="2945812"
  6348. />
  6349. </otaPackages>
  6350. </productMenu>
  6351. <productMenu id="wa"
  6352. type="0" >
  6353. </productMenu>
  6354. <productMenu id="meshIntercom"
  6355. type="30" >
  6356. <productMenuType version="2.1.1"
  6357. type="20"
  6358. />
  6359. </productMenu>
  6360. <productMenu id="meshIntercom+"
  6361. type="3"
  6362. url="2" >
  6363. <productMenuType version="2.2.9"
  6364. type="2"
  6365. />
  6366. <productMenuURL version="2.1.1"
  6367. url="0"
  6368. />
  6369. </productMenu>
  6370. <productMenu id="waveIntercom"
  6371. type="1" >
  6372. <productMenuType version="2.3.9"
  6373. type="0"
  6374. />
  6375. </productMenu>
  6376. <productMenu id="phone"
  6377. type="1" >
  6378. </productMenu>
  6379. <productMenu id="music"
  6380. type="1" >
  6381. </productMenu>
  6382. <productMenu id="musicSharing"
  6383. type="0" >
  6384. </productMenu>
  6385. <productMenu id="deviceSetting"
  6386. type="1"
  6387. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6388. <productMenuURL version="2.4.9"
  6389. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6390. />
  6391. <productMenuURL version="2.2.2"
  6392. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6393. />
  6394. <productMenuURL version="2.1.1"
  6395. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6396. />
  6397. </productMenu>
  6398. <productMenu id="quickGuide"
  6399. type="0"
  6400. url=""
  6401. size="1.12MB" >
  6402. </productMenu>
  6403. <productMenu id="userGuide"
  6404. type="1"
  6405. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6406. size="2.0MB" >
  6407. </productMenu>
  6408. <productMenu id="videoGuide"
  6409. type="1"
  6410. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6411. size="3.41MB" >
  6412. </productMenu>
  6413. <productMenu id="connectGuide"
  6414. type="1"
  6415. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6416. size="1.12MB" >
  6417. </productMenu>
  6418. <productMenu id="volume"
  6419. type="12" >
  6420. </productMenu>
  6421. <productMenu id="volume+"
  6422. type="2"
  6423. url="0x2000" >
  6424. </productMenu>
  6425. <productMenu id="battery"
  6426. type="1" >
  6427. </productMenu>
  6428. <productID id="6810"
  6429. />
  6430. <productGroupable type="0"
  6431. />
  6432. </product>
  6433. <product id="SPIDER_RT1"
  6434. name="SPIDER RT1"
  6435. series="SPIDER"
  6436. latestVersion="1.2.2"
  6437. show = "-1" >
  6438. <productMenu id="protocol"
  6439. type="2" >
  6440. </productMenu>
  6441. <productMenu id="alexa"
  6442. type="0" >
  6443. </productMenu>
  6444. <productMenu id="ota"
  6445. type="0" >
  6446. </productMenu>
  6447. <productMenu id="wa"
  6448. type="0" >
  6449. </productMenu>
  6450. <productMenu id="meshIntercom"
  6451. type="20" >
  6452. </productMenu>
  6453. <productMenu id="phone"
  6454. type="1" >
  6455. </productMenu>
  6456. <productMenu id="music"
  6457. type="1" >
  6458. </productMenu>
  6459. <productMenu id="deviceSetting"
  6460. type="1"
  6461. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6462. </productMenu>
  6463. <productMenu id="quickGuide"
  6464. type="0"
  6465. url=""
  6466. size="1.32MB" >
  6467. </productMenu>
  6468. <productMenu id="userGuide"
  6469. type="1"
  6470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6471. size="1.79MB" >
  6472. </productMenu>
  6473. <productMenu id="videoGuide"
  6474. type="1"
  6475. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6476. size="3.41MB" >
  6477. </productMenu>
  6478. <productMenu id="volume"
  6479. type="13" >
  6480. <productMenuType version="1.1.6"
  6481. type="14"/>
  6482. </productMenu>
  6483. <productMenu id="battery"
  6484. type="1" >
  6485. </productMenu>
  6486. <productID id="6500"
  6487. />
  6488. <productGroupable type="0"
  6489. />
  6490. </product>
  6491. <product id="30K"
  6492. name="30K"
  6493. series="30"
  6494. latestVersion="4.5.1"
  6495. show = "1" >
  6496. <productMenu id="protocol"
  6497. type="2" >
  6498. </productMenu>
  6499. <productMenu id="alexa"
  6500. type="0" >
  6501. </productMenu>
  6502. <productMenu id="wa"
  6503. type="1" >
  6504. </productMenu>
  6505. <productMenu id="sip"
  6506. type="1" >
  6507. </productMenu>
  6508. <productMenu id="meshIntercom"
  6509. type="30" >
  6510. <productMenuType version="4.0.4"
  6511. type="20"
  6512. />
  6513. </productMenu>
  6514. <productMenu id="meshIntercom+"
  6515. type="3"
  6516. url="2" >
  6517. <productMenuType version="4.3.9"
  6518. type="2"
  6519. />
  6520. <productMenuURL version="4.0.4"
  6521. url="0"
  6522. />
  6523. </productMenu>
  6524. <productMenu id="waveIntercom"
  6525. type="1" >
  6526. <productMenuType version="4.4.9"
  6527. type="0"
  6528. />
  6529. </productMenu>
  6530. <productMenu id="bluetoothIntercom"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="phone"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="music"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="fmradio"
  6540. type="1" >
  6541. </productMenu>
  6542. <productMenu id="deviceSetting"
  6543. type="1"
  6544. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6545. <productMenuURL version="4.3"
  6546. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6547. />
  6548. <productMenuURL version="4.2"
  6549. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6550. />
  6551. <productMenuURL version="4.0.4"
  6552. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6553. />
  6554. </productMenu>
  6555. <productMenu id="quickGuide"
  6556. type="0"
  6557. url=""
  6558. size="934KB" >
  6559. </productMenu>
  6560. <productMenu id="userGuide"
  6561. type="1"
  6562. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6563. size="1.14MB" >
  6564. </productMenu>
  6565. <productMenu id="connectGuide"
  6566. type="1"
  6567. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6568. size="1.12MB" >
  6569. </productMenu>
  6570. <productMenu id="volume"
  6571. type="11" >
  6572. </productMenu>
  6573. <productMenu id="battery"
  6574. type="1" >
  6575. </productMenu>
  6576. <productID id="3211"
  6577. />
  6578. <productGroupable type="0"
  6579. />
  6580. </product>
  6581. <product id="30K"
  6582. name="30K"
  6583. series="30"
  6584. latestVersion="3.5"
  6585. show = "-1" >
  6586. <productMenu id="protocol"
  6587. type="1"
  6588. url="0">
  6589. </productMenu>
  6590. <productMenu id="wa"
  6591. type="7" >
  6592. </productMenu>
  6593. <productMenu id="sip"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="meshIntercom"
  6597. type="20" >
  6598. <productMenuType version="2.9.9"
  6599. type="10"
  6600. />
  6601. </productMenu>
  6602. <productMenu id="meshIntercom+"
  6603. type="3"
  6604. url="2" >
  6605. <productMenuType version="3.4.9"
  6606. type="2"
  6607. />
  6608. <productMenuType version="2.9.9"
  6609. type="1"
  6610. />
  6611. <productMenuURL version="3.3.1"
  6612. url="0"
  6613. />
  6614. </productMenu>
  6615. <productMenu id="bluetoothIntercom"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="phone"
  6619. type="1" >
  6620. </productMenu>
  6621. <productMenu id="music"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="fmradio"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="deviceSetting"
  6628. type="1"
  6629. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6630. <productMenuURL version="3.4.9"
  6631. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6632. />
  6633. <productMenuURL version="3.3.1"
  6634. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6635. />
  6636. <productMenuURL version="3.0.1"
  6637. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6638. />
  6639. <productMenuURL version="2.3.1"
  6640. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6641. />
  6642. <productMenuURL version="2.0"
  6643. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6644. />
  6645. <productMenuURL version="1.0.3"
  6646. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6647. />
  6648. </productMenu>
  6649. <productMenu id="quickGuide"
  6650. type="0"
  6651. url=""
  6652. size="1.06MB" >
  6653. </productMenu>
  6654. <productMenu id="userGuide"
  6655. type="1"
  6656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6657. size="3.15MB" >
  6658. </productMenu>
  6659. <productMenu id="volume"
  6660. type="1" >
  6661. </productMenu>
  6662. <productID id="3110"
  6663. />
  6664. <productGroupable type="0"
  6665. />
  6666. </product>
  6667. <product id="FURY"
  6668. name="FURY"
  6669. series="Helmet"
  6670. latestVersion="1.0"
  6671. show = "-1" >
  6672. <productMenu id="protocol"
  6673. type="2" >
  6674. </productMenu>
  6675. <productMenu id="alexa"
  6676. type="0" >
  6677. </productMenu>
  6678. <productMenu id="ota"
  6679. type="0" >
  6680. </productMenu>
  6681. <productMenu id="wa"
  6682. type="0" >
  6683. </productMenu>
  6684. <productMenu id="meshIntercom"
  6685. type="20" >
  6686. </productMenu>
  6687. <productMenu id="phone"
  6688. type="1" >
  6689. </productMenu>
  6690. <productMenu id="music"
  6691. type="1" >
  6692. </productMenu>
  6693. <productMenu id="fmradio"
  6694. type="1" >
  6695. </productMenu>
  6696. <productMenu id="deviceSetting"
  6697. type="1"
  6698. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6699. </productMenu>
  6700. <productMenu id="quickGuide"
  6701. type="1"
  6702. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6703. size="1.12MB" >
  6704. </productMenu>
  6705. <productMenu id="userGuide"
  6706. type="1"
  6707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6708. size="2.0MB" >
  6709. </productMenu>
  6710. <productMenu id="volume"
  6711. type="13" >
  6712. </productMenu>
  6713. <productMenu id="battery"
  6714. type="1" >
  6715. </productMenu>
  6716. <productID id="5552"
  6717. />
  6718. <productGroupable type="0"
  6719. />
  6720. </product>
  6721. <product id="MomentumM"
  6722. name="Momentum EVO"
  6723. series="Helmet"
  6724. latestVersion="2.1.2"
  6725. show = "1" >
  6726. <productMenu id="protocol"
  6727. type="1"
  6728. url="0">
  6729. </productMenu>
  6730. <productMenu id="wa"
  6731. type="3" >
  6732. </productMenu>
  6733. <productMenu id="sip"
  6734. type="1" >
  6735. </productMenu>
  6736. <productMenu id="meshIntercom"
  6737. type="20" >
  6738. <productMenuType version="1.9.9"
  6739. type="10"
  6740. />
  6741. </productMenu>
  6742. <productMenu id="bluetoothIntercom"
  6743. type="1" >
  6744. </productMenu>
  6745. <productMenu id="phone"
  6746. type="1" >
  6747. </productMenu>
  6748. <productMenu id="music"
  6749. type="1" >
  6750. </productMenu>
  6751. <productMenu id="fmradio"
  6752. type="1" >
  6753. </productMenu>
  6754. <productMenu id="deviceSetting"
  6755. type="1"
  6756. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6757. <productMenuURL version="1.0.1"
  6758. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6759. />
  6760. </productMenu>
  6761. <productMenu id="quickGuide"
  6762. type="1"
  6763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6764. size="1.06MB" >
  6765. </productMenu>
  6766. <productMenu id="userGuide"
  6767. type="1"
  6768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6769. size="3.15MB" >
  6770. </productMenu>
  6771. <productMenu id="connectGuide"
  6772. type="1"
  6773. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6774. size="1.12MB" >
  6775. </productMenu>
  6776. <productMenu id="volume"
  6777. type="2" >
  6778. </productMenu>
  6779. <productID id="3116"
  6780. />
  6781. <productGroupable type="0"
  6782. />
  6783. </product>
  6784. <product id="Momentum"
  6785. name="Momentum"
  6786. series="Helmet"
  6787. latestVersion="1.0.9"
  6788. show = "1" >
  6789. <productMenu id="protocol"
  6790. type="0">
  6791. </productMenu>
  6792. <productMenu id="sip"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="bluetoothIntercom"
  6796. type="1" >
  6797. </productMenu>
  6798. <productMenu id="intercomSetting"
  6799. type="1" >
  6800. </productMenu>
  6801. <productMenu id="phone"
  6802. type="2" >
  6803. </productMenu>
  6804. <productMenu id="fmradio"
  6805. type="3" >
  6806. </productMenu>
  6807. <productMenu id="deviceSetting"
  6808. type="1"
  6809. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6810. </productMenu>
  6811. <productMenu id="quickGuide"
  6812. type="1"
  6813. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6814. size="796KB" >
  6815. </productMenu>
  6816. <productMenu id="userGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6819. size="1.90MB" >
  6820. </productMenu>
  6821. <productMenu id="connectGuide"
  6822. type="1"
  6823. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productID id="4310"
  6827. />
  6828. <productGroupable type="1"
  6829. />
  6830. </product>
  6831. <product id="Momentum_Pro"
  6832. name="Momentum Pro"
  6833. series="Helmet"
  6834. latestVersion="1.0.6"
  6835. show = "1" >
  6836. <productMenu id="protocol"
  6837. type="0">
  6838. </productMenu>
  6839. <productMenu id="sip"
  6840. type="1" >
  6841. </productMenu>
  6842. <productMenu id="bluetoothIntercom"
  6843. type="1" >
  6844. </productMenu>
  6845. <productMenu id="intercomSetting"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="phone"
  6849. type="2" >
  6850. </productMenu>
  6851. <productMenu id="fmradio"
  6852. type="3" >
  6853. </productMenu>
  6854. <productMenu id="deviceSetting"
  6855. type="1"
  6856. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6857. </productMenu>
  6858. <productMenu id="quickGuide"
  6859. type="1"
  6860. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6861. size="796KB" >
  6862. </productMenu>
  6863. <productMenu id="userGuide"
  6864. type="1"
  6865. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6866. size="1.90MB" >
  6867. </productMenu>
  6868. <productMenu id="connectGuide"
  6869. type="1"
  6870. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6871. size="1.12MB" >
  6872. </productMenu>
  6873. <productID id="4330"
  6874. />
  6875. <productGroupable type="1"
  6876. />
  6877. </product>
  6878. <product id="Momentum_INC"
  6879. name="Momentum INC"
  6880. series="Helmet"
  6881. latestVersion="1.0.7"
  6882. show = "1" >
  6883. <productMenu id="protocol"
  6884. type="0">
  6885. </productMenu>
  6886. <productMenu id="sip"
  6887. type="1" >
  6888. </productMenu>
  6889. <productMenu id="bluetoothIntercom"
  6890. type="1" >
  6891. </productMenu>
  6892. <productMenu id="intercomSetting"
  6893. type="1" >
  6894. </productMenu>
  6895. <productMenu id="phone"
  6896. type="2" >
  6897. </productMenu>
  6898. <productMenu id="fmradio"
  6899. type="3" >
  6900. </productMenu>
  6901. <productMenu id="deviceSetting"
  6902. type="1"
  6903. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6904. </productMenu>
  6905. <productMenu id="quickGuide"
  6906. type="1"
  6907. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6908. size="794KB" >
  6909. </productMenu>
  6910. <productMenu id="userGuide"
  6911. type="1"
  6912. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6913. size="1.53MB" >
  6914. </productMenu>
  6915. <productMenu id="connectGuide"
  6916. type="1"
  6917. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6918. size="1.12MB" >
  6919. </productMenu>
  6920. <productID id="4410"
  6921. />
  6922. <productGroupable type="1"
  6923. />
  6924. </product>
  6925. <product id="Momentum_INCP"
  6926. name="Momentum INC Pro"
  6927. series="Helmet"
  6928. latestVersion="1.0.4"
  6929. show = "1" >
  6930. <productMenu id="protocol"
  6931. type="0">
  6932. </productMenu>
  6933. <productMenu id="sip"
  6934. type="1" >
  6935. </productMenu>
  6936. <productMenu id="bluetoothIntercom"
  6937. type="1" >
  6938. </productMenu>
  6939. <productMenu id="intercomSetting"
  6940. type="1" >
  6941. </productMenu>
  6942. <productMenu id="phone"
  6943. type="2" >
  6944. </productMenu>
  6945. <productMenu id="fmradio"
  6946. type="3" >
  6947. </productMenu>
  6948. <productMenu id="deviceSetting"
  6949. type="1"
  6950. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6951. </productMenu>
  6952. <productMenu id="quickGuide"
  6953. type="1"
  6954. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6955. size="794KB" >
  6956. </productMenu>
  6957. <productMenu id="userGuide"
  6958. type="1"
  6959. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6960. size="1.53MB" >
  6961. </productMenu>
  6962. <productMenu id="connectGuide"
  6963. type="1"
  6964. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6965. size="1.12MB" >
  6966. </productMenu>
  6967. <productID id="4430"
  6968. />
  6969. <productGroupable type="1"
  6970. />
  6971. </product>
  6972. <product id="Momentum_Lite"
  6973. name="Momentum Lite"
  6974. series="Helmet"
  6975. latestVersion="2.0.3"
  6976. show = "1" >
  6977. <productMenu id="protocol"
  6978. type="0">
  6979. </productMenu>
  6980. <productMenu id="sip"
  6981. type="1" >
  6982. </productMenu>
  6983. <productMenu id="bluetoothIntercom"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="phone"
  6987. type="2" >
  6988. </productMenu>
  6989. <productMenu id="fmradio"
  6990. type="3" >
  6991. </productMenu>
  6992. <productMenu id="deviceSetting"
  6993. type="1"
  6994. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6995. <productMenuURL version="1.1"
  6996. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6997. />
  6998. </productMenu>
  6999. <productMenu id="quickGuide"
  7000. type="1"
  7001. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  7002. size="790KB" >
  7003. </productMenu>
  7004. <productMenu id="userGuide"
  7005. type="1"
  7006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  7007. size="1.42MB" >
  7008. </productMenu>
  7009. <productMenu id="connectGuide"
  7010. type="1"
  7011. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7012. size="1.12MB" >
  7013. </productMenu>
  7014. <productID id="5526"
  7015. />
  7016. <productGroupable type="0"
  7017. />
  7018. </product>
  7019. <product id="OUTRUSHM"
  7020. name="OUTRUSH M"
  7021. series="Helmet"
  7022. latestVersion="1.0"
  7023. show = "-1" >
  7024. <productMenu id="protocol"
  7025. type="2" >
  7026. </productMenu>
  7027. <productMenu id="alexa"
  7028. type="0" >
  7029. </productMenu>
  7030. <productMenu id="ota"
  7031. type="0" >
  7032. </productMenu>
  7033. <productMenu id="wa"
  7034. type="0" >
  7035. </productMenu>
  7036. <productMenu id="meshIntercom"
  7037. type="30" >
  7038. </productMenu>
  7039. <productMenu id="phone"
  7040. type="1" >
  7041. </productMenu>
  7042. <productMenu id="music"
  7043. type="1" >
  7044. </productMenu>
  7045. <productMenu id="fmradio"
  7046. type="1" >
  7047. </productMenu>
  7048. <productMenu id="deviceSetting"
  7049. type="1"
  7050. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  7051. </productMenu>
  7052. <productMenu id="quickGuide"
  7053. type="1"
  7054. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  7055. size="1.12MB" >
  7056. </productMenu>
  7057. <productMenu id="userGuide"
  7058. type="1"
  7059. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  7060. size="2.0MB" >
  7061. </productMenu>
  7062. <productMenu id="volume"
  7063. type="13" >
  7064. </productMenu>
  7065. <productMenu id="battery"
  7066. type="1" >
  7067. </productMenu>
  7068. <productID id="5600"
  7069. />
  7070. <productGroupable type="0"
  7071. />
  7072. </product>
  7073. <product id="ProRideEVO"
  7074. name="ProRide EVO"
  7075. series="Helmet"
  7076. latestVersion="1.1.2"
  7077. show = "1" >
  7078. <productMenu id="protocol"
  7079. type="0">
  7080. </productMenu>
  7081. <productMenu id="sip"
  7082. type="1" >
  7083. </productMenu>
  7084. <productMenu id="bluetoothIntercom"
  7085. type="1" >
  7086. </productMenu>
  7087. <productMenu id="phone"
  7088. type="2" >
  7089. </productMenu>
  7090. <productMenu id="fmradio"
  7091. type="3" >
  7092. </productMenu>
  7093. <productMenu id="deviceSetting"
  7094. type="1"
  7095. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  7096. </productMenu>
  7097. <productMenu id="userGuide"
  7098. type="1"
  7099. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  7100. size="778KB" >
  7101. </productMenu>
  7102. <productMenu id="connectGuide"
  7103. type="1"
  7104. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7105. size="1.12MB" >
  7106. </productMenu>
  7107. <productID id="5426"
  7108. />
  7109. <productGroupable type="0"
  7110. />
  7111. </product>
  7112. <product id="OUTRUSHR"
  7113. name="OUTRUSH R"
  7114. series="Helmet"
  7115. latestVersion="2.1"
  7116. show = "1" >
  7117. <productMenu id="protocol"
  7118. type="3" >
  7119. </productMenu>
  7120. <productMenu id="sip"
  7121. type="1" >
  7122. </productMenu>
  7123. <productMenu id="bluetoothIntercom"
  7124. type="1" >
  7125. </productMenu>
  7126. <productMenu id="phone"
  7127. type="1" >
  7128. </productMenu>
  7129. <productMenu id="fmradio"
  7130. type="0" >
  7131. </productMenu>
  7132. <productMenu id="deviceSetting"
  7133. type="1"
  7134. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7135. </productMenu>
  7136. <productMenu id="userGuide"
  7137. type="1"
  7138. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  7139. size="1.14MB" >
  7140. </productMenu>
  7141. <productMenu id="connectGuide"
  7142. type="1"
  7143. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7144. size="1.12MB" >
  7145. </productMenu>
  7146. <productID id="5440"
  7147. />
  7148. <productGroupable type="0"
  7149. />
  7150. </product>
  7151. <product id="OUTRUSHR"
  7152. name="OUTRUSH R"
  7153. series="Helmet"
  7154. latestVersion="1.1.4"
  7155. show = "-1" >
  7156. <productMenu id="protocol"
  7157. type="0">
  7158. </productMenu>
  7159. <productMenu id="sip"
  7160. type="1" >
  7161. </productMenu>
  7162. <productMenu id="bluetoothIntercom"
  7163. type="1" >
  7164. </productMenu>
  7165. <productMenu id="phone"
  7166. type="2" >
  7167. </productMenu>
  7168. <productMenu id="fmradio"
  7169. type="3" >
  7170. </productMenu>
  7171. <productMenu id="deviceSetting"
  7172. type="1"
  7173. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  7174. </productMenu>
  7175. <productMenu id="userGuide"
  7176. type="1"
  7177. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  7178. size="660KB" >
  7179. </productMenu>
  7180. <productMenu id="connectGuide"
  7181. type="1"
  7182. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7183. size="1.12MB" >
  7184. </productMenu>
  7185. <productID id="5424"
  7186. />
  7187. <productGroupable type="0"
  7188. />
  7189. </product>
  7190. <product id="OUTSTARS"
  7191. name="OUTSTAR S"
  7192. series="Helmet"
  7193. latestVersion="2.0.1"
  7194. show = "-1" >
  7195. <productMenu id="protocol"
  7196. type="3" >
  7197. </productMenu>
  7198. <productMenu id="sip"
  7199. type="1" >
  7200. </productMenu>
  7201. <productMenu id="bluetoothIntercom"
  7202. type="1" >
  7203. </productMenu>
  7204. <productMenu id="phone"
  7205. type="1" >
  7206. </productMenu>
  7207. <productMenu id="fmradio"
  7208. type="0" >
  7209. </productMenu>
  7210. <productMenu id="deviceSetting"
  7211. type="1"
  7212. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7213. </productMenu>
  7214. <productMenu id="userGuide"
  7215. type="0"
  7216. url=""
  7217. size="1.14MB" >
  7218. </productMenu>
  7219. <productID id="5443"
  7220. />
  7221. <productGroupable type="0"
  7222. />
  7223. </product>
  7224. <product id="OUTSTARS"
  7225. name="OUTSTAR S"
  7226. series="Helmet"
  7227. latestVersion="1.1.4"
  7228. show = "1" >
  7229. <productMenu id="protocol"
  7230. type="0">
  7231. </productMenu>
  7232. <productMenu id="sip"
  7233. type="1" >
  7234. </productMenu>
  7235. <productMenu id="bluetoothIntercom"
  7236. type="1" >
  7237. </productMenu>
  7238. <productMenu id="phone"
  7239. type="2" >
  7240. </productMenu>
  7241. <productMenu id="fmradio"
  7242. type="3" >
  7243. </productMenu>
  7244. <productMenu id="deviceSetting"
  7245. type="1"
  7246. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7247. </productMenu>
  7248. <productMenu id="quickGuide"
  7249. type="1"
  7250. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7251. size="643KB" >
  7252. </productMenu>
  7253. <productMenu id="userGuide"
  7254. type="1"
  7255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7256. size="1.15MB" >
  7257. </productMenu>
  7258. <productMenu id="connectGuide"
  7259. type="1"
  7260. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7261. size="1.12MB" >
  7262. </productMenu>
  7263. <productID id="5428"
  7264. />
  7265. <productGroupable type="0"
  7266. />
  7267. </product>
  7268. <product id="OUTRIDE"
  7269. name="OUTRIDE"
  7270. series="Helmet"
  7271. latestVersion="1.0.1"
  7272. show = "1" >
  7273. <productMenu id="protocol"
  7274. type="0">
  7275. </productMenu>
  7276. <productMenu id="sip"
  7277. type="1" >
  7278. </productMenu>
  7279. <productMenu id="bluetoothIntercom"
  7280. type="1" >
  7281. </productMenu>
  7282. <productMenu id="phone"
  7283. type="2" >
  7284. </productMenu>
  7285. <productMenu id="fmradio"
  7286. type="3" >
  7287. </productMenu>
  7288. <productMenu id="deviceSetting"
  7289. type="1"
  7290. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7291. </productMenu>
  7292. <productMenu id="quickGuide"
  7293. type="1"
  7294. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7295. size="643KB" >
  7296. </productMenu>
  7297. <productMenu id="userGuide"
  7298. type="1"
  7299. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7300. size="660KB" >
  7301. </productMenu>
  7302. <productMenu id="connectGuide"
  7303. type="1"
  7304. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7305. size="1.12MB" >
  7306. </productMenu>
  7307. <productID id="5432"
  7308. />
  7309. <productGroupable type="0"
  7310. />
  7311. </product>
  7312. <product id="OUTFORCE"
  7313. name="OUTFORCE"
  7314. series="Helmet"
  7315. latestVersion="1.0.1"
  7316. show = "1" >
  7317. <productMenu id="protocol"
  7318. type="0">
  7319. </productMenu>
  7320. <productMenu id="sip"
  7321. type="1" >
  7322. </productMenu>
  7323. <productMenu id="bluetoothIntercom"
  7324. type="1" >
  7325. </productMenu>
  7326. <productMenu id="phone"
  7327. type="2" >
  7328. </productMenu>
  7329. <productMenu id="fmradio"
  7330. type="3" >
  7331. </productMenu>
  7332. <productMenu id="deviceSetting"
  7333. type="1"
  7334. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7335. </productMenu>
  7336. <productMenu id="quickGuide"
  7337. type="1"
  7338. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7339. size="643KB" >
  7340. </productMenu>
  7341. <productMenu id="userGuide"
  7342. type="1"
  7343. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7344. size="660KB" >
  7345. </productMenu>
  7346. <productMenu id="connectGuide"
  7347. type="1"
  7348. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7349. size="1.12MB" >
  7350. </productMenu>
  7351. <productID id="5430"
  7352. />
  7353. <productGroupable type="0"
  7354. />
  7355. </product>
  7356. <product id="Rumba"
  7357. name="Rumba"
  7358. series="30"
  7359. latestVersion="2.0"
  7360. show = "-1" >
  7361. <productMenu id="protocol"
  7362. type="3" >
  7363. </productMenu>
  7364. <productMenu id="sip"
  7365. type="1" >
  7366. </productMenu>
  7367. <productMenu id="bluetoothIntercom"
  7368. type="1" >
  7369. </productMenu>
  7370. <productMenu id="deviceSetting"
  7371. type="1"
  7372. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7373. </productMenu>
  7374. <productMenu id="quickGuide"
  7375. type="1"
  7376. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7377. size="344KB" >
  7378. </productMenu>
  7379. <productMenu id="userGuide"
  7380. type="1"
  7381. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7382. size="1.14MB" >
  7383. </productMenu>
  7384. <productID id="6322"
  7385. />
  7386. <productGroupable type="0"
  7387. />
  7388. </product>
  7389. <product id="Savage"
  7390. name="Savage"
  7391. series="Helmet"
  7392. latestVersion="1.2.2"
  7393. show = "1" >
  7394. <productMenu id="protocol"
  7395. type="0">
  7396. </productMenu>
  7397. <productMenu id="sip"
  7398. type="1" >
  7399. </productMenu>
  7400. <productMenu id="bluetoothIntercom"
  7401. type="1" >
  7402. </productMenu>
  7403. <productMenu id="phone"
  7404. type="2" >
  7405. </productMenu>
  7406. <productMenu id="fmradio"
  7407. type="3" >
  7408. </productMenu>
  7409. <productMenu id="deviceSetting"
  7410. type="1"
  7411. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7412. <productMenuURL version="1.9"
  7413. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7414. />
  7415. <productMenuURL version="1.1"
  7416. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7417. />
  7418. </productMenu>
  7419. <productMenu id="quickGuide"
  7420. type="1"
  7421. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7422. size="796KB" >
  7423. </productMenu>
  7424. <productMenu id="userGuide"
  7425. type="1"
  7426. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7427. size="910KB" >
  7428. </productMenu>
  7429. <productMenu id="connectGuide"
  7430. type="1"
  7431. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7432. size="1.12MB" >
  7433. </productMenu>
  7434. <productID id="5550"
  7435. />
  7436. <productGroupable type="0"
  7437. />
  7438. </product>
  7439. <product id="RECON"
  7440. name="RECON"
  7441. series="Helmet"
  7442. latestVersion="1.0"
  7443. latestVersionVoicePrompt="1.8"
  7444. show = "-1" >
  7445. <productMenu id="protocol"
  7446. type="2" >
  7447. </productMenu>
  7448. <productMenu id="ota"
  7449. type="2" >
  7450. <otaLanguages>
  7451. <otaLanguage
  7452. id="0"
  7453. name="English"
  7454. package="0"
  7455. />
  7456. <otaLanguage
  7457. id="0"
  7458. name="French"
  7459. package="1"
  7460. />
  7461. <otaLanguage
  7462. id="0"
  7463. name="Spanish"
  7464. package="2"
  7465. />
  7466. <otaLanguage
  7467. id="0"
  7468. name="Italian"
  7469. package="3"
  7470. />
  7471. <otaLanguage
  7472. id="0"
  7473. name="German"
  7474. package="4"
  7475. />
  7476. <otaLanguage
  7477. id="0"
  7478. name="Dutch"
  7479. package="5"
  7480. />
  7481. <otaLanguage
  7482. id="0"
  7483. name="Russian"
  7484. package="6"
  7485. />
  7486. <otaLanguage
  7487. id="0"
  7488. name="Chinese"
  7489. package="7"
  7490. />
  7491. <otaLanguage
  7492. id="0"
  7493. name="Korean"
  7494. package="8"
  7495. />
  7496. <otaLanguage
  7497. id="0"
  7498. name="Japanese"
  7499. package="9"
  7500. />
  7501. <otaLanguage
  7502. id="0"
  7503. name="Finnish"
  7504. package="10"
  7505. />
  7506. <otaLanguage
  7507. id="0"
  7508. name="Polish"
  7509. package="11"
  7510. />
  7511. </otaLanguages>
  7512. <otaPackages>
  7513. <package
  7514. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7515. size="5183988"
  7516. />
  7517. <package
  7518. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7519. size="5183988"
  7520. />
  7521. <package
  7522. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7523. size="5183988"
  7524. />
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7531. size="5183988"
  7532. />
  7533. <package
  7534. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7535. size="5183988"
  7536. />
  7537. <package
  7538. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7539. size="5183988"
  7540. />
  7541. <package
  7542. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7543. size="5183988"
  7544. />
  7545. <package
  7546. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7547. size="5183988"
  7548. />
  7549. <package
  7550. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7551. size="5183988"
  7552. />
  7553. <package
  7554. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7555. size="5183988"
  7556. />
  7557. <package
  7558. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7559. size="5183988"
  7560. />
  7561. </otaPackages>
  7562. </productMenu>
  7563. <productMenu id="wa"
  7564. type="0" >
  7565. </productMenu>
  7566. <productMenu id="led"
  7567. type="5" >
  7568. </productMenu>
  7569. <productMenu id="led+"
  7570. type="2"
  7571. url="1" >
  7572. </productMenu>
  7573. <productMenu id="meshIntercom+"
  7574. type="3"
  7575. url="2" >
  7576. </productMenu>
  7577. <productMenu id="waveIntercom"
  7578. type="1" >
  7579. </productMenu>
  7580. <productMenu id="fmradio"
  7581. type="0" >
  7582. </productMenu>
  7583. <productMenu id="phone"
  7584. type="1" >
  7585. </productMenu>
  7586. <productMenu id="music"
  7587. type="1" >
  7588. </productMenu>
  7589. <productMenu id="musicSharing"
  7590. type="0" >
  7591. </productMenu>
  7592. <productMenu id="deviceSetting"
  7593. type="1"
  7594. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7595. </productMenu>
  7596. <productMenu id="quickGuide"
  7597. type="0"
  7598. url=""
  7599. size="1.12MB" >
  7600. </productMenu>
  7601. <productMenu id="userGuide"
  7602. type="1"
  7603. url=""
  7604. size="2.28MB" >
  7605. </productMenu>
  7606. <productMenu id="videoGuide"
  7607. type="0"
  7608. url=""
  7609. size="3.41MB" >
  7610. </productMenu>
  7611. <productMenu id="volume"
  7612. type="16" >
  7613. </productMenu>
  7614. <productMenu id="volume+"
  7615. type="2"
  7616. url="0x6004" >
  7617. </productMenu>
  7618. <productMenu id="battery"
  7619. type="1" >
  7620. </productMenu>
  7621. <productID id="6A1D"
  7622. />
  7623. <productGroupable type="0"
  7624. />
  7625. </product>
  7626. <product id="SPECTER"
  7627. name="SPECTER"
  7628. series="Helmet"
  7629. latestVersion="1.0.9"
  7630. latestVersionVoicePrompt="1.7"
  7631. show = "1" >
  7632. <productMenu id="protocol"
  7633. type="2" >
  7634. </productMenu>
  7635. <productMenu id="ota"
  7636. type="2" >
  7637. <otaLanguages>
  7638. <otaLanguage
  7639. id="0"
  7640. name="English"
  7641. package="0"
  7642. />
  7643. <otaLanguage
  7644. id="0"
  7645. name="French"
  7646. package="1"
  7647. />
  7648. <otaLanguage
  7649. id="0"
  7650. name="Spanish"
  7651. package="2"
  7652. />
  7653. <otaLanguage
  7654. id="0"
  7655. name="Italian"
  7656. package="3"
  7657. />
  7658. <otaLanguage
  7659. id="0"
  7660. name="German"
  7661. package="4"
  7662. />
  7663. <otaLanguage
  7664. id="0"
  7665. name="Dutch"
  7666. package="5"
  7667. />
  7668. <otaLanguage
  7669. id="0"
  7670. name="Russian"
  7671. package="6"
  7672. />
  7673. <otaLanguage
  7674. id="0"
  7675. name="Chinese"
  7676. package="7"
  7677. />
  7678. <otaLanguage
  7679. id="0"
  7680. name="Korean"
  7681. package="8"
  7682. />
  7683. <otaLanguage
  7684. id="0"
  7685. name="Japanese"
  7686. package="9"
  7687. />
  7688. <otaLanguage
  7689. id="0"
  7690. name="Finnish"
  7691. package="10"
  7692. />
  7693. <otaLanguage
  7694. id="0"
  7695. name="Polish"
  7696. package="11"
  7697. />
  7698. </otaLanguages>
  7699. <otaPackages>
  7700. <package
  7701. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7702. size="5183988"
  7703. />
  7704. <package
  7705. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7706. size="5183988"
  7707. />
  7708. <package
  7709. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7710. size="5183988"
  7711. />
  7712. <package
  7713. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7714. size="5183988"
  7715. />
  7716. <package
  7717. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7718. size="5183988"
  7719. />
  7720. <package
  7721. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7722. size="5183988"
  7723. />
  7724. <package
  7725. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7726. size="5183988"
  7727. />
  7728. <package
  7729. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7730. size="5183988"
  7731. />
  7732. <package
  7733. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7734. size="5183988"
  7735. />
  7736. <package
  7737. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7738. size="5183988"
  7739. />
  7740. <package
  7741. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7742. size="5183988"
  7743. />
  7744. <package
  7745. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7746. size="5183988"
  7747. />
  7748. </otaPackages>
  7749. </productMenu>
  7750. <productMenu id="wa"
  7751. type="0" >
  7752. </productMenu>
  7753. <productMenu id="led"
  7754. type="5" >
  7755. </productMenu>
  7756. <productMenu id="led+"
  7757. type="2"
  7758. url="1" >
  7759. </productMenu>
  7760. <productMenu id="meshIntercom+"
  7761. type="3"
  7762. url="2" >
  7763. </productMenu>
  7764. <productMenu id="waveIntercom"
  7765. type="1" >
  7766. </productMenu>
  7767. <productMenu id="fmradio"
  7768. type="0" >
  7769. </productMenu>
  7770. <productMenu id="phone"
  7771. type="1" >
  7772. </productMenu>
  7773. <productMenu id="music"
  7774. type="1" >
  7775. </productMenu>
  7776. <productMenu id="musicSharing"
  7777. type="0" >
  7778. </productMenu>
  7779. <productMenu id="deviceSetting"
  7780. type="1"
  7781. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7782. <productMenuURL version="1.0.10"
  7783. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7784. />
  7785. <productMenuURL version="1.0.4"
  7786. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.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="6A11"
  7820. />
  7821. <productGroupable type="0"
  7822. />
  7823. </product>
  7824. <product id="SPECTER"
  7825. name="SPECTER"
  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/SPECTOR/SPECTER-v1.0.9-build0.img"
  7900. size="5183988"
  7901. />
  7902. <package
  7903. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7904. size="5183988"
  7905. />
  7906. <package
  7907. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7908. size="5183988"
  7909. />
  7910. <package
  7911. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7912. size="5183988"
  7913. />
  7914. <package
  7915. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7916. size="5183988"
  7917. />
  7918. <package
  7919. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7920. size="5183988"
  7921. />
  7922. <package
  7923. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7924. size="5183988"
  7925. />
  7926. <package
  7927. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7928. size="5183988"
  7929. />
  7930. <package
  7931. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7932. size="5183988"
  7933. />
  7934. <package
  7935. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7936. size="5183988"
  7937. />
  7938. <package
  7939. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7940. size="5183988"
  7941. />
  7942. <package
  7943. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-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/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7980. <productMenuURL version="1.0.10"
  7981. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7982. />
  7983. <productMenuURL version="1.0.4"
  7984. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7985. />
  7986. <productMenuURL version="1.0"
  7987. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7988. />
  7989. </productMenu>
  7990. <productMenu id="quickGuide"
  7991. type="0"
  7992. url=""
  7993. size="1.12MB" >
  7994. </productMenu>
  7995. <productMenu id="userGuide"
  7996. type="1"
  7997. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7998. size="2.0MB" >
  7999. </productMenu>
  8000. <productMenu id="videoGuide"
  8001. type="0"
  8002. url=""
  8003. size="3.41MB" >
  8004. </productMenu>
  8005. <productMenu id="connectGuide"
  8006. type="1"
  8007. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  8008. size="1.12MB" >
  8009. </productMenu>
  8010. <productMenu id="volume"
  8011. type="16" >
  8012. </productMenu>
  8013. <productMenu id="volume+"
  8014. type="2"
  8015. url="0x6004" >
  8016. </productMenu>
  8017. <productMenu id="battery"
  8018. type="1" >
  8019. </productMenu>
  8020. <productID id="6A0A"
  8021. />
  8022. <productGroupable type="0"
  8023. />
  8024. </product>
  8025. <product id="OUTLANDER"
  8026. name="OUTLANDER"
  8027. series="Helmet"
  8028. latestVersion="1.0.9"
  8029. latestVersionVoicePrompt="1.7"
  8030. show = "1" >
  8031. <productMenu id="protocol"
  8032. type="2" >
  8033. </productMenu>
  8034. <productMenu id="ota"
  8035. type="2" >
  8036. <otaLanguages>
  8037. <otaLanguage
  8038. id="0"
  8039. name="English"
  8040. package="0"
  8041. />
  8042. <otaLanguage
  8043. id="0"
  8044. name="French"
  8045. package="1"
  8046. />
  8047. <otaLanguage
  8048. id="0"
  8049. name="Spanish"
  8050. package="2"
  8051. />
  8052. <otaLanguage
  8053. id="0"
  8054. name="Italian"
  8055. package="3"
  8056. />
  8057. <otaLanguage
  8058. id="0"
  8059. name="German"
  8060. package="4"
  8061. />
  8062. <otaLanguage
  8063. id="0"
  8064. name="Dutch"
  8065. package="5"
  8066. />
  8067. <otaLanguage
  8068. id="0"
  8069. name="Russian"
  8070. package="6"
  8071. />
  8072. <otaLanguage
  8073. id="0"
  8074. name="Chinese"
  8075. package="7"
  8076. />
  8077. <otaLanguage
  8078. id="0"
  8079. name="Korean"
  8080. package="8"
  8081. />
  8082. <otaLanguage
  8083. id="0"
  8084. name="Japanese"
  8085. package="9"
  8086. />
  8087. <otaLanguage
  8088. id="0"
  8089. name="Finnish"
  8090. package="10"
  8091. />
  8092. <otaLanguage
  8093. id="0"
  8094. name="Polish"
  8095. package="11"
  8096. />
  8097. </otaLanguages>
  8098. <otaPackages>
  8099. <package
  8100. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  8101. size="5183988"
  8102. />
  8103. <package
  8104. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  8105. size="5183988"
  8106. />
  8107. <package
  8108. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  8109. size="5183988"
  8110. />
  8111. <package
  8112. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  8113. size="5183988"
  8114. />
  8115. <package
  8116. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  8117. size="5183988"
  8118. />
  8119. <package
  8120. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  8121. size="5183988"
  8122. />
  8123. <package
  8124. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  8125. size="5183988"
  8126. />
  8127. <package
  8128. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  8129. size="5183988"
  8130. />
  8131. <package
  8132. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  8133. size="5183988"
  8134. />
  8135. <package
  8136. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  8137. size="5183988"
  8138. />
  8139. <package
  8140. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  8141. size="5183988"
  8142. />
  8143. <package
  8144. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  8145. size="5183988"
  8146. />
  8147. </otaPackages>
  8148. </productMenu>
  8149. <productMenu id="wa"
  8150. type="0" >
  8151. </productMenu>
  8152. <productMenu id="led"
  8153. type="5" >
  8154. </productMenu>
  8155. <productMenu id="led+"
  8156. type="2"
  8157. url="1" >
  8158. </productMenu>
  8159. <productMenu id="meshIntercom+"
  8160. type="3"
  8161. url="2" >
  8162. </productMenu>
  8163. <productMenu id="waveIntercom"
  8164. type="1" >
  8165. </productMenu>
  8166. <productMenu id="fmradio"
  8167. type="0" >
  8168. </productMenu>
  8169. <productMenu id="phone"
  8170. type="1" >
  8171. </productMenu>
  8172. <productMenu id="music"
  8173. type="1" >
  8174. </productMenu>
  8175. <productMenu id="musicSharing"
  8176. type="0" >
  8177. </productMenu>
  8178. <productMenu id="deviceSetting"
  8179. type="1"
  8180. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  8181. <productMenuURL version="1.0.10"
  8182. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  8183. />
  8184. <productMenuURL version="1.0.4"
  8185. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  8186. />
  8187. </productMenu>
  8188. <productMenu id="quickGuide"
  8189. type="0"
  8190. url=""
  8191. size="1.12MB" >
  8192. </productMenu>
  8193. <productMenu id="userGuide"
  8194. type="1"
  8195. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  8196. size="2.0MB" >
  8197. </productMenu>
  8198. <productMenu id="connectGuide"
  8199. type="1"
  8200. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  8201. size="1.12MB" >
  8202. </productMenu>
  8203. <productMenu id="videoGuide"
  8204. type="0"
  8205. url=""
  8206. size="3.41MB" >
  8207. </productMenu>
  8208. <productMenu id="volume"
  8209. type="16" >
  8210. </productMenu>
  8211. <productMenu id="volume+"
  8212. type="2"
  8213. url="0x6004" >
  8214. </productMenu>
  8215. <productMenu id="battery"
  8216. type="1" >
  8217. </productMenu>
  8218. <productID id="6A05"
  8219. />
  8220. <productGroupable type="0"
  8221. />
  8222. </product>
  8223. <product id="OUTRUSH2"
  8224. name="OUTRUSH 2"
  8225. series="Helmet"
  8226. latestVersion="1.0.3"
  8227. latestVersionVoicePrompt="1.6"
  8228. show = "1" >
  8229. <productMenu id="protocol"
  8230. type="2" >
  8231. </productMenu>
  8232. <productMenu id="alexa"
  8233. type="0" >
  8234. </productMenu>
  8235. <productMenu id="ota"
  8236. type="2" >
  8237. <otaPackages>
  8238. <package
  8239. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8240. size="2945812"
  8241. />
  8242. </otaPackages>
  8243. </productMenu>
  8244. <productMenu id="meshIntercom+"
  8245. type="3"
  8246. url="2" >
  8247. </productMenu>
  8248. <productMenu id="waveIntercom"
  8249. type="1" >
  8250. </productMenu>
  8251. <productMenu id="phone"
  8252. type="1" >
  8253. </productMenu>
  8254. <productMenu id="music"
  8255. type="1" >
  8256. </productMenu>
  8257. <productMenu id="musicSharing"
  8258. type="0" >
  8259. </productMenu>
  8260. <productMenu id="deviceSetting"
  8261. type="1"
  8262. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8263. <productMenuURL version="1.0"
  8264. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8265. />
  8266. </productMenu>
  8267. <productMenu id="quickGuide"
  8268. type="0"
  8269. url=""
  8270. size="1.12MB" >
  8271. </productMenu>
  8272. <productMenu id="userGuide"
  8273. type="1"
  8274. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8275. size="2.0MB" >
  8276. </productMenu>
  8277. <productMenu id="connectGuide"
  8278. type="1"
  8279. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8280. size="1.12MB" >
  8281. </productMenu>
  8282. <productMenu id="volume"
  8283. type="12" >
  8284. </productMenu>
  8285. <productMenu id="battery"
  8286. type="1" >
  8287. </productMenu>
  8288. <productID id="684A"
  8289. />
  8290. <productGroupable type="0"
  8291. />
  8292. </product>
  8293. <product id="OUTSTAR2"
  8294. name="OUTSTAR 2"
  8295. series="Helmet"
  8296. latestVersion="1.0.2"
  8297. latestVersionVoicePrompt="1.6"
  8298. show = "1" >
  8299. <productMenu id="protocol"
  8300. type="2" >
  8301. </productMenu>
  8302. <productMenu id="alexa"
  8303. type="0" >
  8304. </productMenu>
  8305. <productMenu id="ota"
  8306. type="2" >
  8307. <otaPackages>
  8308. <package
  8309. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8310. size="2945812"
  8311. />
  8312. </otaPackages>
  8313. </productMenu>
  8314. <productMenu id="meshIntercom+"
  8315. type="3"
  8316. url="2" >
  8317. </productMenu>
  8318. <productMenu id="waveIntercom"
  8319. type="1" >
  8320. </productMenu>
  8321. <productMenu id="phone"
  8322. type="1" >
  8323. </productMenu>
  8324. <productMenu id="music"
  8325. type="1" >
  8326. </productMenu>
  8327. <productMenu id="musicSharing"
  8328. type="0" >
  8329. </productMenu>
  8330. <productMenu id="deviceSetting"
  8331. type="1"
  8332. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8333. </productMenu>
  8334. <productMenu id="quickGuide"
  8335. type="0"
  8336. url=""
  8337. size="1.12MB" >
  8338. </productMenu>
  8339. <productMenu id="userGuide"
  8340. type="1"
  8341. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8342. size="2.0MB" >
  8343. </productMenu>
  8344. <productMenu id="connectGuide"
  8345. type="1"
  8346. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8347. size="1.12MB" >
  8348. </productMenu>
  8349. <productMenu id="volume"
  8350. type="12" >
  8351. </productMenu>
  8352. <productMenu id="battery"
  8353. type="1" >
  8354. </productMenu>
  8355. <productID id="684B"
  8356. />
  8357. <productGroupable type="0"
  8358. />
  8359. </product>
  8360. <product id="SURGE"
  8361. name="SURGE"
  8362. series="Helmet"
  8363. latestVersion="1.2"
  8364. latestVersionVoicePrompt="1.3"
  8365. show = "1" >
  8366. <productMenu id="protocol"
  8367. type="2" >
  8368. </productMenu>
  8369. <productMenu id="alexa"
  8370. type="0" >
  8371. </productMenu>
  8372. <productMenu id="ota"
  8373. type="2" >
  8374. <otaPackages>
  8375. <package
  8376. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8377. size="2945812"
  8378. />
  8379. </otaPackages>
  8380. </productMenu>
  8381. <productMenu id="meshIntercom"
  8382. type="30" >
  8383. </productMenu>
  8384. <productMenu id="meshIntercom+"
  8385. type="3"
  8386. url="2" >
  8387. <productMenuType version="1.0.1"
  8388. type="2"
  8389. />
  8390. </productMenu>
  8391. <productMenu id="waveIntercom"
  8392. type="1" >
  8393. <productMenuType version="1.0.9"
  8394. type="0"
  8395. />
  8396. </productMenu>
  8397. <productMenu id="phone"
  8398. type="1" >
  8399. </productMenu>
  8400. <productMenu id="music"
  8401. type="1" >
  8402. </productMenu>
  8403. <productMenu id="musicSharing"
  8404. type="0" >
  8405. </productMenu>
  8406. <productMenu id="deviceSetting"
  8407. type="1"
  8408. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8409. <productMenuURL version="1.1.9"
  8410. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8411. />
  8412. <productMenuURL version="1.0.1"
  8413. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8414. />
  8415. </productMenu>
  8416. <productMenu id="quickGuide"
  8417. type="0"
  8418. url=""
  8419. size="1.12MB" >
  8420. </productMenu>
  8421. <productMenu id="userGuide"
  8422. type="1"
  8423. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8424. size="2.0MB" >
  8425. </productMenu>
  8426. <productMenu id="volume"
  8427. type="12" >
  8428. </productMenu>
  8429. <productMenu id="battery"
  8430. type="1" >
  8431. </productMenu>
  8432. <productID id="6840"
  8433. />
  8434. <productGroupable type="0"
  8435. />
  8436. </product>
  8437. <product id="Cavalry2"
  8438. name="Cavalry 2"
  8439. series="Helmet"
  8440. latestVersion="1.2"
  8441. latestVersionVoicePrompt="1.3"
  8442. show = "1" >
  8443. <productMenu id="protocol"
  8444. type="2" >
  8445. </productMenu>
  8446. <productMenu id="alexa"
  8447. type="0" >
  8448. </productMenu>
  8449. <productMenu id="ota"
  8450. type="2" >
  8451. <otaPackages>
  8452. <package
  8453. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8454. size="3144148"
  8455. />
  8456. </otaPackages>
  8457. </productMenu>
  8458. <productMenu id="wa"
  8459. type="0" >
  8460. </productMenu>
  8461. <productMenu id="meshIntercom"
  8462. type="30" >
  8463. </productMenu>
  8464. <productMenu id="meshIntercom+"
  8465. type="3"
  8466. url="2" >
  8467. <productMenuType version="1.0"
  8468. type="2"
  8469. />
  8470. </productMenu>
  8471. <productMenu id="waveIntercom"
  8472. type="1" >
  8473. <productMenuType version="1.0.9"
  8474. type="0"
  8475. />
  8476. </productMenu>
  8477. <productMenu id="phone"
  8478. type="1" >
  8479. </productMenu>
  8480. <productMenu id="music"
  8481. type="1" >
  8482. </productMenu>
  8483. <productMenu id="musicSharing"
  8484. type="0" >
  8485. </productMenu>
  8486. <productMenu id="deviceSetting"
  8487. type="1"
  8488. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8489. <productMenuURL version="1.1.9"
  8490. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8491. />
  8492. <productMenuURL version="1.0"
  8493. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8494. />
  8495. </productMenu>
  8496. <productMenu id="quickGuide"
  8497. type="0"
  8498. url=""
  8499. size="1.12MB" >
  8500. </productMenu>
  8501. <productMenu id="userGuide"
  8502. type="1"
  8503. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8504. size="2.0MB" >
  8505. </productMenu>
  8506. <productMenu id="connectGuide"
  8507. type="1"
  8508. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8509. size="1.12MB" >
  8510. </productMenu>
  8511. <productMenu id="volume"
  8512. type="12" >
  8513. </productMenu>
  8514. <productMenu id="battery"
  8515. type="1" >
  8516. </productMenu>
  8517. <productID id="6839"
  8518. />
  8519. <productGroupable type="0"
  8520. />
  8521. </product>
  8522. <product id="Cavalry"
  8523. name="Cavalry"
  8524. series="Helmet"
  8525. latestVersion="1.2.2"
  8526. show = "1" >
  8527. <productMenu id="protocol"
  8528. type="0">
  8529. </productMenu>
  8530. <productMenu id="sip"
  8531. type="1" >
  8532. </productMenu>
  8533. <productMenu id="bluetoothIntercom"
  8534. type="1" >
  8535. </productMenu>
  8536. <productMenu id="phone"
  8537. type="2" >
  8538. </productMenu>
  8539. <productMenu id="fmradio"
  8540. type="3" >
  8541. </productMenu>
  8542. <productMenu id="deviceSetting"
  8543. type="1"
  8544. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8545. <productMenuURL version="1.9"
  8546. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8547. />
  8548. <productMenuURL version="1.0.1"
  8549. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8550. />
  8551. </productMenu>
  8552. <productMenu id="quickGuide"
  8553. type="1"
  8554. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8555. size="795KB" >
  8556. </productMenu>
  8557. <productMenu id="userGuide"
  8558. type="1"
  8559. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8560. size="1.87MB" >
  8561. </productMenu>
  8562. <productMenu id="connectGuide"
  8563. type="1"
  8564. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8565. size="1.12MB" >
  8566. </productMenu>
  8567. <productID id="5524"
  8568. />
  8569. <productGroupable type="0"
  8570. />
  8571. </product>
  8572. <product id="Cavalry_Lite"
  8573. name="Cavalry Lite"
  8574. series="Helmet"
  8575. latestVersion="1.0.2"
  8576. show = "1" >
  8577. <productMenu id="protocol"
  8578. type="0">
  8579. </productMenu>
  8580. <productMenu id="sip"
  8581. type="1" >
  8582. </productMenu>
  8583. <productMenu id="bluetoothIntercom"
  8584. type="1" >
  8585. </productMenu>
  8586. <productMenu id="phone"
  8587. type="2" >
  8588. </productMenu>
  8589. <productMenu id="fmradio"
  8590. type="3" >
  8591. </productMenu>
  8592. <productMenu id="deviceSetting"
  8593. type="1"
  8594. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8595. </productMenu>
  8596. <productMenu id="userGuide"
  8597. type="1"
  8598. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8599. size="1.74MB" >
  8600. </productMenu>
  8601. <productMenu id="connectGuide"
  8602. type="1"
  8603. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8604. size="1.12MB" >
  8605. </productMenu>
  8606. <productID id="5536"
  8607. />
  8608. <productGroupable type="0"
  8609. />
  8610. </product>
  8611. <product id="VORTEX"
  8612. name="VORTEX"
  8613. series="VORTEX"
  8614. latestVersion="1.0.2"
  8615. latestVersionVoicePrompt="1.0"
  8616. show = "1" >
  8617. <productMenu id="protocol"
  8618. type="2" >
  8619. </productMenu>
  8620. <productMenu id="warranty"
  8621. type="1" >
  8622. </productMenu>
  8623. <productMenu id="serialNumber"
  8624. type="1" >
  8625. </productMenu>
  8626. <productMenu id="ota"
  8627. type="2" >
  8628. <otaLanguages>
  8629. <otaLanguage
  8630. id="0"
  8631. name="English"
  8632. package="0"
  8633. />
  8634. <otaLanguage
  8635. id="0"
  8636. name="French"
  8637. package="1"
  8638. />
  8639. <otaLanguage
  8640. id="0"
  8641. name="Spanish"
  8642. package="2"
  8643. />
  8644. <otaLanguage
  8645. id="0"
  8646. name="Italian"
  8647. package="3"
  8648. />
  8649. <otaLanguage
  8650. id="0"
  8651. name="German"
  8652. package="4"
  8653. />
  8654. <otaLanguage
  8655. id="0"
  8656. name="Dutch"
  8657. package="5"
  8658. />
  8659. <otaLanguage
  8660. id="0"
  8661. name="Russian"
  8662. package="6"
  8663. />
  8664. <otaLanguage
  8665. id="0"
  8666. name="Chinese"
  8667. package="7"
  8668. />
  8669. <otaLanguage
  8670. id="0"
  8671. name="Korean"
  8672. package="8"
  8673. />
  8674. <otaLanguage
  8675. id="0"
  8676. name="Japanese"
  8677. package="9"
  8678. />
  8679. <otaLanguage
  8680. id="0"
  8681. name="Finnish"
  8682. package="10"
  8683. />
  8684. <otaLanguage
  8685. id="0"
  8686. name="Polish"
  8687. package="11"
  8688. />
  8689. </otaLanguages>
  8690. <otaPackages>
  8691. <package
  8692. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8693. size="5183988"
  8694. />
  8695. <package
  8696. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8697. size="5183988"
  8698. />
  8699. <package
  8700. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8701. size="5183988"
  8702. />
  8703. <package
  8704. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8705. size="5183988"
  8706. />
  8707. <package
  8708. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8709. size="5183988"
  8710. />
  8711. <package
  8712. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8713. size="5183988"
  8714. />
  8715. <package
  8716. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8717. size="5183988"
  8718. />
  8719. <package
  8720. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8721. size="5183988"
  8722. />
  8723. <package
  8724. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8725. size="5183988"
  8726. />
  8727. <package
  8728. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8729. size="5183988"
  8730. />
  8731. <package
  8732. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8733. size="5183988"
  8734. />
  8735. <package
  8736. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8737. size="5183988"
  8738. />
  8739. </otaPackages>
  8740. </productMenu>
  8741. <productMenu id="sip"
  8742. type="1" >
  8743. </productMenu>
  8744. <productMenu id="bluetoothIntercom"
  8745. type="1" >
  8746. </productMenu>
  8747. <productMenu id="phone"
  8748. type="1" >
  8749. </productMenu>
  8750. <productMenu id="music"
  8751. type="1" >
  8752. </productMenu>
  8753. <productMenu id="fmradio"
  8754. type="1"
  8755. url="1" >
  8756. </productMenu>
  8757. <productMenu id="deviceSetting"
  8758. type="1"
  8759. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8760. </productMenu>
  8761. <productMenu id="quickGuide"
  8762. type="0"
  8763. url=""
  8764. size="934KB" >
  8765. </productMenu>
  8766. <productMenu id="userGuide"
  8767. type="1"
  8768. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  8769. size="1.14MB" >
  8770. </productMenu>
  8771. <productMenu id="connectGuide"
  8772. type="1"
  8773. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  8774. size="1.12MB" >
  8775. </productMenu>
  8776. <productMenu id="volume"
  8777. type="15" >
  8778. </productMenu>
  8779. <productMenu id="volume+"
  8780. type="2"
  8781. url="0x0018" >
  8782. </productMenu>
  8783. <productMenu id="appearance"
  8784. type="1"
  8785. url="1|white,silver,black" >
  8786. </productMenu>
  8787. <productID id="3451"
  8788. />
  8789. <productGroupable type="0"
  8790. />
  8791. </product>
  8792. <product id="SF4"
  8793. name="SF4"
  8794. series="SF"
  8795. latestVersion="1.1.5"
  8796. show = "-1" >
  8797. <productMenu id="protocol"
  8798. type="1"
  8799. url="3">
  8800. </productMenu>
  8801. <productMenu id="sip"
  8802. type="1" >
  8803. </productMenu>
  8804. <productMenu id="bluetoothIntercom"
  8805. type="1" >
  8806. </productMenu>
  8807. <productMenu id="phone"
  8808. type="1" >
  8809. </productMenu>
  8810. <productMenu id="music"
  8811. type="1" >
  8812. </productMenu>
  8813. <productMenu id="fmradio"
  8814. type="1" >
  8815. </productMenu>
  8816. <productMenu id="deviceSetting"
  8817. type="1"
  8818. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8819. <productMenuURL version="1.0.1"
  8820. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8821. />
  8822. </productMenu>
  8823. <productMenu id="quickGuide"
  8824. type="1"
  8825. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8826. size="607KB" >
  8827. </productMenu>
  8828. <productMenu id="userGuide"
  8829. type="1"
  8830. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8831. size="1.91MB" >
  8832. </productMenu>
  8833. <productMenu id="volume"
  8834. type="4" >
  8835. </productMenu>
  8836. <productID id="5414"
  8837. />
  8838. <productGroupable type="0"
  8839. />
  8840. </product>
  8841. <product id="SF4"
  8842. name="SF4"
  8843. series="SF"
  8844. latestVersion="3.4.4"
  8845. show = "1" >
  8846. <productMenu id="protocol"
  8847. type="2" >
  8848. </productMenu>
  8849. <productMenu id="sip"
  8850. type="1" >
  8851. </productMenu>
  8852. <productMenu id="bluetoothIntercom"
  8853. type="1" >
  8854. </productMenu>
  8855. <productMenu id="phone"
  8856. type="1" >
  8857. </productMenu>
  8858. <productMenu id="music"
  8859. type="1" >
  8860. </productMenu>
  8861. <productMenu id="fmradio"
  8862. type="1" >
  8863. </productMenu>
  8864. <productMenu id="deviceSetting"
  8865. type="1"
  8866. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8867. <productMenuURL version="3.0"
  8868. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8869. />
  8870. </productMenu>
  8871. <productMenu id="quickGuide"
  8872. type="0"
  8873. url=""
  8874. size="934KB" >
  8875. </productMenu>
  8876. <productMenu id="userGuide"
  8877. type="1"
  8878. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8879. size="1.14MB" >
  8880. </productMenu>
  8881. <productMenu id="connectGuide"
  8882. type="1"
  8883. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8884. size="1.12MB" >
  8885. </productMenu>
  8886. <productMenu id="volume"
  8887. type="15" >
  8888. </productMenu>
  8889. <productID id="3370"
  8890. />
  8891. <productGroupable type="0"
  8892. />
  8893. </product>
  8894. <product id="SF2"
  8895. name="SF2"
  8896. series="SF"
  8897. latestVersion="1.2.1"
  8898. show = "-1" >
  8899. <productMenu id="protocol"
  8900. type="1"
  8901. url="2">
  8902. </productMenu>
  8903. <productMenu id="sip"
  8904. type="1" >
  8905. </productMenu>
  8906. <productMenu id="bluetoothIntercom"
  8907. type="1" >
  8908. </productMenu>
  8909. <productMenu id="phone"
  8910. type="1" >
  8911. </productMenu>
  8912. <productMenu id="music"
  8913. type="1" >
  8914. </productMenu>
  8915. <productMenu id="fmradio"
  8916. type="1" >
  8917. </productMenu>
  8918. <productMenu id="deviceSetting"
  8919. type="1"
  8920. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8921. <productMenuURL version="1.0.1"
  8922. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8923. />
  8924. </productMenu>
  8925. <productMenu id="quickGuide"
  8926. type="1"
  8927. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8928. size="607KB" >
  8929. </productMenu>
  8930. <productMenu id="userGuide"
  8931. type="1"
  8932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8933. size="1.91MB" >
  8934. </productMenu>
  8935. <productMenu id="volume"
  8936. type="4" >
  8937. </productMenu>
  8938. <productID id="5412"
  8939. />
  8940. <productGroupable type="0"
  8941. />
  8942. </product>
  8943. <product id="SF2"
  8944. name="SF2"
  8945. series="SF"
  8946. latestVersion="3.3.4"
  8947. show = "1" >
  8948. <productMenu id="protocol"
  8949. type="2" >
  8950. </productMenu>
  8951. <productMenu id="sip"
  8952. type="1" >
  8953. </productMenu>
  8954. <productMenu id="bluetoothIntercom"
  8955. type="1" >
  8956. </productMenu>
  8957. <productMenu id="phone"
  8958. type="1" >
  8959. </productMenu>
  8960. <productMenu id="music"
  8961. type="1" >
  8962. </productMenu>
  8963. <productMenu id="fmradio"
  8964. type="0" >
  8965. </productMenu>
  8966. <productMenu id="deviceSetting"
  8967. type="1"
  8968. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8969. <productMenuURL version="3.0"
  8970. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8971. />
  8972. </productMenu>
  8973. <productMenu id="quickGuide"
  8974. type="0"
  8975. url=""
  8976. size="934KB" >
  8977. </productMenu>
  8978. <productMenu id="userGuide"
  8979. type="1"
  8980. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8981. size="1.14MB" >
  8982. </productMenu>
  8983. <productMenu id="connectGuide"
  8984. type="1"
  8985. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8986. size="1.12MB" >
  8987. </productMenu>
  8988. <productMenu id="volume"
  8989. type="15" >
  8990. </productMenu>
  8991. <productID id="3360"
  8992. />
  8993. <productGroupable type="0"
  8994. />
  8995. </product>
  8996. <product id="SF1"
  8997. name="SF1"
  8998. series="SF"
  8999. latestVersion="2.0.5"
  9000. show = "-1" >
  9001. <productMenu id="protocol"
  9002. type="1"
  9003. url="1">
  9004. </productMenu>
  9005. <productMenu id="sip"
  9006. type="1" >
  9007. </productMenu>
  9008. <productMenu id="bluetoothIntercom"
  9009. type="1" >
  9010. <productMenuType version="1.1"
  9011. type="0"
  9012. />
  9013. </productMenu>
  9014. <productMenu id="phone"
  9015. type="1" >
  9016. </productMenu>
  9017. <productMenu id="music"
  9018. type="1" >
  9019. </productMenu>
  9020. <productMenu id="deviceSetting"
  9021. type="1"
  9022. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  9023. <productMenuURL version="1.1"
  9024. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  9025. />
  9026. <productMenuURL version="1.0"
  9027. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  9028. />
  9029. </productMenu>
  9030. <productMenu id="quickGuide"
  9031. type="1"
  9032. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  9033. size="401KB" >
  9034. </productMenu>
  9035. <productMenu id="userGuide"
  9036. type="1"
  9037. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  9038. size="1.91MB" >
  9039. </productMenu>
  9040. <productMenu id="volume"
  9041. type="3" >
  9042. </productMenu>
  9043. <productID id="5410"
  9044. />
  9045. <productGroupable type="0"
  9046. />
  9047. </product>
  9048. <product id="SF1"
  9049. name="SF1"
  9050. series="SF"
  9051. latestVersion="3.3.4"
  9052. show = "1" >
  9053. <productMenu id="protocol"
  9054. type="2" >
  9055. </productMenu>
  9056. <productMenu id="sip"
  9057. type="1" >
  9058. </productMenu>
  9059. <productMenu id="bluetoothIntercom"
  9060. type="1" >
  9061. </productMenu>
  9062. <productMenu id="phone"
  9063. type="1" >
  9064. </productMenu>
  9065. <productMenu id="music"
  9066. type="1" >
  9067. </productMenu>
  9068. <productMenu id="fmradio"
  9069. type="0" >
  9070. </productMenu>
  9071. <productMenu id="deviceSetting"
  9072. type="1"
  9073. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  9074. <productMenuURL version="3.0"
  9075. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  9076. />
  9077. </productMenu>
  9078. <productMenu id="quickGuide"
  9079. type="0"
  9080. url=""
  9081. size="934KB" >
  9082. </productMenu>
  9083. <productMenu id="userGuide"
  9084. type="1"
  9085. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  9086. size="1.14MB" >
  9087. </productMenu>
  9088. <productMenu id="connectGuide"
  9089. type="1"
  9090. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  9091. size="1.12MB" >
  9092. </productMenu>
  9093. <productMenu id="volume"
  9094. type="15" >
  9095. </productMenu>
  9096. <productID id="3350"
  9097. />
  9098. <productGroupable type="0"
  9099. />
  9100. </product>
  9101. <product id="SFR"
  9102. name="SFR"
  9103. series="SF"
  9104. latestVersion="1.1.1"
  9105. show = "1" >
  9106. <productMenu id="protocol"
  9107. type="1"
  9108. url="3">
  9109. </productMenu>
  9110. <productMenu id="sip"
  9111. type="1" >
  9112. </productMenu>
  9113. <productMenu id="bluetoothIntercom"
  9114. type="1" >
  9115. </productMenu>
  9116. <productMenu id="phone"
  9117. type="1" >
  9118. </productMenu>
  9119. <productMenu id="music"
  9120. type="1" >
  9121. </productMenu>
  9122. <productMenu id="fmradio"
  9123. type="1" >
  9124. </productMenu>
  9125. <productMenu id="deviceSetting"
  9126. type="1"
  9127. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9128. </productMenu>
  9129. <productMenu id="quickGuide"
  9130. type="1"
  9131. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  9132. size="607KB" >
  9133. </productMenu>
  9134. <productMenu id="userGuide"
  9135. type="1"
  9136. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  9137. size="1.91MB" >
  9138. </productMenu>
  9139. <productMenu id="volume"
  9140. type="4" >
  9141. </productMenu>
  9142. <productID id="5418"
  9143. />
  9144. <productGroupable type="0"
  9145. />
  9146. </product>
  9147. <product id="20S"
  9148. name="20S"
  9149. series="20"
  9150. latestVersion="2.2.3"
  9151. show = "1" >
  9152. <productMenu id="protocol"
  9153. type="0">
  9154. </productMenu>
  9155. <productMenu id="wa"
  9156. type="5" >
  9157. </productMenu>
  9158. <productMenu id="sip"
  9159. type="1" >
  9160. <productMenuType version="1.0"
  9161. type="0"
  9162. />
  9163. </productMenu>
  9164. <productMenu id="bluetoothIntercom"
  9165. type="1" >
  9166. <productMenuType version="1.0"
  9167. type="0"
  9168. />
  9169. </productMenu>
  9170. <productMenu id="intercomSetting"
  9171. type="1" >
  9172. </productMenu>
  9173. <productMenu id="phone"
  9174. type="2" >
  9175. </productMenu>
  9176. <productMenu id="fmradio"
  9177. type="3" >
  9178. </productMenu>
  9179. <productMenu id="deviceSetting"
  9180. type="1"
  9181. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9182. <productMenuURL version="2.0.2"
  9183. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9184. />
  9185. <productMenuURL version="1.5"
  9186. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9187. />
  9188. <productMenuURL version="1.4.1"
  9189. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9190. />
  9191. <productMenuURL version="1.1"
  9192. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9193. />
  9194. <productMenuURL version="1.0"
  9195. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9196. />
  9197. </productMenu>
  9198. <productMenu id="quickGuide"
  9199. type="0"
  9200. url=""
  9201. size="264KB" >
  9202. </productMenu>
  9203. <productMenu id="userGuide"
  9204. type="1"
  9205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9206. size="3.09MB" >
  9207. </productMenu>
  9208. <productMenu id="connectGuide"
  9209. type="1"
  9210. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9211. size="1.12MB" >
  9212. </productMenu>
  9213. <productID id="4210"
  9214. />
  9215. <productGroupable type="1"
  9216. />
  9217. </product>
  9218. <product id="20S_EVO"
  9219. name="20S EVO"
  9220. series="20"
  9221. latestVersion="2.2.3"
  9222. show = "1" >
  9223. <productMenu id="protocol"
  9224. type="0">
  9225. </productMenu>
  9226. <productMenu id="wa"
  9227. type="5" >
  9228. </productMenu>
  9229. <productMenu id="sip"
  9230. type="1" >
  9231. <productMenuType version="1.0"
  9232. type="0"
  9233. />
  9234. </productMenu>
  9235. <productMenu id="bluetoothIntercom"
  9236. type="1" >
  9237. <productMenuType version="1.0"
  9238. type="0"
  9239. />
  9240. </productMenu>
  9241. <productMenu id="intercomSetting"
  9242. type="1" >
  9243. </productMenu>
  9244. <productMenu id="phone"
  9245. type="2" >
  9246. </productMenu>
  9247. <productMenu id="fmradio"
  9248. type="3" >
  9249. </productMenu>
  9250. <productMenu id="deviceSetting"
  9251. type="1"
  9252. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9253. <productMenuURL version="2.0.2"
  9254. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9255. />
  9256. <productMenuURL version="1.5"
  9257. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9258. />
  9259. <productMenuURL version="1.4.1"
  9260. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9261. />
  9262. <productMenuURL version="1.1"
  9263. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9264. />
  9265. <productMenuURL version="1.0"
  9266. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9267. />
  9268. </productMenu>
  9269. <productMenu id="quickGuide"
  9270. type="0"
  9271. url=""
  9272. size="264KB" >
  9273. </productMenu>
  9274. <productMenu id="userGuide"
  9275. type="1"
  9276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9277. size="3.09MB" >
  9278. </productMenu>
  9279. <productMenu id="connectGuide"
  9280. type="1"
  9281. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9282. size="1.12MB" >
  9283. </productMenu>
  9284. <productID id="4210"
  9285. />
  9286. <productProductKey key="16"
  9287. />
  9288. <productGroupable type="1"
  9289. />
  9290. </product>
  9291. <product id="10S"
  9292. name="10S"
  9293. series="10"
  9294. latestVersion="3.0.2"
  9295. show = "1" >
  9296. <productMenu id="protocol"
  9297. type="3" >
  9298. </productMenu>
  9299. <productMenu id="sip"
  9300. type="1" >
  9301. </productMenu>
  9302. <productMenu id="bluetoothIntercom"
  9303. type="1" >
  9304. </productMenu>
  9305. <productMenu id="phone"
  9306. type="1" >
  9307. </productMenu>
  9308. <productMenu id="deviceSetting"
  9309. type="1"
  9310. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9311. </productMenu>
  9312. <productMenu id="quickGuide"
  9313. type="1"
  9314. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9315. size="934KB" >
  9316. </productMenu>
  9317. <productMenu id="userGuide"
  9318. type="1"
  9319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9320. size="1.14MB" >
  9321. </productMenu>
  9322. <productMenu id="connectGuide"
  9323. type="1"
  9324. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9325. size="1.12MB" >
  9326. </productMenu>
  9327. <productID id="3380"
  9328. />
  9329. <productGroupable type="0"
  9330. />
  9331. </product>
  9332. <product id="10S"
  9333. name="10S"
  9334. series="10"
  9335. latestVersion="2.1.1"
  9336. show = "-1" >
  9337. <productMenu id="protocol"
  9338. type="0">
  9339. </productMenu>
  9340. <productMenu id="sip"
  9341. type="1" >
  9342. </productMenu>
  9343. <productMenu id="bluetoothIntercom"
  9344. type="1" >
  9345. </productMenu>
  9346. <productMenu id="phone"
  9347. type="2" >
  9348. </productMenu>
  9349. <productMenu id="fmradio"
  9350. type="3" >
  9351. </productMenu>
  9352. <productMenu id="deviceSetting"
  9353. type="1"
  9354. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9355. <productMenuURL version="1.5"
  9356. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9357. />
  9358. <productMenuURL version="1.3.1"
  9359. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9360. />
  9361. </productMenu>
  9362. <productMenu id="quickGuide"
  9363. type="1"
  9364. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9365. size="310KB" >
  9366. </productMenu>
  9367. <productMenu id="userGuide"
  9368. type="1"
  9369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9370. size="1.57MB" >
  9371. </productMenu>
  9372. <productID id="5530"
  9373. />
  9374. <productGroupable type="0"
  9375. />
  9376. </product>
  9377. <product id="Apex"
  9378. name="Apex"
  9379. series="APEX"
  9380. latestVersion="1.0.1"
  9381. latestVersionVoicePrompt="0.2"
  9382. show = "1" >
  9383. <productMenu id="protocol"
  9384. type="2" >
  9385. </productMenu>
  9386. <productMenu id="warranty"
  9387. type="1" >
  9388. </productMenu>
  9389. <productMenu id="serialNumber"
  9390. type="1" >
  9391. </productMenu>
  9392. <productMenu id="ota"
  9393. type="2" >
  9394. <otaLanguages>
  9395. <otaLanguage
  9396. id="0"
  9397. name="English"
  9398. package="0"
  9399. />
  9400. <otaLanguage
  9401. id="0"
  9402. name="French"
  9403. package="1"
  9404. />
  9405. <otaLanguage
  9406. id="0"
  9407. name="Spanish"
  9408. package="2"
  9409. />
  9410. <otaLanguage
  9411. id="0"
  9412. name="Italian"
  9413. package="3"
  9414. />
  9415. <otaLanguage
  9416. id="0"
  9417. name="German"
  9418. package="4"
  9419. />
  9420. <otaLanguage
  9421. id="0"
  9422. name="Dutch"
  9423. package="5"
  9424. />
  9425. <otaLanguage
  9426. id="0"
  9427. name="Russian"
  9428. package="6"
  9429. />
  9430. <otaLanguage
  9431. id="0"
  9432. name="Chinese"
  9433. package="7"
  9434. />
  9435. <otaLanguage
  9436. id="0"
  9437. name="Korean"
  9438. package="8"
  9439. />
  9440. <otaLanguage
  9441. id="0"
  9442. name="Japanese"
  9443. package="9"
  9444. />
  9445. <otaLanguage
  9446. id="0"
  9447. name="Finnish"
  9448. package="10"
  9449. />
  9450. <otaLanguage
  9451. id="0"
  9452. name="Polish"
  9453. package="11"
  9454. />
  9455. </otaLanguages>
  9456. <otaPackages>
  9457. <package
  9458. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3.img"
  9459. size="5183988"
  9460. />
  9461. <package
  9462. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fr-FR.img"
  9463. size="5183988"
  9464. />
  9465. <package
  9466. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-es-ES.img"
  9467. size="5183988"
  9468. />
  9469. <package
  9470. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-it-IT.img"
  9471. size="5183988"
  9472. />
  9473. <package
  9474. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-de-DE.img"
  9475. size="5183988"
  9476. />
  9477. <package
  9478. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-nl-NL.img"
  9479. size="5183988"
  9480. />
  9481. <package
  9482. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ru-RU.img"
  9483. size="5183988"
  9484. />
  9485. <package
  9486. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-cmn-CN.img"
  9487. size="5183988"
  9488. />
  9489. <package
  9490. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ko-KR.img"
  9491. size="5183988"
  9492. />
  9493. <package
  9494. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-ja-JP.img"
  9495. size="5183988"
  9496. />
  9497. <package
  9498. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-fi-FI.img"
  9499. size="5183988"
  9500. />
  9501. <package
  9502. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0.1-build3-pl-PL.img"
  9503. size="5183988"
  9504. />
  9505. </otaPackages>
  9506. </productMenu>
  9507. <productMenu id="sip"
  9508. type="1" >
  9509. </productMenu>
  9510. <productMenu id="bluetoothIntercom"
  9511. type="1" >
  9512. </productMenu>
  9513. <productMenu id="phone"
  9514. type="1" >
  9515. </productMenu>
  9516. <productMenu id="music"
  9517. type="1" >
  9518. </productMenu>
  9519. <productMenu id="fmradio"
  9520. type="1"
  9521. url="1" >
  9522. </productMenu>
  9523. <productMenu id="deviceSetting"
  9524. type="1"
  9525. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9526. <productMenuURL version="1.0"
  9527. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9528. />
  9529. </productMenu>
  9530. <productMenu id="quickGuide"
  9531. type="0"
  9532. url=""
  9533. size="934KB" >
  9534. </productMenu>
  9535. <productMenu id="userGuide"
  9536. type="1"
  9537. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9538. size="1.14MB" >
  9539. </productMenu>
  9540. <productMenu id="connectGuide"
  9541. type="1"
  9542. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  9543. size="1.12MB" >
  9544. </productMenu>
  9545. <productMenu id="volume+"
  9546. type="2"
  9547. url="0x0004" >
  9548. </productMenu>
  9549. <productMenu id="appearance"
  9550. type="1"
  9551. url="1|white,silver,black" >
  9552. </productMenu>
  9553. <productMenu id="battery"
  9554. type="1" >
  9555. </productMenu>
  9556. <productID id="3452"
  9557. />
  9558. <productGroupable type="0"
  9559. />
  9560. </product>
  9561. <product id="ApexPlus"
  9562. name="Apex Plus"
  9563. series="APEX"
  9564. latestVersion="1.0.1"
  9565. latestVersionVoicePrompt="0.2"
  9566. show = "1" >
  9567. <productMenu id="protocol"
  9568. type="2" >
  9569. </productMenu>
  9570. <productMenu id="warranty"
  9571. type="1" >
  9572. </productMenu>
  9573. <productMenu id="serialNumber"
  9574. type="1" >
  9575. </productMenu>
  9576. <productMenu id="ota"
  9577. type="2" >
  9578. <otaLanguages>
  9579. <otaLanguage
  9580. id="0"
  9581. name="English"
  9582. package="0"
  9583. />
  9584. <otaLanguage
  9585. id="0"
  9586. name="French"
  9587. package="1"
  9588. />
  9589. <otaLanguage
  9590. id="0"
  9591. name="Spanish"
  9592. package="2"
  9593. />
  9594. <otaLanguage
  9595. id="0"
  9596. name="Italian"
  9597. package="3"
  9598. />
  9599. <otaLanguage
  9600. id="0"
  9601. name="German"
  9602. package="4"
  9603. />
  9604. <otaLanguage
  9605. id="0"
  9606. name="Dutch"
  9607. package="5"
  9608. />
  9609. <otaLanguage
  9610. id="0"
  9611. name="Russian"
  9612. package="6"
  9613. />
  9614. <otaLanguage
  9615. id="0"
  9616. name="Chinese"
  9617. package="7"
  9618. />
  9619. <otaLanguage
  9620. id="0"
  9621. name="Korean"
  9622. package="8"
  9623. />
  9624. <otaLanguage
  9625. id="0"
  9626. name="Japanese"
  9627. package="9"
  9628. />
  9629. <otaLanguage
  9630. id="0"
  9631. name="Finnish"
  9632. package="10"
  9633. />
  9634. <otaLanguage
  9635. id="0"
  9636. name="Polish"
  9637. package="11"
  9638. />
  9639. </otaLanguages>
  9640. <otaPackages>
  9641. <package
  9642. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3.img"
  9643. size="5183988"
  9644. />
  9645. <package
  9646. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fr-FR.img"
  9647. size="5183988"
  9648. />
  9649. <package
  9650. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-es-ES.img"
  9651. size="5183988"
  9652. />
  9653. <package
  9654. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-it-IT.img"
  9655. size="5183988"
  9656. />
  9657. <package
  9658. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-de-DE.img"
  9659. size="5183988"
  9660. />
  9661. <package
  9662. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-nl-NL.img"
  9663. size="5183988"
  9664. />
  9665. <package
  9666. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ru-RU.img"
  9667. size="5183988"
  9668. />
  9669. <package
  9670. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-cmn-CN.img"
  9671. size="5183988"
  9672. />
  9673. <package
  9674. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ko-KR.img"
  9675. size="5183988"
  9676. />
  9677. <package
  9678. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-ja-JP.img"
  9679. size="5183988"
  9680. />
  9681. <package
  9682. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-fi-FI.img"
  9683. size="5183988"
  9684. />
  9685. <package
  9686. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0.1-build3-pl-PL.img"
  9687. size="5183988"
  9688. />
  9689. </otaPackages>
  9690. </productMenu>
  9691. <productMenu id="sip"
  9692. type="1" >
  9693. </productMenu>
  9694. <productMenu id="bluetoothIntercom"
  9695. type="1" >
  9696. </productMenu>
  9697. <productMenu id="phone"
  9698. type="1" >
  9699. </productMenu>
  9700. <productMenu id="music"
  9701. type="1" >
  9702. </productMenu>
  9703. <productMenu id="fmradio"
  9704. type="1"
  9705. url="1" >
  9706. </productMenu>
  9707. <productMenu id="deviceSetting"
  9708. type="1"
  9709. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9710. <productMenuURL version="1.0"
  9711. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9712. />
  9713. </productMenu>
  9714. <productMenu id="quickGuide"
  9715. type="0"
  9716. url=""
  9717. size="934KB" >
  9718. </productMenu>
  9719. <productMenu id="userGuide"
  9720. type="1"
  9721. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9722. size="1.14MB" >
  9723. </productMenu>
  9724. <productMenu id="connectGuide"
  9725. type="1"
  9726. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  9727. size="1.12MB" >
  9728. </productMenu>
  9729. <productMenu id="volume+"
  9730. type="2"
  9731. url="0x0004" >
  9732. </productMenu>
  9733. <productMenu id="appearance"
  9734. type="1"
  9735. url="1|white,silver,black" >
  9736. </productMenu>
  9737. <productMenu id="battery"
  9738. type="1" >
  9739. </productMenu>
  9740. <productID id="3453"
  9741. />
  9742. <productGroupable type="0"
  9743. />
  9744. </product>
  9745. <product id="10R2"
  9746. name="10R 2"
  9747. series="10"
  9748. latestVersion="0.9"
  9749. latestVersionVoicePrompt="1.1"
  9750. show = "-1" >
  9751. <productMenu id="protocol"
  9752. type="2" >
  9753. </productMenu>
  9754. <productMenu id="ota"
  9755. type="2" >
  9756. <otaPackages>
  9757. <package
  9758. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9759. size="2945812"
  9760. />
  9761. </otaPackages>
  9762. </productMenu>
  9763. <productMenu id="sip"
  9764. type="1" >
  9765. </productMenu>
  9766. <productMenu id="bluetoothIntercom"
  9767. type="1" >
  9768. </productMenu>
  9769. <productMenu id="phone"
  9770. type="1" >
  9771. </productMenu>
  9772. <productMenu id="music"
  9773. type="1" >
  9774. </productMenu>
  9775. <productMenu id="fmradio"
  9776. type="1"
  9777. url="1" >
  9778. </productMenu>
  9779. <productMenu id="deviceSetting"
  9780. type="1"
  9781. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9782. </productMenu>
  9783. <productMenu id="quickGuide"
  9784. type="1"
  9785. url=""
  9786. size="934KB" >
  9787. </productMenu>
  9788. <productMenu id="userGuide"
  9789. type="0"
  9790. url=""
  9791. size="1.14MB" >
  9792. </productMenu>
  9793. <productMenu id="volume"
  9794. type="15" >
  9795. </productMenu>
  9796. <productID id="4000"
  9797. />
  9798. <productGroupable type="0"
  9799. />
  9800. </product>
  9801. <product id="10R"
  9802. name="10R"
  9803. series="10"
  9804. latestVersion="2.1.1"
  9805. show = "1" >
  9806. <productMenu id="protocol"
  9807. type="0">
  9808. </productMenu>
  9809. <productMenu id="sip"
  9810. type="1" >
  9811. <productMenuType version="1.0.2"
  9812. type="0"
  9813. />
  9814. </productMenu>
  9815. <productMenu id="bluetoothIntercom"
  9816. type="1" >
  9817. <productMenuType version="1.0.2"
  9818. type="0"
  9819. />
  9820. </productMenu>
  9821. <productMenu id="phone"
  9822. type="2" >
  9823. </productMenu>
  9824. <productMenu id="fmradio"
  9825. type="3" >
  9826. </productMenu>
  9827. <productMenu id="deviceSetting"
  9828. type="1"
  9829. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9830. <productMenuURL version="1.4"
  9831. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9832. />
  9833. <productMenuURL version="1.2.1"
  9834. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9835. />
  9836. <productMenuURL version="1.0.2"
  9837. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9838. />
  9839. <productMenuURL version="1.0"
  9840. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9841. />
  9842. </productMenu>
  9843. <productMenu id="quickGuide"
  9844. type="1"
  9845. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9846. size="400KB" >
  9847. </productMenu>
  9848. <productMenu id="userGuide"
  9849. type="1"
  9850. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9851. size="2.75MB" >
  9852. </productMenu>
  9853. <productMenu id="connectGuide"
  9854. type="1"
  9855. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9856. size="1.12MB" >
  9857. </productMenu>
  9858. <productID id="5520"
  9859. />
  9860. <productGroupable type="0"
  9861. />
  9862. </product>
  9863. <product id="10C_EVO"
  9864. name="10C EVO"
  9865. series="10"
  9866. latestVersion="1.7"
  9867. show = "1" >
  9868. <productMenu id="protocol"
  9869. type="0">
  9870. </productMenu>
  9871. <productMenu id="sip"
  9872. type="1" >
  9873. </productMenu>
  9874. <productMenu id="bluetoothIntercom"
  9875. type="1" >
  9876. </productMenu>
  9877. <productMenu id="phone"
  9878. type="2" >
  9879. </productMenu>
  9880. <productMenu id="fmradio"
  9881. type="3" >
  9882. </productMenu>
  9883. <productMenu id="deviceSetting"
  9884. type="1"
  9885. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9886. <productMenuURL version="1.3.1"
  9887. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9888. />
  9889. </productMenu>
  9890. <productMenu id="quickGuide"
  9891. type="1"
  9892. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9893. size="1.32MB" >
  9894. </productMenu>
  9895. <productMenu id="userGuide"
  9896. type="1"
  9897. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9898. size="1.68MB" >
  9899. </productMenu>
  9900. <productMenu id="connectGuide"
  9901. type="1"
  9902. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9903. size="1.12MB" >
  9904. </productMenu>
  9905. <productID id="5570"
  9906. />
  9907. <productGroupable type="0"
  9908. />
  9909. </product>
  9910. <product id="10C_Pro"
  9911. name="10C Pro"
  9912. series="10"
  9913. latestVersion="2.7.1"
  9914. show = "1" >
  9915. <productMenu id="protocol"
  9916. type="0">
  9917. </productMenu>
  9918. <productMenu id="sip"
  9919. type="1" >
  9920. </productMenu>
  9921. <productMenu id="bluetoothIntercom"
  9922. type="1" >
  9923. </productMenu>
  9924. <productMenu id="phone"
  9925. type="2" >
  9926. </productMenu>
  9927. <productMenu id="fmradio"
  9928. type="3" >
  9929. </productMenu>
  9930. <productMenu id="deviceSetting"
  9931. type="1"
  9932. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9933. <productMenuURL version="2.5.1"
  9934. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9935. />
  9936. <productMenuURL version="1.0"
  9937. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9938. />
  9939. </productMenu>
  9940. <productMenu id="quickGuide"
  9941. type="1"
  9942. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9943. size="651KB" >
  9944. </productMenu>
  9945. <productMenu id="userGuide"
  9946. type="1"
  9947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9948. size="2.34MB" >
  9949. </productMenu>
  9950. <productMenu id="connectGuide"
  9951. type="1"
  9952. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9953. size="1.12MB" >
  9954. </productMenu>
  9955. <productID id="5580"
  9956. />
  9957. <productGroupable type="0"
  9958. />
  9959. </product>
  9960. <product id="10C"
  9961. name="10C"
  9962. series="10"
  9963. latestVersion="3.0.4"
  9964. show = "1" >
  9965. <productMenu id="protocol"
  9966. type="0">
  9967. </productMenu>
  9968. <productMenu id="sip"
  9969. type="1" >
  9970. <productMenuType version="1.0.4"
  9971. type="0"
  9972. />
  9973. </productMenu>
  9974. <productMenu id="bluetoothIntercom"
  9975. type="1" >
  9976. <productMenuType version="1.0.4"
  9977. type="0"
  9978. />
  9979. </productMenu>
  9980. <productMenu id="phone"
  9981. type="2" >
  9982. </productMenu>
  9983. <productMenu id="fmradio"
  9984. type="3" >
  9985. </productMenu>
  9986. <productMenu id="deviceSetting"
  9987. type="1"
  9988. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9989. <productMenuURL version="2.3"
  9990. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9991. />
  9992. <productMenuURL version="2.1.1"
  9993. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9994. />
  9995. <productMenuURL version="1.0.4"
  9996. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9997. />
  9998. <productMenuURL version="1.0.2"
  9999. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  10000. />
  10001. </productMenu>
  10002. <productMenu id="quickGuide"
  10003. type="1"
  10004. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  10005. size="935KB" >
  10006. </productMenu>
  10007. <productMenu id="userGuide"
  10008. type="1"
  10009. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  10010. size="2.82MB" >
  10011. </productMenu>
  10012. <productMenu id="connectGuide"
  10013. type="1"
  10014. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10015. size="1.12MB" >
  10016. </productMenu>
  10017. <productID id="5510"
  10018. />
  10019. <productGroupable type="0"
  10020. />
  10021. </product>
  10022. <product id="10U_GT_AIR"
  10023. name="10U GT-Air"
  10024. series="10"
  10025. latestVersion="2.0.4"
  10026. show = "1" >
  10027. <productMenu id="protocol"
  10028. type="0">
  10029. </productMenu>
  10030. <productMenu id="sip"
  10031. type="1" >
  10032. <productMenuType version="1.0.2"
  10033. type="0"
  10034. />
  10035. </productMenu>
  10036. <productMenu id="bluetoothIntercom"
  10037. type="1" >
  10038. <productMenuType version="1.0.2"
  10039. type="0"
  10040. />
  10041. </productMenu>
  10042. <productMenu id="phone"
  10043. type="2" >
  10044. </productMenu>
  10045. <productMenu id="fmradio"
  10046. type="3" >
  10047. </productMenu>
  10048. <productMenu id="deviceSetting"
  10049. type="1"
  10050. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10051. <productMenuURL version="1.3.2"
  10052. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10053. />
  10054. <productMenuURL version="1.0.2"
  10055. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10056. />
  10057. </productMenu>
  10058. <productMenu id="quickGuide"
  10059. type="1"
  10060. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  10061. size="685KB" >
  10062. </productMenu>
  10063. <productMenu id="userGuide"
  10064. type="1"
  10065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10066. size="684KB" >
  10067. </productMenu>
  10068. <productMenu id="connectGuide"
  10069. type="1"
  10070. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10071. size="1.12MB" >
  10072. </productMenu>
  10073. <productID id="5610"
  10074. />
  10075. <productGroupable type="0"
  10076. />
  10077. </product>
  10078. <product id="10U_NEOTEC"
  10079. name="10U Neotec"
  10080. series="10"
  10081. latestVersion="2.0.4"
  10082. show = "1" >
  10083. <productMenu id="protocol"
  10084. type="0">
  10085. </productMenu>
  10086. <productMenu id="sip"
  10087. type="1" >
  10088. <productMenuType version="1.0.2"
  10089. type="0"
  10090. />
  10091. </productMenu>
  10092. <productMenu id="bluetoothIntercom"
  10093. type="1" >
  10094. <productMenuType version="1.0.2"
  10095. type="0"
  10096. />
  10097. </productMenu>
  10098. <productMenu id="phone"
  10099. type="2" >
  10100. </productMenu>
  10101. <productMenu id="fmradio"
  10102. type="3" >
  10103. </productMenu>
  10104. <productMenu id="deviceSetting"
  10105. type="1"
  10106. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10107. <productMenuURL version="1.3.2"
  10108. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10109. />
  10110. <productMenuURL version="1.0.2"
  10111. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10112. />
  10113. </productMenu>
  10114. <productMenu id="quickGuide"
  10115. type="1"
  10116. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  10117. size="689KB" >
  10118. </productMenu>
  10119. <productMenu id="userGuide"
  10120. type="1"
  10121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10122. size="684KB" >
  10123. </productMenu>
  10124. <productMenu id="connectGuide"
  10125. type="1"
  10126. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10127. size="1.12MB" >
  10128. </productMenu>
  10129. <productID id="5611"
  10130. />
  10131. <productGroupable type="0"
  10132. />
  10133. </product>
  10134. <product id="10U_J_CRUISE"
  10135. name="10U J-Cruise"
  10136. series="10"
  10137. latestVersion="2.0.4"
  10138. show = "1" >
  10139. <productMenu id="protocol"
  10140. type="0">
  10141. </productMenu>
  10142. <productMenu id="sip"
  10143. type="1" >
  10144. <productMenuType version="1.0.2"
  10145. type="0"
  10146. />
  10147. </productMenu>
  10148. <productMenu id="bluetoothIntercom"
  10149. type="1" >
  10150. <productMenuType version="1.0.2"
  10151. type="0"
  10152. />
  10153. </productMenu>
  10154. <productMenu id="phone"
  10155. type="2" >
  10156. </productMenu>
  10157. <productMenu id="fmradio"
  10158. type="3" >
  10159. </productMenu>
  10160. <productMenu id="deviceSetting"
  10161. type="1"
  10162. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10163. <productMenuURL version="1.3.2"
  10164. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10165. />
  10166. <productMenuURL version="1.0.2"
  10167. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10168. />
  10169. </productMenu>
  10170. <productMenu id="quickGuide"
  10171. type="1"
  10172. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  10173. size="686KB" >
  10174. </productMenu>
  10175. <productMenu id="userGuide"
  10176. type="1"
  10177. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10178. size="684KB" >
  10179. </productMenu>
  10180. <productMenu id="connectGuide"
  10181. type="1"
  10182. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10183. size="1.12MB" >
  10184. </productMenu>
  10185. <productID id="5612"
  10186. />
  10187. <productGroupable type="0"
  10188. />
  10189. </product>
  10190. <product id="10U_C3"
  10191. name="10U C3/C3Pro"
  10192. series="10"
  10193. latestVersion="2.0.4"
  10194. show = "1" >
  10195. <productMenu id="protocol"
  10196. type="0">
  10197. </productMenu>
  10198. <productMenu id="sip"
  10199. type="1" >
  10200. <productMenuType version="1.0.2"
  10201. type="0"
  10202. />
  10203. </productMenu>
  10204. <productMenu id="bluetoothIntercom"
  10205. type="1" >
  10206. <productMenuType version="1.0.2"
  10207. type="0"
  10208. />
  10209. </productMenu>
  10210. <productMenu id="phone"
  10211. type="2" >
  10212. </productMenu>
  10213. <productMenu id="fmradio"
  10214. type="3" >
  10215. </productMenu>
  10216. <productMenu id="deviceSetting"
  10217. type="1"
  10218. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10219. <productMenuURL version="1.3.2"
  10220. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10221. />
  10222. <productMenuURL version="1.0.2"
  10223. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10224. />
  10225. </productMenu>
  10226. <productMenu id="quickGuide"
  10227. type="1"
  10228. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10229. size="199KB" >
  10230. </productMenu>
  10231. <productMenu id="userGuide"
  10232. type="1"
  10233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10234. size="684KB" >
  10235. </productMenu>
  10236. <productMenu id="connectGuide"
  10237. type="1"
  10238. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10239. size="1.12MB" >
  10240. </productMenu>
  10241. <productID id="5620"
  10242. />
  10243. <productGroupable type="0"
  10244. />
  10245. </product>
  10246. <product id="10U_ARAI"
  10247. name="10U Arai"
  10248. series="10"
  10249. latestVersion="2.0.4"
  10250. show = "1" >
  10251. <productMenu id="protocol"
  10252. type="0">
  10253. </productMenu>
  10254. <productMenu id="sip"
  10255. type="1" >
  10256. <productMenuType version="1.0.2"
  10257. type="0"
  10258. />
  10259. </productMenu>
  10260. <productMenu id="bluetoothIntercom"
  10261. type="1" >
  10262. <productMenuType version="1.0.2"
  10263. type="0"
  10264. />
  10265. </productMenu>
  10266. <productMenu id="phone"
  10267. type="2" >
  10268. </productMenu>
  10269. <productMenu id="fmradio"
  10270. type="3" >
  10271. </productMenu>
  10272. <productMenu id="deviceSetting"
  10273. type="1"
  10274. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10275. <productMenuURL version="1.3.2"
  10276. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10277. />
  10278. <productMenuURL version="1.0.2"
  10279. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10280. />
  10281. </productMenu>
  10282. <productMenu id="quickGuide"
  10283. type="1"
  10284. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10285. size="689KB" >
  10286. </productMenu>
  10287. <productMenu id="userGuide"
  10288. type="1"
  10289. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10290. size="684KB" >
  10291. </productMenu>
  10292. <productMenu id="connectGuide"
  10293. type="1"
  10294. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10295. size="1.12MB" >
  10296. </productMenu>
  10297. <productID id="5621"
  10298. />
  10299. <productGroupable type="0"
  10300. />
  10301. </product>
  10302. <product id="10Upad"
  10303. name="10Upad"
  10304. series="10"
  10305. latestVersion="2.0.3"
  10306. show = "1" >
  10307. <productMenu id="protocol"
  10308. type="0">
  10309. </productMenu>
  10310. <productMenu id="sip"
  10311. type="1" >
  10312. </productMenu>
  10313. <productMenu id="bluetoothIntercom"
  10314. type="1" >
  10315. </productMenu>
  10316. <productMenu id="phone"
  10317. type="2" >
  10318. </productMenu>
  10319. <productMenu id="fmradio"
  10320. type="3" >
  10321. </productMenu>
  10322. <productMenu id="deviceSetting"
  10323. type="1"
  10324. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10325. <productMenuURL version="1.0.3"
  10326. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10327. />
  10328. </productMenu>
  10329. <productMenu id="quickGuide"
  10330. type="1"
  10331. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10332. size="615KB" >
  10333. </productMenu>
  10334. <productMenu id="userGuide"
  10335. type="1"
  10336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10337. size="0.99MB" >
  10338. </productMenu>
  10339. <productMenu id="connectGuide"
  10340. type="1"
  10341. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10342. size="1.12MB" >
  10343. </productMenu>
  10344. <productID id="6210"
  10345. />
  10346. <productGroupable type="0"
  10347. />
  10348. </product>
  10349. <product id="5S"
  10350. name="5S"
  10351. series="5"
  10352. latestVersion="2.3.1"
  10353. show = "1" >
  10354. <productMenu id="protocol"
  10355. type="3" >
  10356. </productMenu>
  10357. <productMenu id="sip"
  10358. type="1" >
  10359. </productMenu>
  10360. <productMenu id="bluetoothIntercom"
  10361. type="1" >
  10362. </productMenu>
  10363. <productMenu id="phone"
  10364. type="1" >
  10365. </productMenu>
  10366. <productMenu id="fmradio"
  10367. type="0" >
  10368. </productMenu>
  10369. <productMenu id="deviceSetting"
  10370. type="1"
  10371. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10372. </productMenu>
  10373. <productMenu id="quickGuide"
  10374. type="0"
  10375. url=""
  10376. size="934KB" >
  10377. </productMenu>
  10378. <productMenu id="userGuide"
  10379. type="1"
  10380. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10381. size="1.14MB" >
  10382. </productMenu>
  10383. <productMenu id="connectGuide"
  10384. type="1"
  10385. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10386. size="1.12MB" >
  10387. </productMenu>
  10388. <productID id="5590"
  10389. />
  10390. <productGroupable type="0"
  10391. />
  10392. </product>
  10393. <product id="5S"
  10394. name="5S"
  10395. series="5"
  10396. latestVersion="1.2"
  10397. show = "-1" >
  10398. <productMenu id="protocol"
  10399. type="0">
  10400. </productMenu>
  10401. <productMenu id="sip"
  10402. type="1" >
  10403. </productMenu>
  10404. <productMenu id="bluetoothIntercom"
  10405. type="1" >
  10406. </productMenu>
  10407. <productMenu id="phone"
  10408. type="2" >
  10409. </productMenu>
  10410. <productMenu id="fmradio"
  10411. type="3" >
  10412. </productMenu>
  10413. <productMenu id="deviceSetting"
  10414. type="1"
  10415. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10416. </productMenu>
  10417. <productMenu id="quickGuide"
  10418. type="0"
  10419. url=""
  10420. size="970KB" >
  10421. </productMenu>
  10422. <productMenu id="userGuide"
  10423. type="1"
  10424. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10425. size="1.26MB" >
  10426. </productMenu>
  10427. <productID id="5534"
  10428. />
  10429. <productGroupable type="0"
  10430. />
  10431. </product>
  10432. <product id="5S"
  10433. name="5S"
  10434. series="5"
  10435. latestVersion="3.0.1"
  10436. show = "-1" >
  10437. <productMenu id="protocol"
  10438. type="0">
  10439. </productMenu>
  10440. <productMenu id="sip"
  10441. type="1" >
  10442. </productMenu>
  10443. <productMenu id="bluetoothIntercom"
  10444. type="1" >
  10445. </productMenu>
  10446. <productMenu id="phone"
  10447. type="2" >
  10448. </productMenu>
  10449. <productMenu id="fmradio"
  10450. type="0" >
  10451. </productMenu>
  10452. <productMenu id="deviceSetting"
  10453. type="1"
  10454. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10455. </productMenu>
  10456. <productMenu id="quickGuide"
  10457. type="0"
  10458. url=""
  10459. size="970KB" >
  10460. </productMenu>
  10461. <productMenu id="userGuide"
  10462. type="1"
  10463. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10464. size="1.26MB" >
  10465. </productMenu>
  10466. <productID id="5538"
  10467. />
  10468. <productGroupable type="0"
  10469. />
  10470. </product>
  10471. <product id="3SPLUS"
  10472. name="3S PLUS"
  10473. series="3"
  10474. latestVersion="2.2"
  10475. show = "1" >
  10476. <productMenu id="protocol"
  10477. type="3" >
  10478. </productMenu>
  10479. <productMenu id="sip"
  10480. type="1" >
  10481. </productMenu>
  10482. <productMenu id="bluetoothIntercom"
  10483. type="1" >
  10484. </productMenu>
  10485. <productMenu id="deviceSetting"
  10486. type="1"
  10487. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10488. <productMenuURL version="2.2.1"
  10489. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10490. />
  10491. </productMenu>
  10492. <productMenu id="quickGuide"
  10493. type="1"
  10494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10495. size="344KB" >
  10496. </productMenu>
  10497. <productMenu id="userGuide"
  10498. type="1"
  10499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10500. size="1.14MB" >
  10501. </productMenu>
  10502. <productMenu id="connectGuide"
  10503. type="1"
  10504. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10505. size="1.12MB" >
  10506. </productMenu>
  10507. <productID id="4023"
  10508. />
  10509. <productGroupable type="0"
  10510. />
  10511. </product>
  10512. <product id="3SPLUS"
  10513. name="3S PLUS"
  10514. series="3"
  10515. latestVersion="1.1"
  10516. show = "-1" >
  10517. <productMenu id="protocol"
  10518. type="0">
  10519. </productMenu>
  10520. <productMenu id="sip"
  10521. type="1" >
  10522. </productMenu>
  10523. <productMenu id="bluetoothIntercom"
  10524. type="1" >
  10525. </productMenu>
  10526. <productMenu id="deviceSetting"
  10527. type="1"
  10528. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10529. </productMenu>
  10530. <productMenu id="quickGuide"
  10531. type="1"
  10532. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10533. size="842KB" >
  10534. </productMenu>
  10535. <productMenu id="userGuide"
  10536. type="1"
  10537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10538. size="1.02MB" >
  10539. </productMenu>
  10540. <productID id="6320"
  10541. />
  10542. <productGroupable type="0"
  10543. />
  10544. </product>
  10545. <product id="AConnect"
  10546. name="Alpinestars A-Connect"
  10547. series="60"
  10548. latestVersion="1.0.2"
  10549. latestVersionMesh="0.19"
  10550. latestVersionVoicePrompt="1.6"
  10551. show = "-1" >
  10552. <productMenu id="protocol"
  10553. type="2" >
  10554. </productMenu>
  10555. <productMenu id="ota"
  10556. type="2" >
  10557. <otaLanguages>
  10558. <otaLanguage
  10559. id="0"
  10560. name="English"
  10561. package="0"
  10562. />
  10563. <otaLanguage
  10564. id="0"
  10565. name="French"
  10566. package="1"
  10567. />
  10568. <otaLanguage
  10569. id="0"
  10570. name="Spanish"
  10571. package="2"
  10572. />
  10573. <otaLanguage
  10574. id="0"
  10575. name="Italian"
  10576. package="3"
  10577. />
  10578. <otaLanguage
  10579. id="0"
  10580. name="German"
  10581. package="4"
  10582. />
  10583. <otaLanguage
  10584. id="0"
  10585. name="Dutch"
  10586. package="5"
  10587. />
  10588. <otaLanguage
  10589. id="0"
  10590. name="Russian"
  10591. package="6"
  10592. />
  10593. <otaLanguage
  10594. id="0"
  10595. name="Chinese"
  10596. package="7"
  10597. />
  10598. <otaLanguage
  10599. id="0"
  10600. name="Korean"
  10601. package="8"
  10602. />
  10603. <otaLanguage
  10604. id="0"
  10605. name="Japanese"
  10606. package="9"
  10607. />
  10608. <otaLanguage
  10609. id="0"
  10610. name="Finnish"
  10611. package="10"
  10612. />
  10613. <otaLanguage
  10614. id="0"
  10615. name="Polish"
  10616. package="11"
  10617. />
  10618. </otaLanguages>
  10619. <otaPackages>
  10620. <package
  10621. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10622. size="5183988"
  10623. />
  10624. <package
  10625. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10626. size="5183988"
  10627. />
  10628. <package
  10629. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10630. size="5183988"
  10631. />
  10632. <package
  10633. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10634. size="5183988"
  10635. />
  10636. <package
  10637. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10638. size="5183988"
  10639. />
  10640. <package
  10641. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10642. size="5183988"
  10643. />
  10644. <package
  10645. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10646. size="5183988"
  10647. />
  10648. <package
  10649. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10650. size="5183988"
  10651. />
  10652. <package
  10653. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10654. size="5183988"
  10655. />
  10656. <package
  10657. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10658. size="5183988"
  10659. />
  10660. <package
  10661. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10662. size="5183988"
  10663. />
  10664. <package
  10665. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10666. size="5183988"
  10667. />
  10668. </otaPackages>
  10669. </productMenu>
  10670. <productMenu id="sip"
  10671. type="1" >
  10672. </productMenu>
  10673. <productMenu id="illusion"
  10674. type="0" >
  10675. </productMenu>
  10676. <productMenu id="meshIntercom+"
  10677. type="3"
  10678. url="2" >
  10679. </productMenu>
  10680. <productMenu id="waveIntercom"
  10681. type="1" >
  10682. </productMenu>
  10683. <productMenu id="bluetoothIntercom"
  10684. type="1"
  10685. url="2" >
  10686. </productMenu>
  10687. <productMenu id="bluetoothIntercomGrouping"
  10688. type="0" >
  10689. </productMenu>
  10690. <productMenu id="fmradio"
  10691. type="1"
  10692. url="1" >
  10693. </productMenu>
  10694. <productMenu id="phone"
  10695. type="1" >
  10696. </productMenu>
  10697. <productMenu id="music"
  10698. type="1" >
  10699. </productMenu>
  10700. <productMenu id="musicSharing"
  10701. type="0" >
  10702. </productMenu>
  10703. <productMenu id="deviceSetting"
  10704. type="1"
  10705. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10706. <productMenuURL version="1.0.3"
  10707. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10708. />
  10709. </productMenu>
  10710. <productMenu id="quickGuide"
  10711. type="0"
  10712. url=""
  10713. size="1.12MB" >
  10714. </productMenu>
  10715. <productMenu id="userGuide"
  10716. type="1"
  10717. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10718. size="2.0MB" >
  10719. </productMenu>
  10720. <productMenu id="videoGuide"
  10721. type="0"
  10722. url=""
  10723. size="3.41MB" >
  10724. </productMenu>
  10725. <productMenu id="volume"
  10726. type="16" >
  10727. </productMenu>
  10728. <productMenu id="volume+"
  10729. type="2"
  10730. url="0x6004" >
  10731. </productMenu>
  10732. <productMenu id="soundMode"
  10733. type="0" >
  10734. </productMenu>
  10735. <productMenu id="battery"
  10736. type="1" >
  10737. </productMenu>
  10738. <productID id="6A82"
  10739. />
  10740. <productGroupable type="0"
  10741. />
  10742. </product>
  10743. <product id="iCon"
  10744. name="iCon"
  10745. series="50"
  10746. latestVersion="1.2"
  10747. show = "0" >
  10748. <productMenu id="protocol"
  10749. type="2" >
  10750. </productMenu>
  10751. <productMenu id="alexa"
  10752. type="0" >
  10753. </productMenu>
  10754. <productMenu id="wa"
  10755. type="0" >
  10756. </productMenu>
  10757. <productMenu id="sip"
  10758. type="1" >
  10759. </productMenu>
  10760. <productMenu id="led"
  10761. type="3" >
  10762. </productMenu>
  10763. <productMenu id="meshIntercom"
  10764. type="20" >
  10765. </productMenu>
  10766. <productMenu id="meshIntercom+"
  10767. type="3"
  10768. url="0" >
  10769. <productMenuType version="1.0.9"
  10770. type="2"
  10771. />
  10772. </productMenu>
  10773. <productMenu id="bluetoothIntercom"
  10774. type="1" >
  10775. </productMenu>
  10776. <productMenu id="phone"
  10777. type="1" >
  10778. </productMenu>
  10779. <productMenu id="music"
  10780. type="1" >
  10781. </productMenu>
  10782. <productMenu id="fmradio"
  10783. type="1" >
  10784. </productMenu>
  10785. <productMenu id="deviceSetting"
  10786. type="1"
  10787. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10788. <productMenuURL version="1.0.9"
  10789. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10790. />
  10791. </productMenu>
  10792. <productMenu id="quickGuide"
  10793. type="1"
  10794. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10795. size="344KB" >
  10796. </productMenu>
  10797. <productMenu id="userGuide"
  10798. type="1"
  10799. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10800. size="3.41MB" >
  10801. </productMenu>
  10802. <productMenu id="volume"
  10803. type="11" >
  10804. </productMenu>
  10805. <productMenu id="battery"
  10806. type="1" >
  10807. </productMenu>
  10808. <productID id="3900"
  10809. />
  10810. <productGroupable type="0"
  10811. />
  10812. </product>
  10813. <product id="ICONHelmLinkSL"
  10814. name="ICON HelmLink SL"
  10815. series="50"
  10816. latestVersion="1.0"
  10817. latestVersionVoicePrompt="1.6"
  10818. show = "-1" >
  10819. <productMenu id="protocol"
  10820. type="2" >
  10821. </productMenu>
  10822. <productMenu id="alexa"
  10823. type="0" >
  10824. </productMenu>
  10825. <productMenu id="ota"
  10826. type="2" >
  10827. <otaPackages>
  10828. <package
  10829. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10830. size="2945812"
  10831. />
  10832. </otaPackages>
  10833. </productMenu>
  10834. <productMenu id="wa"
  10835. type="0" >
  10836. </productMenu>
  10837. <productMenu id="meshIntercom"
  10838. type="30" >
  10839. </productMenu>
  10840. <productMenu id="meshIntercom+"
  10841. type="3"
  10842. url="2" >
  10843. </productMenu>
  10844. <productMenu id="waveIntercom"
  10845. type="1" >
  10846. </productMenu>
  10847. <productMenu id="phone"
  10848. type="1" >
  10849. </productMenu>
  10850. <productMenu id="music"
  10851. type="1" >
  10852. </productMenu>
  10853. <productMenu id="musicSharing"
  10854. type="0" >
  10855. </productMenu>
  10856. <productMenu id="deviceSetting"
  10857. type="1"
  10858. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10859. </productMenu>
  10860. <productMenu id="quickGuide"
  10861. type="0"
  10862. url=""
  10863. size="1.12MB" >
  10864. </productMenu>
  10865. <productMenu id="userGuide"
  10866. type="1"
  10867. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10868. size="2.0MB" >
  10869. </productMenu>
  10870. <productMenu id="volume"
  10871. type="12" >
  10872. </productMenu>
  10873. <productMenu id="battery"
  10874. type="1" >
  10875. </productMenu>
  10876. <productID id="6842"
  10877. />
  10878. <productGroupable type="0"
  10879. />
  10880. </product>
  10881. <product id="HD50S"
  10882. name="H-D Audio 50S"
  10883. series="50"
  10884. latestVersion="1.0.1"
  10885. show = "-1" >
  10886. <productMenu id="protocol"
  10887. type="2" >
  10888. </productMenu>
  10889. <productMenu id="alexa"
  10890. type="0" >
  10891. </productMenu>
  10892. <productMenu id="ota"
  10893. type="0"
  10894. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10895. size="1150234" >
  10896. </productMenu>
  10897. <productMenu id="wa"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="sip"
  10901. type="1" >
  10902. </productMenu>
  10903. <productMenu id="meshIntercom"
  10904. type="20" >
  10905. </productMenu>
  10906. <productMenu id="meshIntercom+"
  10907. type="3"
  10908. url="0" >
  10909. <productMenuType version="1.0.9"
  10910. type="2"
  10911. />
  10912. </productMenu>
  10913. <productMenu id="bluetoothIntercom"
  10914. type="1" >
  10915. </productMenu>
  10916. <productMenu id="phone"
  10917. type="1" >
  10918. </productMenu>
  10919. <productMenu id="music"
  10920. type="1" >
  10921. </productMenu>
  10922. <productMenu id="fmradio"
  10923. type="1" >
  10924. </productMenu>
  10925. <productMenu id="deviceSetting"
  10926. type="1"
  10927. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10928. <productMenuURL version="1.0.9"
  10929. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10930. />
  10931. </productMenu>
  10932. <productMenu id="quickGuide"
  10933. type="1"
  10934. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10935. size="934KB" >
  10936. </productMenu>
  10937. <productMenu id="userGuide"
  10938. type="1"
  10939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10940. size="1.14MB" >
  10941. </productMenu>
  10942. <productMenu id="volume"
  10943. type="11" >
  10944. </productMenu>
  10945. <productMenu id="battery"
  10946. type="1" >
  10947. </productMenu>
  10948. <productID id="3156"
  10949. />
  10950. <productGroupable type="0"
  10951. />
  10952. </product>
  10953. <product id="HD50S"
  10954. name="H-D Audio 50S"
  10955. series="50"
  10956. latestVersion="2.0.2"
  10957. show = "0" >
  10958. <productMenu id="protocol"
  10959. type="2" >
  10960. </productMenu>
  10961. <productMenu id="alexa"
  10962. type="0" >
  10963. </productMenu>
  10964. <productMenu id="ota"
  10965. type="0"
  10966. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10967. size="1150234" >
  10968. </productMenu>
  10969. <productMenu id="wa"
  10970. type="1" >
  10971. </productMenu>
  10972. <productMenu id="sip"
  10973. type="1" >
  10974. </productMenu>
  10975. <productMenu id="meshIntercom"
  10976. type="20" >
  10977. </productMenu>
  10978. <productMenu id="meshIntercom+"
  10979. type="3"
  10980. url="0" >
  10981. <productMenuType version="2.0.9"
  10982. type="2"
  10983. />
  10984. </productMenu>
  10985. <productMenu id="bluetoothIntercom"
  10986. type="1" >
  10987. </productMenu>
  10988. <productMenu id="phone"
  10989. type="1" >
  10990. </productMenu>
  10991. <productMenu id="music"
  10992. type="1" >
  10993. </productMenu>
  10994. <productMenu id="fmradio"
  10995. type="1" >
  10996. </productMenu>
  10997. <productMenu id="deviceSetting"
  10998. type="1"
  10999. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11000. <productMenuURL version="2.0.9"
  11001. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11002. />
  11003. </productMenu>
  11004. <productMenu id="quickGuide"
  11005. type="1"
  11006. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11007. size="934KB" >
  11008. </productMenu>
  11009. <productMenu id="userGuide"
  11010. type="1"
  11011. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  11012. size="1.14MB" >
  11013. </productMenu>
  11014. <productMenu id="volume"
  11015. type="11" >
  11016. </productMenu>
  11017. <productMenu id="battery"
  11018. type="1" >
  11019. </productMenu>
  11020. <productID id="3213"
  11021. />
  11022. <productGroupable type="0"
  11023. />
  11024. </product>
  11025. <product id="HD50C"
  11026. name="H-D Audio 50C"
  11027. series="50"
  11028. latestVersion="1.0.1"
  11029. show = "0" >
  11030. <productMenu id="protocol"
  11031. type="2" >
  11032. </productMenu>
  11033. <productMenu id="ota"
  11034. type="0" >
  11035. </productMenu>
  11036. <productMenu id="wa"
  11037. type="1" >
  11038. </productMenu>
  11039. <productMenu id="sip"
  11040. type="1" >
  11041. </productMenu>
  11042. <productMenu id="meshIntercom"
  11043. type="20" >
  11044. </productMenu>
  11045. <productMenu id="meshIntercom+"
  11046. type="3"
  11047. url="0" >
  11048. <productMenuType version="1.0.9"
  11049. type="2"
  11050. />
  11051. </productMenu>
  11052. <productMenu id="bluetoothIntercom"
  11053. type="1" >
  11054. </productMenu>
  11055. <productMenu id="phone"
  11056. type="1" >
  11057. </productMenu>
  11058. <productMenu id="music"
  11059. type="1" >
  11060. </productMenu>
  11061. <productMenu id="fmradio"
  11062. type="1" >
  11063. </productMenu>
  11064. <productMenu id="deviceSetting"
  11065. type="1"
  11066. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  11067. <productMenuURL version="1.0.9"
  11068. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  11069. />
  11070. </productMenu>
  11071. <productMenu id="quickGuide"
  11072. type="1"
  11073. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11074. size="344KB" >
  11075. </productMenu>
  11076. <productMenu id="userGuide"
  11077. type="1"
  11078. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  11079. size="3.41MB" >
  11080. </productMenu>
  11081. <productMenu id="volume"
  11082. type="11" >
  11083. </productMenu>
  11084. <productMenu id="battery"
  11085. type="1" >
  11086. </productMenu>
  11087. <productID id="3240"
  11088. />
  11089. <productGroupable type="0"
  11090. />
  11091. </product>
  11092. <product id="HD50S"
  11093. name="FURY N04"
  11094. series="Helmet"
  11095. latestVersion="1.0"
  11096. show = "0" >
  11097. <productMenu id="protocol"
  11098. type="2" >
  11099. </productMenu>
  11100. <productMenu id="alexa"
  11101. type="0" >
  11102. </productMenu>
  11103. <productMenu id="ota"
  11104. type="0" >
  11105. </productMenu>
  11106. <productMenu id="wa"
  11107. type="0" >
  11108. </productMenu>
  11109. <productMenu id="meshIntercom"
  11110. type="20" >
  11111. </productMenu>
  11112. <productMenu id="meshIntercom+"
  11113. type="3"
  11114. url="0" >
  11115. <productMenuType version="1.0.9"
  11116. type="2"
  11117. />
  11118. </productMenu>
  11119. <productMenu id="phone"
  11120. type="1" >
  11121. </productMenu>
  11122. <productMenu id="music"
  11123. type="1" >
  11124. </productMenu>
  11125. <productMenu id="fmradio"
  11126. type="1" >
  11127. </productMenu>
  11128. <productMenu id="deviceSetting"
  11129. type="1"
  11130. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  11131. <productMenuURL version="1.0.9"
  11132. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  11133. />
  11134. </productMenu>
  11135. <productMenu id="quickGuide"
  11136. type="1"
  11137. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  11138. size="1.12MB" >
  11139. </productMenu>
  11140. <productMenu id="userGuide"
  11141. type="1"
  11142. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  11143. size="2.0MB" >
  11144. </productMenu>
  11145. <productMenu id="volume"
  11146. type="13" >
  11147. </productMenu>
  11148. <productMenu id="battery"
  11149. type="1" >
  11150. </productMenu>
  11151. <productID id="5553"
  11152. />
  11153. <productGroupable type="0"
  11154. />
  11155. </product>
  11156. <product id="XCOM3Pro"
  11157. name="X-COM3 Pro"
  11158. series="50"
  11159. latestVersion="1.1"
  11160. show = "0" >
  11161. <productMenu id="protocol"
  11162. type="2" >
  11163. </productMenu>
  11164. <productMenu id="alexa"
  11165. type="0" >
  11166. </productMenu>
  11167. <productMenu id="ota"
  11168. type="0" >
  11169. </productMenu>
  11170. <productMenu id="wa"
  11171. type="0" >
  11172. </productMenu>
  11173. <productMenu id="sip"
  11174. type="1" >
  11175. </productMenu>
  11176. <productMenu id="meshIntercom"
  11177. type="30" >
  11178. </productMenu>
  11179. <productMenu id="meshIntercom+"
  11180. type="3"
  11181. url="2" >
  11182. <productMenuType version="1.1"
  11183. type="2"
  11184. />
  11185. </productMenu>
  11186. <productMenu id="waveIntercom"
  11187. type="1" >
  11188. <productMenuType version="1.1"
  11189. type="0"
  11190. />
  11191. </productMenu>
  11192. <productMenu id="bluetoothIntercom"
  11193. type="1" >
  11194. </productMenu>
  11195. <productMenu id="phone"
  11196. type="1" >
  11197. </productMenu>
  11198. <productMenu id="music"
  11199. type="1" >
  11200. </productMenu>
  11201. <productMenu id="fmradio"
  11202. type="1" >
  11203. </productMenu>
  11204. <productMenu id="deviceSetting"
  11205. type="1"
  11206. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  11207. <productMenuURL version="1.1"
  11208. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  11209. />
  11210. </productMenu>
  11211. <productMenu id="quickGuide"
  11212. type="0"
  11213. url=""
  11214. size="344KB" >
  11215. </productMenu>
  11216. <productMenu id="userGuide"
  11217. type="1"
  11218. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  11219. size="3.41MB" >
  11220. </productMenu>
  11221. <productMenu id="volume"
  11222. type="11" >
  11223. </productMenu>
  11224. <productMenu id="battery"
  11225. type="1" >
  11226. </productMenu>
  11227. <productID id="321A"
  11228. />
  11229. <productGroupable type="0"
  11230. />
  11231. </product>
  11232. <product id="XCOM3"
  11233. name="X-COM3"
  11234. series="20"
  11235. latestVersion="1.0"
  11236. show = "0" >
  11237. <productMenu id="protocol"
  11238. type="2" >
  11239. </productMenu>
  11240. <productMenu id="sip"
  11241. type="1" >
  11242. </productMenu>
  11243. <productMenu id="bluetoothIntercom"
  11244. type="1" >
  11245. </productMenu>
  11246. <productMenu id="phone"
  11247. type="1" >
  11248. </productMenu>
  11249. <productMenu id="music"
  11250. type="1" >
  11251. </productMenu>
  11252. <productMenu id="fmradio"
  11253. type="1" >
  11254. </productMenu>
  11255. <productMenu id="deviceSetting"
  11256. type="1"
  11257. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11258. </productMenu>
  11259. <productMenu id="quickGuide"
  11260. type="0"
  11261. url=""
  11262. size="934KB" >
  11263. </productMenu>
  11264. <productMenu id="userGuide"
  11265. type="1"
  11266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11267. size="1.14MB" >
  11268. </productMenu>
  11269. <productMenu id="volume"
  11270. type="15" >
  11271. </productMenu>
  11272. <productID id="3410"
  11273. />
  11274. <productGroupable type="0"
  11275. />
  11276. </product>
  11277. <product id="X-COM2"
  11278. name="X-COM2"
  11279. series="20"
  11280. latestVersion="1.0.5"
  11281. show = "0" >
  11282. <productMenu id="protocol"
  11283. type="0">
  11284. </productMenu>
  11285. <productMenu id="sip"
  11286. type="1" >
  11287. </productMenu>
  11288. <productMenu id="bluetoothIntercom"
  11289. type="1" >
  11290. </productMenu>
  11291. <productMenu id="intercomSetting"
  11292. type="1" >
  11293. </productMenu>
  11294. <productMenu id="phone"
  11295. type="2" >
  11296. </productMenu>
  11297. <productMenu id="fmradio"
  11298. type="3" >
  11299. </productMenu>
  11300. <productMenu id="deviceSetting"
  11301. type="1"
  11302. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11303. </productMenu>
  11304. <productMenu id="quickGuide"
  11305. type="1"
  11306. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11307. size="796KB" >
  11308. </productMenu>
  11309. <productMenu id="userGuide"
  11310. type="1"
  11311. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11312. size="1.90MB" >
  11313. </productMenu>
  11314. <productID id="2030"
  11315. />
  11316. <productGroupable type="1"
  11317. />
  11318. </product>
  11319. <product id="AVAABC"
  11320. name="AVA ABC"
  11321. series="SPIDER"
  11322. latestVersion="1.1"
  11323. show = "0" >
  11324. <productMenu id="protocol"
  11325. type="2" >
  11326. </productMenu>
  11327. <productMenu id="alexa"
  11328. type="0" >
  11329. </productMenu>
  11330. <productMenu id="ota"
  11331. type="0" >
  11332. <productMenuType version="1.0"
  11333. type="0"
  11334. />
  11335. <otaPackages>
  11336. <package
  11337. url="https://api.sena.com/support/OTA/"
  11338. size="2945812"
  11339. />
  11340. </otaPackages>
  11341. </productMenu>
  11342. <productMenu id="wa"
  11343. type="0" >
  11344. </productMenu>
  11345. <productMenu id="meshIntercom"
  11346. type="30" >
  11347. <productMenuType version="1.0"
  11348. type="20"
  11349. />
  11350. </productMenu>
  11351. <productMenu id="meshIntercom+"
  11352. type="3"
  11353. url="2" >
  11354. <productMenuType version="1.0"
  11355. type="2"
  11356. />
  11357. <productMenuURL version="1.0"
  11358. url="0"
  11359. />
  11360. </productMenu>
  11361. <productMenu id="waveIntercom"
  11362. type="1" >
  11363. <productMenuType version="1.0"
  11364. type="0"
  11365. />
  11366. </productMenu>
  11367. <productMenu id="phone"
  11368. type="1" >
  11369. </productMenu>
  11370. <productMenu id="music"
  11371. type="1" >
  11372. </productMenu>
  11373. <productMenu id="musicSharing"
  11374. type="0" >
  11375. </productMenu>
  11376. <productMenu id="deviceSetting"
  11377. type="1"
  11378. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11379. <productMenuURL version="1.0"
  11380. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11381. />
  11382. </productMenu>
  11383. <productMenu id="quickGuide"
  11384. type="1"
  11385. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11386. size="1.12MB" >
  11387. </productMenu>
  11388. <productMenu id="userGuide"
  11389. type="1"
  11390. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11391. size="2.0MB" >
  11392. </productMenu>
  11393. <productMenu id="volume"
  11394. type="12" >
  11395. </productMenu>
  11396. <productMenu id="battery"
  11397. type="1" >
  11398. </productMenu>
  11399. <productID id="6808"
  11400. />
  11401. <productGroupable type="0"
  11402. />
  11403. </product>
  11404. <product id="ADVANCEProCOM2"
  11405. name="ADVANCE ProCOM 2"
  11406. series="Helmet"
  11407. latestVersion="0.5"
  11408. latestVersionVoicePrompt="0.3"
  11409. show = "-1" >
  11410. <productMenu id="protocol"
  11411. type="2" >
  11412. </productMenu>
  11413. <productMenu id="ota"
  11414. type="2" >
  11415. <otaLanguages>
  11416. <otaLanguage
  11417. id="0"
  11418. name="English"
  11419. package="0"
  11420. />
  11421. <otaLanguage
  11422. id="0"
  11423. name="French"
  11424. package="1"
  11425. />
  11426. <otaLanguage
  11427. id="0"
  11428. name="Spanish"
  11429. package="2"
  11430. />
  11431. <otaLanguage
  11432. id="0"
  11433. name="Italian"
  11434. package="3"
  11435. />
  11436. <otaLanguage
  11437. id="0"
  11438. name="German"
  11439. package="4"
  11440. />
  11441. <otaLanguage
  11442. id="0"
  11443. name="Dutch"
  11444. package="5"
  11445. />
  11446. <otaLanguage
  11447. id="0"
  11448. name="Russian"
  11449. package="6"
  11450. />
  11451. <otaLanguage
  11452. id="0"
  11453. name="Chinese"
  11454. package="7"
  11455. />
  11456. <otaLanguage
  11457. id="0"
  11458. name="Korean"
  11459. package="8"
  11460. />
  11461. <otaLanguage
  11462. id="0"
  11463. name="Japanese"
  11464. package="9"
  11465. />
  11466. <otaLanguage
  11467. id="0"
  11468. name="Finnish"
  11469. package="10"
  11470. />
  11471. <otaLanguage
  11472. id="0"
  11473. name="Polish"
  11474. package="11"
  11475. />
  11476. </otaLanguages>
  11477. <otaPackages>
  11478. <package
  11479. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11480. size="5183988"
  11481. />
  11482. <package
  11483. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11484. size="5183988"
  11485. />
  11486. <package
  11487. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11488. size="5183988"
  11489. />
  11490. <package
  11491. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11492. size="5183988"
  11493. />
  11494. <package
  11495. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11496. size="5183988"
  11497. />
  11498. <package
  11499. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11500. size="5183988"
  11501. />
  11502. <package
  11503. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11504. size="5183988"
  11505. />
  11506. <package
  11507. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11508. size="5183988"
  11509. />
  11510. <package
  11511. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11512. size="5183988"
  11513. />
  11514. <package
  11515. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11516. size="5183988"
  11517. />
  11518. <package
  11519. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11520. size="5183988"
  11521. />
  11522. <package
  11523. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11524. size="5183988"
  11525. />
  11526. </otaPackages>
  11527. </productMenu>
  11528. <productMenu id="wa"
  11529. type="0" >
  11530. </productMenu>
  11531. <productMenu id="meshIntercom"
  11532. type="30" >
  11533. </productMenu>
  11534. <productMenu id="meshIntercom+"
  11535. type="3"
  11536. url="2" >
  11537. </productMenu>
  11538. <productMenu id="waveIntercom"
  11539. type="1" >
  11540. </productMenu>
  11541. <productMenu id="fmradio"
  11542. type="1" >
  11543. </productMenu>
  11544. <productMenu id="phone"
  11545. type="0" >
  11546. </productMenu>
  11547. <productMenu id="music"
  11548. type="1" >
  11549. </productMenu>
  11550. <productMenu id="musicSharing"
  11551. type="0" >
  11552. </productMenu>
  11553. <productMenu id="deviceSetting"
  11554. type="1"
  11555. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11556. </productMenu>
  11557. <productMenu id="quickGuide"
  11558. type="0"
  11559. url=""
  11560. size="1.12MB" >
  11561. </productMenu>
  11562. <productMenu id="userGuide"
  11563. type="1"
  11564. url=""
  11565. size="2.0MB" >
  11566. </productMenu>
  11567. <productMenu id="videoGuide"
  11568. type="0"
  11569. url=""
  11570. size="3.41MB" >
  11571. </productMenu>
  11572. <productMenu id="connectGuide"
  11573. type="1"
  11574. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11575. size="1.12MB" >
  11576. </productMenu>
  11577. <productMenu id="volume"
  11578. type="16" >
  11579. </productMenu>
  11580. <productMenu id="battery"
  11581. type="1" >
  11582. </productMenu>
  11583. <productID id="6A85"
  11584. />
  11585. <productGroupable type="0"
  11586. />
  11587. </product>
  11588. <product id="TRIUMPH60X"
  11589. name="TRIUMPH 60X"
  11590. series="60"
  11591. latestVersion="1.0"
  11592. latestVersionMesh="0.19"
  11593. latestVersionVoicePrompt="1.7"
  11594. show = "-1" >
  11595. <productMenu id="protocol"
  11596. type="2" >
  11597. </productMenu>
  11598. <productMenu id="ota"
  11599. type="0" >
  11600. <otaLanguages>
  11601. <otaLanguage
  11602. id="0"
  11603. name="English"
  11604. package="0"
  11605. />
  11606. <otaLanguage
  11607. id="0"
  11608. name="French"
  11609. package="1"
  11610. />
  11611. <otaLanguage
  11612. id="0"
  11613. name="Spanish"
  11614. package="2"
  11615. />
  11616. <otaLanguage
  11617. id="0"
  11618. name="Italian"
  11619. package="3"
  11620. />
  11621. <otaLanguage
  11622. id="0"
  11623. name="German"
  11624. package="4"
  11625. />
  11626. <otaLanguage
  11627. id="0"
  11628. name="Dutch"
  11629. package="5"
  11630. />
  11631. <otaLanguage
  11632. id="0"
  11633. name="Russian"
  11634. package="6"
  11635. />
  11636. <otaLanguage
  11637. id="0"
  11638. name="Chinese"
  11639. package="7"
  11640. />
  11641. <otaLanguage
  11642. id="0"
  11643. name="Korean"
  11644. package="8"
  11645. />
  11646. <otaLanguage
  11647. id="0"
  11648. name="Japanese"
  11649. package="9"
  11650. />
  11651. <otaLanguage
  11652. id="0"
  11653. name="Finnish"
  11654. package="10"
  11655. />
  11656. <otaLanguage
  11657. id="0"
  11658. name="Polish"
  11659. package="11"
  11660. />
  11661. </otaLanguages>
  11662. <otaPackages>
  11663. <package
  11664. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11665. size="5183988"
  11666. />
  11667. <package
  11668. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11669. size="5183988"
  11670. />
  11671. <package
  11672. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11673. size="5183988"
  11674. />
  11675. <package
  11676. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11677. size="5183988"
  11678. />
  11679. <package
  11680. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11681. size="5183988"
  11682. />
  11683. <package
  11684. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11685. size="5183988"
  11686. />
  11687. <package
  11688. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11689. size="5183988"
  11690. />
  11691. <package
  11692. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11693. size="5183988"
  11694. />
  11695. <package
  11696. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11697. size="5183988"
  11698. />
  11699. <package
  11700. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11701. size="5183988"
  11702. />
  11703. <package
  11704. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11705. size="5183988"
  11706. />
  11707. <package
  11708. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11709. size="5183988"
  11710. />
  11711. </otaPackages>
  11712. </productMenu>
  11713. <productMenu id="wa"
  11714. type="0" >
  11715. </productMenu>
  11716. <productMenu id="sip"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="led"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="illusion"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="meshIntercom"
  11726. type="30" >
  11727. </productMenu>
  11728. <productMenu id="meshIntercom+"
  11729. type="3"
  11730. url="2" >
  11731. </productMenu>
  11732. <productMenu id="bluetoothIntercom"
  11733. type="1" >
  11734. </productMenu>
  11735. <productMenu id="fmradio"
  11736. type="1"
  11737. url="1" >
  11738. </productMenu>
  11739. <productMenu id="mic"
  11740. type="0" >
  11741. </productMenu>
  11742. <productMenu id="phone"
  11743. type="1" >
  11744. </productMenu>
  11745. <productMenu id="music"
  11746. type="1" >
  11747. </productMenu>
  11748. <productMenu id="musicSharing"
  11749. type="0" >
  11750. </productMenu>
  11751. <productMenu id="deviceSetting"
  11752. type="1"
  11753. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11754. </productMenu>
  11755. <productMenu id="quickGuide"
  11756. type="0"
  11757. url=""
  11758. size="1.12MB" >
  11759. </productMenu>
  11760. <productMenu id="userGuide"
  11761. type="1"
  11762. url=""
  11763. size="2.0MB" >
  11764. </productMenu>
  11765. <productMenu id="videoGuide"
  11766. type="0"
  11767. url=""
  11768. size="3.41MB" >
  11769. </productMenu>
  11770. <productMenu id="keySettings"
  11771. type="1"
  11772. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11773. </productMenu>
  11774. <productMenu id="volume"
  11775. type="13" >
  11776. </productMenu>
  11777. <productMenu id="volume+"
  11778. type="2"
  11779. url="0x6004" >
  11780. </productMenu>
  11781. <productMenu id="battery"
  11782. type="1" >
  11783. </productMenu>
  11784. <productID id="6A1C"
  11785. />
  11786. <productGroupable type="0"
  11787. />
  11788. </product>
  11789. <product id="Triumph_50S"
  11790. name="Triumph 50S"
  11791. series="50"
  11792. latestVersion="1.5"
  11793. show = "0" >
  11794. <productMenu id="protocol"
  11795. type="2" >
  11796. </productMenu>
  11797. <productMenu id="alexa"
  11798. type="0" >
  11799. </productMenu>
  11800. <productMenu id="ota"
  11801. type="0"
  11802. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11803. size="1150234" >
  11804. </productMenu>
  11805. <productMenu id="wa"
  11806. type="1" >
  11807. </productMenu>
  11808. <productMenu id="sip"
  11809. type="1" >
  11810. </productMenu>
  11811. <productMenu id="meshIntercom"
  11812. type="20" >
  11813. </productMenu>
  11814. <productMenu id="bluetoothIntercom"
  11815. type="1" >
  11816. </productMenu>
  11817. <productMenu id="meshIntercom+"
  11818. type="3"
  11819. url="2" >
  11820. <productMenuType version="1.2.9"
  11821. type="2"
  11822. />
  11823. <productMenuURL version="1.2.9"
  11824. url="0"
  11825. />
  11826. </productMenu>
  11827. <productMenu id="waveIntercom"
  11828. type="1" >
  11829. <productMenuType version="1.2.9"
  11830. type="0"
  11831. />
  11832. </productMenu>
  11833. <productMenu id="phone"
  11834. type="1" >
  11835. </productMenu>
  11836. <productMenu id="music"
  11837. type="1" >
  11838. </productMenu>
  11839. <productMenu id="fmradio"
  11840. type="1" >
  11841. </productMenu>
  11842. <productMenu id="deviceSetting"
  11843. type="1"
  11844. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11845. <productMenuURL version="1.2.9"
  11846. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11847. />
  11848. <productMenuURL version="1.0"
  11849. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11850. />
  11851. </productMenu>
  11852. <productMenu id="quickGuide"
  11853. type="1"
  11854. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11855. size="934KB" >
  11856. </productMenu>
  11857. <productMenu id="userGuide"
  11858. type="1"
  11859. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11860. size="1.14MB" >
  11861. </productMenu>
  11862. <productMenu id="volume"
  11863. type="11" >
  11864. </productMenu>
  11865. <productMenu id="battery"
  11866. type="1" >
  11867. </productMenu>
  11868. <productID id="3264"
  11869. />
  11870. <productGroupable type="0"
  11871. />
  11872. </product>
  11873. <product id="RE50S"
  11874. name="RE 50S"
  11875. series="50"
  11876. latestVersion="2.7"
  11877. show = "0" >
  11878. <productMenu id="protocol"
  11879. type="2" >
  11880. </productMenu>
  11881. <productMenu id="alexa"
  11882. type="0" >
  11883. </productMenu>
  11884. <productMenu id="ota"
  11885. type="0"
  11886. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11887. size="1150234" >
  11888. </productMenu>
  11889. <productMenu id="wa"
  11890. type="1" >
  11891. </productMenu>
  11892. <productMenu id="sip"
  11893. type="1" >
  11894. </productMenu>
  11895. <productMenu id="meshIntercom"
  11896. type="30" >
  11897. </productMenu>
  11898. <productMenu id="meshIntercom+"
  11899. type="3"
  11900. url="2" >
  11901. <productMenuType version="2.5"
  11902. type="2"
  11903. />
  11904. </productMenu>
  11905. <productMenu id="waveIntercom"
  11906. type="1" >
  11907. <productMenuType version="2.5"
  11908. type="0"
  11909. />
  11910. </productMenu>
  11911. <productMenu id="bluetoothIntercom"
  11912. type="1" >
  11913. </productMenu>
  11914. <productMenu id="phone"
  11915. type="1" >
  11916. </productMenu>
  11917. <productMenu id="music"
  11918. type="1" >
  11919. </productMenu>
  11920. <productMenu id="fmradio"
  11921. type="1" >
  11922. </productMenu>
  11923. <productMenu id="deviceSetting"
  11924. type="1"
  11925. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11926. <productMenuURL version="2.5.9"
  11927. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11928. />
  11929. </productMenu>
  11930. <productMenu id="quickGuide"
  11931. type="1"
  11932. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11933. size="934KB" >
  11934. </productMenu>
  11935. <productMenu id="userGuide"
  11936. type="1"
  11937. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11938. size="1.14MB" >
  11939. </productMenu>
  11940. <productMenu id="videoGuide"
  11941. type="0"
  11942. url=""
  11943. size="3.41MB" >
  11944. </productMenu>
  11945. <productMenu id="volume"
  11946. type="11" >
  11947. </productMenu>
  11948. <productMenu id="battery"
  11949. type="1" >
  11950. </productMenu>
  11951. <productID id="321C"
  11952. />
  11953. <productGroupable type="0"
  11954. />
  11955. </product>
  11956. <product id="BMW_HELMET_II_U1"
  11957. name="BMW HELMET II U1"
  11958. series="50"
  11959. latestVersion="1.0"
  11960. show = "0" >
  11961. <productMenu id="protocol"
  11962. type="2" >
  11963. </productMenu>
  11964. <productMenu id="alexa"
  11965. type="0" >
  11966. </productMenu>
  11967. <productMenu id="sip"
  11968. type="1" >
  11969. </productMenu>
  11970. <productMenu id="meshIntercom"
  11971. type="20" >
  11972. </productMenu>
  11973. <productMenu id="bluetoothIntercom"
  11974. type="1" >
  11975. </productMenu>
  11976. <productMenu id="bluetoothIntercom2"
  11977. type="1" >
  11978. </productMenu>
  11979. <productMenu id="phone"
  11980. type="1" >
  11981. </productMenu>
  11982. <productMenu id="music"
  11983. type="1" >
  11984. </productMenu>
  11985. <productMenu id="fmradio"
  11986. type="1" >
  11987. </productMenu>
  11988. <productMenu id="deviceSetting"
  11989. type="1"
  11990. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11991. </productMenu>
  11992. <productMenu id="quickGuide"
  11993. type="1"
  11994. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11995. size="934KB" >
  11996. </productMenu>
  11997. <productMenu id="userGuide"
  11998. type="1"
  11999. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  12000. size="1.14MB" >
  12001. </productMenu>
  12002. <productMenu id="volume"
  12003. type="11" >
  12004. </productMenu>
  12005. <productMenu id="battery"
  12006. type="1" >
  12007. </productMenu>
  12008. <productID id="3260"
  12009. />
  12010. <productGroupable type="0"
  12011. />
  12012. </product>
  12013. <product id="OUTRUSHR"
  12014. name="CX935"
  12015. series="Helmet"
  12016. latestVersion="2.1"
  12017. show = "-1" >
  12018. <productMenu id="protocol"
  12019. type="3">
  12020. </productMenu>
  12021. <productMenu id="sip"
  12022. type="1" >
  12023. </productMenu>
  12024. <productMenu id="bluetoothIntercom"
  12025. type="1" >
  12026. </productMenu>
  12027. <productMenu id="phone"
  12028. type="1" >
  12029. </productMenu>
  12030. <productMenu id="fmradio"
  12031. type="0" >
  12032. </productMenu>
  12033. <productMenu id="deviceSetting"
  12034. type="1"
  12035. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  12036. </productMenu>
  12037. <productMenu id="userGuide"
  12038. type="1"
  12039. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  12040. size="660KB" >
  12041. </productMenu>
  12042. <productID id="5446"
  12043. />
  12044. <productGroupable type="0"
  12045. />
  12046. </product>
  12047. <product id="LSE_01"
  12048. name="LSE-01"
  12049. series="SF"
  12050. latestVersion="1.2.3"
  12051. show = "0" >
  12052. <productMenu id="protocol"
  12053. type="1"
  12054. url="3">
  12055. </productMenu>
  12056. <productMenu id="sip"
  12057. type="1" >
  12058. </productMenu>
  12059. <productMenu id="bluetoothIntercom"
  12060. type="1" >
  12061. </productMenu>
  12062. <productMenu id="phone"
  12063. type="1" >
  12064. </productMenu>
  12065. <productMenu id="music"
  12066. type="1" >
  12067. </productMenu>
  12068. <productMenu id="fmradio"
  12069. type="1" >
  12070. </productMenu>
  12071. <productMenu id="deviceSetting"
  12072. type="1"
  12073. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12074. <productMenuURL version="1.1"
  12075. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  12076. />
  12077. <productMenuURL version="1.0"
  12078. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  12079. />
  12080. </productMenu>
  12081. <productMenu id="quickGuide"
  12082. type="1"
  12083. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  12084. size="607KB" >
  12085. </productMenu>
  12086. <productMenu id="userGuide"
  12087. type="1"
  12088. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  12089. size="1.91MB" >
  12090. </productMenu>
  12091. <productMenu id="volume"
  12092. type="4" >
  12093. </productMenu>
  12094. <productID id="5416"
  12095. />
  12096. <productGroupable type="0"
  12097. />
  12098. </product>
  12099. <product id="AGV_ARK"
  12100. name="AGV ARK"
  12101. series="SF"
  12102. latestVersion="1.0.3"
  12103. show = "0" >
  12104. <productMenu id="protocol"
  12105. type="1"
  12106. url="3">
  12107. </productMenu>
  12108. <productMenu id="sip"
  12109. type="1" >
  12110. </productMenu>
  12111. <productMenu id="bluetoothIntercom"
  12112. type="1" >
  12113. </productMenu>
  12114. <productMenu id="phone"
  12115. type="1" >
  12116. </productMenu>
  12117. <productMenu id="music"
  12118. type="1" >
  12119. </productMenu>
  12120. <productMenu id="fmradio"
  12121. type="1" >
  12122. </productMenu>
  12123. <productMenu id="deviceSetting"
  12124. type="1"
  12125. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  12126. </productMenu>
  12127. <productMenu id="quickGuide"
  12128. type="1"
  12129. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  12130. size="607KB" >
  12131. </productMenu>
  12132. <productMenu id="userGuide"
  12133. type="1"
  12134. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  12135. size="1.91MB" >
  12136. </productMenu>
  12137. <productMenu id="volume"
  12138. type="4" >
  12139. </productMenu>
  12140. <productID id="5420"
  12141. />
  12142. <productGroupable type="0"
  12143. />
  12144. </product>
  12145. <product id="KLIM_KRIOS"
  12146. name="KLIM Krios"
  12147. series="10"
  12148. latestVersion="1.1.2"
  12149. show = "0" >
  12150. <productMenu id="protocol"
  12151. type="0">
  12152. </productMenu>
  12153. <productMenu id="sip"
  12154. type="1" >
  12155. </productMenu>
  12156. <productMenu id="bluetoothIntercom"
  12157. type="1" >
  12158. </productMenu>
  12159. <productMenu id="phone"
  12160. type="2" >
  12161. </productMenu>
  12162. <productMenu id="fmradio"
  12163. type="3" >
  12164. </productMenu>
  12165. <productMenu id="deviceSetting"
  12166. type="1"
  12167. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  12168. <productMenuURL version="1.0"
  12169. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  12170. />
  12171. </productMenu>
  12172. <productMenu id="quickGuide"
  12173. type="1"
  12174. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  12175. size="649KB" >
  12176. </productMenu>
  12177. <productMenu id="userGuide"
  12178. type="1"
  12179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  12180. size="1.43MB" >
  12181. </productMenu>
  12182. <productID id="5910"
  12183. />
  12184. <productGroupable type="0"
  12185. />
  12186. </product>
  12187. <product id="POLARIS_SLINGSHOT"
  12188. name="Polaris Slingshot"
  12189. series="10"
  12190. latestVersion="1.1.2"
  12191. show = "0" >
  12192. <productMenu id="protocol"
  12193. type="0">
  12194. </productMenu>
  12195. <productMenu id="sip"
  12196. type="1" >
  12197. </productMenu>
  12198. <productMenu id="bluetoothIntercom"
  12199. type="1" >
  12200. </productMenu>
  12201. <productMenu id="phone"
  12202. type="2" >
  12203. </productMenu>
  12204. <productMenu id="fmradio"
  12205. type="3" >
  12206. </productMenu>
  12207. <productMenu id="deviceSetting"
  12208. type="1"
  12209. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  12210. <productMenuURL version="1.0"
  12211. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  12212. />
  12213. </productMenu>
  12214. <productMenu id="quickGuide"
  12215. type="1"
  12216. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  12217. size="689KB" >
  12218. </productMenu>
  12219. <productMenu id="userGuide"
  12220. type="1"
  12221. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  12222. size="1.43MB" >
  12223. </productMenu>
  12224. <productID id="5920"
  12225. />
  12226. <productGroupable type="0"
  12227. />
  12228. </product>
  12229. <product id="DWO6"
  12230. name="SEDICI DWO6-PRO"
  12231. series="10"
  12232. latestVersion="1.0.2"
  12233. show = "0" >
  12234. <productMenu id="protocol"
  12235. type="0">
  12236. </productMenu>
  12237. <productMenu id="sip"
  12238. type="1" >
  12239. </productMenu>
  12240. <productMenu id="bluetoothIntercom"
  12241. type="1" >
  12242. </productMenu>
  12243. <productMenu id="phone"
  12244. type="2" >
  12245. </productMenu>
  12246. <productMenu id="fmradio"
  12247. type="3" >
  12248. </productMenu>
  12249. <productMenu id="deviceSetting"
  12250. type="1"
  12251. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12252. </productMenu>
  12253. <productMenu id="quickGuide"
  12254. type="1"
  12255. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12256. size="529KB" >
  12257. </productMenu>
  12258. <productMenu id="userGuide"
  12259. type="1"
  12260. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12261. size="4.09MB" >
  12262. </productMenu>
  12263. <productID id="6112"
  12264. />
  12265. <productGroupable type="0"
  12266. />
  12267. </product>
  12268. <product id="DWO6A"
  12269. name="SEDICI DWO-6"
  12270. series="10"
  12271. latestVersion="1.0.2"
  12272. show = "0" >
  12273. <productMenu id="protocol"
  12274. type="0">
  12275. </productMenu>
  12276. <productMenu id="sip"
  12277. type="1" >
  12278. </productMenu>
  12279. <productMenu id="bluetoothIntercom"
  12280. type="1" >
  12281. </productMenu>
  12282. <productMenu id="phone"
  12283. type="2" >
  12284. </productMenu>
  12285. <productMenu id="fmradio"
  12286. type="3" >
  12287. </productMenu>
  12288. <productMenu id="deviceSetting"
  12289. type="1"
  12290. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12291. </productMenu>
  12292. <productMenu id="quickGuide"
  12293. type="1"
  12294. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12295. size="522KB" >
  12296. </productMenu>
  12297. <productMenu id="userGuide"
  12298. type="1"
  12299. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12300. size="2.71MB" >
  12301. </productMenu>
  12302. <productID id="6114"
  12303. />
  12304. <productGroupable type="0"
  12305. />
  12306. </product>
  12307. <product id="3SPLUS"
  12308. name="ZILL"
  12309. series="3"
  12310. latestVersion="1.0.4"
  12311. show = "0" >
  12312. <productMenu id="protocol"
  12313. type="0">
  12314. </productMenu>
  12315. <productMenu id="sip"
  12316. type="1" >
  12317. </productMenu>
  12318. <productMenu id="bluetoothIntercom"
  12319. type="1" >
  12320. </productMenu>
  12321. <productMenu id="deviceSetting"
  12322. type="1"
  12323. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12324. </productMenu>
  12325. <productMenu id="quickGuide"
  12326. type="1"
  12327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12328. size="842KB" >
  12329. </productMenu>
  12330. <productMenu id="userGuide"
  12331. type="1"
  12332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12333. size="1.02MB" >
  12334. </productMenu>
  12335. <productID id="6335"
  12336. />
  12337. <productGroupable type="0"
  12338. />
  12339. </product>
  12340. <product id="HD50S"
  12341. name="Boom! Audio 30K"
  12342. series="30"
  12343. latestVersion="3.4"
  12344. show = "0" >
  12345. <productMenu id="protocol"
  12346. type="1"
  12347. url="0">
  12348. </productMenu>
  12349. <productMenu id="wa"
  12350. type="0" >
  12351. </productMenu>
  12352. <productMenu id="sip"
  12353. type="1" >
  12354. </productMenu>
  12355. <productMenu id="meshIntercom"
  12356. type="20" >
  12357. <productMenuType version="2.9.9"
  12358. type="10"
  12359. />
  12360. </productMenu>
  12361. <productMenu id="bluetoothIntercom"
  12362. type="1" >
  12363. </productMenu>
  12364. <productMenu id="phone"
  12365. type="1" >
  12366. </productMenu>
  12367. <productMenu id="music"
  12368. type="1" >
  12369. </productMenu>
  12370. <productMenu id="fmradio"
  12371. type="1" >
  12372. </productMenu>
  12373. <productMenu id="deviceSetting"
  12374. type="1"
  12375. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12376. <productMenuURL version="3.2"
  12377. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12378. />
  12379. <productMenuURL version="3.0"
  12380. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12381. />
  12382. <productMenuURL version="2.2"
  12383. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12384. />
  12385. </productMenu>
  12386. <productMenu id="quickGuide"
  12387. type="1"
  12388. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12389. size="1.06MB" >
  12390. </productMenu>
  12391. <productMenu id="userGuide"
  12392. type="1"
  12393. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12394. size="3.15MB" >
  12395. </productMenu>
  12396. <productMenu id="volume"
  12397. type="1" >
  12398. </productMenu>
  12399. <productID id="3112"
  12400. />
  12401. <productGroupable type="0"
  12402. />
  12403. </product>
  12404. <product id="HD50S"
  12405. name="Boom! Audio N02"
  12406. series="30"
  12407. latestVersion="3.1"
  12408. show = "0" >
  12409. <productMenu id="protocol"
  12410. type="1"
  12411. url="0">
  12412. </productMenu>
  12413. <productMenu id="wa"
  12414. type="2" >
  12415. </productMenu>
  12416. <productMenu id="sip"
  12417. type="1" >
  12418. </productMenu>
  12419. <productMenu id="meshIntercom"
  12420. type="20" >
  12421. <productMenuType version="2.9.9"
  12422. type="10"
  12423. />
  12424. </productMenu>
  12425. <productMenu id="bluetoothIntercom"
  12426. type="1" >
  12427. </productMenu>
  12428. <productMenu id="phone"
  12429. type="1" >
  12430. </productMenu>
  12431. <productMenu id="music"
  12432. type="1" >
  12433. </productMenu>
  12434. <productMenu id="fmradio"
  12435. type="1" >
  12436. </productMenu>
  12437. <productMenu id="deviceSetting"
  12438. type="1"
  12439. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12440. <productMenuURL version="2.2"
  12441. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12442. />
  12443. </productMenu>
  12444. <productMenu id="quickGuide"
  12445. type="1"
  12446. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12447. size="1.06MB" >
  12448. </productMenu>
  12449. <productMenu id="userGuide"
  12450. type="1"
  12451. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12452. size="3.15MB" >
  12453. </productMenu>
  12454. <productMenu id="volume"
  12455. type="2" >
  12456. </productMenu>
  12457. <productID id="3114"
  12458. />
  12459. <productGroupable type="0"
  12460. />
  12461. </product>
  12462. <product id="HD50S"
  12463. name="Boom Audio 20S"
  12464. series="50"
  12465. latestVersion="2.5.2"
  12466. show = "0" >
  12467. <productMenu id="protocol"
  12468. type="0">
  12469. </productMenu>
  12470. <productMenu id="sip"
  12471. type="1" >
  12472. <productMenuType version="1.0"
  12473. type="0"
  12474. />
  12475. </productMenu>
  12476. <productMenu id="bluetoothIntercom"
  12477. type="1" >
  12478. <productMenuType version="1.0"
  12479. type="0"
  12480. />
  12481. </productMenu>
  12482. <productMenu id="intercomSetting"
  12483. type="1" >
  12484. </productMenu>
  12485. <productMenu id="phone"
  12486. type="2" >
  12487. </productMenu>
  12488. <productMenu id="fmradio"
  12489. type="3" >
  12490. </productMenu>
  12491. <productMenu id="deviceSetting"
  12492. type="1"
  12493. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12494. <productMenuURL version="2.4"
  12495. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12496. />
  12497. <productMenuURL version="1.5"
  12498. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12499. />
  12500. <productMenuURL version="1.4.1"
  12501. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12502. />
  12503. <productMenuURL version="1.1"
  12504. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12505. />
  12506. <productMenuURL version="1.0"
  12507. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12508. />
  12509. </productMenu>
  12510. <productMenu id="quickGuide"
  12511. type="1"
  12512. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12513. size="264KB" >
  12514. </productMenu>
  12515. <productMenu id="userGuide"
  12516. type="1"
  12517. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12518. size="3.09MB" >
  12519. </productMenu>
  12520. <productMenu id="connectGuide"
  12521. type="1"
  12522. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12523. size="1.12MB" >
  12524. </productMenu>
  12525. <productID id="4210"
  12526. />
  12527. <productProductKey key="11"
  12528. />
  12529. <productID id="4230"
  12530. />
  12531. <productProductKey key="11"
  12532. />
  12533. <productGroupable type="1"
  12534. />
  12535. </product>
  12536. <product id="HD50S"
  12537. name="Boom Audio 20S EVO"
  12538. series="50"
  12539. latestVersion="2.5.2"
  12540. show = "0" >
  12541. <productMenu id="protocol"
  12542. type="0">
  12543. </productMenu>
  12544. <productMenu id="sip"
  12545. type="1" >
  12546. <productMenuType version="1.0"
  12547. type="0"
  12548. />
  12549. </productMenu>
  12550. <productMenu id="bluetoothIntercom"
  12551. type="1" >
  12552. <productMenuType version="1.0"
  12553. type="0"
  12554. />
  12555. </productMenu>
  12556. <productMenu id="intercomSetting"
  12557. type="1" >
  12558. </productMenu>
  12559. <productMenu id="phone"
  12560. type="2" >
  12561. </productMenu>
  12562. <productMenu id="fmradio"
  12563. type="3" >
  12564. </productMenu>
  12565. <productMenu id="deviceSetting"
  12566. type="1"
  12567. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12568. <productMenuURL version="2.4"
  12569. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12570. />
  12571. <productMenuURL version="1.5"
  12572. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12573. />
  12574. <productMenuURL version="1.4.1"
  12575. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12576. />
  12577. <productMenuURL version="1.1"
  12578. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12579. />
  12580. <productMenuURL version="1.0"
  12581. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12582. />
  12583. </productMenu>
  12584. <productMenu id="quickGuide"
  12585. type="1"
  12586. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12587. size="321KB" >
  12588. </productMenu>
  12589. <productMenu id="userGuide"
  12590. type="1"
  12591. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12592. size="2.46MB" >
  12593. </productMenu>
  12594. <productID id="4230"
  12595. />
  12596. <productProductKey key="27"
  12597. />
  12598. <productGroupable type="1"
  12599. />
  12600. </product>
  12601. <product id="HD50S"
  12602. name="Boom! Audio 10S"
  12603. series="50"
  12604. latestVersion="1.1.3"
  12605. show = "0" >
  12606. <productMenu id="protocol"
  12607. type="0">
  12608. </productMenu>
  12609. <productMenu id="sip"
  12610. type="1" >
  12611. </productMenu>
  12612. <productMenu id="bluetoothIntercom"
  12613. type="1" >
  12614. </productMenu>
  12615. <productMenu id="phone"
  12616. type="2" >
  12617. </productMenu>
  12618. <productMenu id="fmradio"
  12619. type="3" >
  12620. </productMenu>
  12621. <productMenu id="deviceSetting"
  12622. type="1"
  12623. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12624. </productMenu>
  12625. <productMenu id="quickGuide"
  12626. type="1"
  12627. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12628. size="538KB" >
  12629. </productMenu>
  12630. <productMenu id="userGuide"
  12631. type="1"
  12632. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12633. size="1.55MB" >
  12634. </productMenu>
  12635. <productID id="5532"
  12636. />
  12637. <productGroupable type="0"
  12638. />
  12639. </product>
  12640. <product id="HD50S"
  12641. name="Boom! Audio N01 10R"
  12642. series="50"
  12643. latestVersion="1.1.3"
  12644. show = "0" >
  12645. <productMenu id="protocol"
  12646. type="0">
  12647. </productMenu>
  12648. <productMenu id="sip"
  12649. type="1" >
  12650. </productMenu>
  12651. <productMenu id="bluetoothIntercom"
  12652. type="1" >
  12653. </productMenu>
  12654. <productMenu id="phone"
  12655. type="2" >
  12656. </productMenu>
  12657. <productMenu id="fmradio"
  12658. type="3" >
  12659. </productMenu>
  12660. <productMenu id="deviceSetting"
  12661. type="1"
  12662. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12663. </productMenu>
  12664. <productMenu id="quickGuide"
  12665. type="1"
  12666. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12667. size="766KB" >
  12668. </productMenu>
  12669. <productMenu id="userGuide"
  12670. type="1"
  12671. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12672. size="1.45MB" >
  12673. </productMenu>
  12674. <productID id="5522"
  12675. />
  12676. <productGroupable type="0"
  12677. />
  12678. </product>
  12679. <product id="HD50S"
  12680. name="OUTRUSH-R N03"
  12681. series="50"
  12682. latestVersion="1.2.1"
  12683. show = "-1" >
  12684. <productMenu id="protocol"
  12685. type="0">
  12686. </productMenu>
  12687. <productMenu id="sip"
  12688. type="1" >
  12689. </productMenu>
  12690. <productMenu id="bluetoothIntercom"
  12691. type="1" >
  12692. </productMenu>
  12693. <productMenu id="phone"
  12694. type="2" >
  12695. </productMenu>
  12696. <productMenu id="fmradio"
  12697. type="3" >
  12698. </productMenu>
  12699. <productMenu id="deviceSetting"
  12700. type="1"
  12701. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12702. </productMenu>
  12703. <productMenu id="userGuide"
  12704. type="1"
  12705. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12706. size="660KB" >
  12707. </productMenu>
  12708. <productID id="5434"
  12709. />
  12710. <productGroupable type="0"
  12711. />
  12712. </product>
  12713. <product id="HD50S"
  12714. name="OUTRUSH-R N03"
  12715. series="50"
  12716. latestVersion="2.0"
  12717. show = "0" >
  12718. <productMenu id="protocol"
  12719. type="3" >
  12720. </productMenu>
  12721. <productMenu id="sip"
  12722. type="1" >
  12723. </productMenu>
  12724. <productMenu id="bluetoothIntercom"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="phone"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="fmradio"
  12731. type="1" >
  12732. </productMenu>
  12733. <productMenu id="deviceSetting"
  12734. type="1"
  12735. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12736. </productMenu>
  12737. <productMenu id="userGuide"
  12738. type="1"
  12739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12740. size="1.14MB" >
  12741. </productMenu>
  12742. <productID id="5441"
  12743. />
  12744. <productGroupable type="0"
  12745. />
  12746. </product>
  12747. <product id="5R"
  12748. name="5R"
  12749. series="5"
  12750. latestVersion="1.0.1"
  12751. show = "1" >
  12752. <productMenu id="protocol"
  12753. type="3" >
  12754. </productMenu>
  12755. <productMenu id="sip"
  12756. type="1" >
  12757. </productMenu>
  12758. <productMenu id="bluetoothIntercom"
  12759. type="1" >
  12760. </productMenu>
  12761. <productMenu id="phone"
  12762. type="1" >
  12763. </productMenu>
  12764. <productMenu id="fmradio"
  12765. type="1" >
  12766. </productMenu>
  12767. <productMenu id="deviceSetting"
  12768. type="1"
  12769. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12770. </productMenu>
  12771. <productMenu id="quickGuide"
  12772. type="0"
  12773. url=""
  12774. size="934KB" >
  12775. </productMenu>
  12776. <productMenu id="userGuide"
  12777. type="1"
  12778. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12779. size="1.14MB" >
  12780. </productMenu>
  12781. <productMenu id="connectGuide"
  12782. type="1"
  12783. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12784. size="1.12MB" >
  12785. </productMenu>
  12786. <productID id="5591"
  12787. />
  12788. <productGroupable type="0"
  12789. />
  12790. </product>
  12791. <product id="5R"
  12792. name="5R LITE"
  12793. series="5"
  12794. latestVersion="1.0.1"
  12795. show = "1" >
  12796. <productMenu id="protocol"
  12797. type="3" >
  12798. </productMenu>
  12799. <productMenu id="sip"
  12800. type="1" >
  12801. </productMenu>
  12802. <productMenu id="bluetoothIntercom"
  12803. type="1" >
  12804. </productMenu>
  12805. <productMenu id="phone"
  12806. type="1" >
  12807. </productMenu>
  12808. <productMenu id="fmradio"
  12809. type="1" >
  12810. </productMenu>
  12811. <productMenu id="deviceSetting"
  12812. type="1"
  12813. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12814. </productMenu>
  12815. <productMenu id="quickGuide"
  12816. type="0"
  12817. url=""
  12818. size="934KB" >
  12819. </productMenu>
  12820. <productMenu id="userGuide"
  12821. type="1"
  12822. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12823. size="1.14MB" >
  12824. </productMenu>
  12825. <productMenu id="connectGuide"
  12826. type="1"
  12827. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12828. size="1.12MB" >
  12829. </productMenu>
  12830. <productID id="5592"
  12831. />
  12832. <productGroupable type="0"
  12833. />
  12834. </product>
  12835. <product id="50RLE"
  12836. name="50R LE"
  12837. series="50"
  12838. latestVersion="1.1"
  12839. show = "0" >
  12840. <productMenu id="protocol"
  12841. type="2" >
  12842. </productMenu>
  12843. <productMenu id="alexa"
  12844. type="0" >
  12845. </productMenu>
  12846. <productMenu id="sip"
  12847. type="1" >
  12848. </productMenu>
  12849. <productMenu id="meshIntercom"
  12850. type="30" >
  12851. </productMenu>
  12852. <productMenu id="meshIntercom+"
  12853. type="3"
  12854. url="2" >
  12855. <productMenuType version="1.0.9"
  12856. type="2"
  12857. />
  12858. </productMenu>
  12859. <productMenu id="waveIntercom"
  12860. type="1" >
  12861. <productMenuType version="1.0.9"
  12862. type="0"
  12863. />
  12864. </productMenu>
  12865. <productMenu id="bluetoothIntercom"
  12866. type="1" >
  12867. </productMenu>
  12868. <productMenu id="phone"
  12869. type="1" >
  12870. </productMenu>
  12871. <productMenu id="music"
  12872. type="1" >
  12873. </productMenu>
  12874. <productMenu id="fmradio"
  12875. type="0" >
  12876. </productMenu>
  12877. <productMenu id="deviceSetting"
  12878. type="1"
  12879. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12880. <productMenuURL version="1.0.9"
  12881. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12882. />
  12883. </productMenu>
  12884. <productMenu id="quickGuide"
  12885. type="0"
  12886. url=""
  12887. size="344KB" >
  12888. </productMenu>
  12889. <productMenu id="userGuide"
  12890. type="0"
  12891. url=""
  12892. size="3.41MB" >
  12893. </productMenu>
  12894. <productMenu id="volume"
  12895. type="11" >
  12896. </productMenu>
  12897. <productMenu id="battery"
  12898. type="1" >
  12899. </productMenu>
  12900. <productID id="3223"
  12901. />
  12902. <productGroupable type="0"
  12903. />
  12904. </product>
  12905. <product id="5RLOUIS"
  12906. name="5R LOUIS EDITION"
  12907. series="5"
  12908. latestVersion="1.0"
  12909. show = "-1" >
  12910. <productMenu id="protocol"
  12911. type="3" >
  12912. </productMenu>
  12913. <productMenu id="sip"
  12914. type="1" >
  12915. </productMenu>
  12916. <productMenu id="bluetoothIntercom"
  12917. type="1" >
  12918. </productMenu>
  12919. <productMenu id="phone"
  12920. type="1" >
  12921. </productMenu>
  12922. <productMenu id="fmradio"
  12923. type="1" >
  12924. </productMenu>
  12925. <productMenu id="deviceSetting"
  12926. type="1"
  12927. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12928. </productMenu>
  12929. <productMenu id="quickGuide"
  12930. type="0"
  12931. url=""
  12932. size="934KB" >
  12933. </productMenu>
  12934. <productMenu id="userGuide"
  12935. type="0"
  12936. url=""
  12937. size="1.14MB" >
  12938. </productMenu>
  12939. <productID id="5597"
  12940. />
  12941. <productGroupable type="0"
  12942. />
  12943. </product>
  12944. <product id="5S"
  12945. name="Ridekont 5S"
  12946. series="5"
  12947. latestVersion="2.3"
  12948. show = "-1" >
  12949. <productMenu id="protocol"
  12950. type="3" >
  12951. </productMenu>
  12952. <productMenu id="sip"
  12953. type="1" >
  12954. </productMenu>
  12955. <productMenu id="bluetoothIntercom"
  12956. type="1" >
  12957. </productMenu>
  12958. <productMenu id="phone"
  12959. type="1" >
  12960. </productMenu>
  12961. <productMenu id="fmradio"
  12962. type="0" >
  12963. </productMenu>
  12964. <productMenu id="deviceSetting"
  12965. type="1"
  12966. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12967. </productMenu>
  12968. <productMenu id="quickGuide"
  12969. type="0"
  12970. url=""
  12971. size="934KB" >
  12972. </productMenu>
  12973. <productMenu id="userGuide"
  12974. type="1"
  12975. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12976. size="1.14MB" >
  12977. </productMenu>
  12978. <productID id="5589"
  12979. />
  12980. <productGroupable type="0"
  12981. />
  12982. </product>
  12983. <product id="5R"
  12984. name="Ridekont 5R"
  12985. series="5"
  12986. latestVersion="1.0"
  12987. show = "0" >
  12988. <productMenu id="protocol"
  12989. type="3" >
  12990. </productMenu>
  12991. <productMenu id="sip"
  12992. type="1" >
  12993. </productMenu>
  12994. <productMenu id="bluetoothIntercom"
  12995. type="1" >
  12996. </productMenu>
  12997. <productMenu id="phone"
  12998. type="1" >
  12999. </productMenu>
  13000. <productMenu id="fmradio"
  13001. type="1" >
  13002. </productMenu>
  13003. <productMenu id="deviceSetting"
  13004. type="1"
  13005. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  13006. </productMenu>
  13007. <productMenu id="quickGuide"
  13008. type="1"
  13009. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  13010. size="934KB" >
  13011. </productMenu>
  13012. <productMenu id="userGuide"
  13013. type="1"
  13014. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  13015. size="1.14MB" >
  13016. </productMenu>
  13017. <productID id="5593"
  13018. />
  13019. <productGroupable type="0"
  13020. />
  13021. </product>
  13022. <product id="5R"
  13023. name="Ridekont 5R LITE"
  13024. series="5"
  13025. latestVersion="1.0"
  13026. show = "0" >
  13027. <productMenu id="protocol"
  13028. type="3" >
  13029. </productMenu>
  13030. <productMenu id="sip"
  13031. type="1" >
  13032. </productMenu>
  13033. <productMenu id="bluetoothIntercom"
  13034. type="1" >
  13035. </productMenu>
  13036. <productMenu id="phone"
  13037. type="1" >
  13038. </productMenu>
  13039. <productMenu id="fmradio"
  13040. type="1" >
  13041. </productMenu>
  13042. <productMenu id="deviceSetting"
  13043. type="1"
  13044. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  13045. </productMenu>
  13046. <productMenu id="quickGuide"
  13047. type="0"
  13048. url=""
  13049. size="934KB" >
  13050. </productMenu>
  13051. <productMenu id="userGuide"
  13052. type="1"
  13053. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  13054. size="1.14MB" >
  13055. </productMenu>
  13056. <productID id="5594"
  13057. />
  13058. <productGroupable type="0"
  13059. />
  13060. </product>
  13061. <product id="SA30"
  13062. name="SA30"
  13063. series="SA"
  13064. latestVersion="1.0.3"
  13065. latestVersionVoicePrompt="0.15"
  13066. show = "-1" >
  13067. <productMenu id="protocol"
  13068. type="2" >
  13069. </productMenu>
  13070. <productMenu id="ota"
  13071. type="2" >
  13072. <otaPackages>
  13073. <package
  13074. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  13075. size="3144148"
  13076. />
  13077. </otaPackages>
  13078. </productMenu>
  13079. <productMenu id="meshIntercom"
  13080. type="30" >
  13081. </productMenu>
  13082. <productMenu id="meshIntercom+"
  13083. type="3"
  13084. url="2" >
  13085. </productMenu>
  13086. <productMenu id="phone"
  13087. type="1" >
  13088. </productMenu>
  13089. <productMenu id="music"
  13090. type="1" >
  13091. </productMenu>
  13092. <productMenu id="musicSharing"
  13093. type="0" >
  13094. </productMenu>
  13095. <productMenu id="deviceSetting"
  13096. type="1"
  13097. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  13098. </productMenu>
  13099. <productMenu id="quickGuide"
  13100. type="0"
  13101. url=""
  13102. size="1.12MB" >
  13103. </productMenu>
  13104. <productMenu id="userGuide"
  13105. type="1"
  13106. url=""
  13107. size="2.0MB" >
  13108. </productMenu>
  13109. <productMenu id="videoGuide"
  13110. type="0"
  13111. url=""
  13112. size="3.41MB" >
  13113. </productMenu>
  13114. <productMenu id="volume"
  13115. type="12" >
  13116. </productMenu>
  13117. <productMenu id="battery"
  13118. type="1" >
  13119. </productMenu>
  13120. <productID id="6852"
  13121. />
  13122. <productGroupable type="0"
  13123. />
  13124. </product>
  13125. <product id="I30"
  13126. name="I30"
  13127. series="I"
  13128. latestVersion="1.0.3"
  13129. latestVersionVoicePrompt="0.2"
  13130. show = "-1" >
  13131. <productMenu id="protocol"
  13132. type="2" >
  13133. </productMenu>
  13134. <productMenu id="ota"
  13135. type="2" >
  13136. <otaPackages>
  13137. <package
  13138. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  13139. size="3144148"
  13140. />
  13141. </otaPackages>
  13142. </productMenu>
  13143. <productMenu id="meshIntercom"
  13144. type="30" >
  13145. </productMenu>
  13146. <productMenu id="meshIntercom+"
  13147. type="3"
  13148. url="2" >
  13149. </productMenu>
  13150. <productMenu id="phone"
  13151. type="1" >
  13152. </productMenu>
  13153. <productMenu id="music"
  13154. type="1" >
  13155. </productMenu>
  13156. <productMenu id="musicSharing"
  13157. type="0" >
  13158. </productMenu>
  13159. <productMenu id="deviceSetting"
  13160. type="1"
  13161. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  13162. </productMenu>
  13163. <productMenu id="quickGuide"
  13164. type="0"
  13165. url=""
  13166. size="1.12MB" >
  13167. </productMenu>
  13168. <productMenu id="userGuide"
  13169. type="1"
  13170. url=""
  13171. size="2.10MB" >
  13172. </productMenu>
  13173. <productMenu id="videoGuide"
  13174. type="0"
  13175. url=""
  13176. size="3.11MB" >
  13177. </productMenu>
  13178. <productMenu id="volume"
  13179. type="12" >
  13180. </productMenu>
  13181. <productMenu id="battery"
  13182. type="1" >
  13183. </productMenu>
  13184. <productID id="6853"
  13185. />
  13186. <productGroupable type="0"
  13187. />
  13188. </product>
  13189. <product id="LS2C30"
  13190. name="LS2-C30"
  13191. series="C"
  13192. latestVersion="1.0"
  13193. latestVersionVoicePrompt="0.13"
  13194. show = "-1" >
  13195. <productMenu id="protocol"
  13196. type="2" >
  13197. </productMenu>
  13198. <productMenu id="ota"
  13199. type="2" >
  13200. <otaPackages>
  13201. <package
  13202. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2-C30-v1.0-build0.img"
  13203. size="3144148"
  13204. />
  13205. </otaPackages>
  13206. </productMenu>
  13207. <productMenu id="meshIntercom+"
  13208. type="3"
  13209. url="2" >
  13210. </productMenu>
  13211. <productMenu id="waveIntercom"
  13212. type="1" >
  13213. </productMenu>
  13214. <productMenu id="phone"
  13215. type="1" >
  13216. </productMenu>
  13217. <productMenu id="music"
  13218. type="1" >
  13219. </productMenu>
  13220. <productMenu id="musicSharing"
  13221. type="0" >
  13222. </productMenu>
  13223. <productMenu id="deviceSetting"
  13224. type="1"
  13225. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13226. </productMenu>
  13227. <productMenu id="quickGuide"
  13228. type="0"
  13229. url=""
  13230. size="1.17MB" >
  13231. </productMenu>
  13232. <productMenu id="userGuide"
  13233. type="1"
  13234. url=""
  13235. size="2.0MB" >
  13236. </productMenu>
  13237. <productMenu id="videoGuide"
  13238. type="0"
  13239. url=""
  13240. size="3.41MB" >
  13241. </productMenu>
  13242. <productMenu id="volume"
  13243. type="12" >
  13244. </productMenu>
  13245. <productMenu id="battery"
  13246. type="1" >
  13247. </productMenu>
  13248. <productID id="685E"
  13249. />
  13250. <productGroupable type="0"
  13251. />
  13252. </product>
  13253. <product id="C30EVO"
  13254. name="C30 EVO"
  13255. series="C"
  13256. latestVersion="1.0"
  13257. latestVersionVoicePrompt="0.13"
  13258. show = "-1" >
  13259. <productMenu id="protocol"
  13260. type="2" >
  13261. </productMenu>
  13262. <productMenu id="ota"
  13263. type="0" >
  13264. <otaPackages>
  13265. <package
  13266. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13267. size="3144148"
  13268. />
  13269. </otaPackages>
  13270. </productMenu>
  13271. <productMenu id="meshIntercom+"
  13272. type="3"
  13273. url="2" >
  13274. </productMenu>
  13275. <productMenu id="waveIntercom"
  13276. type="1" >
  13277. </productMenu>
  13278. <productMenu id="phone"
  13279. type="1" >
  13280. </productMenu>
  13281. <productMenu id="music"
  13282. type="1" >
  13283. </productMenu>
  13284. <productMenu id="musicSharing"
  13285. type="0" >
  13286. </productMenu>
  13287. <productMenu id="deviceSetting"
  13288. type="1"
  13289. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13290. </productMenu>
  13291. <productMenu id="quickGuide"
  13292. type="0"
  13293. url=""
  13294. size="1.17MB" >
  13295. </productMenu>
  13296. <productMenu id="userGuide"
  13297. type="1"
  13298. url=""
  13299. size="2.0MB" >
  13300. </productMenu>
  13301. <productMenu id="videoGuide"
  13302. type="0"
  13303. url=""
  13304. size="3.41MB" >
  13305. </productMenu>
  13306. <productMenu id="volume"
  13307. type="12" >
  13308. </productMenu>
  13309. <productMenu id="battery"
  13310. type="1" >
  13311. </productMenu>
  13312. <productID id="685B"
  13313. />
  13314. <productGroupable type="0"
  13315. />
  13316. </product>
  13317. <product id="C30"
  13318. name="SENA C30"
  13319. series="C"
  13320. latestVersion="1.2.4"
  13321. latestVersionVoicePrompt="0.13"
  13322. show = "1" >
  13323. <productMenu id="protocol"
  13324. type="2" >
  13325. </productMenu>
  13326. <productMenu id="alexa"
  13327. type="0" >
  13328. </productMenu>
  13329. <productMenu id="ota"
  13330. type="2" >
  13331. <otaPackages>
  13332. <package
  13333. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13334. size="3144148"
  13335. />
  13336. </otaPackages>
  13337. </productMenu>
  13338. <productMenu id="wa"
  13339. type="0" >
  13340. </productMenu>
  13341. <productMenu id="meshIntercom"
  13342. type="30" >
  13343. </productMenu>
  13344. <productMenu id="meshIntercom+"
  13345. type="3"
  13346. url="2" >
  13347. <productMenuType version="1.0.9"
  13348. type="2"
  13349. />
  13350. </productMenu>
  13351. <productMenu id="waveIntercom"
  13352. type="1" >
  13353. <productMenuType version="1.1.9"
  13354. type="0"
  13355. />
  13356. </productMenu>
  13357. <productMenu id="phone"
  13358. type="1" >
  13359. </productMenu>
  13360. <productMenu id="music"
  13361. type="1" >
  13362. </productMenu>
  13363. <productMenu id="musicSharing"
  13364. type="0" >
  13365. </productMenu>
  13366. <productMenu id="deviceSetting"
  13367. type="1"
  13368. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13369. <productMenuURL version="1.1.3"
  13370. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13371. />
  13372. <productMenuURL version="1.0.9"
  13373. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13374. />
  13375. </productMenu>
  13376. <productMenu id="quickGuide"
  13377. type="1"
  13378. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13379. size="1.12MB" >
  13380. </productMenu>
  13381. <productMenu id="userGuide"
  13382. type="0"
  13383. url=""
  13384. size="2.0MB" >
  13385. </productMenu>
  13386. <productMenu id="videoGuide"
  13387. type="0"
  13388. url=""
  13389. size="3.41MB" >
  13390. </productMenu>
  13391. <productMenu id="volume"
  13392. type="12" >
  13393. </productMenu>
  13394. <productMenu id="battery"
  13395. type="1" >
  13396. </productMenu>
  13397. <productID id="683A"
  13398. />
  13399. <productGroupable type="0"
  13400. />
  13401. </product>
  13402. <product id="C20"
  13403. name="C20"
  13404. series="C"
  13405. latestVersion="1.0"
  13406. show = "1" >
  13407. <productMenu id="protocol"
  13408. type="3" >
  13409. </productMenu>
  13410. <productMenu id="sip"
  13411. type="1" >
  13412. </productMenu>
  13413. <productMenu id="bluetoothIntercom"
  13414. type="1" >
  13415. </productMenu>
  13416. <productMenu id="phone"
  13417. type="1" >
  13418. </productMenu>
  13419. <productMenu id="deviceSetting"
  13420. type="1"
  13421. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13422. </productMenu>
  13423. <productMenu id="quickGuide"
  13424. type="1"
  13425. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13426. size="934KB" >
  13427. </productMenu>
  13428. <productMenu id="userGuide"
  13429. type="1"
  13430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13431. size="1.14MB" >
  13432. </productMenu>
  13433. <productID id="3701"
  13434. />
  13435. <productGroupable type="0"
  13436. />
  13437. </product>
  13438. <product id="C10"
  13439. name="C10"
  13440. series="C"
  13441. latestVersion="1.4.4"
  13442. show = "1" >
  13443. <productMenu id="protocol"
  13444. type="3" >
  13445. </productMenu>
  13446. <productMenu id="sip"
  13447. type="1" >
  13448. </productMenu>
  13449. <productMenu id="bluetoothIntercom"
  13450. type="1" >
  13451. </productMenu>
  13452. <productMenu id="phone"
  13453. type="1" >
  13454. </productMenu>
  13455. <productMenu id="fmradio"
  13456. type="0" >
  13457. </productMenu>
  13458. <productMenu id="deviceSetting"
  13459. type="1"
  13460. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13461. </productMenu>
  13462. <productMenu id="userGuide"
  13463. type="1"
  13464. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13465. size="1.14MB" >
  13466. </productMenu>
  13467. <productID id="5595"
  13468. />
  13469. <productGroupable type="0"
  13470. />
  13471. </product>
  13472. <product id="CA1"
  13473. name="CA1"
  13474. series="C"
  13475. latestVersion="0.2"
  13476. show = "-1" >
  13477. <productMenu id="protocol"
  13478. type="2" >
  13479. </productMenu>
  13480. <productMenu id="ota"
  13481. type="2" >
  13482. <otaPackages>
  13483. <package
  13484. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13485. size="3144148"
  13486. />
  13487. </otaPackages>
  13488. </productMenu>
  13489. <productMenu id="phone"
  13490. type="1" >
  13491. </productMenu>
  13492. <productMenu id="music"
  13493. type="1" >
  13494. </productMenu>
  13495. <productMenu id="musicSharing"
  13496. type="0" >
  13497. </productMenu>
  13498. <productMenu id="deviceSetting"
  13499. type="1"
  13500. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13501. </productMenu>
  13502. <productMenu id="quickGuide"
  13503. type="1"
  13504. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13505. size="1.12MB" >
  13506. </productMenu>
  13507. <productMenu id="userGuide"
  13508. type="0"
  13509. url=""
  13510. size="2.0MB" >
  13511. </productMenu>
  13512. <productMenu id="videoGuide"
  13513. type="1"
  13514. url=""
  13515. size="3.41MB" >
  13516. </productMenu>
  13517. <productMenu id="volume"
  13518. type="12" >
  13519. </productMenu>
  13520. <productMenu id="battery"
  13521. type="1" >
  13522. </productMenu>
  13523. <productID id="5F01"
  13524. />
  13525. <productGroupable type="0"
  13526. />
  13527. </product>
  13528. <product id="J30"
  13529. name="J30"
  13530. series="J"
  13531. latestVersion="1.2.4"
  13532. latestVersionVoicePrompt="0.14"
  13533. show = "0" >
  13534. <productMenu id="protocol"
  13535. type="2" >
  13536. </productMenu>
  13537. <productMenu id="alexa"
  13538. type="0" >
  13539. </productMenu>
  13540. <productMenu id="ota"
  13541. type="2" >
  13542. <otaPackages>
  13543. <package
  13544. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13545. size="3144148"
  13546. />
  13547. </otaPackages>
  13548. </productMenu>
  13549. <productMenu id="wa"
  13550. type="0" >
  13551. </productMenu>
  13552. <productMenu id="meshIntercom"
  13553. type="30" >
  13554. </productMenu>
  13555. <productMenu id="meshIntercom+"
  13556. type="3"
  13557. url="2" >
  13558. <productMenuType version="1.0.9"
  13559. type="2"
  13560. />
  13561. </productMenu>
  13562. <productMenu id="waveIntercom"
  13563. type="1" >
  13564. <productMenuType version="1.1.9"
  13565. type="0"
  13566. />
  13567. </productMenu>
  13568. <productMenu id="phone"
  13569. type="1" >
  13570. </productMenu>
  13571. <productMenu id="music"
  13572. type="1" >
  13573. </productMenu>
  13574. <productMenu id="musicSharing"
  13575. type="0" >
  13576. </productMenu>
  13577. <productMenu id="deviceSetting"
  13578. type="1"
  13579. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13580. <productMenuURL version="1.0.9"
  13581. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13582. />
  13583. </productMenu>
  13584. <productMenu id="quickGuide"
  13585. type="0"
  13586. url=""
  13587. size="1.12MB" >
  13588. </productMenu>
  13589. <productMenu id="userGuide"
  13590. type="1"
  13591. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13592. size="2.0MB" >
  13593. </productMenu>
  13594. <productMenu id="videoGuide"
  13595. type="0"
  13596. url=""
  13597. size="3.41MB" >
  13598. </productMenu>
  13599. <productMenu id="volume"
  13600. type="12" >
  13601. </productMenu>
  13602. <productMenu id="battery"
  13603. type="1" >
  13604. </productMenu>
  13605. <productID id="6848"
  13606. />
  13607. <productGroupable type="0"
  13608. />
  13609. </product>
  13610. <product id="J10"
  13611. name="J10"
  13612. series="5"
  13613. latestVersion="1.1.4"
  13614. show = "0" >
  13615. <productMenu id="protocol"
  13616. type="3" >
  13617. </productMenu>
  13618. <productMenu id="sip"
  13619. type="1" >
  13620. </productMenu>
  13621. <productMenu id="bluetoothIntercom"
  13622. type="1" >
  13623. </productMenu>
  13624. <productMenu id="phone"
  13625. type="1" >
  13626. </productMenu>
  13627. <productMenu id="fmradio"
  13628. type="0" >
  13629. </productMenu>
  13630. <productMenu id="deviceSetting"
  13631. type="1"
  13632. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13633. </productMenu>
  13634. <productMenu id="userGuide"
  13635. type="1"
  13636. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13637. size="1.14MB" >
  13638. </productMenu>
  13639. <productID id="5598"
  13640. />
  13641. <productGroupable type="0"
  13642. />
  13643. </product>
  13644. <product id="B20"
  13645. name="B20"
  13646. series="B"
  13647. latestVersion="1.1.4"
  13648. latestVersionVoicePrompt="0.14"
  13649. show = "0" >
  13650. <productMenu id="protocol"
  13651. type="2" >
  13652. </productMenu>
  13653. <productMenu id="alexa"
  13654. type="0" >
  13655. </productMenu>
  13656. <productMenu id="ota"
  13657. type="2" >
  13658. <otaPackages>
  13659. <package
  13660. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13661. size="3144148"
  13662. />
  13663. </otaPackages>
  13664. </productMenu>
  13665. <productMenu id="wa"
  13666. type="0" >
  13667. </productMenu>
  13668. <productMenu id="meshIntercom"
  13669. type="30" >
  13670. </productMenu>
  13671. <productMenu id="phone"
  13672. type="1" >
  13673. </productMenu>
  13674. <productMenu id="music"
  13675. type="1" >
  13676. </productMenu>
  13677. <productMenu id="musicSharing"
  13678. type="0" >
  13679. </productMenu>
  13680. <productMenu id="deviceSetting"
  13681. type="1"
  13682. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13683. <productMenuURL version="1.0.9"
  13684. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13685. />
  13686. </productMenu>
  13687. <productMenu id="quickGuide"
  13688. type="0"
  13689. url=""
  13690. size="1.12MB" >
  13691. </productMenu>
  13692. <productMenu id="userGuide"
  13693. type="1"
  13694. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13695. size="2.0MB" >
  13696. </productMenu>
  13697. <productMenu id="videoGuide"
  13698. type="0"
  13699. url=""
  13700. size="3.41MB" >
  13701. </productMenu>
  13702. <productMenu id="volume"
  13703. type="12" >
  13704. </productMenu>
  13705. <productMenu id="battery"
  13706. type="1" >
  13707. </productMenu>
  13708. <productID id="6847"
  13709. />
  13710. <productGroupable type="0"
  13711. />
  13712. </product>
  13713. <product id="B10"
  13714. name="B10"
  13715. series="5"
  13716. latestVersion="1.2.4"
  13717. show = "0" >
  13718. <productMenu id="protocol"
  13719. type="3" >
  13720. </productMenu>
  13721. <productMenu id="sip"
  13722. type="1" >
  13723. </productMenu>
  13724. <productMenu id="bluetoothIntercom"
  13725. type="1" >
  13726. </productMenu>
  13727. <productMenu id="phone"
  13728. type="1" >
  13729. </productMenu>
  13730. <productMenu id="fmradio"
  13731. type="0" >
  13732. </productMenu>
  13733. <productMenu id="deviceSetting"
  13734. type="1"
  13735. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13736. </productMenu>
  13737. <productMenu id="userGuide"
  13738. type="1"
  13739. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13740. size="1.14MB" >
  13741. </productMenu>
  13742. <productID id="5596"
  13743. />
  13744. <productGroupable type="0"
  13745. />
  13746. </product>
  13747. <product id="E30"
  13748. name="E30"
  13749. series="E"
  13750. latestVersion="1.1.4"
  13751. latestVersionVoicePrompt="0.14"
  13752. show = "0" >
  13753. <productMenu id="protocol"
  13754. type="2" >
  13755. </productMenu>
  13756. <productMenu id="alexa"
  13757. type="0" >
  13758. </productMenu>
  13759. <productMenu id="ota"
  13760. type="2" >
  13761. <otaPackages>
  13762. <package
  13763. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13764. size="3144148"
  13765. />
  13766. </otaPackages>
  13767. </productMenu>
  13768. <productMenu id="wa"
  13769. type="0" >
  13770. </productMenu>
  13771. <productMenu id="meshIntercom"
  13772. type="30" >
  13773. </productMenu>
  13774. <productMenu id="meshIntercom+"
  13775. type="3"
  13776. url="2" >
  13777. </productMenu>
  13778. <productMenu id="waveIntercom"
  13779. type="1" >
  13780. <productMenuType version="1.0.9"
  13781. type="0"
  13782. />
  13783. </productMenu>
  13784. <productMenu id="phone"
  13785. type="1" >
  13786. </productMenu>
  13787. <productMenu id="music"
  13788. type="1" >
  13789. </productMenu>
  13790. <productMenu id="musicSharing"
  13791. type="0" >
  13792. </productMenu>
  13793. <productMenu id="deviceSetting"
  13794. type="1"
  13795. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13796. </productMenu>
  13797. <productMenu id="quickGuide"
  13798. type="0"
  13799. url=""
  13800. size="1.12MB" >
  13801. </productMenu>
  13802. <productMenu id="userGuide"
  13803. type="1"
  13804. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13805. size="2.0MB" >
  13806. </productMenu>
  13807. <productMenu id="videoGuide"
  13808. type="0"
  13809. url=""
  13810. size="3.41MB" >
  13811. </productMenu>
  13812. <productMenu id="volume"
  13813. type="12" >
  13814. </productMenu>
  13815. <productMenu id="battery"
  13816. type="1" >
  13817. </productMenu>
  13818. <productID id="6846"
  13819. />
  13820. <productGroupable type="0"
  13821. />
  13822. </product>
  13823. <product id="ACSRAM"
  13824. name="ACS-RAM"
  13825. series="ACS"
  13826. latestVersion="1.0.5"
  13827. show = "1" >
  13828. <productMenu id="protocol"
  13829. type="3" >
  13830. </productMenu>
  13831. <productMenu id="sip"
  13832. type="1" >
  13833. </productMenu>
  13834. <productMenu id="bluetoothIntercom"
  13835. type="1" >
  13836. </productMenu>
  13837. <productMenu id="deviceSetting"
  13838. type="1"
  13839. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13840. <productMenuURL version="1.0.9"
  13841. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13842. />
  13843. </productMenu>
  13844. <productMenu id="quickGuide"
  13845. type="1"
  13846. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13847. size="344KB" >
  13848. </productMenu>
  13849. <productMenu id="userGuide"
  13850. type="1"
  13851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13852. size="1.14MB" >
  13853. </productMenu>
  13854. <productMenu id="connectGuide"
  13855. type="1"
  13856. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13857. size="1.12MB" >
  13858. </productMenu>
  13859. <productID id="3400"
  13860. />
  13861. <productGroupable type="0"
  13862. />
  13863. </product>
  13864. <product id="ACS10"
  13865. name="ACS10"
  13866. series="ACS"
  13867. latestVersion="1.0.2"
  13868. show = "1" >
  13869. <productMenu id="protocol"
  13870. type="0">
  13871. </productMenu>
  13872. <productMenu id="sip"
  13873. type="1" >
  13874. </productMenu>
  13875. <productMenu id="bluetoothIntercom"
  13876. type="1" >
  13877. </productMenu>
  13878. <productMenu id="phone"
  13879. type="2" >
  13880. </productMenu>
  13881. <productMenu id="deviceSetting"
  13882. type="1"
  13883. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13884. </productMenu>
  13885. <productMenu id="quickGuide"
  13886. type="1"
  13887. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13888. size="970KB" >
  13889. </productMenu>
  13890. <productMenu id="userGuide"
  13891. type="1"
  13892. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13893. size="1.26MB" >
  13894. </productMenu>
  13895. <productMenu id="connectGuide"
  13896. type="1"
  13897. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13898. size="1.12MB" >
  13899. </productMenu>
  13900. <productID id="3300"
  13901. />
  13902. <productGroupable type="0"
  13903. />
  13904. </product>
  13905. <product id="DWO7ProMesh"
  13906. name="DWO 7 Pro Mesh"
  13907. series="50"
  13908. latestVersion="1.1"
  13909. latestVersionVoicePrompt="0.9"
  13910. show = "0" >
  13911. <productMenu id="protocol"
  13912. type="2" >
  13913. </productMenu>
  13914. <productMenu id="alexa"
  13915. type="0" >
  13916. </productMenu>
  13917. <productMenu id="ota"
  13918. type="2" >
  13919. <otaPackages>
  13920. <package
  13921. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13922. size="2945812"
  13923. />
  13924. </otaPackages>
  13925. </productMenu>
  13926. <productMenu id="wa"
  13927. type="0" >
  13928. </productMenu>
  13929. <productMenu id="meshIntercom"
  13930. type="20" >
  13931. </productMenu>
  13932. <productMenu id="meshIntercom+"
  13933. type="3"
  13934. url="2" >
  13935. <productMenuType version="1.0.9"
  13936. type="2"
  13937. />
  13938. <productMenuURL version="2.1.1"
  13939. url="0"
  13940. />
  13941. </productMenu>
  13942. <productMenu id="waveIntercom"
  13943. type="1" >
  13944. <productMenuType version="1.0.9"
  13945. type="0"
  13946. />
  13947. </productMenu>
  13948. <productMenu id="phone"
  13949. type="1" >
  13950. </productMenu>
  13951. <productMenu id="music"
  13952. type="1" >
  13953. </productMenu>
  13954. <productMenu id="fmradio"
  13955. type="1" >
  13956. </productMenu>
  13957. <productMenu id="musicSharing"
  13958. type="0" >
  13959. </productMenu>
  13960. <productMenu id="deviceSetting"
  13961. type="1"
  13962. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13963. <productMenuURL version="1.0.9"
  13964. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13965. />
  13966. </productMenu>
  13967. <productMenu id="quickGuide"
  13968. type="1"
  13969. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13970. size="1.12MB" >
  13971. </productMenu>
  13972. <productMenu id="userGuide"
  13973. type="1"
  13974. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13975. size="2.0MB" >
  13976. </productMenu>
  13977. <productMenu id="volume"
  13978. type="12" >
  13979. </productMenu>
  13980. <productMenu id="battery"
  13981. type="1" >
  13982. </productMenu>
  13983. <productID id="6806"
  13984. />
  13985. <productGroupable type="0"
  13986. />
  13987. </product>
  13988. <product id="ERA1X"
  13989. name="ERA 1 X"
  13990. series="UCOM"
  13991. latestVersion="0.2.1"
  13992. latestVersionMesh="0.19"
  13993. latestVersionVoicePrompt="1.2"
  13994. show = "-1" >
  13995. <productMenu id="protocol"
  13996. type="2" >
  13997. </productMenu>
  13998. <productMenu id="ota"
  13999. type="2" >
  14000. <otaLanguages>
  14001. <otaLanguage
  14002. id="0"
  14003. name="English"
  14004. package="0"
  14005. />
  14006. <otaLanguage
  14007. id="0"
  14008. name="French"
  14009. package="1"
  14010. />
  14011. <otaLanguage
  14012. id="0"
  14013. name="Spanish"
  14014. package="2"
  14015. />
  14016. <otaLanguage
  14017. id="0"
  14018. name="Italian"
  14019. package="3"
  14020. />
  14021. <otaLanguage
  14022. id="0"
  14023. name="German"
  14024. package="4"
  14025. />
  14026. <otaLanguage
  14027. id="0"
  14028. name="Dutch"
  14029. package="5"
  14030. />
  14031. <otaLanguage
  14032. id="0"
  14033. name="Russian"
  14034. package="6"
  14035. />
  14036. <otaLanguage
  14037. id="0"
  14038. name="Chinese"
  14039. package="7"
  14040. />
  14041. <otaLanguage
  14042. id="0"
  14043. name="Korean"
  14044. package="8"
  14045. />
  14046. <otaLanguage
  14047. id="0"
  14048. name="Japanese"
  14049. package="9"
  14050. />
  14051. <otaLanguage
  14052. id="0"
  14053. name="Finnish"
  14054. package="10"
  14055. />
  14056. <otaLanguage
  14057. id="0"
  14058. name="Polish"
  14059. package="11"
  14060. />
  14061. <otaLanguage
  14062. id="0"
  14063. name="Czech"
  14064. package="12"
  14065. />
  14066. <otaLanguage
  14067. id="0"
  14068. name="Danish"
  14069. package="13"
  14070. />
  14071. <otaLanguage
  14072. id="0"
  14073. name="Norwegian"
  14074. package="14"
  14075. />
  14076. <otaLanguage
  14077. id="0"
  14078. name="Swedish"
  14079. package="15"
  14080. />
  14081. <otaLanguage
  14082. id="0"
  14083. name="Turkish"
  14084. package="16"
  14085. />
  14086. <otaLanguage
  14087. id="0"
  14088. name="Hungarian"
  14089. package="17"
  14090. />
  14091. <otaLanguage
  14092. id="0"
  14093. name="Portuguese"
  14094. package="18"
  14095. />
  14096. <otaLanguage
  14097. id="0"
  14098. name="Hebrew"
  14099. package="19"
  14100. />
  14101. <otaLanguage
  14102. id="0"
  14103. name="Greek"
  14104. package="20"
  14105. />
  14106. </otaLanguages>
  14107. <otaPackages>
  14108. <package
  14109. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  14110. size="5183988"
  14111. />
  14112. <package
  14113. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  14114. size="5183988"
  14115. />
  14116. <package
  14117. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  14118. size="5183988"
  14119. />
  14120. <package
  14121. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  14122. size="5183988"
  14123. />
  14124. <package
  14125. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  14126. size="5183988"
  14127. />
  14128. <package
  14129. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  14130. size="5183988"
  14131. />
  14132. <package
  14133. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  14134. size="5183988"
  14135. />
  14136. <package
  14137. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  14138. size="5183988"
  14139. />
  14140. <package
  14141. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  14142. size="5183988"
  14143. />
  14144. <package
  14145. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  14146. size="5183988"
  14147. />
  14148. <package
  14149. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  14150. size="5183988"
  14151. />
  14152. <package
  14153. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  14154. size="5183988"
  14155. />
  14156. <package
  14157. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  14158. size="5183988"
  14159. />
  14160. <package
  14161. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  14162. size="5183988"
  14163. />
  14164. <package
  14165. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  14166. size="5183988"
  14167. />
  14168. <package
  14169. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  14170. size="5183988"
  14171. />
  14172. <package
  14173. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  14174. size="5183988"
  14175. />
  14176. <package
  14177. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  14178. size="5183988"
  14179. />
  14180. <package
  14181. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  14182. size="5183988"
  14183. />
  14184. <package
  14185. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  14186. size="5183988"
  14187. />
  14188. <package
  14189. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  14190. size="5183988"
  14191. />
  14192. </otaPackages>
  14193. </productMenu>
  14194. <productMenu id="wa"
  14195. type="0" >
  14196. </productMenu>
  14197. <productMenu id="sip"
  14198. type="1" >
  14199. </productMenu>
  14200. <productMenu id="led"
  14201. type="0" >
  14202. </productMenu>
  14203. <productMenu id="illusion"
  14204. type="1" >
  14205. </productMenu>
  14206. <productMenu id="meshIntercom"
  14207. type="30" >
  14208. </productMenu>
  14209. <productMenu id="meshIntercom+"
  14210. type="3"
  14211. url="2" >
  14212. </productMenu>
  14213. <productMenu id="waveIntercom"
  14214. type="0" >
  14215. </productMenu>
  14216. <productMenu id="bluetoothIntercom"
  14217. type="1" >
  14218. </productMenu>
  14219. <productMenu id="bluetoothIntercomGrouping"
  14220. type="0" >
  14221. </productMenu>
  14222. <productMenu id="fmradio"
  14223. type="1"
  14224. url="1" >
  14225. </productMenu>
  14226. <productMenu id="phone"
  14227. type="1" >
  14228. </productMenu>
  14229. <productMenu id="music"
  14230. type="1" >
  14231. </productMenu>
  14232. <productMenu id="musicSharing"
  14233. type="0" >
  14234. </productMenu>
  14235. <productMenu id="deviceSetting"
  14236. type="1"
  14237. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14238. </productMenu>
  14239. <productMenu id="quickGuide"
  14240. type="0"
  14241. url=""
  14242. size="1.12MB" >
  14243. </productMenu>
  14244. <productMenu id="userGuide"
  14245. type="1"
  14246. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14247. size="2.0MB" >
  14248. </productMenu>
  14249. <productMenu id="videoGuide"
  14250. type="0"
  14251. url=""
  14252. size="3.41MB" >
  14253. </productMenu>
  14254. <productMenu id="volume"
  14255. type="16" >
  14256. </productMenu>
  14257. <productMenu id="soundMode"
  14258. type="1" >
  14259. </productMenu>
  14260. <productMenu id="battery"
  14261. type="1" >
  14262. </productMenu>
  14263. <productID id="6A83"
  14264. />
  14265. <productGroupable type="0"
  14266. />
  14267. </product>
  14268. <product id="MeshStation"
  14269. name="Mesh Station"
  14270. series="50"
  14271. latestVersion="0.9"
  14272. show = "-1" >
  14273. <productMenu id="protocol"
  14274. type="2" >
  14275. </productMenu>
  14276. <productMenu id="meshIntercom"
  14277. type="20"
  14278. url="99" >
  14279. </productMenu>
  14280. <productID id="3161"
  14281. />
  14282. <productGroupable type="0"
  14283. />
  14284. </product>
  14285. </products>
  14286. </sna>