snm.xml 511 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260181" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.3"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.8"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO_01.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="1"
  525. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.11"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.8"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.11"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.8"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0.1"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.8"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="1"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="1"
  1471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2511. <productMenuURL version="1.2.10"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2513. />
  2514. <productMenuURL version="1.2.4"
  2515. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2516. />
  2517. </productMenu>
  2518. <productMenu id="quickGuide"
  2519. type="0"
  2520. url=""
  2521. size="1.12MB" >
  2522. </productMenu>
  2523. <productMenu id="userGuide"
  2524. type="1"
  2525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2526. size="2.0MB" >
  2527. </productMenu>
  2528. <productMenu id="videoGuide"
  2529. type="0"
  2530. url=""
  2531. size="3.41MB" >
  2532. </productMenu>
  2533. <productMenu id="volume"
  2534. type="16" >
  2535. </productMenu>
  2536. <productMenu id="volume+"
  2537. type="2"
  2538. url="0x6004" >
  2539. </productMenu>
  2540. <productMenu id="battery"
  2541. type="1" >
  2542. </productMenu>
  2543. <productID id="6A0F"
  2544. />
  2545. <productGroupable type="0"
  2546. />
  2547. </product>
  2548. <product id="PHANTOMXB"
  2549. name="PHANTOM XB"
  2550. series="Helmet"
  2551. latestVersion="1.2.9"
  2552. latestVersionVoicePrompt="1.6"
  2553. show = "-1" >
  2554. <productMenu id="protocol"
  2555. type="2" >
  2556. </productMenu>
  2557. <productMenu id="ota"
  2558. type="2" >
  2559. <otaLanguages>
  2560. <otaLanguage
  2561. id="0"
  2562. name="English"
  2563. package="0"
  2564. />
  2565. <otaLanguage
  2566. id="0"
  2567. name="French"
  2568. package="1"
  2569. />
  2570. <otaLanguage
  2571. id="0"
  2572. name="Spanish"
  2573. package="2"
  2574. />
  2575. <otaLanguage
  2576. id="0"
  2577. name="Italian"
  2578. package="3"
  2579. />
  2580. <otaLanguage
  2581. id="0"
  2582. name="German"
  2583. package="4"
  2584. />
  2585. <otaLanguage
  2586. id="0"
  2587. name="Dutch"
  2588. package="5"
  2589. />
  2590. <otaLanguage
  2591. id="0"
  2592. name="Russian"
  2593. package="6"
  2594. />
  2595. <otaLanguage
  2596. id="0"
  2597. name="Chinese"
  2598. package="7"
  2599. />
  2600. <otaLanguage
  2601. id="0"
  2602. name="Korean"
  2603. package="8"
  2604. />
  2605. <otaLanguage
  2606. id="0"
  2607. name="Japanese"
  2608. package="9"
  2609. />
  2610. <otaLanguage
  2611. id="0"
  2612. name="Finnish"
  2613. package="10"
  2614. />
  2615. <otaLanguage
  2616. id="0"
  2617. name="Polish"
  2618. package="11"
  2619. />
  2620. </otaLanguages>
  2621. <otaPackages>
  2622. <package
  2623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2624. size="5183988"
  2625. />
  2626. <package
  2627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2628. size="5183988"
  2629. />
  2630. <package
  2631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2632. size="5183988"
  2633. />
  2634. <package
  2635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2636. size="5183988"
  2637. />
  2638. <package
  2639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2640. size="5183988"
  2641. />
  2642. <package
  2643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2644. size="5183988"
  2645. />
  2646. <package
  2647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2648. size="5183988"
  2649. />
  2650. <package
  2651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2652. size="5183988"
  2653. />
  2654. <package
  2655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2656. size="5183988"
  2657. />
  2658. <package
  2659. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2660. size="5183988"
  2661. />
  2662. <package
  2663. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2664. size="5183988"
  2665. />
  2666. <package
  2667. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2668. size="5183988"
  2669. />
  2670. </otaPackages>
  2671. </productMenu>
  2672. <productMenu id="wa"
  2673. type="0" >
  2674. </productMenu>
  2675. <productMenu id="led"
  2676. type="5" >
  2677. </productMenu>
  2678. <productMenu id="led+"
  2679. type="2"
  2680. url="1" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom"
  2683. type="30" >
  2684. </productMenu>
  2685. <productMenu id="meshIntercom+"
  2686. type="3"
  2687. url="2" >
  2688. </productMenu>
  2689. <productMenu id="waveIntercom"
  2690. type="1" >
  2691. </productMenu>
  2692. <productMenu id="fmradio"
  2693. type="0" >
  2694. </productMenu>
  2695. <productMenu id="phone"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="music"
  2699. type="1" >
  2700. </productMenu>
  2701. <productMenu id="musicSharing"
  2702. type="0" >
  2703. </productMenu>
  2704. <productMenu id="deviceSetting"
  2705. type="1"
  2706. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2707. <productMenuURL version="1.2.10"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2709. />
  2710. <productMenuURL version="1.2.4"
  2711. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2712. />
  2713. <productMenuURL version="1.2.1"
  2714. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2715. />
  2716. </productMenu>
  2717. <productMenu id="quickGuide"
  2718. type="0"
  2719. url=""
  2720. size="1.12MB" >
  2721. </productMenu>
  2722. <productMenu id="userGuide"
  2723. type="1"
  2724. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2725. size="2.0MB" >
  2726. </productMenu>
  2727. <productMenu id="videoGuide"
  2728. type="0"
  2729. url=""
  2730. size="3.41MB" >
  2731. </productMenu>
  2732. <productMenu id="volume"
  2733. type="16" >
  2734. </productMenu>
  2735. <productMenu id="volume+"
  2736. type="2"
  2737. url="0x6004" >
  2738. </productMenu>
  2739. <productMenu id="battery"
  2740. type="1" >
  2741. </productMenu>
  2742. <productID id="6A0C"
  2743. />
  2744. <productGroupable type="0"
  2745. />
  2746. </product>
  2747. <product id="PHANTOMKV"
  2748. name="PHANTOM KV"
  2749. series="Helmet"
  2750. latestVersion="1.2.10"
  2751. latestVersionVoicePrompt="1.7"
  2752. show = "1" >
  2753. <productMenu id="protocol"
  2754. type="2" >
  2755. </productMenu>
  2756. <productMenu id="ota"
  2757. type="2" >
  2758. <otaLanguages>
  2759. <otaLanguage
  2760. id="0"
  2761. name="English"
  2762. package="0"
  2763. />
  2764. <otaLanguage
  2765. id="0"
  2766. name="French"
  2767. package="1"
  2768. />
  2769. <otaLanguage
  2770. id="0"
  2771. name="Spanish"
  2772. package="2"
  2773. />
  2774. <otaLanguage
  2775. id="0"
  2776. name="Italian"
  2777. package="3"
  2778. />
  2779. <otaLanguage
  2780. id="0"
  2781. name="German"
  2782. package="4"
  2783. />
  2784. <otaLanguage
  2785. id="0"
  2786. name="Dutch"
  2787. package="5"
  2788. />
  2789. <otaLanguage
  2790. id="0"
  2791. name="Russian"
  2792. package="6"
  2793. />
  2794. <otaLanguage
  2795. id="0"
  2796. name="Chinese"
  2797. package="7"
  2798. />
  2799. <otaLanguage
  2800. id="0"
  2801. name="Korean"
  2802. package="8"
  2803. />
  2804. <otaLanguage
  2805. id="0"
  2806. name="Japanese"
  2807. package="9"
  2808. />
  2809. <otaLanguage
  2810. id="0"
  2811. name="Finnish"
  2812. package="10"
  2813. />
  2814. <otaLanguage
  2815. id="0"
  2816. name="Polish"
  2817. package="11"
  2818. />
  2819. </otaLanguages>
  2820. <otaPackages>
  2821. <package
  2822. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2823. size="5183988"
  2824. />
  2825. <package
  2826. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2827. size="5183988"
  2828. />
  2829. <package
  2830. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2831. size="5183988"
  2832. />
  2833. <package
  2834. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2835. size="5183988"
  2836. />
  2837. <package
  2838. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2839. size="5183988"
  2840. />
  2841. <package
  2842. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2843. size="5183988"
  2844. />
  2845. <package
  2846. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2847. size="5183988"
  2848. />
  2849. <package
  2850. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2851. size="5183988"
  2852. />
  2853. <package
  2854. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2855. size="5183988"
  2856. />
  2857. <package
  2858. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2859. size="5183988"
  2860. />
  2861. <package
  2862. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2863. size="5183988"
  2864. />
  2865. <package
  2866. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2867. size="5183988"
  2868. />
  2869. </otaPackages>
  2870. </productMenu>
  2871. <productMenu id="wa"
  2872. type="0" >
  2873. </productMenu>
  2874. <productMenu id="led"
  2875. type="5" >
  2876. </productMenu>
  2877. <productMenu id="led+"
  2878. type="2"
  2879. url="1" >
  2880. </productMenu>
  2881. <productMenu id="meshIntercom"
  2882. type="30" >
  2883. </productMenu>
  2884. <productMenu id="meshIntercom+"
  2885. type="3"
  2886. url="2" >
  2887. </productMenu>
  2888. <productMenu id="waveIntercom"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="fmradio"
  2892. type="0" >
  2893. </productMenu>
  2894. <productMenu id="phone"
  2895. type="1" >
  2896. </productMenu>
  2897. <productMenu id="music"
  2898. type="1" >
  2899. </productMenu>
  2900. <productMenu id="musicSharing"
  2901. type="0" >
  2902. </productMenu>
  2903. <productMenu id="deviceSetting"
  2904. type="1"
  2905. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2906. <productMenuURL version="1.2.10"
  2907. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2908. />
  2909. <productMenuURL version="1.2.4"
  2910. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2911. />
  2912. </productMenu>
  2913. <productMenu id="quickGuide"
  2914. type="0"
  2915. url=""
  2916. size="1.12MB" >
  2917. </productMenu>
  2918. <productMenu id="userGuide"
  2919. type="1"
  2920. url=""
  2921. size="2.0MB" >
  2922. </productMenu>
  2923. <productMenu id="videoGuide"
  2924. type="0"
  2925. url=""
  2926. size="3.41MB" >
  2927. </productMenu>
  2928. <productMenu id="connectGuide"
  2929. type="1"
  2930. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2931. size="1.1MB" >
  2932. </productMenu>
  2933. <productMenu id="volume"
  2934. type="16" >
  2935. </productMenu>
  2936. <productMenu id="volume+"
  2937. type="2"
  2938. url="0x6004" >
  2939. </productMenu>
  2940. <productMenu id="soundMode"
  2941. type="1" >
  2942. </productMenu>
  2943. <productMenu id="battery"
  2944. type="1" >
  2945. </productMenu>
  2946. <productID id="6A13"
  2947. />
  2948. <productGroupable type="0"
  2949. />
  2950. </product>
  2951. <product id="PHANTOMCamera"
  2952. name="PHANTOM Camera"
  2953. series="Helmet"
  2954. latestVersion="1.2.10"
  2955. latestVersionVoicePrompt="1.7"
  2956. show = "1" >
  2957. <productMenu id="protocol"
  2958. type="2" >
  2959. </productMenu>
  2960. <productMenu id="ota"
  2961. type="3" >
  2962. <otaLanguages>
  2963. <otaLanguage
  2964. id="0"
  2965. name="English"
  2966. package="0"
  2967. />
  2968. <otaLanguage
  2969. id="0"
  2970. name="French"
  2971. package="1"
  2972. />
  2973. <otaLanguage
  2974. id="0"
  2975. name="Spanish"
  2976. package="2"
  2977. />
  2978. <otaLanguage
  2979. id="0"
  2980. name="Italian"
  2981. package="3"
  2982. />
  2983. <otaLanguage
  2984. id="0"
  2985. name="German"
  2986. package="4"
  2987. />
  2988. <otaLanguage
  2989. id="0"
  2990. name="Dutch"
  2991. package="5"
  2992. />
  2993. <otaLanguage
  2994. id="0"
  2995. name="Russian"
  2996. package="6"
  2997. />
  2998. <otaLanguage
  2999. id="0"
  3000. name="Chinese"
  3001. package="7"
  3002. />
  3003. <otaLanguage
  3004. id="0"
  3005. name="Korean"
  3006. package="8"
  3007. />
  3008. <otaLanguage
  3009. id="0"
  3010. name="Japanese"
  3011. package="9"
  3012. />
  3013. <otaLanguage
  3014. id="0"
  3015. name="Finnish"
  3016. package="10"
  3017. />
  3018. <otaLanguage
  3019. id="0"
  3020. name="Polish"
  3021. package="11"
  3022. />
  3023. </otaLanguages>
  3024. <otaPackages>
  3025. <package
  3026. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3027. size="5183988"
  3028. />
  3029. <package
  3030. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3031. size="5183988"
  3032. />
  3033. <package
  3034. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3035. size="5183988"
  3036. />
  3037. <package
  3038. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3039. size="5183988"
  3040. />
  3041. <package
  3042. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3043. size="5183988"
  3044. />
  3045. <package
  3046. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3047. size="5183988"
  3048. />
  3049. <package
  3050. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3051. size="5183988"
  3052. />
  3053. <package
  3054. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3055. size="5183988"
  3056. />
  3057. <package
  3058. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3059. size="5183988"
  3060. />
  3061. <package
  3062. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3063. size="5183988"
  3064. />
  3065. <package
  3066. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3067. size="5183988"
  3068. />
  3069. <package
  3070. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3071. size="5183988"
  3072. />
  3073. </otaPackages>
  3074. </productMenu>
  3075. <productMenu id="wa"
  3076. type="0" >
  3077. </productMenu>
  3078. <productMenu id="led"
  3079. type="5" >
  3080. </productMenu>
  3081. <productMenu id="led+"
  3082. type="2"
  3083. url="1" >
  3084. </productMenu>
  3085. <productMenu id="meshIntercom"
  3086. type="30" >
  3087. </productMenu>
  3088. <productMenu id="meshIntercom+"
  3089. type="3"
  3090. url="2" >
  3091. </productMenu>
  3092. <productMenu id="waveIntercom"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="fmradio"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="phone"
  3099. type="1" >
  3100. </productMenu>
  3101. <productMenu id="music"
  3102. type="1" >
  3103. </productMenu>
  3104. <productMenu id="musicSharing"
  3105. type="0" >
  3106. </productMenu>
  3107. <productMenu id="deviceSetting"
  3108. type="1"
  3109. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3110. </productMenu>
  3111. <productMenu id="quickGuide"
  3112. type="0"
  3113. url=""
  3114. size="1.12MB" >
  3115. </productMenu>
  3116. <productMenu id="userGuide"
  3117. type="1"
  3118. url=""
  3119. size="2.0MB" >
  3120. </productMenu>
  3121. <productMenu id="videoGuide"
  3122. type="0"
  3123. url=""
  3124. size="3.41MB" >
  3125. </productMenu>
  3126. <productMenu id="volume"
  3127. type="16" >
  3128. </productMenu>
  3129. <productMenu id="battery"
  3130. type="1" >
  3131. </productMenu>
  3132. <productID id="6A10"
  3133. />
  3134. <productGroupable type="0"
  3135. />
  3136. </product>
  3137. <product id="PHANTOMCamera"
  3138. name="PHANTOM Camera"
  3139. series="Helmet"
  3140. latestVersion="1.2.10"
  3141. latestVersionVoicePrompt="1.7"
  3142. show = "-1" >
  3143. <productMenu id="protocol"
  3144. type="2" >
  3145. </productMenu>
  3146. <productMenu id="ota"
  3147. type="3" >
  3148. <otaLanguages>
  3149. <otaLanguage
  3150. id="0"
  3151. name="English"
  3152. package="0"
  3153. />
  3154. <otaLanguage
  3155. id="0"
  3156. name="French"
  3157. package="1"
  3158. />
  3159. <otaLanguage
  3160. id="0"
  3161. name="Spanish"
  3162. package="2"
  3163. />
  3164. <otaLanguage
  3165. id="0"
  3166. name="Italian"
  3167. package="3"
  3168. />
  3169. <otaLanguage
  3170. id="0"
  3171. name="German"
  3172. package="4"
  3173. />
  3174. <otaLanguage
  3175. id="0"
  3176. name="Dutch"
  3177. package="5"
  3178. />
  3179. <otaLanguage
  3180. id="0"
  3181. name="Russian"
  3182. package="6"
  3183. />
  3184. <otaLanguage
  3185. id="0"
  3186. name="Chinese"
  3187. package="7"
  3188. />
  3189. <otaLanguage
  3190. id="0"
  3191. name="Korean"
  3192. package="8"
  3193. />
  3194. <otaLanguage
  3195. id="0"
  3196. name="Japanese"
  3197. package="9"
  3198. />
  3199. <otaLanguage
  3200. id="0"
  3201. name="Finnish"
  3202. package="10"
  3203. />
  3204. <otaLanguage
  3205. id="0"
  3206. name="Polish"
  3207. package="11"
  3208. />
  3209. </otaLanguages>
  3210. <otaPackages>
  3211. <package
  3212. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3213. size="5183988"
  3214. />
  3215. <package
  3216. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3217. size="5183988"
  3218. />
  3219. <package
  3220. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3221. size="5183988"
  3222. />
  3223. <package
  3224. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3225. size="5183988"
  3226. />
  3227. <package
  3228. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3229. size="5183988"
  3230. />
  3231. <package
  3232. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3233. size="5183988"
  3234. />
  3235. <package
  3236. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3237. size="5183988"
  3238. />
  3239. <package
  3240. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3241. size="5183988"
  3242. />
  3243. <package
  3244. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3245. size="5183988"
  3246. />
  3247. <package
  3248. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3249. size="5183988"
  3250. />
  3251. <package
  3252. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3253. size="5183988"
  3254. />
  3255. <package
  3256. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3257. size="5183988"
  3258. />
  3259. </otaPackages>
  3260. </productMenu>
  3261. <productMenu id="wa"
  3262. type="0" >
  3263. </productMenu>
  3264. <productMenu id="led"
  3265. type="5" >
  3266. </productMenu>
  3267. <productMenu id="led+"
  3268. type="2"
  3269. url="1" >
  3270. </productMenu>
  3271. <productMenu id="meshIntercom"
  3272. type="30" >
  3273. </productMenu>
  3274. <productMenu id="meshIntercom+"
  3275. type="3"
  3276. url="2" >
  3277. </productMenu>
  3278. <productMenu id="waveIntercom"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="fmradio"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="phone"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="music"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="musicSharing"
  3291. type="0" >
  3292. </productMenu>
  3293. <productMenu id="deviceSetting"
  3294. type="1"
  3295. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3296. </productMenu>
  3297. <productMenu id="quickGuide"
  3298. type="0"
  3299. url=""
  3300. size="1.12MB" >
  3301. </productMenu>
  3302. <productMenu id="userGuide"
  3303. type="1"
  3304. url=""
  3305. size="2.0MB" >
  3306. </productMenu>
  3307. <productMenu id="videoGuide"
  3308. type="0"
  3309. url=""
  3310. size="3.41MB" >
  3311. </productMenu>
  3312. <productMenu id="volume"
  3313. type="16" >
  3314. </productMenu>
  3315. <productMenu id="battery"
  3316. type="1" >
  3317. </productMenu>
  3318. <productID id="6A09"
  3319. />
  3320. <productGroupable type="0"
  3321. />
  3322. </product>
  3323. <product id="PHANTOM"
  3324. name="PHANTOM ANC"
  3325. series="Helmet"
  3326. latestVersion="1.2.9"
  3327. latestVersionVoicePrompt="1.7"
  3328. show = "1" >
  3329. <productMenu id="protocol"
  3330. type="2" >
  3331. </productMenu>
  3332. <productMenu id="ota"
  3333. type="2" >
  3334. <productMenuType version="0.6.9"
  3335. type="0"
  3336. />
  3337. <otaLanguages>
  3338. <otaLanguage
  3339. id="0"
  3340. name="English"
  3341. package="0"
  3342. />
  3343. <otaLanguage
  3344. id="0"
  3345. name="French"
  3346. package="1"
  3347. />
  3348. <otaLanguage
  3349. id="0"
  3350. name="Spanish"
  3351. package="2"
  3352. />
  3353. <otaLanguage
  3354. id="0"
  3355. name="Italian"
  3356. package="3"
  3357. />
  3358. <otaLanguage
  3359. id="0"
  3360. name="German"
  3361. package="4"
  3362. />
  3363. <otaLanguage
  3364. id="0"
  3365. name="Dutch"
  3366. package="5"
  3367. />
  3368. <otaLanguage
  3369. id="0"
  3370. name="Russian"
  3371. package="6"
  3372. />
  3373. <otaLanguage
  3374. id="0"
  3375. name="Chinese"
  3376. package="7"
  3377. />
  3378. <otaLanguage
  3379. id="0"
  3380. name="Korean"
  3381. package="8"
  3382. />
  3383. <otaLanguage
  3384. id="0"
  3385. name="Japanese"
  3386. package="9"
  3387. />
  3388. <otaLanguage
  3389. id="0"
  3390. name="Finnish"
  3391. package="10"
  3392. />
  3393. <otaLanguage
  3394. id="0"
  3395. name="Polish"
  3396. package="11"
  3397. />
  3398. </otaLanguages>
  3399. <otaPackages>
  3400. <package
  3401. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3402. size="5183988"
  3403. />
  3404. <package
  3405. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3406. size="5183988"
  3407. />
  3408. <package
  3409. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3410. size="5183988"
  3411. />
  3412. <package
  3413. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3414. size="5183988"
  3415. />
  3416. <package
  3417. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3418. size="5183988"
  3419. />
  3420. <package
  3421. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3422. size="5183988"
  3423. />
  3424. <package
  3425. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3426. size="5183988"
  3427. />
  3428. <package
  3429. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3430. size="5183988"
  3431. />
  3432. <package
  3433. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3434. size="5183988"
  3435. />
  3436. <package
  3437. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3438. size="5183988"
  3439. />
  3440. <package
  3441. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3442. size="5183988"
  3443. />
  3444. <package
  3445. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3446. size="5183988"
  3447. />
  3448. </otaPackages>
  3449. </productMenu>
  3450. <productMenu id="wa"
  3451. type="0" >
  3452. </productMenu>
  3453. <productMenu id="led"
  3454. type="5" >
  3455. </productMenu>
  3456. <productMenu id="led+"
  3457. type="2"
  3458. url="1" >
  3459. </productMenu>
  3460. <productMenu id="meshIntercom"
  3461. type="30" >
  3462. </productMenu>
  3463. <productMenu id="meshIntercom+"
  3464. type="3"
  3465. url="2" >
  3466. <productMenuURL version="1.0.4"
  3467. url="10"
  3468. />
  3469. </productMenu>
  3470. <productMenu id="waveIntercom"
  3471. type="1" >
  3472. <productMenuType version="1.0.9"
  3473. type="0"
  3474. />
  3475. </productMenu>
  3476. <productMenu id="fmradio"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="phone"
  3480. type="1" >
  3481. </productMenu>
  3482. <productMenu id="music"
  3483. type="1" >
  3484. </productMenu>
  3485. <productMenu id="musicSharing"
  3486. type="0" >
  3487. </productMenu>
  3488. <productMenu id="deviceSetting"
  3489. type="1"
  3490. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3491. <productMenuURL version="1.2.10"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3493. />
  3494. <productMenuURL version="1.2.4"
  3495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3496. />
  3497. <productMenuURL version="1.2.1"
  3498. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3499. />
  3500. <productMenuURL version="1.1.2"
  3501. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3502. />
  3503. <productMenuURL version="1.0.4"
  3504. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3505. />
  3506. </productMenu>
  3507. <productMenu id="quickGuide"
  3508. type="0"
  3509. url=""
  3510. size="1.12MB" >
  3511. </productMenu>
  3512. <productMenu id="userGuide"
  3513. type="1"
  3514. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3515. size="2.0MB" >
  3516. </productMenu>
  3517. <productMenu id="videoGuide"
  3518. type="0"
  3519. url=""
  3520. size="3.41MB" >
  3521. </productMenu>
  3522. <productMenu id="connectGuide"
  3523. type="1"
  3524. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3525. size="1.1MB" >
  3526. </productMenu>
  3527. <productMenu id="volume"
  3528. type="16" >
  3529. </productMenu>
  3530. <productMenu id="volume+"
  3531. type="2"
  3532. url="0x6004" >
  3533. </productMenu>
  3534. <productMenu id="soundMode"
  3535. type="1" >
  3536. <productMenuType version="0.9.11"
  3537. type="0"
  3538. />
  3539. </productMenu>
  3540. <productMenu id="battery"
  3541. type="1" >
  3542. </productMenu>
  3543. <productID id="6A01"
  3544. />
  3545. <productGroupable type="0"
  3546. />
  3547. </product>
  3548. <product id="PHANTOM"
  3549. name="PHANTOM ANC"
  3550. series="Helmet"
  3551. latestVersion="1.2.9"
  3552. latestVersionVoicePrompt="1.7"
  3553. show = "-1" >
  3554. <productMenu id="protocol"
  3555. type="2" >
  3556. </productMenu>
  3557. <productMenu id="ota"
  3558. type="2" >
  3559. <otaLanguages>
  3560. <otaLanguage
  3561. id="0"
  3562. name="English"
  3563. package="0"
  3564. />
  3565. <otaLanguage
  3566. id="0"
  3567. name="French"
  3568. package="1"
  3569. />
  3570. <otaLanguage
  3571. id="0"
  3572. name="Spanish"
  3573. package="2"
  3574. />
  3575. <otaLanguage
  3576. id="0"
  3577. name="Italian"
  3578. package="3"
  3579. />
  3580. <otaLanguage
  3581. id="0"
  3582. name="German"
  3583. package="4"
  3584. />
  3585. <otaLanguage
  3586. id="0"
  3587. name="Dutch"
  3588. package="5"
  3589. />
  3590. <otaLanguage
  3591. id="0"
  3592. name="Russian"
  3593. package="6"
  3594. />
  3595. <otaLanguage
  3596. id="0"
  3597. name="Chinese"
  3598. package="7"
  3599. />
  3600. <otaLanguage
  3601. id="0"
  3602. name="Korean"
  3603. package="8"
  3604. />
  3605. <otaLanguage
  3606. id="0"
  3607. name="Japanese"
  3608. package="9"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="Finnish"
  3613. package="10"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Polish"
  3618. package="11"
  3619. />
  3620. </otaLanguages>
  3621. <otaPackages>
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3656. size="5183988"
  3657. />
  3658. <package
  3659. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3660. size="5183988"
  3661. />
  3662. <package
  3663. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3664. size="5183988"
  3665. />
  3666. <package
  3667. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3668. size="5183988"
  3669. />
  3670. </otaPackages>
  3671. </productMenu>
  3672. <productMenu id="led"
  3673. type="5" >
  3674. </productMenu>
  3675. <productMenu id="led+"
  3676. type="2"
  3677. url="1" >
  3678. </productMenu>
  3679. <productMenu id="meshIntercom"
  3680. type="30" >
  3681. </productMenu>
  3682. <productMenu id="meshIntercom+"
  3683. type="3"
  3684. url="2" >
  3685. </productMenu>
  3686. <productMenu id="waveIntercom"
  3687. type="1" >
  3688. </productMenu>
  3689. <productMenu id="fmradio"
  3690. type="0" >
  3691. </productMenu>
  3692. <productMenu id="phone"
  3693. type="1" >
  3694. </productMenu>
  3695. <productMenu id="music"
  3696. type="1" >
  3697. </productMenu>
  3698. <productMenu id="musicSharing"
  3699. type="0" >
  3700. </productMenu>
  3701. <productMenu id="deviceSetting"
  3702. type="1"
  3703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3704. <productMenuURL version="1.2.10"
  3705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3706. />
  3707. <productMenuURL version="1.2.4"
  3708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3709. />
  3710. </productMenu>
  3711. <productMenu id="quickGuide"
  3712. type="0"
  3713. url=""
  3714. size="1.12MB" >
  3715. </productMenu>
  3716. <productMenu id="userGuide"
  3717. type="1"
  3718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3719. size="2.0MB" >
  3720. </productMenu>
  3721. <productMenu id="videoGuide"
  3722. type="0"
  3723. url=""
  3724. size="3.41MB" >
  3725. </productMenu>
  3726. <productMenu id="connectGuide"
  3727. type="1"
  3728. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3729. size="1.1MB" >
  3730. </productMenu>
  3731. <productMenu id="volume"
  3732. type="16" >
  3733. </productMenu>
  3734. <productMenu id="volume+"
  3735. type="2"
  3736. url="0x6004" >
  3737. </productMenu>
  3738. <productMenu id="soundMode"
  3739. type="1" >
  3740. </productMenu>
  3741. <productMenu id="battery"
  3742. type="1" >
  3743. </productMenu>
  3744. <productID id="6A19"
  3745. />
  3746. <productGroupable type="0"
  3747. />
  3748. </product>
  3749. <product id="PHANTOM"
  3750. name="PHANTOM"
  3751. series="Helmet"
  3752. latestVersion="1.2.9"
  3753. latestVersionVoicePrompt="1.7"
  3754. show = "-1" >
  3755. <productMenu id="protocol"
  3756. type="2" >
  3757. </productMenu>
  3758. <productMenu id="ota"
  3759. type="2" >
  3760. <otaLanguages>
  3761. <otaLanguage
  3762. id="0"
  3763. name="English"
  3764. package="0"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="French"
  3769. package="1"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Spanish"
  3774. package="2"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Italian"
  3779. package="3"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="German"
  3784. package="4"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Dutch"
  3789. package="5"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Russian"
  3794. package="6"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Chinese"
  3799. package="7"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Korean"
  3804. package="8"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Japanese"
  3809. package="9"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="Finnish"
  3814. package="10"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Polish"
  3819. package="11"
  3820. />
  3821. </otaLanguages>
  3822. <otaPackages>
  3823. <package
  3824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3825. size="5183988"
  3826. />
  3827. <package
  3828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3829. size="5183988"
  3830. />
  3831. <package
  3832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3833. size="5183988"
  3834. />
  3835. <package
  3836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3837. size="5183988"
  3838. />
  3839. <package
  3840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3841. size="5183988"
  3842. />
  3843. <package
  3844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3845. size="5183988"
  3846. />
  3847. <package
  3848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3849. size="5183988"
  3850. />
  3851. <package
  3852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3853. size="5183988"
  3854. />
  3855. <package
  3856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3857. size="5183988"
  3858. />
  3859. <package
  3860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3861. size="5183988"
  3862. />
  3863. <package
  3864. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3865. size="5183988"
  3866. />
  3867. <package
  3868. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3869. size="5183988"
  3870. />
  3871. </otaPackages>
  3872. </productMenu>
  3873. <productMenu id="wa"
  3874. type="0" >
  3875. </productMenu>
  3876. <productMenu id="led"
  3877. type="5" >
  3878. </productMenu>
  3879. <productMenu id="led+"
  3880. type="2"
  3881. url="1" >
  3882. </productMenu>
  3883. <productMenu id="meshIntercom"
  3884. type="30" >
  3885. </productMenu>
  3886. <productMenu id="meshIntercom+"
  3887. type="3"
  3888. url="2" >
  3889. </productMenu>
  3890. <productMenu id="waveIntercom"
  3891. type="1" >
  3892. </productMenu>
  3893. <productMenu id="fmradio"
  3894. type="0" >
  3895. </productMenu>
  3896. <productMenu id="phone"
  3897. type="1" >
  3898. </productMenu>
  3899. <productMenu id="music"
  3900. type="1" >
  3901. </productMenu>
  3902. <productMenu id="musicSharing"
  3903. type="0" >
  3904. </productMenu>
  3905. <productMenu id="deviceSetting"
  3906. type="1"
  3907. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3908. <productMenuURL version="1.2.10"
  3909. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3910. />
  3911. <productMenuURL version="1.2.4"
  3912. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3913. />
  3914. </productMenu>
  3915. <productMenu id="quickGuide"
  3916. type="0"
  3917. url=""
  3918. size="1.52MB" >
  3919. </productMenu>
  3920. <productMenu id="userGuide"
  3921. type="1"
  3922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3923. size="2.01MB" >
  3924. </productMenu>
  3925. <productMenu id="videoGuide"
  3926. type="0"
  3927. url=""
  3928. size="3.46MB" >
  3929. </productMenu>
  3930. <productMenu id="connectGuide"
  3931. type="1"
  3932. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3933. size="1.1MB" >
  3934. </productMenu>
  3935. <productMenu id="volume"
  3936. type="16" >
  3937. </productMenu>
  3938. <productMenu id="volume+"
  3939. type="2"
  3940. url="0x6004" >
  3941. </productMenu>
  3942. <productMenu id="battery"
  3943. type="1" >
  3944. </productMenu>
  3945. <productID id="6A0E"
  3946. />
  3947. <productGroupable type="0"
  3948. />
  3949. </product>
  3950. <product id="PHANTOM"
  3951. name="PHANTOM"
  3952. series="Helmet"
  3953. latestVersion="1.2.9"
  3954. latestVersionVoicePrompt="1.7"
  3955. show = "1" >
  3956. <productMenu id="protocol"
  3957. type="2" >
  3958. </productMenu>
  3959. <productMenu id="ota"
  3960. type="2" >
  3961. <otaLanguages>
  3962. <otaLanguage
  3963. id="0"
  3964. name="English"
  3965. package="0"
  3966. />
  3967. <otaLanguage
  3968. id="0"
  3969. name="French"
  3970. package="1"
  3971. />
  3972. <otaLanguage
  3973. id="0"
  3974. name="Spanish"
  3975. package="2"
  3976. />
  3977. <otaLanguage
  3978. id="0"
  3979. name="Italian"
  3980. package="3"
  3981. />
  3982. <otaLanguage
  3983. id="0"
  3984. name="German"
  3985. package="4"
  3986. />
  3987. <otaLanguage
  3988. id="0"
  3989. name="Dutch"
  3990. package="5"
  3991. />
  3992. <otaLanguage
  3993. id="0"
  3994. name="Russian"
  3995. package="6"
  3996. />
  3997. <otaLanguage
  3998. id="0"
  3999. name="Chinese"
  4000. package="7"
  4001. />
  4002. <otaLanguage
  4003. id="0"
  4004. name="Korean"
  4005. package="8"
  4006. />
  4007. <otaLanguage
  4008. id="0"
  4009. name="Japanese"
  4010. package="9"
  4011. />
  4012. <otaLanguage
  4013. id="0"
  4014. name="Finnish"
  4015. package="10"
  4016. />
  4017. <otaLanguage
  4018. id="0"
  4019. name="Polish"
  4020. package="11"
  4021. />
  4022. </otaLanguages>
  4023. <otaPackages>
  4024. <package
  4025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4026. size="5183988"
  4027. />
  4028. <package
  4029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4030. size="5183988"
  4031. />
  4032. <package
  4033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4034. size="5183988"
  4035. />
  4036. <package
  4037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4038. size="5183988"
  4039. />
  4040. <package
  4041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4042. size="5183988"
  4043. />
  4044. <package
  4045. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4046. size="5183988"
  4047. />
  4048. <package
  4049. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4050. size="5183988"
  4051. />
  4052. <package
  4053. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4054. size="5183988"
  4055. />
  4056. <package
  4057. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4058. size="5183988"
  4059. />
  4060. <package
  4061. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4062. size="5183988"
  4063. />
  4064. <package
  4065. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4066. size="5183988"
  4067. />
  4068. <package
  4069. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4070. size="5183988"
  4071. />
  4072. </otaPackages>
  4073. </productMenu>
  4074. <productMenu id="wa"
  4075. type="0" >
  4076. </productMenu>
  4077. <productMenu id="led"
  4078. type="5" >
  4079. <productMenuType version="1.0.1"
  4080. type="4"
  4081. />
  4082. </productMenu>
  4083. <productMenu id="led+"
  4084. type="2"
  4085. url="1" >
  4086. <productMenuType version="1.0.1"
  4087. type="-1"
  4088. />
  4089. </productMenu>
  4090. <productMenu id="meshIntercom"
  4091. type="30" >
  4092. </productMenu>
  4093. <productMenu id="meshIntercom+"
  4094. type="3"
  4095. url="2" >
  4096. <productMenuURL version="1.0.4"
  4097. url="10"
  4098. />
  4099. </productMenu>
  4100. <productMenu id="waveIntercom"
  4101. type="1" >
  4102. <productMenuType version="1.0.9"
  4103. type="0"
  4104. />
  4105. </productMenu>
  4106. <productMenu id="fmradio"
  4107. type="0" >
  4108. </productMenu>
  4109. <productMenu id="phone"
  4110. type="1" >
  4111. </productMenu>
  4112. <productMenu id="music"
  4113. type="1" >
  4114. </productMenu>
  4115. <productMenu id="musicSharing"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="deviceSetting"
  4119. type="1"
  4120. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4121. <productMenuURL version="1.2.10"
  4122. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4123. />
  4124. <productMenuURL version="1.2.4"
  4125. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4126. />
  4127. <productMenuURL version="1.2.1"
  4128. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4129. />
  4130. <productMenuURL version="1.0.4"
  4131. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4132. />
  4133. <productMenuURL version="1.0.1"
  4134. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4135. />
  4136. </productMenu>
  4137. <productMenu id="quickGuide"
  4138. type="0"
  4139. url=""
  4140. size="1.12MB" >
  4141. </productMenu>
  4142. <productMenu id="userGuide"
  4143. type="1"
  4144. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4145. size="2.0MB" >
  4146. </productMenu>
  4147. <productMenu id="videoGuide"
  4148. type="0"
  4149. url=""
  4150. size="3.41MB" >
  4151. </productMenu>
  4152. <productMenu id="connectGuide"
  4153. type="1"
  4154. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4155. size="1.12MB" >
  4156. </productMenu>
  4157. <productMenu id="volume"
  4158. type="16" >
  4159. <productMenuType version="1.0"
  4160. type="13"
  4161. />
  4162. </productMenu>
  4163. <productMenu id="volume+"
  4164. type="2"
  4165. url="0x6004" >
  4166. </productMenu>
  4167. <productMenu id="battery"
  4168. type="1" >
  4169. </productMenu>
  4170. <productID id="6A04"
  4171. />
  4172. <productGroupable type="0"
  4173. />
  4174. </product>
  4175. <product id="PHANTOMEasyLink"
  4176. name="PHANTOM EasyLink"
  4177. series="Helmet"
  4178. latestVersion="0.1"
  4179. latestVersionVoicePrompt="1.2"
  4180. show = "-1" >
  4181. <productMenu id="protocol"
  4182. type="2" >
  4183. </productMenu>
  4184. <productMenu id="ota"
  4185. type="0" >
  4186. <otaLanguages>
  4187. <otaLanguage
  4188. id="0"
  4189. name="English"
  4190. package="0"
  4191. />
  4192. <otaLanguage
  4193. id="0"
  4194. name="French"
  4195. package="1"
  4196. />
  4197. <otaLanguage
  4198. id="0"
  4199. name="Spanish"
  4200. package="2"
  4201. />
  4202. <otaLanguage
  4203. id="0"
  4204. name="Italian"
  4205. package="3"
  4206. />
  4207. <otaLanguage
  4208. id="0"
  4209. name="German"
  4210. package="4"
  4211. />
  4212. <otaLanguage
  4213. id="0"
  4214. name="Dutch"
  4215. package="5"
  4216. />
  4217. <otaLanguage
  4218. id="0"
  4219. name="Russian"
  4220. package="6"
  4221. />
  4222. <otaLanguage
  4223. id="0"
  4224. name="Chinese"
  4225. package="7"
  4226. />
  4227. <otaLanguage
  4228. id="0"
  4229. name="Korean"
  4230. package="8"
  4231. />
  4232. <otaLanguage
  4233. id="0"
  4234. name="Japanese"
  4235. package="9"
  4236. />
  4237. <otaLanguage
  4238. id="0"
  4239. name="Finnish"
  4240. package="10"
  4241. />
  4242. <otaLanguage
  4243. id="0"
  4244. name="Polish"
  4245. package="11"
  4246. />
  4247. </otaLanguages>
  4248. <otaPackages>
  4249. <package
  4250. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4251. size="5183988"
  4252. />
  4253. <package
  4254. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4255. size="5183988"
  4256. />
  4257. <package
  4258. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4259. size="5183988"
  4260. />
  4261. <package
  4262. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4263. size="5183988"
  4264. />
  4265. <package
  4266. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4267. size="5183988"
  4268. />
  4269. <package
  4270. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4271. size="5183988"
  4272. />
  4273. <package
  4274. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4275. size="5183988"
  4276. />
  4277. <package
  4278. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4279. size="5183988"
  4280. />
  4281. <package
  4282. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4283. size="5183988"
  4284. />
  4285. <package
  4286. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4287. size="5183988"
  4288. />
  4289. <package
  4290. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4291. size="5183988"
  4292. />
  4293. <package
  4294. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4295. size="5183988"
  4296. />
  4297. </otaPackages>
  4298. </productMenu>
  4299. <productMenu id="meshIntercom"
  4300. type="30" >
  4301. </productMenu>
  4302. <productMenu id="meshIntercom+"
  4303. type="3"
  4304. url="2" >
  4305. </productMenu>
  4306. <productMenu id="waveIntercom"
  4307. type="1" >
  4308. </productMenu>
  4309. <productMenu id="fmradio"
  4310. type="0" >
  4311. </productMenu>
  4312. <productMenu id="phone"
  4313. type="1" >
  4314. </productMenu>
  4315. <productMenu id="music"
  4316. type="1" >
  4317. </productMenu>
  4318. <productMenu id="musicSharing"
  4319. type="0" >
  4320. </productMenu>
  4321. <productMenu id="deviceSetting"
  4322. type="1"
  4323. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4324. </productMenu>
  4325. <productMenu id="quickGuide"
  4326. type="0"
  4327. url=""
  4328. size="1.12MB" >
  4329. </productMenu>
  4330. <productMenu id="userGuide"
  4331. type="1"
  4332. url=""
  4333. size="2.0MB" >
  4334. </productMenu>
  4335. <productMenu id="videoGuide"
  4336. type="0"
  4337. url=""
  4338. size="3.41MB" >
  4339. </productMenu>
  4340. <productMenu id="connectGuide"
  4341. type="0"
  4342. url=""
  4343. size="1.12MB" >
  4344. </productMenu>
  4345. <productMenu id="volume"
  4346. type="16" >
  4347. </productMenu>
  4348. <productMenu id="battery"
  4349. type="1" >
  4350. </productMenu>
  4351. <productID id="6A18"
  4352. />
  4353. <productGroupable type="0"
  4354. />
  4355. </product>
  4356. <product id="SPIDERXSlim"
  4357. name="SPIDER X Slim"
  4358. series="SPIDER"
  4359. latestVersion="1.0"
  4360. latestVersionVoicePrompt="1.7"
  4361. show = "1" >
  4362. <productMenu id="protocol"
  4363. type="2" >
  4364. </productMenu>
  4365. <productMenu id="warranty"
  4366. type="1" >
  4367. </productMenu>
  4368. <productMenu id="serialNumber"
  4369. type="1" >
  4370. </productMenu>
  4371. <productMenu id="ota"
  4372. type="2" >
  4373. <otaLanguages>
  4374. <otaLanguage
  4375. id="0"
  4376. name="English"
  4377. package="0"
  4378. />
  4379. <otaLanguage
  4380. id="0"
  4381. name="French"
  4382. package="1"
  4383. />
  4384. <otaLanguage
  4385. id="0"
  4386. name="Spanish"
  4387. package="2"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="Italian"
  4392. package="3"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="German"
  4397. package="4"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="Dutch"
  4402. package="5"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="Russian"
  4407. package="6"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Chinese"
  4412. package="7"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Korean"
  4417. package="8"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Japanese"
  4422. package="9"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Finnish"
  4427. package="10"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Polish"
  4432. package="11"
  4433. />
  4434. </otaLanguages>
  4435. <otaPackages>
  4436. <package
  4437. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4438. size="5183988"
  4439. />
  4440. <package
  4441. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4442. size="5183988"
  4443. />
  4444. <package
  4445. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4446. size="5183988"
  4447. />
  4448. <package
  4449. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4450. size="5183988"
  4451. />
  4452. <package
  4453. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4454. size="5183988"
  4455. />
  4456. <package
  4457. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4458. size="5183988"
  4459. />
  4460. <package
  4461. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4462. size="5183988"
  4463. />
  4464. <package
  4465. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4466. size="5183988"
  4467. />
  4468. <package
  4469. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4470. size="5183988"
  4471. />
  4472. <package
  4473. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4474. size="5183988"
  4475. />
  4476. <package
  4477. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4478. size="5183988"
  4479. />
  4480. <package
  4481. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4482. size="5183988"
  4483. />
  4484. </otaPackages>
  4485. </productMenu>
  4486. <productMenu id="meshIntercom"
  4487. type="30" >
  4488. </productMenu>
  4489. <productMenu id="meshIntercom+"
  4490. type="3"
  4491. url="2" >
  4492. </productMenu>
  4493. <productMenu id="waveIntercom"
  4494. type="1" >
  4495. </productMenu>
  4496. <productMenu id="fmradio"
  4497. type="1"
  4498. url="1" >
  4499. </productMenu>
  4500. <productMenu id="phone"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="music"
  4504. type="1" >
  4505. </productMenu>
  4506. <productMenu id="musicSharing"
  4507. type="0" >
  4508. </productMenu>
  4509. <productMenu id="deviceSetting"
  4510. type="1"
  4511. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4512. <productMenuURL version="1.0"
  4513. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4514. />
  4515. </productMenu>
  4516. <productMenu id="quickGuide"
  4517. type="0"
  4518. url=""
  4519. size="1.12MB" >
  4520. </productMenu>
  4521. <productMenu id="userGuide"
  4522. type="1"
  4523. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4524. size="2.0MB" >
  4525. </productMenu>
  4526. <productMenu id="videoGuide"
  4527. type="0"
  4528. url=""
  4529. size="3.41MB" >
  4530. </productMenu>
  4531. <productMenu id="connectGuide"
  4532. type="1"
  4533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4534. size="1.12MB" >
  4535. </productMenu>
  4536. <productMenu id="volume"
  4537. type="16" >
  4538. </productMenu>
  4539. <productMenu id="volume+"
  4540. type="2"
  4541. url="0x6004" >
  4542. </productMenu>
  4543. <productMenu id="appearance"
  4544. type="1"
  4545. url="2|white,silver,chrome,black" >
  4546. </productMenu>
  4547. <productMenu id="battery"
  4548. type="1" >
  4549. </productMenu>
  4550. <productID id="6A07"
  4551. />
  4552. <productGroupable type="0"
  4553. />
  4554. </product>
  4555. <product id="XFITM"
  4556. name="X-FIT M"
  4557. series="SPIDER"
  4558. latestVersion="0.1.11"
  4559. latestVersionVoicePrompt="1.1"
  4560. show = "-1" >
  4561. <productMenu id="protocol"
  4562. type="2" >
  4563. </productMenu>
  4564. <productMenu id="ota"
  4565. type="0" >
  4566. <otaLanguages>
  4567. <otaLanguage
  4568. id="0"
  4569. name="English"
  4570. package="0"
  4571. />
  4572. <otaLanguage
  4573. id="0"
  4574. name="French"
  4575. package="1"
  4576. />
  4577. <otaLanguage
  4578. id="0"
  4579. name="Spanish"
  4580. package="2"
  4581. />
  4582. <otaLanguage
  4583. id="0"
  4584. name="Italian"
  4585. package="3"
  4586. />
  4587. <otaLanguage
  4588. id="0"
  4589. name="German"
  4590. package="4"
  4591. />
  4592. <otaLanguage
  4593. id="0"
  4594. name="Dutch"
  4595. package="5"
  4596. />
  4597. <otaLanguage
  4598. id="0"
  4599. name="Russian"
  4600. package="6"
  4601. />
  4602. <otaLanguage
  4603. id="0"
  4604. name="Chinese"
  4605. package="7"
  4606. />
  4607. <otaLanguage
  4608. id="0"
  4609. name="Korean"
  4610. package="8"
  4611. />
  4612. <otaLanguage
  4613. id="0"
  4614. name="Japanese"
  4615. package="9"
  4616. />
  4617. <otaLanguage
  4618. id="0"
  4619. name="Finnish"
  4620. package="10"
  4621. />
  4622. <otaLanguage
  4623. id="0"
  4624. name="Polish"
  4625. package="11"
  4626. />
  4627. </otaLanguages>
  4628. <otaPackages>
  4629. <package
  4630. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4631. size="5183988"
  4632. />
  4633. <package
  4634. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4635. size="5183988"
  4636. />
  4637. <package
  4638. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4639. size="5183988"
  4640. />
  4641. <package
  4642. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4643. size="5183988"
  4644. />
  4645. <package
  4646. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4647. size="5183988"
  4648. />
  4649. <package
  4650. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4651. size="5183988"
  4652. />
  4653. <package
  4654. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4655. size="5183988"
  4656. />
  4657. <package
  4658. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4659. size="5183988"
  4660. />
  4661. <package
  4662. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4663. size="5183988"
  4664. />
  4665. <package
  4666. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4667. size="5183988"
  4668. />
  4669. <package
  4670. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4671. size="5183988"
  4672. />
  4673. <package
  4674. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4675. size="5183988"
  4676. />
  4677. </otaPackages>
  4678. </productMenu>
  4679. <productMenu id="meshIntercom"
  4680. type="30" >
  4681. </productMenu>
  4682. <productMenu id="meshIntercom+"
  4683. type="3"
  4684. url="2" >
  4685. </productMenu>
  4686. <productMenu id="waveIntercom"
  4687. type="1" >
  4688. </productMenu>
  4689. <productMenu id="fmradio"
  4690. type="1"
  4691. url="1" >
  4692. </productMenu>
  4693. <productMenu id="phone"
  4694. type="1" >
  4695. </productMenu>
  4696. <productMenu id="music"
  4697. type="1" >
  4698. </productMenu>
  4699. <productMenu id="musicSharing"
  4700. type="0" >
  4701. </productMenu>
  4702. <productMenu id="deviceSetting"
  4703. type="1"
  4704. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4705. </productMenu>
  4706. <productMenu id="quickGuide"
  4707. type="0"
  4708. url=""
  4709. size="1.12MB" >
  4710. </productMenu>
  4711. <productMenu id="userGuide"
  4712. type="1"
  4713. url=""
  4714. size="2.0MB" >
  4715. </productMenu>
  4716. <productMenu id="videoGuide"
  4717. type="0"
  4718. url=""
  4719. size="3.41MB" >
  4720. </productMenu>
  4721. <productMenu id="volume"
  4722. type="16" >
  4723. </productMenu>
  4724. <productMenu id="volume+"
  4725. type="2"
  4726. url="0x6004" >
  4727. </productMenu>
  4728. <productMenu id="battery"
  4729. type="1" >
  4730. </productMenu>
  4731. <productID id="6A17"
  4732. />
  4733. <productGroupable type="0"
  4734. />
  4735. </product>
  4736. <product id="VORTEXMESH"
  4737. name="VORTEX MESH"
  4738. series="Helmet"
  4739. latestVersion="0.1.11"
  4740. latestVersionVoicePrompt="1.1"
  4741. show = "-1" >
  4742. <productMenu id="protocol"
  4743. type="2" >
  4744. </productMenu>
  4745. <productMenu id="ota"
  4746. type="0" >
  4747. <otaLanguages>
  4748. <otaLanguage
  4749. id="0"
  4750. name="English"
  4751. package="0"
  4752. />
  4753. <otaLanguage
  4754. id="0"
  4755. name="French"
  4756. package="1"
  4757. />
  4758. <otaLanguage
  4759. id="0"
  4760. name="Spanish"
  4761. package="2"
  4762. />
  4763. <otaLanguage
  4764. id="0"
  4765. name="Italian"
  4766. package="3"
  4767. />
  4768. <otaLanguage
  4769. id="0"
  4770. name="German"
  4771. package="4"
  4772. />
  4773. <otaLanguage
  4774. id="0"
  4775. name="Dutch"
  4776. package="5"
  4777. />
  4778. <otaLanguage
  4779. id="0"
  4780. name="Russian"
  4781. package="6"
  4782. />
  4783. <otaLanguage
  4784. id="0"
  4785. name="Chinese"
  4786. package="7"
  4787. />
  4788. <otaLanguage
  4789. id="0"
  4790. name="Korean"
  4791. package="8"
  4792. />
  4793. <otaLanguage
  4794. id="0"
  4795. name="Japanese"
  4796. package="9"
  4797. />
  4798. <otaLanguage
  4799. id="0"
  4800. name="Finnish"
  4801. package="10"
  4802. />
  4803. <otaLanguage
  4804. id="0"
  4805. name="Polish"
  4806. package="11"
  4807. />
  4808. </otaLanguages>
  4809. <otaPackages>
  4810. <package
  4811. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4812. size="5183988"
  4813. />
  4814. <package
  4815. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4816. size="5183988"
  4817. />
  4818. <package
  4819. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4820. size="5183988"
  4821. />
  4822. <package
  4823. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4824. size="5183988"
  4825. />
  4826. <package
  4827. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4828. size="5183988"
  4829. />
  4830. <package
  4831. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4832. size="5183988"
  4833. />
  4834. <package
  4835. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4836. size="5183988"
  4837. />
  4838. <package
  4839. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4840. size="5183988"
  4841. />
  4842. <package
  4843. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4844. size="5183988"
  4845. />
  4846. <package
  4847. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4848. size="5183988"
  4849. />
  4850. <package
  4851. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4852. size="5183988"
  4853. />
  4854. <package
  4855. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4856. size="5183988"
  4857. />
  4858. </otaPackages>
  4859. </productMenu>
  4860. <productMenu id="wa"
  4861. type="0" >
  4862. </productMenu>
  4863. <productMenu id="led"
  4864. type="5" >
  4865. </productMenu>
  4866. <productMenu id="led+"
  4867. type="2"
  4868. url="1" >
  4869. </productMenu>
  4870. <productMenu id="meshIntercom"
  4871. type="30" >
  4872. </productMenu>
  4873. <productMenu id="meshIntercom+"
  4874. type="3"
  4875. url="2" >
  4876. </productMenu>
  4877. <productMenu id="waveIntercom"
  4878. type="1" >
  4879. </productMenu>
  4880. <productMenu id="fmradio"
  4881. type="0" >
  4882. </productMenu>
  4883. <productMenu id="phone"
  4884. type="1" >
  4885. </productMenu>
  4886. <productMenu id="music"
  4887. type="1" >
  4888. </productMenu>
  4889. <productMenu id="musicSharing"
  4890. type="0" >
  4891. </productMenu>
  4892. <productMenu id="deviceSetting"
  4893. type="1"
  4894. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4895. </productMenu>
  4896. <productMenu id="quickGuide"
  4897. type="0"
  4898. url=""
  4899. size="1.12MB" >
  4900. </productMenu>
  4901. <productMenu id="userGuide"
  4902. type="1"
  4903. url=""
  4904. size="2.0MB" >
  4905. </productMenu>
  4906. <productMenu id="videoGuide"
  4907. type="0"
  4908. url=""
  4909. size="3.41MB" >
  4910. </productMenu>
  4911. <productMenu id="volume"
  4912. type="16" >
  4913. </productMenu>
  4914. <productMenu id="battery"
  4915. type="1" >
  4916. </productMenu>
  4917. <productID id="6A12"
  4918. />
  4919. <productGroupable type="0"
  4920. />
  4921. </product>
  4922. <product id="MeshOn"
  4923. name="MeshON"
  4924. series="Other"
  4925. latestVersion="1.0.1"
  4926. latestVersionVoicePrompt="0.7"
  4927. show = "1" >
  4928. <productMenu id="protocol"
  4929. type="2" >
  4930. </productMenu>
  4931. <productMenu id="ota"
  4932. type="2" >
  4933. <otaPackages>
  4934. <package
  4935. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4936. size="2945812"
  4937. />
  4938. </otaPackages>
  4939. </productMenu>
  4940. <productMenu id="meshIntercom+"
  4941. type="3"
  4942. url="4" >
  4943. </productMenu>
  4944. <productMenu id="waveIntercom"
  4945. type="0" >
  4946. </productMenu>
  4947. <productMenu id="phone"
  4948. type="0" >
  4949. </productMenu>
  4950. <productMenu id="music"
  4951. type="0" >
  4952. </productMenu>
  4953. <productMenu id="musicSharing"
  4954. type="0" >
  4955. </productMenu>
  4956. <productMenu id="deviceSetting"
  4957. type="1"
  4958. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4959. </productMenu>
  4960. <productMenu id="userGuide"
  4961. type="1"
  4962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4963. size="2.0MB" >
  4964. </productMenu>
  4965. <productMenu id="bluetoothHeadset"
  4966. type="1"
  4967. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4968. </productMenu>
  4969. <productMenu id="volume"
  4970. type="0" >
  4971. </productMenu>
  4972. <productMenu id="battery"
  4973. type="1" >
  4974. </productMenu>
  4975. <productID id="684E"
  4976. />
  4977. <productGroupable type="0"
  4978. />
  4979. </product>
  4980. <product id="Impulse"
  4981. name="Impulse"
  4982. series="Helmet"
  4983. latestVersion="1.4.1"
  4984. show = "1" >
  4985. <productMenu id="protocol"
  4986. type="2" >
  4987. </productMenu>
  4988. <productMenu id="alexa"
  4989. type="0" >
  4990. </productMenu>
  4991. <productMenu id="ota"
  4992. type="0" >
  4993. </productMenu>
  4994. <productMenu id="wa"
  4995. type="24" >
  4996. </productMenu>
  4997. <productMenu id="manager"
  4998. type="0" >
  4999. </productMenu>
  5000. <productMenu id="sip"
  5001. type="1" >
  5002. </productMenu>
  5003. <productMenu id="led"
  5004. type="1" >
  5005. <productMenuType version="1.0.1"
  5006. type="2"
  5007. />
  5008. <productMenuType version="1.0"
  5009. type="1"
  5010. />
  5011. </productMenu>
  5012. <productMenu id="meshIntercom"
  5013. type="30" >
  5014. <productMenuType version="1.1.1"
  5015. type="20"
  5016. />
  5017. </productMenu>
  5018. <productMenu id="meshIntercom+"
  5019. type="3"
  5020. url="2" >
  5021. <productMenuType version="1.3.9"
  5022. type="2"
  5023. />
  5024. <productMenuURL version="1.1.1"
  5025. url="0"
  5026. />
  5027. </productMenu>
  5028. <productMenu id="waveIntercom"
  5029. type="1" >
  5030. <productMenuType version="1.3.9"
  5031. type="0"
  5032. />
  5033. </productMenu>
  5034. <productMenu id="bluetoothIntercom"
  5035. type="1" >
  5036. </productMenu>
  5037. <productMenu id="phone"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="music"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="fmradio"
  5044. type="1" >
  5045. </productMenu>
  5046. <productMenu id="deviceSetting"
  5047. type="1"
  5048. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5049. <productMenuURL version="1.3.9"
  5050. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5051. />
  5052. <productMenuURL version="1.1.1"
  5053. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5054. />
  5055. <productMenuURL version="1.0.4"
  5056. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5057. />
  5058. </productMenu>
  5059. <productMenu id="quickGuide"
  5060. type="0"
  5061. url=""
  5062. size="344KB" >
  5063. </productMenu>
  5064. <productMenu id="userGuide"
  5065. type="1"
  5066. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5067. size="3.41MB" >
  5068. </productMenu>
  5069. <productMenu id="connectGuide"
  5070. type="1"
  5071. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5072. size="1.12MB" >
  5073. </productMenu>
  5074. <productMenu id="volume"
  5075. type="11" >
  5076. </productMenu>
  5077. <productMenu id="battery"
  5078. type="1" >
  5079. </productMenu>
  5080. <productID id="3148"
  5081. />
  5082. <productGroupable type="0"
  5083. />
  5084. </product>
  5085. <product id="Impulse"
  5086. name="Impulse"
  5087. series="Helmet"
  5088. latestVersion="2.0"
  5089. show = "-1" >
  5090. <productMenu id="protocol"
  5091. type="2" >
  5092. </productMenu>
  5093. <productMenu id="alexa"
  5094. type="0" >
  5095. </productMenu>
  5096. <productMenu id="ota"
  5097. type="0" >
  5098. </productMenu>
  5099. <productMenu id="wa"
  5100. type="8" >
  5101. </productMenu>
  5102. <productMenu id="manager"
  5103. type="0" >
  5104. </productMenu>
  5105. <productMenu id="sip"
  5106. type="1" >
  5107. </productMenu>
  5108. <productMenu id="led"
  5109. type="3" >
  5110. </productMenu>
  5111. <productMenu id="meshIntercom"
  5112. type="20" >
  5113. </productMenu>
  5114. <productMenu id="bluetoothIntercom"
  5115. type="1" >
  5116. </productMenu>
  5117. <productMenu id="phone"
  5118. type="1" >
  5119. </productMenu>
  5120. <productMenu id="music"
  5121. type="1" >
  5122. </productMenu>
  5123. <productMenu id="fmradio"
  5124. type="1" >
  5125. </productMenu>
  5126. <productMenu id="deviceSetting"
  5127. type="1"
  5128. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5129. </productMenu>
  5130. <productMenu id="quickGuide"
  5131. type="1"
  5132. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5133. size="344KB" >
  5134. </productMenu>
  5135. <productMenu id="userGuide"
  5136. type="1"
  5137. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5138. size="3.41MB" >
  5139. </productMenu>
  5140. <productMenu id="volume"
  5141. type="11" >
  5142. </productMenu>
  5143. <productMenu id="battery"
  5144. type="1" >
  5145. </productMenu>
  5146. <productID id="3221"
  5147. />
  5148. <productGroupable type="0"
  5149. />
  5150. </product>
  5151. <product id="Stryker"
  5152. name="Stryker"
  5153. series="Helmet"
  5154. latestVersion="1.4.1"
  5155. show = "1" >
  5156. <productMenu id="protocol"
  5157. type="2" >
  5158. </productMenu>
  5159. <productMenu id="alexa"
  5160. type="0" >
  5161. </productMenu>
  5162. <productMenu id="ota"
  5163. type="0" >
  5164. </productMenu>
  5165. <productMenu id="wa"
  5166. type="40" >
  5167. </productMenu>
  5168. <productMenu id="manager"
  5169. type="0" >
  5170. </productMenu>
  5171. <productMenu id="sip"
  5172. type="1" >
  5173. </productMenu>
  5174. <productMenu id="led"
  5175. type="1" >
  5176. <productMenuType version="1.0.1"
  5177. type="2"
  5178. />
  5179. <productMenuType version="1.0"
  5180. type="1"
  5181. />
  5182. </productMenu>
  5183. <productMenu id="meshIntercom"
  5184. type="30" >
  5185. <productMenuType version="1.1.1"
  5186. type="20"
  5187. />
  5188. </productMenu>
  5189. <productMenu id="meshIntercom+"
  5190. type="3"
  5191. url="2" >
  5192. <productMenuType version="1.3.9"
  5193. type="2"
  5194. />
  5195. <productMenuURL version="1.1.1"
  5196. url="0"
  5197. />
  5198. </productMenu>
  5199. <productMenu id="waveIntercom"
  5200. type="1" >
  5201. <productMenuType version="1.2.9"
  5202. type="0"
  5203. />
  5204. </productMenu>
  5205. <productMenu id="bluetoothIntercom"
  5206. type="1" >
  5207. </productMenu>
  5208. <productMenu id="phone"
  5209. type="1" >
  5210. </productMenu>
  5211. <productMenu id="music"
  5212. type="1" >
  5213. </productMenu>
  5214. <productMenu id="fmradio"
  5215. type="1" >
  5216. </productMenu>
  5217. <productMenu id="deviceSetting"
  5218. type="1"
  5219. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5220. <productMenuURL version="1.3.9"
  5221. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5222. />
  5223. <productMenuURL version="1.1.1"
  5224. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5225. />
  5226. <productMenuURL version="1.0.4"
  5227. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5228. />
  5229. </productMenu>
  5230. <productMenu id="quickGuide"
  5231. type="0"
  5232. url=""
  5233. size="344KB" >
  5234. </productMenu>
  5235. <productMenu id="userGuide"
  5236. type="1"
  5237. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5238. size="3.41MB" >
  5239. </productMenu>
  5240. <productMenu id="connectGuide"
  5241. type="1"
  5242. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5243. size="1.12MB" >
  5244. </productMenu>
  5245. <productMenu id="volume"
  5246. type="11" >
  5247. </productMenu>
  5248. <productMenu id="battery"
  5249. type="1" >
  5250. </productMenu>
  5251. <productID id="3154"
  5252. />
  5253. <productGroupable type="0"
  5254. />
  5255. </product>
  5256. <product id="SRL3Plus"
  5257. name="SRL3 Plus"
  5258. series="60"
  5259. latestVersion="0.9.14"
  5260. latestVersionMesh="0.19"
  5261. latestVersionVoicePrompt="1.8"
  5262. show = "-1" >
  5263. <productMenu id="protocol"
  5264. type="2" >
  5265. </productMenu>
  5266. <productMenu id="ota"
  5267. type="0" >
  5268. <otaLanguages>
  5269. <otaLanguage
  5270. id="0"
  5271. name="English"
  5272. package="0"
  5273. />
  5274. <otaLanguage
  5275. id="0"
  5276. name="French"
  5277. package="1"
  5278. />
  5279. <otaLanguage
  5280. id="0"
  5281. name="Spanish"
  5282. package="2"
  5283. />
  5284. <otaLanguage
  5285. id="0"
  5286. name="Italian"
  5287. package="3"
  5288. />
  5289. <otaLanguage
  5290. id="0"
  5291. name="German"
  5292. package="4"
  5293. />
  5294. <otaLanguage
  5295. id="0"
  5296. name="Dutch"
  5297. package="5"
  5298. />
  5299. <otaLanguage
  5300. id="0"
  5301. name="Russian"
  5302. package="6"
  5303. />
  5304. <otaLanguage
  5305. id="0"
  5306. name="Chinese"
  5307. package="7"
  5308. />
  5309. <otaLanguage
  5310. id="0"
  5311. name="Korean"
  5312. package="8"
  5313. />
  5314. <otaLanguage
  5315. id="0"
  5316. name="Japanese"
  5317. package="9"
  5318. />
  5319. <otaLanguage
  5320. id="0"
  5321. name="Finnish"
  5322. package="10"
  5323. />
  5324. <otaLanguage
  5325. id="0"
  5326. name="Polish"
  5327. package="11"
  5328. />
  5329. </otaLanguages>
  5330. <otaPackages>
  5331. <package
  5332. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5333. size="5183988"
  5334. />
  5335. <package
  5336. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5337. size="5183988"
  5338. />
  5339. <package
  5340. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5341. size="5183988"
  5342. />
  5343. <package
  5344. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5345. size="5183988"
  5346. />
  5347. <package
  5348. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5349. size="5183988"
  5350. />
  5351. <package
  5352. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5353. size="5183988"
  5354. />
  5355. <package
  5356. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5357. size="5183988"
  5358. />
  5359. <package
  5360. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5361. size="5183988"
  5362. />
  5363. <package
  5364. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5365. size="5183988"
  5366. />
  5367. <package
  5368. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5369. size="5183988"
  5370. />
  5371. <package
  5372. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5373. size="5183988"
  5374. />
  5375. <package
  5376. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5377. size="5183988"
  5378. />
  5379. </otaPackages>
  5380. </productMenu>
  5381. <productMenu id="sip"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="meshIntercom+"
  5385. type="3"
  5386. url="2" >
  5387. </productMenu>
  5388. <productMenu id="waveIntercom"
  5389. type="1" >
  5390. </productMenu>
  5391. <productMenu id="bluetoothIntercom"
  5392. type="1"
  5393. url="2" >
  5394. </productMenu>
  5395. <productMenu id="bluetoothIntercomGrouping"
  5396. type="0" >
  5397. </productMenu>
  5398. <productMenu id="fmradio"
  5399. type="1"
  5400. url="1" >
  5401. </productMenu>
  5402. <productMenu id="phone"
  5403. type="1" >
  5404. </productMenu>
  5405. <productMenu id="music"
  5406. type="1" >
  5407. </productMenu>
  5408. <productMenu id="musicSharing"
  5409. type="0" >
  5410. </productMenu>
  5411. <productMenu id="deviceSetting"
  5412. type="1"
  5413. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5414. </productMenu>
  5415. <productMenu id="quickGuide"
  5416. type="0"
  5417. url=""
  5418. size="1.12MB" >
  5419. </productMenu>
  5420. <productMenu id="userGuide"
  5421. type="0"
  5422. url=""
  5423. size="2.0MB" >
  5424. </productMenu>
  5425. <productMenu id="videoGuide"
  5426. type="0"
  5427. url=""
  5428. size="3.41MB" >
  5429. </productMenu>
  5430. <productMenu id="volume"
  5431. type="16" >
  5432. </productMenu>
  5433. <productMenu id="soundMode"
  5434. type="1" >
  5435. </productMenu>
  5436. <productMenu id="battery"
  5437. type="1" >
  5438. </productMenu>
  5439. <productID id="6A08"
  5440. />
  5441. <productGroupable type="0"
  5442. />
  5443. </product>
  5444. <product id="SRL3"
  5445. name="SRL3"
  5446. series="SRL"
  5447. latestVersion="1.5"
  5448. show = "1" >
  5449. <productMenu id="protocol"
  5450. type="2" >
  5451. </productMenu>
  5452. <productMenu id="alexa"
  5453. type="0" >
  5454. </productMenu>
  5455. <productMenu id="ota"
  5456. type="0" >
  5457. </productMenu>
  5458. <productMenu id="wa"
  5459. type="1" >
  5460. </productMenu>
  5461. <productMenu id="sip"
  5462. type="1" >
  5463. </productMenu>
  5464. <productMenu id="meshIntercom"
  5465. type="30" >
  5466. </productMenu>
  5467. <productMenu id="meshIntercom+"
  5468. type="3"
  5469. url="2" >
  5470. <productMenuType version="1.3.9"
  5471. type="2"
  5472. />
  5473. </productMenu>
  5474. <productMenu id="waveIntercom"
  5475. type="1" >
  5476. <productMenuType version="1.4.9"
  5477. type="0"
  5478. />
  5479. </productMenu>
  5480. <productMenu id="bluetoothIntercom"
  5481. type="1" >
  5482. </productMenu>
  5483. <productMenu id="phone"
  5484. type="1" >
  5485. </productMenu>
  5486. <productMenu id="music"
  5487. type="1" >
  5488. </productMenu>
  5489. <productMenu id="fmradio"
  5490. type="1" >
  5491. </productMenu>
  5492. <productMenu id="deviceSetting"
  5493. type="1"
  5494. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5495. <productMenuURL version="1.3"
  5496. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5497. />
  5498. </productMenu>
  5499. <productMenu id="quickGuide"
  5500. type="0"
  5501. url=""
  5502. size="344KB" >
  5503. </productMenu>
  5504. <productMenu id="userGuide"
  5505. type="1"
  5506. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5507. size="3.41MB" >
  5508. </productMenu>
  5509. <productMenu id="connectGuide"
  5510. type="1"
  5511. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5512. size="1.12MB" >
  5513. </productMenu>
  5514. <productMenu id="volume"
  5515. type="11" >
  5516. </productMenu>
  5517. <productMenu id="battery"
  5518. type="1" >
  5519. </productMenu>
  5520. <productID id="3219"
  5521. />
  5522. <productGroupable type="0"
  5523. />
  5524. </product>
  5525. <product id="SRL_Mesh"
  5526. name="SRL-Mesh"
  5527. series="SRL"
  5528. latestVersion="1.7.1"
  5529. show = "1" >
  5530. <productMenu id="protocol"
  5531. type="2" >
  5532. </productMenu>
  5533. <productMenu id="alexa"
  5534. type="0" >
  5535. </productMenu>
  5536. <productMenu id="ota"
  5537. type="0" >
  5538. </productMenu>
  5539. <productMenu id="wa"
  5540. type="1" >
  5541. </productMenu>
  5542. <productMenu id="sip"
  5543. type="1" >
  5544. </productMenu>
  5545. <productMenu id="meshIntercom"
  5546. type="30" >
  5547. <productMenuType version="1.1.1"
  5548. type="20"
  5549. />
  5550. </productMenu>
  5551. <productMenu id="meshIntercom+"
  5552. type="3"
  5553. url="2" >
  5554. <productMenuType version="1.5.9"
  5555. type="2"
  5556. />
  5557. <productMenuURL version="1.1.1"
  5558. url="0"
  5559. />
  5560. </productMenu>
  5561. <productMenu id="waveIntercom"
  5562. type="1" >
  5563. <productMenuType version="1.6.9"
  5564. type="0"
  5565. />
  5566. </productMenu>
  5567. <productMenu id="bluetoothIntercom"
  5568. type="1" >
  5569. </productMenu>
  5570. <productMenu id="phone"
  5571. type="1" >
  5572. </productMenu>
  5573. <productMenu id="music"
  5574. type="1" >
  5575. </productMenu>
  5576. <productMenu id="fmradio"
  5577. type="1" >
  5578. </productMenu>
  5579. <productMenu id="deviceSetting"
  5580. type="1"
  5581. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5582. <productMenuURL version="1.5"
  5583. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5584. />
  5585. <productMenuURL version="1.1.1"
  5586. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5587. />
  5588. <productMenuURL version="1.0.3"
  5589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5590. />
  5591. </productMenu>
  5592. <productMenu id="quickGuide"
  5593. type="0"
  5594. url=""
  5595. size="344KB" >
  5596. </productMenu>
  5597. <productMenu id="userGuide"
  5598. type="1"
  5599. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5600. size="3.41MB" >
  5601. </productMenu>
  5602. <productMenu id="connectGuide"
  5603. type="1"
  5604. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5605. size="1.12MB" >
  5606. </productMenu>
  5607. <productMenu id="volume"
  5608. type="11" >
  5609. </productMenu>
  5610. <productMenu id="battery"
  5611. type="1" >
  5612. </productMenu>
  5613. <productID id="3216"
  5614. />
  5615. <productGroupable type="0"
  5616. />
  5617. </product>
  5618. <product id="SRL_EXT"
  5619. name="SRL-EXT"
  5620. series="SRL"
  5621. latestVersion="1.7.1"
  5622. show = "1" >
  5623. <productMenu id="protocol"
  5624. type="2" >
  5625. </productMenu>
  5626. <productMenu id="alexa"
  5627. type="0" >
  5628. </productMenu>
  5629. <productMenu id="ota"
  5630. type="0" >
  5631. </productMenu>
  5632. <productMenu id="wa"
  5633. type="0" >
  5634. </productMenu>
  5635. <productMenu id="sip"
  5636. type="1" >
  5637. </productMenu>
  5638. <productMenu id="meshIntercom"
  5639. type="30" >
  5640. <productMenuType version="1.1.1"
  5641. type="20"
  5642. />
  5643. </productMenu>
  5644. <productMenu id="meshIntercom+"
  5645. type="3"
  5646. url="2" >
  5647. <productMenuType version="1.5.9"
  5648. type="2"
  5649. />
  5650. <productMenuURL version="1.1.1"
  5651. url="0"
  5652. />
  5653. </productMenu>
  5654. <productMenu id="waveIntercom"
  5655. type="1" >
  5656. <productMenuType version="1.6.9"
  5657. type="0"
  5658. />
  5659. </productMenu>
  5660. <productMenu id="bluetoothIntercom"
  5661. type="1" >
  5662. </productMenu>
  5663. <productMenu id="phone"
  5664. type="1" >
  5665. </productMenu>
  5666. <productMenu id="music"
  5667. type="1" >
  5668. </productMenu>
  5669. <productMenu id="fmradio"
  5670. type="1" >
  5671. </productMenu>
  5672. <productMenu id="deviceSetting"
  5673. type="1"
  5674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5675. <productMenuURL version="1.5"
  5676. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5677. />
  5678. <productMenuURL version="1.1.1"
  5679. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5680. />
  5681. <productMenuURL version="1.0.3"
  5682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5683. />
  5684. </productMenu>
  5685. <productMenu id="quickGuide"
  5686. type="0"
  5687. url=""
  5688. size="344KB" >
  5689. </productMenu>
  5690. <productMenu id="userGuide"
  5691. type="1"
  5692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5693. size="3.41MB" >
  5694. </productMenu>
  5695. <productMenu id="connectGuide"
  5696. type="1"
  5697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5698. size="1.12MB" >
  5699. </productMenu>
  5700. <productMenu id="volume"
  5701. type="11" >
  5702. </productMenu>
  5703. <productMenu id="battery"
  5704. type="1" >
  5705. </productMenu>
  5706. <productID id="3212"
  5707. />
  5708. <productGroupable type="0"
  5709. />
  5710. </product>
  5711. <product id="SRL2"
  5712. name="SRL2"
  5713. series="SRL"
  5714. latestVersion="1.0.9"
  5715. show = "1" >
  5716. <productMenu id="protocol"
  5717. type="0">
  5718. </productMenu>
  5719. <productMenu id="sip"
  5720. type="1" >
  5721. </productMenu>
  5722. <productMenu id="bluetoothIntercom"
  5723. type="1" >
  5724. </productMenu>
  5725. <productMenu id="intercomSetting"
  5726. type="1" >
  5727. </productMenu>
  5728. <productMenu id="phone"
  5729. type="2" >
  5730. </productMenu>
  5731. <productMenu id="fmradio"
  5732. type="3" >
  5733. </productMenu>
  5734. <productMenu id="deviceSetting"
  5735. type="1"
  5736. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5737. </productMenu>
  5738. <productMenu id="quickGuide"
  5739. type="1"
  5740. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5741. size="846KB" >
  5742. </productMenu>
  5743. <productMenu id="userGuide"
  5744. type="1"
  5745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5746. size="1.18MB" >
  5747. </productMenu>
  5748. <productMenu id="connectGuide"
  5749. type="1"
  5750. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5751. size="1.12MB" >
  5752. </productMenu>
  5753. <productID id="4530"
  5754. />
  5755. <productGroupable type="1"
  5756. />
  5757. </product>
  5758. <product id="Neotec2"
  5759. name="SRL Neotec2"
  5760. series="SRL"
  5761. latestVersion="1.1.5"
  5762. show = "1" >
  5763. <productMenu id="protocol"
  5764. type="0">
  5765. </productMenu>
  5766. <productMenu id="sip"
  5767. type="1" >
  5768. </productMenu>
  5769. <productMenu id="bluetoothIntercom"
  5770. type="1" >
  5771. </productMenu>
  5772. <productMenu id="intercomSetting"
  5773. type="1" >
  5774. </productMenu>
  5775. <productMenu id="phone"
  5776. type="2" >
  5777. </productMenu>
  5778. <productMenu id="fmradio"
  5779. type="3" >
  5780. </productMenu>
  5781. <productMenu id="deviceSetting"
  5782. type="1"
  5783. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5784. </productMenu>
  5785. <productMenu id="quickGuide"
  5786. type="0"
  5787. url=""
  5788. size="796KB" >
  5789. </productMenu>
  5790. <productMenu id="userGuide"
  5791. type="1"
  5792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5793. size="1.90MB" >
  5794. </productMenu>
  5795. <productMenu id="connectGuide"
  5796. type="1"
  5797. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5798. size="1.12MB" >
  5799. </productMenu>
  5800. <productID id="4510"
  5801. />
  5802. <productGroupable type="1"
  5803. />
  5804. </product>
  5805. <product id="MultiComNeo"
  5806. name="MultiCom Neo"
  5807. series="MultiCom"
  5808. latestVersion="1.0"
  5809. latestVersionVoicePrompt="1.6"
  5810. show = "-1" >
  5811. <productMenu id="protocol"
  5812. type="2" >
  5813. </productMenu>
  5814. <productMenu id="ota"
  5815. type="0" >
  5816. <otaPackages>
  5817. <package
  5818. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5819. size="2945812"
  5820. />
  5821. </otaPackages>
  5822. </productMenu>
  5823. <productMenu id="meshIntercom+"
  5824. type="3"
  5825. url="2" >
  5826. </productMenu>
  5827. <productMenu id="waveIntercom"
  5828. type="1" >
  5829. </productMenu>
  5830. <productMenu id="phone"
  5831. type="1" >
  5832. </productMenu>
  5833. <productMenu id="music"
  5834. type="1" >
  5835. </productMenu>
  5836. <productMenu id="musicSharing"
  5837. type="0" >
  5838. </productMenu>
  5839. <productMenu id="deviceSetting"
  5840. type="1"
  5841. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5842. </productMenu>
  5843. <productMenu id="quickGuide"
  5844. type="0"
  5845. url=""
  5846. size="1.12MB" >
  5847. </productMenu>
  5848. <productMenu id="userGuide"
  5849. type="1"
  5850. url=""
  5851. size="2.0MB" >
  5852. </productMenu>
  5853. <productMenu id="videoGuide"
  5854. type="0"
  5855. url=""
  5856. size="3.41MB" >
  5857. </productMenu>
  5858. <productMenu id="connectGuide"
  5859. type="0"
  5860. url=""
  5861. size="1.12MB" >
  5862. </productMenu>
  5863. <productMenu id="volume"
  5864. type="12" >
  5865. </productMenu>
  5866. <productMenu id="volume+"
  5867. type="2"
  5868. url="0x2000" >
  5869. </productMenu>
  5870. <productMenu id="battery"
  5871. type="1" >
  5872. </productMenu>
  5873. <productID id="685F"
  5874. />
  5875. <productGroupable type="0"
  5876. />
  5877. </product>
  5878. <product id="SPIDERST2ANC"
  5879. name="SPIDER ST2 ANC"
  5880. series="SPIDER"
  5881. latestVersion="0.5.1"
  5882. latestVersionVoicePrompt="0.2"
  5883. latestVersionMesh="0.8"
  5884. show = "-1" >
  5885. <productMenu id="protocol"
  5886. type="2" >
  5887. </productMenu>
  5888. <productMenu id="ota"
  5889. type="0" >
  5890. <otaPackages>
  5891. <package
  5892. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5893. size="2945812"
  5894. />
  5895. </otaPackages>
  5896. </productMenu>
  5897. <productMenu id="wa"
  5898. type="0" >
  5899. </productMenu>
  5900. <productMenu id="led"
  5901. type="1" >
  5902. </productMenu>
  5903. <productMenu id="meshIntercom"
  5904. type="30" >
  5905. </productMenu>
  5906. <productMenu id="fmradio"
  5907. type="1" >
  5908. </productMenu>
  5909. <productMenu id="phone"
  5910. type="1" >
  5911. </productMenu>
  5912. <productMenu id="music"
  5913. type="1" >
  5914. </productMenu>
  5915. <productMenu id="musicSharing"
  5916. type="0" >
  5917. </productMenu>
  5918. <productMenu id="deviceSetting"
  5919. type="1"
  5920. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5921. </productMenu>
  5922. <productMenu id="quickGuide"
  5923. type="1"
  5924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5925. size="1.12MB" >
  5926. </productMenu>
  5927. <productMenu id="userGuide"
  5928. type="1"
  5929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5930. size="2.0MB" >
  5931. </productMenu>
  5932. <productMenu id="videoGuide"
  5933. type="1"
  5934. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5935. size="3.41MB" >
  5936. </productMenu>
  5937. <productMenu id="volume"
  5938. type="12" >
  5939. </productMenu>
  5940. <productMenu id="battery"
  5941. type="1" >
  5942. </productMenu>
  5943. <productID id="6A00"
  5944. />
  5945. <productGroupable type="0"
  5946. />
  5947. </product>
  5948. <product id="SPIDER_ST1"
  5949. name="SPIDER ST1"
  5950. series="SPIDER"
  5951. latestVersion="2.5.3"
  5952. latestVersionVoicePrompt="1.6"
  5953. show = "1" >
  5954. <productMenu id="protocol"
  5955. type="2" >
  5956. </productMenu>
  5957. <productMenu id="alexa"
  5958. type="0" >
  5959. </productMenu>
  5960. <productMenu id="ota"
  5961. type="2" >
  5962. <productMenuType version="2.1.9"
  5963. type="0"
  5964. />
  5965. <otaPackages>
  5966. <package
  5967. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5968. size="2945812"
  5969. />
  5970. </otaPackages>
  5971. </productMenu>
  5972. <productMenu id="wa"
  5973. type="0" >
  5974. </productMenu>
  5975. <productMenu id="meshIntercom"
  5976. type="30" >
  5977. <productMenuType version="2.1.1"
  5978. type="20"
  5979. />
  5980. </productMenu>
  5981. <productMenu id="meshIntercom+"
  5982. type="3"
  5983. url="2" >
  5984. <productMenuType version="2.2.9"
  5985. type="2"
  5986. />
  5987. <productMenuURL version="2.1.1"
  5988. url="0"
  5989. />
  5990. </productMenu>
  5991. <productMenu id="waveIntercom"
  5992. type="1" >
  5993. <productMenuType version="2.3.9"
  5994. type="0"
  5995. />
  5996. </productMenu>
  5997. <productMenu id="phone"
  5998. type="1" >
  5999. </productMenu>
  6000. <productMenu id="music"
  6001. type="1" >
  6002. </productMenu>
  6003. <productMenu id="musicSharing"
  6004. type="0" >
  6005. </productMenu>
  6006. <productMenu id="deviceSetting"
  6007. type="1"
  6008. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6009. <productMenuURL version="2.4.9"
  6010. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6011. />
  6012. <productMenuURL version="2.2.2"
  6013. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6014. />
  6015. <productMenuURL version="2.1.1"
  6016. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6017. />
  6018. </productMenu>
  6019. <productMenu id="quickGuide"
  6020. type="0"
  6021. url=""
  6022. size="1.12MB" >
  6023. </productMenu>
  6024. <productMenu id="userGuide"
  6025. type="1"
  6026. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6027. size="2.0MB" >
  6028. </productMenu>
  6029. <productMenu id="videoGuide"
  6030. type="1"
  6031. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6032. size="3.41MB" >
  6033. </productMenu>
  6034. <productMenu id="connectGuide"
  6035. type="1"
  6036. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6037. size="1.12MB" >
  6038. </productMenu>
  6039. <productMenu id="volume"
  6040. type="12" >
  6041. </productMenu>
  6042. <productMenu id="volume+"
  6043. type="2"
  6044. url="0x2000" >
  6045. </productMenu>
  6046. <productMenu id="battery"
  6047. type="1" >
  6048. </productMenu>
  6049. <productID id="6800"
  6050. />
  6051. <productGroupable type="0"
  6052. />
  6053. </product>
  6054. <product id="SPIDER_ST1"
  6055. name="SPIDER ST1"
  6056. series="SPIDER"
  6057. latestVersion="1.2.2"
  6058. show = "-1" >
  6059. <productMenu id="protocol"
  6060. type="2" >
  6061. </productMenu>
  6062. <productMenu id="alexa"
  6063. type="0" >
  6064. </productMenu>
  6065. <productMenu id="ota"
  6066. type="0" >
  6067. </productMenu>
  6068. <productMenu id="wa"
  6069. type="0" >
  6070. </productMenu>
  6071. <productMenu id="meshIntercom"
  6072. type="20" >
  6073. </productMenu>
  6074. <productMenu id="phone"
  6075. type="1" >
  6076. </productMenu>
  6077. <productMenu id="music"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="deviceSetting"
  6081. type="1"
  6082. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6083. </productMenu>
  6084. <productMenu id="quickGuide"
  6085. type="0"
  6086. url=""
  6087. size="1.12MB" >
  6088. </productMenu>
  6089. <productMenu id="userGuide"
  6090. type="1"
  6091. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6092. size="2.0MB" >
  6093. </productMenu>
  6094. <productMenu id="videoGuide"
  6095. type="1"
  6096. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6097. size="3.41MB" >
  6098. </productMenu>
  6099. <productMenu id="volume"
  6100. type="13" >
  6101. <productMenuType version="1.1.6"
  6102. type="14"/>
  6103. </productMenu>
  6104. <productMenu id="battery"
  6105. type="1" >
  6106. </productMenu>
  6107. <productID id="6510"
  6108. />
  6109. <productGroupable type="0"
  6110. />
  6111. </product>
  6112. <product id="SPIDER_RT1"
  6113. name="SPIDER RT1"
  6114. series="SPIDER"
  6115. latestVersion="2.5.3"
  6116. latestVersionVoicePrompt="1.6"
  6117. show = "1" >
  6118. <productMenu id="protocol"
  6119. type="2" >
  6120. </productMenu>
  6121. <productMenu id="alexa"
  6122. type="0" >
  6123. </productMenu>
  6124. <productMenu id="ota"
  6125. type="2" >
  6126. <productMenuType version="2.1.9"
  6127. type="0"
  6128. />
  6129. <otaPackages>
  6130. <package
  6131. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6132. size="2945812"
  6133. />
  6134. </otaPackages>
  6135. </productMenu>
  6136. <productMenu id="wa"
  6137. type="0" >
  6138. </productMenu>
  6139. <productMenu id="meshIntercom"
  6140. type="30" >
  6141. <productMenuType version="2.1.1"
  6142. type="20"
  6143. />
  6144. </productMenu>
  6145. <productMenu id="meshIntercom+"
  6146. type="3"
  6147. url="2" >
  6148. <productMenuType version="2.2.9"
  6149. type="2"
  6150. />
  6151. <productMenuURL version="2.1.1"
  6152. url="0"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="waveIntercom"
  6156. type="1" >
  6157. <productMenuType version="2.3.9"
  6158. type="0"
  6159. />
  6160. </productMenu>
  6161. <productMenu id="phone"
  6162. type="1" >
  6163. </productMenu>
  6164. <productMenu id="music"
  6165. type="1" >
  6166. </productMenu>
  6167. <productMenu id="musicSharing"
  6168. type="0" >
  6169. </productMenu>
  6170. <productMenu id="deviceSetting"
  6171. type="1"
  6172. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6173. <productMenuURL version="2.4.9"
  6174. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6175. />
  6176. <productMenuURL version="2.2.2"
  6177. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6178. />
  6179. <productMenuURL version="2.1.1"
  6180. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6181. />
  6182. </productMenu>
  6183. <productMenu id="quickGuide"
  6184. type="0"
  6185. url=""
  6186. size="1.12MB" >
  6187. </productMenu>
  6188. <productMenu id="userGuide"
  6189. type="1"
  6190. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6191. size="2.0MB" >
  6192. </productMenu>
  6193. <productMenu id="videoGuide"
  6194. type="1"
  6195. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6196. size="3.41MB" >
  6197. </productMenu>
  6198. <productMenu id="connectGuide"
  6199. type="1"
  6200. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6201. size="1.12MB" >
  6202. </productMenu>
  6203. <productMenu id="volume"
  6204. type="12" >
  6205. </productMenu>
  6206. <productMenu id="volume+"
  6207. type="2"
  6208. url="0x2000" >
  6209. </productMenu>
  6210. <productMenu id="battery"
  6211. type="1" >
  6212. </productMenu>
  6213. <productID id="6810"
  6214. />
  6215. <productGroupable type="0"
  6216. />
  6217. </product>
  6218. <product id="SPIDER_RT1"
  6219. name="SPIDER RT1"
  6220. series="SPIDER"
  6221. latestVersion="1.2.2"
  6222. show = "-1" >
  6223. <productMenu id="protocol"
  6224. type="2" >
  6225. </productMenu>
  6226. <productMenu id="alexa"
  6227. type="0" >
  6228. </productMenu>
  6229. <productMenu id="ota"
  6230. type="0" >
  6231. </productMenu>
  6232. <productMenu id="wa"
  6233. type="0" >
  6234. </productMenu>
  6235. <productMenu id="meshIntercom"
  6236. type="20" >
  6237. </productMenu>
  6238. <productMenu id="phone"
  6239. type="1" >
  6240. </productMenu>
  6241. <productMenu id="music"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="deviceSetting"
  6245. type="1"
  6246. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6247. </productMenu>
  6248. <productMenu id="quickGuide"
  6249. type="0"
  6250. url=""
  6251. size="1.32MB" >
  6252. </productMenu>
  6253. <productMenu id="userGuide"
  6254. type="1"
  6255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6256. size="1.79MB" >
  6257. </productMenu>
  6258. <productMenu id="videoGuide"
  6259. type="1"
  6260. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6261. size="3.41MB" >
  6262. </productMenu>
  6263. <productMenu id="volume"
  6264. type="13" >
  6265. <productMenuType version="1.1.6"
  6266. type="14"/>
  6267. </productMenu>
  6268. <productMenu id="battery"
  6269. type="1" >
  6270. </productMenu>
  6271. <productID id="6500"
  6272. />
  6273. <productGroupable type="0"
  6274. />
  6275. </product>
  6276. <product id="30K"
  6277. name="30K"
  6278. series="30"
  6279. latestVersion="4.5.1"
  6280. show = "1" >
  6281. <productMenu id="protocol"
  6282. type="2" >
  6283. </productMenu>
  6284. <productMenu id="alexa"
  6285. type="0" >
  6286. </productMenu>
  6287. <productMenu id="wa"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="sip"
  6291. type="1" >
  6292. </productMenu>
  6293. <productMenu id="meshIntercom"
  6294. type="30" >
  6295. <productMenuType version="4.0.4"
  6296. type="20"
  6297. />
  6298. </productMenu>
  6299. <productMenu id="meshIntercom+"
  6300. type="3"
  6301. url="2" >
  6302. <productMenuType version="4.3.9"
  6303. type="2"
  6304. />
  6305. <productMenuURL version="4.0.4"
  6306. url="0"
  6307. />
  6308. </productMenu>
  6309. <productMenu id="waveIntercom"
  6310. type="1" >
  6311. <productMenuType version="4.4.9"
  6312. type="0"
  6313. />
  6314. </productMenu>
  6315. <productMenu id="bluetoothIntercom"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="phone"
  6319. type="1" >
  6320. </productMenu>
  6321. <productMenu id="music"
  6322. type="1" >
  6323. </productMenu>
  6324. <productMenu id="fmradio"
  6325. type="1" >
  6326. </productMenu>
  6327. <productMenu id="deviceSetting"
  6328. type="1"
  6329. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6330. <productMenuURL version="4.3"
  6331. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6332. />
  6333. <productMenuURL version="4.2"
  6334. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6335. />
  6336. <productMenuURL version="4.0.4"
  6337. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6338. />
  6339. </productMenu>
  6340. <productMenu id="quickGuide"
  6341. type="0"
  6342. url=""
  6343. size="934KB" >
  6344. </productMenu>
  6345. <productMenu id="userGuide"
  6346. type="1"
  6347. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6348. size="1.14MB" >
  6349. </productMenu>
  6350. <productMenu id="connectGuide"
  6351. type="1"
  6352. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6353. size="1.12MB" >
  6354. </productMenu>
  6355. <productMenu id="volume"
  6356. type="11" >
  6357. </productMenu>
  6358. <productMenu id="battery"
  6359. type="1" >
  6360. </productMenu>
  6361. <productID id="3211"
  6362. />
  6363. <productGroupable type="0"
  6364. />
  6365. </product>
  6366. <product id="30K"
  6367. name="30K"
  6368. series="30"
  6369. latestVersion="3.5"
  6370. show = "-1" >
  6371. <productMenu id="protocol"
  6372. type="1"
  6373. url="0">
  6374. </productMenu>
  6375. <productMenu id="wa"
  6376. type="7" >
  6377. </productMenu>
  6378. <productMenu id="sip"
  6379. type="1" >
  6380. </productMenu>
  6381. <productMenu id="meshIntercom"
  6382. type="20" >
  6383. <productMenuType version="2.9.9"
  6384. type="10"
  6385. />
  6386. </productMenu>
  6387. <productMenu id="meshIntercom+"
  6388. type="3"
  6389. url="2" >
  6390. <productMenuType version="3.4.9"
  6391. type="2"
  6392. />
  6393. <productMenuType version="2.9.9"
  6394. type="1"
  6395. />
  6396. <productMenuURL version="3.3.1"
  6397. url="0"
  6398. />
  6399. </productMenu>
  6400. <productMenu id="bluetoothIntercom"
  6401. type="1" >
  6402. </productMenu>
  6403. <productMenu id="phone"
  6404. type="1" >
  6405. </productMenu>
  6406. <productMenu id="music"
  6407. type="1" >
  6408. </productMenu>
  6409. <productMenu id="fmradio"
  6410. type="1" >
  6411. </productMenu>
  6412. <productMenu id="deviceSetting"
  6413. type="1"
  6414. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6415. <productMenuURL version="3.4.9"
  6416. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6417. />
  6418. <productMenuURL version="3.3.1"
  6419. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6420. />
  6421. <productMenuURL version="3.0.1"
  6422. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6423. />
  6424. <productMenuURL version="2.3.1"
  6425. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6426. />
  6427. <productMenuURL version="2.0"
  6428. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6429. />
  6430. <productMenuURL version="1.0.3"
  6431. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6432. />
  6433. </productMenu>
  6434. <productMenu id="quickGuide"
  6435. type="0"
  6436. url=""
  6437. size="1.06MB" >
  6438. </productMenu>
  6439. <productMenu id="userGuide"
  6440. type="1"
  6441. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6442. size="3.15MB" >
  6443. </productMenu>
  6444. <productMenu id="volume"
  6445. type="1" >
  6446. </productMenu>
  6447. <productID id="3110"
  6448. />
  6449. <productGroupable type="0"
  6450. />
  6451. </product>
  6452. <product id="FURY"
  6453. name="FURY"
  6454. series="Helmet"
  6455. latestVersion="1.0"
  6456. show = "-1" >
  6457. <productMenu id="protocol"
  6458. type="2" >
  6459. </productMenu>
  6460. <productMenu id="alexa"
  6461. type="0" >
  6462. </productMenu>
  6463. <productMenu id="ota"
  6464. type="0" >
  6465. </productMenu>
  6466. <productMenu id="wa"
  6467. type="0" >
  6468. </productMenu>
  6469. <productMenu id="meshIntercom"
  6470. type="20" >
  6471. </productMenu>
  6472. <productMenu id="phone"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="music"
  6476. type="1" >
  6477. </productMenu>
  6478. <productMenu id="fmradio"
  6479. type="1" >
  6480. </productMenu>
  6481. <productMenu id="deviceSetting"
  6482. type="1"
  6483. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6484. </productMenu>
  6485. <productMenu id="quickGuide"
  6486. type="1"
  6487. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6488. size="1.12MB" >
  6489. </productMenu>
  6490. <productMenu id="userGuide"
  6491. type="1"
  6492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6493. size="2.0MB" >
  6494. </productMenu>
  6495. <productMenu id="volume"
  6496. type="13" >
  6497. </productMenu>
  6498. <productMenu id="battery"
  6499. type="1" >
  6500. </productMenu>
  6501. <productID id="5552"
  6502. />
  6503. <productGroupable type="0"
  6504. />
  6505. </product>
  6506. <product id="MomentumM"
  6507. name="Momentum EVO"
  6508. series="Helmet"
  6509. latestVersion="2.1.2"
  6510. show = "1" >
  6511. <productMenu id="protocol"
  6512. type="1"
  6513. url="0">
  6514. </productMenu>
  6515. <productMenu id="wa"
  6516. type="3" >
  6517. </productMenu>
  6518. <productMenu id="sip"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="meshIntercom"
  6522. type="20" >
  6523. <productMenuType version="1.9.9"
  6524. type="10"
  6525. />
  6526. </productMenu>
  6527. <productMenu id="bluetoothIntercom"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="phone"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="music"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="fmradio"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="deviceSetting"
  6540. type="1"
  6541. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6542. <productMenuURL version="1.0.1"
  6543. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6544. />
  6545. </productMenu>
  6546. <productMenu id="quickGuide"
  6547. type="1"
  6548. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6549. size="1.06MB" >
  6550. </productMenu>
  6551. <productMenu id="userGuide"
  6552. type="1"
  6553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6554. size="3.15MB" >
  6555. </productMenu>
  6556. <productMenu id="connectGuide"
  6557. type="1"
  6558. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6559. size="1.12MB" >
  6560. </productMenu>
  6561. <productMenu id="volume"
  6562. type="2" >
  6563. </productMenu>
  6564. <productID id="3116"
  6565. />
  6566. <productGroupable type="0"
  6567. />
  6568. </product>
  6569. <product id="Momentum"
  6570. name="Momentum"
  6571. series="Helmet"
  6572. latestVersion="1.0.9"
  6573. show = "1" >
  6574. <productMenu id="protocol"
  6575. type="0">
  6576. </productMenu>
  6577. <productMenu id="sip"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="bluetoothIntercom"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="intercomSetting"
  6584. type="1" >
  6585. </productMenu>
  6586. <productMenu id="phone"
  6587. type="2" >
  6588. </productMenu>
  6589. <productMenu id="fmradio"
  6590. type="3" >
  6591. </productMenu>
  6592. <productMenu id="deviceSetting"
  6593. type="1"
  6594. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6595. </productMenu>
  6596. <productMenu id="quickGuide"
  6597. type="1"
  6598. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6599. size="796KB" >
  6600. </productMenu>
  6601. <productMenu id="userGuide"
  6602. type="1"
  6603. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6604. size="1.90MB" >
  6605. </productMenu>
  6606. <productMenu id="connectGuide"
  6607. type="1"
  6608. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6609. size="1.12MB" >
  6610. </productMenu>
  6611. <productID id="4310"
  6612. />
  6613. <productGroupable type="1"
  6614. />
  6615. </product>
  6616. <product id="Momentum_Pro"
  6617. name="Momentum Pro"
  6618. series="Helmet"
  6619. latestVersion="1.0.6"
  6620. show = "1" >
  6621. <productMenu id="protocol"
  6622. type="0">
  6623. </productMenu>
  6624. <productMenu id="sip"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="bluetoothIntercom"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="intercomSetting"
  6631. type="1" >
  6632. </productMenu>
  6633. <productMenu id="phone"
  6634. type="2" >
  6635. </productMenu>
  6636. <productMenu id="fmradio"
  6637. type="3" >
  6638. </productMenu>
  6639. <productMenu id="deviceSetting"
  6640. type="1"
  6641. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6642. </productMenu>
  6643. <productMenu id="quickGuide"
  6644. type="1"
  6645. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6646. size="796KB" >
  6647. </productMenu>
  6648. <productMenu id="userGuide"
  6649. type="1"
  6650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6651. size="1.90MB" >
  6652. </productMenu>
  6653. <productMenu id="connectGuide"
  6654. type="1"
  6655. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6656. size="1.12MB" >
  6657. </productMenu>
  6658. <productID id="4330"
  6659. />
  6660. <productGroupable type="1"
  6661. />
  6662. </product>
  6663. <product id="Momentum_INC"
  6664. name="Momentum INC"
  6665. series="Helmet"
  6666. latestVersion="1.0.7"
  6667. show = "1" >
  6668. <productMenu id="protocol"
  6669. type="0">
  6670. </productMenu>
  6671. <productMenu id="sip"
  6672. type="1" >
  6673. </productMenu>
  6674. <productMenu id="bluetoothIntercom"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="intercomSetting"
  6678. type="1" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="2" >
  6682. </productMenu>
  6683. <productMenu id="fmradio"
  6684. type="3" >
  6685. </productMenu>
  6686. <productMenu id="deviceSetting"
  6687. type="1"
  6688. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6689. </productMenu>
  6690. <productMenu id="quickGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6693. size="794KB" >
  6694. </productMenu>
  6695. <productMenu id="userGuide"
  6696. type="1"
  6697. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6698. size="1.53MB" >
  6699. </productMenu>
  6700. <productMenu id="connectGuide"
  6701. type="1"
  6702. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6703. size="1.12MB" >
  6704. </productMenu>
  6705. <productID id="4410"
  6706. />
  6707. <productGroupable type="1"
  6708. />
  6709. </product>
  6710. <product id="Momentum_INCP"
  6711. name="Momentum INC Pro"
  6712. series="Helmet"
  6713. latestVersion="1.0.4"
  6714. show = "1" >
  6715. <productMenu id="protocol"
  6716. type="0">
  6717. </productMenu>
  6718. <productMenu id="sip"
  6719. type="1" >
  6720. </productMenu>
  6721. <productMenu id="bluetoothIntercom"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="intercomSetting"
  6725. type="1" >
  6726. </productMenu>
  6727. <productMenu id="phone"
  6728. type="2" >
  6729. </productMenu>
  6730. <productMenu id="fmradio"
  6731. type="3" >
  6732. </productMenu>
  6733. <productMenu id="deviceSetting"
  6734. type="1"
  6735. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6736. </productMenu>
  6737. <productMenu id="quickGuide"
  6738. type="1"
  6739. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6740. size="794KB" >
  6741. </productMenu>
  6742. <productMenu id="userGuide"
  6743. type="1"
  6744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6745. size="1.53MB" >
  6746. </productMenu>
  6747. <productMenu id="connectGuide"
  6748. type="1"
  6749. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6750. size="1.12MB" >
  6751. </productMenu>
  6752. <productID id="4430"
  6753. />
  6754. <productGroupable type="1"
  6755. />
  6756. </product>
  6757. <product id="Momentum_Lite"
  6758. name="Momentum Lite"
  6759. series="Helmet"
  6760. latestVersion="2.0.3"
  6761. show = "1" >
  6762. <productMenu id="protocol"
  6763. type="0">
  6764. </productMenu>
  6765. <productMenu id="sip"
  6766. type="1" >
  6767. </productMenu>
  6768. <productMenu id="bluetoothIntercom"
  6769. type="1" >
  6770. </productMenu>
  6771. <productMenu id="phone"
  6772. type="2" >
  6773. </productMenu>
  6774. <productMenu id="fmradio"
  6775. type="3" >
  6776. </productMenu>
  6777. <productMenu id="deviceSetting"
  6778. type="1"
  6779. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6780. <productMenuURL version="1.1"
  6781. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6782. />
  6783. </productMenu>
  6784. <productMenu id="quickGuide"
  6785. type="1"
  6786. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6787. size="790KB" >
  6788. </productMenu>
  6789. <productMenu id="userGuide"
  6790. type="1"
  6791. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6792. size="1.42MB" >
  6793. </productMenu>
  6794. <productMenu id="connectGuide"
  6795. type="1"
  6796. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6797. size="1.12MB" >
  6798. </productMenu>
  6799. <productID id="5526"
  6800. />
  6801. <productGroupable type="0"
  6802. />
  6803. </product>
  6804. <product id="OUTRUSHM"
  6805. name="OUTRUSH M"
  6806. series="Helmet"
  6807. latestVersion="1.0"
  6808. show = "-1" >
  6809. <productMenu id="protocol"
  6810. type="2" >
  6811. </productMenu>
  6812. <productMenu id="alexa"
  6813. type="0" >
  6814. </productMenu>
  6815. <productMenu id="ota"
  6816. type="0" >
  6817. </productMenu>
  6818. <productMenu id="wa"
  6819. type="0" >
  6820. </productMenu>
  6821. <productMenu id="meshIntercom"
  6822. type="30" >
  6823. </productMenu>
  6824. <productMenu id="phone"
  6825. type="1" >
  6826. </productMenu>
  6827. <productMenu id="music"
  6828. type="1" >
  6829. </productMenu>
  6830. <productMenu id="fmradio"
  6831. type="1" >
  6832. </productMenu>
  6833. <productMenu id="deviceSetting"
  6834. type="1"
  6835. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6836. </productMenu>
  6837. <productMenu id="quickGuide"
  6838. type="1"
  6839. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6840. size="1.12MB" >
  6841. </productMenu>
  6842. <productMenu id="userGuide"
  6843. type="1"
  6844. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6845. size="2.0MB" >
  6846. </productMenu>
  6847. <productMenu id="volume"
  6848. type="13" >
  6849. </productMenu>
  6850. <productMenu id="battery"
  6851. type="1" >
  6852. </productMenu>
  6853. <productID id="5600"
  6854. />
  6855. <productGroupable type="0"
  6856. />
  6857. </product>
  6858. <product id="ProRideEVO"
  6859. name="ProRide EVO"
  6860. series="Helmet"
  6861. latestVersion="1.1.2"
  6862. show = "1" >
  6863. <productMenu id="protocol"
  6864. type="0">
  6865. </productMenu>
  6866. <productMenu id="sip"
  6867. type="1" >
  6868. </productMenu>
  6869. <productMenu id="bluetoothIntercom"
  6870. type="1" >
  6871. </productMenu>
  6872. <productMenu id="phone"
  6873. type="2" >
  6874. </productMenu>
  6875. <productMenu id="fmradio"
  6876. type="3" >
  6877. </productMenu>
  6878. <productMenu id="deviceSetting"
  6879. type="1"
  6880. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6881. </productMenu>
  6882. <productMenu id="userGuide"
  6883. type="1"
  6884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6885. size="778KB" >
  6886. </productMenu>
  6887. <productMenu id="connectGuide"
  6888. type="1"
  6889. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6890. size="1.12MB" >
  6891. </productMenu>
  6892. <productID id="5426"
  6893. />
  6894. <productGroupable type="0"
  6895. />
  6896. </product>
  6897. <product id="OUTRUSHR"
  6898. name="OUTRUSH R"
  6899. series="Helmet"
  6900. latestVersion="2.1"
  6901. show = "1" >
  6902. <productMenu id="protocol"
  6903. type="3" >
  6904. </productMenu>
  6905. <productMenu id="sip"
  6906. type="1" >
  6907. </productMenu>
  6908. <productMenu id="bluetoothIntercom"
  6909. type="1" >
  6910. </productMenu>
  6911. <productMenu id="phone"
  6912. type="1" >
  6913. </productMenu>
  6914. <productMenu id="fmradio"
  6915. type="0" >
  6916. </productMenu>
  6917. <productMenu id="deviceSetting"
  6918. type="1"
  6919. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6920. </productMenu>
  6921. <productMenu id="userGuide"
  6922. type="1"
  6923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6924. size="1.14MB" >
  6925. </productMenu>
  6926. <productMenu id="connectGuide"
  6927. type="1"
  6928. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6929. size="1.12MB" >
  6930. </productMenu>
  6931. <productID id="5440"
  6932. />
  6933. <productGroupable type="0"
  6934. />
  6935. </product>
  6936. <product id="OUTRUSHR"
  6937. name="OUTRUSH R"
  6938. series="Helmet"
  6939. latestVersion="1.1.4"
  6940. show = "-1" >
  6941. <productMenu id="protocol"
  6942. type="0">
  6943. </productMenu>
  6944. <productMenu id="sip"
  6945. type="1" >
  6946. </productMenu>
  6947. <productMenu id="bluetoothIntercom"
  6948. type="1" >
  6949. </productMenu>
  6950. <productMenu id="phone"
  6951. type="2" >
  6952. </productMenu>
  6953. <productMenu id="fmradio"
  6954. type="3" >
  6955. </productMenu>
  6956. <productMenu id="deviceSetting"
  6957. type="1"
  6958. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6959. </productMenu>
  6960. <productMenu id="userGuide"
  6961. type="1"
  6962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6963. size="660KB" >
  6964. </productMenu>
  6965. <productMenu id="connectGuide"
  6966. type="1"
  6967. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6968. size="1.12MB" >
  6969. </productMenu>
  6970. <productID id="5424"
  6971. />
  6972. <productGroupable type="0"
  6973. />
  6974. </product>
  6975. <product id="OUTSTARS"
  6976. name="OUTSTAR S"
  6977. series="Helmet"
  6978. latestVersion="2.0.1"
  6979. show = "-1" >
  6980. <productMenu id="protocol"
  6981. type="3" >
  6982. </productMenu>
  6983. <productMenu id="sip"
  6984. type="1" >
  6985. </productMenu>
  6986. <productMenu id="bluetoothIntercom"
  6987. type="1" >
  6988. </productMenu>
  6989. <productMenu id="phone"
  6990. type="1" >
  6991. </productMenu>
  6992. <productMenu id="fmradio"
  6993. type="0" >
  6994. </productMenu>
  6995. <productMenu id="deviceSetting"
  6996. type="1"
  6997. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6998. </productMenu>
  6999. <productMenu id="userGuide"
  7000. type="0"
  7001. url=""
  7002. size="1.14MB" >
  7003. </productMenu>
  7004. <productID id="5443"
  7005. />
  7006. <productGroupable type="0"
  7007. />
  7008. </product>
  7009. <product id="OUTSTARS"
  7010. name="OUTSTAR S"
  7011. series="Helmet"
  7012. latestVersion="1.1.4"
  7013. show = "1" >
  7014. <productMenu id="protocol"
  7015. type="0">
  7016. </productMenu>
  7017. <productMenu id="sip"
  7018. type="1" >
  7019. </productMenu>
  7020. <productMenu id="bluetoothIntercom"
  7021. type="1" >
  7022. </productMenu>
  7023. <productMenu id="phone"
  7024. type="2" >
  7025. </productMenu>
  7026. <productMenu id="fmradio"
  7027. type="3" >
  7028. </productMenu>
  7029. <productMenu id="deviceSetting"
  7030. type="1"
  7031. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7032. </productMenu>
  7033. <productMenu id="quickGuide"
  7034. type="1"
  7035. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7036. size="643KB" >
  7037. </productMenu>
  7038. <productMenu id="userGuide"
  7039. type="1"
  7040. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7041. size="1.15MB" >
  7042. </productMenu>
  7043. <productMenu id="connectGuide"
  7044. type="1"
  7045. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7046. size="1.12MB" >
  7047. </productMenu>
  7048. <productID id="5428"
  7049. />
  7050. <productGroupable type="0"
  7051. />
  7052. </product>
  7053. <product id="OUTRIDE"
  7054. name="OUTRIDE"
  7055. series="Helmet"
  7056. latestVersion="1.0.1"
  7057. show = "1" >
  7058. <productMenu id="protocol"
  7059. type="0">
  7060. </productMenu>
  7061. <productMenu id="sip"
  7062. type="1" >
  7063. </productMenu>
  7064. <productMenu id="bluetoothIntercom"
  7065. type="1" >
  7066. </productMenu>
  7067. <productMenu id="phone"
  7068. type="2" >
  7069. </productMenu>
  7070. <productMenu id="fmradio"
  7071. type="3" >
  7072. </productMenu>
  7073. <productMenu id="deviceSetting"
  7074. type="1"
  7075. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7076. </productMenu>
  7077. <productMenu id="quickGuide"
  7078. type="1"
  7079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7080. size="643KB" >
  7081. </productMenu>
  7082. <productMenu id="userGuide"
  7083. type="1"
  7084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7085. size="660KB" >
  7086. </productMenu>
  7087. <productMenu id="connectGuide"
  7088. type="1"
  7089. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7090. size="1.12MB" >
  7091. </productMenu>
  7092. <productID id="5432"
  7093. />
  7094. <productGroupable type="0"
  7095. />
  7096. </product>
  7097. <product id="OUTFORCE"
  7098. name="OUTFORCE"
  7099. series="Helmet"
  7100. latestVersion="1.0.1"
  7101. show = "1" >
  7102. <productMenu id="protocol"
  7103. type="0">
  7104. </productMenu>
  7105. <productMenu id="sip"
  7106. type="1" >
  7107. </productMenu>
  7108. <productMenu id="bluetoothIntercom"
  7109. type="1" >
  7110. </productMenu>
  7111. <productMenu id="phone"
  7112. type="2" >
  7113. </productMenu>
  7114. <productMenu id="fmradio"
  7115. type="3" >
  7116. </productMenu>
  7117. <productMenu id="deviceSetting"
  7118. type="1"
  7119. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7120. </productMenu>
  7121. <productMenu id="quickGuide"
  7122. type="1"
  7123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7124. size="643KB" >
  7125. </productMenu>
  7126. <productMenu id="userGuide"
  7127. type="1"
  7128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7129. size="660KB" >
  7130. </productMenu>
  7131. <productMenu id="connectGuide"
  7132. type="1"
  7133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7134. size="1.12MB" >
  7135. </productMenu>
  7136. <productID id="5430"
  7137. />
  7138. <productGroupable type="0"
  7139. />
  7140. </product>
  7141. <product id="Rumba"
  7142. name="Rumba"
  7143. series="30"
  7144. latestVersion="2.0"
  7145. show = "-1" >
  7146. <productMenu id="protocol"
  7147. type="3" >
  7148. </productMenu>
  7149. <productMenu id="sip"
  7150. type="1" >
  7151. </productMenu>
  7152. <productMenu id="bluetoothIntercom"
  7153. type="1" >
  7154. </productMenu>
  7155. <productMenu id="deviceSetting"
  7156. type="1"
  7157. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7158. </productMenu>
  7159. <productMenu id="quickGuide"
  7160. type="1"
  7161. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7162. size="344KB" >
  7163. </productMenu>
  7164. <productMenu id="userGuide"
  7165. type="1"
  7166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7167. size="1.14MB" >
  7168. </productMenu>
  7169. <productID id="6322"
  7170. />
  7171. <productGroupable type="0"
  7172. />
  7173. </product>
  7174. <product id="Savage"
  7175. name="Savage"
  7176. series="Helmet"
  7177. latestVersion="1.2.2"
  7178. show = "1" >
  7179. <productMenu id="protocol"
  7180. type="0">
  7181. </productMenu>
  7182. <productMenu id="sip"
  7183. type="1" >
  7184. </productMenu>
  7185. <productMenu id="bluetoothIntercom"
  7186. type="1" >
  7187. </productMenu>
  7188. <productMenu id="phone"
  7189. type="2" >
  7190. </productMenu>
  7191. <productMenu id="fmradio"
  7192. type="3" >
  7193. </productMenu>
  7194. <productMenu id="deviceSetting"
  7195. type="1"
  7196. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7197. <productMenuURL version="1.9"
  7198. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7199. />
  7200. <productMenuURL version="1.1"
  7201. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7202. />
  7203. </productMenu>
  7204. <productMenu id="quickGuide"
  7205. type="1"
  7206. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7207. size="796KB" >
  7208. </productMenu>
  7209. <productMenu id="userGuide"
  7210. type="1"
  7211. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7212. size="910KB" >
  7213. </productMenu>
  7214. <productMenu id="connectGuide"
  7215. type="1"
  7216. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7217. size="1.12MB" >
  7218. </productMenu>
  7219. <productID id="5550"
  7220. />
  7221. <productGroupable type="0"
  7222. />
  7223. </product>
  7224. <product id="RECON"
  7225. name="RECON"
  7226. series="Helmet"
  7227. latestVersion="1.0"
  7228. latestVersionVoicePrompt="1.8"
  7229. show = "-1" >
  7230. <productMenu id="protocol"
  7231. type="2" >
  7232. </productMenu>
  7233. <productMenu id="ota"
  7234. type="2" >
  7235. <otaLanguages>
  7236. <otaLanguage
  7237. id="0"
  7238. name="English"
  7239. package="0"
  7240. />
  7241. <otaLanguage
  7242. id="0"
  7243. name="French"
  7244. package="1"
  7245. />
  7246. <otaLanguage
  7247. id="0"
  7248. name="Spanish"
  7249. package="2"
  7250. />
  7251. <otaLanguage
  7252. id="0"
  7253. name="Italian"
  7254. package="3"
  7255. />
  7256. <otaLanguage
  7257. id="0"
  7258. name="German"
  7259. package="4"
  7260. />
  7261. <otaLanguage
  7262. id="0"
  7263. name="Dutch"
  7264. package="5"
  7265. />
  7266. <otaLanguage
  7267. id="0"
  7268. name="Russian"
  7269. package="6"
  7270. />
  7271. <otaLanguage
  7272. id="0"
  7273. name="Chinese"
  7274. package="7"
  7275. />
  7276. <otaLanguage
  7277. id="0"
  7278. name="Korean"
  7279. package="8"
  7280. />
  7281. <otaLanguage
  7282. id="0"
  7283. name="Japanese"
  7284. package="9"
  7285. />
  7286. <otaLanguage
  7287. id="0"
  7288. name="Finnish"
  7289. package="10"
  7290. />
  7291. <otaLanguage
  7292. id="0"
  7293. name="Polish"
  7294. package="11"
  7295. />
  7296. </otaLanguages>
  7297. <otaPackages>
  7298. <package
  7299. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7300. size="5183988"
  7301. />
  7302. <package
  7303. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7304. size="5183988"
  7305. />
  7306. <package
  7307. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7308. size="5183988"
  7309. />
  7310. <package
  7311. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7312. size="5183988"
  7313. />
  7314. <package
  7315. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7316. size="5183988"
  7317. />
  7318. <package
  7319. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7320. size="5183988"
  7321. />
  7322. <package
  7323. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7324. size="5183988"
  7325. />
  7326. <package
  7327. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7328. size="5183988"
  7329. />
  7330. <package
  7331. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7332. size="5183988"
  7333. />
  7334. <package
  7335. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7336. size="5183988"
  7337. />
  7338. <package
  7339. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7340. size="5183988"
  7341. />
  7342. <package
  7343. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7344. size="5183988"
  7345. />
  7346. </otaPackages>
  7347. </productMenu>
  7348. <productMenu id="wa"
  7349. type="0" >
  7350. </productMenu>
  7351. <productMenu id="led"
  7352. type="5" >
  7353. </productMenu>
  7354. <productMenu id="led+"
  7355. type="2"
  7356. url="1" >
  7357. </productMenu>
  7358. <productMenu id="meshIntercom+"
  7359. type="3"
  7360. url="2" >
  7361. </productMenu>
  7362. <productMenu id="waveIntercom"
  7363. type="1" >
  7364. </productMenu>
  7365. <productMenu id="fmradio"
  7366. type="0" >
  7367. </productMenu>
  7368. <productMenu id="phone"
  7369. type="1" >
  7370. </productMenu>
  7371. <productMenu id="music"
  7372. type="1" >
  7373. </productMenu>
  7374. <productMenu id="musicSharing"
  7375. type="0" >
  7376. </productMenu>
  7377. <productMenu id="deviceSetting"
  7378. type="1"
  7379. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7380. </productMenu>
  7381. <productMenu id="quickGuide"
  7382. type="0"
  7383. url=""
  7384. size="1.12MB" >
  7385. </productMenu>
  7386. <productMenu id="userGuide"
  7387. type="1"
  7388. url=""
  7389. size="2.28MB" >
  7390. </productMenu>
  7391. <productMenu id="videoGuide"
  7392. type="0"
  7393. url=""
  7394. size="3.41MB" >
  7395. </productMenu>
  7396. <productMenu id="volume"
  7397. type="16" >
  7398. </productMenu>
  7399. <productMenu id="volume+"
  7400. type="2"
  7401. url="0x6004" >
  7402. </productMenu>
  7403. <productMenu id="battery"
  7404. type="1" >
  7405. </productMenu>
  7406. <productID id="6A1D"
  7407. />
  7408. <productGroupable type="0"
  7409. />
  7410. </product>
  7411. <product id="SPECTER"
  7412. name="SPECTER"
  7413. series="Helmet"
  7414. latestVersion="1.0.9"
  7415. latestVersionVoicePrompt="1.7"
  7416. show = "1" >
  7417. <productMenu id="protocol"
  7418. type="2" >
  7419. </productMenu>
  7420. <productMenu id="ota"
  7421. type="2" >
  7422. <otaLanguages>
  7423. <otaLanguage
  7424. id="0"
  7425. name="English"
  7426. package="0"
  7427. />
  7428. <otaLanguage
  7429. id="0"
  7430. name="French"
  7431. package="1"
  7432. />
  7433. <otaLanguage
  7434. id="0"
  7435. name="Spanish"
  7436. package="2"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="Italian"
  7441. package="3"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="German"
  7446. package="4"
  7447. />
  7448. <otaLanguage
  7449. id="0"
  7450. name="Dutch"
  7451. package="5"
  7452. />
  7453. <otaLanguage
  7454. id="0"
  7455. name="Russian"
  7456. package="6"
  7457. />
  7458. <otaLanguage
  7459. id="0"
  7460. name="Chinese"
  7461. package="7"
  7462. />
  7463. <otaLanguage
  7464. id="0"
  7465. name="Korean"
  7466. package="8"
  7467. />
  7468. <otaLanguage
  7469. id="0"
  7470. name="Japanese"
  7471. package="9"
  7472. />
  7473. <otaLanguage
  7474. id="0"
  7475. name="Finnish"
  7476. package="10"
  7477. />
  7478. <otaLanguage
  7479. id="0"
  7480. name="Polish"
  7481. package="11"
  7482. />
  7483. </otaLanguages>
  7484. <otaPackages>
  7485. <package
  7486. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7487. size="5183988"
  7488. />
  7489. <package
  7490. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7491. size="5183988"
  7492. />
  7493. <package
  7494. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7495. size="5183988"
  7496. />
  7497. <package
  7498. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7499. size="5183988"
  7500. />
  7501. <package
  7502. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7503. size="5183988"
  7504. />
  7505. <package
  7506. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7507. size="5183988"
  7508. />
  7509. <package
  7510. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7511. size="5183988"
  7512. />
  7513. <package
  7514. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7515. size="5183988"
  7516. />
  7517. <package
  7518. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7519. size="5183988"
  7520. />
  7521. <package
  7522. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7523. size="5183988"
  7524. />
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7531. size="5183988"
  7532. />
  7533. </otaPackages>
  7534. </productMenu>
  7535. <productMenu id="wa"
  7536. type="0" >
  7537. </productMenu>
  7538. <productMenu id="led"
  7539. type="5" >
  7540. </productMenu>
  7541. <productMenu id="led+"
  7542. type="2"
  7543. url="1" >
  7544. </productMenu>
  7545. <productMenu id="meshIntercom+"
  7546. type="3"
  7547. url="2" >
  7548. </productMenu>
  7549. <productMenu id="waveIntercom"
  7550. type="1" >
  7551. </productMenu>
  7552. <productMenu id="fmradio"
  7553. type="0" >
  7554. </productMenu>
  7555. <productMenu id="phone"
  7556. type="1" >
  7557. </productMenu>
  7558. <productMenu id="music"
  7559. type="1" >
  7560. </productMenu>
  7561. <productMenu id="musicSharing"
  7562. type="0" >
  7563. </productMenu>
  7564. <productMenu id="deviceSetting"
  7565. type="1"
  7566. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7567. <productMenuURL version="1.0.10"
  7568. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7569. />
  7570. <productMenuURL version="1.0.4"
  7571. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7572. />
  7573. </productMenu>
  7574. <productMenu id="quickGuide"
  7575. type="0"
  7576. url=""
  7577. size="1.12MB" >
  7578. </productMenu>
  7579. <productMenu id="userGuide"
  7580. type="1"
  7581. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7582. size="2.0MB" >
  7583. </productMenu>
  7584. <productMenu id="videoGuide"
  7585. type="0"
  7586. url=""
  7587. size="3.41MB" >
  7588. </productMenu>
  7589. <productMenu id="connectGuide"
  7590. type="1"
  7591. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7592. size="1.12MB" >
  7593. </productMenu>
  7594. <productMenu id="volume"
  7595. type="16" >
  7596. </productMenu>
  7597. <productMenu id="volume+"
  7598. type="2"
  7599. url="0x6004" >
  7600. </productMenu>
  7601. <productMenu id="battery"
  7602. type="1" >
  7603. </productMenu>
  7604. <productID id="6A11"
  7605. />
  7606. <productGroupable type="0"
  7607. />
  7608. </product>
  7609. <product id="SPECTER"
  7610. name="SPECTER"
  7611. series="Helmet"
  7612. latestVersion="1.0.9"
  7613. latestVersionVoicePrompt="1.7"
  7614. show = "-1" >
  7615. <productMenu id="protocol"
  7616. type="2" >
  7617. </productMenu>
  7618. <productMenu id="ota"
  7619. type="2" >
  7620. <otaLanguages>
  7621. <otaLanguage
  7622. id="0"
  7623. name="English"
  7624. package="0"
  7625. />
  7626. <otaLanguage
  7627. id="0"
  7628. name="French"
  7629. package="1"
  7630. />
  7631. <otaLanguage
  7632. id="0"
  7633. name="Spanish"
  7634. package="2"
  7635. />
  7636. <otaLanguage
  7637. id="0"
  7638. name="Italian"
  7639. package="3"
  7640. />
  7641. <otaLanguage
  7642. id="0"
  7643. name="German"
  7644. package="4"
  7645. />
  7646. <otaLanguage
  7647. id="0"
  7648. name="Dutch"
  7649. package="5"
  7650. />
  7651. <otaLanguage
  7652. id="0"
  7653. name="Russian"
  7654. package="6"
  7655. />
  7656. <otaLanguage
  7657. id="0"
  7658. name="Chinese"
  7659. package="7"
  7660. />
  7661. <otaLanguage
  7662. id="0"
  7663. name="Korean"
  7664. package="8"
  7665. />
  7666. <otaLanguage
  7667. id="0"
  7668. name="Japanese"
  7669. package="9"
  7670. />
  7671. <otaLanguage
  7672. id="0"
  7673. name="Finnish"
  7674. package="10"
  7675. />
  7676. <otaLanguage
  7677. id="0"
  7678. name="Polish"
  7679. package="11"
  7680. />
  7681. </otaLanguages>
  7682. <otaPackages>
  7683. <package
  7684. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7685. size="5183988"
  7686. />
  7687. <package
  7688. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7689. size="5183988"
  7690. />
  7691. <package
  7692. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7693. size="5183988"
  7694. />
  7695. <package
  7696. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7697. size="5183988"
  7698. />
  7699. <package
  7700. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7701. size="5183988"
  7702. />
  7703. <package
  7704. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7705. size="5183988"
  7706. />
  7707. <package
  7708. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7709. size="5183988"
  7710. />
  7711. <package
  7712. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7713. size="5183988"
  7714. />
  7715. <package
  7716. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7717. size="5183988"
  7718. />
  7719. <package
  7720. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7721. size="5183988"
  7722. />
  7723. <package
  7724. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7725. size="5183988"
  7726. />
  7727. <package
  7728. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7729. size="5183988"
  7730. />
  7731. </otaPackages>
  7732. </productMenu>
  7733. <productMenu id="wa"
  7734. type="0" >
  7735. </productMenu>
  7736. <productMenu id="led"
  7737. type="5" >
  7738. </productMenu>
  7739. <productMenu id="led+"
  7740. type="2"
  7741. url="1" >
  7742. </productMenu>
  7743. <productMenu id="meshIntercom+"
  7744. type="3"
  7745. url="2" >
  7746. </productMenu>
  7747. <productMenu id="waveIntercom"
  7748. type="1" >
  7749. </productMenu>
  7750. <productMenu id="fmradio"
  7751. type="0" >
  7752. </productMenu>
  7753. <productMenu id="phone"
  7754. type="1" >
  7755. </productMenu>
  7756. <productMenu id="music"
  7757. type="1" >
  7758. </productMenu>
  7759. <productMenu id="musicSharing"
  7760. type="0" >
  7761. </productMenu>
  7762. <productMenu id="deviceSetting"
  7763. type="1"
  7764. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7765. <productMenuURL version="1.0.10"
  7766. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7767. />
  7768. <productMenuURL version="1.0.4"
  7769. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7770. />
  7771. <productMenuURL version="1.0"
  7772. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7773. />
  7774. </productMenu>
  7775. <productMenu id="quickGuide"
  7776. type="0"
  7777. url=""
  7778. size="1.12MB" >
  7779. </productMenu>
  7780. <productMenu id="userGuide"
  7781. type="1"
  7782. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7783. size="2.0MB" >
  7784. </productMenu>
  7785. <productMenu id="videoGuide"
  7786. type="0"
  7787. url=""
  7788. size="3.41MB" >
  7789. </productMenu>
  7790. <productMenu id="connectGuide"
  7791. type="1"
  7792. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7793. size="1.12MB" >
  7794. </productMenu>
  7795. <productMenu id="volume"
  7796. type="16" >
  7797. </productMenu>
  7798. <productMenu id="volume+"
  7799. type="2"
  7800. url="0x6004" >
  7801. </productMenu>
  7802. <productMenu id="battery"
  7803. type="1" >
  7804. </productMenu>
  7805. <productID id="6A0A"
  7806. />
  7807. <productGroupable type="0"
  7808. />
  7809. </product>
  7810. <product id="OUTLANDER"
  7811. name="OUTLANDER"
  7812. series="Helmet"
  7813. latestVersion="1.0.9"
  7814. latestVersionVoicePrompt="1.7"
  7815. show = "1" >
  7816. <productMenu id="protocol"
  7817. type="2" >
  7818. </productMenu>
  7819. <productMenu id="ota"
  7820. type="2" >
  7821. <otaLanguages>
  7822. <otaLanguage
  7823. id="0"
  7824. name="English"
  7825. package="0"
  7826. />
  7827. <otaLanguage
  7828. id="0"
  7829. name="French"
  7830. package="1"
  7831. />
  7832. <otaLanguage
  7833. id="0"
  7834. name="Spanish"
  7835. package="2"
  7836. />
  7837. <otaLanguage
  7838. id="0"
  7839. name="Italian"
  7840. package="3"
  7841. />
  7842. <otaLanguage
  7843. id="0"
  7844. name="German"
  7845. package="4"
  7846. />
  7847. <otaLanguage
  7848. id="0"
  7849. name="Dutch"
  7850. package="5"
  7851. />
  7852. <otaLanguage
  7853. id="0"
  7854. name="Russian"
  7855. package="6"
  7856. />
  7857. <otaLanguage
  7858. id="0"
  7859. name="Chinese"
  7860. package="7"
  7861. />
  7862. <otaLanguage
  7863. id="0"
  7864. name="Korean"
  7865. package="8"
  7866. />
  7867. <otaLanguage
  7868. id="0"
  7869. name="Japanese"
  7870. package="9"
  7871. />
  7872. <otaLanguage
  7873. id="0"
  7874. name="Finnish"
  7875. package="10"
  7876. />
  7877. <otaLanguage
  7878. id="0"
  7879. name="Polish"
  7880. package="11"
  7881. />
  7882. </otaLanguages>
  7883. <otaPackages>
  7884. <package
  7885. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7886. size="5183988"
  7887. />
  7888. <package
  7889. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7890. size="5183988"
  7891. />
  7892. <package
  7893. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7894. size="5183988"
  7895. />
  7896. <package
  7897. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7898. size="5183988"
  7899. />
  7900. <package
  7901. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7902. size="5183988"
  7903. />
  7904. <package
  7905. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7906. size="5183988"
  7907. />
  7908. <package
  7909. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7910. size="5183988"
  7911. />
  7912. <package
  7913. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7914. size="5183988"
  7915. />
  7916. <package
  7917. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7918. size="5183988"
  7919. />
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7922. size="5183988"
  7923. />
  7924. <package
  7925. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7926. size="5183988"
  7927. />
  7928. <package
  7929. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7930. size="5183988"
  7931. />
  7932. </otaPackages>
  7933. </productMenu>
  7934. <productMenu id="wa"
  7935. type="0" >
  7936. </productMenu>
  7937. <productMenu id="led"
  7938. type="5" >
  7939. </productMenu>
  7940. <productMenu id="led+"
  7941. type="2"
  7942. url="1" >
  7943. </productMenu>
  7944. <productMenu id="meshIntercom+"
  7945. type="3"
  7946. url="2" >
  7947. </productMenu>
  7948. <productMenu id="waveIntercom"
  7949. type="1" >
  7950. </productMenu>
  7951. <productMenu id="fmradio"
  7952. type="0" >
  7953. </productMenu>
  7954. <productMenu id="phone"
  7955. type="1" >
  7956. </productMenu>
  7957. <productMenu id="music"
  7958. type="1" >
  7959. </productMenu>
  7960. <productMenu id="musicSharing"
  7961. type="0" >
  7962. </productMenu>
  7963. <productMenu id="deviceSetting"
  7964. type="1"
  7965. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  7966. <productMenuURL version="1.0.10"
  7967. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  7968. />
  7969. <productMenuURL version="1.0.4"
  7970. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7971. />
  7972. </productMenu>
  7973. <productMenu id="quickGuide"
  7974. type="0"
  7975. url=""
  7976. size="1.12MB" >
  7977. </productMenu>
  7978. <productMenu id="userGuide"
  7979. type="1"
  7980. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7981. size="2.0MB" >
  7982. </productMenu>
  7983. <productMenu id="connectGuide"
  7984. type="1"
  7985. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  7986. size="1.12MB" >
  7987. </productMenu>
  7988. <productMenu id="videoGuide"
  7989. type="0"
  7990. url=""
  7991. size="3.41MB" >
  7992. </productMenu>
  7993. <productMenu id="volume"
  7994. type="16" >
  7995. </productMenu>
  7996. <productMenu id="volume+"
  7997. type="2"
  7998. url="0x6004" >
  7999. </productMenu>
  8000. <productMenu id="battery"
  8001. type="1" >
  8002. </productMenu>
  8003. <productID id="6A05"
  8004. />
  8005. <productGroupable type="0"
  8006. />
  8007. </product>
  8008. <product id="OUTRUSH2"
  8009. name="OUTRUSH 2"
  8010. series="Helmet"
  8011. latestVersion="1.0.3"
  8012. latestVersionVoicePrompt="1.6"
  8013. show = "1" >
  8014. <productMenu id="protocol"
  8015. type="2" >
  8016. </productMenu>
  8017. <productMenu id="alexa"
  8018. type="0" >
  8019. </productMenu>
  8020. <productMenu id="ota"
  8021. type="2" >
  8022. <otaPackages>
  8023. <package
  8024. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8025. size="2945812"
  8026. />
  8027. </otaPackages>
  8028. </productMenu>
  8029. <productMenu id="meshIntercom+"
  8030. type="3"
  8031. url="2" >
  8032. </productMenu>
  8033. <productMenu id="waveIntercom"
  8034. type="1" >
  8035. </productMenu>
  8036. <productMenu id="phone"
  8037. type="1" >
  8038. </productMenu>
  8039. <productMenu id="music"
  8040. type="1" >
  8041. </productMenu>
  8042. <productMenu id="musicSharing"
  8043. type="0" >
  8044. </productMenu>
  8045. <productMenu id="deviceSetting"
  8046. type="1"
  8047. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8048. <productMenuURL version="1.0"
  8049. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8050. />
  8051. </productMenu>
  8052. <productMenu id="quickGuide"
  8053. type="0"
  8054. url=""
  8055. size="1.12MB" >
  8056. </productMenu>
  8057. <productMenu id="userGuide"
  8058. type="1"
  8059. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8060. size="2.0MB" >
  8061. </productMenu>
  8062. <productMenu id="connectGuide"
  8063. type="1"
  8064. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8065. size="1.12MB" >
  8066. </productMenu>
  8067. <productMenu id="volume"
  8068. type="12" >
  8069. </productMenu>
  8070. <productMenu id="battery"
  8071. type="1" >
  8072. </productMenu>
  8073. <productID id="684A"
  8074. />
  8075. <productGroupable type="0"
  8076. />
  8077. </product>
  8078. <product id="OUTSTAR2"
  8079. name="OUTSTAR 2"
  8080. series="Helmet"
  8081. latestVersion="1.0.2"
  8082. latestVersionVoicePrompt="1.6"
  8083. show = "1" >
  8084. <productMenu id="protocol"
  8085. type="2" >
  8086. </productMenu>
  8087. <productMenu id="alexa"
  8088. type="0" >
  8089. </productMenu>
  8090. <productMenu id="ota"
  8091. type="2" >
  8092. <otaPackages>
  8093. <package
  8094. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8095. size="2945812"
  8096. />
  8097. </otaPackages>
  8098. </productMenu>
  8099. <productMenu id="meshIntercom+"
  8100. type="3"
  8101. url="2" >
  8102. </productMenu>
  8103. <productMenu id="waveIntercom"
  8104. type="1" >
  8105. </productMenu>
  8106. <productMenu id="phone"
  8107. type="1" >
  8108. </productMenu>
  8109. <productMenu id="music"
  8110. type="1" >
  8111. </productMenu>
  8112. <productMenu id="musicSharing"
  8113. type="0" >
  8114. </productMenu>
  8115. <productMenu id="deviceSetting"
  8116. type="1"
  8117. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8118. </productMenu>
  8119. <productMenu id="quickGuide"
  8120. type="0"
  8121. url=""
  8122. size="1.12MB" >
  8123. </productMenu>
  8124. <productMenu id="userGuide"
  8125. type="1"
  8126. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8127. size="2.0MB" >
  8128. </productMenu>
  8129. <productMenu id="connectGuide"
  8130. type="1"
  8131. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8132. size="1.12MB" >
  8133. </productMenu>
  8134. <productMenu id="volume"
  8135. type="12" >
  8136. </productMenu>
  8137. <productMenu id="battery"
  8138. type="1" >
  8139. </productMenu>
  8140. <productID id="684B"
  8141. />
  8142. <productGroupable type="0"
  8143. />
  8144. </product>
  8145. <product id="SURGE"
  8146. name="SURGE"
  8147. series="Helmet"
  8148. latestVersion="1.2"
  8149. latestVersionVoicePrompt="1.3"
  8150. show = "1" >
  8151. <productMenu id="protocol"
  8152. type="2" >
  8153. </productMenu>
  8154. <productMenu id="alexa"
  8155. type="0" >
  8156. </productMenu>
  8157. <productMenu id="ota"
  8158. type="2" >
  8159. <otaPackages>
  8160. <package
  8161. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8162. size="2945812"
  8163. />
  8164. </otaPackages>
  8165. </productMenu>
  8166. <productMenu id="meshIntercom"
  8167. type="30" >
  8168. </productMenu>
  8169. <productMenu id="meshIntercom+"
  8170. type="3"
  8171. url="2" >
  8172. <productMenuType version="1.0.1"
  8173. type="2"
  8174. />
  8175. </productMenu>
  8176. <productMenu id="waveIntercom"
  8177. type="1" >
  8178. <productMenuType version="1.0.9"
  8179. type="0"
  8180. />
  8181. </productMenu>
  8182. <productMenu id="phone"
  8183. type="1" >
  8184. </productMenu>
  8185. <productMenu id="music"
  8186. type="1" >
  8187. </productMenu>
  8188. <productMenu id="musicSharing"
  8189. type="0" >
  8190. </productMenu>
  8191. <productMenu id="deviceSetting"
  8192. type="1"
  8193. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8194. <productMenuURL version="1.1.9"
  8195. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8196. />
  8197. <productMenuURL version="1.0.1"
  8198. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8199. />
  8200. </productMenu>
  8201. <productMenu id="quickGuide"
  8202. type="0"
  8203. url=""
  8204. size="1.12MB" >
  8205. </productMenu>
  8206. <productMenu id="userGuide"
  8207. type="1"
  8208. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8209. size="2.0MB" >
  8210. </productMenu>
  8211. <productMenu id="volume"
  8212. type="12" >
  8213. </productMenu>
  8214. <productMenu id="battery"
  8215. type="1" >
  8216. </productMenu>
  8217. <productID id="6840"
  8218. />
  8219. <productGroupable type="0"
  8220. />
  8221. </product>
  8222. <product id="Cavalry2"
  8223. name="Cavalry 2"
  8224. series="Helmet"
  8225. latestVersion="1.2"
  8226. latestVersionVoicePrompt="1.3"
  8227. show = "1" >
  8228. <productMenu id="protocol"
  8229. type="2" >
  8230. </productMenu>
  8231. <productMenu id="alexa"
  8232. type="0" >
  8233. </productMenu>
  8234. <productMenu id="ota"
  8235. type="2" >
  8236. <otaPackages>
  8237. <package
  8238. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8239. size="3144148"
  8240. />
  8241. </otaPackages>
  8242. </productMenu>
  8243. <productMenu id="wa"
  8244. type="0" >
  8245. </productMenu>
  8246. <productMenu id="meshIntercom"
  8247. type="30" >
  8248. </productMenu>
  8249. <productMenu id="meshIntercom+"
  8250. type="3"
  8251. url="2" >
  8252. <productMenuType version="1.0"
  8253. type="2"
  8254. />
  8255. </productMenu>
  8256. <productMenu id="waveIntercom"
  8257. type="1" >
  8258. <productMenuType version="1.0.9"
  8259. type="0"
  8260. />
  8261. </productMenu>
  8262. <productMenu id="phone"
  8263. type="1" >
  8264. </productMenu>
  8265. <productMenu id="music"
  8266. type="1" >
  8267. </productMenu>
  8268. <productMenu id="musicSharing"
  8269. type="0" >
  8270. </productMenu>
  8271. <productMenu id="deviceSetting"
  8272. type="1"
  8273. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8274. <productMenuURL version="1.1.9"
  8275. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8276. />
  8277. <productMenuURL version="1.0"
  8278. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8279. />
  8280. </productMenu>
  8281. <productMenu id="quickGuide"
  8282. type="0"
  8283. url=""
  8284. size="1.12MB" >
  8285. </productMenu>
  8286. <productMenu id="userGuide"
  8287. type="1"
  8288. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8289. size="2.0MB" >
  8290. </productMenu>
  8291. <productMenu id="connectGuide"
  8292. type="1"
  8293. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8294. size="1.12MB" >
  8295. </productMenu>
  8296. <productMenu id="volume"
  8297. type="12" >
  8298. </productMenu>
  8299. <productMenu id="battery"
  8300. type="1" >
  8301. </productMenu>
  8302. <productID id="6839"
  8303. />
  8304. <productGroupable type="0"
  8305. />
  8306. </product>
  8307. <product id="Cavalry"
  8308. name="Cavalry"
  8309. series="Helmet"
  8310. latestVersion="1.2.2"
  8311. show = "1" >
  8312. <productMenu id="protocol"
  8313. type="0">
  8314. </productMenu>
  8315. <productMenu id="sip"
  8316. type="1" >
  8317. </productMenu>
  8318. <productMenu id="bluetoothIntercom"
  8319. type="1" >
  8320. </productMenu>
  8321. <productMenu id="phone"
  8322. type="2" >
  8323. </productMenu>
  8324. <productMenu id="fmradio"
  8325. type="3" >
  8326. </productMenu>
  8327. <productMenu id="deviceSetting"
  8328. type="1"
  8329. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8330. <productMenuURL version="1.9"
  8331. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8332. />
  8333. <productMenuURL version="1.0.1"
  8334. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8335. />
  8336. </productMenu>
  8337. <productMenu id="quickGuide"
  8338. type="1"
  8339. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8340. size="795KB" >
  8341. </productMenu>
  8342. <productMenu id="userGuide"
  8343. type="1"
  8344. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8345. size="1.87MB" >
  8346. </productMenu>
  8347. <productMenu id="connectGuide"
  8348. type="1"
  8349. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8350. size="1.12MB" >
  8351. </productMenu>
  8352. <productID id="5524"
  8353. />
  8354. <productGroupable type="0"
  8355. />
  8356. </product>
  8357. <product id="Cavalry_Lite"
  8358. name="Cavalry Lite"
  8359. series="Helmet"
  8360. latestVersion="1.0.2"
  8361. show = "1" >
  8362. <productMenu id="protocol"
  8363. type="0">
  8364. </productMenu>
  8365. <productMenu id="sip"
  8366. type="1" >
  8367. </productMenu>
  8368. <productMenu id="bluetoothIntercom"
  8369. type="1" >
  8370. </productMenu>
  8371. <productMenu id="phone"
  8372. type="2" >
  8373. </productMenu>
  8374. <productMenu id="fmradio"
  8375. type="3" >
  8376. </productMenu>
  8377. <productMenu id="deviceSetting"
  8378. type="1"
  8379. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8380. </productMenu>
  8381. <productMenu id="userGuide"
  8382. type="1"
  8383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8384. size="1.74MB" >
  8385. </productMenu>
  8386. <productMenu id="connectGuide"
  8387. type="1"
  8388. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8389. size="1.12MB" >
  8390. </productMenu>
  8391. <productID id="5536"
  8392. />
  8393. <productGroupable type="0"
  8394. />
  8395. </product>
  8396. <product id="VORTEX"
  8397. name="VORTEX"
  8398. series="VORTEX"
  8399. latestVersion="1.0.2"
  8400. latestVersionVoicePrompt="1.0"
  8401. show = "1" >
  8402. <productMenu id="protocol"
  8403. type="2" >
  8404. </productMenu>
  8405. <productMenu id="warranty"
  8406. type="1" >
  8407. </productMenu>
  8408. <productMenu id="serialNumber"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="ota"
  8412. type="2" >
  8413. <otaLanguages>
  8414. <otaLanguage
  8415. id="0"
  8416. name="English"
  8417. package="0"
  8418. />
  8419. <otaLanguage
  8420. id="0"
  8421. name="French"
  8422. package="1"
  8423. />
  8424. <otaLanguage
  8425. id="0"
  8426. name="Spanish"
  8427. package="2"
  8428. />
  8429. <otaLanguage
  8430. id="0"
  8431. name="Italian"
  8432. package="3"
  8433. />
  8434. <otaLanguage
  8435. id="0"
  8436. name="German"
  8437. package="4"
  8438. />
  8439. <otaLanguage
  8440. id="0"
  8441. name="Dutch"
  8442. package="5"
  8443. />
  8444. <otaLanguage
  8445. id="0"
  8446. name="Russian"
  8447. package="6"
  8448. />
  8449. <otaLanguage
  8450. id="0"
  8451. name="Chinese"
  8452. package="7"
  8453. />
  8454. <otaLanguage
  8455. id="0"
  8456. name="Korean"
  8457. package="8"
  8458. />
  8459. <otaLanguage
  8460. id="0"
  8461. name="Japanese"
  8462. package="9"
  8463. />
  8464. <otaLanguage
  8465. id="0"
  8466. name="Finnish"
  8467. package="10"
  8468. />
  8469. <otaLanguage
  8470. id="0"
  8471. name="Polish"
  8472. package="11"
  8473. />
  8474. </otaLanguages>
  8475. <otaPackages>
  8476. <package
  8477. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8478. size="5183988"
  8479. />
  8480. <package
  8481. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8482. size="5183988"
  8483. />
  8484. <package
  8485. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8486. size="5183988"
  8487. />
  8488. <package
  8489. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8490. size="5183988"
  8491. />
  8492. <package
  8493. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8494. size="5183988"
  8495. />
  8496. <package
  8497. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8498. size="5183988"
  8499. />
  8500. <package
  8501. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8502. size="5183988"
  8503. />
  8504. <package
  8505. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8506. size="5183988"
  8507. />
  8508. <package
  8509. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8510. size="5183988"
  8511. />
  8512. <package
  8513. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8514. size="5183988"
  8515. />
  8516. <package
  8517. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8518. size="5183988"
  8519. />
  8520. <package
  8521. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8522. size="5183988"
  8523. />
  8524. </otaPackages>
  8525. </productMenu>
  8526. <productMenu id="sip"
  8527. type="1" >
  8528. </productMenu>
  8529. <productMenu id="bluetoothIntercom"
  8530. type="1" >
  8531. </productMenu>
  8532. <productMenu id="phone"
  8533. type="1" >
  8534. </productMenu>
  8535. <productMenu id="music"
  8536. type="1" >
  8537. </productMenu>
  8538. <productMenu id="fmradio"
  8539. type="1"
  8540. url="1" >
  8541. </productMenu>
  8542. <productMenu id="deviceSetting"
  8543. type="1"
  8544. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8545. </productMenu>
  8546. <productMenu id="quickGuide"
  8547. type="0"
  8548. url=""
  8549. size="934KB" >
  8550. </productMenu>
  8551. <productMenu id="userGuide"
  8552. type="1"
  8553. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8554. size="1.14MB" >
  8555. </productMenu>
  8556. <productMenu id="connectGuide"
  8557. type="0"
  8558. url=""
  8559. size="1.12MB" >
  8560. </productMenu>
  8561. <productMenu id="volume"
  8562. type="15" >
  8563. </productMenu>
  8564. <productMenu id="volume+"
  8565. type="2"
  8566. url="0x0018" >
  8567. </productMenu>
  8568. <productMenu id="appearance"
  8569. type="1"
  8570. url="1|white,silver,black" >
  8571. </productMenu>
  8572. <productID id="3451"
  8573. />
  8574. <productGroupable type="0"
  8575. />
  8576. </product>
  8577. <product id="SF4"
  8578. name="SF4"
  8579. series="SF"
  8580. latestVersion="1.1.5"
  8581. show = "-1" >
  8582. <productMenu id="protocol"
  8583. type="1"
  8584. url="3">
  8585. </productMenu>
  8586. <productMenu id="sip"
  8587. type="1" >
  8588. </productMenu>
  8589. <productMenu id="bluetoothIntercom"
  8590. type="1" >
  8591. </productMenu>
  8592. <productMenu id="phone"
  8593. type="1" >
  8594. </productMenu>
  8595. <productMenu id="music"
  8596. type="1" >
  8597. </productMenu>
  8598. <productMenu id="fmradio"
  8599. type="1" >
  8600. </productMenu>
  8601. <productMenu id="deviceSetting"
  8602. type="1"
  8603. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8604. <productMenuURL version="1.0.1"
  8605. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8606. />
  8607. </productMenu>
  8608. <productMenu id="quickGuide"
  8609. type="1"
  8610. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8611. size="607KB" >
  8612. </productMenu>
  8613. <productMenu id="userGuide"
  8614. type="1"
  8615. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8616. size="1.91MB" >
  8617. </productMenu>
  8618. <productMenu id="volume"
  8619. type="4" >
  8620. </productMenu>
  8621. <productID id="5414"
  8622. />
  8623. <productGroupable type="0"
  8624. />
  8625. </product>
  8626. <product id="SF4"
  8627. name="SF4"
  8628. series="SF"
  8629. latestVersion="3.4.4"
  8630. show = "1" >
  8631. <productMenu id="protocol"
  8632. type="2" >
  8633. </productMenu>
  8634. <productMenu id="sip"
  8635. type="1" >
  8636. </productMenu>
  8637. <productMenu id="bluetoothIntercom"
  8638. type="1" >
  8639. </productMenu>
  8640. <productMenu id="phone"
  8641. type="1" >
  8642. </productMenu>
  8643. <productMenu id="music"
  8644. type="1" >
  8645. </productMenu>
  8646. <productMenu id="fmradio"
  8647. type="1" >
  8648. </productMenu>
  8649. <productMenu id="deviceSetting"
  8650. type="1"
  8651. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8652. <productMenuURL version="3.0"
  8653. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8654. />
  8655. </productMenu>
  8656. <productMenu id="quickGuide"
  8657. type="0"
  8658. url=""
  8659. size="934KB" >
  8660. </productMenu>
  8661. <productMenu id="userGuide"
  8662. type="1"
  8663. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8664. size="1.14MB" >
  8665. </productMenu>
  8666. <productMenu id="connectGuide"
  8667. type="1"
  8668. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8669. size="1.12MB" >
  8670. </productMenu>
  8671. <productMenu id="volume"
  8672. type="15" >
  8673. </productMenu>
  8674. <productID id="3370"
  8675. />
  8676. <productGroupable type="0"
  8677. />
  8678. </product>
  8679. <product id="SF2"
  8680. name="SF2"
  8681. series="SF"
  8682. latestVersion="1.2.1"
  8683. show = "-1" >
  8684. <productMenu id="protocol"
  8685. type="1"
  8686. url="2">
  8687. </productMenu>
  8688. <productMenu id="sip"
  8689. type="1" >
  8690. </productMenu>
  8691. <productMenu id="bluetoothIntercom"
  8692. type="1" >
  8693. </productMenu>
  8694. <productMenu id="phone"
  8695. type="1" >
  8696. </productMenu>
  8697. <productMenu id="music"
  8698. type="1" >
  8699. </productMenu>
  8700. <productMenu id="fmradio"
  8701. type="1" >
  8702. </productMenu>
  8703. <productMenu id="deviceSetting"
  8704. type="1"
  8705. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8706. <productMenuURL version="1.0.1"
  8707. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8708. />
  8709. </productMenu>
  8710. <productMenu id="quickGuide"
  8711. type="1"
  8712. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8713. size="607KB" >
  8714. </productMenu>
  8715. <productMenu id="userGuide"
  8716. type="1"
  8717. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8718. size="1.91MB" >
  8719. </productMenu>
  8720. <productMenu id="volume"
  8721. type="4" >
  8722. </productMenu>
  8723. <productID id="5412"
  8724. />
  8725. <productGroupable type="0"
  8726. />
  8727. </product>
  8728. <product id="SF2"
  8729. name="SF2"
  8730. series="SF"
  8731. latestVersion="3.3.4"
  8732. show = "1" >
  8733. <productMenu id="protocol"
  8734. type="2" >
  8735. </productMenu>
  8736. <productMenu id="sip"
  8737. type="1" >
  8738. </productMenu>
  8739. <productMenu id="bluetoothIntercom"
  8740. type="1" >
  8741. </productMenu>
  8742. <productMenu id="phone"
  8743. type="1" >
  8744. </productMenu>
  8745. <productMenu id="music"
  8746. type="1" >
  8747. </productMenu>
  8748. <productMenu id="fmradio"
  8749. type="0" >
  8750. </productMenu>
  8751. <productMenu id="deviceSetting"
  8752. type="1"
  8753. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8754. <productMenuURL version="3.0"
  8755. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8756. />
  8757. </productMenu>
  8758. <productMenu id="quickGuide"
  8759. type="0"
  8760. url=""
  8761. size="934KB" >
  8762. </productMenu>
  8763. <productMenu id="userGuide"
  8764. type="1"
  8765. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8766. size="1.14MB" >
  8767. </productMenu>
  8768. <productMenu id="connectGuide"
  8769. type="1"
  8770. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8771. size="1.12MB" >
  8772. </productMenu>
  8773. <productMenu id="volume"
  8774. type="15" >
  8775. </productMenu>
  8776. <productID id="3360"
  8777. />
  8778. <productGroupable type="0"
  8779. />
  8780. </product>
  8781. <product id="SF1"
  8782. name="SF1"
  8783. series="SF"
  8784. latestVersion="2.0.5"
  8785. show = "-1" >
  8786. <productMenu id="protocol"
  8787. type="1"
  8788. url="1">
  8789. </productMenu>
  8790. <productMenu id="sip"
  8791. type="1" >
  8792. </productMenu>
  8793. <productMenu id="bluetoothIntercom"
  8794. type="1" >
  8795. <productMenuType version="1.1"
  8796. type="0"
  8797. />
  8798. </productMenu>
  8799. <productMenu id="phone"
  8800. type="1" >
  8801. </productMenu>
  8802. <productMenu id="music"
  8803. type="1" >
  8804. </productMenu>
  8805. <productMenu id="deviceSetting"
  8806. type="1"
  8807. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8808. <productMenuURL version="1.1"
  8809. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8810. />
  8811. <productMenuURL version="1.0"
  8812. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8813. />
  8814. </productMenu>
  8815. <productMenu id="quickGuide"
  8816. type="1"
  8817. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8818. size="401KB" >
  8819. </productMenu>
  8820. <productMenu id="userGuide"
  8821. type="1"
  8822. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8823. size="1.91MB" >
  8824. </productMenu>
  8825. <productMenu id="volume"
  8826. type="3" >
  8827. </productMenu>
  8828. <productID id="5410"
  8829. />
  8830. <productGroupable type="0"
  8831. />
  8832. </product>
  8833. <product id="SF1"
  8834. name="SF1"
  8835. series="SF"
  8836. latestVersion="3.3.4"
  8837. show = "1" >
  8838. <productMenu id="protocol"
  8839. type="2" >
  8840. </productMenu>
  8841. <productMenu id="sip"
  8842. type="1" >
  8843. </productMenu>
  8844. <productMenu id="bluetoothIntercom"
  8845. type="1" >
  8846. </productMenu>
  8847. <productMenu id="phone"
  8848. type="1" >
  8849. </productMenu>
  8850. <productMenu id="music"
  8851. type="1" >
  8852. </productMenu>
  8853. <productMenu id="fmradio"
  8854. type="0" >
  8855. </productMenu>
  8856. <productMenu id="deviceSetting"
  8857. type="1"
  8858. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8859. <productMenuURL version="3.0"
  8860. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8861. />
  8862. </productMenu>
  8863. <productMenu id="quickGuide"
  8864. type="0"
  8865. url=""
  8866. size="934KB" >
  8867. </productMenu>
  8868. <productMenu id="userGuide"
  8869. type="1"
  8870. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8871. size="1.14MB" >
  8872. </productMenu>
  8873. <productMenu id="connectGuide"
  8874. type="1"
  8875. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8876. size="1.12MB" >
  8877. </productMenu>
  8878. <productMenu id="volume"
  8879. type="15" >
  8880. </productMenu>
  8881. <productID id="3350"
  8882. />
  8883. <productGroupable type="0"
  8884. />
  8885. </product>
  8886. <product id="SFR"
  8887. name="SFR"
  8888. series="SF"
  8889. latestVersion="1.1.1"
  8890. show = "1" >
  8891. <productMenu id="protocol"
  8892. type="1"
  8893. url="3">
  8894. </productMenu>
  8895. <productMenu id="sip"
  8896. type="1" >
  8897. </productMenu>
  8898. <productMenu id="bluetoothIntercom"
  8899. type="1" >
  8900. </productMenu>
  8901. <productMenu id="phone"
  8902. type="1" >
  8903. </productMenu>
  8904. <productMenu id="music"
  8905. type="1" >
  8906. </productMenu>
  8907. <productMenu id="fmradio"
  8908. type="1" >
  8909. </productMenu>
  8910. <productMenu id="deviceSetting"
  8911. type="1"
  8912. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8913. </productMenu>
  8914. <productMenu id="quickGuide"
  8915. type="1"
  8916. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8917. size="607KB" >
  8918. </productMenu>
  8919. <productMenu id="userGuide"
  8920. type="1"
  8921. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8922. size="1.91MB" >
  8923. </productMenu>
  8924. <productMenu id="volume"
  8925. type="4" >
  8926. </productMenu>
  8927. <productID id="5418"
  8928. />
  8929. <productGroupable type="0"
  8930. />
  8931. </product>
  8932. <product id="20S"
  8933. name="20S"
  8934. series="20"
  8935. latestVersion="2.2.3"
  8936. show = "1" >
  8937. <productMenu id="protocol"
  8938. type="0">
  8939. </productMenu>
  8940. <productMenu id="wa"
  8941. type="5" >
  8942. </productMenu>
  8943. <productMenu id="sip"
  8944. type="1" >
  8945. <productMenuType version="1.0"
  8946. type="0"
  8947. />
  8948. </productMenu>
  8949. <productMenu id="bluetoothIntercom"
  8950. type="1" >
  8951. <productMenuType version="1.0"
  8952. type="0"
  8953. />
  8954. </productMenu>
  8955. <productMenu id="intercomSetting"
  8956. type="1" >
  8957. </productMenu>
  8958. <productMenu id="phone"
  8959. type="2" >
  8960. </productMenu>
  8961. <productMenu id="fmradio"
  8962. type="3" >
  8963. </productMenu>
  8964. <productMenu id="deviceSetting"
  8965. type="1"
  8966. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8967. <productMenuURL version="2.0.2"
  8968. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8969. />
  8970. <productMenuURL version="1.5"
  8971. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8972. />
  8973. <productMenuURL version="1.4.1"
  8974. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8975. />
  8976. <productMenuURL version="1.1"
  8977. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8978. />
  8979. <productMenuURL version="1.0"
  8980. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8981. />
  8982. </productMenu>
  8983. <productMenu id="quickGuide"
  8984. type="0"
  8985. url=""
  8986. size="264KB" >
  8987. </productMenu>
  8988. <productMenu id="userGuide"
  8989. type="1"
  8990. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8991. size="3.09MB" >
  8992. </productMenu>
  8993. <productMenu id="connectGuide"
  8994. type="1"
  8995. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8996. size="1.12MB" >
  8997. </productMenu>
  8998. <productID id="4210"
  8999. />
  9000. <productGroupable type="1"
  9001. />
  9002. </product>
  9003. <product id="20S_EVO"
  9004. name="20S EVO"
  9005. series="20"
  9006. latestVersion="2.2.3"
  9007. show = "1" >
  9008. <productMenu id="protocol"
  9009. type="0">
  9010. </productMenu>
  9011. <productMenu id="wa"
  9012. type="5" >
  9013. </productMenu>
  9014. <productMenu id="sip"
  9015. type="1" >
  9016. <productMenuType version="1.0"
  9017. type="0"
  9018. />
  9019. </productMenu>
  9020. <productMenu id="bluetoothIntercom"
  9021. type="1" >
  9022. <productMenuType version="1.0"
  9023. type="0"
  9024. />
  9025. </productMenu>
  9026. <productMenu id="intercomSetting"
  9027. type="1" >
  9028. </productMenu>
  9029. <productMenu id="phone"
  9030. type="2" >
  9031. </productMenu>
  9032. <productMenu id="fmradio"
  9033. type="3" >
  9034. </productMenu>
  9035. <productMenu id="deviceSetting"
  9036. type="1"
  9037. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9038. <productMenuURL version="2.0.2"
  9039. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9040. />
  9041. <productMenuURL version="1.5"
  9042. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9043. />
  9044. <productMenuURL version="1.4.1"
  9045. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9046. />
  9047. <productMenuURL version="1.1"
  9048. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9049. />
  9050. <productMenuURL version="1.0"
  9051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9052. />
  9053. </productMenu>
  9054. <productMenu id="quickGuide"
  9055. type="0"
  9056. url=""
  9057. size="264KB" >
  9058. </productMenu>
  9059. <productMenu id="userGuide"
  9060. type="1"
  9061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9062. size="3.09MB" >
  9063. </productMenu>
  9064. <productMenu id="connectGuide"
  9065. type="1"
  9066. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9067. size="1.12MB" >
  9068. </productMenu>
  9069. <productID id="4210"
  9070. />
  9071. <productProductKey key="16"
  9072. />
  9073. <productGroupable type="1"
  9074. />
  9075. </product>
  9076. <product id="10S"
  9077. name="10S"
  9078. series="10"
  9079. latestVersion="3.0.2"
  9080. show = "1" >
  9081. <productMenu id="protocol"
  9082. type="3" >
  9083. </productMenu>
  9084. <productMenu id="sip"
  9085. type="1" >
  9086. </productMenu>
  9087. <productMenu id="bluetoothIntercom"
  9088. type="1" >
  9089. </productMenu>
  9090. <productMenu id="phone"
  9091. type="1" >
  9092. </productMenu>
  9093. <productMenu id="deviceSetting"
  9094. type="1"
  9095. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9096. </productMenu>
  9097. <productMenu id="quickGuide"
  9098. type="1"
  9099. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9100. size="934KB" >
  9101. </productMenu>
  9102. <productMenu id="userGuide"
  9103. type="1"
  9104. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9105. size="1.14MB" >
  9106. </productMenu>
  9107. <productMenu id="connectGuide"
  9108. type="1"
  9109. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9110. size="1.12MB" >
  9111. </productMenu>
  9112. <productID id="3380"
  9113. />
  9114. <productGroupable type="0"
  9115. />
  9116. </product>
  9117. <product id="10S"
  9118. name="10S"
  9119. series="10"
  9120. latestVersion="2.1.1"
  9121. show = "-1" >
  9122. <productMenu id="protocol"
  9123. type="0">
  9124. </productMenu>
  9125. <productMenu id="sip"
  9126. type="1" >
  9127. </productMenu>
  9128. <productMenu id="bluetoothIntercom"
  9129. type="1" >
  9130. </productMenu>
  9131. <productMenu id="phone"
  9132. type="2" >
  9133. </productMenu>
  9134. <productMenu id="fmradio"
  9135. type="3" >
  9136. </productMenu>
  9137. <productMenu id="deviceSetting"
  9138. type="1"
  9139. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9140. <productMenuURL version="1.5"
  9141. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9142. />
  9143. <productMenuURL version="1.3.1"
  9144. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9145. />
  9146. </productMenu>
  9147. <productMenu id="quickGuide"
  9148. type="1"
  9149. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9150. size="310KB" >
  9151. </productMenu>
  9152. <productMenu id="userGuide"
  9153. type="1"
  9154. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9155. size="1.57MB" >
  9156. </productMenu>
  9157. <productID id="5530"
  9158. />
  9159. <productGroupable type="0"
  9160. />
  9161. </product>
  9162. <product id="Apex"
  9163. name="Apex"
  9164. series="Apex"
  9165. latestVersion="1.0"
  9166. latestVersionVoicePrompt="0.2"
  9167. show = "-1" >
  9168. <productMenu id="protocol"
  9169. type="2" >
  9170. </productMenu>
  9171. <productMenu id="warranty"
  9172. type="1" >
  9173. </productMenu>
  9174. <productMenu id="serialNumber"
  9175. type="1" >
  9176. </productMenu>
  9177. <productMenu id="ota"
  9178. type="2" >
  9179. <otaLanguages>
  9180. <otaLanguage
  9181. id="0"
  9182. name="English"
  9183. package="0"
  9184. />
  9185. <otaLanguage
  9186. id="0"
  9187. name="French"
  9188. package="1"
  9189. />
  9190. <otaLanguage
  9191. id="0"
  9192. name="Spanish"
  9193. package="2"
  9194. />
  9195. <otaLanguage
  9196. id="0"
  9197. name="Italian"
  9198. package="3"
  9199. />
  9200. <otaLanguage
  9201. id="0"
  9202. name="German"
  9203. package="4"
  9204. />
  9205. <otaLanguage
  9206. id="0"
  9207. name="Dutch"
  9208. package="5"
  9209. />
  9210. <otaLanguage
  9211. id="0"
  9212. name="Russian"
  9213. package="6"
  9214. />
  9215. <otaLanguage
  9216. id="0"
  9217. name="Chinese"
  9218. package="7"
  9219. />
  9220. <otaLanguage
  9221. id="0"
  9222. name="Korean"
  9223. package="8"
  9224. />
  9225. <otaLanguage
  9226. id="0"
  9227. name="Japanese"
  9228. package="9"
  9229. />
  9230. <otaLanguage
  9231. id="0"
  9232. name="Finnish"
  9233. package="10"
  9234. />
  9235. <otaLanguage
  9236. id="0"
  9237. name="Polish"
  9238. package="11"
  9239. />
  9240. </otaLanguages>
  9241. <otaPackages>
  9242. <package
  9243. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9244. size="5183988"
  9245. />
  9246. <package
  9247. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9248. size="5183988"
  9249. />
  9250. <package
  9251. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9252. size="5183988"
  9253. />
  9254. <package
  9255. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9256. size="5183988"
  9257. />
  9258. <package
  9259. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9260. size="5183988"
  9261. />
  9262. <package
  9263. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9264. size="5183988"
  9265. />
  9266. <package
  9267. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9268. size="5183988"
  9269. />
  9270. <package
  9271. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9272. size="5183988"
  9273. />
  9274. <package
  9275. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9276. size="5183988"
  9277. />
  9278. <package
  9279. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9280. size="5183988"
  9281. />
  9282. <package
  9283. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9284. size="5183988"
  9285. />
  9286. <package
  9287. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9288. size="5183988"
  9289. />
  9290. </otaPackages>
  9291. </productMenu>
  9292. <productMenu id="sip"
  9293. type="1" >
  9294. </productMenu>
  9295. <productMenu id="bluetoothIntercom"
  9296. type="1" >
  9297. </productMenu>
  9298. <productMenu id="phone"
  9299. type="1" >
  9300. </productMenu>
  9301. <productMenu id="music"
  9302. type="1" >
  9303. </productMenu>
  9304. <productMenu id="fmradio"
  9305. type="1"
  9306. url="1" >
  9307. </productMenu>
  9308. <productMenu id="deviceSetting"
  9309. type="1"
  9310. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9311. <productMenuURL version="1.0"
  9312. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9313. />
  9314. </productMenu>
  9315. <productMenu id="quickGuide"
  9316. type="0"
  9317. url=""
  9318. size="934KB" >
  9319. </productMenu>
  9320. <productMenu id="userGuide"
  9321. type="1"
  9322. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9323. size="1.14MB" >
  9324. </productMenu>
  9325. <productMenu id="volume+"
  9326. type="2"
  9327. url="0x0004" >
  9328. </productMenu>
  9329. <productMenu id="appearance"
  9330. type="1"
  9331. url="1|white,silver,black" >
  9332. </productMenu>
  9333. <productMenu id="battery"
  9334. type="1" >
  9335. </productMenu>
  9336. <productID id="3452"
  9337. />
  9338. <productGroupable type="0"
  9339. />
  9340. </product>
  9341. <product id="ApexPlus"
  9342. name="Apex Plus"
  9343. series="Apex"
  9344. latestVersion="1.0"
  9345. latestVersionVoicePrompt="0.2"
  9346. show = "-1" >
  9347. <productMenu id="protocol"
  9348. type="2" >
  9349. </productMenu>
  9350. <productMenu id="warranty"
  9351. type="1" >
  9352. </productMenu>
  9353. <productMenu id="serialNumber"
  9354. type="1" >
  9355. </productMenu>
  9356. <productMenu id="ota"
  9357. type="2" >
  9358. <otaLanguages>
  9359. <otaLanguage
  9360. id="0"
  9361. name="English"
  9362. package="0"
  9363. />
  9364. <otaLanguage
  9365. id="0"
  9366. name="French"
  9367. package="1"
  9368. />
  9369. <otaLanguage
  9370. id="0"
  9371. name="Spanish"
  9372. package="2"
  9373. />
  9374. <otaLanguage
  9375. id="0"
  9376. name="Italian"
  9377. package="3"
  9378. />
  9379. <otaLanguage
  9380. id="0"
  9381. name="German"
  9382. package="4"
  9383. />
  9384. <otaLanguage
  9385. id="0"
  9386. name="Dutch"
  9387. package="5"
  9388. />
  9389. <otaLanguage
  9390. id="0"
  9391. name="Russian"
  9392. package="6"
  9393. />
  9394. <otaLanguage
  9395. id="0"
  9396. name="Chinese"
  9397. package="7"
  9398. />
  9399. <otaLanguage
  9400. id="0"
  9401. name="Korean"
  9402. package="8"
  9403. />
  9404. <otaLanguage
  9405. id="0"
  9406. name="Japanese"
  9407. package="9"
  9408. />
  9409. <otaLanguage
  9410. id="0"
  9411. name="Finnish"
  9412. package="10"
  9413. />
  9414. <otaLanguage
  9415. id="0"
  9416. name="Polish"
  9417. package="11"
  9418. />
  9419. </otaLanguages>
  9420. <otaPackages>
  9421. <package
  9422. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9423. size="5183988"
  9424. />
  9425. <package
  9426. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9427. size="5183988"
  9428. />
  9429. <package
  9430. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9431. size="5183988"
  9432. />
  9433. <package
  9434. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9435. size="5183988"
  9436. />
  9437. <package
  9438. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9439. size="5183988"
  9440. />
  9441. <package
  9442. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9443. size="5183988"
  9444. />
  9445. <package
  9446. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9447. size="5183988"
  9448. />
  9449. <package
  9450. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9451. size="5183988"
  9452. />
  9453. <package
  9454. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9455. size="5183988"
  9456. />
  9457. <package
  9458. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9459. size="5183988"
  9460. />
  9461. <package
  9462. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9463. size="5183988"
  9464. />
  9465. <package
  9466. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9467. size="5183988"
  9468. />
  9469. </otaPackages>
  9470. </productMenu>
  9471. <productMenu id="sip"
  9472. type="1" >
  9473. </productMenu>
  9474. <productMenu id="bluetoothIntercom"
  9475. type="1" >
  9476. </productMenu>
  9477. <productMenu id="phone"
  9478. type="1" >
  9479. </productMenu>
  9480. <productMenu id="music"
  9481. type="1" >
  9482. </productMenu>
  9483. <productMenu id="fmradio"
  9484. type="1"
  9485. url="1" >
  9486. </productMenu>
  9487. <productMenu id="deviceSetting"
  9488. type="1"
  9489. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9490. <productMenuURL version="1.0"
  9491. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9492. />
  9493. </productMenu>
  9494. <productMenu id="quickGuide"
  9495. type="0"
  9496. url=""
  9497. size="934KB" >
  9498. </productMenu>
  9499. <productMenu id="userGuide"
  9500. type="1"
  9501. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9502. size="1.14MB" >
  9503. </productMenu>
  9504. <productMenu id="volume+"
  9505. type="2"
  9506. url="0x0004" >
  9507. </productMenu>
  9508. <productMenu id="appearance"
  9509. type="1"
  9510. url="1|white,silver,black" >
  9511. </productMenu>
  9512. <productMenu id="battery"
  9513. type="1" >
  9514. </productMenu>
  9515. <productID id="3453"
  9516. />
  9517. <productGroupable type="0"
  9518. />
  9519. </product>
  9520. <product id="10R2"
  9521. name="10R 2"
  9522. series="10"
  9523. latestVersion="0.9"
  9524. latestVersionVoicePrompt="1.1"
  9525. show = "-1" >
  9526. <productMenu id="protocol"
  9527. type="2" >
  9528. </productMenu>
  9529. <productMenu id="ota"
  9530. type="2" >
  9531. <otaPackages>
  9532. <package
  9533. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9534. size="2945812"
  9535. />
  9536. </otaPackages>
  9537. </productMenu>
  9538. <productMenu id="sip"
  9539. type="1" >
  9540. </productMenu>
  9541. <productMenu id="bluetoothIntercom"
  9542. type="1" >
  9543. </productMenu>
  9544. <productMenu id="phone"
  9545. type="1" >
  9546. </productMenu>
  9547. <productMenu id="music"
  9548. type="1" >
  9549. </productMenu>
  9550. <productMenu id="fmradio"
  9551. type="1"
  9552. url="1" >
  9553. </productMenu>
  9554. <productMenu id="deviceSetting"
  9555. type="1"
  9556. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9557. </productMenu>
  9558. <productMenu id="quickGuide"
  9559. type="1"
  9560. url=""
  9561. size="934KB" >
  9562. </productMenu>
  9563. <productMenu id="userGuide"
  9564. type="0"
  9565. url=""
  9566. size="1.14MB" >
  9567. </productMenu>
  9568. <productMenu id="volume"
  9569. type="15" >
  9570. </productMenu>
  9571. <productID id="4000"
  9572. />
  9573. <productGroupable type="0"
  9574. />
  9575. </product>
  9576. <product id="10R"
  9577. name="10R"
  9578. series="10"
  9579. latestVersion="2.1.1"
  9580. show = "1" >
  9581. <productMenu id="protocol"
  9582. type="0">
  9583. </productMenu>
  9584. <productMenu id="sip"
  9585. type="1" >
  9586. <productMenuType version="1.0.2"
  9587. type="0"
  9588. />
  9589. </productMenu>
  9590. <productMenu id="bluetoothIntercom"
  9591. type="1" >
  9592. <productMenuType version="1.0.2"
  9593. type="0"
  9594. />
  9595. </productMenu>
  9596. <productMenu id="phone"
  9597. type="2" >
  9598. </productMenu>
  9599. <productMenu id="fmradio"
  9600. type="3" >
  9601. </productMenu>
  9602. <productMenu id="deviceSetting"
  9603. type="1"
  9604. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9605. <productMenuURL version="1.4"
  9606. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9607. />
  9608. <productMenuURL version="1.2.1"
  9609. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9610. />
  9611. <productMenuURL version="1.0.2"
  9612. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9613. />
  9614. <productMenuURL version="1.0"
  9615. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9616. />
  9617. </productMenu>
  9618. <productMenu id="quickGuide"
  9619. type="1"
  9620. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9621. size="400KB" >
  9622. </productMenu>
  9623. <productMenu id="userGuide"
  9624. type="1"
  9625. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9626. size="2.75MB" >
  9627. </productMenu>
  9628. <productMenu id="connectGuide"
  9629. type="1"
  9630. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9631. size="1.12MB" >
  9632. </productMenu>
  9633. <productID id="5520"
  9634. />
  9635. <productGroupable type="0"
  9636. />
  9637. </product>
  9638. <product id="10C_EVO"
  9639. name="10C EVO"
  9640. series="10"
  9641. latestVersion="1.7"
  9642. show = "1" >
  9643. <productMenu id="protocol"
  9644. type="0">
  9645. </productMenu>
  9646. <productMenu id="sip"
  9647. type="1" >
  9648. </productMenu>
  9649. <productMenu id="bluetoothIntercom"
  9650. type="1" >
  9651. </productMenu>
  9652. <productMenu id="phone"
  9653. type="2" >
  9654. </productMenu>
  9655. <productMenu id="fmradio"
  9656. type="3" >
  9657. </productMenu>
  9658. <productMenu id="deviceSetting"
  9659. type="1"
  9660. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9661. <productMenuURL version="1.3.1"
  9662. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9663. />
  9664. </productMenu>
  9665. <productMenu id="quickGuide"
  9666. type="1"
  9667. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9668. size="1.32MB" >
  9669. </productMenu>
  9670. <productMenu id="userGuide"
  9671. type="1"
  9672. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9673. size="1.68MB" >
  9674. </productMenu>
  9675. <productMenu id="connectGuide"
  9676. type="1"
  9677. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9678. size="1.12MB" >
  9679. </productMenu>
  9680. <productID id="5570"
  9681. />
  9682. <productGroupable type="0"
  9683. />
  9684. </product>
  9685. <product id="10C_Pro"
  9686. name="10C Pro"
  9687. series="10"
  9688. latestVersion="2.7.1"
  9689. show = "1" >
  9690. <productMenu id="protocol"
  9691. type="0">
  9692. </productMenu>
  9693. <productMenu id="sip"
  9694. type="1" >
  9695. </productMenu>
  9696. <productMenu id="bluetoothIntercom"
  9697. type="1" >
  9698. </productMenu>
  9699. <productMenu id="phone"
  9700. type="2" >
  9701. </productMenu>
  9702. <productMenu id="fmradio"
  9703. type="3" >
  9704. </productMenu>
  9705. <productMenu id="deviceSetting"
  9706. type="1"
  9707. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9708. <productMenuURL version="2.5.1"
  9709. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9710. />
  9711. <productMenuURL version="1.0"
  9712. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9713. />
  9714. </productMenu>
  9715. <productMenu id="quickGuide"
  9716. type="1"
  9717. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9718. size="651KB" >
  9719. </productMenu>
  9720. <productMenu id="userGuide"
  9721. type="1"
  9722. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9723. size="2.34MB" >
  9724. </productMenu>
  9725. <productMenu id="connectGuide"
  9726. type="1"
  9727. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9728. size="1.12MB" >
  9729. </productMenu>
  9730. <productID id="5580"
  9731. />
  9732. <productGroupable type="0"
  9733. />
  9734. </product>
  9735. <product id="10C"
  9736. name="10C"
  9737. series="10"
  9738. latestVersion="3.0.4"
  9739. show = "1" >
  9740. <productMenu id="protocol"
  9741. type="0">
  9742. </productMenu>
  9743. <productMenu id="sip"
  9744. type="1" >
  9745. <productMenuType version="1.0.4"
  9746. type="0"
  9747. />
  9748. </productMenu>
  9749. <productMenu id="bluetoothIntercom"
  9750. type="1" >
  9751. <productMenuType version="1.0.4"
  9752. type="0"
  9753. />
  9754. </productMenu>
  9755. <productMenu id="phone"
  9756. type="2" >
  9757. </productMenu>
  9758. <productMenu id="fmradio"
  9759. type="3" >
  9760. </productMenu>
  9761. <productMenu id="deviceSetting"
  9762. type="1"
  9763. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9764. <productMenuURL version="2.3"
  9765. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9766. />
  9767. <productMenuURL version="2.1.1"
  9768. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9769. />
  9770. <productMenuURL version="1.0.4"
  9771. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9772. />
  9773. <productMenuURL version="1.0.2"
  9774. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9775. />
  9776. </productMenu>
  9777. <productMenu id="quickGuide"
  9778. type="1"
  9779. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9780. size="935KB" >
  9781. </productMenu>
  9782. <productMenu id="userGuide"
  9783. type="1"
  9784. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9785. size="2.82MB" >
  9786. </productMenu>
  9787. <productMenu id="connectGuide"
  9788. type="1"
  9789. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9790. size="1.12MB" >
  9791. </productMenu>
  9792. <productID id="5510"
  9793. />
  9794. <productGroupable type="0"
  9795. />
  9796. </product>
  9797. <product id="10U_GT_AIR"
  9798. name="10U GT-Air"
  9799. series="10"
  9800. latestVersion="2.0.4"
  9801. show = "1" >
  9802. <productMenu id="protocol"
  9803. type="0">
  9804. </productMenu>
  9805. <productMenu id="sip"
  9806. type="1" >
  9807. <productMenuType version="1.0.2"
  9808. type="0"
  9809. />
  9810. </productMenu>
  9811. <productMenu id="bluetoothIntercom"
  9812. type="1" >
  9813. <productMenuType version="1.0.2"
  9814. type="0"
  9815. />
  9816. </productMenu>
  9817. <productMenu id="phone"
  9818. type="2" >
  9819. </productMenu>
  9820. <productMenu id="fmradio"
  9821. type="3" >
  9822. </productMenu>
  9823. <productMenu id="deviceSetting"
  9824. type="1"
  9825. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9826. <productMenuURL version="1.3.2"
  9827. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9828. />
  9829. <productMenuURL version="1.0.2"
  9830. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9831. />
  9832. </productMenu>
  9833. <productMenu id="quickGuide"
  9834. type="1"
  9835. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9836. size="685KB" >
  9837. </productMenu>
  9838. <productMenu id="userGuide"
  9839. type="1"
  9840. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9841. size="684KB" >
  9842. </productMenu>
  9843. <productMenu id="connectGuide"
  9844. type="1"
  9845. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9846. size="1.12MB" >
  9847. </productMenu>
  9848. <productID id="5610"
  9849. />
  9850. <productGroupable type="0"
  9851. />
  9852. </product>
  9853. <product id="10U_NEOTEC"
  9854. name="10U Neotec"
  9855. series="10"
  9856. latestVersion="2.0.4"
  9857. show = "1" >
  9858. <productMenu id="protocol"
  9859. type="0">
  9860. </productMenu>
  9861. <productMenu id="sip"
  9862. type="1" >
  9863. <productMenuType version="1.0.2"
  9864. type="0"
  9865. />
  9866. </productMenu>
  9867. <productMenu id="bluetoothIntercom"
  9868. type="1" >
  9869. <productMenuType version="1.0.2"
  9870. type="0"
  9871. />
  9872. </productMenu>
  9873. <productMenu id="phone"
  9874. type="2" >
  9875. </productMenu>
  9876. <productMenu id="fmradio"
  9877. type="3" >
  9878. </productMenu>
  9879. <productMenu id="deviceSetting"
  9880. type="1"
  9881. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9882. <productMenuURL version="1.3.2"
  9883. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9884. />
  9885. <productMenuURL version="1.0.2"
  9886. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9887. />
  9888. </productMenu>
  9889. <productMenu id="quickGuide"
  9890. type="1"
  9891. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9892. size="689KB" >
  9893. </productMenu>
  9894. <productMenu id="userGuide"
  9895. type="1"
  9896. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9897. size="684KB" >
  9898. </productMenu>
  9899. <productMenu id="connectGuide"
  9900. type="1"
  9901. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9902. size="1.12MB" >
  9903. </productMenu>
  9904. <productID id="5611"
  9905. />
  9906. <productGroupable type="0"
  9907. />
  9908. </product>
  9909. <product id="10U_J_CRUISE"
  9910. name="10U J-Cruise"
  9911. series="10"
  9912. latestVersion="2.0.4"
  9913. show = "1" >
  9914. <productMenu id="protocol"
  9915. type="0">
  9916. </productMenu>
  9917. <productMenu id="sip"
  9918. type="1" >
  9919. <productMenuType version="1.0.2"
  9920. type="0"
  9921. />
  9922. </productMenu>
  9923. <productMenu id="bluetoothIntercom"
  9924. type="1" >
  9925. <productMenuType version="1.0.2"
  9926. type="0"
  9927. />
  9928. </productMenu>
  9929. <productMenu id="phone"
  9930. type="2" >
  9931. </productMenu>
  9932. <productMenu id="fmradio"
  9933. type="3" >
  9934. </productMenu>
  9935. <productMenu id="deviceSetting"
  9936. type="1"
  9937. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9938. <productMenuURL version="1.3.2"
  9939. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9940. />
  9941. <productMenuURL version="1.0.2"
  9942. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9943. />
  9944. </productMenu>
  9945. <productMenu id="quickGuide"
  9946. type="1"
  9947. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9948. size="686KB" >
  9949. </productMenu>
  9950. <productMenu id="userGuide"
  9951. type="1"
  9952. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9953. size="684KB" >
  9954. </productMenu>
  9955. <productMenu id="connectGuide"
  9956. type="1"
  9957. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9958. size="1.12MB" >
  9959. </productMenu>
  9960. <productID id="5612"
  9961. />
  9962. <productGroupable type="0"
  9963. />
  9964. </product>
  9965. <product id="10U_C3"
  9966. name="10U C3/C3Pro"
  9967. series="10"
  9968. latestVersion="2.0.4"
  9969. show = "1" >
  9970. <productMenu id="protocol"
  9971. type="0">
  9972. </productMenu>
  9973. <productMenu id="sip"
  9974. type="1" >
  9975. <productMenuType version="1.0.2"
  9976. type="0"
  9977. />
  9978. </productMenu>
  9979. <productMenu id="bluetoothIntercom"
  9980. type="1" >
  9981. <productMenuType version="1.0.2"
  9982. type="0"
  9983. />
  9984. </productMenu>
  9985. <productMenu id="phone"
  9986. type="2" >
  9987. </productMenu>
  9988. <productMenu id="fmradio"
  9989. type="3" >
  9990. </productMenu>
  9991. <productMenu id="deviceSetting"
  9992. type="1"
  9993. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9994. <productMenuURL version="1.3.2"
  9995. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9996. />
  9997. <productMenuURL version="1.0.2"
  9998. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9999. />
  10000. </productMenu>
  10001. <productMenu id="quickGuide"
  10002. type="1"
  10003. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10004. size="199KB" >
  10005. </productMenu>
  10006. <productMenu id="userGuide"
  10007. type="1"
  10008. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10009. size="684KB" >
  10010. </productMenu>
  10011. <productMenu id="connectGuide"
  10012. type="1"
  10013. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10014. size="1.12MB" >
  10015. </productMenu>
  10016. <productID id="5620"
  10017. />
  10018. <productGroupable type="0"
  10019. />
  10020. </product>
  10021. <product id="10U_ARAI"
  10022. name="10U Arai"
  10023. series="10"
  10024. latestVersion="2.0.4"
  10025. show = "1" >
  10026. <productMenu id="protocol"
  10027. type="0">
  10028. </productMenu>
  10029. <productMenu id="sip"
  10030. type="1" >
  10031. <productMenuType version="1.0.2"
  10032. type="0"
  10033. />
  10034. </productMenu>
  10035. <productMenu id="bluetoothIntercom"
  10036. type="1" >
  10037. <productMenuType version="1.0.2"
  10038. type="0"
  10039. />
  10040. </productMenu>
  10041. <productMenu id="phone"
  10042. type="2" >
  10043. </productMenu>
  10044. <productMenu id="fmradio"
  10045. type="3" >
  10046. </productMenu>
  10047. <productMenu id="deviceSetting"
  10048. type="1"
  10049. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10050. <productMenuURL version="1.3.2"
  10051. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10052. />
  10053. <productMenuURL version="1.0.2"
  10054. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10055. />
  10056. </productMenu>
  10057. <productMenu id="quickGuide"
  10058. type="1"
  10059. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10060. size="689KB" >
  10061. </productMenu>
  10062. <productMenu id="userGuide"
  10063. type="1"
  10064. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10065. size="684KB" >
  10066. </productMenu>
  10067. <productMenu id="connectGuide"
  10068. type="1"
  10069. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10070. size="1.12MB" >
  10071. </productMenu>
  10072. <productID id="5621"
  10073. />
  10074. <productGroupable type="0"
  10075. />
  10076. </product>
  10077. <product id="10Upad"
  10078. name="10Upad"
  10079. series="10"
  10080. latestVersion="2.0.3"
  10081. show = "1" >
  10082. <productMenu id="protocol"
  10083. type="0">
  10084. </productMenu>
  10085. <productMenu id="sip"
  10086. type="1" >
  10087. </productMenu>
  10088. <productMenu id="bluetoothIntercom"
  10089. type="1" >
  10090. </productMenu>
  10091. <productMenu id="phone"
  10092. type="2" >
  10093. </productMenu>
  10094. <productMenu id="fmradio"
  10095. type="3" >
  10096. </productMenu>
  10097. <productMenu id="deviceSetting"
  10098. type="1"
  10099. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10100. <productMenuURL version="1.0.3"
  10101. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10102. />
  10103. </productMenu>
  10104. <productMenu id="quickGuide"
  10105. type="1"
  10106. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10107. size="615KB" >
  10108. </productMenu>
  10109. <productMenu id="userGuide"
  10110. type="1"
  10111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10112. size="0.99MB" >
  10113. </productMenu>
  10114. <productMenu id="connectGuide"
  10115. type="1"
  10116. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10117. size="1.12MB" >
  10118. </productMenu>
  10119. <productID id="6210"
  10120. />
  10121. <productGroupable type="0"
  10122. />
  10123. </product>
  10124. <product id="5S"
  10125. name="5S"
  10126. series="5"
  10127. latestVersion="2.3.1"
  10128. show = "1" >
  10129. <productMenu id="protocol"
  10130. type="3" >
  10131. </productMenu>
  10132. <productMenu id="sip"
  10133. type="1" >
  10134. </productMenu>
  10135. <productMenu id="bluetoothIntercom"
  10136. type="1" >
  10137. </productMenu>
  10138. <productMenu id="phone"
  10139. type="1" >
  10140. </productMenu>
  10141. <productMenu id="fmradio"
  10142. type="0" >
  10143. </productMenu>
  10144. <productMenu id="deviceSetting"
  10145. type="1"
  10146. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10147. </productMenu>
  10148. <productMenu id="quickGuide"
  10149. type="0"
  10150. url=""
  10151. size="934KB" >
  10152. </productMenu>
  10153. <productMenu id="userGuide"
  10154. type="1"
  10155. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10156. size="1.14MB" >
  10157. </productMenu>
  10158. <productMenu id="connectGuide"
  10159. type="1"
  10160. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10161. size="1.12MB" >
  10162. </productMenu>
  10163. <productID id="5590"
  10164. />
  10165. <productGroupable type="0"
  10166. />
  10167. </product>
  10168. <product id="5S"
  10169. name="5S"
  10170. series="5"
  10171. latestVersion="1.2"
  10172. show = "-1" >
  10173. <productMenu id="protocol"
  10174. type="0">
  10175. </productMenu>
  10176. <productMenu id="sip"
  10177. type="1" >
  10178. </productMenu>
  10179. <productMenu id="bluetoothIntercom"
  10180. type="1" >
  10181. </productMenu>
  10182. <productMenu id="phone"
  10183. type="2" >
  10184. </productMenu>
  10185. <productMenu id="fmradio"
  10186. type="3" >
  10187. </productMenu>
  10188. <productMenu id="deviceSetting"
  10189. type="1"
  10190. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10191. </productMenu>
  10192. <productMenu id="quickGuide"
  10193. type="0"
  10194. url=""
  10195. size="970KB" >
  10196. </productMenu>
  10197. <productMenu id="userGuide"
  10198. type="1"
  10199. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10200. size="1.26MB" >
  10201. </productMenu>
  10202. <productID id="5534"
  10203. />
  10204. <productGroupable type="0"
  10205. />
  10206. </product>
  10207. <product id="5S"
  10208. name="5S"
  10209. series="5"
  10210. latestVersion="3.0.1"
  10211. show = "-1" >
  10212. <productMenu id="protocol"
  10213. type="0">
  10214. </productMenu>
  10215. <productMenu id="sip"
  10216. type="1" >
  10217. </productMenu>
  10218. <productMenu id="bluetoothIntercom"
  10219. type="1" >
  10220. </productMenu>
  10221. <productMenu id="phone"
  10222. type="2" >
  10223. </productMenu>
  10224. <productMenu id="fmradio"
  10225. type="0" >
  10226. </productMenu>
  10227. <productMenu id="deviceSetting"
  10228. type="1"
  10229. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10230. </productMenu>
  10231. <productMenu id="quickGuide"
  10232. type="0"
  10233. url=""
  10234. size="970KB" >
  10235. </productMenu>
  10236. <productMenu id="userGuide"
  10237. type="1"
  10238. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10239. size="1.26MB" >
  10240. </productMenu>
  10241. <productID id="5538"
  10242. />
  10243. <productGroupable type="0"
  10244. />
  10245. </product>
  10246. <product id="3SPLUS"
  10247. name="3S PLUS"
  10248. series="3"
  10249. latestVersion="2.2"
  10250. show = "1" >
  10251. <productMenu id="protocol"
  10252. type="3" >
  10253. </productMenu>
  10254. <productMenu id="sip"
  10255. type="1" >
  10256. </productMenu>
  10257. <productMenu id="bluetoothIntercom"
  10258. type="1" >
  10259. </productMenu>
  10260. <productMenu id="deviceSetting"
  10261. type="1"
  10262. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10263. <productMenuURL version="2.2.1"
  10264. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10265. />
  10266. </productMenu>
  10267. <productMenu id="quickGuide"
  10268. type="1"
  10269. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10270. size="344KB" >
  10271. </productMenu>
  10272. <productMenu id="userGuide"
  10273. type="1"
  10274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10275. size="1.14MB" >
  10276. </productMenu>
  10277. <productMenu id="connectGuide"
  10278. type="1"
  10279. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10280. size="1.12MB" >
  10281. </productMenu>
  10282. <productID id="4023"
  10283. />
  10284. <productGroupable type="0"
  10285. />
  10286. </product>
  10287. <product id="3SPLUS"
  10288. name="3S PLUS"
  10289. series="3"
  10290. latestVersion="1.1"
  10291. show = "-1" >
  10292. <productMenu id="protocol"
  10293. type="0">
  10294. </productMenu>
  10295. <productMenu id="sip"
  10296. type="1" >
  10297. </productMenu>
  10298. <productMenu id="bluetoothIntercom"
  10299. type="1" >
  10300. </productMenu>
  10301. <productMenu id="deviceSetting"
  10302. type="1"
  10303. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10304. </productMenu>
  10305. <productMenu id="quickGuide"
  10306. type="1"
  10307. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10308. size="842KB" >
  10309. </productMenu>
  10310. <productMenu id="userGuide"
  10311. type="1"
  10312. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10313. size="1.02MB" >
  10314. </productMenu>
  10315. <productID id="6320"
  10316. />
  10317. <productGroupable type="0"
  10318. />
  10319. </product>
  10320. <product id="AConnect"
  10321. name="Alpinestars A-Connect"
  10322. series="60"
  10323. latestVersion="1.0.2"
  10324. latestVersionMesh="0.19"
  10325. latestVersionVoicePrompt="1.6"
  10326. show = "-1" >
  10327. <productMenu id="protocol"
  10328. type="2" >
  10329. </productMenu>
  10330. <productMenu id="ota"
  10331. type="2" >
  10332. <otaLanguages>
  10333. <otaLanguage
  10334. id="0"
  10335. name="English"
  10336. package="0"
  10337. />
  10338. <otaLanguage
  10339. id="0"
  10340. name="French"
  10341. package="1"
  10342. />
  10343. <otaLanguage
  10344. id="0"
  10345. name="Spanish"
  10346. package="2"
  10347. />
  10348. <otaLanguage
  10349. id="0"
  10350. name="Italian"
  10351. package="3"
  10352. />
  10353. <otaLanguage
  10354. id="0"
  10355. name="German"
  10356. package="4"
  10357. />
  10358. <otaLanguage
  10359. id="0"
  10360. name="Dutch"
  10361. package="5"
  10362. />
  10363. <otaLanguage
  10364. id="0"
  10365. name="Russian"
  10366. package="6"
  10367. />
  10368. <otaLanguage
  10369. id="0"
  10370. name="Chinese"
  10371. package="7"
  10372. />
  10373. <otaLanguage
  10374. id="0"
  10375. name="Korean"
  10376. package="8"
  10377. />
  10378. <otaLanguage
  10379. id="0"
  10380. name="Japanese"
  10381. package="9"
  10382. />
  10383. <otaLanguage
  10384. id="0"
  10385. name="Finnish"
  10386. package="10"
  10387. />
  10388. <otaLanguage
  10389. id="0"
  10390. name="Polish"
  10391. package="11"
  10392. />
  10393. </otaLanguages>
  10394. <otaPackages>
  10395. <package
  10396. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10397. size="5183988"
  10398. />
  10399. <package
  10400. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10401. size="5183988"
  10402. />
  10403. <package
  10404. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10405. size="5183988"
  10406. />
  10407. <package
  10408. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10409. size="5183988"
  10410. />
  10411. <package
  10412. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10413. size="5183988"
  10414. />
  10415. <package
  10416. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10417. size="5183988"
  10418. />
  10419. <package
  10420. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10421. size="5183988"
  10422. />
  10423. <package
  10424. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10425. size="5183988"
  10426. />
  10427. <package
  10428. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10429. size="5183988"
  10430. />
  10431. <package
  10432. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10433. size="5183988"
  10434. />
  10435. <package
  10436. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10437. size="5183988"
  10438. />
  10439. <package
  10440. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10441. size="5183988"
  10442. />
  10443. </otaPackages>
  10444. </productMenu>
  10445. <productMenu id="sip"
  10446. type="1" >
  10447. </productMenu>
  10448. <productMenu id="illusion"
  10449. type="0" >
  10450. </productMenu>
  10451. <productMenu id="meshIntercom+"
  10452. type="3"
  10453. url="2" >
  10454. </productMenu>
  10455. <productMenu id="waveIntercom"
  10456. type="1" >
  10457. </productMenu>
  10458. <productMenu id="bluetoothIntercom"
  10459. type="1"
  10460. url="2" >
  10461. </productMenu>
  10462. <productMenu id="bluetoothIntercomGrouping"
  10463. type="0" >
  10464. </productMenu>
  10465. <productMenu id="fmradio"
  10466. type="1"
  10467. url="1" >
  10468. </productMenu>
  10469. <productMenu id="phone"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="music"
  10473. type="1" >
  10474. </productMenu>
  10475. <productMenu id="musicSharing"
  10476. type="0" >
  10477. </productMenu>
  10478. <productMenu id="deviceSetting"
  10479. type="1"
  10480. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10481. <productMenuURL version="1.0.3"
  10482. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10483. />
  10484. </productMenu>
  10485. <productMenu id="quickGuide"
  10486. type="0"
  10487. url=""
  10488. size="1.12MB" >
  10489. </productMenu>
  10490. <productMenu id="userGuide"
  10491. type="1"
  10492. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10493. size="2.0MB" >
  10494. </productMenu>
  10495. <productMenu id="videoGuide"
  10496. type="0"
  10497. url=""
  10498. size="3.41MB" >
  10499. </productMenu>
  10500. <productMenu id="volume"
  10501. type="16" >
  10502. </productMenu>
  10503. <productMenu id="volume+"
  10504. type="2"
  10505. url="0x6004" >
  10506. </productMenu>
  10507. <productMenu id="soundMode"
  10508. type="0" >
  10509. </productMenu>
  10510. <productMenu id="battery"
  10511. type="1" >
  10512. </productMenu>
  10513. <productID id="6A82"
  10514. />
  10515. <productGroupable type="0"
  10516. />
  10517. </product>
  10518. <product id="iCon"
  10519. name="iCon"
  10520. series="50"
  10521. latestVersion="1.2"
  10522. show = "0" >
  10523. <productMenu id="protocol"
  10524. type="2" >
  10525. </productMenu>
  10526. <productMenu id="alexa"
  10527. type="0" >
  10528. </productMenu>
  10529. <productMenu id="wa"
  10530. type="0" >
  10531. </productMenu>
  10532. <productMenu id="sip"
  10533. type="1" >
  10534. </productMenu>
  10535. <productMenu id="led"
  10536. type="3" >
  10537. </productMenu>
  10538. <productMenu id="meshIntercom"
  10539. type="20" >
  10540. </productMenu>
  10541. <productMenu id="meshIntercom+"
  10542. type="3"
  10543. url="0" >
  10544. <productMenuType version="1.0.9"
  10545. type="2"
  10546. />
  10547. </productMenu>
  10548. <productMenu id="bluetoothIntercom"
  10549. type="1" >
  10550. </productMenu>
  10551. <productMenu id="phone"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="music"
  10555. type="1" >
  10556. </productMenu>
  10557. <productMenu id="fmradio"
  10558. type="1" >
  10559. </productMenu>
  10560. <productMenu id="deviceSetting"
  10561. type="1"
  10562. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10563. <productMenuURL version="1.0.9"
  10564. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10565. />
  10566. </productMenu>
  10567. <productMenu id="quickGuide"
  10568. type="1"
  10569. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10570. size="344KB" >
  10571. </productMenu>
  10572. <productMenu id="userGuide"
  10573. type="1"
  10574. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10575. size="3.41MB" >
  10576. </productMenu>
  10577. <productMenu id="volume"
  10578. type="11" >
  10579. </productMenu>
  10580. <productMenu id="battery"
  10581. type="1" >
  10582. </productMenu>
  10583. <productID id="3900"
  10584. />
  10585. <productGroupable type="0"
  10586. />
  10587. </product>
  10588. <product id="ICONHelmLinkSL"
  10589. name="ICON HelmLink SL"
  10590. series="50"
  10591. latestVersion="1.0"
  10592. latestVersionVoicePrompt="1.6"
  10593. show = "-1" >
  10594. <productMenu id="protocol"
  10595. type="2" >
  10596. </productMenu>
  10597. <productMenu id="alexa"
  10598. type="0" >
  10599. </productMenu>
  10600. <productMenu id="ota"
  10601. type="2" >
  10602. <otaPackages>
  10603. <package
  10604. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10605. size="2945812"
  10606. />
  10607. </otaPackages>
  10608. </productMenu>
  10609. <productMenu id="wa"
  10610. type="0" >
  10611. </productMenu>
  10612. <productMenu id="meshIntercom"
  10613. type="30" >
  10614. </productMenu>
  10615. <productMenu id="meshIntercom+"
  10616. type="3"
  10617. url="2" >
  10618. </productMenu>
  10619. <productMenu id="waveIntercom"
  10620. type="1" >
  10621. </productMenu>
  10622. <productMenu id="phone"
  10623. type="1" >
  10624. </productMenu>
  10625. <productMenu id="music"
  10626. type="1" >
  10627. </productMenu>
  10628. <productMenu id="musicSharing"
  10629. type="0" >
  10630. </productMenu>
  10631. <productMenu id="deviceSetting"
  10632. type="1"
  10633. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10634. </productMenu>
  10635. <productMenu id="quickGuide"
  10636. type="0"
  10637. url=""
  10638. size="1.12MB" >
  10639. </productMenu>
  10640. <productMenu id="userGuide"
  10641. type="1"
  10642. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10643. size="2.0MB" >
  10644. </productMenu>
  10645. <productMenu id="volume"
  10646. type="12" >
  10647. </productMenu>
  10648. <productMenu id="battery"
  10649. type="1" >
  10650. </productMenu>
  10651. <productID id="6842"
  10652. />
  10653. <productGroupable type="0"
  10654. />
  10655. </product>
  10656. <product id="HD50S"
  10657. name="H-D Audio 50S"
  10658. series="50"
  10659. latestVersion="1.0.1"
  10660. show = "-1" >
  10661. <productMenu id="protocol"
  10662. type="2" >
  10663. </productMenu>
  10664. <productMenu id="alexa"
  10665. type="0" >
  10666. </productMenu>
  10667. <productMenu id="ota"
  10668. type="0"
  10669. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10670. size="1150234" >
  10671. </productMenu>
  10672. <productMenu id="wa"
  10673. type="1" >
  10674. </productMenu>
  10675. <productMenu id="sip"
  10676. type="1" >
  10677. </productMenu>
  10678. <productMenu id="meshIntercom"
  10679. type="20" >
  10680. </productMenu>
  10681. <productMenu id="meshIntercom+"
  10682. type="3"
  10683. url="0" >
  10684. <productMenuType version="1.0.9"
  10685. type="2"
  10686. />
  10687. </productMenu>
  10688. <productMenu id="bluetoothIntercom"
  10689. type="1" >
  10690. </productMenu>
  10691. <productMenu id="phone"
  10692. type="1" >
  10693. </productMenu>
  10694. <productMenu id="music"
  10695. type="1" >
  10696. </productMenu>
  10697. <productMenu id="fmradio"
  10698. type="1" >
  10699. </productMenu>
  10700. <productMenu id="deviceSetting"
  10701. type="1"
  10702. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10703. <productMenuURL version="1.0.9"
  10704. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10705. />
  10706. </productMenu>
  10707. <productMenu id="quickGuide"
  10708. type="1"
  10709. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10710. size="934KB" >
  10711. </productMenu>
  10712. <productMenu id="userGuide"
  10713. type="1"
  10714. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10715. size="1.14MB" >
  10716. </productMenu>
  10717. <productMenu id="volume"
  10718. type="11" >
  10719. </productMenu>
  10720. <productMenu id="battery"
  10721. type="1" >
  10722. </productMenu>
  10723. <productID id="3156"
  10724. />
  10725. <productGroupable type="0"
  10726. />
  10727. </product>
  10728. <product id="HD50S"
  10729. name="H-D Audio 50S"
  10730. series="50"
  10731. latestVersion="2.0.2"
  10732. show = "0" >
  10733. <productMenu id="protocol"
  10734. type="2" >
  10735. </productMenu>
  10736. <productMenu id="alexa"
  10737. type="0" >
  10738. </productMenu>
  10739. <productMenu id="ota"
  10740. type="0"
  10741. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10742. size="1150234" >
  10743. </productMenu>
  10744. <productMenu id="wa"
  10745. type="1" >
  10746. </productMenu>
  10747. <productMenu id="sip"
  10748. type="1" >
  10749. </productMenu>
  10750. <productMenu id="meshIntercom"
  10751. type="20" >
  10752. </productMenu>
  10753. <productMenu id="meshIntercom+"
  10754. type="3"
  10755. url="0" >
  10756. <productMenuType version="2.0.9"
  10757. type="2"
  10758. />
  10759. </productMenu>
  10760. <productMenu id="bluetoothIntercom"
  10761. type="1" >
  10762. </productMenu>
  10763. <productMenu id="phone"
  10764. type="1" >
  10765. </productMenu>
  10766. <productMenu id="music"
  10767. type="1" >
  10768. </productMenu>
  10769. <productMenu id="fmradio"
  10770. type="1" >
  10771. </productMenu>
  10772. <productMenu id="deviceSetting"
  10773. type="1"
  10774. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10775. <productMenuURL version="2.0.9"
  10776. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10777. />
  10778. </productMenu>
  10779. <productMenu id="quickGuide"
  10780. type="1"
  10781. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10782. size="934KB" >
  10783. </productMenu>
  10784. <productMenu id="userGuide"
  10785. type="1"
  10786. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10787. size="1.14MB" >
  10788. </productMenu>
  10789. <productMenu id="volume"
  10790. type="11" >
  10791. </productMenu>
  10792. <productMenu id="battery"
  10793. type="1" >
  10794. </productMenu>
  10795. <productID id="3213"
  10796. />
  10797. <productGroupable type="0"
  10798. />
  10799. </product>
  10800. <product id="HD50C"
  10801. name="H-D Audio 50C"
  10802. series="50"
  10803. latestVersion="1.0.1"
  10804. show = "0" >
  10805. <productMenu id="protocol"
  10806. type="2" >
  10807. </productMenu>
  10808. <productMenu id="ota"
  10809. type="0" >
  10810. </productMenu>
  10811. <productMenu id="wa"
  10812. type="1" >
  10813. </productMenu>
  10814. <productMenu id="sip"
  10815. type="1" >
  10816. </productMenu>
  10817. <productMenu id="meshIntercom"
  10818. type="20" >
  10819. </productMenu>
  10820. <productMenu id="meshIntercom+"
  10821. type="3"
  10822. url="0" >
  10823. <productMenuType version="1.0.9"
  10824. type="2"
  10825. />
  10826. </productMenu>
  10827. <productMenu id="bluetoothIntercom"
  10828. type="1" >
  10829. </productMenu>
  10830. <productMenu id="phone"
  10831. type="1" >
  10832. </productMenu>
  10833. <productMenu id="music"
  10834. type="1" >
  10835. </productMenu>
  10836. <productMenu id="fmradio"
  10837. type="1" >
  10838. </productMenu>
  10839. <productMenu id="deviceSetting"
  10840. type="1"
  10841. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10842. <productMenuURL version="1.0.9"
  10843. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10844. />
  10845. </productMenu>
  10846. <productMenu id="quickGuide"
  10847. type="1"
  10848. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10849. size="344KB" >
  10850. </productMenu>
  10851. <productMenu id="userGuide"
  10852. type="1"
  10853. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10854. size="3.41MB" >
  10855. </productMenu>
  10856. <productMenu id="volume"
  10857. type="11" >
  10858. </productMenu>
  10859. <productMenu id="battery"
  10860. type="1" >
  10861. </productMenu>
  10862. <productID id="3240"
  10863. />
  10864. <productGroupable type="0"
  10865. />
  10866. </product>
  10867. <product id="HD50S"
  10868. name="FURY N04"
  10869. series="Helmet"
  10870. latestVersion="1.0"
  10871. show = "0" >
  10872. <productMenu id="protocol"
  10873. type="2" >
  10874. </productMenu>
  10875. <productMenu id="alexa"
  10876. type="0" >
  10877. </productMenu>
  10878. <productMenu id="ota"
  10879. type="0" >
  10880. </productMenu>
  10881. <productMenu id="wa"
  10882. type="0" >
  10883. </productMenu>
  10884. <productMenu id="meshIntercom"
  10885. type="20" >
  10886. </productMenu>
  10887. <productMenu id="meshIntercom+"
  10888. type="3"
  10889. url="0" >
  10890. <productMenuType version="1.0.9"
  10891. type="2"
  10892. />
  10893. </productMenu>
  10894. <productMenu id="phone"
  10895. type="1" >
  10896. </productMenu>
  10897. <productMenu id="music"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="fmradio"
  10901. type="1" >
  10902. </productMenu>
  10903. <productMenu id="deviceSetting"
  10904. type="1"
  10905. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10906. <productMenuURL version="1.0.9"
  10907. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10908. />
  10909. </productMenu>
  10910. <productMenu id="quickGuide"
  10911. type="1"
  10912. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10913. size="1.12MB" >
  10914. </productMenu>
  10915. <productMenu id="userGuide"
  10916. type="1"
  10917. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10918. size="2.0MB" >
  10919. </productMenu>
  10920. <productMenu id="volume"
  10921. type="13" >
  10922. </productMenu>
  10923. <productMenu id="battery"
  10924. type="1" >
  10925. </productMenu>
  10926. <productID id="5553"
  10927. />
  10928. <productGroupable type="0"
  10929. />
  10930. </product>
  10931. <product id="XCOM3Pro"
  10932. name="X-COM3 Pro"
  10933. series="50"
  10934. latestVersion="1.1"
  10935. show = "0" >
  10936. <productMenu id="protocol"
  10937. type="2" >
  10938. </productMenu>
  10939. <productMenu id="alexa"
  10940. type="0" >
  10941. </productMenu>
  10942. <productMenu id="ota"
  10943. type="0" >
  10944. </productMenu>
  10945. <productMenu id="wa"
  10946. type="0" >
  10947. </productMenu>
  10948. <productMenu id="sip"
  10949. type="1" >
  10950. </productMenu>
  10951. <productMenu id="meshIntercom"
  10952. type="30" >
  10953. </productMenu>
  10954. <productMenu id="meshIntercom+"
  10955. type="3"
  10956. url="2" >
  10957. <productMenuType version="1.1"
  10958. type="2"
  10959. />
  10960. </productMenu>
  10961. <productMenu id="waveIntercom"
  10962. type="1" >
  10963. <productMenuType version="1.1"
  10964. type="0"
  10965. />
  10966. </productMenu>
  10967. <productMenu id="bluetoothIntercom"
  10968. type="1" >
  10969. </productMenu>
  10970. <productMenu id="phone"
  10971. type="1" >
  10972. </productMenu>
  10973. <productMenu id="music"
  10974. type="1" >
  10975. </productMenu>
  10976. <productMenu id="fmradio"
  10977. type="1" >
  10978. </productMenu>
  10979. <productMenu id="deviceSetting"
  10980. type="1"
  10981. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10982. <productMenuURL version="1.1"
  10983. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10984. />
  10985. </productMenu>
  10986. <productMenu id="quickGuide"
  10987. type="0"
  10988. url=""
  10989. size="344KB" >
  10990. </productMenu>
  10991. <productMenu id="userGuide"
  10992. type="1"
  10993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10994. size="3.41MB" >
  10995. </productMenu>
  10996. <productMenu id="volume"
  10997. type="11" >
  10998. </productMenu>
  10999. <productMenu id="battery"
  11000. type="1" >
  11001. </productMenu>
  11002. <productID id="321A"
  11003. />
  11004. <productGroupable type="0"
  11005. />
  11006. </product>
  11007. <product id="XCOM3"
  11008. name="X-COM3"
  11009. series="20"
  11010. latestVersion="1.0"
  11011. show = "0" >
  11012. <productMenu id="protocol"
  11013. type="2" >
  11014. </productMenu>
  11015. <productMenu id="sip"
  11016. type="1" >
  11017. </productMenu>
  11018. <productMenu id="bluetoothIntercom"
  11019. type="1" >
  11020. </productMenu>
  11021. <productMenu id="phone"
  11022. type="1" >
  11023. </productMenu>
  11024. <productMenu id="music"
  11025. type="1" >
  11026. </productMenu>
  11027. <productMenu id="fmradio"
  11028. type="1" >
  11029. </productMenu>
  11030. <productMenu id="deviceSetting"
  11031. type="1"
  11032. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11033. </productMenu>
  11034. <productMenu id="quickGuide"
  11035. type="0"
  11036. url=""
  11037. size="934KB" >
  11038. </productMenu>
  11039. <productMenu id="userGuide"
  11040. type="1"
  11041. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11042. size="1.14MB" >
  11043. </productMenu>
  11044. <productMenu id="volume"
  11045. type="15" >
  11046. </productMenu>
  11047. <productID id="3410"
  11048. />
  11049. <productGroupable type="0"
  11050. />
  11051. </product>
  11052. <product id="X-COM2"
  11053. name="X-COM2"
  11054. series="20"
  11055. latestVersion="1.0.5"
  11056. show = "0" >
  11057. <productMenu id="protocol"
  11058. type="0">
  11059. </productMenu>
  11060. <productMenu id="sip"
  11061. type="1" >
  11062. </productMenu>
  11063. <productMenu id="bluetoothIntercom"
  11064. type="1" >
  11065. </productMenu>
  11066. <productMenu id="intercomSetting"
  11067. type="1" >
  11068. </productMenu>
  11069. <productMenu id="phone"
  11070. type="2" >
  11071. </productMenu>
  11072. <productMenu id="fmradio"
  11073. type="3" >
  11074. </productMenu>
  11075. <productMenu id="deviceSetting"
  11076. type="1"
  11077. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11078. </productMenu>
  11079. <productMenu id="quickGuide"
  11080. type="1"
  11081. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11082. size="796KB" >
  11083. </productMenu>
  11084. <productMenu id="userGuide"
  11085. type="1"
  11086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11087. size="1.90MB" >
  11088. </productMenu>
  11089. <productID id="2030"
  11090. />
  11091. <productGroupable type="1"
  11092. />
  11093. </product>
  11094. <product id="AVAABC"
  11095. name="AVA ABC"
  11096. series="SPIDER"
  11097. latestVersion="1.1"
  11098. show = "0" >
  11099. <productMenu id="protocol"
  11100. type="2" >
  11101. </productMenu>
  11102. <productMenu id="alexa"
  11103. type="0" >
  11104. </productMenu>
  11105. <productMenu id="ota"
  11106. type="0" >
  11107. <productMenuType version="1.0"
  11108. type="0"
  11109. />
  11110. <otaPackages>
  11111. <package
  11112. url="https://api.sena.com/support/OTA/"
  11113. size="2945812"
  11114. />
  11115. </otaPackages>
  11116. </productMenu>
  11117. <productMenu id="wa"
  11118. type="0" >
  11119. </productMenu>
  11120. <productMenu id="meshIntercom"
  11121. type="30" >
  11122. <productMenuType version="1.0"
  11123. type="20"
  11124. />
  11125. </productMenu>
  11126. <productMenu id="meshIntercom+"
  11127. type="3"
  11128. url="2" >
  11129. <productMenuType version="1.0"
  11130. type="2"
  11131. />
  11132. <productMenuURL version="1.0"
  11133. url="0"
  11134. />
  11135. </productMenu>
  11136. <productMenu id="waveIntercom"
  11137. type="1" >
  11138. <productMenuType version="1.0"
  11139. type="0"
  11140. />
  11141. </productMenu>
  11142. <productMenu id="phone"
  11143. type="1" >
  11144. </productMenu>
  11145. <productMenu id="music"
  11146. type="1" >
  11147. </productMenu>
  11148. <productMenu id="musicSharing"
  11149. type="0" >
  11150. </productMenu>
  11151. <productMenu id="deviceSetting"
  11152. type="1"
  11153. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11154. <productMenuURL version="1.0"
  11155. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11156. />
  11157. </productMenu>
  11158. <productMenu id="quickGuide"
  11159. type="1"
  11160. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11161. size="1.12MB" >
  11162. </productMenu>
  11163. <productMenu id="userGuide"
  11164. type="1"
  11165. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11166. size="2.0MB" >
  11167. </productMenu>
  11168. <productMenu id="volume"
  11169. type="12" >
  11170. </productMenu>
  11171. <productMenu id="battery"
  11172. type="1" >
  11173. </productMenu>
  11174. <productID id="6808"
  11175. />
  11176. <productGroupable type="0"
  11177. />
  11178. </product>
  11179. <product id="ADVANCEProCOM2"
  11180. name="ADVANCE ProCOM 2"
  11181. series="Helmet"
  11182. latestVersion="0.5"
  11183. latestVersionVoicePrompt="0.3"
  11184. show = "-1" >
  11185. <productMenu id="protocol"
  11186. type="2" >
  11187. </productMenu>
  11188. <productMenu id="ota"
  11189. type="2" >
  11190. <otaLanguages>
  11191. <otaLanguage
  11192. id="0"
  11193. name="English"
  11194. package="0"
  11195. />
  11196. <otaLanguage
  11197. id="0"
  11198. name="French"
  11199. package="1"
  11200. />
  11201. <otaLanguage
  11202. id="0"
  11203. name="Spanish"
  11204. package="2"
  11205. />
  11206. <otaLanguage
  11207. id="0"
  11208. name="Italian"
  11209. package="3"
  11210. />
  11211. <otaLanguage
  11212. id="0"
  11213. name="German"
  11214. package="4"
  11215. />
  11216. <otaLanguage
  11217. id="0"
  11218. name="Dutch"
  11219. package="5"
  11220. />
  11221. <otaLanguage
  11222. id="0"
  11223. name="Russian"
  11224. package="6"
  11225. />
  11226. <otaLanguage
  11227. id="0"
  11228. name="Chinese"
  11229. package="7"
  11230. />
  11231. <otaLanguage
  11232. id="0"
  11233. name="Korean"
  11234. package="8"
  11235. />
  11236. <otaLanguage
  11237. id="0"
  11238. name="Japanese"
  11239. package="9"
  11240. />
  11241. <otaLanguage
  11242. id="0"
  11243. name="Finnish"
  11244. package="10"
  11245. />
  11246. <otaLanguage
  11247. id="0"
  11248. name="Polish"
  11249. package="11"
  11250. />
  11251. </otaLanguages>
  11252. <otaPackages>
  11253. <package
  11254. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11255. size="5183988"
  11256. />
  11257. <package
  11258. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11259. size="5183988"
  11260. />
  11261. <package
  11262. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11263. size="5183988"
  11264. />
  11265. <package
  11266. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11267. size="5183988"
  11268. />
  11269. <package
  11270. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11271. size="5183988"
  11272. />
  11273. <package
  11274. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11275. size="5183988"
  11276. />
  11277. <package
  11278. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11279. size="5183988"
  11280. />
  11281. <package
  11282. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11283. size="5183988"
  11284. />
  11285. <package
  11286. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11287. size="5183988"
  11288. />
  11289. <package
  11290. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11291. size="5183988"
  11292. />
  11293. <package
  11294. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11295. size="5183988"
  11296. />
  11297. <package
  11298. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11299. size="5183988"
  11300. />
  11301. </otaPackages>
  11302. </productMenu>
  11303. <productMenu id="wa"
  11304. type="0" >
  11305. </productMenu>
  11306. <productMenu id="meshIntercom"
  11307. type="30" >
  11308. </productMenu>
  11309. <productMenu id="meshIntercom+"
  11310. type="3"
  11311. url="2" >
  11312. </productMenu>
  11313. <productMenu id="waveIntercom"
  11314. type="1" >
  11315. </productMenu>
  11316. <productMenu id="fmradio"
  11317. type="1" >
  11318. </productMenu>
  11319. <productMenu id="phone"
  11320. type="0" >
  11321. </productMenu>
  11322. <productMenu id="music"
  11323. type="1" >
  11324. </productMenu>
  11325. <productMenu id="musicSharing"
  11326. type="0" >
  11327. </productMenu>
  11328. <productMenu id="deviceSetting"
  11329. type="1"
  11330. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11331. </productMenu>
  11332. <productMenu id="quickGuide"
  11333. type="0"
  11334. url=""
  11335. size="1.12MB" >
  11336. </productMenu>
  11337. <productMenu id="userGuide"
  11338. type="1"
  11339. url=""
  11340. size="2.0MB" >
  11341. </productMenu>
  11342. <productMenu id="videoGuide"
  11343. type="0"
  11344. url=""
  11345. size="3.41MB" >
  11346. </productMenu>
  11347. <productMenu id="connectGuide"
  11348. type="1"
  11349. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11350. size="1.12MB" >
  11351. </productMenu>
  11352. <productMenu id="volume"
  11353. type="16" >
  11354. </productMenu>
  11355. <productMenu id="battery"
  11356. type="1" >
  11357. </productMenu>
  11358. <productID id="6A85"
  11359. />
  11360. <productGroupable type="0"
  11361. />
  11362. </product>
  11363. <product id="TRIUMPH60X"
  11364. name="TRIUMPH 60X"
  11365. series="60"
  11366. latestVersion="1.0"
  11367. latestVersionMesh="0.19"
  11368. latestVersionVoicePrompt="1.7"
  11369. show = "-1" >
  11370. <productMenu id="protocol"
  11371. type="2" >
  11372. </productMenu>
  11373. <productMenu id="ota"
  11374. type="0" >
  11375. <otaLanguages>
  11376. <otaLanguage
  11377. id="0"
  11378. name="English"
  11379. package="0"
  11380. />
  11381. <otaLanguage
  11382. id="0"
  11383. name="French"
  11384. package="1"
  11385. />
  11386. <otaLanguage
  11387. id="0"
  11388. name="Spanish"
  11389. package="2"
  11390. />
  11391. <otaLanguage
  11392. id="0"
  11393. name="Italian"
  11394. package="3"
  11395. />
  11396. <otaLanguage
  11397. id="0"
  11398. name="German"
  11399. package="4"
  11400. />
  11401. <otaLanguage
  11402. id="0"
  11403. name="Dutch"
  11404. package="5"
  11405. />
  11406. <otaLanguage
  11407. id="0"
  11408. name="Russian"
  11409. package="6"
  11410. />
  11411. <otaLanguage
  11412. id="0"
  11413. name="Chinese"
  11414. package="7"
  11415. />
  11416. <otaLanguage
  11417. id="0"
  11418. name="Korean"
  11419. package="8"
  11420. />
  11421. <otaLanguage
  11422. id="0"
  11423. name="Japanese"
  11424. package="9"
  11425. />
  11426. <otaLanguage
  11427. id="0"
  11428. name="Finnish"
  11429. package="10"
  11430. />
  11431. <otaLanguage
  11432. id="0"
  11433. name="Polish"
  11434. package="11"
  11435. />
  11436. </otaLanguages>
  11437. <otaPackages>
  11438. <package
  11439. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11440. size="5183988"
  11441. />
  11442. <package
  11443. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11444. size="5183988"
  11445. />
  11446. <package
  11447. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11448. size="5183988"
  11449. />
  11450. <package
  11451. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11452. size="5183988"
  11453. />
  11454. <package
  11455. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11456. size="5183988"
  11457. />
  11458. <package
  11459. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11460. size="5183988"
  11461. />
  11462. <package
  11463. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11464. size="5183988"
  11465. />
  11466. <package
  11467. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11468. size="5183988"
  11469. />
  11470. <package
  11471. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11472. size="5183988"
  11473. />
  11474. <package
  11475. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11476. size="5183988"
  11477. />
  11478. <package
  11479. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11480. size="5183988"
  11481. />
  11482. <package
  11483. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11484. size="5183988"
  11485. />
  11486. </otaPackages>
  11487. </productMenu>
  11488. <productMenu id="wa"
  11489. type="0" >
  11490. </productMenu>
  11491. <productMenu id="sip"
  11492. type="1" >
  11493. </productMenu>
  11494. <productMenu id="led"
  11495. type="1" >
  11496. </productMenu>
  11497. <productMenu id="illusion"
  11498. type="1" >
  11499. </productMenu>
  11500. <productMenu id="meshIntercom"
  11501. type="30" >
  11502. </productMenu>
  11503. <productMenu id="meshIntercom+"
  11504. type="3"
  11505. url="2" >
  11506. </productMenu>
  11507. <productMenu id="bluetoothIntercom"
  11508. type="1" >
  11509. </productMenu>
  11510. <productMenu id="fmradio"
  11511. type="1"
  11512. url="1" >
  11513. </productMenu>
  11514. <productMenu id="mic"
  11515. type="0" >
  11516. </productMenu>
  11517. <productMenu id="phone"
  11518. type="1" >
  11519. </productMenu>
  11520. <productMenu id="music"
  11521. type="1" >
  11522. </productMenu>
  11523. <productMenu id="musicSharing"
  11524. type="0" >
  11525. </productMenu>
  11526. <productMenu id="deviceSetting"
  11527. type="1"
  11528. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11529. </productMenu>
  11530. <productMenu id="quickGuide"
  11531. type="0"
  11532. url=""
  11533. size="1.12MB" >
  11534. </productMenu>
  11535. <productMenu id="userGuide"
  11536. type="1"
  11537. url=""
  11538. size="2.0MB" >
  11539. </productMenu>
  11540. <productMenu id="videoGuide"
  11541. type="0"
  11542. url=""
  11543. size="3.41MB" >
  11544. </productMenu>
  11545. <productMenu id="keySettings"
  11546. type="1"
  11547. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11548. </productMenu>
  11549. <productMenu id="volume"
  11550. type="13" >
  11551. </productMenu>
  11552. <productMenu id="volume+"
  11553. type="2"
  11554. url="0x6004" >
  11555. </productMenu>
  11556. <productMenu id="battery"
  11557. type="1" >
  11558. </productMenu>
  11559. <productID id="6A1C"
  11560. />
  11561. <productGroupable type="0"
  11562. />
  11563. </product>
  11564. <product id="Triumph_50S"
  11565. name="Triumph 50S"
  11566. series="50"
  11567. latestVersion="1.5"
  11568. show = "0" >
  11569. <productMenu id="protocol"
  11570. type="2" >
  11571. </productMenu>
  11572. <productMenu id="alexa"
  11573. type="0" >
  11574. </productMenu>
  11575. <productMenu id="ota"
  11576. type="0"
  11577. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11578. size="1150234" >
  11579. </productMenu>
  11580. <productMenu id="wa"
  11581. type="1" >
  11582. </productMenu>
  11583. <productMenu id="sip"
  11584. type="1" >
  11585. </productMenu>
  11586. <productMenu id="meshIntercom"
  11587. type="20" >
  11588. </productMenu>
  11589. <productMenu id="bluetoothIntercom"
  11590. type="1" >
  11591. </productMenu>
  11592. <productMenu id="meshIntercom+"
  11593. type="3"
  11594. url="2" >
  11595. <productMenuType version="1.2.9"
  11596. type="2"
  11597. />
  11598. <productMenuURL version="1.2.9"
  11599. url="0"
  11600. />
  11601. </productMenu>
  11602. <productMenu id="waveIntercom"
  11603. type="1" >
  11604. <productMenuType version="1.2.9"
  11605. type="0"
  11606. />
  11607. </productMenu>
  11608. <productMenu id="phone"
  11609. type="1" >
  11610. </productMenu>
  11611. <productMenu id="music"
  11612. type="1" >
  11613. </productMenu>
  11614. <productMenu id="fmradio"
  11615. type="1" >
  11616. </productMenu>
  11617. <productMenu id="deviceSetting"
  11618. type="1"
  11619. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11620. <productMenuURL version="1.2.9"
  11621. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11622. />
  11623. <productMenuURL version="1.0"
  11624. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11625. />
  11626. </productMenu>
  11627. <productMenu id="quickGuide"
  11628. type="1"
  11629. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11630. size="934KB" >
  11631. </productMenu>
  11632. <productMenu id="userGuide"
  11633. type="1"
  11634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11635. size="1.14MB" >
  11636. </productMenu>
  11637. <productMenu id="volume"
  11638. type="11" >
  11639. </productMenu>
  11640. <productMenu id="battery"
  11641. type="1" >
  11642. </productMenu>
  11643. <productID id="3264"
  11644. />
  11645. <productGroupable type="0"
  11646. />
  11647. </product>
  11648. <product id="RE50S"
  11649. name="RE 50S"
  11650. series="50"
  11651. latestVersion="2.7"
  11652. show = "0" >
  11653. <productMenu id="protocol"
  11654. type="2" >
  11655. </productMenu>
  11656. <productMenu id="alexa"
  11657. type="0" >
  11658. </productMenu>
  11659. <productMenu id="ota"
  11660. type="0"
  11661. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11662. size="1150234" >
  11663. </productMenu>
  11664. <productMenu id="wa"
  11665. type="1" >
  11666. </productMenu>
  11667. <productMenu id="sip"
  11668. type="1" >
  11669. </productMenu>
  11670. <productMenu id="meshIntercom"
  11671. type="30" >
  11672. </productMenu>
  11673. <productMenu id="meshIntercom+"
  11674. type="3"
  11675. url="2" >
  11676. <productMenuType version="2.5"
  11677. type="2"
  11678. />
  11679. </productMenu>
  11680. <productMenu id="waveIntercom"
  11681. type="1" >
  11682. <productMenuType version="2.5"
  11683. type="0"
  11684. />
  11685. </productMenu>
  11686. <productMenu id="bluetoothIntercom"
  11687. type="1" >
  11688. </productMenu>
  11689. <productMenu id="phone"
  11690. type="1" >
  11691. </productMenu>
  11692. <productMenu id="music"
  11693. type="1" >
  11694. </productMenu>
  11695. <productMenu id="fmradio"
  11696. type="1" >
  11697. </productMenu>
  11698. <productMenu id="deviceSetting"
  11699. type="1"
  11700. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11701. <productMenuURL version="2.5.9"
  11702. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11703. />
  11704. </productMenu>
  11705. <productMenu id="quickGuide"
  11706. type="1"
  11707. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11708. size="934KB" >
  11709. </productMenu>
  11710. <productMenu id="userGuide"
  11711. type="1"
  11712. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11713. size="1.14MB" >
  11714. </productMenu>
  11715. <productMenu id="videoGuide"
  11716. type="0"
  11717. url=""
  11718. size="3.41MB" >
  11719. </productMenu>
  11720. <productMenu id="volume"
  11721. type="11" >
  11722. </productMenu>
  11723. <productMenu id="battery"
  11724. type="1" >
  11725. </productMenu>
  11726. <productID id="321C"
  11727. />
  11728. <productGroupable type="0"
  11729. />
  11730. </product>
  11731. <product id="BMW_HELMET_II_U1"
  11732. name="BMW HELMET II U1"
  11733. series="50"
  11734. latestVersion="1.0"
  11735. show = "0" >
  11736. <productMenu id="protocol"
  11737. type="2" >
  11738. </productMenu>
  11739. <productMenu id="alexa"
  11740. type="0" >
  11741. </productMenu>
  11742. <productMenu id="sip"
  11743. type="1" >
  11744. </productMenu>
  11745. <productMenu id="meshIntercom"
  11746. type="20" >
  11747. </productMenu>
  11748. <productMenu id="bluetoothIntercom"
  11749. type="1" >
  11750. </productMenu>
  11751. <productMenu id="bluetoothIntercom2"
  11752. type="1" >
  11753. </productMenu>
  11754. <productMenu id="phone"
  11755. type="1" >
  11756. </productMenu>
  11757. <productMenu id="music"
  11758. type="1" >
  11759. </productMenu>
  11760. <productMenu id="fmradio"
  11761. type="1" >
  11762. </productMenu>
  11763. <productMenu id="deviceSetting"
  11764. type="1"
  11765. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11766. </productMenu>
  11767. <productMenu id="quickGuide"
  11768. type="1"
  11769. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11770. size="934KB" >
  11771. </productMenu>
  11772. <productMenu id="userGuide"
  11773. type="1"
  11774. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11775. size="1.14MB" >
  11776. </productMenu>
  11777. <productMenu id="volume"
  11778. type="11" >
  11779. </productMenu>
  11780. <productMenu id="battery"
  11781. type="1" >
  11782. </productMenu>
  11783. <productID id="3260"
  11784. />
  11785. <productGroupable type="0"
  11786. />
  11787. </product>
  11788. <product id="OUTRUSHR"
  11789. name="CX935"
  11790. series="Helmet"
  11791. latestVersion="2.1"
  11792. show = "-1" >
  11793. <productMenu id="protocol"
  11794. type="3">
  11795. </productMenu>
  11796. <productMenu id="sip"
  11797. type="1" >
  11798. </productMenu>
  11799. <productMenu id="bluetoothIntercom"
  11800. type="1" >
  11801. </productMenu>
  11802. <productMenu id="phone"
  11803. type="1" >
  11804. </productMenu>
  11805. <productMenu id="fmradio"
  11806. type="0" >
  11807. </productMenu>
  11808. <productMenu id="deviceSetting"
  11809. type="1"
  11810. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11811. </productMenu>
  11812. <productMenu id="userGuide"
  11813. type="1"
  11814. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11815. size="660KB" >
  11816. </productMenu>
  11817. <productID id="5446"
  11818. />
  11819. <productGroupable type="0"
  11820. />
  11821. </product>
  11822. <product id="LSE_01"
  11823. name="LSE-01"
  11824. series="SF"
  11825. latestVersion="1.2.3"
  11826. show = "0" >
  11827. <productMenu id="protocol"
  11828. type="1"
  11829. url="3">
  11830. </productMenu>
  11831. <productMenu id="sip"
  11832. type="1" >
  11833. </productMenu>
  11834. <productMenu id="bluetoothIntercom"
  11835. type="1" >
  11836. </productMenu>
  11837. <productMenu id="phone"
  11838. type="1" >
  11839. </productMenu>
  11840. <productMenu id="music"
  11841. type="1" >
  11842. </productMenu>
  11843. <productMenu id="fmradio"
  11844. type="1" >
  11845. </productMenu>
  11846. <productMenu id="deviceSetting"
  11847. type="1"
  11848. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11849. <productMenuURL version="1.1"
  11850. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11851. />
  11852. <productMenuURL version="1.0"
  11853. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11854. />
  11855. </productMenu>
  11856. <productMenu id="quickGuide"
  11857. type="1"
  11858. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11859. size="607KB" >
  11860. </productMenu>
  11861. <productMenu id="userGuide"
  11862. type="1"
  11863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11864. size="1.91MB" >
  11865. </productMenu>
  11866. <productMenu id="volume"
  11867. type="4" >
  11868. </productMenu>
  11869. <productID id="5416"
  11870. />
  11871. <productGroupable type="0"
  11872. />
  11873. </product>
  11874. <product id="AGV_ARK"
  11875. name="AGV ARK"
  11876. series="SF"
  11877. latestVersion="1.0.3"
  11878. show = "0" >
  11879. <productMenu id="protocol"
  11880. type="1"
  11881. url="3">
  11882. </productMenu>
  11883. <productMenu id="sip"
  11884. type="1" >
  11885. </productMenu>
  11886. <productMenu id="bluetoothIntercom"
  11887. type="1" >
  11888. </productMenu>
  11889. <productMenu id="phone"
  11890. type="1" >
  11891. </productMenu>
  11892. <productMenu id="music"
  11893. type="1" >
  11894. </productMenu>
  11895. <productMenu id="fmradio"
  11896. type="1" >
  11897. </productMenu>
  11898. <productMenu id="deviceSetting"
  11899. type="1"
  11900. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11901. </productMenu>
  11902. <productMenu id="quickGuide"
  11903. type="1"
  11904. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11905. size="607KB" >
  11906. </productMenu>
  11907. <productMenu id="userGuide"
  11908. type="1"
  11909. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11910. size="1.91MB" >
  11911. </productMenu>
  11912. <productMenu id="volume"
  11913. type="4" >
  11914. </productMenu>
  11915. <productID id="5420"
  11916. />
  11917. <productGroupable type="0"
  11918. />
  11919. </product>
  11920. <product id="KLIM_KRIOS"
  11921. name="KLIM Krios"
  11922. series="10"
  11923. latestVersion="1.1.2"
  11924. show = "0" >
  11925. <productMenu id="protocol"
  11926. type="0">
  11927. </productMenu>
  11928. <productMenu id="sip"
  11929. type="1" >
  11930. </productMenu>
  11931. <productMenu id="bluetoothIntercom"
  11932. type="1" >
  11933. </productMenu>
  11934. <productMenu id="phone"
  11935. type="2" >
  11936. </productMenu>
  11937. <productMenu id="fmradio"
  11938. type="3" >
  11939. </productMenu>
  11940. <productMenu id="deviceSetting"
  11941. type="1"
  11942. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11943. <productMenuURL version="1.0"
  11944. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11945. />
  11946. </productMenu>
  11947. <productMenu id="quickGuide"
  11948. type="1"
  11949. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11950. size="649KB" >
  11951. </productMenu>
  11952. <productMenu id="userGuide"
  11953. type="1"
  11954. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11955. size="1.43MB" >
  11956. </productMenu>
  11957. <productID id="5910"
  11958. />
  11959. <productGroupable type="0"
  11960. />
  11961. </product>
  11962. <product id="POLARIS_SLINGSHOT"
  11963. name="Polaris Slingshot"
  11964. series="10"
  11965. latestVersion="1.1.2"
  11966. show = "0" >
  11967. <productMenu id="protocol"
  11968. type="0">
  11969. </productMenu>
  11970. <productMenu id="sip"
  11971. type="1" >
  11972. </productMenu>
  11973. <productMenu id="bluetoothIntercom"
  11974. type="1" >
  11975. </productMenu>
  11976. <productMenu id="phone"
  11977. type="2" >
  11978. </productMenu>
  11979. <productMenu id="fmradio"
  11980. type="3" >
  11981. </productMenu>
  11982. <productMenu id="deviceSetting"
  11983. type="1"
  11984. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11985. <productMenuURL version="1.0"
  11986. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11987. />
  11988. </productMenu>
  11989. <productMenu id="quickGuide"
  11990. type="1"
  11991. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11992. size="689KB" >
  11993. </productMenu>
  11994. <productMenu id="userGuide"
  11995. type="1"
  11996. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11997. size="1.43MB" >
  11998. </productMenu>
  11999. <productID id="5920"
  12000. />
  12001. <productGroupable type="0"
  12002. />
  12003. </product>
  12004. <product id="DWO6"
  12005. name="SEDICI DWO6-PRO"
  12006. series="10"
  12007. latestVersion="1.0.2"
  12008. show = "0" >
  12009. <productMenu id="protocol"
  12010. type="0">
  12011. </productMenu>
  12012. <productMenu id="sip"
  12013. type="1" >
  12014. </productMenu>
  12015. <productMenu id="bluetoothIntercom"
  12016. type="1" >
  12017. </productMenu>
  12018. <productMenu id="phone"
  12019. type="2" >
  12020. </productMenu>
  12021. <productMenu id="fmradio"
  12022. type="3" >
  12023. </productMenu>
  12024. <productMenu id="deviceSetting"
  12025. type="1"
  12026. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12027. </productMenu>
  12028. <productMenu id="quickGuide"
  12029. type="1"
  12030. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12031. size="529KB" >
  12032. </productMenu>
  12033. <productMenu id="userGuide"
  12034. type="1"
  12035. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12036. size="4.09MB" >
  12037. </productMenu>
  12038. <productID id="6112"
  12039. />
  12040. <productGroupable type="0"
  12041. />
  12042. </product>
  12043. <product id="DWO6A"
  12044. name="SEDICI DWO-6"
  12045. series="10"
  12046. latestVersion="1.0.2"
  12047. show = "0" >
  12048. <productMenu id="protocol"
  12049. type="0">
  12050. </productMenu>
  12051. <productMenu id="sip"
  12052. type="1" >
  12053. </productMenu>
  12054. <productMenu id="bluetoothIntercom"
  12055. type="1" >
  12056. </productMenu>
  12057. <productMenu id="phone"
  12058. type="2" >
  12059. </productMenu>
  12060. <productMenu id="fmradio"
  12061. type="3" >
  12062. </productMenu>
  12063. <productMenu id="deviceSetting"
  12064. type="1"
  12065. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12066. </productMenu>
  12067. <productMenu id="quickGuide"
  12068. type="1"
  12069. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12070. size="522KB" >
  12071. </productMenu>
  12072. <productMenu id="userGuide"
  12073. type="1"
  12074. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12075. size="2.71MB" >
  12076. </productMenu>
  12077. <productID id="6114"
  12078. />
  12079. <productGroupable type="0"
  12080. />
  12081. </product>
  12082. <product id="3SPLUS"
  12083. name="ZILL"
  12084. series="3"
  12085. latestVersion="1.0.4"
  12086. show = "0" >
  12087. <productMenu id="protocol"
  12088. type="0">
  12089. </productMenu>
  12090. <productMenu id="sip"
  12091. type="1" >
  12092. </productMenu>
  12093. <productMenu id="bluetoothIntercom"
  12094. type="1" >
  12095. </productMenu>
  12096. <productMenu id="deviceSetting"
  12097. type="1"
  12098. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12099. </productMenu>
  12100. <productMenu id="quickGuide"
  12101. type="1"
  12102. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12103. size="842KB" >
  12104. </productMenu>
  12105. <productMenu id="userGuide"
  12106. type="1"
  12107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12108. size="1.02MB" >
  12109. </productMenu>
  12110. <productID id="6335"
  12111. />
  12112. <productGroupable type="0"
  12113. />
  12114. </product>
  12115. <product id="HD50S"
  12116. name="Boom! Audio 30K"
  12117. series="30"
  12118. latestVersion="3.4"
  12119. show = "0" >
  12120. <productMenu id="protocol"
  12121. type="1"
  12122. url="0">
  12123. </productMenu>
  12124. <productMenu id="wa"
  12125. type="0" >
  12126. </productMenu>
  12127. <productMenu id="sip"
  12128. type="1" >
  12129. </productMenu>
  12130. <productMenu id="meshIntercom"
  12131. type="20" >
  12132. <productMenuType version="2.9.9"
  12133. type="10"
  12134. />
  12135. </productMenu>
  12136. <productMenu id="bluetoothIntercom"
  12137. type="1" >
  12138. </productMenu>
  12139. <productMenu id="phone"
  12140. type="1" >
  12141. </productMenu>
  12142. <productMenu id="music"
  12143. type="1" >
  12144. </productMenu>
  12145. <productMenu id="fmradio"
  12146. type="1" >
  12147. </productMenu>
  12148. <productMenu id="deviceSetting"
  12149. type="1"
  12150. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12151. <productMenuURL version="3.2"
  12152. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12153. />
  12154. <productMenuURL version="3.0"
  12155. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12156. />
  12157. <productMenuURL version="2.2"
  12158. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12159. />
  12160. </productMenu>
  12161. <productMenu id="quickGuide"
  12162. type="1"
  12163. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12164. size="1.06MB" >
  12165. </productMenu>
  12166. <productMenu id="userGuide"
  12167. type="1"
  12168. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12169. size="3.15MB" >
  12170. </productMenu>
  12171. <productMenu id="volume"
  12172. type="1" >
  12173. </productMenu>
  12174. <productID id="3112"
  12175. />
  12176. <productGroupable type="0"
  12177. />
  12178. </product>
  12179. <product id="HD50S"
  12180. name="Boom! Audio N02"
  12181. series="30"
  12182. latestVersion="3.1"
  12183. show = "0" >
  12184. <productMenu id="protocol"
  12185. type="1"
  12186. url="0">
  12187. </productMenu>
  12188. <productMenu id="wa"
  12189. type="2" >
  12190. </productMenu>
  12191. <productMenu id="sip"
  12192. type="1" >
  12193. </productMenu>
  12194. <productMenu id="meshIntercom"
  12195. type="20" >
  12196. <productMenuType version="2.9.9"
  12197. type="10"
  12198. />
  12199. </productMenu>
  12200. <productMenu id="bluetoothIntercom"
  12201. type="1" >
  12202. </productMenu>
  12203. <productMenu id="phone"
  12204. type="1" >
  12205. </productMenu>
  12206. <productMenu id="music"
  12207. type="1" >
  12208. </productMenu>
  12209. <productMenu id="fmradio"
  12210. type="1" >
  12211. </productMenu>
  12212. <productMenu id="deviceSetting"
  12213. type="1"
  12214. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12215. <productMenuURL version="2.2"
  12216. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12217. />
  12218. </productMenu>
  12219. <productMenu id="quickGuide"
  12220. type="1"
  12221. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12222. size="1.06MB" >
  12223. </productMenu>
  12224. <productMenu id="userGuide"
  12225. type="1"
  12226. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12227. size="3.15MB" >
  12228. </productMenu>
  12229. <productMenu id="volume"
  12230. type="2" >
  12231. </productMenu>
  12232. <productID id="3114"
  12233. />
  12234. <productGroupable type="0"
  12235. />
  12236. </product>
  12237. <product id="HD50S"
  12238. name="Boom Audio 20S"
  12239. series="50"
  12240. latestVersion="2.5.2"
  12241. show = "0" >
  12242. <productMenu id="protocol"
  12243. type="0">
  12244. </productMenu>
  12245. <productMenu id="sip"
  12246. type="1" >
  12247. <productMenuType version="1.0"
  12248. type="0"
  12249. />
  12250. </productMenu>
  12251. <productMenu id="bluetoothIntercom"
  12252. type="1" >
  12253. <productMenuType version="1.0"
  12254. type="0"
  12255. />
  12256. </productMenu>
  12257. <productMenu id="intercomSetting"
  12258. type="1" >
  12259. </productMenu>
  12260. <productMenu id="phone"
  12261. type="2" >
  12262. </productMenu>
  12263. <productMenu id="fmradio"
  12264. type="3" >
  12265. </productMenu>
  12266. <productMenu id="deviceSetting"
  12267. type="1"
  12268. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12269. <productMenuURL version="2.4"
  12270. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12271. />
  12272. <productMenuURL version="1.5"
  12273. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12274. />
  12275. <productMenuURL version="1.4.1"
  12276. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12277. />
  12278. <productMenuURL version="1.1"
  12279. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12280. />
  12281. <productMenuURL version="1.0"
  12282. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12283. />
  12284. </productMenu>
  12285. <productMenu id="quickGuide"
  12286. type="1"
  12287. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12288. size="264KB" >
  12289. </productMenu>
  12290. <productMenu id="userGuide"
  12291. type="1"
  12292. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12293. size="3.09MB" >
  12294. </productMenu>
  12295. <productMenu id="connectGuide"
  12296. type="1"
  12297. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12298. size="1.12MB" >
  12299. </productMenu>
  12300. <productID id="4210"
  12301. />
  12302. <productProductKey key="11"
  12303. />
  12304. <productID id="4230"
  12305. />
  12306. <productProductKey key="11"
  12307. />
  12308. <productGroupable type="1"
  12309. />
  12310. </product>
  12311. <product id="HD50S"
  12312. name="Boom Audio 20S EVO"
  12313. series="50"
  12314. latestVersion="2.5.2"
  12315. show = "0" >
  12316. <productMenu id="protocol"
  12317. type="0">
  12318. </productMenu>
  12319. <productMenu id="sip"
  12320. type="1" >
  12321. <productMenuType version="1.0"
  12322. type="0"
  12323. />
  12324. </productMenu>
  12325. <productMenu id="bluetoothIntercom"
  12326. type="1" >
  12327. <productMenuType version="1.0"
  12328. type="0"
  12329. />
  12330. </productMenu>
  12331. <productMenu id="intercomSetting"
  12332. type="1" >
  12333. </productMenu>
  12334. <productMenu id="phone"
  12335. type="2" >
  12336. </productMenu>
  12337. <productMenu id="fmradio"
  12338. type="3" >
  12339. </productMenu>
  12340. <productMenu id="deviceSetting"
  12341. type="1"
  12342. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12343. <productMenuURL version="2.4"
  12344. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12345. />
  12346. <productMenuURL version="1.5"
  12347. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12348. />
  12349. <productMenuURL version="1.4.1"
  12350. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12351. />
  12352. <productMenuURL version="1.1"
  12353. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12354. />
  12355. <productMenuURL version="1.0"
  12356. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12357. />
  12358. </productMenu>
  12359. <productMenu id="quickGuide"
  12360. type="1"
  12361. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12362. size="321KB" >
  12363. </productMenu>
  12364. <productMenu id="userGuide"
  12365. type="1"
  12366. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12367. size="2.46MB" >
  12368. </productMenu>
  12369. <productID id="4230"
  12370. />
  12371. <productProductKey key="27"
  12372. />
  12373. <productGroupable type="1"
  12374. />
  12375. </product>
  12376. <product id="HD50S"
  12377. name="Boom! Audio 10S"
  12378. series="50"
  12379. latestVersion="1.1.3"
  12380. show = "0" >
  12381. <productMenu id="protocol"
  12382. type="0">
  12383. </productMenu>
  12384. <productMenu id="sip"
  12385. type="1" >
  12386. </productMenu>
  12387. <productMenu id="bluetoothIntercom"
  12388. type="1" >
  12389. </productMenu>
  12390. <productMenu id="phone"
  12391. type="2" >
  12392. </productMenu>
  12393. <productMenu id="fmradio"
  12394. type="3" >
  12395. </productMenu>
  12396. <productMenu id="deviceSetting"
  12397. type="1"
  12398. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12399. </productMenu>
  12400. <productMenu id="quickGuide"
  12401. type="1"
  12402. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12403. size="538KB" >
  12404. </productMenu>
  12405. <productMenu id="userGuide"
  12406. type="1"
  12407. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12408. size="1.55MB" >
  12409. </productMenu>
  12410. <productID id="5532"
  12411. />
  12412. <productGroupable type="0"
  12413. />
  12414. </product>
  12415. <product id="HD50S"
  12416. name="Boom! Audio N01 10R"
  12417. series="50"
  12418. latestVersion="1.1.3"
  12419. show = "0" >
  12420. <productMenu id="protocol"
  12421. type="0">
  12422. </productMenu>
  12423. <productMenu id="sip"
  12424. type="1" >
  12425. </productMenu>
  12426. <productMenu id="bluetoothIntercom"
  12427. type="1" >
  12428. </productMenu>
  12429. <productMenu id="phone"
  12430. type="2" >
  12431. </productMenu>
  12432. <productMenu id="fmradio"
  12433. type="3" >
  12434. </productMenu>
  12435. <productMenu id="deviceSetting"
  12436. type="1"
  12437. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12438. </productMenu>
  12439. <productMenu id="quickGuide"
  12440. type="1"
  12441. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12442. size="766KB" >
  12443. </productMenu>
  12444. <productMenu id="userGuide"
  12445. type="1"
  12446. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12447. size="1.45MB" >
  12448. </productMenu>
  12449. <productID id="5522"
  12450. />
  12451. <productGroupable type="0"
  12452. />
  12453. </product>
  12454. <product id="HD50S"
  12455. name="OUTRUSH-R N03"
  12456. series="50"
  12457. latestVersion="1.2.1"
  12458. show = "-1" >
  12459. <productMenu id="protocol"
  12460. type="0">
  12461. </productMenu>
  12462. <productMenu id="sip"
  12463. type="1" >
  12464. </productMenu>
  12465. <productMenu id="bluetoothIntercom"
  12466. type="1" >
  12467. </productMenu>
  12468. <productMenu id="phone"
  12469. type="2" >
  12470. </productMenu>
  12471. <productMenu id="fmradio"
  12472. type="3" >
  12473. </productMenu>
  12474. <productMenu id="deviceSetting"
  12475. type="1"
  12476. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12477. </productMenu>
  12478. <productMenu id="userGuide"
  12479. type="1"
  12480. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12481. size="660KB" >
  12482. </productMenu>
  12483. <productID id="5434"
  12484. />
  12485. <productGroupable type="0"
  12486. />
  12487. </product>
  12488. <product id="HD50S"
  12489. name="OUTRUSH-R N03"
  12490. series="50"
  12491. latestVersion="2.0"
  12492. show = "0" >
  12493. <productMenu id="protocol"
  12494. type="3" >
  12495. </productMenu>
  12496. <productMenu id="sip"
  12497. type="1" >
  12498. </productMenu>
  12499. <productMenu id="bluetoothIntercom"
  12500. type="1" >
  12501. </productMenu>
  12502. <productMenu id="phone"
  12503. type="1" >
  12504. </productMenu>
  12505. <productMenu id="fmradio"
  12506. type="1" >
  12507. </productMenu>
  12508. <productMenu id="deviceSetting"
  12509. type="1"
  12510. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12511. </productMenu>
  12512. <productMenu id="userGuide"
  12513. type="1"
  12514. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12515. size="1.14MB" >
  12516. </productMenu>
  12517. <productID id="5441"
  12518. />
  12519. <productGroupable type="0"
  12520. />
  12521. </product>
  12522. <product id="5R"
  12523. name="5R"
  12524. series="5"
  12525. latestVersion="1.0.1"
  12526. show = "1" >
  12527. <productMenu id="protocol"
  12528. type="3" >
  12529. </productMenu>
  12530. <productMenu id="sip"
  12531. type="1" >
  12532. </productMenu>
  12533. <productMenu id="bluetoothIntercom"
  12534. type="1" >
  12535. </productMenu>
  12536. <productMenu id="phone"
  12537. type="1" >
  12538. </productMenu>
  12539. <productMenu id="fmradio"
  12540. type="1" >
  12541. </productMenu>
  12542. <productMenu id="deviceSetting"
  12543. type="1"
  12544. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12545. </productMenu>
  12546. <productMenu id="quickGuide"
  12547. type="0"
  12548. url=""
  12549. size="934KB" >
  12550. </productMenu>
  12551. <productMenu id="userGuide"
  12552. type="1"
  12553. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12554. size="1.14MB" >
  12555. </productMenu>
  12556. <productMenu id="connectGuide"
  12557. type="1"
  12558. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12559. size="1.12MB" >
  12560. </productMenu>
  12561. <productID id="5591"
  12562. />
  12563. <productGroupable type="0"
  12564. />
  12565. </product>
  12566. <product id="5R"
  12567. name="5R LITE"
  12568. series="5"
  12569. latestVersion="1.0.1"
  12570. show = "1" >
  12571. <productMenu id="protocol"
  12572. type="3" >
  12573. </productMenu>
  12574. <productMenu id="sip"
  12575. type="1" >
  12576. </productMenu>
  12577. <productMenu id="bluetoothIntercom"
  12578. type="1" >
  12579. </productMenu>
  12580. <productMenu id="phone"
  12581. type="1" >
  12582. </productMenu>
  12583. <productMenu id="fmradio"
  12584. type="1" >
  12585. </productMenu>
  12586. <productMenu id="deviceSetting"
  12587. type="1"
  12588. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12589. </productMenu>
  12590. <productMenu id="quickGuide"
  12591. type="0"
  12592. url=""
  12593. size="934KB" >
  12594. </productMenu>
  12595. <productMenu id="userGuide"
  12596. type="1"
  12597. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12598. size="1.14MB" >
  12599. </productMenu>
  12600. <productMenu id="connectGuide"
  12601. type="1"
  12602. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12603. size="1.12MB" >
  12604. </productMenu>
  12605. <productID id="5592"
  12606. />
  12607. <productGroupable type="0"
  12608. />
  12609. </product>
  12610. <product id="50RLE"
  12611. name="50R LE"
  12612. series="50"
  12613. latestVersion="1.1"
  12614. show = "0" >
  12615. <productMenu id="protocol"
  12616. type="2" >
  12617. </productMenu>
  12618. <productMenu id="alexa"
  12619. type="0" >
  12620. </productMenu>
  12621. <productMenu id="sip"
  12622. type="1" >
  12623. </productMenu>
  12624. <productMenu id="meshIntercom"
  12625. type="30" >
  12626. </productMenu>
  12627. <productMenu id="meshIntercom+"
  12628. type="3"
  12629. url="2" >
  12630. <productMenuType version="1.0.9"
  12631. type="2"
  12632. />
  12633. </productMenu>
  12634. <productMenu id="waveIntercom"
  12635. type="1" >
  12636. <productMenuType version="1.0.9"
  12637. type="0"
  12638. />
  12639. </productMenu>
  12640. <productMenu id="bluetoothIntercom"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="phone"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="music"
  12647. type="1" >
  12648. </productMenu>
  12649. <productMenu id="fmradio"
  12650. type="0" >
  12651. </productMenu>
  12652. <productMenu id="deviceSetting"
  12653. type="1"
  12654. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12655. <productMenuURL version="1.0.9"
  12656. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12657. />
  12658. </productMenu>
  12659. <productMenu id="quickGuide"
  12660. type="0"
  12661. url=""
  12662. size="344KB" >
  12663. </productMenu>
  12664. <productMenu id="userGuide"
  12665. type="0"
  12666. url=""
  12667. size="3.41MB" >
  12668. </productMenu>
  12669. <productMenu id="volume"
  12670. type="11" >
  12671. </productMenu>
  12672. <productMenu id="battery"
  12673. type="1" >
  12674. </productMenu>
  12675. <productID id="3223"
  12676. />
  12677. <productGroupable type="0"
  12678. />
  12679. </product>
  12680. <product id="5RLOUIS"
  12681. name="5R LOUIS EDITION"
  12682. series="5"
  12683. latestVersion="1.0"
  12684. show = "-1" >
  12685. <productMenu id="protocol"
  12686. type="3" >
  12687. </productMenu>
  12688. <productMenu id="sip"
  12689. type="1" >
  12690. </productMenu>
  12691. <productMenu id="bluetoothIntercom"
  12692. type="1" >
  12693. </productMenu>
  12694. <productMenu id="phone"
  12695. type="1" >
  12696. </productMenu>
  12697. <productMenu id="fmradio"
  12698. type="1" >
  12699. </productMenu>
  12700. <productMenu id="deviceSetting"
  12701. type="1"
  12702. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12703. </productMenu>
  12704. <productMenu id="quickGuide"
  12705. type="0"
  12706. url=""
  12707. size="934KB" >
  12708. </productMenu>
  12709. <productMenu id="userGuide"
  12710. type="0"
  12711. url=""
  12712. size="1.14MB" >
  12713. </productMenu>
  12714. <productID id="5597"
  12715. />
  12716. <productGroupable type="0"
  12717. />
  12718. </product>
  12719. <product id="5S"
  12720. name="Ridekont 5S"
  12721. series="5"
  12722. latestVersion="2.3"
  12723. show = "-1" >
  12724. <productMenu id="protocol"
  12725. type="3" >
  12726. </productMenu>
  12727. <productMenu id="sip"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="bluetoothIntercom"
  12731. type="1" >
  12732. </productMenu>
  12733. <productMenu id="phone"
  12734. type="1" >
  12735. </productMenu>
  12736. <productMenu id="fmradio"
  12737. type="0" >
  12738. </productMenu>
  12739. <productMenu id="deviceSetting"
  12740. type="1"
  12741. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12742. </productMenu>
  12743. <productMenu id="quickGuide"
  12744. type="0"
  12745. url=""
  12746. size="934KB" >
  12747. </productMenu>
  12748. <productMenu id="userGuide"
  12749. type="1"
  12750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12751. size="1.14MB" >
  12752. </productMenu>
  12753. <productID id="5589"
  12754. />
  12755. <productGroupable type="0"
  12756. />
  12757. </product>
  12758. <product id="5R"
  12759. name="Ridekont 5R"
  12760. series="5"
  12761. latestVersion="1.0"
  12762. show = "0" >
  12763. <productMenu id="protocol"
  12764. type="3" >
  12765. </productMenu>
  12766. <productMenu id="sip"
  12767. type="1" >
  12768. </productMenu>
  12769. <productMenu id="bluetoothIntercom"
  12770. type="1" >
  12771. </productMenu>
  12772. <productMenu id="phone"
  12773. type="1" >
  12774. </productMenu>
  12775. <productMenu id="fmradio"
  12776. type="1" >
  12777. </productMenu>
  12778. <productMenu id="deviceSetting"
  12779. type="1"
  12780. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12781. </productMenu>
  12782. <productMenu id="quickGuide"
  12783. type="1"
  12784. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12785. size="934KB" >
  12786. </productMenu>
  12787. <productMenu id="userGuide"
  12788. type="1"
  12789. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12790. size="1.14MB" >
  12791. </productMenu>
  12792. <productID id="5593"
  12793. />
  12794. <productGroupable type="0"
  12795. />
  12796. </product>
  12797. <product id="5R"
  12798. name="Ridekont 5R LITE"
  12799. series="5"
  12800. latestVersion="1.0"
  12801. show = "0" >
  12802. <productMenu id="protocol"
  12803. type="3" >
  12804. </productMenu>
  12805. <productMenu id="sip"
  12806. type="1" >
  12807. </productMenu>
  12808. <productMenu id="bluetoothIntercom"
  12809. type="1" >
  12810. </productMenu>
  12811. <productMenu id="phone"
  12812. type="1" >
  12813. </productMenu>
  12814. <productMenu id="fmradio"
  12815. type="1" >
  12816. </productMenu>
  12817. <productMenu id="deviceSetting"
  12818. type="1"
  12819. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12820. </productMenu>
  12821. <productMenu id="quickGuide"
  12822. type="0"
  12823. url=""
  12824. size="934KB" >
  12825. </productMenu>
  12826. <productMenu id="userGuide"
  12827. type="1"
  12828. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12829. size="1.14MB" >
  12830. </productMenu>
  12831. <productID id="5594"
  12832. />
  12833. <productGroupable type="0"
  12834. />
  12835. </product>
  12836. <product id="SA30"
  12837. name="SA30"
  12838. series="SA"
  12839. latestVersion="1.0.3"
  12840. latestVersionVoicePrompt="0.15"
  12841. show = "-1" >
  12842. <productMenu id="protocol"
  12843. type="2" >
  12844. </productMenu>
  12845. <productMenu id="ota"
  12846. type="2" >
  12847. <otaPackages>
  12848. <package
  12849. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12850. size="3144148"
  12851. />
  12852. </otaPackages>
  12853. </productMenu>
  12854. <productMenu id="meshIntercom"
  12855. type="30" >
  12856. </productMenu>
  12857. <productMenu id="meshIntercom+"
  12858. type="3"
  12859. url="2" >
  12860. </productMenu>
  12861. <productMenu id="phone"
  12862. type="1" >
  12863. </productMenu>
  12864. <productMenu id="music"
  12865. type="1" >
  12866. </productMenu>
  12867. <productMenu id="musicSharing"
  12868. type="0" >
  12869. </productMenu>
  12870. <productMenu id="deviceSetting"
  12871. type="1"
  12872. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12873. </productMenu>
  12874. <productMenu id="quickGuide"
  12875. type="0"
  12876. url=""
  12877. size="1.12MB" >
  12878. </productMenu>
  12879. <productMenu id="userGuide"
  12880. type="1"
  12881. url=""
  12882. size="2.0MB" >
  12883. </productMenu>
  12884. <productMenu id="videoGuide"
  12885. type="0"
  12886. url=""
  12887. size="3.41MB" >
  12888. </productMenu>
  12889. <productMenu id="volume"
  12890. type="12" >
  12891. </productMenu>
  12892. <productMenu id="battery"
  12893. type="1" >
  12894. </productMenu>
  12895. <productID id="6852"
  12896. />
  12897. <productGroupable type="0"
  12898. />
  12899. </product>
  12900. <product id="I30"
  12901. name="I30"
  12902. series="I"
  12903. latestVersion="1.0.3"
  12904. latestVersionVoicePrompt="0.2"
  12905. show = "-1" >
  12906. <productMenu id="protocol"
  12907. type="2" >
  12908. </productMenu>
  12909. <productMenu id="ota"
  12910. type="2" >
  12911. <otaPackages>
  12912. <package
  12913. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12914. size="3144148"
  12915. />
  12916. </otaPackages>
  12917. </productMenu>
  12918. <productMenu id="meshIntercom"
  12919. type="30" >
  12920. </productMenu>
  12921. <productMenu id="meshIntercom+"
  12922. type="3"
  12923. url="2" >
  12924. </productMenu>
  12925. <productMenu id="phone"
  12926. type="1" >
  12927. </productMenu>
  12928. <productMenu id="music"
  12929. type="1" >
  12930. </productMenu>
  12931. <productMenu id="musicSharing"
  12932. type="0" >
  12933. </productMenu>
  12934. <productMenu id="deviceSetting"
  12935. type="1"
  12936. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12937. </productMenu>
  12938. <productMenu id="quickGuide"
  12939. type="0"
  12940. url=""
  12941. size="1.12MB" >
  12942. </productMenu>
  12943. <productMenu id="userGuide"
  12944. type="1"
  12945. url=""
  12946. size="2.10MB" >
  12947. </productMenu>
  12948. <productMenu id="videoGuide"
  12949. type="0"
  12950. url=""
  12951. size="3.11MB" >
  12952. </productMenu>
  12953. <productMenu id="volume"
  12954. type="12" >
  12955. </productMenu>
  12956. <productMenu id="battery"
  12957. type="1" >
  12958. </productMenu>
  12959. <productID id="6853"
  12960. />
  12961. <productGroupable type="0"
  12962. />
  12963. </product>
  12964. <product id="LS2C30"
  12965. name="LS2-C30"
  12966. series="C"
  12967. latestVersion="1.0"
  12968. latestVersionVoicePrompt="0.13"
  12969. show = "-1" >
  12970. <productMenu id="protocol"
  12971. type="2" >
  12972. </productMenu>
  12973. <productMenu id="ota"
  12974. type="0" >
  12975. <otaPackages>
  12976. <package
  12977. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12978. size="3144148"
  12979. />
  12980. </otaPackages>
  12981. </productMenu>
  12982. <productMenu id="meshIntercom+"
  12983. type="3"
  12984. url="2" >
  12985. </productMenu>
  12986. <productMenu id="waveIntercom"
  12987. type="1" >
  12988. </productMenu>
  12989. <productMenu id="phone"
  12990. type="1" >
  12991. </productMenu>
  12992. <productMenu id="music"
  12993. type="1" >
  12994. </productMenu>
  12995. <productMenu id="musicSharing"
  12996. type="0" >
  12997. </productMenu>
  12998. <productMenu id="deviceSetting"
  12999. type="1"
  13000. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13001. </productMenu>
  13002. <productMenu id="quickGuide"
  13003. type="0"
  13004. url=""
  13005. size="1.17MB" >
  13006. </productMenu>
  13007. <productMenu id="userGuide"
  13008. type="1"
  13009. url=""
  13010. size="2.0MB" >
  13011. </productMenu>
  13012. <productMenu id="videoGuide"
  13013. type="0"
  13014. url=""
  13015. size="3.41MB" >
  13016. </productMenu>
  13017. <productMenu id="volume"
  13018. type="12" >
  13019. </productMenu>
  13020. <productMenu id="battery"
  13021. type="1" >
  13022. </productMenu>
  13023. <productID id="685E"
  13024. />
  13025. <productGroupable type="0"
  13026. />
  13027. </product>
  13028. <product id="C30EVO"
  13029. name="C30 EVO"
  13030. series="C"
  13031. latestVersion="1.0"
  13032. latestVersionVoicePrompt="0.13"
  13033. show = "-1" >
  13034. <productMenu id="protocol"
  13035. type="2" >
  13036. </productMenu>
  13037. <productMenu id="ota"
  13038. type="0" >
  13039. <otaPackages>
  13040. <package
  13041. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13042. size="3144148"
  13043. />
  13044. </otaPackages>
  13045. </productMenu>
  13046. <productMenu id="meshIntercom+"
  13047. type="3"
  13048. url="2" >
  13049. </productMenu>
  13050. <productMenu id="waveIntercom"
  13051. type="1" >
  13052. </productMenu>
  13053. <productMenu id="phone"
  13054. type="1" >
  13055. </productMenu>
  13056. <productMenu id="music"
  13057. type="1" >
  13058. </productMenu>
  13059. <productMenu id="musicSharing"
  13060. type="0" >
  13061. </productMenu>
  13062. <productMenu id="deviceSetting"
  13063. type="1"
  13064. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13065. </productMenu>
  13066. <productMenu id="quickGuide"
  13067. type="0"
  13068. url=""
  13069. size="1.17MB" >
  13070. </productMenu>
  13071. <productMenu id="userGuide"
  13072. type="1"
  13073. url=""
  13074. size="2.0MB" >
  13075. </productMenu>
  13076. <productMenu id="videoGuide"
  13077. type="0"
  13078. url=""
  13079. size="3.41MB" >
  13080. </productMenu>
  13081. <productMenu id="volume"
  13082. type="12" >
  13083. </productMenu>
  13084. <productMenu id="battery"
  13085. type="1" >
  13086. </productMenu>
  13087. <productID id="685B"
  13088. />
  13089. <productGroupable type="0"
  13090. />
  13091. </product>
  13092. <product id="C30"
  13093. name="SENA C30"
  13094. series="C"
  13095. latestVersion="1.2.4"
  13096. latestVersionVoicePrompt="0.13"
  13097. show = "1" >
  13098. <productMenu id="protocol"
  13099. type="2" >
  13100. </productMenu>
  13101. <productMenu id="alexa"
  13102. type="0" >
  13103. </productMenu>
  13104. <productMenu id="ota"
  13105. type="2" >
  13106. <otaPackages>
  13107. <package
  13108. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13109. size="3144148"
  13110. />
  13111. </otaPackages>
  13112. </productMenu>
  13113. <productMenu id="wa"
  13114. type="0" >
  13115. </productMenu>
  13116. <productMenu id="meshIntercom"
  13117. type="30" >
  13118. </productMenu>
  13119. <productMenu id="meshIntercom+"
  13120. type="3"
  13121. url="2" >
  13122. <productMenuType version="1.0.9"
  13123. type="2"
  13124. />
  13125. </productMenu>
  13126. <productMenu id="waveIntercom"
  13127. type="1" >
  13128. <productMenuType version="1.1.9"
  13129. type="0"
  13130. />
  13131. </productMenu>
  13132. <productMenu id="phone"
  13133. type="1" >
  13134. </productMenu>
  13135. <productMenu id="music"
  13136. type="1" >
  13137. </productMenu>
  13138. <productMenu id="musicSharing"
  13139. type="0" >
  13140. </productMenu>
  13141. <productMenu id="deviceSetting"
  13142. type="1"
  13143. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13144. <productMenuURL version="1.1.3"
  13145. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13146. />
  13147. <productMenuURL version="1.0.9"
  13148. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13149. />
  13150. </productMenu>
  13151. <productMenu id="quickGuide"
  13152. type="1"
  13153. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13154. size="1.12MB" >
  13155. </productMenu>
  13156. <productMenu id="userGuide"
  13157. type="0"
  13158. url=""
  13159. size="2.0MB" >
  13160. </productMenu>
  13161. <productMenu id="videoGuide"
  13162. type="0"
  13163. url=""
  13164. size="3.41MB" >
  13165. </productMenu>
  13166. <productMenu id="volume"
  13167. type="12" >
  13168. </productMenu>
  13169. <productMenu id="battery"
  13170. type="1" >
  13171. </productMenu>
  13172. <productID id="683A"
  13173. />
  13174. <productGroupable type="0"
  13175. />
  13176. </product>
  13177. <product id="C20"
  13178. name="C20"
  13179. series="C"
  13180. latestVersion="1.0"
  13181. show = "1" >
  13182. <productMenu id="protocol"
  13183. type="3" >
  13184. </productMenu>
  13185. <productMenu id="sip"
  13186. type="1" >
  13187. </productMenu>
  13188. <productMenu id="bluetoothIntercom"
  13189. type="1" >
  13190. </productMenu>
  13191. <productMenu id="phone"
  13192. type="1" >
  13193. </productMenu>
  13194. <productMenu id="deviceSetting"
  13195. type="1"
  13196. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13197. </productMenu>
  13198. <productMenu id="quickGuide"
  13199. type="1"
  13200. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13201. size="934KB" >
  13202. </productMenu>
  13203. <productMenu id="userGuide"
  13204. type="1"
  13205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13206. size="1.14MB" >
  13207. </productMenu>
  13208. <productID id="3701"
  13209. />
  13210. <productGroupable type="0"
  13211. />
  13212. </product>
  13213. <product id="C10"
  13214. name="C10"
  13215. series="C"
  13216. latestVersion="1.4.4"
  13217. show = "1" >
  13218. <productMenu id="protocol"
  13219. type="3" >
  13220. </productMenu>
  13221. <productMenu id="sip"
  13222. type="1" >
  13223. </productMenu>
  13224. <productMenu id="bluetoothIntercom"
  13225. type="1" >
  13226. </productMenu>
  13227. <productMenu id="phone"
  13228. type="1" >
  13229. </productMenu>
  13230. <productMenu id="fmradio"
  13231. type="0" >
  13232. </productMenu>
  13233. <productMenu id="deviceSetting"
  13234. type="1"
  13235. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13236. </productMenu>
  13237. <productMenu id="userGuide"
  13238. type="1"
  13239. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13240. size="1.14MB" >
  13241. </productMenu>
  13242. <productID id="5595"
  13243. />
  13244. <productGroupable type="0"
  13245. />
  13246. </product>
  13247. <product id="CA1"
  13248. name="CA1"
  13249. series="C"
  13250. latestVersion="0.2"
  13251. show = "-1" >
  13252. <productMenu id="protocol"
  13253. type="2" >
  13254. </productMenu>
  13255. <productMenu id="ota"
  13256. type="2" >
  13257. <otaPackages>
  13258. <package
  13259. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13260. size="3144148"
  13261. />
  13262. </otaPackages>
  13263. </productMenu>
  13264. <productMenu id="phone"
  13265. type="1" >
  13266. </productMenu>
  13267. <productMenu id="music"
  13268. type="1" >
  13269. </productMenu>
  13270. <productMenu id="musicSharing"
  13271. type="0" >
  13272. </productMenu>
  13273. <productMenu id="deviceSetting"
  13274. type="1"
  13275. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13276. </productMenu>
  13277. <productMenu id="quickGuide"
  13278. type="1"
  13279. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13280. size="1.12MB" >
  13281. </productMenu>
  13282. <productMenu id="userGuide"
  13283. type="0"
  13284. url=""
  13285. size="2.0MB" >
  13286. </productMenu>
  13287. <productMenu id="videoGuide"
  13288. type="1"
  13289. url=""
  13290. size="3.41MB" >
  13291. </productMenu>
  13292. <productMenu id="volume"
  13293. type="12" >
  13294. </productMenu>
  13295. <productMenu id="battery"
  13296. type="1" >
  13297. </productMenu>
  13298. <productID id="5F01"
  13299. />
  13300. <productGroupable type="0"
  13301. />
  13302. </product>
  13303. <product id="J30"
  13304. name="J30"
  13305. series="J"
  13306. latestVersion="1.2.4"
  13307. latestVersionVoicePrompt="0.14"
  13308. show = "0" >
  13309. <productMenu id="protocol"
  13310. type="2" >
  13311. </productMenu>
  13312. <productMenu id="alexa"
  13313. type="0" >
  13314. </productMenu>
  13315. <productMenu id="ota"
  13316. type="2" >
  13317. <otaPackages>
  13318. <package
  13319. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13320. size="3144148"
  13321. />
  13322. </otaPackages>
  13323. </productMenu>
  13324. <productMenu id="wa"
  13325. type="0" >
  13326. </productMenu>
  13327. <productMenu id="meshIntercom"
  13328. type="30" >
  13329. </productMenu>
  13330. <productMenu id="meshIntercom+"
  13331. type="3"
  13332. url="2" >
  13333. <productMenuType version="1.0.9"
  13334. type="2"
  13335. />
  13336. </productMenu>
  13337. <productMenu id="waveIntercom"
  13338. type="1" >
  13339. <productMenuType version="1.1.9"
  13340. type="0"
  13341. />
  13342. </productMenu>
  13343. <productMenu id="phone"
  13344. type="1" >
  13345. </productMenu>
  13346. <productMenu id="music"
  13347. type="1" >
  13348. </productMenu>
  13349. <productMenu id="musicSharing"
  13350. type="0" >
  13351. </productMenu>
  13352. <productMenu id="deviceSetting"
  13353. type="1"
  13354. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13355. <productMenuURL version="1.0.9"
  13356. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13357. />
  13358. </productMenu>
  13359. <productMenu id="quickGuide"
  13360. type="0"
  13361. url=""
  13362. size="1.12MB" >
  13363. </productMenu>
  13364. <productMenu id="userGuide"
  13365. type="1"
  13366. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13367. size="2.0MB" >
  13368. </productMenu>
  13369. <productMenu id="videoGuide"
  13370. type="0"
  13371. url=""
  13372. size="3.41MB" >
  13373. </productMenu>
  13374. <productMenu id="volume"
  13375. type="12" >
  13376. </productMenu>
  13377. <productMenu id="battery"
  13378. type="1" >
  13379. </productMenu>
  13380. <productID id="6848"
  13381. />
  13382. <productGroupable type="0"
  13383. />
  13384. </product>
  13385. <product id="J10"
  13386. name="J10"
  13387. series="5"
  13388. latestVersion="1.1.4"
  13389. show = "0" >
  13390. <productMenu id="protocol"
  13391. type="3" >
  13392. </productMenu>
  13393. <productMenu id="sip"
  13394. type="1" >
  13395. </productMenu>
  13396. <productMenu id="bluetoothIntercom"
  13397. type="1" >
  13398. </productMenu>
  13399. <productMenu id="phone"
  13400. type="1" >
  13401. </productMenu>
  13402. <productMenu id="fmradio"
  13403. type="0" >
  13404. </productMenu>
  13405. <productMenu id="deviceSetting"
  13406. type="1"
  13407. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13408. </productMenu>
  13409. <productMenu id="userGuide"
  13410. type="1"
  13411. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13412. size="1.14MB" >
  13413. </productMenu>
  13414. <productID id="5598"
  13415. />
  13416. <productGroupable type="0"
  13417. />
  13418. </product>
  13419. <product id="B20"
  13420. name="B20"
  13421. series="B"
  13422. latestVersion="1.1.4"
  13423. latestVersionVoicePrompt="0.14"
  13424. show = "0" >
  13425. <productMenu id="protocol"
  13426. type="2" >
  13427. </productMenu>
  13428. <productMenu id="alexa"
  13429. type="0" >
  13430. </productMenu>
  13431. <productMenu id="ota"
  13432. type="2" >
  13433. <otaPackages>
  13434. <package
  13435. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13436. size="3144148"
  13437. />
  13438. </otaPackages>
  13439. </productMenu>
  13440. <productMenu id="wa"
  13441. type="0" >
  13442. </productMenu>
  13443. <productMenu id="meshIntercom"
  13444. type="30" >
  13445. </productMenu>
  13446. <productMenu id="phone"
  13447. type="1" >
  13448. </productMenu>
  13449. <productMenu id="music"
  13450. type="1" >
  13451. </productMenu>
  13452. <productMenu id="musicSharing"
  13453. type="0" >
  13454. </productMenu>
  13455. <productMenu id="deviceSetting"
  13456. type="1"
  13457. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13458. <productMenuURL version="1.0.9"
  13459. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13460. />
  13461. </productMenu>
  13462. <productMenu id="quickGuide"
  13463. type="0"
  13464. url=""
  13465. size="1.12MB" >
  13466. </productMenu>
  13467. <productMenu id="userGuide"
  13468. type="1"
  13469. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13470. size="2.0MB" >
  13471. </productMenu>
  13472. <productMenu id="videoGuide"
  13473. type="0"
  13474. url=""
  13475. size="3.41MB" >
  13476. </productMenu>
  13477. <productMenu id="volume"
  13478. type="12" >
  13479. </productMenu>
  13480. <productMenu id="battery"
  13481. type="1" >
  13482. </productMenu>
  13483. <productID id="6847"
  13484. />
  13485. <productGroupable type="0"
  13486. />
  13487. </product>
  13488. <product id="B10"
  13489. name="B10"
  13490. series="5"
  13491. latestVersion="1.2.4"
  13492. show = "0" >
  13493. <productMenu id="protocol"
  13494. type="3" >
  13495. </productMenu>
  13496. <productMenu id="sip"
  13497. type="1" >
  13498. </productMenu>
  13499. <productMenu id="bluetoothIntercom"
  13500. type="1" >
  13501. </productMenu>
  13502. <productMenu id="phone"
  13503. type="1" >
  13504. </productMenu>
  13505. <productMenu id="fmradio"
  13506. type="0" >
  13507. </productMenu>
  13508. <productMenu id="deviceSetting"
  13509. type="1"
  13510. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13511. </productMenu>
  13512. <productMenu id="userGuide"
  13513. type="1"
  13514. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13515. size="1.14MB" >
  13516. </productMenu>
  13517. <productID id="5596"
  13518. />
  13519. <productGroupable type="0"
  13520. />
  13521. </product>
  13522. <product id="E30"
  13523. name="E30"
  13524. series="E"
  13525. latestVersion="1.1.4"
  13526. latestVersionVoicePrompt="0.14"
  13527. show = "0" >
  13528. <productMenu id="protocol"
  13529. type="2" >
  13530. </productMenu>
  13531. <productMenu id="alexa"
  13532. type="0" >
  13533. </productMenu>
  13534. <productMenu id="ota"
  13535. type="2" >
  13536. <otaPackages>
  13537. <package
  13538. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13539. size="3144148"
  13540. />
  13541. </otaPackages>
  13542. </productMenu>
  13543. <productMenu id="wa"
  13544. type="0" >
  13545. </productMenu>
  13546. <productMenu id="meshIntercom"
  13547. type="30" >
  13548. </productMenu>
  13549. <productMenu id="meshIntercom+"
  13550. type="3"
  13551. url="2" >
  13552. </productMenu>
  13553. <productMenu id="waveIntercom"
  13554. type="1" >
  13555. <productMenuType version="1.0.9"
  13556. type="0"
  13557. />
  13558. </productMenu>
  13559. <productMenu id="phone"
  13560. type="1" >
  13561. </productMenu>
  13562. <productMenu id="music"
  13563. type="1" >
  13564. </productMenu>
  13565. <productMenu id="musicSharing"
  13566. type="0" >
  13567. </productMenu>
  13568. <productMenu id="deviceSetting"
  13569. type="1"
  13570. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13571. </productMenu>
  13572. <productMenu id="quickGuide"
  13573. type="0"
  13574. url=""
  13575. size="1.12MB" >
  13576. </productMenu>
  13577. <productMenu id="userGuide"
  13578. type="1"
  13579. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13580. size="2.0MB" >
  13581. </productMenu>
  13582. <productMenu id="videoGuide"
  13583. type="0"
  13584. url=""
  13585. size="3.41MB" >
  13586. </productMenu>
  13587. <productMenu id="volume"
  13588. type="12" >
  13589. </productMenu>
  13590. <productMenu id="battery"
  13591. type="1" >
  13592. </productMenu>
  13593. <productID id="6846"
  13594. />
  13595. <productGroupable type="0"
  13596. />
  13597. </product>
  13598. <product id="ACSRAM"
  13599. name="ACS-RAM"
  13600. series="ACS"
  13601. latestVersion="1.0.5"
  13602. show = "1" >
  13603. <productMenu id="protocol"
  13604. type="3" >
  13605. </productMenu>
  13606. <productMenu id="sip"
  13607. type="1" >
  13608. </productMenu>
  13609. <productMenu id="bluetoothIntercom"
  13610. type="1" >
  13611. </productMenu>
  13612. <productMenu id="deviceSetting"
  13613. type="1"
  13614. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13615. <productMenuURL version="1.0.9"
  13616. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13617. />
  13618. </productMenu>
  13619. <productMenu id="quickGuide"
  13620. type="1"
  13621. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13622. size="344KB" >
  13623. </productMenu>
  13624. <productMenu id="userGuide"
  13625. type="1"
  13626. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13627. size="1.14MB" >
  13628. </productMenu>
  13629. <productMenu id="connectGuide"
  13630. type="1"
  13631. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13632. size="1.12MB" >
  13633. </productMenu>
  13634. <productID id="3400"
  13635. />
  13636. <productGroupable type="0"
  13637. />
  13638. </product>
  13639. <product id="ACS10"
  13640. name="ACS10"
  13641. series="ACS"
  13642. latestVersion="1.0.2"
  13643. show = "1" >
  13644. <productMenu id="protocol"
  13645. type="0">
  13646. </productMenu>
  13647. <productMenu id="sip"
  13648. type="1" >
  13649. </productMenu>
  13650. <productMenu id="bluetoothIntercom"
  13651. type="1" >
  13652. </productMenu>
  13653. <productMenu id="phone"
  13654. type="2" >
  13655. </productMenu>
  13656. <productMenu id="deviceSetting"
  13657. type="1"
  13658. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13659. </productMenu>
  13660. <productMenu id="quickGuide"
  13661. type="1"
  13662. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13663. size="970KB" >
  13664. </productMenu>
  13665. <productMenu id="userGuide"
  13666. type="1"
  13667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13668. size="1.26MB" >
  13669. </productMenu>
  13670. <productMenu id="connectGuide"
  13671. type="1"
  13672. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13673. size="1.12MB" >
  13674. </productMenu>
  13675. <productID id="3300"
  13676. />
  13677. <productGroupable type="0"
  13678. />
  13679. </product>
  13680. <product id="DWO7ProMesh"
  13681. name="DWO 7 Pro Mesh"
  13682. series="50"
  13683. latestVersion="1.1"
  13684. latestVersionVoicePrompt="0.9"
  13685. show = "0" >
  13686. <productMenu id="protocol"
  13687. type="2" >
  13688. </productMenu>
  13689. <productMenu id="alexa"
  13690. type="0" >
  13691. </productMenu>
  13692. <productMenu id="ota"
  13693. type="2" >
  13694. <otaPackages>
  13695. <package
  13696. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13697. size="2945812"
  13698. />
  13699. </otaPackages>
  13700. </productMenu>
  13701. <productMenu id="wa"
  13702. type="0" >
  13703. </productMenu>
  13704. <productMenu id="meshIntercom"
  13705. type="20" >
  13706. </productMenu>
  13707. <productMenu id="meshIntercom+"
  13708. type="3"
  13709. url="2" >
  13710. <productMenuType version="1.0.9"
  13711. type="2"
  13712. />
  13713. <productMenuURL version="2.1.1"
  13714. url="0"
  13715. />
  13716. </productMenu>
  13717. <productMenu id="waveIntercom"
  13718. type="1" >
  13719. <productMenuType version="1.0.9"
  13720. type="0"
  13721. />
  13722. </productMenu>
  13723. <productMenu id="phone"
  13724. type="1" >
  13725. </productMenu>
  13726. <productMenu id="music"
  13727. type="1" >
  13728. </productMenu>
  13729. <productMenu id="fmradio"
  13730. type="1" >
  13731. </productMenu>
  13732. <productMenu id="musicSharing"
  13733. type="0" >
  13734. </productMenu>
  13735. <productMenu id="deviceSetting"
  13736. type="1"
  13737. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13738. <productMenuURL version="1.0.9"
  13739. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13740. />
  13741. </productMenu>
  13742. <productMenu id="quickGuide"
  13743. type="1"
  13744. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13745. size="1.12MB" >
  13746. </productMenu>
  13747. <productMenu id="userGuide"
  13748. type="1"
  13749. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13750. size="2.0MB" >
  13751. </productMenu>
  13752. <productMenu id="volume"
  13753. type="12" >
  13754. </productMenu>
  13755. <productMenu id="battery"
  13756. type="1" >
  13757. </productMenu>
  13758. <productID id="6806"
  13759. />
  13760. <productGroupable type="0"
  13761. />
  13762. </product>
  13763. <product id="ERA1X"
  13764. name="ERA 1 X"
  13765. series="UCOM"
  13766. latestVersion="0.2.1"
  13767. latestVersionMesh="0.19"
  13768. latestVersionVoicePrompt="1.2"
  13769. show = "-1" >
  13770. <productMenu id="protocol"
  13771. type="2" >
  13772. </productMenu>
  13773. <productMenu id="ota"
  13774. type="2" >
  13775. <otaLanguages>
  13776. <otaLanguage
  13777. id="0"
  13778. name="English"
  13779. package="0"
  13780. />
  13781. <otaLanguage
  13782. id="0"
  13783. name="French"
  13784. package="1"
  13785. />
  13786. <otaLanguage
  13787. id="0"
  13788. name="Spanish"
  13789. package="2"
  13790. />
  13791. <otaLanguage
  13792. id="0"
  13793. name="Italian"
  13794. package="3"
  13795. />
  13796. <otaLanguage
  13797. id="0"
  13798. name="German"
  13799. package="4"
  13800. />
  13801. <otaLanguage
  13802. id="0"
  13803. name="Dutch"
  13804. package="5"
  13805. />
  13806. <otaLanguage
  13807. id="0"
  13808. name="Russian"
  13809. package="6"
  13810. />
  13811. <otaLanguage
  13812. id="0"
  13813. name="Chinese"
  13814. package="7"
  13815. />
  13816. <otaLanguage
  13817. id="0"
  13818. name="Korean"
  13819. package="8"
  13820. />
  13821. <otaLanguage
  13822. id="0"
  13823. name="Japanese"
  13824. package="9"
  13825. />
  13826. <otaLanguage
  13827. id="0"
  13828. name="Finnish"
  13829. package="10"
  13830. />
  13831. <otaLanguage
  13832. id="0"
  13833. name="Polish"
  13834. package="11"
  13835. />
  13836. <otaLanguage
  13837. id="0"
  13838. name="Czech"
  13839. package="12"
  13840. />
  13841. <otaLanguage
  13842. id="0"
  13843. name="Danish"
  13844. package="13"
  13845. />
  13846. <otaLanguage
  13847. id="0"
  13848. name="Norwegian"
  13849. package="14"
  13850. />
  13851. <otaLanguage
  13852. id="0"
  13853. name="Swedish"
  13854. package="15"
  13855. />
  13856. <otaLanguage
  13857. id="0"
  13858. name="Turkish"
  13859. package="16"
  13860. />
  13861. <otaLanguage
  13862. id="0"
  13863. name="Hungarian"
  13864. package="17"
  13865. />
  13866. <otaLanguage
  13867. id="0"
  13868. name="Portuguese"
  13869. package="18"
  13870. />
  13871. <otaLanguage
  13872. id="0"
  13873. name="Hebrew"
  13874. package="19"
  13875. />
  13876. <otaLanguage
  13877. id="0"
  13878. name="Greek"
  13879. package="20"
  13880. />
  13881. </otaLanguages>
  13882. <otaPackages>
  13883. <package
  13884. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13885. size="5183988"
  13886. />
  13887. <package
  13888. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13889. size="5183988"
  13890. />
  13891. <package
  13892. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13893. size="5183988"
  13894. />
  13895. <package
  13896. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13897. size="5183988"
  13898. />
  13899. <package
  13900. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13901. size="5183988"
  13902. />
  13903. <package
  13904. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13905. size="5183988"
  13906. />
  13907. <package
  13908. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13909. size="5183988"
  13910. />
  13911. <package
  13912. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13913. size="5183988"
  13914. />
  13915. <package
  13916. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13917. size="5183988"
  13918. />
  13919. <package
  13920. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13921. size="5183988"
  13922. />
  13923. <package
  13924. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13925. size="5183988"
  13926. />
  13927. <package
  13928. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13929. size="5183988"
  13930. />
  13931. <package
  13932. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13933. size="5183988"
  13934. />
  13935. <package
  13936. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13937. size="5183988"
  13938. />
  13939. <package
  13940. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13941. size="5183988"
  13942. />
  13943. <package
  13944. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13945. size="5183988"
  13946. />
  13947. <package
  13948. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13949. size="5183988"
  13950. />
  13951. <package
  13952. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13953. size="5183988"
  13954. />
  13955. <package
  13956. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13957. size="5183988"
  13958. />
  13959. <package
  13960. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13961. size="5183988"
  13962. />
  13963. <package
  13964. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13965. size="5183988"
  13966. />
  13967. </otaPackages>
  13968. </productMenu>
  13969. <productMenu id="wa"
  13970. type="0" >
  13971. </productMenu>
  13972. <productMenu id="sip"
  13973. type="1" >
  13974. </productMenu>
  13975. <productMenu id="led"
  13976. type="0" >
  13977. </productMenu>
  13978. <productMenu id="illusion"
  13979. type="1" >
  13980. </productMenu>
  13981. <productMenu id="meshIntercom"
  13982. type="30" >
  13983. </productMenu>
  13984. <productMenu id="meshIntercom+"
  13985. type="3"
  13986. url="2" >
  13987. </productMenu>
  13988. <productMenu id="waveIntercom"
  13989. type="0" >
  13990. </productMenu>
  13991. <productMenu id="bluetoothIntercom"
  13992. type="1" >
  13993. </productMenu>
  13994. <productMenu id="bluetoothIntercomGrouping"
  13995. type="0" >
  13996. </productMenu>
  13997. <productMenu id="fmradio"
  13998. type="1"
  13999. url="1" >
  14000. </productMenu>
  14001. <productMenu id="phone"
  14002. type="1" >
  14003. </productMenu>
  14004. <productMenu id="music"
  14005. type="1" >
  14006. </productMenu>
  14007. <productMenu id="musicSharing"
  14008. type="0" >
  14009. </productMenu>
  14010. <productMenu id="deviceSetting"
  14011. type="1"
  14012. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14013. </productMenu>
  14014. <productMenu id="quickGuide"
  14015. type="0"
  14016. url=""
  14017. size="1.12MB" >
  14018. </productMenu>
  14019. <productMenu id="userGuide"
  14020. type="1"
  14021. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14022. size="2.0MB" >
  14023. </productMenu>
  14024. <productMenu id="videoGuide"
  14025. type="0"
  14026. url=""
  14027. size="3.41MB" >
  14028. </productMenu>
  14029. <productMenu id="volume"
  14030. type="16" >
  14031. </productMenu>
  14032. <productMenu id="soundMode"
  14033. type="1" >
  14034. </productMenu>
  14035. <productMenu id="battery"
  14036. type="1" >
  14037. </productMenu>
  14038. <productID id="6A83"
  14039. />
  14040. <productGroupable type="0"
  14041. />
  14042. </product>
  14043. <product id="MeshStation"
  14044. name="Mesh Station"
  14045. series="50"
  14046. latestVersion="0.9"
  14047. show = "-1" >
  14048. <productMenu id="protocol"
  14049. type="2" >
  14050. </productMenu>
  14051. <productMenu id="meshIntercom"
  14052. type="20"
  14053. url="99" >
  14054. </productMenu>
  14055. <productID id="3161"
  14056. />
  14057. <productGroupable type="0"
  14058. />
  14059. </product>
  14060. </products>
  14061. </sna>