snm.xml 466 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260084" 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="https://www.sena.com/subscribe/"
  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="https://www.sena.com/support"
  22. />
  23. <forum url="https://community.sena.com/hc/en-us"
  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="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="C"
  109. name="C Series"
  110. show="1"
  111. />
  112. <!--
  113. <series id="smh"
  114. name="SMH"
  115. />
  116. <series id="cavalry"
  117. name="CAVALRY"
  118. show="0"
  119. />
  120. -->
  121. </serieses>
  122. <products>
  123. <product id="60SPRO"
  124. name="60S PRO"
  125. series="60"
  126. latestVersion="0.1"
  127. latestVersionMesh="0.19"
  128. latestVersionVoicePrompt="1.2"
  129. show = "-1" >
  130. <productMenu id="protocol"
  131. type="2" >
  132. </productMenu>
  133. <productMenu id="ota"
  134. type="0" >
  135. <otaLanguages>
  136. <otaLanguage
  137. id="0"
  138. name="English"
  139. package="0"
  140. />
  141. <otaLanguage
  142. id="0"
  143. name="French"
  144. package="1"
  145. />
  146. <otaLanguage
  147. id="0"
  148. name="Spanish"
  149. package="2"
  150. />
  151. <otaLanguage
  152. id="0"
  153. name="Italian"
  154. package="3"
  155. />
  156. <otaLanguage
  157. id="0"
  158. name="German"
  159. package="4"
  160. />
  161. <otaLanguage
  162. id="0"
  163. name="Dutch"
  164. package="5"
  165. />
  166. <otaLanguage
  167. id="0"
  168. name="Russian"
  169. package="6"
  170. />
  171. <otaLanguage
  172. id="0"
  173. name="Chinese"
  174. package="7"
  175. />
  176. <otaLanguage
  177. id="0"
  178. name="Korean"
  179. package="8"
  180. />
  181. <otaLanguage
  182. id="0"
  183. name="Japanese"
  184. package="9"
  185. />
  186. <otaLanguage
  187. id="0"
  188. name="Finnish"
  189. package="10"
  190. />
  191. <otaLanguage
  192. id="0"
  193. name="Polish"
  194. package="11"
  195. />
  196. </otaLanguages>
  197. <otaPackages>
  198. <package
  199. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  200. size="5183988"
  201. />
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  244. size="5183988"
  245. />
  246. </otaPackages>
  247. </productMenu>
  248. <productMenu id="sip"
  249. type="1" >
  250. </productMenu>
  251. <productMenu id="illusion"
  252. type="1" >
  253. </productMenu>
  254. <productMenu id="meshIntercom"
  255. type="30" >
  256. </productMenu>
  257. <productMenu id="meshIntercom+"
  258. type="3"
  259. url="2" >
  260. </productMenu>
  261. <productMenu id="waveIntercom"
  262. type="1" >
  263. </productMenu>
  264. <productMenu id="bluetoothIntercom"
  265. type="1"
  266. url="2" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercomGrouping"
  269. type="0" >
  270. </productMenu>
  271. <productMenu id="fmradio"
  272. type="1"
  273. url="1" >
  274. </productMenu>
  275. <productMenu id="phone"
  276. type="1" >
  277. </productMenu>
  278. <productMenu id="music"
  279. type="1" >
  280. </productMenu>
  281. <productMenu id="musicSharing"
  282. type="0" >
  283. </productMenu>
  284. <productMenu id="deviceSetting"
  285. type="1"
  286. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  287. </productMenu>
  288. <productMenu id="quickGuide"
  289. type="0"
  290. url=""
  291. size="1.12MB" >
  292. </productMenu>
  293. <productMenu id="userGuide"
  294. type="1"
  295. url=""
  296. size="2.0MB" >
  297. </productMenu>
  298. <productMenu id="videoGuide"
  299. type="0"
  300. url=""
  301. size="3.41MB" >
  302. </productMenu>
  303. <productMenu id="connectGuide"
  304. type="0"
  305. url=""
  306. size="1.12MB" >
  307. </productMenu>
  308. <productMenu id="volume"
  309. type="16" >
  310. </productMenu>
  311. <productMenu id="soundMode"
  312. type="1" >
  313. </productMenu>
  314. <productMenu id="battery"
  315. type="1" >
  316. </productMenu>
  317. <productID id="6A1A"
  318. />
  319. <productGroupable type="0"
  320. />
  321. </product>
  322. <product id="60SEVO"
  323. name="60S EVO"
  324. series="60"
  325. latestVersion="1.0.2"
  326. latestVersionMesh="0.19"
  327. latestVersionVoicePrompt="1.7"
  328. show = "-1" >
  329. <productMenu id="protocol"
  330. type="2" >
  331. </productMenu>
  332. <productMenu id="warranty"
  333. type="1" >
  334. </productMenu>
  335. <productMenu id="serialNumber"
  336. type="1" >
  337. </productMenu>
  338. <productMenu id="ota"
  339. type="2" >
  340. <otaLanguages>
  341. <otaLanguage
  342. id="0"
  343. name="English"
  344. package="0"
  345. />
  346. <otaLanguage
  347. id="0"
  348. name="French"
  349. package="1"
  350. />
  351. <otaLanguage
  352. id="0"
  353. name="Spanish"
  354. package="2"
  355. />
  356. <otaLanguage
  357. id="0"
  358. name="Italian"
  359. package="3"
  360. />
  361. <otaLanguage
  362. id="0"
  363. name="German"
  364. package="4"
  365. />
  366. <otaLanguage
  367. id="0"
  368. name="Dutch"
  369. package="5"
  370. />
  371. <otaLanguage
  372. id="0"
  373. name="Russian"
  374. package="6"
  375. />
  376. <otaLanguage
  377. id="0"
  378. name="Chinese"
  379. package="7"
  380. />
  381. <otaLanguage
  382. id="0"
  383. name="Korean"
  384. package="8"
  385. />
  386. <otaLanguage
  387. id="0"
  388. name="Japanese"
  389. package="9"
  390. />
  391. <otaLanguage
  392. id="0"
  393. name="Finnish"
  394. package="10"
  395. />
  396. <otaLanguage
  397. id="0"
  398. name="Polish"
  399. package="11"
  400. />
  401. </otaLanguages>
  402. <otaPackages>
  403. <package
  404. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  449. size="5183988"
  450. />
  451. </otaPackages>
  452. </productMenu>
  453. <productMenu id="sip"
  454. type="1" >
  455. </productMenu>
  456. <productMenu id="illusion"
  457. type="1" >
  458. </productMenu>
  459. <productMenu id="meshIntercom"
  460. type="30" >
  461. </productMenu>
  462. <productMenu id="meshIntercom+"
  463. type="3"
  464. url="2" >
  465. </productMenu>
  466. <productMenu id="waveIntercom"
  467. type="1" >
  468. </productMenu>
  469. <productMenu id="bluetoothIntercom"
  470. type="1"
  471. url="2" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercomGrouping"
  474. type="0" >
  475. </productMenu>
  476. <productMenu id="fmradio"
  477. type="1"
  478. url="1" >
  479. </productMenu>
  480. <productMenu id="phone"
  481. type="1" >
  482. </productMenu>
  483. <productMenu id="music"
  484. type="1" >
  485. </productMenu>
  486. <productMenu id="musicSharing"
  487. type="0" >
  488. </productMenu>
  489. <productMenu id="deviceSetting"
  490. type="1"
  491. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  492. </productMenu>
  493. <productMenu id="quickGuide"
  494. type="0"
  495. url=""
  496. size="1.12MB" >
  497. </productMenu>
  498. <productMenu id="userGuide"
  499. type="1"
  500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  501. size="2.0MB" >
  502. </productMenu>
  503. <productMenu id="videoGuide"
  504. type="0"
  505. url=""
  506. size="3.41MB" >
  507. </productMenu>
  508. <productMenu id="connectGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="volume"
  514. type="16" >
  515. </productMenu>
  516. <productMenu id="volume+"
  517. type="2"
  518. url="0x6004" >
  519. </productMenu>
  520. <productMenu id="soundMode"
  521. type="1" >
  522. </productMenu>
  523. <productMenu id="appearance"
  524. type="1"
  525. url="1|white,silver,black,glossy_black" >
  526. </productMenu>
  527. <productMenu id="battery"
  528. type="1" >
  529. </productMenu>
  530. <productID id="6A15"
  531. />
  532. <productGroupable type="0"
  533. />
  534. </product>
  535. <product id="60S"
  536. name="60S"
  537. series="60"
  538. latestVersion="1.2.8"
  539. latestVersionMesh="1.2"
  540. latestVersionVoicePrompt="1.5"
  541. show = "1" >
  542. <productMenu id="protocol"
  543. type="2" >
  544. </productMenu>
  545. <productMenu id="ota"
  546. type="2" >
  547. <otaLanguages>
  548. <otaLanguage
  549. id="0"
  550. name="English"
  551. package="0"
  552. />
  553. <otaLanguage
  554. id="0"
  555. name="French"
  556. package="1"
  557. />
  558. <otaLanguage
  559. id="0"
  560. name="Spanish"
  561. package="2"
  562. />
  563. <otaLanguage
  564. id="0"
  565. name="Italian"
  566. package="3"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="German"
  571. package="4"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Dutch"
  576. package="5"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Russian"
  581. package="6"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="Chinese"
  586. package="7"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Korean"
  591. package="8"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Japanese"
  596. package="9"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Finnish"
  601. package="10"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Polish"
  606. package="11"
  607. />
  608. </otaLanguages>
  609. <otaPackages>
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  656. size="5183988"
  657. />
  658. </otaPackages>
  659. </productMenu>
  660. <productMenu id="sip"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="illusion"
  664. type="1" >
  665. </productMenu>
  666. <productMenu id="meshIntercom"
  667. type="30" >
  668. </productMenu>
  669. <productMenu id="meshIntercom+"
  670. type="3"
  671. url="2" >
  672. </productMenu>
  673. <productMenu id="waveIntercom"
  674. type="1" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercom"
  677. type="1"
  678. url="2" >
  679. </productMenu>
  680. <productMenu id="bluetoothIntercomGrouping"
  681. type="0" >
  682. </productMenu>
  683. <productMenu id="fmradio"
  684. type="1"
  685. url="1" >
  686. </productMenu>
  687. <productMenu id="phone"
  688. type="1" >
  689. </productMenu>
  690. <productMenu id="music"
  691. type="1" >
  692. </productMenu>
  693. <productMenu id="musicSharing"
  694. type="0" >
  695. </productMenu>
  696. <productMenu id="deviceSetting"
  697. type="1"
  698. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  699. <productMenuURL version="1.2.6"
  700. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  701. />
  702. <productMenuURL version="1.2.3"
  703. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  704. />
  705. </productMenu>
  706. <productMenu id="quickGuide"
  707. type="0"
  708. url=""
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="userGuide"
  712. type="1"
  713. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  714. size="2.0MB" >
  715. </productMenu>
  716. <productMenu id="videoGuide"
  717. type="0"
  718. url=""
  719. size="3.41MB" >
  720. </productMenu>
  721. <productMenu id="connectGuide"
  722. type="1"
  723. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  724. size="1.12MB" >
  725. </productMenu>
  726. <productMenu id="volume"
  727. type="16" >
  728. </productMenu>
  729. <productMenu id="volume+"
  730. type="2"
  731. url="0x6004" >
  732. <productMenuURL version="1.2.3"
  733. url="0x6004"
  734. />
  735. </productMenu>
  736. <productMenu id="soundMode"
  737. type="0" >
  738. </productMenu>
  739. <productMenu id="appearance"
  740. type="1"
  741. url="2|white,silver,chrome,black" >
  742. </productMenu>
  743. <productMenu id="battery"
  744. type="1" >
  745. </productMenu>
  746. <productID id="6A0D"
  747. />
  748. <productGroupable type="0"
  749. />
  750. </product>
  751. <product id="60S"
  752. name="60S"
  753. series="60"
  754. latestVersion="1.2.8"
  755. latestVersionMesh="1.2"
  756. latestVersionVoicePrompt="1.5"
  757. show = "-1" >
  758. <productMenu id="protocol"
  759. type="2" >
  760. </productMenu>
  761. <productMenu id="ota"
  762. type="2" >
  763. <otaLanguages>
  764. <otaLanguage
  765. id="0"
  766. name="English"
  767. package="0"
  768. />
  769. <otaLanguage
  770. id="0"
  771. name="French"
  772. package="1"
  773. />
  774. <otaLanguage
  775. id="0"
  776. name="Spanish"
  777. package="2"
  778. />
  779. <otaLanguage
  780. id="0"
  781. name="Italian"
  782. package="3"
  783. />
  784. <otaLanguage
  785. id="0"
  786. name="German"
  787. package="4"
  788. />
  789. <otaLanguage
  790. id="0"
  791. name="Dutch"
  792. package="5"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Russian"
  797. package="6"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Chinese"
  802. package="7"
  803. />
  804. <otaLanguage
  805. id="0"
  806. name="Korean"
  807. package="8"
  808. />
  809. <otaLanguage
  810. id="0"
  811. name="Japanese"
  812. package="9"
  813. />
  814. <otaLanguage
  815. id="0"
  816. name="Finnish"
  817. package="10"
  818. />
  819. <otaLanguage
  820. id="0"
  821. name="Polish"
  822. package="11"
  823. />
  824. </otaLanguages>
  825. <otaPackages>
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  872. size="5183988"
  873. />
  874. </otaPackages>
  875. </productMenu>
  876. <productMenu id="wa"
  877. type="0" >
  878. </productMenu>
  879. <productMenu id="sip"
  880. type="1" >
  881. </productMenu>
  882. <productMenu id="led"
  883. type="0" >
  884. </productMenu>
  885. <productMenu id="illusion"
  886. type="1" >
  887. </productMenu>
  888. <productMenu id="meshIntercom"
  889. type="30" >
  890. </productMenu>
  891. <productMenu id="meshIntercom+"
  892. type="3"
  893. url="2" >
  894. <productMenuURL version="1.0.2"
  895. url="10"
  896. />
  897. </productMenu>
  898. <productMenu id="waveIntercom"
  899. type="1" >
  900. <productMenuType version="1.0.9"
  901. type="0"
  902. />
  903. </productMenu>
  904. <productMenu id="bluetoothIntercom"
  905. type="1"
  906. url="2" >
  907. </productMenu>
  908. <productMenu id="bluetoothIntercomGrouping"
  909. type="0" >
  910. </productMenu>
  911. <productMenu id="fmradio"
  912. type="1"
  913. url="1" >
  914. </productMenu>
  915. <productMenu id="phone"
  916. type="1" >
  917. </productMenu>
  918. <productMenu id="music"
  919. type="1" >
  920. </productMenu>
  921. <productMenu id="musicSharing"
  922. type="0" >
  923. </productMenu>
  924. <productMenu id="deviceSetting"
  925. type="1"
  926. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  927. <productMenuURL version="1.2.6"
  928. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  929. />
  930. <productMenuURL version="1.2.3"
  931. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  932. />
  933. <productMenuURL version="1.0.2"
  934. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  935. />
  936. <productMenuURL version="1.0"
  937. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  938. />
  939. <productMenuURL version="0.9.11"
  940. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  941. />
  942. </productMenu>
  943. <productMenu id="quickGuide"
  944. type="0"
  945. url=""
  946. size="1.12MB" >
  947. </productMenu>
  948. <productMenu id="userGuide"
  949. type="1"
  950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  951. size="2.0MB" >
  952. </productMenu>
  953. <productMenu id="videoGuide"
  954. type="0"
  955. url=""
  956. size="3.41MB" >
  957. </productMenu>
  958. <productMenu id="connectGuide"
  959. type="1"
  960. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  961. size="1.12MB" >
  962. </productMenu>
  963. <productMenu id="volume"
  964. type="16" >
  965. <productMenuType version="0.9.11"
  966. type="13"
  967. />
  968. </productMenu>
  969. <productMenu id="volume+"
  970. type="2"
  971. url="0x6004" >
  972. <productMenuURL version="1.2.3"
  973. url="0x6004"
  974. />
  975. </productMenu>
  976. <productMenu id="soundMode"
  977. type="0" >
  978. <productMenuType version="0.9.11"
  979. type="0"
  980. />
  981. </productMenu>
  982. <productMenu id="appearance"
  983. type="1"
  984. url="2|white,silver,chrome,black" >
  985. </productMenu>
  986. <productMenu id="battery"
  987. type="1" >
  988. </productMenu>
  989. <productID id="6A02"
  990. />
  991. <productGroupable type="0"
  992. />
  993. </product>
  994. <product id="60X"
  995. name="60X"
  996. series="60"
  997. latestVersion="0.9.2"
  998. latestVersionMesh="0.19"
  999. latestVersionVoicePrompt="1.5"
  1000. show = "-1" >
  1001. <productMenu id="protocol"
  1002. type="2" >
  1003. </productMenu>
  1004. <productMenu id="ota"
  1005. type="0" >
  1006. <otaLanguages>
  1007. <otaLanguage
  1008. id="0"
  1009. name="English"
  1010. package="0"
  1011. />
  1012. <otaLanguage
  1013. id="0"
  1014. name="French"
  1015. package="1"
  1016. />
  1017. <otaLanguage
  1018. id="0"
  1019. name="Spanish"
  1020. package="2"
  1021. />
  1022. <otaLanguage
  1023. id="0"
  1024. name="Italian"
  1025. package="3"
  1026. />
  1027. <otaLanguage
  1028. id="0"
  1029. name="German"
  1030. package="4"
  1031. />
  1032. <otaLanguage
  1033. id="0"
  1034. name="Dutch"
  1035. package="5"
  1036. />
  1037. <otaLanguage
  1038. id="0"
  1039. name="Russian"
  1040. package="6"
  1041. />
  1042. <otaLanguage
  1043. id="0"
  1044. name="Chinese"
  1045. package="7"
  1046. />
  1047. <otaLanguage
  1048. id="0"
  1049. name="Korean"
  1050. package="8"
  1051. />
  1052. <otaLanguage
  1053. id="0"
  1054. name="Japanese"
  1055. package="9"
  1056. />
  1057. <otaLanguage
  1058. id="0"
  1059. name="Finnish"
  1060. package="10"
  1061. />
  1062. <otaLanguage
  1063. id="0"
  1064. name="Polish"
  1065. package="11"
  1066. />
  1067. </otaLanguages>
  1068. <otaPackages>
  1069. <package
  1070. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1099. size="5183988"
  1100. />
  1101. <package
  1102. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1103. size="5183988"
  1104. />
  1105. <package
  1106. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1107. size="5183988"
  1108. />
  1109. <package
  1110. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1111. size="5183988"
  1112. />
  1113. <package
  1114. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1115. size="5183988"
  1116. />
  1117. </otaPackages>
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="0" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="led"
  1126. type="1" >
  1127. </productMenu>
  1128. <productMenu id="illusion"
  1129. type="1" >
  1130. </productMenu>
  1131. <productMenu id="meshIntercom"
  1132. type="30" >
  1133. </productMenu>
  1134. <productMenu id="meshIntercom+"
  1135. type="3"
  1136. url="2" >
  1137. </productMenu>
  1138. <productMenu id="bluetoothIntercom"
  1139. type="1" >
  1140. </productMenu>
  1141. <productMenu id="fmradio"
  1142. type="1"
  1143. url="1" >
  1144. </productMenu>
  1145. <productMenu id="mic"
  1146. type="0" >
  1147. </productMenu>
  1148. <productMenu id="phone"
  1149. type="1" >
  1150. </productMenu>
  1151. <productMenu id="music"
  1152. type="1" >
  1153. </productMenu>
  1154. <productMenu id="musicSharing"
  1155. type="0" >
  1156. </productMenu>
  1157. <productMenu id="deviceSetting"
  1158. type="1"
  1159. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1160. </productMenu>
  1161. <productMenu id="quickGuide"
  1162. type="0"
  1163. url=""
  1164. size="1.12MB" >
  1165. </productMenu>
  1166. <productMenu id="userGuide"
  1167. type="0"
  1168. url=""
  1169. size="2.0MB" >
  1170. </productMenu>
  1171. <productMenu id="videoGuide"
  1172. type="0"
  1173. url=""
  1174. size="3.41MB" >
  1175. </productMenu>
  1176. <productMenu id="keySettings"
  1177. type="1"
  1178. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1179. </productMenu>
  1180. <productMenu id="volume"
  1181. type="13" >
  1182. </productMenu>
  1183. <productMenu id="volume+"
  1184. type="2"
  1185. url="0x6004" >
  1186. </productMenu>
  1187. <productMenu id="appearance"
  1188. type="1"
  1189. url="1|white,silver,black,glossy_black" >
  1190. </productMenu>
  1191. <productMenu id="battery"
  1192. type="1" >
  1193. </productMenu>
  1194. <productID id="6A03"
  1195. />
  1196. <productGroupable type="0"
  1197. />
  1198. </product>
  1199. <product id="R35"
  1200. name="R35"
  1201. series="R"
  1202. latestVersion="1.1"
  1203. latestVersionVoicePrompt="1.5"
  1204. show = "-1" >
  1205. <productMenu id="protocol"
  1206. type="2" >
  1207. </productMenu>
  1208. <productMenu id="ota"
  1209. type="2" >
  1210. <otaLanguages>
  1211. <otaLanguage
  1212. id="0"
  1213. name="English"
  1214. package="0"
  1215. />
  1216. <otaLanguage
  1217. id="0"
  1218. name="Chinese"
  1219. package="1"
  1220. />
  1221. <otaLanguage
  1222. id="0"
  1223. name="Chinese Singapore"
  1224. package="2"
  1225. />
  1226. <otaLanguage
  1227. id="0"
  1228. name="Filipino"
  1229. package="3"
  1230. />
  1231. <otaLanguage
  1232. id="0"
  1233. name="Hebrew"
  1234. package="4"
  1235. />
  1236. <otaLanguage
  1237. id="0"
  1238. name="Hindi"
  1239. package="5"
  1240. />
  1241. <otaLanguage
  1242. id="0"
  1243. name="Indonesian"
  1244. package="6"
  1245. />
  1246. <otaLanguage
  1247. id="0"
  1248. name="Japanese"
  1249. package="7"
  1250. />
  1251. <otaLanguage
  1252. id="0"
  1253. name="Korean"
  1254. package="8"
  1255. />
  1256. <otaLanguage
  1257. id="0"
  1258. name="Malay"
  1259. package="9"
  1260. />
  1261. <otaLanguage
  1262. id="0"
  1263. name="Modern Standard Arabic"
  1264. package="10"
  1265. />
  1266. <otaLanguage
  1267. id="0"
  1268. name="Taiwanese"
  1269. package="11"
  1270. />
  1271. <otaLanguage
  1272. id="0"
  1273. name="Tamil"
  1274. package="12"
  1275. />
  1276. <otaLanguage
  1277. id="0"
  1278. name="Thai"
  1279. package="13"
  1280. />
  1281. <otaLanguage
  1282. id="0"
  1283. name="东北话"
  1284. package="14"
  1285. />
  1286. <otaLanguage
  1287. id="0"
  1288. name="广东话"
  1289. package="15"
  1290. />
  1291. <otaLanguage
  1292. id="0"
  1293. name="江浙沪"
  1294. package="16"
  1295. />
  1296. <otaLanguage
  1297. id="0"
  1298. name="四川话"
  1299. package="17"
  1300. />
  1301. <otaLanguage
  1302. id="0"
  1303. name="陕西话"
  1304. package="18"
  1305. />
  1306. </otaLanguages>
  1307. <otaPackages>
  1308. <package
  1309. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1310. size="5183988"
  1311. />
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1346. size="5183988"
  1347. />
  1348. <package
  1349. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1350. size="5183988"
  1351. />
  1352. <package
  1353. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1354. size="5183988"
  1355. />
  1356. <package
  1357. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1358. size="5183988"
  1359. />
  1360. <package
  1361. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1362. size="5183988"
  1363. />
  1364. <package
  1365. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1366. size="5183988"
  1367. />
  1368. <package
  1369. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1370. size="5183988"
  1371. />
  1372. <package
  1373. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1374. size="5183988"
  1375. />
  1376. <package
  1377. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1378. size="5183988"
  1379. />
  1380. <package
  1381. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1382. size="5183988"
  1383. />
  1384. </otaPackages>
  1385. </productMenu>
  1386. <productMenu id="sip"
  1387. type="1" >
  1388. </productMenu>
  1389. <productMenu id="illusion"
  1390. type="1" >
  1391. </productMenu>
  1392. <productMenu id="meshIntercom"
  1393. type="30" >
  1394. </productMenu>
  1395. <productMenu id="meshIntercom+"
  1396. type="3"
  1397. url="2" >
  1398. </productMenu>
  1399. <productMenu id="waveIntercom"
  1400. type="1" >
  1401. </productMenu>
  1402. <productMenu id="phone"
  1403. type="1" >
  1404. </productMenu>
  1405. <productMenu id="music"
  1406. type="1" >
  1407. </productMenu>
  1408. <productMenu id="musicSharing"
  1409. type="0" >
  1410. </productMenu>
  1411. <productMenu id="deviceSetting"
  1412. type="1"
  1413. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1414. <productMenuURL version="1.0.3"
  1415. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1416. />
  1417. </productMenu>
  1418. <productMenu id="quickGuide"
  1419. type="0"
  1420. url=""
  1421. size="1.12MB" >
  1422. </productMenu>
  1423. <productMenu id="userGuide"
  1424. type="1"
  1425. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1426. size="2.0MB" >
  1427. </productMenu>
  1428. <productMenu id="videoGuide"
  1429. type="0"
  1430. url=""
  1431. size="3.41MB" >
  1432. </productMenu>
  1433. <productMenu id="connectGuide"
  1434. type="0"
  1435. url=""
  1436. size="1.12MB" >
  1437. </productMenu>
  1438. <productMenu id="volume"
  1439. type="16" >
  1440. </productMenu>
  1441. <productMenu id="volume+"
  1442. type="2"
  1443. url="0x6004" >
  1444. </productMenu>
  1445. <productMenu id="soundMode"
  1446. type="0" >
  1447. </productMenu>
  1448. <productMenu id="appearance"
  1449. type="1"
  1450. url="1|white,silver,chrome,black" >
  1451. </productMenu>
  1452. <productMenu id="battery"
  1453. type="1" >
  1454. </productMenu>
  1455. <productID id="6A06"
  1456. />
  1457. <productGroupable type="0"
  1458. />
  1459. </product>
  1460. <product id="COMP1"
  1461. name="BMW COM P1"
  1462. series="60"
  1463. latestVersion="1.0.6"
  1464. latestVersionMesh="0.19"
  1465. latestVersionVoicePrompt="1.0"
  1466. show = "-1" >
  1467. <productMenu id="protocol"
  1468. type="2" >
  1469. </productMenu>
  1470. <productMenu id="ota"
  1471. type="2" >
  1472. <otaLanguages>
  1473. <otaLanguage
  1474. id="0"
  1475. name="English"
  1476. package="0"
  1477. />
  1478. <otaLanguage
  1479. id="0"
  1480. name="French"
  1481. package="1"
  1482. />
  1483. <otaLanguage
  1484. id="0"
  1485. name="Spanish"
  1486. package="2"
  1487. />
  1488. <otaLanguage
  1489. id="0"
  1490. name="Italian"
  1491. package="3"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="German"
  1496. package="4"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Dutch"
  1501. package="5"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Russian"
  1506. package="6"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="Chinese"
  1511. package="7"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Korean"
  1516. package="8"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Japanese"
  1521. package="9"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Finnish"
  1526. package="10"
  1527. />
  1528. </otaLanguages>
  1529. <otaPackages>
  1530. <package
  1531. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1532. size="5183988"
  1533. />
  1534. <package
  1535. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1536. size="5183988"
  1537. />
  1538. <package
  1539. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1540. size="5183988"
  1541. />
  1542. <package
  1543. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1544. size="5183988"
  1545. />
  1546. <package
  1547. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1548. size="5183988"
  1549. />
  1550. <package
  1551. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1552. size="5183988"
  1553. />
  1554. <package
  1555. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1572. size="5183988"
  1573. />
  1574. </otaPackages>
  1575. </productMenu>
  1576. <productMenu id="wa"
  1577. type="0" >
  1578. </productMenu>
  1579. <productMenu id="sip"
  1580. type="1" >
  1581. </productMenu>
  1582. <productMenu id="led"
  1583. type="0" >
  1584. </productMenu>
  1585. <productMenu id="illusion"
  1586. type="0" >
  1587. </productMenu>
  1588. <productMenu id="meshIntercom"
  1589. type="30" >
  1590. </productMenu>
  1591. <productMenu id="bluetoothIntercom"
  1592. type="1" >
  1593. </productMenu>
  1594. <productMenu id="bluetoothIntercomGrouping"
  1595. type="0" >
  1596. </productMenu>
  1597. <productMenu id="fmradio"
  1598. type="0" >
  1599. </productMenu>
  1600. <productMenu id="phone"
  1601. type="1" >
  1602. </productMenu>
  1603. <productMenu id="music"
  1604. type="1" >
  1605. </productMenu>
  1606. <productMenu id="musicSharing"
  1607. type="0" >
  1608. </productMenu>
  1609. <productMenu id="deviceSetting"
  1610. type="1"
  1611. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1612. </productMenu>
  1613. <productMenu id="quickGuide"
  1614. type="0"
  1615. url=""
  1616. size="1.12MB" >
  1617. </productMenu>
  1618. <productMenu id="userGuide"
  1619. type="0"
  1620. url=""
  1621. size="2.0MB" >
  1622. </productMenu>
  1623. <productMenu id="videoGuide"
  1624. type="0"
  1625. url=""
  1626. size="3.41MB" >
  1627. </productMenu>
  1628. <productMenu id="volume"
  1629. type="16" >
  1630. </productMenu>
  1631. <productMenu id="battery"
  1632. type="1" >
  1633. </productMenu>
  1634. <productID id="6A80"
  1635. />
  1636. <productGroupable type="0"
  1637. />
  1638. </product>
  1639. <product id="50S"
  1640. name="50S"
  1641. series="50"
  1642. latestVersion="2.7.2"
  1643. show = "1" >
  1644. <productMenu id="protocol"
  1645. type="2" >
  1646. </productMenu>
  1647. <productMenu id="alexa"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="ota"
  1651. type="0"
  1652. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1653. size="1150234" >
  1654. </productMenu>
  1655. <productMenu id="wa"
  1656. type="1" >
  1657. </productMenu>
  1658. <productMenu id="sip"
  1659. type="1" >
  1660. </productMenu>
  1661. <productMenu id="meshIntercom"
  1662. type="30" >
  1663. <productMenuType version="2.1.1"
  1664. type="20"
  1665. />
  1666. </productMenu>
  1667. <productMenu id="meshIntercom+"
  1668. type="3"
  1669. url="2" >
  1670. <productMenuType version="2.5.9"
  1671. type="2"
  1672. />
  1673. <productMenuURL version="2.1.1"
  1674. url="0"
  1675. />
  1676. </productMenu>
  1677. <productMenu id="waveIntercom"
  1678. type="1" >
  1679. <productMenuType version="2.6"
  1680. type="0"
  1681. />
  1682. </productMenu>
  1683. <productMenu id="bluetoothIntercom"
  1684. type="1" >
  1685. </productMenu>
  1686. <productMenu id="phone"
  1687. type="1" >
  1688. </productMenu>
  1689. <productMenu id="music"
  1690. type="1" >
  1691. </productMenu>
  1692. <productMenu id="fmradio"
  1693. type="1" >
  1694. </productMenu>
  1695. <productMenu id="deviceSetting"
  1696. type="1"
  1697. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1698. <productMenuURL version="2.5.9"
  1699. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1700. />
  1701. <productMenuURL version="2.1.1"
  1702. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1703. />
  1704. <productMenuURL version="2.0.3"
  1705. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1706. />
  1707. </productMenu>
  1708. <productMenu id="quickGuide"
  1709. type="0"
  1710. url=""
  1711. size="934KB" >
  1712. </productMenu>
  1713. <productMenu id="userGuide"
  1714. type="1"
  1715. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1716. size="1.14MB" >
  1717. </productMenu>
  1718. <productMenu id="videoGuide"
  1719. type="1"
  1720. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1721. size="3.41MB" >
  1722. </productMenu>
  1723. <productMenu id="connectGuide"
  1724. type="1"
  1725. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1726. size="1.12MB" >
  1727. </productMenu>
  1728. <productMenu id="volume"
  1729. type="11" >
  1730. </productMenu>
  1731. <productMenu id="battery"
  1732. type="1" >
  1733. </productMenu>
  1734. <productID id="3210"
  1735. />
  1736. <productGroupable type="0"
  1737. />
  1738. </product>
  1739. <product id="50S"
  1740. name="50S"
  1741. series="50"
  1742. latestVersion="1.5.1"
  1743. show = "-1" >
  1744. <productMenu id="protocol"
  1745. type="2" >
  1746. </productMenu>
  1747. <productMenu id="alexa"
  1748. type="0" >
  1749. </productMenu>
  1750. <productMenu id="wa"
  1751. type="1" >
  1752. </productMenu>
  1753. <productMenu id="sip"
  1754. type="1" >
  1755. </productMenu>
  1756. <productMenu id="meshIntercom"
  1757. type="30" >
  1758. <productMenuType version="1.2.2"
  1759. type="20"
  1760. />
  1761. </productMenu>
  1762. <productMenu id="meshIntercom+"
  1763. type="3"
  1764. url="2" >
  1765. <productMenuType version="1.4.9"
  1766. type="2"
  1767. />
  1768. <productMenuURL version="1.2.2"
  1769. url="0"
  1770. />
  1771. </productMenu>
  1772. <productMenu id="waveIntercom"
  1773. type="1" >
  1774. <productMenuType version="1.3.9"
  1775. type="0"
  1776. />
  1777. </productMenu>
  1778. <productMenu id="bluetoothIntercom"
  1779. type="1" >
  1780. </productMenu>
  1781. <productMenu id="phone"
  1782. type="1" >
  1783. </productMenu>
  1784. <productMenu id="music"
  1785. type="1" >
  1786. </productMenu>
  1787. <productMenu id="fmradio"
  1788. type="1" >
  1789. </productMenu>
  1790. <productMenu id="deviceSetting"
  1791. type="1"
  1792. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1793. <productMenuURL version="1.4.9"
  1794. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1795. />
  1796. <productMenuURL version="1.3.9"
  1797. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1798. />
  1799. <productMenuURL version="1.2.2"
  1800. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1801. />
  1802. <productMenuURL version="1.1.1"
  1803. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1804. />
  1805. </productMenu>
  1806. <productMenu id="quickGuide"
  1807. type="0"
  1808. url=""
  1809. size="934KB" >
  1810. </productMenu>
  1811. <productMenu id="userGuide"
  1812. type="1"
  1813. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1814. size="1.14MB" >
  1815. </productMenu>
  1816. <productMenu id="videoGuide"
  1817. type="1"
  1818. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1819. size="3.41MB" >
  1820. </productMenu>
  1821. <productMenu id="volume"
  1822. type="11" >
  1823. </productMenu>
  1824. <productMenu id="battery"
  1825. type="1" >
  1826. </productMenu>
  1827. <productID id="3132"
  1828. />
  1829. <productGroupable type="0"
  1830. />
  1831. </product>
  1832. <product id="50R"
  1833. name="50R"
  1834. series="50"
  1835. latestVersion="2.7.1"
  1836. show = "1" >
  1837. <productMenu id="protocol"
  1838. type="2" >
  1839. </productMenu>
  1840. <productMenu id="alexa"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="ota"
  1844. type="0"
  1845. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1846. size="1150234" >
  1847. </productMenu>
  1848. <productMenu id="wa"
  1849. type="1" >
  1850. </productMenu>
  1851. <productMenu id="sip"
  1852. type="1" >
  1853. </productMenu>
  1854. <productMenu id="meshIntercom"
  1855. type="30" >
  1856. <productMenuType version="2.1.1"
  1857. type="20"
  1858. />
  1859. </productMenu>
  1860. <productMenu id="meshIntercom+"
  1861. type="3"
  1862. url="2" >
  1863. <productMenuType version="2.5.9"
  1864. type="2"
  1865. />
  1866. <productMenuURL version="2.1.1"
  1867. url="0"
  1868. />
  1869. </productMenu>
  1870. <productMenu id="waveIntercom"
  1871. type="1" >
  1872. <productMenuType version="2.6"
  1873. type="0"
  1874. />
  1875. </productMenu>
  1876. <productMenu id="bluetoothIntercom"
  1877. type="1" >
  1878. </productMenu>
  1879. <productMenu id="phone"
  1880. type="1" >
  1881. </productMenu>
  1882. <productMenu id="music"
  1883. type="1" >
  1884. </productMenu>
  1885. <productMenu id="fmradio"
  1886. type="1" >
  1887. </productMenu>
  1888. <productMenu id="deviceSetting"
  1889. type="1"
  1890. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1891. <productMenuURL version="2.5.9"
  1892. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1893. />
  1894. <productMenuURL version="2.1.1"
  1895. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1896. />
  1897. <productMenuURL version="2.0"
  1898. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1899. />
  1900. </productMenu>
  1901. <productMenu id="quickGuide"
  1902. type="0"
  1903. url=""
  1904. size="344KB" >
  1905. </productMenu>
  1906. <productMenu id="userGuide"
  1907. type="1"
  1908. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1909. size="3.41MB" >
  1910. </productMenu>
  1911. <productMenu id="videoGuide"
  1912. type="1"
  1913. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1914. size="3.41MB" >
  1915. </productMenu>
  1916. <productMenu id="connectGuide"
  1917. type="1"
  1918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1919. size="1.12MB" >
  1920. </productMenu>
  1921. <productMenu id="volume"
  1922. type="11" >
  1923. </productMenu>
  1924. <productMenu id="battery"
  1925. type="1" >
  1926. </productMenu>
  1927. <productID id="3218"
  1928. />
  1929. <productGroupable type="0"
  1930. />
  1931. </product>
  1932. <product id="50R"
  1933. name="50R"
  1934. series="50"
  1935. latestVersion="1.5.1"
  1936. show = "-1" >
  1937. <productMenu id="protocol"
  1938. type="2" >
  1939. </productMenu>
  1940. <productMenu id="alexa"
  1941. type="0" >
  1942. </productMenu>
  1943. <productMenu id="wa"
  1944. type="1" >
  1945. </productMenu>
  1946. <productMenu id="sip"
  1947. type="1" >
  1948. </productMenu>
  1949. <productMenu id="meshIntercom"
  1950. type="30" >
  1951. <productMenuType version="1.2.2"
  1952. type="20"
  1953. />
  1954. </productMenu>
  1955. <productMenu id="meshIntercom+"
  1956. type="3"
  1957. url="2" >
  1958. <productMenuType version="1.4.9"
  1959. type="2"
  1960. />
  1961. <productMenuURL version="1.2.2"
  1962. url="0"
  1963. />
  1964. </productMenu>
  1965. <productMenu id="waveIntercom"
  1966. type="1" >
  1967. <productMenuType version="1.3.9"
  1968. type="0"
  1969. />
  1970. </productMenu>
  1971. <productMenu id="bluetoothIntercom"
  1972. type="1" >
  1973. </productMenu>
  1974. <productMenu id="phone"
  1975. type="1" >
  1976. </productMenu>
  1977. <productMenu id="music"
  1978. type="1" >
  1979. </productMenu>
  1980. <productMenu id="fmradio"
  1981. type="1" >
  1982. </productMenu>
  1983. <productMenu id="deviceSetting"
  1984. type="1"
  1985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1986. <productMenuURL version="1.4.9"
  1987. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1988. />
  1989. <productMenuURL version="1.3.9"
  1990. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1991. />
  1992. <productMenuURL version="1.2.2"
  1993. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1994. />
  1995. <productMenuURL version="1.1.1"
  1996. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="quickGuide"
  2000. type="0"
  2001. url=""
  2002. size="344KB" >
  2003. </productMenu>
  2004. <productMenu id="userGuide"
  2005. type="1"
  2006. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2007. size="3.41MB" >
  2008. </productMenu>
  2009. <productMenu id="videoGuide"
  2010. type="1"
  2011. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2012. size="3.41MB" >
  2013. </productMenu>
  2014. <productMenu id="volume"
  2015. type="11" >
  2016. </productMenu>
  2017. <productMenu id="battery"
  2018. type="1" >
  2019. </productMenu>
  2020. <productID id="3134"
  2021. />
  2022. <productGroupable type="0"
  2023. />
  2024. </product>
  2025. <product id="50C"
  2026. name="50C"
  2027. series="50"
  2028. latestVersion="1.4.3"
  2029. show = "1" >
  2030. <productMenu id="protocol"
  2031. type="2" >
  2032. </productMenu>
  2033. <productMenu id="ota"
  2034. type="0" >
  2035. </productMenu>
  2036. <productMenu id="wa"
  2037. type="1" >
  2038. </productMenu>
  2039. <productMenu id="sip"
  2040. type="1" >
  2041. </productMenu>
  2042. <productMenu id="meshIntercom"
  2043. type="30" >
  2044. <productMenuType version="1.1.1"
  2045. type="20"
  2046. />
  2047. </productMenu>
  2048. <productMenu id="meshIntercom+"
  2049. type="3"
  2050. url="2" >
  2051. <productMenuType version="1.3.9"
  2052. type="2"
  2053. />
  2054. <productMenuURL version="1.1.1"
  2055. url="0"
  2056. />
  2057. </productMenu>
  2058. <productMenu id="waveIntercom"
  2059. type="1" >
  2060. <productMenuType version="1.2.9"
  2061. type="0"
  2062. />
  2063. </productMenu>
  2064. <productMenu id="bluetoothIntercom"
  2065. type="1" >
  2066. </productMenu>
  2067. <productMenu id="phone"
  2068. type="1" >
  2069. </productMenu>
  2070. <productMenu id="music"
  2071. type="1" >
  2072. </productMenu>
  2073. <productMenu id="fmradio"
  2074. type="1" >
  2075. </productMenu>
  2076. <productMenu id="deviceSetting"
  2077. type="1"
  2078. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2079. <productMenuURL version="1.3.9"
  2080. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2081. />
  2082. <productMenuURL version="1.1.1"
  2083. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2084. />
  2085. <productMenuURL version="1.0.1"
  2086. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2087. />
  2088. </productMenu>
  2089. <productMenu id="quickGuide"
  2090. type="0"
  2091. url=""
  2092. size="344KB" >
  2093. </productMenu>
  2094. <productMenu id="userGuide"
  2095. type="1"
  2096. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2097. size="3.41MB" >
  2098. </productMenu>
  2099. <productMenu id="connectGuide"
  2100. type="1"
  2101. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2102. size="1.12MB" >
  2103. </productMenu>
  2104. <productMenu id="volume"
  2105. type="11" >
  2106. </productMenu>
  2107. <productMenu id="battery"
  2108. type="1" >
  2109. </productMenu>
  2110. <productID id="3232"
  2111. />
  2112. <productGroupable type="0"
  2113. />
  2114. </product>
  2115. <product id="PHANTOMXB"
  2116. name="PHANTOM XB"
  2117. series="Helmet"
  2118. latestVersion="1.2.7"
  2119. latestVersionVoicePrompt="1.5"
  2120. show = "-1" >
  2121. <productMenu id="protocol"
  2122. type="2" >
  2123. </productMenu>
  2124. <productMenu id="ota"
  2125. type="2" >
  2126. <otaLanguages>
  2127. <otaLanguage
  2128. id="0"
  2129. name="English"
  2130. package="0"
  2131. />
  2132. <otaLanguage
  2133. id="0"
  2134. name="French"
  2135. package="1"
  2136. />
  2137. <otaLanguage
  2138. id="0"
  2139. name="Spanish"
  2140. package="2"
  2141. />
  2142. <otaLanguage
  2143. id="0"
  2144. name="Italian"
  2145. package="3"
  2146. />
  2147. <otaLanguage
  2148. id="0"
  2149. name="German"
  2150. package="4"
  2151. />
  2152. <otaLanguage
  2153. id="0"
  2154. name="Dutch"
  2155. package="5"
  2156. />
  2157. <otaLanguage
  2158. id="0"
  2159. name="Russian"
  2160. package="6"
  2161. />
  2162. <otaLanguage
  2163. id="0"
  2164. name="Chinese"
  2165. package="7"
  2166. />
  2167. <otaLanguage
  2168. id="0"
  2169. name="Korean"
  2170. package="8"
  2171. />
  2172. <otaLanguage
  2173. id="0"
  2174. name="Japanese"
  2175. package="9"
  2176. />
  2177. <otaLanguage
  2178. id="0"
  2179. name="Finnish"
  2180. package="10"
  2181. />
  2182. <otaLanguage
  2183. id="0"
  2184. name="Polish"
  2185. package="11"
  2186. />
  2187. </otaLanguages>
  2188. <otaPackages>
  2189. <package
  2190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2191. size="5183988"
  2192. />
  2193. <package
  2194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2195. size="5183988"
  2196. />
  2197. <package
  2198. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2199. size="5183988"
  2200. />
  2201. <package
  2202. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2203. size="5183988"
  2204. />
  2205. <package
  2206. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2207. size="5183988"
  2208. />
  2209. <package
  2210. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2211. size="5183988"
  2212. />
  2213. <package
  2214. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2215. size="5183988"
  2216. />
  2217. <package
  2218. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2219. size="5183988"
  2220. />
  2221. <package
  2222. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2223. size="5183988"
  2224. />
  2225. <package
  2226. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2227. size="5183988"
  2228. />
  2229. <package
  2230. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2231. size="5183988"
  2232. />
  2233. <package
  2234. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2235. size="5183988"
  2236. />
  2237. </otaPackages>
  2238. </productMenu>
  2239. <productMenu id="wa"
  2240. type="0" >
  2241. </productMenu>
  2242. <productMenu id="led"
  2243. type="5" >
  2244. </productMenu>
  2245. <productMenu id="led+"
  2246. type="2"
  2247. url="1" >
  2248. </productMenu>
  2249. <productMenu id="meshIntercom"
  2250. type="30" >
  2251. </productMenu>
  2252. <productMenu id="meshIntercom+"
  2253. type="3"
  2254. url="2" >
  2255. </productMenu>
  2256. <productMenu id="waveIntercom"
  2257. type="1" >
  2258. </productMenu>
  2259. <productMenu id="fmradio"
  2260. type="0" >
  2261. </productMenu>
  2262. <productMenu id="phone"
  2263. type="1" >
  2264. </productMenu>
  2265. <productMenu id="music"
  2266. type="1" >
  2267. </productMenu>
  2268. <productMenu id="musicSharing"
  2269. type="0" >
  2270. </productMenu>
  2271. <productMenu id="deviceSetting"
  2272. type="1"
  2273. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2274. <productMenuURL version="1.2.4"
  2275. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2276. />
  2277. </productMenu>
  2278. <productMenu id="quickGuide"
  2279. type="0"
  2280. url=""
  2281. size="1.12MB" >
  2282. </productMenu>
  2283. <productMenu id="userGuide"
  2284. type="1"
  2285. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2286. size="2.0MB" >
  2287. </productMenu>
  2288. <productMenu id="videoGuide"
  2289. type="0"
  2290. url=""
  2291. size="3.41MB" >
  2292. </productMenu>
  2293. <productMenu id="volume"
  2294. type="16" >
  2295. </productMenu>
  2296. <productMenu id="volume+"
  2297. type="2"
  2298. url="0x6004" >
  2299. </productMenu>
  2300. <productMenu id="battery"
  2301. type="1" >
  2302. </productMenu>
  2303. <productID id="6A0F"
  2304. />
  2305. <productGroupable type="0"
  2306. />
  2307. </product>
  2308. <product id="PHANTOMXB"
  2309. name="PHANTOM XB"
  2310. series="Helmet"
  2311. latestVersion="1.2.7"
  2312. latestVersionVoicePrompt="1.5"
  2313. show = "-1" >
  2314. <productMenu id="protocol"
  2315. type="2" >
  2316. </productMenu>
  2317. <productMenu id="ota"
  2318. type="2" >
  2319. <otaLanguages>
  2320. <otaLanguage
  2321. id="0"
  2322. name="English"
  2323. package="0"
  2324. />
  2325. <otaLanguage
  2326. id="0"
  2327. name="French"
  2328. package="1"
  2329. />
  2330. <otaLanguage
  2331. id="0"
  2332. name="Spanish"
  2333. package="2"
  2334. />
  2335. <otaLanguage
  2336. id="0"
  2337. name="Italian"
  2338. package="3"
  2339. />
  2340. <otaLanguage
  2341. id="0"
  2342. name="German"
  2343. package="4"
  2344. />
  2345. <otaLanguage
  2346. id="0"
  2347. name="Dutch"
  2348. package="5"
  2349. />
  2350. <otaLanguage
  2351. id="0"
  2352. name="Russian"
  2353. package="6"
  2354. />
  2355. <otaLanguage
  2356. id="0"
  2357. name="Chinese"
  2358. package="7"
  2359. />
  2360. <otaLanguage
  2361. id="0"
  2362. name="Korean"
  2363. package="8"
  2364. />
  2365. <otaLanguage
  2366. id="0"
  2367. name="Japanese"
  2368. package="9"
  2369. />
  2370. <otaLanguage
  2371. id="0"
  2372. name="Finnish"
  2373. package="10"
  2374. />
  2375. <otaLanguage
  2376. id="0"
  2377. name="Polish"
  2378. package="11"
  2379. />
  2380. </otaLanguages>
  2381. <otaPackages>
  2382. <package
  2383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2384. size="5183988"
  2385. />
  2386. <package
  2387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2388. size="5183988"
  2389. />
  2390. <package
  2391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2392. size="5183988"
  2393. />
  2394. <package
  2395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2396. size="5183988"
  2397. />
  2398. <package
  2399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2400. size="5183988"
  2401. />
  2402. <package
  2403. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2404. size="5183988"
  2405. />
  2406. <package
  2407. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2408. size="5183988"
  2409. />
  2410. <package
  2411. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2412. size="5183988"
  2413. />
  2414. <package
  2415. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2416. size="5183988"
  2417. />
  2418. <package
  2419. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2420. size="5183988"
  2421. />
  2422. <package
  2423. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2424. size="5183988"
  2425. />
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2428. size="5183988"
  2429. />
  2430. </otaPackages>
  2431. </productMenu>
  2432. <productMenu id="wa"
  2433. type="0" >
  2434. </productMenu>
  2435. <productMenu id="led"
  2436. type="5" >
  2437. </productMenu>
  2438. <productMenu id="led+"
  2439. type="2"
  2440. url="1" >
  2441. </productMenu>
  2442. <productMenu id="meshIntercom"
  2443. type="30" >
  2444. </productMenu>
  2445. <productMenu id="meshIntercom+"
  2446. type="3"
  2447. url="2" >
  2448. </productMenu>
  2449. <productMenu id="waveIntercom"
  2450. type="1" >
  2451. </productMenu>
  2452. <productMenu id="fmradio"
  2453. type="0" >
  2454. </productMenu>
  2455. <productMenu id="phone"
  2456. type="1" >
  2457. </productMenu>
  2458. <productMenu id="music"
  2459. type="1" >
  2460. </productMenu>
  2461. <productMenu id="musicSharing"
  2462. type="0" >
  2463. </productMenu>
  2464. <productMenu id="deviceSetting"
  2465. type="1"
  2466. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2467. <productMenuURL version="1.2.4"
  2468. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2469. />
  2470. <productMenuURL version="1.2.1"
  2471. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2472. />
  2473. </productMenu>
  2474. <productMenu id="quickGuide"
  2475. type="0"
  2476. url=""
  2477. size="1.12MB" >
  2478. </productMenu>
  2479. <productMenu id="userGuide"
  2480. type="1"
  2481. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2482. size="2.0MB" >
  2483. </productMenu>
  2484. <productMenu id="videoGuide"
  2485. type="0"
  2486. url=""
  2487. size="3.41MB" >
  2488. </productMenu>
  2489. <productMenu id="volume"
  2490. type="16" >
  2491. </productMenu>
  2492. <productMenu id="volume+"
  2493. type="2"
  2494. url="0x6004" >
  2495. </productMenu>
  2496. <productMenu id="battery"
  2497. type="1" >
  2498. </productMenu>
  2499. <productID id="6A0C"
  2500. />
  2501. <productGroupable type="0"
  2502. />
  2503. </product>
  2504. <product id="PHANTOMKV"
  2505. name="PHANTOM KV"
  2506. series="Helmet"
  2507. latestVersion="1.2.2"
  2508. latestVersionVoicePrompt="1.0"
  2509. show = "-1" >
  2510. <productMenu id="protocol"
  2511. type="2" >
  2512. </productMenu>
  2513. <productMenu id="ota"
  2514. type="0" >
  2515. <otaLanguages>
  2516. <otaLanguage
  2517. id="0"
  2518. name="English"
  2519. package="0"
  2520. />
  2521. <otaLanguage
  2522. id="0"
  2523. name="French"
  2524. package="1"
  2525. />
  2526. <otaLanguage
  2527. id="0"
  2528. name="Spanish"
  2529. package="2"
  2530. />
  2531. <otaLanguage
  2532. id="0"
  2533. name="Italian"
  2534. package="3"
  2535. />
  2536. <otaLanguage
  2537. id="0"
  2538. name="German"
  2539. package="4"
  2540. />
  2541. <otaLanguage
  2542. id="0"
  2543. name="Dutch"
  2544. package="5"
  2545. />
  2546. <otaLanguage
  2547. id="0"
  2548. name="Russian"
  2549. package="6"
  2550. />
  2551. <otaLanguage
  2552. id="0"
  2553. name="Chinese"
  2554. package="7"
  2555. />
  2556. <otaLanguage
  2557. id="0"
  2558. name="Korean"
  2559. package="8"
  2560. />
  2561. <otaLanguage
  2562. id="0"
  2563. name="Japanese"
  2564. package="9"
  2565. />
  2566. <otaLanguage
  2567. id="0"
  2568. name="Finnish"
  2569. package="10"
  2570. />
  2571. <otaLanguage
  2572. id="0"
  2573. name="Polish"
  2574. package="11"
  2575. />
  2576. </otaLanguages>
  2577. <otaPackages>
  2578. <package
  2579. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2580. size="5183988"
  2581. />
  2582. <package
  2583. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2584. size="5183988"
  2585. />
  2586. <package
  2587. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2588. size="5183988"
  2589. />
  2590. <package
  2591. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2592. size="5183988"
  2593. />
  2594. <package
  2595. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2596. size="5183988"
  2597. />
  2598. <package
  2599. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2600. size="5183988"
  2601. />
  2602. <package
  2603. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2604. size="5183988"
  2605. />
  2606. <package
  2607. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2608. size="5183988"
  2609. />
  2610. <package
  2611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2612. size="5183988"
  2613. />
  2614. <package
  2615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2616. size="5183988"
  2617. />
  2618. <package
  2619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2620. size="5183988"
  2621. />
  2622. <package
  2623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2624. size="5183988"
  2625. />
  2626. </otaPackages>
  2627. </productMenu>
  2628. <productMenu id="wa"
  2629. type="0" >
  2630. </productMenu>
  2631. <productMenu id="led"
  2632. type="5" >
  2633. </productMenu>
  2634. <productMenu id="led+"
  2635. type="2"
  2636. url="1" >
  2637. </productMenu>
  2638. <productMenu id="meshIntercom"
  2639. type="30" >
  2640. </productMenu>
  2641. <productMenu id="meshIntercom+"
  2642. type="3"
  2643. url="2" >
  2644. </productMenu>
  2645. <productMenu id="waveIntercom"
  2646. type="1" >
  2647. </productMenu>
  2648. <productMenu id="fmradio"
  2649. type="0" >
  2650. </productMenu>
  2651. <productMenu id="phone"
  2652. type="1" >
  2653. </productMenu>
  2654. <productMenu id="music"
  2655. type="1" >
  2656. </productMenu>
  2657. <productMenu id="musicSharing"
  2658. type="0" >
  2659. </productMenu>
  2660. <productMenu id="deviceSetting"
  2661. type="1"
  2662. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2663. <productMenuURL version="1.2.4"
  2664. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2665. />
  2666. </productMenu>
  2667. <productMenu id="quickGuide"
  2668. type="0"
  2669. url=""
  2670. size="1.12MB" >
  2671. </productMenu>
  2672. <productMenu id="userGuide"
  2673. type="1"
  2674. url=""
  2675. size="2.0MB" >
  2676. </productMenu>
  2677. <productMenu id="videoGuide"
  2678. type="0"
  2679. url=""
  2680. size="3.41MB" >
  2681. </productMenu>
  2682. <productMenu id="volume"
  2683. type="16" >
  2684. </productMenu>
  2685. <productMenu id="volume+"
  2686. type="2"
  2687. url="0x6004" >
  2688. </productMenu>
  2689. <productMenu id="battery"
  2690. type="1" >
  2691. </productMenu>
  2692. <productID id="6A14"
  2693. />
  2694. <productGroupable type="0"
  2695. />
  2696. </product>
  2697. <product id="PHANTOMKV"
  2698. name="PHANTOM KV"
  2699. series="Helmet"
  2700. latestVersion="1.2.2"
  2701. latestVersionVoicePrompt="1.0"
  2702. show = "-1" >
  2703. <productMenu id="protocol"
  2704. type="2" >
  2705. </productMenu>
  2706. <productMenu id="ota"
  2707. type="0" >
  2708. <otaLanguages>
  2709. <otaLanguage
  2710. id="0"
  2711. name="English"
  2712. package="0"
  2713. />
  2714. <otaLanguage
  2715. id="0"
  2716. name="French"
  2717. package="1"
  2718. />
  2719. <otaLanguage
  2720. id="0"
  2721. name="Spanish"
  2722. package="2"
  2723. />
  2724. <otaLanguage
  2725. id="0"
  2726. name="Italian"
  2727. package="3"
  2728. />
  2729. <otaLanguage
  2730. id="0"
  2731. name="German"
  2732. package="4"
  2733. />
  2734. <otaLanguage
  2735. id="0"
  2736. name="Dutch"
  2737. package="5"
  2738. />
  2739. <otaLanguage
  2740. id="0"
  2741. name="Russian"
  2742. package="6"
  2743. />
  2744. <otaLanguage
  2745. id="0"
  2746. name="Chinese"
  2747. package="7"
  2748. />
  2749. <otaLanguage
  2750. id="0"
  2751. name="Korean"
  2752. package="8"
  2753. />
  2754. <otaLanguage
  2755. id="0"
  2756. name="Japanese"
  2757. package="9"
  2758. />
  2759. <otaLanguage
  2760. id="0"
  2761. name="Finnish"
  2762. package="10"
  2763. />
  2764. <otaLanguage
  2765. id="0"
  2766. name="Polish"
  2767. package="11"
  2768. />
  2769. </otaLanguages>
  2770. <otaPackages>
  2771. <package
  2772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2773. size="5183988"
  2774. />
  2775. <package
  2776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2777. size="5183988"
  2778. />
  2779. <package
  2780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2781. size="5183988"
  2782. />
  2783. <package
  2784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2785. size="5183988"
  2786. />
  2787. <package
  2788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2789. size="5183988"
  2790. />
  2791. <package
  2792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2793. size="5183988"
  2794. />
  2795. <package
  2796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2797. size="5183988"
  2798. />
  2799. <package
  2800. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2801. size="5183988"
  2802. />
  2803. <package
  2804. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2805. size="5183988"
  2806. />
  2807. <package
  2808. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2809. size="5183988"
  2810. />
  2811. <package
  2812. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2813. size="5183988"
  2814. />
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2817. size="5183988"
  2818. />
  2819. </otaPackages>
  2820. </productMenu>
  2821. <productMenu id="wa"
  2822. type="0" >
  2823. </productMenu>
  2824. <productMenu id="led"
  2825. type="5" >
  2826. </productMenu>
  2827. <productMenu id="led+"
  2828. type="2"
  2829. url="1" >
  2830. </productMenu>
  2831. <productMenu id="meshIntercom"
  2832. type="30" >
  2833. </productMenu>
  2834. <productMenu id="meshIntercom+"
  2835. type="3"
  2836. url="2" >
  2837. </productMenu>
  2838. <productMenu id="waveIntercom"
  2839. type="1" >
  2840. </productMenu>
  2841. <productMenu id="fmradio"
  2842. type="0" >
  2843. </productMenu>
  2844. <productMenu id="phone"
  2845. type="1" >
  2846. </productMenu>
  2847. <productMenu id="music"
  2848. type="1" >
  2849. </productMenu>
  2850. <productMenu id="musicSharing"
  2851. type="0" >
  2852. </productMenu>
  2853. <productMenu id="deviceSetting"
  2854. type="1"
  2855. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2856. <productMenuURL version="1.2.4"
  2857. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2858. />
  2859. </productMenu>
  2860. <productMenu id="quickGuide"
  2861. type="0"
  2862. url=""
  2863. size="1.12MB" >
  2864. </productMenu>
  2865. <productMenu id="userGuide"
  2866. type="1"
  2867. url=""
  2868. size="2.0MB" >
  2869. </productMenu>
  2870. <productMenu id="videoGuide"
  2871. type="0"
  2872. url=""
  2873. size="3.41MB" >
  2874. </productMenu>
  2875. <productMenu id="volume"
  2876. type="16" >
  2877. </productMenu>
  2878. <productMenu id="volume+"
  2879. type="2"
  2880. url="0x6004" >
  2881. </productMenu>
  2882. <productMenu id="battery"
  2883. type="1" >
  2884. </productMenu>
  2885. <productID id="6A13"
  2886. />
  2887. <productGroupable type="0"
  2888. />
  2889. </product>
  2890. <product id="PHANTOMCamera"
  2891. name="PHANTOM Camera"
  2892. series="Helmet"
  2893. latestVersion="1.0.1"
  2894. latestVersionVoicePrompt="0.4"
  2895. show = "-1" >
  2896. <productMenu id="protocol"
  2897. type="2" >
  2898. </productMenu>
  2899. <productMenu id="ota"
  2900. type="3" >
  2901. <otaLanguages>
  2902. <otaLanguage
  2903. id="0"
  2904. name="English"
  2905. package="0"
  2906. />
  2907. <otaLanguage
  2908. id="0"
  2909. name="French"
  2910. package="1"
  2911. />
  2912. <otaLanguage
  2913. id="0"
  2914. name="Spanish"
  2915. package="2"
  2916. />
  2917. <otaLanguage
  2918. id="0"
  2919. name="Italian"
  2920. package="3"
  2921. />
  2922. <otaLanguage
  2923. id="0"
  2924. name="German"
  2925. package="4"
  2926. />
  2927. <otaLanguage
  2928. id="0"
  2929. name="Dutch"
  2930. package="5"
  2931. />
  2932. <otaLanguage
  2933. id="0"
  2934. name="Russian"
  2935. package="6"
  2936. />
  2937. <otaLanguage
  2938. id="0"
  2939. name="Chinese"
  2940. package="7"
  2941. />
  2942. <otaLanguage
  2943. id="0"
  2944. name="Korean"
  2945. package="8"
  2946. />
  2947. <otaLanguage
  2948. id="0"
  2949. name="Japanese"
  2950. package="9"
  2951. />
  2952. <otaLanguage
  2953. id="0"
  2954. name="Finnish"
  2955. package="10"
  2956. />
  2957. <otaLanguage
  2958. id="0"
  2959. name="Polish"
  2960. package="11"
  2961. />
  2962. </otaLanguages>
  2963. <otaPackages>
  2964. <package
  2965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2966. size="5183988"
  2967. />
  2968. <package
  2969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2970. size="5183988"
  2971. />
  2972. <package
  2973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2974. size="5183988"
  2975. />
  2976. <package
  2977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2978. size="5183988"
  2979. />
  2980. <package
  2981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2982. size="5183988"
  2983. />
  2984. <package
  2985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2986. size="5183988"
  2987. />
  2988. <package
  2989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2990. size="5183988"
  2991. />
  2992. <package
  2993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2994. size="5183988"
  2995. />
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3010. size="5183988"
  3011. />
  3012. </otaPackages>
  3013. </productMenu>
  3014. <productMenu id="wa"
  3015. type="0" >
  3016. </productMenu>
  3017. <productMenu id="led"
  3018. type="5" >
  3019. </productMenu>
  3020. <productMenu id="led+"
  3021. type="2"
  3022. url="1" >
  3023. </productMenu>
  3024. <productMenu id="meshIntercom"
  3025. type="30" >
  3026. </productMenu>
  3027. <productMenu id="meshIntercom+"
  3028. type="3"
  3029. url="2" >
  3030. </productMenu>
  3031. <productMenu id="waveIntercom"
  3032. type="1" >
  3033. </productMenu>
  3034. <productMenu id="fmradio"
  3035. type="0" >
  3036. </productMenu>
  3037. <productMenu id="phone"
  3038. type="1" >
  3039. </productMenu>
  3040. <productMenu id="music"
  3041. type="1" >
  3042. </productMenu>
  3043. <productMenu id="musicSharing"
  3044. type="0" >
  3045. </productMenu>
  3046. <productMenu id="deviceSetting"
  3047. type="1"
  3048. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3049. </productMenu>
  3050. <productMenu id="quickGuide"
  3051. type="0"
  3052. url=""
  3053. size="1.12MB" >
  3054. </productMenu>
  3055. <productMenu id="userGuide"
  3056. type="1"
  3057. url=""
  3058. size="2.0MB" >
  3059. </productMenu>
  3060. <productMenu id="videoGuide"
  3061. type="0"
  3062. url=""
  3063. size="3.41MB" >
  3064. </productMenu>
  3065. <productMenu id="volume"
  3066. type="16" >
  3067. </productMenu>
  3068. <productMenu id="battery"
  3069. type="1" >
  3070. </productMenu>
  3071. <productID id="6A10"
  3072. />
  3073. <productGroupable type="0"
  3074. />
  3075. </product>
  3076. <product id="PHANTOMCamera"
  3077. name="PHANTOM Camera"
  3078. series="Helmet"
  3079. latestVersion="1.0.1"
  3080. latestVersionVoicePrompt="0.4"
  3081. show = "-1" >
  3082. <productMenu id="protocol"
  3083. type="2" >
  3084. </productMenu>
  3085. <productMenu id="ota"
  3086. type="3" >
  3087. <otaLanguages>
  3088. <otaLanguage
  3089. id="0"
  3090. name="English"
  3091. package="0"
  3092. />
  3093. <otaLanguage
  3094. id="0"
  3095. name="French"
  3096. package="1"
  3097. />
  3098. <otaLanguage
  3099. id="0"
  3100. name="Spanish"
  3101. package="2"
  3102. />
  3103. <otaLanguage
  3104. id="0"
  3105. name="Italian"
  3106. package="3"
  3107. />
  3108. <otaLanguage
  3109. id="0"
  3110. name="German"
  3111. package="4"
  3112. />
  3113. <otaLanguage
  3114. id="0"
  3115. name="Dutch"
  3116. package="5"
  3117. />
  3118. <otaLanguage
  3119. id="0"
  3120. name="Russian"
  3121. package="6"
  3122. />
  3123. <otaLanguage
  3124. id="0"
  3125. name="Chinese"
  3126. package="7"
  3127. />
  3128. <otaLanguage
  3129. id="0"
  3130. name="Korean"
  3131. package="8"
  3132. />
  3133. <otaLanguage
  3134. id="0"
  3135. name="Japanese"
  3136. package="9"
  3137. />
  3138. <otaLanguage
  3139. id="0"
  3140. name="Finnish"
  3141. package="10"
  3142. />
  3143. <otaLanguage
  3144. id="0"
  3145. name="Polish"
  3146. package="11"
  3147. />
  3148. </otaLanguages>
  3149. <otaPackages>
  3150. <package
  3151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3152. size="5183988"
  3153. />
  3154. <package
  3155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3156. size="5183988"
  3157. />
  3158. <package
  3159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3160. size="5183988"
  3161. />
  3162. <package
  3163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3164. size="5183988"
  3165. />
  3166. <package
  3167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3168. size="5183988"
  3169. />
  3170. <package
  3171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3172. size="5183988"
  3173. />
  3174. <package
  3175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3176. size="5183988"
  3177. />
  3178. <package
  3179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3180. size="5183988"
  3181. />
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3196. size="5183988"
  3197. />
  3198. </otaPackages>
  3199. </productMenu>
  3200. <productMenu id="wa"
  3201. type="0" >
  3202. </productMenu>
  3203. <productMenu id="led"
  3204. type="5" >
  3205. </productMenu>
  3206. <productMenu id="led+"
  3207. type="2"
  3208. url="1" >
  3209. </productMenu>
  3210. <productMenu id="meshIntercom"
  3211. type="30" >
  3212. </productMenu>
  3213. <productMenu id="meshIntercom+"
  3214. type="3"
  3215. url="2" >
  3216. </productMenu>
  3217. <productMenu id="waveIntercom"
  3218. type="1" >
  3219. </productMenu>
  3220. <productMenu id="fmradio"
  3221. type="0" >
  3222. </productMenu>
  3223. <productMenu id="phone"
  3224. type="1" >
  3225. </productMenu>
  3226. <productMenu id="music"
  3227. type="1" >
  3228. </productMenu>
  3229. <productMenu id="musicSharing"
  3230. type="0" >
  3231. </productMenu>
  3232. <productMenu id="deviceSetting"
  3233. type="1"
  3234. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3235. </productMenu>
  3236. <productMenu id="quickGuide"
  3237. type="0"
  3238. url=""
  3239. size="1.12MB" >
  3240. </productMenu>
  3241. <productMenu id="userGuide"
  3242. type="1"
  3243. url=""
  3244. size="2.0MB" >
  3245. </productMenu>
  3246. <productMenu id="videoGuide"
  3247. type="0"
  3248. url=""
  3249. size="3.41MB" >
  3250. </productMenu>
  3251. <productMenu id="volume"
  3252. type="16" >
  3253. </productMenu>
  3254. <productMenu id="battery"
  3255. type="1" >
  3256. </productMenu>
  3257. <productID id="6A09"
  3258. />
  3259. <productGroupable type="0"
  3260. />
  3261. </product>
  3262. <product id="PHANTOM"
  3263. name="PHANTOM ANC"
  3264. series="Helmet"
  3265. latestVersion="1.2.7"
  3266. latestVersionVoicePrompt="1.5"
  3267. show = "1" >
  3268. <productMenu id="protocol"
  3269. type="2" >
  3270. </productMenu>
  3271. <productMenu id="ota"
  3272. type="2" >
  3273. <productMenuType version="0.6.9"
  3274. type="0"
  3275. />
  3276. <otaLanguages>
  3277. <otaLanguage
  3278. id="0"
  3279. name="English"
  3280. package="0"
  3281. />
  3282. <otaLanguage
  3283. id="0"
  3284. name="French"
  3285. package="1"
  3286. />
  3287. <otaLanguage
  3288. id="0"
  3289. name="Spanish"
  3290. package="2"
  3291. />
  3292. <otaLanguage
  3293. id="0"
  3294. name="Italian"
  3295. package="3"
  3296. />
  3297. <otaLanguage
  3298. id="0"
  3299. name="German"
  3300. package="4"
  3301. />
  3302. <otaLanguage
  3303. id="0"
  3304. name="Dutch"
  3305. package="5"
  3306. />
  3307. <otaLanguage
  3308. id="0"
  3309. name="Russian"
  3310. package="6"
  3311. />
  3312. <otaLanguage
  3313. id="0"
  3314. name="Chinese"
  3315. package="7"
  3316. />
  3317. <otaLanguage
  3318. id="0"
  3319. name="Korean"
  3320. package="8"
  3321. />
  3322. <otaLanguage
  3323. id="0"
  3324. name="Japanese"
  3325. package="9"
  3326. />
  3327. <otaLanguage
  3328. id="0"
  3329. name="Finnish"
  3330. package="10"
  3331. />
  3332. <otaLanguage
  3333. id="0"
  3334. name="Polish"
  3335. package="11"
  3336. />
  3337. </otaLanguages>
  3338. <otaPackages>
  3339. <package
  3340. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3341. size="5183988"
  3342. />
  3343. <package
  3344. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3345. size="5183988"
  3346. />
  3347. <package
  3348. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3349. size="5183988"
  3350. />
  3351. <package
  3352. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3353. size="5183988"
  3354. />
  3355. <package
  3356. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3357. size="5183988"
  3358. />
  3359. <package
  3360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3361. size="5183988"
  3362. />
  3363. <package
  3364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3365. size="5183988"
  3366. />
  3367. <package
  3368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3369. size="5183988"
  3370. />
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3385. size="5183988"
  3386. />
  3387. </otaPackages>
  3388. </productMenu>
  3389. <productMenu id="wa"
  3390. type="0" >
  3391. </productMenu>
  3392. <productMenu id="led"
  3393. type="5" >
  3394. </productMenu>
  3395. <productMenu id="led+"
  3396. type="2"
  3397. url="1" >
  3398. </productMenu>
  3399. <productMenu id="meshIntercom"
  3400. type="30" >
  3401. </productMenu>
  3402. <productMenu id="meshIntercom+"
  3403. type="3"
  3404. url="2" >
  3405. <productMenuURL version="1.0.4"
  3406. url="10"
  3407. />
  3408. </productMenu>
  3409. <productMenu id="waveIntercom"
  3410. type="1" >
  3411. <productMenuType version="1.0.9"
  3412. type="0"
  3413. />
  3414. </productMenu>
  3415. <productMenu id="fmradio"
  3416. type="0" >
  3417. </productMenu>
  3418. <productMenu id="phone"
  3419. type="1" >
  3420. </productMenu>
  3421. <productMenu id="music"
  3422. type="1" >
  3423. </productMenu>
  3424. <productMenu id="musicSharing"
  3425. type="0" >
  3426. </productMenu>
  3427. <productMenu id="deviceSetting"
  3428. type="1"
  3429. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3430. <productMenuURL version="1.2.4"
  3431. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3432. />
  3433. <productMenuURL version="1.2.1"
  3434. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3435. />
  3436. <productMenuURL version="1.1.2"
  3437. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3438. />
  3439. <productMenuURL version="1.0.4"
  3440. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3441. />
  3442. </productMenu>
  3443. <productMenu id="quickGuide"
  3444. type="0"
  3445. url=""
  3446. size="1.12MB" >
  3447. </productMenu>
  3448. <productMenu id="userGuide"
  3449. type="1"
  3450. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3451. size="2.0MB" >
  3452. </productMenu>
  3453. <productMenu id="videoGuide"
  3454. type="0"
  3455. url=""
  3456. size="3.41MB" >
  3457. </productMenu>
  3458. <productMenu id="volume"
  3459. type="16" >
  3460. </productMenu>
  3461. <productMenu id="volume+"
  3462. type="2"
  3463. url="0x6004" >
  3464. </productMenu>
  3465. <productMenu id="soundMode"
  3466. type="1" >
  3467. <productMenuType version="0.9.11"
  3468. type="0"
  3469. />
  3470. </productMenu>
  3471. <productMenu id="battery"
  3472. type="1" >
  3473. </productMenu>
  3474. <productID id="6A01"
  3475. />
  3476. <productGroupable type="0"
  3477. />
  3478. </product>
  3479. <product id="PHANTOM"
  3480. name="PHANTOM ANC"
  3481. series="Helmet"
  3482. latestVersion="1.2.7"
  3483. latestVersionVoicePrompt="1.5"
  3484. show = "-1" >
  3485. <productMenu id="protocol"
  3486. type="2" >
  3487. </productMenu>
  3488. <productMenu id="ota"
  3489. type="2" >
  3490. <otaLanguages>
  3491. <otaLanguage
  3492. id="0"
  3493. name="English"
  3494. package="0"
  3495. />
  3496. <otaLanguage
  3497. id="0"
  3498. name="French"
  3499. package="1"
  3500. />
  3501. <otaLanguage
  3502. id="0"
  3503. name="Spanish"
  3504. package="2"
  3505. />
  3506. <otaLanguage
  3507. id="0"
  3508. name="Italian"
  3509. package="3"
  3510. />
  3511. <otaLanguage
  3512. id="0"
  3513. name="German"
  3514. package="4"
  3515. />
  3516. <otaLanguage
  3517. id="0"
  3518. name="Dutch"
  3519. package="5"
  3520. />
  3521. <otaLanguage
  3522. id="0"
  3523. name="Russian"
  3524. package="6"
  3525. />
  3526. <otaLanguage
  3527. id="0"
  3528. name="Chinese"
  3529. package="7"
  3530. />
  3531. <otaLanguage
  3532. id="0"
  3533. name="Korean"
  3534. package="8"
  3535. />
  3536. <otaLanguage
  3537. id="0"
  3538. name="Japanese"
  3539. package="9"
  3540. />
  3541. <otaLanguage
  3542. id="0"
  3543. name="Finnish"
  3544. package="10"
  3545. />
  3546. <otaLanguage
  3547. id="0"
  3548. name="Polish"
  3549. package="11"
  3550. />
  3551. </otaLanguages>
  3552. <otaPackages>
  3553. <package
  3554. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3555. size="5183988"
  3556. />
  3557. <package
  3558. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3559. size="5183988"
  3560. />
  3561. <package
  3562. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3563. size="5183988"
  3564. />
  3565. <package
  3566. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3567. size="5183988"
  3568. />
  3569. <package
  3570. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3571. size="5183988"
  3572. />
  3573. <package
  3574. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3575. size="5183988"
  3576. />
  3577. <package
  3578. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3579. size="5183988"
  3580. />
  3581. <package
  3582. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3583. size="5183988"
  3584. />
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3599. size="5183988"
  3600. />
  3601. </otaPackages>
  3602. </productMenu>
  3603. <productMenu id="led"
  3604. type="5" >
  3605. </productMenu>
  3606. <productMenu id="led+"
  3607. type="2"
  3608. url="1" >
  3609. </productMenu>
  3610. <productMenu id="meshIntercom"
  3611. type="30" >
  3612. </productMenu>
  3613. <productMenu id="meshIntercom+"
  3614. type="3"
  3615. url="2" >
  3616. </productMenu>
  3617. <productMenu id="waveIntercom"
  3618. type="1" >
  3619. </productMenu>
  3620. <productMenu id="fmradio"
  3621. type="0" >
  3622. </productMenu>
  3623. <productMenu id="phone"
  3624. type="1" >
  3625. </productMenu>
  3626. <productMenu id="music"
  3627. type="1" >
  3628. </productMenu>
  3629. <productMenu id="musicSharing"
  3630. type="0" >
  3631. </productMenu>
  3632. <productMenu id="deviceSetting"
  3633. type="1"
  3634. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3635. <productMenuURL version="1.2.4"
  3636. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3637. />
  3638. </productMenu>
  3639. <productMenu id="quickGuide"
  3640. type="0"
  3641. url=""
  3642. size="1.12MB" >
  3643. </productMenu>
  3644. <productMenu id="userGuide"
  3645. type="1"
  3646. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3647. size="2.0MB" >
  3648. </productMenu>
  3649. <productMenu id="videoGuide"
  3650. type="0"
  3651. url=""
  3652. size="3.41MB" >
  3653. </productMenu>
  3654. <productMenu id="volume"
  3655. type="16" >
  3656. </productMenu>
  3657. <productMenu id="volume+"
  3658. type="2"
  3659. url="0x6004" >
  3660. </productMenu>
  3661. <productMenu id="soundMode"
  3662. type="1" >
  3663. </productMenu>
  3664. <productMenu id="battery"
  3665. type="1" >
  3666. </productMenu>
  3667. <productID id="6A19"
  3668. />
  3669. <productGroupable type="0"
  3670. />
  3671. </product>
  3672. <product id="PHANTOM"
  3673. name="PHANTOM"
  3674. series="Helmet"
  3675. latestVersion="1.2.7"
  3676. latestVersionVoicePrompt="1.5"
  3677. show = "-1" >
  3678. <productMenu id="protocol"
  3679. type="2" >
  3680. </productMenu>
  3681. <productMenu id="ota"
  3682. type="2" >
  3683. <otaLanguages>
  3684. <otaLanguage
  3685. id="0"
  3686. name="English"
  3687. package="0"
  3688. />
  3689. <otaLanguage
  3690. id="0"
  3691. name="French"
  3692. package="1"
  3693. />
  3694. <otaLanguage
  3695. id="0"
  3696. name="Spanish"
  3697. package="2"
  3698. />
  3699. <otaLanguage
  3700. id="0"
  3701. name="Italian"
  3702. package="3"
  3703. />
  3704. <otaLanguage
  3705. id="0"
  3706. name="German"
  3707. package="4"
  3708. />
  3709. <otaLanguage
  3710. id="0"
  3711. name="Dutch"
  3712. package="5"
  3713. />
  3714. <otaLanguage
  3715. id="0"
  3716. name="Russian"
  3717. package="6"
  3718. />
  3719. <otaLanguage
  3720. id="0"
  3721. name="Chinese"
  3722. package="7"
  3723. />
  3724. <otaLanguage
  3725. id="0"
  3726. name="Korean"
  3727. package="8"
  3728. />
  3729. <otaLanguage
  3730. id="0"
  3731. name="Japanese"
  3732. package="9"
  3733. />
  3734. <otaLanguage
  3735. id="0"
  3736. name="Finnish"
  3737. package="10"
  3738. />
  3739. <otaLanguage
  3740. id="0"
  3741. name="Polish"
  3742. package="11"
  3743. />
  3744. </otaLanguages>
  3745. <otaPackages>
  3746. <package
  3747. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3748. size="5183988"
  3749. />
  3750. <package
  3751. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3752. size="5183988"
  3753. />
  3754. <package
  3755. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3756. size="5183988"
  3757. />
  3758. <package
  3759. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3760. size="5183988"
  3761. />
  3762. <package
  3763. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3764. size="5183988"
  3765. />
  3766. <package
  3767. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3768. size="5183988"
  3769. />
  3770. <package
  3771. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3772. size="5183988"
  3773. />
  3774. <package
  3775. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3776. size="5183988"
  3777. />
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3792. size="5183988"
  3793. />
  3794. </otaPackages>
  3795. </productMenu>
  3796. <productMenu id="wa"
  3797. type="0" >
  3798. </productMenu>
  3799. <productMenu id="led"
  3800. type="5" >
  3801. </productMenu>
  3802. <productMenu id="led+"
  3803. type="2"
  3804. url="1" >
  3805. </productMenu>
  3806. <productMenu id="meshIntercom"
  3807. type="30" >
  3808. </productMenu>
  3809. <productMenu id="meshIntercom+"
  3810. type="3"
  3811. url="2" >
  3812. </productMenu>
  3813. <productMenu id="waveIntercom"
  3814. type="1" >
  3815. </productMenu>
  3816. <productMenu id="fmradio"
  3817. type="0" >
  3818. </productMenu>
  3819. <productMenu id="phone"
  3820. type="1" >
  3821. </productMenu>
  3822. <productMenu id="music"
  3823. type="1" >
  3824. </productMenu>
  3825. <productMenu id="musicSharing"
  3826. type="0" >
  3827. </productMenu>
  3828. <productMenu id="deviceSetting"
  3829. type="1"
  3830. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3831. <productMenuURL version="1.2.4"
  3832. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3833. />
  3834. </productMenu>
  3835. <productMenu id="quickGuide"
  3836. type="0"
  3837. url=""
  3838. size="1.52MB" >
  3839. </productMenu>
  3840. <productMenu id="userGuide"
  3841. type="1"
  3842. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3843. size="2.01MB" >
  3844. </productMenu>
  3845. <productMenu id="videoGuide"
  3846. type="0"
  3847. url=""
  3848. size="3.46MB" >
  3849. </productMenu>
  3850. <productMenu id="connectGuide"
  3851. type="1"
  3852. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3853. size="1.1MB" >
  3854. </productMenu>
  3855. <productMenu id="volume"
  3856. type="16" >
  3857. </productMenu>
  3858. <productMenu id="volume+"
  3859. type="2"
  3860. url="0x6004" >
  3861. </productMenu>
  3862. <productMenu id="battery"
  3863. type="1" >
  3864. </productMenu>
  3865. <productID id="6A0E"
  3866. />
  3867. <productGroupable type="0"
  3868. />
  3869. </product>
  3870. <product id="PHANTOM"
  3871. name="PHANTOM"
  3872. series="Helmet"
  3873. latestVersion="1.2.7"
  3874. latestVersionVoicePrompt="1.5"
  3875. show = "1" >
  3876. <productMenu id="protocol"
  3877. type="2" >
  3878. </productMenu>
  3879. <productMenu id="ota"
  3880. type="2" >
  3881. <otaLanguages>
  3882. <otaLanguage
  3883. id="0"
  3884. name="English"
  3885. package="0"
  3886. />
  3887. <otaLanguage
  3888. id="0"
  3889. name="French"
  3890. package="1"
  3891. />
  3892. <otaLanguage
  3893. id="0"
  3894. name="Spanish"
  3895. package="2"
  3896. />
  3897. <otaLanguage
  3898. id="0"
  3899. name="Italian"
  3900. package="3"
  3901. />
  3902. <otaLanguage
  3903. id="0"
  3904. name="German"
  3905. package="4"
  3906. />
  3907. <otaLanguage
  3908. id="0"
  3909. name="Dutch"
  3910. package="5"
  3911. />
  3912. <otaLanguage
  3913. id="0"
  3914. name="Russian"
  3915. package="6"
  3916. />
  3917. <otaLanguage
  3918. id="0"
  3919. name="Chinese"
  3920. package="7"
  3921. />
  3922. <otaLanguage
  3923. id="0"
  3924. name="Korean"
  3925. package="8"
  3926. />
  3927. <otaLanguage
  3928. id="0"
  3929. name="Japanese"
  3930. package="9"
  3931. />
  3932. <otaLanguage
  3933. id="0"
  3934. name="Finnish"
  3935. package="10"
  3936. />
  3937. <otaLanguage
  3938. id="0"
  3939. name="Polish"
  3940. package="11"
  3941. />
  3942. </otaLanguages>
  3943. <otaPackages>
  3944. <package
  3945. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3946. size="5183988"
  3947. />
  3948. <package
  3949. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3950. size="5183988"
  3951. />
  3952. <package
  3953. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3954. size="5183988"
  3955. />
  3956. <package
  3957. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3958. size="5183988"
  3959. />
  3960. <package
  3961. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3962. size="5183988"
  3963. />
  3964. <package
  3965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3966. size="5183988"
  3967. />
  3968. <package
  3969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3970. size="5183988"
  3971. />
  3972. <package
  3973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3974. size="5183988"
  3975. />
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3990. size="5183988"
  3991. />
  3992. </otaPackages>
  3993. </productMenu>
  3994. <productMenu id="wa"
  3995. type="0" >
  3996. </productMenu>
  3997. <productMenu id="led"
  3998. type="5" >
  3999. <productMenuType version="1.0.1"
  4000. type="4"
  4001. />
  4002. </productMenu>
  4003. <productMenu id="led+"
  4004. type="2"
  4005. url="1" >
  4006. <productMenuType version="1.0.1"
  4007. type="-1"
  4008. />
  4009. </productMenu>
  4010. <productMenu id="meshIntercom"
  4011. type="30" >
  4012. </productMenu>
  4013. <productMenu id="meshIntercom+"
  4014. type="3"
  4015. url="2" >
  4016. <productMenuURL version="1.0.4"
  4017. url="10"
  4018. />
  4019. </productMenu>
  4020. <productMenu id="waveIntercom"
  4021. type="1" >
  4022. <productMenuType version="1.0.9"
  4023. type="0"
  4024. />
  4025. </productMenu>
  4026. <productMenu id="fmradio"
  4027. type="0" >
  4028. </productMenu>
  4029. <productMenu id="phone"
  4030. type="1" >
  4031. </productMenu>
  4032. <productMenu id="music"
  4033. type="1" >
  4034. </productMenu>
  4035. <productMenu id="musicSharing"
  4036. type="0" >
  4037. </productMenu>
  4038. <productMenu id="deviceSetting"
  4039. type="1"
  4040. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4041. <productMenuURL version="1.2.4"
  4042. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4043. />
  4044. <productMenuURL version="1.2.1"
  4045. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4046. />
  4047. <productMenuURL version="1.0.4"
  4048. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4049. />
  4050. <productMenuURL version="1.0.1"
  4051. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4052. />
  4053. </productMenu>
  4054. <productMenu id="quickGuide"
  4055. type="0"
  4056. url=""
  4057. size="1.12MB" >
  4058. </productMenu>
  4059. <productMenu id="userGuide"
  4060. type="1"
  4061. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4062. size="2.0MB" >
  4063. </productMenu>
  4064. <productMenu id="videoGuide"
  4065. type="0"
  4066. url=""
  4067. size="3.41MB" >
  4068. </productMenu>
  4069. <productMenu id="connectGuide"
  4070. type="1"
  4071. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4072. size="1.12MB" >
  4073. </productMenu>
  4074. <productMenu id="volume"
  4075. type="16" >
  4076. <productMenuType version="1.0"
  4077. type="13"
  4078. />
  4079. </productMenu>
  4080. <productMenu id="volume+"
  4081. type="2"
  4082. url="0x6004" >
  4083. </productMenu>
  4084. <productMenu id="battery"
  4085. type="1" >
  4086. </productMenu>
  4087. <productID id="6A04"
  4088. />
  4089. <productGroupable type="0"
  4090. />
  4091. </product>
  4092. <product id="PHANTOMEasyLink"
  4093. name="PHANTOM EasyLink"
  4094. series="Helmet"
  4095. latestVersion="0.1"
  4096. latestVersionVoicePrompt="1.2"
  4097. show = "-1" >
  4098. <productMenu id="protocol"
  4099. type="2" >
  4100. </productMenu>
  4101. <productMenu id="ota"
  4102. type="0" >
  4103. <otaLanguages>
  4104. <otaLanguage
  4105. id="0"
  4106. name="English"
  4107. package="0"
  4108. />
  4109. <otaLanguage
  4110. id="0"
  4111. name="French"
  4112. package="1"
  4113. />
  4114. <otaLanguage
  4115. id="0"
  4116. name="Spanish"
  4117. package="2"
  4118. />
  4119. <otaLanguage
  4120. id="0"
  4121. name="Italian"
  4122. package="3"
  4123. />
  4124. <otaLanguage
  4125. id="0"
  4126. name="German"
  4127. package="4"
  4128. />
  4129. <otaLanguage
  4130. id="0"
  4131. name="Dutch"
  4132. package="5"
  4133. />
  4134. <otaLanguage
  4135. id="0"
  4136. name="Russian"
  4137. package="6"
  4138. />
  4139. <otaLanguage
  4140. id="0"
  4141. name="Chinese"
  4142. package="7"
  4143. />
  4144. <otaLanguage
  4145. id="0"
  4146. name="Korean"
  4147. package="8"
  4148. />
  4149. <otaLanguage
  4150. id="0"
  4151. name="Japanese"
  4152. package="9"
  4153. />
  4154. <otaLanguage
  4155. id="0"
  4156. name="Finnish"
  4157. package="10"
  4158. />
  4159. <otaLanguage
  4160. id="0"
  4161. name="Polish"
  4162. package="11"
  4163. />
  4164. </otaLanguages>
  4165. <otaPackages>
  4166. <package
  4167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4168. size="5183988"
  4169. />
  4170. <package
  4171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4172. size="5183988"
  4173. />
  4174. <package
  4175. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4176. size="5183988"
  4177. />
  4178. <package
  4179. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4180. size="5183988"
  4181. />
  4182. <package
  4183. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4184. size="5183988"
  4185. />
  4186. <package
  4187. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4188. size="5183988"
  4189. />
  4190. <package
  4191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4192. size="5183988"
  4193. />
  4194. <package
  4195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4196. size="5183988"
  4197. />
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4212. size="5183988"
  4213. />
  4214. </otaPackages>
  4215. </productMenu>
  4216. <productMenu id="meshIntercom"
  4217. type="30" >
  4218. </productMenu>
  4219. <productMenu id="meshIntercom+"
  4220. type="3"
  4221. url="2" >
  4222. </productMenu>
  4223. <productMenu id="waveIntercom"
  4224. type="1" >
  4225. </productMenu>
  4226. <productMenu id="fmradio"
  4227. type="0" >
  4228. </productMenu>
  4229. <productMenu id="phone"
  4230. type="1" >
  4231. </productMenu>
  4232. <productMenu id="music"
  4233. type="1" >
  4234. </productMenu>
  4235. <productMenu id="musicSharing"
  4236. type="0" >
  4237. </productMenu>
  4238. <productMenu id="deviceSetting"
  4239. type="1"
  4240. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4241. </productMenu>
  4242. <productMenu id="quickGuide"
  4243. type="0"
  4244. url=""
  4245. size="1.12MB" >
  4246. </productMenu>
  4247. <productMenu id="userGuide"
  4248. type="1"
  4249. url=""
  4250. size="2.0MB" >
  4251. </productMenu>
  4252. <productMenu id="videoGuide"
  4253. type="0"
  4254. url=""
  4255. size="3.41MB" >
  4256. </productMenu>
  4257. <productMenu id="connectGuide"
  4258. type="0"
  4259. url=""
  4260. size="1.12MB" >
  4261. </productMenu>
  4262. <productMenu id="volume"
  4263. type="16" >
  4264. </productMenu>
  4265. <productMenu id="battery"
  4266. type="1" >
  4267. </productMenu>
  4268. <productID id="6A18"
  4269. />
  4270. <productGroupable type="0"
  4271. />
  4272. </product>
  4273. <product id="SPIDERXSlim"
  4274. name="SPIDER X Slim"
  4275. series="SPIDER"
  4276. latestVersion="0.9"
  4277. latestVersionVoicePrompt="1.2"
  4278. show = "-1" >
  4279. <productMenu id="protocol"
  4280. type="2" >
  4281. </productMenu>
  4282. <productMenu id="ota"
  4283. type="2" >
  4284. <otaLanguages>
  4285. <otaLanguage
  4286. id="0"
  4287. name="English"
  4288. package="0"
  4289. />
  4290. <otaLanguage
  4291. id="0"
  4292. name="French"
  4293. package="1"
  4294. />
  4295. <otaLanguage
  4296. id="0"
  4297. name="Spanish"
  4298. package="2"
  4299. />
  4300. <otaLanguage
  4301. id="0"
  4302. name="Italian"
  4303. package="3"
  4304. />
  4305. <otaLanguage
  4306. id="0"
  4307. name="German"
  4308. package="4"
  4309. />
  4310. <otaLanguage
  4311. id="0"
  4312. name="Dutch"
  4313. package="5"
  4314. />
  4315. <otaLanguage
  4316. id="0"
  4317. name="Russian"
  4318. package="6"
  4319. />
  4320. <otaLanguage
  4321. id="0"
  4322. name="Chinese"
  4323. package="7"
  4324. />
  4325. <otaLanguage
  4326. id="0"
  4327. name="Korean"
  4328. package="8"
  4329. />
  4330. <otaLanguage
  4331. id="0"
  4332. name="Japanese"
  4333. package="9"
  4334. />
  4335. <otaLanguage
  4336. id="0"
  4337. name="Finnish"
  4338. package="10"
  4339. />
  4340. <otaLanguage
  4341. id="0"
  4342. name="Polish"
  4343. package="11"
  4344. />
  4345. </otaLanguages>
  4346. <otaPackages>
  4347. <package
  4348. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4349. size="5183988"
  4350. />
  4351. <package
  4352. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4353. size="5183988"
  4354. />
  4355. <package
  4356. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4357. size="5183988"
  4358. />
  4359. <package
  4360. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4361. size="5183988"
  4362. />
  4363. <package
  4364. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4365. size="5183988"
  4366. />
  4367. <package
  4368. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4369. size="5183988"
  4370. />
  4371. <package
  4372. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4373. size="5183988"
  4374. />
  4375. <package
  4376. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4377. size="5183988"
  4378. />
  4379. <package
  4380. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4393. size="5183988"
  4394. />
  4395. </otaPackages>
  4396. </productMenu>
  4397. <productMenu id="meshIntercom"
  4398. type="30" >
  4399. </productMenu>
  4400. <productMenu id="meshIntercom+"
  4401. type="3"
  4402. url="2" >
  4403. </productMenu>
  4404. <productMenu id="waveIntercom"
  4405. type="1" >
  4406. </productMenu>
  4407. <productMenu id="fmradio"
  4408. type="1"
  4409. url="1" >
  4410. </productMenu>
  4411. <productMenu id="phone"
  4412. type="1" >
  4413. </productMenu>
  4414. <productMenu id="music"
  4415. type="1" >
  4416. </productMenu>
  4417. <productMenu id="musicSharing"
  4418. type="0" >
  4419. </productMenu>
  4420. <productMenu id="deviceSetting"
  4421. type="1"
  4422. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4423. </productMenu>
  4424. <productMenu id="quickGuide"
  4425. type="0"
  4426. url=""
  4427. size="1.12MB" >
  4428. </productMenu>
  4429. <productMenu id="userGuide"
  4430. type="1"
  4431. url=""
  4432. size="2.0MB" >
  4433. </productMenu>
  4434. <productMenu id="videoGuide"
  4435. type="0"
  4436. url=""
  4437. size="3.41MB" >
  4438. </productMenu>
  4439. <productMenu id="volume"
  4440. type="16" >
  4441. </productMenu>
  4442. <productMenu id="volume+"
  4443. type="2"
  4444. url="0x6004" >
  4445. </productMenu>
  4446. <productMenu id="appearance"
  4447. type="1"
  4448. url="2|white,silver,chrome,black" >
  4449. </productMenu>
  4450. <productMenu id="battery"
  4451. type="1" >
  4452. </productMenu>
  4453. <productID id="6A07"
  4454. />
  4455. <productGroupable type="0"
  4456. />
  4457. </product>
  4458. <product id="XFITM"
  4459. name="X-FIT M"
  4460. series="SPIDER"
  4461. latestVersion="0.1.11"
  4462. latestVersionVoicePrompt="1.1"
  4463. show = "-1" >
  4464. <productMenu id="protocol"
  4465. type="2" >
  4466. </productMenu>
  4467. <productMenu id="ota"
  4468. type="0" >
  4469. <otaLanguages>
  4470. <otaLanguage
  4471. id="0"
  4472. name="English"
  4473. package="0"
  4474. />
  4475. <otaLanguage
  4476. id="0"
  4477. name="French"
  4478. package="1"
  4479. />
  4480. <otaLanguage
  4481. id="0"
  4482. name="Spanish"
  4483. package="2"
  4484. />
  4485. <otaLanguage
  4486. id="0"
  4487. name="Italian"
  4488. package="3"
  4489. />
  4490. <otaLanguage
  4491. id="0"
  4492. name="German"
  4493. package="4"
  4494. />
  4495. <otaLanguage
  4496. id="0"
  4497. name="Dutch"
  4498. package="5"
  4499. />
  4500. <otaLanguage
  4501. id="0"
  4502. name="Russian"
  4503. package="6"
  4504. />
  4505. <otaLanguage
  4506. id="0"
  4507. name="Chinese"
  4508. package="7"
  4509. />
  4510. <otaLanguage
  4511. id="0"
  4512. name="Korean"
  4513. package="8"
  4514. />
  4515. <otaLanguage
  4516. id="0"
  4517. name="Japanese"
  4518. package="9"
  4519. />
  4520. <otaLanguage
  4521. id="0"
  4522. name="Finnish"
  4523. package="10"
  4524. />
  4525. <otaLanguage
  4526. id="0"
  4527. name="Polish"
  4528. package="11"
  4529. />
  4530. </otaLanguages>
  4531. <otaPackages>
  4532. <package
  4533. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4534. size="5183988"
  4535. />
  4536. <package
  4537. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4538. size="5183988"
  4539. />
  4540. <package
  4541. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4542. size="5183988"
  4543. />
  4544. <package
  4545. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4546. size="5183988"
  4547. />
  4548. <package
  4549. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4550. size="5183988"
  4551. />
  4552. <package
  4553. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4554. size="5183988"
  4555. />
  4556. <package
  4557. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4558. size="5183988"
  4559. />
  4560. <package
  4561. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4562. size="5183988"
  4563. />
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4578. size="5183988"
  4579. />
  4580. </otaPackages>
  4581. </productMenu>
  4582. <productMenu id="meshIntercom"
  4583. type="30" >
  4584. </productMenu>
  4585. <productMenu id="meshIntercom+"
  4586. type="3"
  4587. url="2" >
  4588. </productMenu>
  4589. <productMenu id="waveIntercom"
  4590. type="1" >
  4591. </productMenu>
  4592. <productMenu id="fmradio"
  4593. type="1"
  4594. url="1" >
  4595. </productMenu>
  4596. <productMenu id="phone"
  4597. type="1" >
  4598. </productMenu>
  4599. <productMenu id="music"
  4600. type="1" >
  4601. </productMenu>
  4602. <productMenu id="musicSharing"
  4603. type="0" >
  4604. </productMenu>
  4605. <productMenu id="deviceSetting"
  4606. type="1"
  4607. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4608. </productMenu>
  4609. <productMenu id="quickGuide"
  4610. type="0"
  4611. url=""
  4612. size="1.12MB" >
  4613. </productMenu>
  4614. <productMenu id="userGuide"
  4615. type="1"
  4616. url=""
  4617. size="2.0MB" >
  4618. </productMenu>
  4619. <productMenu id="videoGuide"
  4620. type="0"
  4621. url=""
  4622. size="3.41MB" >
  4623. </productMenu>
  4624. <productMenu id="volume"
  4625. type="16" >
  4626. </productMenu>
  4627. <productMenu id="volume+"
  4628. type="2"
  4629. url="0x6004" >
  4630. </productMenu>
  4631. <productMenu id="battery"
  4632. type="1" >
  4633. </productMenu>
  4634. <productID id="6A17"
  4635. />
  4636. <productGroupable type="0"
  4637. />
  4638. </product>
  4639. <product id="VORTEXMESH"
  4640. name="VORTEX MESH"
  4641. series="Helmet"
  4642. latestVersion="0.1.11"
  4643. latestVersionVoicePrompt="1.1"
  4644. show = "-1" >
  4645. <productMenu id="protocol"
  4646. type="2" >
  4647. </productMenu>
  4648. <productMenu id="ota"
  4649. type="0" >
  4650. <otaLanguages>
  4651. <otaLanguage
  4652. id="0"
  4653. name="English"
  4654. package="0"
  4655. />
  4656. <otaLanguage
  4657. id="0"
  4658. name="French"
  4659. package="1"
  4660. />
  4661. <otaLanguage
  4662. id="0"
  4663. name="Spanish"
  4664. package="2"
  4665. />
  4666. <otaLanguage
  4667. id="0"
  4668. name="Italian"
  4669. package="3"
  4670. />
  4671. <otaLanguage
  4672. id="0"
  4673. name="German"
  4674. package="4"
  4675. />
  4676. <otaLanguage
  4677. id="0"
  4678. name="Dutch"
  4679. package="5"
  4680. />
  4681. <otaLanguage
  4682. id="0"
  4683. name="Russian"
  4684. package="6"
  4685. />
  4686. <otaLanguage
  4687. id="0"
  4688. name="Chinese"
  4689. package="7"
  4690. />
  4691. <otaLanguage
  4692. id="0"
  4693. name="Korean"
  4694. package="8"
  4695. />
  4696. <otaLanguage
  4697. id="0"
  4698. name="Japanese"
  4699. package="9"
  4700. />
  4701. <otaLanguage
  4702. id="0"
  4703. name="Finnish"
  4704. package="10"
  4705. />
  4706. <otaLanguage
  4707. id="0"
  4708. name="Polish"
  4709. package="11"
  4710. />
  4711. </otaLanguages>
  4712. <otaPackages>
  4713. <package
  4714. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4715. size="5183988"
  4716. />
  4717. <package
  4718. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4719. size="5183988"
  4720. />
  4721. <package
  4722. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4723. size="5183988"
  4724. />
  4725. <package
  4726. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4727. size="5183988"
  4728. />
  4729. <package
  4730. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4731. size="5183988"
  4732. />
  4733. <package
  4734. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4735. size="5183988"
  4736. />
  4737. <package
  4738. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4739. size="5183988"
  4740. />
  4741. <package
  4742. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4743. size="5183988"
  4744. />
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4759. size="5183988"
  4760. />
  4761. </otaPackages>
  4762. </productMenu>
  4763. <productMenu id="wa"
  4764. type="0" >
  4765. </productMenu>
  4766. <productMenu id="led"
  4767. type="5" >
  4768. </productMenu>
  4769. <productMenu id="led+"
  4770. type="2"
  4771. url="1" >
  4772. </productMenu>
  4773. <productMenu id="meshIntercom"
  4774. type="30" >
  4775. </productMenu>
  4776. <productMenu id="meshIntercom+"
  4777. type="3"
  4778. url="2" >
  4779. </productMenu>
  4780. <productMenu id="waveIntercom"
  4781. type="1" >
  4782. </productMenu>
  4783. <productMenu id="fmradio"
  4784. type="0" >
  4785. </productMenu>
  4786. <productMenu id="phone"
  4787. type="1" >
  4788. </productMenu>
  4789. <productMenu id="music"
  4790. type="1" >
  4791. </productMenu>
  4792. <productMenu id="musicSharing"
  4793. type="0" >
  4794. </productMenu>
  4795. <productMenu id="deviceSetting"
  4796. type="1"
  4797. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4798. </productMenu>
  4799. <productMenu id="quickGuide"
  4800. type="0"
  4801. url=""
  4802. size="1.12MB" >
  4803. </productMenu>
  4804. <productMenu id="userGuide"
  4805. type="1"
  4806. url=""
  4807. size="2.0MB" >
  4808. </productMenu>
  4809. <productMenu id="videoGuide"
  4810. type="0"
  4811. url=""
  4812. size="3.41MB" >
  4813. </productMenu>
  4814. <productMenu id="volume"
  4815. type="16" >
  4816. </productMenu>
  4817. <productMenu id="battery"
  4818. type="1" >
  4819. </productMenu>
  4820. <productID id="6A12"
  4821. />
  4822. <productGroupable type="0"
  4823. />
  4824. </product>
  4825. <product id="MeshOn"
  4826. name="Mesh ON"
  4827. series="60"
  4828. latestVersion="1.0.1"
  4829. latestVersionVoicePrompt="0.7"
  4830. show = "-1" >
  4831. <productMenu id="protocol"
  4832. type="2" >
  4833. </productMenu>
  4834. <productMenu id="ota"
  4835. type="2" >
  4836. <otaPackages>
  4837. <package
  4838. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4839. size="2945812"
  4840. />
  4841. </otaPackages>
  4842. </productMenu>
  4843. <productMenu id="meshIntercom+"
  4844. type="3"
  4845. url="4" >
  4846. </productMenu>
  4847. <productMenu id="waveIntercom"
  4848. type="0" >
  4849. </productMenu>
  4850. <productMenu id="phone"
  4851. type="0" >
  4852. </productMenu>
  4853. <productMenu id="music"
  4854. type="0" >
  4855. </productMenu>
  4856. <productMenu id="musicSharing"
  4857. type="0" >
  4858. </productMenu>
  4859. <productMenu id="deviceSetting"
  4860. type="1"
  4861. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4862. </productMenu>
  4863. <productMenu id="userGuide"
  4864. type="1"
  4865. url=""
  4866. size="2.0MB" >
  4867. </productMenu>
  4868. <productMenu id="bluetoothHeadset"
  4869. type="1"
  4870. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4871. </productMenu>
  4872. <productMenu id="volume"
  4873. type="0" >
  4874. </productMenu>
  4875. <productMenu id="battery"
  4876. type="1" >
  4877. </productMenu>
  4878. <productID id="684E"
  4879. />
  4880. <productGroupable type="0"
  4881. />
  4882. </product>
  4883. <product id="Impulse"
  4884. name="Impulse"
  4885. series="Helmet"
  4886. latestVersion="1.4.1"
  4887. show = "1" >
  4888. <productMenu id="protocol"
  4889. type="2" >
  4890. </productMenu>
  4891. <productMenu id="alexa"
  4892. type="0" >
  4893. </productMenu>
  4894. <productMenu id="ota"
  4895. type="0" >
  4896. </productMenu>
  4897. <productMenu id="wa"
  4898. type="24" >
  4899. </productMenu>
  4900. <productMenu id="manager"
  4901. type="0" >
  4902. </productMenu>
  4903. <productMenu id="sip"
  4904. type="1" >
  4905. </productMenu>
  4906. <productMenu id="led"
  4907. type="1" >
  4908. <productMenuType version="1.0.1"
  4909. type="2"
  4910. />
  4911. <productMenuType version="1.0"
  4912. type="1"
  4913. />
  4914. </productMenu>
  4915. <productMenu id="meshIntercom"
  4916. type="30" >
  4917. <productMenuType version="1.1.1"
  4918. type="20"
  4919. />
  4920. </productMenu>
  4921. <productMenu id="meshIntercom+"
  4922. type="3"
  4923. url="2" >
  4924. <productMenuType version="1.3.9"
  4925. type="2"
  4926. />
  4927. <productMenuURL version="1.1.1"
  4928. url="0"
  4929. />
  4930. </productMenu>
  4931. <productMenu id="waveIntercom"
  4932. type="1" >
  4933. <productMenuType version="1.3.9"
  4934. type="0"
  4935. />
  4936. </productMenu>
  4937. <productMenu id="bluetoothIntercom"
  4938. type="1" >
  4939. </productMenu>
  4940. <productMenu id="phone"
  4941. type="1" >
  4942. </productMenu>
  4943. <productMenu id="music"
  4944. type="1" >
  4945. </productMenu>
  4946. <productMenu id="fmradio"
  4947. type="1" >
  4948. </productMenu>
  4949. <productMenu id="deviceSetting"
  4950. type="1"
  4951. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4952. <productMenuURL version="1.3.9"
  4953. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4954. />
  4955. <productMenuURL version="1.1.1"
  4956. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4957. />
  4958. <productMenuURL version="1.0.4"
  4959. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4960. />
  4961. </productMenu>
  4962. <productMenu id="quickGuide"
  4963. type="0"
  4964. url=""
  4965. size="344KB" >
  4966. </productMenu>
  4967. <productMenu id="userGuide"
  4968. type="1"
  4969. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4970. size="3.41MB" >
  4971. </productMenu>
  4972. <productMenu id="connectGuide"
  4973. type="1"
  4974. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4975. size="1.12MB" >
  4976. </productMenu>
  4977. <productMenu id="volume"
  4978. type="11" >
  4979. </productMenu>
  4980. <productMenu id="battery"
  4981. type="1" >
  4982. </productMenu>
  4983. <productID id="3148"
  4984. />
  4985. <productGroupable type="0"
  4986. />
  4987. </product>
  4988. <product id="Impulse"
  4989. name="Impulse"
  4990. series="Helmet"
  4991. latestVersion="2.0"
  4992. show = "-1" >
  4993. <productMenu id="protocol"
  4994. type="2" >
  4995. </productMenu>
  4996. <productMenu id="alexa"
  4997. type="0" >
  4998. </productMenu>
  4999. <productMenu id="ota"
  5000. type="0" >
  5001. </productMenu>
  5002. <productMenu id="wa"
  5003. type="8" >
  5004. </productMenu>
  5005. <productMenu id="manager"
  5006. type="0" >
  5007. </productMenu>
  5008. <productMenu id="sip"
  5009. type="1" >
  5010. </productMenu>
  5011. <productMenu id="led"
  5012. type="3" >
  5013. </productMenu>
  5014. <productMenu id="meshIntercom"
  5015. type="20" >
  5016. </productMenu>
  5017. <productMenu id="bluetoothIntercom"
  5018. type="1" >
  5019. </productMenu>
  5020. <productMenu id="phone"
  5021. type="1" >
  5022. </productMenu>
  5023. <productMenu id="music"
  5024. type="1" >
  5025. </productMenu>
  5026. <productMenu id="fmradio"
  5027. type="1" >
  5028. </productMenu>
  5029. <productMenu id="deviceSetting"
  5030. type="1"
  5031. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5032. </productMenu>
  5033. <productMenu id="quickGuide"
  5034. type="1"
  5035. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5036. size="344KB" >
  5037. </productMenu>
  5038. <productMenu id="userGuide"
  5039. type="1"
  5040. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5041. size="3.41MB" >
  5042. </productMenu>
  5043. <productMenu id="volume"
  5044. type="11" >
  5045. </productMenu>
  5046. <productMenu id="battery"
  5047. type="1" >
  5048. </productMenu>
  5049. <productID id="3221"
  5050. />
  5051. <productGroupable type="0"
  5052. />
  5053. </product>
  5054. <product id="Stryker"
  5055. name="Stryker"
  5056. series="Helmet"
  5057. latestVersion="1.4.1"
  5058. show = "1" >
  5059. <productMenu id="protocol"
  5060. type="2" >
  5061. </productMenu>
  5062. <productMenu id="alexa"
  5063. type="0" >
  5064. </productMenu>
  5065. <productMenu id="ota"
  5066. type="0" >
  5067. </productMenu>
  5068. <productMenu id="wa"
  5069. type="40" >
  5070. </productMenu>
  5071. <productMenu id="manager"
  5072. type="0" >
  5073. </productMenu>
  5074. <productMenu id="sip"
  5075. type="1" >
  5076. </productMenu>
  5077. <productMenu id="led"
  5078. type="1" >
  5079. <productMenuType version="1.0.1"
  5080. type="2"
  5081. />
  5082. <productMenuType version="1.0"
  5083. type="1"
  5084. />
  5085. </productMenu>
  5086. <productMenu id="meshIntercom"
  5087. type="30" >
  5088. <productMenuType version="1.1.1"
  5089. type="20"
  5090. />
  5091. </productMenu>
  5092. <productMenu id="meshIntercom+"
  5093. type="3"
  5094. url="2" >
  5095. <productMenuType version="1.3.9"
  5096. type="2"
  5097. />
  5098. <productMenuURL version="1.1.1"
  5099. url="0"
  5100. />
  5101. </productMenu>
  5102. <productMenu id="waveIntercom"
  5103. type="1" >
  5104. <productMenuType version="1.2.9"
  5105. type="0"
  5106. />
  5107. </productMenu>
  5108. <productMenu id="bluetoothIntercom"
  5109. type="1" >
  5110. </productMenu>
  5111. <productMenu id="phone"
  5112. type="1" >
  5113. </productMenu>
  5114. <productMenu id="music"
  5115. type="1" >
  5116. </productMenu>
  5117. <productMenu id="fmradio"
  5118. type="1" >
  5119. </productMenu>
  5120. <productMenu id="deviceSetting"
  5121. type="1"
  5122. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5123. <productMenuURL version="1.3.9"
  5124. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5125. />
  5126. <productMenuURL version="1.1.1"
  5127. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5128. />
  5129. <productMenuURL version="1.0.4"
  5130. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5131. />
  5132. </productMenu>
  5133. <productMenu id="quickGuide"
  5134. type="0"
  5135. url=""
  5136. size="344KB" >
  5137. </productMenu>
  5138. <productMenu id="userGuide"
  5139. type="1"
  5140. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5141. size="3.41MB" >
  5142. </productMenu>
  5143. <productMenu id="connectGuide"
  5144. type="1"
  5145. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5146. size="1.12MB" >
  5147. </productMenu>
  5148. <productMenu id="volume"
  5149. type="11" >
  5150. </productMenu>
  5151. <productMenu id="battery"
  5152. type="1" >
  5153. </productMenu>
  5154. <productID id="3154"
  5155. />
  5156. <productGroupable type="0"
  5157. />
  5158. </product>
  5159. <product id="SRL3Plus"
  5160. name="SRL3 Plus"
  5161. series="60"
  5162. latestVersion="0.9.5"
  5163. latestVersionMesh="0.19"
  5164. latestVersionVoicePrompt="1.2"
  5165. show = "-1" >
  5166. <productMenu id="protocol"
  5167. type="2" >
  5168. </productMenu>
  5169. <productMenu id="ota"
  5170. type="2" >
  5171. <otaLanguages>
  5172. <otaLanguage
  5173. id="0"
  5174. name="English"
  5175. package="0"
  5176. />
  5177. <otaLanguage
  5178. id="0"
  5179. name="French"
  5180. package="1"
  5181. />
  5182. <otaLanguage
  5183. id="0"
  5184. name="Spanish"
  5185. package="2"
  5186. />
  5187. <otaLanguage
  5188. id="0"
  5189. name="Italian"
  5190. package="3"
  5191. />
  5192. <otaLanguage
  5193. id="0"
  5194. name="German"
  5195. package="4"
  5196. />
  5197. <otaLanguage
  5198. id="0"
  5199. name="Dutch"
  5200. package="5"
  5201. />
  5202. <otaLanguage
  5203. id="0"
  5204. name="Russian"
  5205. package="6"
  5206. />
  5207. <otaLanguage
  5208. id="0"
  5209. name="Chinese"
  5210. package="7"
  5211. />
  5212. <otaLanguage
  5213. id="0"
  5214. name="Korean"
  5215. package="8"
  5216. />
  5217. <otaLanguage
  5218. id="0"
  5219. name="Japanese"
  5220. package="9"
  5221. />
  5222. <otaLanguage
  5223. id="0"
  5224. name="Finnish"
  5225. package="10"
  5226. />
  5227. </otaLanguages>
  5228. <otaPackages>
  5229. <package
  5230. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5231. size="5183988"
  5232. />
  5233. <package
  5234. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5235. size="5183988"
  5236. />
  5237. <package
  5238. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5239. size="5183988"
  5240. />
  5241. <package
  5242. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5243. size="5183988"
  5244. />
  5245. <package
  5246. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5247. size="5183988"
  5248. />
  5249. <package
  5250. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5251. size="5183988"
  5252. />
  5253. <package
  5254. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5255. size="5183988"
  5256. />
  5257. <package
  5258. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5259. size="5183988"
  5260. />
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5271. size="5183988"
  5272. />
  5273. </otaPackages>
  5274. </productMenu>
  5275. <productMenu id="sip"
  5276. type="1" >
  5277. </productMenu>
  5278. <productMenu id="illusion"
  5279. type="1" >
  5280. </productMenu>
  5281. <productMenu id="meshIntercom+"
  5282. type="3"
  5283. url="2" >
  5284. </productMenu>
  5285. <productMenu id="waveIntercom"
  5286. type="1" >
  5287. </productMenu>
  5288. <productMenu id="bluetoothIntercom"
  5289. type="1"
  5290. url="2" >
  5291. </productMenu>
  5292. <productMenu id="bluetoothIntercomGrouping"
  5293. type="0" >
  5294. </productMenu>
  5295. <productMenu id="fmradio"
  5296. type="1"
  5297. url="1" >
  5298. </productMenu>
  5299. <productMenu id="phone"
  5300. type="1" >
  5301. </productMenu>
  5302. <productMenu id="music"
  5303. type="1" >
  5304. </productMenu>
  5305. <productMenu id="musicSharing"
  5306. type="0" >
  5307. </productMenu>
  5308. <productMenu id="deviceSetting"
  5309. type="1"
  5310. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5311. </productMenu>
  5312. <productMenu id="quickGuide"
  5313. type="0"
  5314. url=""
  5315. size="1.12MB" >
  5316. </productMenu>
  5317. <productMenu id="userGuide"
  5318. type="0"
  5319. url=""
  5320. size="2.0MB" >
  5321. </productMenu>
  5322. <productMenu id="videoGuide"
  5323. type="0"
  5324. url=""
  5325. size="3.41MB" >
  5326. </productMenu>
  5327. <productMenu id="volume"
  5328. type="16" >
  5329. </productMenu>
  5330. <productMenu id="soundMode"
  5331. type="1" >
  5332. </productMenu>
  5333. <productMenu id="battery"
  5334. type="1" >
  5335. </productMenu>
  5336. <productID id="6A08"
  5337. />
  5338. <productGroupable type="0"
  5339. />
  5340. </product>
  5341. <product id="SRL3"
  5342. name="SRL3"
  5343. series="SRL"
  5344. latestVersion="1.5"
  5345. show = "1" >
  5346. <productMenu id="protocol"
  5347. type="2" >
  5348. </productMenu>
  5349. <productMenu id="alexa"
  5350. type="0" >
  5351. </productMenu>
  5352. <productMenu id="ota"
  5353. type="0" >
  5354. </productMenu>
  5355. <productMenu id="wa"
  5356. type="1" >
  5357. </productMenu>
  5358. <productMenu id="sip"
  5359. type="1" >
  5360. </productMenu>
  5361. <productMenu id="meshIntercom"
  5362. type="30" >
  5363. </productMenu>
  5364. <productMenu id="meshIntercom+"
  5365. type="3"
  5366. url="2" >
  5367. <productMenuType version="1.3.9"
  5368. type="2"
  5369. />
  5370. </productMenu>
  5371. <productMenu id="waveIntercom"
  5372. type="1" >
  5373. <productMenuType version="1.4.9"
  5374. type="0"
  5375. />
  5376. </productMenu>
  5377. <productMenu id="bluetoothIntercom"
  5378. type="1" >
  5379. </productMenu>
  5380. <productMenu id="phone"
  5381. type="1" >
  5382. </productMenu>
  5383. <productMenu id="music"
  5384. type="1" >
  5385. </productMenu>
  5386. <productMenu id="fmradio"
  5387. type="1" >
  5388. </productMenu>
  5389. <productMenu id="deviceSetting"
  5390. type="1"
  5391. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5392. <productMenuURL version="1.3"
  5393. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5394. />
  5395. </productMenu>
  5396. <productMenu id="quickGuide"
  5397. type="0"
  5398. url=""
  5399. size="344KB" >
  5400. </productMenu>
  5401. <productMenu id="userGuide"
  5402. type="1"
  5403. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5404. size="3.41MB" >
  5405. </productMenu>
  5406. <productMenu id="connectGuide"
  5407. type="1"
  5408. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5409. size="1.12MB" >
  5410. </productMenu>
  5411. <productMenu id="volume"
  5412. type="11" >
  5413. </productMenu>
  5414. <productMenu id="battery"
  5415. type="1" >
  5416. </productMenu>
  5417. <productID id="3219"
  5418. />
  5419. <productGroupable type="0"
  5420. />
  5421. </product>
  5422. <product id="SRL_Mesh"
  5423. name="SRL-Mesh"
  5424. series="SRL"
  5425. latestVersion="1.7.1"
  5426. show = "1" >
  5427. <productMenu id="protocol"
  5428. type="2" >
  5429. </productMenu>
  5430. <productMenu id="alexa"
  5431. type="0" >
  5432. </productMenu>
  5433. <productMenu id="ota"
  5434. type="0" >
  5435. </productMenu>
  5436. <productMenu id="wa"
  5437. type="1" >
  5438. </productMenu>
  5439. <productMenu id="sip"
  5440. type="1" >
  5441. </productMenu>
  5442. <productMenu id="meshIntercom"
  5443. type="30" >
  5444. <productMenuType version="1.1.1"
  5445. type="20"
  5446. />
  5447. </productMenu>
  5448. <productMenu id="meshIntercom+"
  5449. type="3"
  5450. url="2" >
  5451. <productMenuType version="1.5.9"
  5452. type="2"
  5453. />
  5454. <productMenuURL version="1.1.1"
  5455. url="0"
  5456. />
  5457. </productMenu>
  5458. <productMenu id="waveIntercom"
  5459. type="1" >
  5460. <productMenuType version="1.6.9"
  5461. type="0"
  5462. />
  5463. </productMenu>
  5464. <productMenu id="bluetoothIntercom"
  5465. type="1" >
  5466. </productMenu>
  5467. <productMenu id="phone"
  5468. type="1" >
  5469. </productMenu>
  5470. <productMenu id="music"
  5471. type="1" >
  5472. </productMenu>
  5473. <productMenu id="fmradio"
  5474. type="1" >
  5475. </productMenu>
  5476. <productMenu id="deviceSetting"
  5477. type="1"
  5478. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5479. <productMenuURL version="1.5"
  5480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5481. />
  5482. <productMenuURL version="1.1.1"
  5483. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5484. />
  5485. <productMenuURL version="1.0.3"
  5486. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5487. />
  5488. </productMenu>
  5489. <productMenu id="quickGuide"
  5490. type="0"
  5491. url=""
  5492. size="344KB" >
  5493. </productMenu>
  5494. <productMenu id="userGuide"
  5495. type="1"
  5496. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5497. size="3.41MB" >
  5498. </productMenu>
  5499. <productMenu id="connectGuide"
  5500. type="1"
  5501. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5502. size="1.12MB" >
  5503. </productMenu>
  5504. <productMenu id="volume"
  5505. type="11" >
  5506. </productMenu>
  5507. <productMenu id="battery"
  5508. type="1" >
  5509. </productMenu>
  5510. <productID id="3216"
  5511. />
  5512. <productGroupable type="0"
  5513. />
  5514. </product>
  5515. <product id="SRL_EXT"
  5516. name="SRL-EXT"
  5517. series="SRL"
  5518. latestVersion="1.7.1"
  5519. show = "1" >
  5520. <productMenu id="protocol"
  5521. type="2" >
  5522. </productMenu>
  5523. <productMenu id="alexa"
  5524. type="0" >
  5525. </productMenu>
  5526. <productMenu id="ota"
  5527. type="0" >
  5528. </productMenu>
  5529. <productMenu id="wa"
  5530. type="0" >
  5531. </productMenu>
  5532. <productMenu id="sip"
  5533. type="1" >
  5534. </productMenu>
  5535. <productMenu id="meshIntercom"
  5536. type="30" >
  5537. <productMenuType version="1.1.1"
  5538. type="20"
  5539. />
  5540. </productMenu>
  5541. <productMenu id="meshIntercom+"
  5542. type="3"
  5543. url="2" >
  5544. <productMenuType version="1.5.9"
  5545. type="2"
  5546. />
  5547. <productMenuURL version="1.1.1"
  5548. url="0"
  5549. />
  5550. </productMenu>
  5551. <productMenu id="waveIntercom"
  5552. type="1" >
  5553. <productMenuType version="1.6.9"
  5554. type="0"
  5555. />
  5556. </productMenu>
  5557. <productMenu id="bluetoothIntercom"
  5558. type="1" >
  5559. </productMenu>
  5560. <productMenu id="phone"
  5561. type="1" >
  5562. </productMenu>
  5563. <productMenu id="music"
  5564. type="1" >
  5565. </productMenu>
  5566. <productMenu id="fmradio"
  5567. type="1" >
  5568. </productMenu>
  5569. <productMenu id="deviceSetting"
  5570. type="1"
  5571. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5572. <productMenuURL version="1.5"
  5573. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5574. />
  5575. <productMenuURL version="1.1.1"
  5576. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5577. />
  5578. <productMenuURL version="1.0.3"
  5579. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5580. />
  5581. </productMenu>
  5582. <productMenu id="quickGuide"
  5583. type="0"
  5584. url=""
  5585. size="344KB" >
  5586. </productMenu>
  5587. <productMenu id="userGuide"
  5588. type="1"
  5589. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5590. size="3.41MB" >
  5591. </productMenu>
  5592. <productMenu id="connectGuide"
  5593. type="1"
  5594. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5595. size="1.12MB" >
  5596. </productMenu>
  5597. <productMenu id="volume"
  5598. type="11" >
  5599. </productMenu>
  5600. <productMenu id="battery"
  5601. type="1" >
  5602. </productMenu>
  5603. <productID id="3212"
  5604. />
  5605. <productGroupable type="0"
  5606. />
  5607. </product>
  5608. <product id="SRL2"
  5609. name="SRL2"
  5610. series="SRL"
  5611. latestVersion="1.0.9"
  5612. show = "1" >
  5613. <productMenu id="protocol"
  5614. type="0">
  5615. </productMenu>
  5616. <productMenu id="sip"
  5617. type="1" >
  5618. </productMenu>
  5619. <productMenu id="bluetoothIntercom"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="intercomSetting"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="phone"
  5626. type="2" >
  5627. </productMenu>
  5628. <productMenu id="fmradio"
  5629. type="3" >
  5630. </productMenu>
  5631. <productMenu id="deviceSetting"
  5632. type="1"
  5633. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="1"
  5637. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5638. size="846KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5643. size="1.18MB" >
  5644. </productMenu>
  5645. <productMenu id="connectGuide"
  5646. type="1"
  5647. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5648. size="1.12MB" >
  5649. </productMenu>
  5650. <productID id="4530"
  5651. />
  5652. <productGroupable type="1"
  5653. />
  5654. </product>
  5655. <product id="Neotec2"
  5656. name="SRL Neotec2"
  5657. series="SRL"
  5658. latestVersion="1.1.5"
  5659. show = "1" >
  5660. <productMenu id="protocol"
  5661. type="0">
  5662. </productMenu>
  5663. <productMenu id="sip"
  5664. type="1" >
  5665. </productMenu>
  5666. <productMenu id="bluetoothIntercom"
  5667. type="1" >
  5668. </productMenu>
  5669. <productMenu id="intercomSetting"
  5670. type="1" >
  5671. </productMenu>
  5672. <productMenu id="phone"
  5673. type="2" >
  5674. </productMenu>
  5675. <productMenu id="fmradio"
  5676. type="3" >
  5677. </productMenu>
  5678. <productMenu id="deviceSetting"
  5679. type="1"
  5680. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5681. </productMenu>
  5682. <productMenu id="quickGuide"
  5683. type="0"
  5684. url=""
  5685. size="796KB" >
  5686. </productMenu>
  5687. <productMenu id="userGuide"
  5688. type="1"
  5689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5690. size="1.90MB" >
  5691. </productMenu>
  5692. <productMenu id="connectGuide"
  5693. type="1"
  5694. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5695. size="1.12MB" >
  5696. </productMenu>
  5697. <productID id="4510"
  5698. />
  5699. <productGroupable type="1"
  5700. />
  5701. </product>
  5702. <product id="SPIDERST2ANC"
  5703. name="SPIDER ST2 ANC"
  5704. series="SPIDER"
  5705. latestVersion="0.5.1"
  5706. latestVersionVoicePrompt="0.2"
  5707. latestVersionMesh="0.8"
  5708. show = "-1" >
  5709. <productMenu id="protocol"
  5710. type="2" >
  5711. </productMenu>
  5712. <productMenu id="ota"
  5713. type="0" >
  5714. <otaPackages>
  5715. <package
  5716. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5717. size="2945812"
  5718. />
  5719. </otaPackages>
  5720. </productMenu>
  5721. <productMenu id="wa"
  5722. type="0" >
  5723. </productMenu>
  5724. <productMenu id="led"
  5725. type="1" >
  5726. </productMenu>
  5727. <productMenu id="meshIntercom"
  5728. type="30" >
  5729. </productMenu>
  5730. <productMenu id="fmradio"
  5731. type="1" >
  5732. </productMenu>
  5733. <productMenu id="phone"
  5734. type="1" >
  5735. </productMenu>
  5736. <productMenu id="music"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="musicSharing"
  5740. type="0" >
  5741. </productMenu>
  5742. <productMenu id="deviceSetting"
  5743. type="1"
  5744. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5745. </productMenu>
  5746. <productMenu id="quickGuide"
  5747. type="1"
  5748. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5749. size="1.12MB" >
  5750. </productMenu>
  5751. <productMenu id="userGuide"
  5752. type="1"
  5753. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5754. size="2.0MB" >
  5755. </productMenu>
  5756. <productMenu id="videoGuide"
  5757. type="1"
  5758. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5759. size="3.41MB" >
  5760. </productMenu>
  5761. <productMenu id="volume"
  5762. type="12" >
  5763. </productMenu>
  5764. <productMenu id="battery"
  5765. type="1" >
  5766. </productMenu>
  5767. <productID id="6A00"
  5768. />
  5769. <productGroupable type="0"
  5770. />
  5771. </product>
  5772. <product id="SPIDER_ST1"
  5773. name="SPIDER ST1"
  5774. series="SPIDER"
  5775. latestVersion="2.5.2"
  5776. latestVersionVoicePrompt="1.6"
  5777. show = "1" >
  5778. <productMenu id="protocol"
  5779. type="2" >
  5780. </productMenu>
  5781. <productMenu id="alexa"
  5782. type="0" >
  5783. </productMenu>
  5784. <productMenu id="ota"
  5785. type="2" >
  5786. <productMenuType version="2.1.9"
  5787. type="0"
  5788. />
  5789. <otaPackages>
  5790. <package
  5791. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5792. size="2945812"
  5793. />
  5794. </otaPackages>
  5795. </productMenu>
  5796. <productMenu id="wa"
  5797. type="0" >
  5798. </productMenu>
  5799. <productMenu id="meshIntercom"
  5800. type="30" >
  5801. <productMenuType version="2.1.1"
  5802. type="20"
  5803. />
  5804. </productMenu>
  5805. <productMenu id="meshIntercom+"
  5806. type="3"
  5807. url="2" >
  5808. <productMenuType version="2.2.9"
  5809. type="2"
  5810. />
  5811. <productMenuURL version="2.1.1"
  5812. url="0"
  5813. />
  5814. </productMenu>
  5815. <productMenu id="waveIntercom"
  5816. type="1" >
  5817. <productMenuType version="2.3.9"
  5818. type="0"
  5819. />
  5820. </productMenu>
  5821. <productMenu id="phone"
  5822. type="1" >
  5823. </productMenu>
  5824. <productMenu id="music"
  5825. type="1" >
  5826. </productMenu>
  5827. <productMenu id="musicSharing"
  5828. type="0" >
  5829. </productMenu>
  5830. <productMenu id="deviceSetting"
  5831. type="1"
  5832. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5833. <productMenuURL version="2.4.9"
  5834. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5835. />
  5836. <productMenuURL version="2.2.2"
  5837. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5838. />
  5839. <productMenuURL version="2.1.1"
  5840. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5841. />
  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="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5851. size="2.0MB" >
  5852. </productMenu>
  5853. <productMenu id="videoGuide"
  5854. type="1"
  5855. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5856. size="3.41MB" >
  5857. </productMenu>
  5858. <productMenu id="connectGuide"
  5859. type="1"
  5860. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5861. size="1.12MB" >
  5862. </productMenu>
  5863. <productMenu id="volume"
  5864. type="12" >
  5865. </productMenu>
  5866. <productMenu id="battery"
  5867. type="1" >
  5868. </productMenu>
  5869. <productID id="6800"
  5870. />
  5871. <productGroupable type="0"
  5872. />
  5873. </product>
  5874. <product id="SPIDER_ST1"
  5875. name="SPIDER ST1"
  5876. series="SPIDER"
  5877. latestVersion="1.2.2"
  5878. show = "-1" >
  5879. <productMenu id="protocol"
  5880. type="2" >
  5881. </productMenu>
  5882. <productMenu id="alexa"
  5883. type="0" >
  5884. </productMenu>
  5885. <productMenu id="ota"
  5886. type="0" >
  5887. </productMenu>
  5888. <productMenu id="wa"
  5889. type="0" >
  5890. </productMenu>
  5891. <productMenu id="meshIntercom"
  5892. type="20" >
  5893. </productMenu>
  5894. <productMenu id="phone"
  5895. type="1" >
  5896. </productMenu>
  5897. <productMenu id="music"
  5898. type="1" >
  5899. </productMenu>
  5900. <productMenu id="deviceSetting"
  5901. type="1"
  5902. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5903. </productMenu>
  5904. <productMenu id="quickGuide"
  5905. type="0"
  5906. url=""
  5907. size="1.12MB" >
  5908. </productMenu>
  5909. <productMenu id="userGuide"
  5910. type="1"
  5911. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5912. size="2.0MB" >
  5913. </productMenu>
  5914. <productMenu id="videoGuide"
  5915. type="1"
  5916. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5917. size="3.41MB" >
  5918. </productMenu>
  5919. <productMenu id="volume"
  5920. type="13" >
  5921. <productMenuType version="1.1.6"
  5922. type="14"/>
  5923. </productMenu>
  5924. <productMenu id="battery"
  5925. type="1" >
  5926. </productMenu>
  5927. <productID id="6510"
  5928. />
  5929. <productGroupable type="0"
  5930. />
  5931. </product>
  5932. <product id="SPIDER_RT1"
  5933. name="SPIDER RT1"
  5934. series="SPIDER"
  5935. latestVersion="2.5.2"
  5936. latestVersionVoicePrompt="1.6"
  5937. show = "1" >
  5938. <productMenu id="protocol"
  5939. type="2" >
  5940. </productMenu>
  5941. <productMenu id="alexa"
  5942. type="0" >
  5943. </productMenu>
  5944. <productMenu id="ota"
  5945. type="2" >
  5946. <productMenuType version="2.1.9"
  5947. type="0"
  5948. />
  5949. <otaPackages>
  5950. <package
  5951. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5952. size="2945812"
  5953. />
  5954. </otaPackages>
  5955. </productMenu>
  5956. <productMenu id="wa"
  5957. type="0" >
  5958. </productMenu>
  5959. <productMenu id="meshIntercom"
  5960. type="30" >
  5961. <productMenuType version="2.1.1"
  5962. type="20"
  5963. />
  5964. </productMenu>
  5965. <productMenu id="meshIntercom+"
  5966. type="3"
  5967. url="2" >
  5968. <productMenuType version="2.2.9"
  5969. type="2"
  5970. />
  5971. <productMenuURL version="2.1.1"
  5972. url="0"
  5973. />
  5974. </productMenu>
  5975. <productMenu id="waveIntercom"
  5976. type="1" >
  5977. <productMenuType version="2.3.9"
  5978. type="0"
  5979. />
  5980. </productMenu>
  5981. <productMenu id="phone"
  5982. type="1" >
  5983. </productMenu>
  5984. <productMenu id="music"
  5985. type="1" >
  5986. </productMenu>
  5987. <productMenu id="musicSharing"
  5988. type="0" >
  5989. </productMenu>
  5990. <productMenu id="deviceSetting"
  5991. type="1"
  5992. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5993. <productMenuURL version="2.4.9"
  5994. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5995. />
  5996. <productMenuURL version="2.2.2"
  5997. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5998. />
  5999. <productMenuURL version="2.1.1"
  6000. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6001. />
  6002. </productMenu>
  6003. <productMenu id="quickGuide"
  6004. type="0"
  6005. url=""
  6006. size="1.12MB" >
  6007. </productMenu>
  6008. <productMenu id="userGuide"
  6009. type="1"
  6010. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6011. size="2.0MB" >
  6012. </productMenu>
  6013. <productMenu id="videoGuide"
  6014. type="1"
  6015. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6016. size="3.41MB" >
  6017. </productMenu>
  6018. <productMenu id="connectGuide"
  6019. type="1"
  6020. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6021. size="1.12MB" >
  6022. </productMenu>
  6023. <productMenu id="volume"
  6024. type="12" >
  6025. </productMenu>
  6026. <productMenu id="battery"
  6027. type="1" >
  6028. </productMenu>
  6029. <productID id="6810"
  6030. />
  6031. <productGroupable type="0"
  6032. />
  6033. </product>
  6034. <product id="SPIDER_RT1"
  6035. name="SPIDER RT1"
  6036. series="SPIDER"
  6037. latestVersion="1.2.2"
  6038. show = "-1" >
  6039. <productMenu id="protocol"
  6040. type="2" >
  6041. </productMenu>
  6042. <productMenu id="alexa"
  6043. type="0" >
  6044. </productMenu>
  6045. <productMenu id="ota"
  6046. type="0" >
  6047. </productMenu>
  6048. <productMenu id="wa"
  6049. type="0" >
  6050. </productMenu>
  6051. <productMenu id="meshIntercom"
  6052. type="20" >
  6053. </productMenu>
  6054. <productMenu id="phone"
  6055. type="1" >
  6056. </productMenu>
  6057. <productMenu id="music"
  6058. type="1" >
  6059. </productMenu>
  6060. <productMenu id="deviceSetting"
  6061. type="1"
  6062. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6063. </productMenu>
  6064. <productMenu id="quickGuide"
  6065. type="0"
  6066. url=""
  6067. size="1.32MB" >
  6068. </productMenu>
  6069. <productMenu id="userGuide"
  6070. type="1"
  6071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6072. size="1.79MB" >
  6073. </productMenu>
  6074. <productMenu id="videoGuide"
  6075. type="1"
  6076. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6077. size="3.41MB" >
  6078. </productMenu>
  6079. <productMenu id="volume"
  6080. type="13" >
  6081. <productMenuType version="1.1.6"
  6082. type="14"/>
  6083. </productMenu>
  6084. <productMenu id="battery"
  6085. type="1" >
  6086. </productMenu>
  6087. <productID id="6500"
  6088. />
  6089. <productGroupable type="0"
  6090. />
  6091. </product>
  6092. <product id="30K"
  6093. name="30K"
  6094. series="30"
  6095. latestVersion="4.5.1"
  6096. show = "1" >
  6097. <productMenu id="protocol"
  6098. type="2" >
  6099. </productMenu>
  6100. <productMenu id="alexa"
  6101. type="0" >
  6102. </productMenu>
  6103. <productMenu id="wa"
  6104. type="1" >
  6105. </productMenu>
  6106. <productMenu id="sip"
  6107. type="1" >
  6108. </productMenu>
  6109. <productMenu id="meshIntercom"
  6110. type="30" >
  6111. <productMenuType version="4.0.4"
  6112. type="20"
  6113. />
  6114. </productMenu>
  6115. <productMenu id="meshIntercom+"
  6116. type="3"
  6117. url="2" >
  6118. <productMenuType version="4.3.9"
  6119. type="2"
  6120. />
  6121. <productMenuURL version="4.0.4"
  6122. url="0"
  6123. />
  6124. </productMenu>
  6125. <productMenu id="waveIntercom"
  6126. type="1" >
  6127. <productMenuType version="4.4.9"
  6128. type="0"
  6129. />
  6130. </productMenu>
  6131. <productMenu id="bluetoothIntercom"
  6132. type="1" >
  6133. </productMenu>
  6134. <productMenu id="phone"
  6135. type="1" >
  6136. </productMenu>
  6137. <productMenu id="music"
  6138. type="1" >
  6139. </productMenu>
  6140. <productMenu id="fmradio"
  6141. type="1" >
  6142. </productMenu>
  6143. <productMenu id="deviceSetting"
  6144. type="1"
  6145. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6146. <productMenuURL version="4.3"
  6147. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6148. />
  6149. <productMenuURL version="4.2"
  6150. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6151. />
  6152. <productMenuURL version="4.0.4"
  6153. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6154. />
  6155. </productMenu>
  6156. <productMenu id="quickGuide"
  6157. type="0"
  6158. url=""
  6159. size="934KB" >
  6160. </productMenu>
  6161. <productMenu id="userGuide"
  6162. type="1"
  6163. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6164. size="1.14MB" >
  6165. </productMenu>
  6166. <productMenu id="connectGuide"
  6167. type="1"
  6168. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6169. size="1.12MB" >
  6170. </productMenu>
  6171. <productMenu id="volume"
  6172. type="11" >
  6173. </productMenu>
  6174. <productMenu id="battery"
  6175. type="1" >
  6176. </productMenu>
  6177. <productID id="3211"
  6178. />
  6179. <productGroupable type="0"
  6180. />
  6181. </product>
  6182. <product id="30K"
  6183. name="30K"
  6184. series="30"
  6185. latestVersion="3.5"
  6186. show = "-1" >
  6187. <productMenu id="protocol"
  6188. type="1"
  6189. url="0">
  6190. </productMenu>
  6191. <productMenu id="wa"
  6192. type="7" >
  6193. </productMenu>
  6194. <productMenu id="sip"
  6195. type="1" >
  6196. </productMenu>
  6197. <productMenu id="meshIntercom"
  6198. type="20" >
  6199. <productMenuType version="2.9.9"
  6200. type="10"
  6201. />
  6202. </productMenu>
  6203. <productMenu id="meshIntercom+"
  6204. type="3"
  6205. url="2" >
  6206. <productMenuType version="3.4.9"
  6207. type="2"
  6208. />
  6209. <productMenuType version="2.9.9"
  6210. type="1"
  6211. />
  6212. <productMenuURL version="3.3.1"
  6213. url="0"
  6214. />
  6215. </productMenu>
  6216. <productMenu id="bluetoothIntercom"
  6217. type="1" >
  6218. </productMenu>
  6219. <productMenu id="phone"
  6220. type="1" >
  6221. </productMenu>
  6222. <productMenu id="music"
  6223. type="1" >
  6224. </productMenu>
  6225. <productMenu id="fmradio"
  6226. type="1" >
  6227. </productMenu>
  6228. <productMenu id="deviceSetting"
  6229. type="1"
  6230. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6231. <productMenuURL version="3.4.9"
  6232. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6233. />
  6234. <productMenuURL version="3.3.1"
  6235. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6236. />
  6237. <productMenuURL version="3.0.1"
  6238. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6239. />
  6240. <productMenuURL version="2.3.1"
  6241. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6242. />
  6243. <productMenuURL version="2.0"
  6244. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6245. />
  6246. <productMenuURL version="1.0.3"
  6247. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6248. />
  6249. </productMenu>
  6250. <productMenu id="quickGuide"
  6251. type="0"
  6252. url=""
  6253. size="1.06MB" >
  6254. </productMenu>
  6255. <productMenu id="userGuide"
  6256. type="1"
  6257. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6258. size="3.15MB" >
  6259. </productMenu>
  6260. <productMenu id="volume"
  6261. type="1" >
  6262. </productMenu>
  6263. <productID id="3110"
  6264. />
  6265. <productGroupable type="0"
  6266. />
  6267. </product>
  6268. <product id="FURY"
  6269. name="FURY"
  6270. series="Helmet"
  6271. latestVersion="1.0"
  6272. show = "-1" >
  6273. <productMenu id="protocol"
  6274. type="2" >
  6275. </productMenu>
  6276. <productMenu id="alexa"
  6277. type="0" >
  6278. </productMenu>
  6279. <productMenu id="ota"
  6280. type="0" >
  6281. </productMenu>
  6282. <productMenu id="wa"
  6283. type="0" >
  6284. </productMenu>
  6285. <productMenu id="meshIntercom"
  6286. type="20" >
  6287. </productMenu>
  6288. <productMenu id="phone"
  6289. type="1" >
  6290. </productMenu>
  6291. <productMenu id="music"
  6292. type="1" >
  6293. </productMenu>
  6294. <productMenu id="fmradio"
  6295. type="1" >
  6296. </productMenu>
  6297. <productMenu id="deviceSetting"
  6298. type="1"
  6299. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6300. </productMenu>
  6301. <productMenu id="quickGuide"
  6302. type="1"
  6303. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6304. size="1.12MB" >
  6305. </productMenu>
  6306. <productMenu id="userGuide"
  6307. type="1"
  6308. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6309. size="2.0MB" >
  6310. </productMenu>
  6311. <productMenu id="volume"
  6312. type="13" >
  6313. </productMenu>
  6314. <productMenu id="battery"
  6315. type="1" >
  6316. </productMenu>
  6317. <productID id="5552"
  6318. />
  6319. <productGroupable type="0"
  6320. />
  6321. </product>
  6322. <product id="MomentumM"
  6323. name="Momentum EVO"
  6324. series="Helmet"
  6325. latestVersion="2.1.2"
  6326. show = "1" >
  6327. <productMenu id="protocol"
  6328. type="1"
  6329. url="0">
  6330. </productMenu>
  6331. <productMenu id="wa"
  6332. type="3" >
  6333. </productMenu>
  6334. <productMenu id="sip"
  6335. type="1" >
  6336. </productMenu>
  6337. <productMenu id="meshIntercom"
  6338. type="20" >
  6339. <productMenuType version="1.9.9"
  6340. type="10"
  6341. />
  6342. </productMenu>
  6343. <productMenu id="bluetoothIntercom"
  6344. type="1" >
  6345. </productMenu>
  6346. <productMenu id="phone"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="music"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="fmradio"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="deviceSetting"
  6356. type="1"
  6357. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6358. <productMenuURL version="1.0.1"
  6359. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6360. />
  6361. </productMenu>
  6362. <productMenu id="quickGuide"
  6363. type="1"
  6364. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6365. size="1.06MB" >
  6366. </productMenu>
  6367. <productMenu id="userGuide"
  6368. type="1"
  6369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6370. size="3.15MB" >
  6371. </productMenu>
  6372. <productMenu id="connectGuide"
  6373. type="1"
  6374. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6375. size="1.12MB" >
  6376. </productMenu>
  6377. <productMenu id="volume"
  6378. type="2" >
  6379. </productMenu>
  6380. <productID id="3116"
  6381. />
  6382. <productGroupable type="0"
  6383. />
  6384. </product>
  6385. <product id="Momentum"
  6386. name="Momentum"
  6387. series="Helmet"
  6388. latestVersion="1.0.9"
  6389. show = "1" >
  6390. <productMenu id="protocol"
  6391. type="0">
  6392. </productMenu>
  6393. <productMenu id="sip"
  6394. type="1" >
  6395. </productMenu>
  6396. <productMenu id="bluetoothIntercom"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="intercomSetting"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="phone"
  6403. type="2" >
  6404. </productMenu>
  6405. <productMenu id="fmradio"
  6406. type="3" >
  6407. </productMenu>
  6408. <productMenu id="deviceSetting"
  6409. type="1"
  6410. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6411. </productMenu>
  6412. <productMenu id="quickGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6415. size="796KB" >
  6416. </productMenu>
  6417. <productMenu id="userGuide"
  6418. type="1"
  6419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6420. size="1.90MB" >
  6421. </productMenu>
  6422. <productMenu id="connectGuide"
  6423. type="1"
  6424. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6425. size="1.12MB" >
  6426. </productMenu>
  6427. <productID id="4310"
  6428. />
  6429. <productGroupable type="1"
  6430. />
  6431. </product>
  6432. <product id="Momentum_Pro"
  6433. name="Momentum Pro"
  6434. series="Helmet"
  6435. latestVersion="1.0.6"
  6436. show = "1" >
  6437. <productMenu id="protocol"
  6438. type="0">
  6439. </productMenu>
  6440. <productMenu id="sip"
  6441. type="1" >
  6442. </productMenu>
  6443. <productMenu id="bluetoothIntercom"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="intercomSetting"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="phone"
  6450. type="2" >
  6451. </productMenu>
  6452. <productMenu id="fmradio"
  6453. type="3" >
  6454. </productMenu>
  6455. <productMenu id="deviceSetting"
  6456. type="1"
  6457. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6458. </productMenu>
  6459. <productMenu id="quickGuide"
  6460. type="1"
  6461. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6462. size="796KB" >
  6463. </productMenu>
  6464. <productMenu id="userGuide"
  6465. type="1"
  6466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6467. size="1.90MB" >
  6468. </productMenu>
  6469. <productMenu id="connectGuide"
  6470. type="1"
  6471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6472. size="1.12MB" >
  6473. </productMenu>
  6474. <productID id="4330"
  6475. />
  6476. <productGroupable type="1"
  6477. />
  6478. </product>
  6479. <product id="Momentum_INC"
  6480. name="Momentum INC"
  6481. series="Helmet"
  6482. latestVersion="1.0.7"
  6483. show = "1" >
  6484. <productMenu id="protocol"
  6485. type="0">
  6486. </productMenu>
  6487. <productMenu id="sip"
  6488. type="1" >
  6489. </productMenu>
  6490. <productMenu id="bluetoothIntercom"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="intercomSetting"
  6494. type="1" >
  6495. </productMenu>
  6496. <productMenu id="phone"
  6497. type="2" >
  6498. </productMenu>
  6499. <productMenu id="fmradio"
  6500. type="3" >
  6501. </productMenu>
  6502. <productMenu id="deviceSetting"
  6503. type="1"
  6504. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6505. </productMenu>
  6506. <productMenu id="quickGuide"
  6507. type="1"
  6508. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6509. size="794KB" >
  6510. </productMenu>
  6511. <productMenu id="userGuide"
  6512. type="1"
  6513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6514. size="1.53MB" >
  6515. </productMenu>
  6516. <productMenu id="connectGuide"
  6517. type="1"
  6518. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6519. size="1.12MB" >
  6520. </productMenu>
  6521. <productID id="4410"
  6522. />
  6523. <productGroupable type="1"
  6524. />
  6525. </product>
  6526. <product id="Momentum_INCP"
  6527. name="Momentum INC Pro"
  6528. series="Helmet"
  6529. latestVersion="1.0.4"
  6530. show = "1" >
  6531. <productMenu id="protocol"
  6532. type="0">
  6533. </productMenu>
  6534. <productMenu id="sip"
  6535. type="1" >
  6536. </productMenu>
  6537. <productMenu id="bluetoothIntercom"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="intercomSetting"
  6541. type="1" >
  6542. </productMenu>
  6543. <productMenu id="phone"
  6544. type="2" >
  6545. </productMenu>
  6546. <productMenu id="fmradio"
  6547. type="3" >
  6548. </productMenu>
  6549. <productMenu id="deviceSetting"
  6550. type="1"
  6551. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6552. </productMenu>
  6553. <productMenu id="quickGuide"
  6554. type="1"
  6555. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6556. size="794KB" >
  6557. </productMenu>
  6558. <productMenu id="userGuide"
  6559. type="1"
  6560. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6561. size="1.53MB" >
  6562. </productMenu>
  6563. <productMenu id="connectGuide"
  6564. type="1"
  6565. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6566. size="1.12MB" >
  6567. </productMenu>
  6568. <productID id="4430"
  6569. />
  6570. <productGroupable type="1"
  6571. />
  6572. </product>
  6573. <product id="Momentum_Lite"
  6574. name="Momentum Lite"
  6575. series="Helmet"
  6576. latestVersion="2.0.3"
  6577. show = "1" >
  6578. <productMenu id="protocol"
  6579. type="0">
  6580. </productMenu>
  6581. <productMenu id="sip"
  6582. type="1" >
  6583. </productMenu>
  6584. <productMenu id="bluetoothIntercom"
  6585. type="1" >
  6586. </productMenu>
  6587. <productMenu id="phone"
  6588. type="2" >
  6589. </productMenu>
  6590. <productMenu id="fmradio"
  6591. type="3" >
  6592. </productMenu>
  6593. <productMenu id="deviceSetting"
  6594. type="1"
  6595. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6596. <productMenuURL version="1.1"
  6597. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6598. />
  6599. </productMenu>
  6600. <productMenu id="quickGuide"
  6601. type="1"
  6602. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6603. size="790KB" >
  6604. </productMenu>
  6605. <productMenu id="userGuide"
  6606. type="1"
  6607. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6608. size="1.42MB" >
  6609. </productMenu>
  6610. <productMenu id="connectGuide"
  6611. type="1"
  6612. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6613. size="1.12MB" >
  6614. </productMenu>
  6615. <productID id="5526"
  6616. />
  6617. <productGroupable type="0"
  6618. />
  6619. </product>
  6620. <product id="OUTRUSHM"
  6621. name="OUTRUSH M"
  6622. series="Helmet"
  6623. latestVersion="1.0"
  6624. show = "-1" >
  6625. <productMenu id="protocol"
  6626. type="2" >
  6627. </productMenu>
  6628. <productMenu id="alexa"
  6629. type="0" >
  6630. </productMenu>
  6631. <productMenu id="ota"
  6632. type="0" >
  6633. </productMenu>
  6634. <productMenu id="wa"
  6635. type="0" >
  6636. </productMenu>
  6637. <productMenu id="meshIntercom"
  6638. type="30" >
  6639. </productMenu>
  6640. <productMenu id="phone"
  6641. type="1" >
  6642. </productMenu>
  6643. <productMenu id="music"
  6644. type="1" >
  6645. </productMenu>
  6646. <productMenu id="fmradio"
  6647. type="1" >
  6648. </productMenu>
  6649. <productMenu id="deviceSetting"
  6650. type="1"
  6651. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6652. </productMenu>
  6653. <productMenu id="quickGuide"
  6654. type="1"
  6655. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6656. size="1.12MB" >
  6657. </productMenu>
  6658. <productMenu id="userGuide"
  6659. type="1"
  6660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6661. size="2.0MB" >
  6662. </productMenu>
  6663. <productMenu id="volume"
  6664. type="13" >
  6665. </productMenu>
  6666. <productMenu id="battery"
  6667. type="1" >
  6668. </productMenu>
  6669. <productID id="5600"
  6670. />
  6671. <productGroupable type="0"
  6672. />
  6673. </product>
  6674. <product id="ProRideEVO"
  6675. name="ProRide EVO"
  6676. series="Helmet"
  6677. latestVersion="1.1.2"
  6678. show = "1" >
  6679. <productMenu id="protocol"
  6680. type="0">
  6681. </productMenu>
  6682. <productMenu id="sip"
  6683. type="1" >
  6684. </productMenu>
  6685. <productMenu id="bluetoothIntercom"
  6686. type="1" >
  6687. </productMenu>
  6688. <productMenu id="phone"
  6689. type="2" >
  6690. </productMenu>
  6691. <productMenu id="fmradio"
  6692. type="3" >
  6693. </productMenu>
  6694. <productMenu id="deviceSetting"
  6695. type="1"
  6696. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6697. </productMenu>
  6698. <productMenu id="userGuide"
  6699. type="1"
  6700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6701. size="778KB" >
  6702. </productMenu>
  6703. <productMenu id="connectGuide"
  6704. type="1"
  6705. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6706. size="1.12MB" >
  6707. </productMenu>
  6708. <productID id="5426"
  6709. />
  6710. <productGroupable type="0"
  6711. />
  6712. </product>
  6713. <product id="OUTRUSHR"
  6714. name="OUTRUSH R"
  6715. series="Helmet"
  6716. latestVersion="2.1"
  6717. show = "1" >
  6718. <productMenu id="protocol"
  6719. type="3" >
  6720. </productMenu>
  6721. <productMenu id="sip"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="bluetoothIntercom"
  6725. type="1" >
  6726. </productMenu>
  6727. <productMenu id="phone"
  6728. type="1" >
  6729. </productMenu>
  6730. <productMenu id="fmradio"
  6731. type="0" >
  6732. </productMenu>
  6733. <productMenu id="deviceSetting"
  6734. type="1"
  6735. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6736. </productMenu>
  6737. <productMenu id="userGuide"
  6738. type="1"
  6739. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6740. size="1.14MB" >
  6741. </productMenu>
  6742. <productMenu id="connectGuide"
  6743. type="1"
  6744. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6745. size="1.12MB" >
  6746. </productMenu>
  6747. <productID id="5440"
  6748. />
  6749. <productGroupable type="0"
  6750. />
  6751. </product>
  6752. <product id="OUTRUSHR"
  6753. name="OUTRUSH R"
  6754. series="Helmet"
  6755. latestVersion="1.1.4"
  6756. show = "-1" >
  6757. <productMenu id="protocol"
  6758. type="0">
  6759. </productMenu>
  6760. <productMenu id="sip"
  6761. type="1" >
  6762. </productMenu>
  6763. <productMenu id="bluetoothIntercom"
  6764. type="1" >
  6765. </productMenu>
  6766. <productMenu id="phone"
  6767. type="2" >
  6768. </productMenu>
  6769. <productMenu id="fmradio"
  6770. type="3" >
  6771. </productMenu>
  6772. <productMenu id="deviceSetting"
  6773. type="1"
  6774. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6775. </productMenu>
  6776. <productMenu id="userGuide"
  6777. type="1"
  6778. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6779. size="660KB" >
  6780. </productMenu>
  6781. <productMenu id="connectGuide"
  6782. type="1"
  6783. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6784. size="1.12MB" >
  6785. </productMenu>
  6786. <productID id="5424"
  6787. />
  6788. <productGroupable type="0"
  6789. />
  6790. </product>
  6791. <product id="OUTSTARS"
  6792. name="OUTSTAR S"
  6793. series="Helmet"
  6794. latestVersion="2.0.1"
  6795. show = "-1" >
  6796. <productMenu id="protocol"
  6797. type="3" >
  6798. </productMenu>
  6799. <productMenu id="sip"
  6800. type="1" >
  6801. </productMenu>
  6802. <productMenu id="bluetoothIntercom"
  6803. type="1" >
  6804. </productMenu>
  6805. <productMenu id="phone"
  6806. type="1" >
  6807. </productMenu>
  6808. <productMenu id="fmradio"
  6809. type="0" >
  6810. </productMenu>
  6811. <productMenu id="deviceSetting"
  6812. type="1"
  6813. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6814. </productMenu>
  6815. <productMenu id="userGuide"
  6816. type="0"
  6817. url=""
  6818. size="1.14MB" >
  6819. </productMenu>
  6820. <productID id="5443"
  6821. />
  6822. <productGroupable type="0"
  6823. />
  6824. </product>
  6825. <product id="OUTSTARS"
  6826. name="OUTSTAR S"
  6827. series="Helmet"
  6828. latestVersion="1.1.4"
  6829. show = "1" >
  6830. <productMenu id="protocol"
  6831. type="0">
  6832. </productMenu>
  6833. <productMenu id="sip"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="bluetoothIntercom"
  6837. type="1" >
  6838. </productMenu>
  6839. <productMenu id="phone"
  6840. type="2" >
  6841. </productMenu>
  6842. <productMenu id="fmradio"
  6843. type="3" >
  6844. </productMenu>
  6845. <productMenu id="deviceSetting"
  6846. type="1"
  6847. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6848. </productMenu>
  6849. <productMenu id="quickGuide"
  6850. type="1"
  6851. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6852. size="643KB" >
  6853. </productMenu>
  6854. <productMenu id="userGuide"
  6855. type="1"
  6856. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6857. size="1.15MB" >
  6858. </productMenu>
  6859. <productMenu id="connectGuide"
  6860. type="1"
  6861. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6862. size="1.12MB" >
  6863. </productMenu>
  6864. <productID id="5428"
  6865. />
  6866. <productGroupable type="0"
  6867. />
  6868. </product>
  6869. <product id="OUTRIDE"
  6870. name="OUTRIDE"
  6871. series="Helmet"
  6872. latestVersion="1.0.1"
  6873. show = "1" >
  6874. <productMenu id="protocol"
  6875. type="0">
  6876. </productMenu>
  6877. <productMenu id="sip"
  6878. type="1" >
  6879. </productMenu>
  6880. <productMenu id="bluetoothIntercom"
  6881. type="1" >
  6882. </productMenu>
  6883. <productMenu id="phone"
  6884. type="2" >
  6885. </productMenu>
  6886. <productMenu id="fmradio"
  6887. type="3" >
  6888. </productMenu>
  6889. <productMenu id="deviceSetting"
  6890. type="1"
  6891. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6892. </productMenu>
  6893. <productMenu id="quickGuide"
  6894. type="1"
  6895. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6896. size="643KB" >
  6897. </productMenu>
  6898. <productMenu id="userGuide"
  6899. type="1"
  6900. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6901. size="660KB" >
  6902. </productMenu>
  6903. <productMenu id="connectGuide"
  6904. type="1"
  6905. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6906. size="1.12MB" >
  6907. </productMenu>
  6908. <productID id="5432"
  6909. />
  6910. <productGroupable type="0"
  6911. />
  6912. </product>
  6913. <product id="OUTFORCE"
  6914. name="OUTFORCE"
  6915. series="Helmet"
  6916. latestVersion="1.0.1"
  6917. show = "1" >
  6918. <productMenu id="protocol"
  6919. type="0">
  6920. </productMenu>
  6921. <productMenu id="sip"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="bluetoothIntercom"
  6925. type="1" >
  6926. </productMenu>
  6927. <productMenu id="phone"
  6928. type="2" >
  6929. </productMenu>
  6930. <productMenu id="fmradio"
  6931. type="3" >
  6932. </productMenu>
  6933. <productMenu id="deviceSetting"
  6934. type="1"
  6935. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6936. </productMenu>
  6937. <productMenu id="quickGuide"
  6938. type="1"
  6939. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6940. size="643KB" >
  6941. </productMenu>
  6942. <productMenu id="userGuide"
  6943. type="1"
  6944. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6945. size="660KB" >
  6946. </productMenu>
  6947. <productMenu id="connectGuide"
  6948. type="1"
  6949. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6950. size="1.12MB" >
  6951. </productMenu>
  6952. <productID id="5430"
  6953. />
  6954. <productGroupable type="0"
  6955. />
  6956. </product>
  6957. <product id="Rumba"
  6958. name="Rumba"
  6959. series="30"
  6960. latestVersion="2.0"
  6961. show = "-1" >
  6962. <productMenu id="protocol"
  6963. type="3" >
  6964. </productMenu>
  6965. <productMenu id="sip"
  6966. type="1" >
  6967. </productMenu>
  6968. <productMenu id="bluetoothIntercom"
  6969. type="1" >
  6970. </productMenu>
  6971. <productMenu id="deviceSetting"
  6972. type="1"
  6973. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6974. </productMenu>
  6975. <productMenu id="quickGuide"
  6976. type="1"
  6977. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6978. size="344KB" >
  6979. </productMenu>
  6980. <productMenu id="userGuide"
  6981. type="1"
  6982. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6983. size="1.14MB" >
  6984. </productMenu>
  6985. <productID id="6322"
  6986. />
  6987. <productGroupable type="0"
  6988. />
  6989. </product>
  6990. <product id="Savage"
  6991. name="Savage"
  6992. series="Helmet"
  6993. latestVersion="1.2.2"
  6994. show = "1" >
  6995. <productMenu id="protocol"
  6996. type="0">
  6997. </productMenu>
  6998. <productMenu id="sip"
  6999. type="1" >
  7000. </productMenu>
  7001. <productMenu id="bluetoothIntercom"
  7002. type="1" >
  7003. </productMenu>
  7004. <productMenu id="phone"
  7005. type="2" >
  7006. </productMenu>
  7007. <productMenu id="fmradio"
  7008. type="3" >
  7009. </productMenu>
  7010. <productMenu id="deviceSetting"
  7011. type="1"
  7012. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7013. <productMenuURL version="1.9"
  7014. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7015. />
  7016. <productMenuURL version="1.1"
  7017. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7018. />
  7019. </productMenu>
  7020. <productMenu id="quickGuide"
  7021. type="1"
  7022. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7023. size="796KB" >
  7024. </productMenu>
  7025. <productMenu id="userGuide"
  7026. type="1"
  7027. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7028. size="910KB" >
  7029. </productMenu>
  7030. <productMenu id="connectGuide"
  7031. type="1"
  7032. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7033. size="1.12MB" >
  7034. </productMenu>
  7035. <productID id="5550"
  7036. />
  7037. <productGroupable type="0"
  7038. />
  7039. </product>
  7040. <product id="SPECTER"
  7041. name="SPECTER"
  7042. series="Helmet"
  7043. latestVersion="1.0.7"
  7044. latestVersionVoicePrompt="1.5"
  7045. show = "1" >
  7046. <productMenu id="protocol"
  7047. type="2" >
  7048. </productMenu>
  7049. <productMenu id="ota"
  7050. type="2" >
  7051. <otaLanguages>
  7052. <otaLanguage
  7053. id="0"
  7054. name="English"
  7055. package="0"
  7056. />
  7057. <otaLanguage
  7058. id="0"
  7059. name="French"
  7060. package="1"
  7061. />
  7062. <otaLanguage
  7063. id="0"
  7064. name="Spanish"
  7065. package="2"
  7066. />
  7067. <otaLanguage
  7068. id="0"
  7069. name="Italian"
  7070. package="3"
  7071. />
  7072. <otaLanguage
  7073. id="0"
  7074. name="German"
  7075. package="4"
  7076. />
  7077. <otaLanguage
  7078. id="0"
  7079. name="Dutch"
  7080. package="5"
  7081. />
  7082. <otaLanguage
  7083. id="0"
  7084. name="Russian"
  7085. package="6"
  7086. />
  7087. <otaLanguage
  7088. id="0"
  7089. name="Chinese"
  7090. package="7"
  7091. />
  7092. <otaLanguage
  7093. id="0"
  7094. name="Korean"
  7095. package="8"
  7096. />
  7097. <otaLanguage
  7098. id="0"
  7099. name="Japanese"
  7100. package="9"
  7101. />
  7102. <otaLanguage
  7103. id="0"
  7104. name="Finnish"
  7105. package="10"
  7106. />
  7107. <otaLanguage
  7108. id="0"
  7109. name="Polish"
  7110. package="11"
  7111. />
  7112. </otaLanguages>
  7113. <otaPackages>
  7114. <package
  7115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7116. size="5183988"
  7117. />
  7118. <package
  7119. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7120. size="5183988"
  7121. />
  7122. <package
  7123. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7124. size="5183988"
  7125. />
  7126. <package
  7127. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7128. size="5183988"
  7129. />
  7130. <package
  7131. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7132. size="5183988"
  7133. />
  7134. <package
  7135. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7136. size="5183988"
  7137. />
  7138. <package
  7139. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7140. size="5183988"
  7141. />
  7142. <package
  7143. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7144. size="5183988"
  7145. />
  7146. <package
  7147. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7148. size="5183988"
  7149. />
  7150. <package
  7151. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7152. size="5183988"
  7153. />
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7160. size="5183988"
  7161. />
  7162. </otaPackages>
  7163. </productMenu>
  7164. <productMenu id="wa"
  7165. type="0" >
  7166. </productMenu>
  7167. <productMenu id="led"
  7168. type="5" >
  7169. </productMenu>
  7170. <productMenu id="led+"
  7171. type="2"
  7172. url="1" >
  7173. </productMenu>
  7174. <productMenu id="meshIntercom+"
  7175. type="3"
  7176. url="2" >
  7177. </productMenu>
  7178. <productMenu id="waveIntercom"
  7179. type="1" >
  7180. </productMenu>
  7181. <productMenu id="fmradio"
  7182. type="0" >
  7183. </productMenu>
  7184. <productMenu id="phone"
  7185. type="1" >
  7186. </productMenu>
  7187. <productMenu id="music"
  7188. type="1" >
  7189. </productMenu>
  7190. <productMenu id="musicSharing"
  7191. type="0" >
  7192. </productMenu>
  7193. <productMenu id="deviceSetting"
  7194. type="1"
  7195. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7196. <productMenuURL version="1.0.4"
  7197. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7198. />
  7199. </productMenu>
  7200. <productMenu id="quickGuide"
  7201. type="0"
  7202. url=""
  7203. size="1.12MB" >
  7204. </productMenu>
  7205. <productMenu id="userGuide"
  7206. type="1"
  7207. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7208. size="2.0MB" >
  7209. </productMenu>
  7210. <productMenu id="videoGuide"
  7211. type="0"
  7212. url=""
  7213. size="3.41MB" >
  7214. </productMenu>
  7215. <productMenu id="volume"
  7216. type="16" >
  7217. </productMenu>
  7218. <productMenu id="volume+"
  7219. type="2"
  7220. url="0x6004" >
  7221. </productMenu>
  7222. <productMenu id="battery"
  7223. type="1" >
  7224. </productMenu>
  7225. <productID id="6A11"
  7226. />
  7227. <productGroupable type="0"
  7228. />
  7229. </product>
  7230. <product id="SPECTER"
  7231. name="SPECTER"
  7232. series="Helmet"
  7233. latestVersion="1.0.7"
  7234. latestVersionVoicePrompt="1.5"
  7235. show = "-1" >
  7236. <productMenu id="protocol"
  7237. type="2" >
  7238. </productMenu>
  7239. <productMenu id="ota"
  7240. type="2" >
  7241. <otaLanguages>
  7242. <otaLanguage
  7243. id="0"
  7244. name="English"
  7245. package="0"
  7246. />
  7247. <otaLanguage
  7248. id="0"
  7249. name="French"
  7250. package="1"
  7251. />
  7252. <otaLanguage
  7253. id="0"
  7254. name="Spanish"
  7255. package="2"
  7256. />
  7257. <otaLanguage
  7258. id="0"
  7259. name="Italian"
  7260. package="3"
  7261. />
  7262. <otaLanguage
  7263. id="0"
  7264. name="German"
  7265. package="4"
  7266. />
  7267. <otaLanguage
  7268. id="0"
  7269. name="Dutch"
  7270. package="5"
  7271. />
  7272. <otaLanguage
  7273. id="0"
  7274. name="Russian"
  7275. package="6"
  7276. />
  7277. <otaLanguage
  7278. id="0"
  7279. name="Chinese"
  7280. package="7"
  7281. />
  7282. <otaLanguage
  7283. id="0"
  7284. name="Korean"
  7285. package="8"
  7286. />
  7287. <otaLanguage
  7288. id="0"
  7289. name="Japanese"
  7290. package="9"
  7291. />
  7292. <otaLanguage
  7293. id="0"
  7294. name="Finnish"
  7295. package="10"
  7296. />
  7297. <otaLanguage
  7298. id="0"
  7299. name="Polish"
  7300. package="11"
  7301. />
  7302. </otaLanguages>
  7303. <otaPackages>
  7304. <package
  7305. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7306. size="5183988"
  7307. />
  7308. <package
  7309. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7310. size="5183988"
  7311. />
  7312. <package
  7313. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7314. size="5183988"
  7315. />
  7316. <package
  7317. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7318. size="5183988"
  7319. />
  7320. <package
  7321. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7322. size="5183988"
  7323. />
  7324. <package
  7325. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7326. size="5183988"
  7327. />
  7328. <package
  7329. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7330. size="5183988"
  7331. />
  7332. <package
  7333. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7334. size="5183988"
  7335. />
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7350. size="5183988"
  7351. />
  7352. </otaPackages>
  7353. </productMenu>
  7354. <productMenu id="wa"
  7355. type="0" >
  7356. </productMenu>
  7357. <productMenu id="led"
  7358. type="5" >
  7359. </productMenu>
  7360. <productMenu id="led+"
  7361. type="2"
  7362. url="1" >
  7363. </productMenu>
  7364. <productMenu id="meshIntercom+"
  7365. type="3"
  7366. url="2" >
  7367. </productMenu>
  7368. <productMenu id="waveIntercom"
  7369. type="1" >
  7370. </productMenu>
  7371. <productMenu id="fmradio"
  7372. type="0" >
  7373. </productMenu>
  7374. <productMenu id="phone"
  7375. type="1" >
  7376. </productMenu>
  7377. <productMenu id="music"
  7378. type="1" >
  7379. </productMenu>
  7380. <productMenu id="musicSharing"
  7381. type="0" >
  7382. </productMenu>
  7383. <productMenu id="deviceSetting"
  7384. type="1"
  7385. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7386. <productMenuURL version="1.0.4"
  7387. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7388. />
  7389. <productMenuURL version="1.0"
  7390. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7391. />
  7392. </productMenu>
  7393. <productMenu id="quickGuide"
  7394. type="0"
  7395. url=""
  7396. size="1.12MB" >
  7397. </productMenu>
  7398. <productMenu id="userGuide"
  7399. type="1"
  7400. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7401. size="2.0MB" >
  7402. </productMenu>
  7403. <productMenu id="videoGuide"
  7404. type="0"
  7405. url=""
  7406. size="3.41MB" >
  7407. </productMenu>
  7408. <productMenu id="volume"
  7409. type="16" >
  7410. </productMenu>
  7411. <productMenu id="volume+"
  7412. type="2"
  7413. url="0x6004" >
  7414. </productMenu>
  7415. <productMenu id="battery"
  7416. type="1" >
  7417. </productMenu>
  7418. <productID id="6A0A"
  7419. />
  7420. <productGroupable type="0"
  7421. />
  7422. </product>
  7423. <product id="OUTLANDER"
  7424. name="OUTLANDER"
  7425. series="Helmet"
  7426. latestVersion="1.0.7"
  7427. latestVersionVoicePrompt="1.5"
  7428. show = "1" >
  7429. <productMenu id="protocol"
  7430. type="2" >
  7431. </productMenu>
  7432. <productMenu id="ota"
  7433. type="2" >
  7434. <otaLanguages>
  7435. <otaLanguage
  7436. id="0"
  7437. name="English"
  7438. package="0"
  7439. />
  7440. <otaLanguage
  7441. id="0"
  7442. name="French"
  7443. package="1"
  7444. />
  7445. <otaLanguage
  7446. id="0"
  7447. name="Spanish"
  7448. package="2"
  7449. />
  7450. <otaLanguage
  7451. id="0"
  7452. name="Italian"
  7453. package="3"
  7454. />
  7455. <otaLanguage
  7456. id="0"
  7457. name="German"
  7458. package="4"
  7459. />
  7460. <otaLanguage
  7461. id="0"
  7462. name="Dutch"
  7463. package="5"
  7464. />
  7465. <otaLanguage
  7466. id="0"
  7467. name="Russian"
  7468. package="6"
  7469. />
  7470. <otaLanguage
  7471. id="0"
  7472. name="Chinese"
  7473. package="7"
  7474. />
  7475. <otaLanguage
  7476. id="0"
  7477. name="Korean"
  7478. package="8"
  7479. />
  7480. <otaLanguage
  7481. id="0"
  7482. name="Japanese"
  7483. package="9"
  7484. />
  7485. <otaLanguage
  7486. id="0"
  7487. name="Finnish"
  7488. package="10"
  7489. />
  7490. <otaLanguage
  7491. id="0"
  7492. name="Polish"
  7493. package="11"
  7494. />
  7495. </otaLanguages>
  7496. <otaPackages>
  7497. <package
  7498. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7499. size="5183988"
  7500. />
  7501. <package
  7502. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7503. size="5183988"
  7504. />
  7505. <package
  7506. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7507. size="5183988"
  7508. />
  7509. <package
  7510. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7511. size="5183988"
  7512. />
  7513. <package
  7514. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7515. size="5183988"
  7516. />
  7517. <package
  7518. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7519. size="5183988"
  7520. />
  7521. <package
  7522. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7523. size="5183988"
  7524. />
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7531. size="5183988"
  7532. />
  7533. <package
  7534. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7535. size="5183988"
  7536. />
  7537. <package
  7538. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7539. size="5183988"
  7540. />
  7541. <package
  7542. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7543. size="5183988"
  7544. />
  7545. </otaPackages>
  7546. </productMenu>
  7547. <productMenu id="wa"
  7548. type="0" >
  7549. </productMenu>
  7550. <productMenu id="led"
  7551. type="5" >
  7552. </productMenu>
  7553. <productMenu id="led+"
  7554. type="2"
  7555. url="1" >
  7556. </productMenu>
  7557. <productMenu id="meshIntercom+"
  7558. type="3"
  7559. url="2" >
  7560. </productMenu>
  7561. <productMenu id="waveIntercom"
  7562. type="1" >
  7563. </productMenu>
  7564. <productMenu id="fmradio"
  7565. type="0" >
  7566. </productMenu>
  7567. <productMenu id="phone"
  7568. type="1" >
  7569. </productMenu>
  7570. <productMenu id="music"
  7571. type="1" >
  7572. </productMenu>
  7573. <productMenu id="musicSharing"
  7574. type="0" >
  7575. </productMenu>
  7576. <productMenu id="deviceSetting"
  7577. type="1"
  7578. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7579. <productMenuURL version="1.0.4"
  7580. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7581. />
  7582. </productMenu>
  7583. <productMenu id="quickGuide"
  7584. type="0"
  7585. url=""
  7586. size="1.12MB" >
  7587. </productMenu>
  7588. <productMenu id="userGuide"
  7589. type="1"
  7590. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7591. size="2.0MB" >
  7592. </productMenu>
  7593. <productMenu id="videoGuide"
  7594. type="0"
  7595. url=""
  7596. size="3.41MB" >
  7597. </productMenu>
  7598. <productMenu id="volume"
  7599. type="16" >
  7600. </productMenu>
  7601. <productMenu id="volume+"
  7602. type="2"
  7603. url="0x6004" >
  7604. </productMenu>
  7605. <productMenu id="battery"
  7606. type="1" >
  7607. </productMenu>
  7608. <productID id="6A05"
  7609. />
  7610. <productGroupable type="0"
  7611. />
  7612. </product>
  7613. <product id="OUTRUSH2"
  7614. name="OUTRUSH 2"
  7615. series="Helmet"
  7616. latestVersion="1.0.2"
  7617. latestVersionVoicePrompt="1.1"
  7618. show = "1" >
  7619. <productMenu id="protocol"
  7620. type="2" >
  7621. </productMenu>
  7622. <productMenu id="alexa"
  7623. type="0" >
  7624. </productMenu>
  7625. <productMenu id="ota"
  7626. type="2" >
  7627. <otaPackages>
  7628. <package
  7629. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7630. size="2945812"
  7631. />
  7632. </otaPackages>
  7633. </productMenu>
  7634. <productMenu id="meshIntercom+"
  7635. type="3"
  7636. url="2" >
  7637. </productMenu>
  7638. <productMenu id="waveIntercom"
  7639. type="1" >
  7640. </productMenu>
  7641. <productMenu id="phone"
  7642. type="1" >
  7643. </productMenu>
  7644. <productMenu id="music"
  7645. type="1" >
  7646. </productMenu>
  7647. <productMenu id="musicSharing"
  7648. type="0" >
  7649. </productMenu>
  7650. <productMenu id="deviceSetting"
  7651. type="1"
  7652. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7653. <productMenuURL version="1.0"
  7654. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7655. />
  7656. </productMenu>
  7657. <productMenu id="quickGuide"
  7658. type="0"
  7659. url=""
  7660. size="1.12MB" >
  7661. </productMenu>
  7662. <productMenu id="userGuide"
  7663. type="1"
  7664. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7665. size="2.0MB" >
  7666. </productMenu>
  7667. <productMenu id="volume"
  7668. type="12" >
  7669. </productMenu>
  7670. <productMenu id="battery"
  7671. type="1" >
  7672. </productMenu>
  7673. <productID id="684A"
  7674. />
  7675. <productGroupable type="0"
  7676. />
  7677. </product>
  7678. <product id="OUTSTAR2"
  7679. name="OUTSTAR 2"
  7680. series="Helmet"
  7681. latestVersion="1.0.1"
  7682. latestVersionVoicePrompt="1.1"
  7683. show = "1" >
  7684. <productMenu id="protocol"
  7685. type="2" >
  7686. </productMenu>
  7687. <productMenu id="alexa"
  7688. type="0" >
  7689. </productMenu>
  7690. <productMenu id="ota"
  7691. type="2" >
  7692. <otaPackages>
  7693. <package
  7694. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7695. size="2945812"
  7696. />
  7697. </otaPackages>
  7698. </productMenu>
  7699. <productMenu id="meshIntercom+"
  7700. type="3"
  7701. url="2" >
  7702. </productMenu>
  7703. <productMenu id="waveIntercom"
  7704. type="1" >
  7705. </productMenu>
  7706. <productMenu id="phone"
  7707. type="1" >
  7708. </productMenu>
  7709. <productMenu id="music"
  7710. type="1" >
  7711. </productMenu>
  7712. <productMenu id="musicSharing"
  7713. type="0" >
  7714. </productMenu>
  7715. <productMenu id="deviceSetting"
  7716. type="1"
  7717. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7718. </productMenu>
  7719. <productMenu id="quickGuide"
  7720. type="0"
  7721. url=""
  7722. size="1.12MB" >
  7723. </productMenu>
  7724. <productMenu id="userGuide"
  7725. type="1"
  7726. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7727. size="2.0MB" >
  7728. </productMenu>
  7729. <productMenu id="volume"
  7730. type="12" >
  7731. </productMenu>
  7732. <productMenu id="battery"
  7733. type="1" >
  7734. </productMenu>
  7735. <productID id="684B"
  7736. />
  7737. <productGroupable type="0"
  7738. />
  7739. </product>
  7740. <product id="SURGE"
  7741. name="SURGE"
  7742. series="Helmet"
  7743. latestVersion="1.2"
  7744. latestVersionVoicePrompt="1.3"
  7745. show = "1" >
  7746. <productMenu id="protocol"
  7747. type="2" >
  7748. </productMenu>
  7749. <productMenu id="alexa"
  7750. type="0" >
  7751. </productMenu>
  7752. <productMenu id="ota"
  7753. type="2" >
  7754. <otaPackages>
  7755. <package
  7756. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7757. size="2945812"
  7758. />
  7759. </otaPackages>
  7760. </productMenu>
  7761. <productMenu id="meshIntercom"
  7762. type="30" >
  7763. </productMenu>
  7764. <productMenu id="meshIntercom+"
  7765. type="3"
  7766. url="2" >
  7767. <productMenuType version="1.0.1"
  7768. type="2"
  7769. />
  7770. </productMenu>
  7771. <productMenu id="waveIntercom"
  7772. type="1" >
  7773. <productMenuType version="1.0.9"
  7774. type="0"
  7775. />
  7776. </productMenu>
  7777. <productMenu id="phone"
  7778. type="1" >
  7779. </productMenu>
  7780. <productMenu id="music"
  7781. type="1" >
  7782. </productMenu>
  7783. <productMenu id="musicSharing"
  7784. type="0" >
  7785. </productMenu>
  7786. <productMenu id="deviceSetting"
  7787. type="1"
  7788. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7789. <productMenuURL version="1.1.9"
  7790. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7791. />
  7792. <productMenuURL version="1.0.1"
  7793. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7794. />
  7795. </productMenu>
  7796. <productMenu id="quickGuide"
  7797. type="0"
  7798. url=""
  7799. size="1.12MB" >
  7800. </productMenu>
  7801. <productMenu id="userGuide"
  7802. type="1"
  7803. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7804. size="2.0MB" >
  7805. </productMenu>
  7806. <productMenu id="volume"
  7807. type="12" >
  7808. </productMenu>
  7809. <productMenu id="battery"
  7810. type="1" >
  7811. </productMenu>
  7812. <productID id="6840"
  7813. />
  7814. <productGroupable type="0"
  7815. />
  7816. </product>
  7817. <product id="Cavalry2"
  7818. name="Cavalry 2"
  7819. series="Helmet"
  7820. latestVersion="1.2"
  7821. latestVersionVoicePrompt="1.3"
  7822. show = "1" >
  7823. <productMenu id="protocol"
  7824. type="2" >
  7825. </productMenu>
  7826. <productMenu id="alexa"
  7827. type="0" >
  7828. </productMenu>
  7829. <productMenu id="ota"
  7830. type="2" >
  7831. <otaPackages>
  7832. <package
  7833. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7834. size="3144148"
  7835. />
  7836. </otaPackages>
  7837. </productMenu>
  7838. <productMenu id="wa"
  7839. type="0" >
  7840. </productMenu>
  7841. <productMenu id="meshIntercom"
  7842. type="30" >
  7843. </productMenu>
  7844. <productMenu id="meshIntercom+"
  7845. type="3"
  7846. url="2" >
  7847. <productMenuType version="1.0"
  7848. type="2"
  7849. />
  7850. </productMenu>
  7851. <productMenu id="waveIntercom"
  7852. type="1" >
  7853. <productMenuType version="1.0.9"
  7854. type="0"
  7855. />
  7856. </productMenu>
  7857. <productMenu id="phone"
  7858. type="1" >
  7859. </productMenu>
  7860. <productMenu id="music"
  7861. type="1" >
  7862. </productMenu>
  7863. <productMenu id="musicSharing"
  7864. type="0" >
  7865. </productMenu>
  7866. <productMenu id="deviceSetting"
  7867. type="1"
  7868. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7869. <productMenuURL version="1.1.9"
  7870. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7871. />
  7872. <productMenuURL version="1.0"
  7873. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7874. />
  7875. </productMenu>
  7876. <productMenu id="quickGuide"
  7877. type="0"
  7878. url=""
  7879. size="1.12MB" >
  7880. </productMenu>
  7881. <productMenu id="userGuide"
  7882. type="1"
  7883. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7884. size="2.0MB" >
  7885. </productMenu>
  7886. <productMenu id="connectGuide"
  7887. type="1"
  7888. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7889. size="1.12MB" >
  7890. </productMenu>
  7891. <productMenu id="volume"
  7892. type="12" >
  7893. </productMenu>
  7894. <productMenu id="battery"
  7895. type="1" >
  7896. </productMenu>
  7897. <productID id="6839"
  7898. />
  7899. <productGroupable type="0"
  7900. />
  7901. </product>
  7902. <product id="Cavalry"
  7903. name="Cavalry"
  7904. series="Helmet"
  7905. latestVersion="1.2.2"
  7906. show = "1" >
  7907. <productMenu id="protocol"
  7908. type="0">
  7909. </productMenu>
  7910. <productMenu id="sip"
  7911. type="1" >
  7912. </productMenu>
  7913. <productMenu id="bluetoothIntercom"
  7914. type="1" >
  7915. </productMenu>
  7916. <productMenu id="phone"
  7917. type="2" >
  7918. </productMenu>
  7919. <productMenu id="fmradio"
  7920. type="3" >
  7921. </productMenu>
  7922. <productMenu id="deviceSetting"
  7923. type="1"
  7924. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7925. <productMenuURL version="1.9"
  7926. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7927. />
  7928. <productMenuURL version="1.0.1"
  7929. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7930. />
  7931. </productMenu>
  7932. <productMenu id="quickGuide"
  7933. type="1"
  7934. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7935. size="795KB" >
  7936. </productMenu>
  7937. <productMenu id="userGuide"
  7938. type="1"
  7939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7940. size="1.87MB" >
  7941. </productMenu>
  7942. <productMenu id="connectGuide"
  7943. type="1"
  7944. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7945. size="1.12MB" >
  7946. </productMenu>
  7947. <productID id="5524"
  7948. />
  7949. <productGroupable type="0"
  7950. />
  7951. </product>
  7952. <product id="Cavalry_Lite"
  7953. name="Cavalry Lite"
  7954. series="Helmet"
  7955. latestVersion="1.0.2"
  7956. show = "1" >
  7957. <productMenu id="protocol"
  7958. type="0">
  7959. </productMenu>
  7960. <productMenu id="sip"
  7961. type="1" >
  7962. </productMenu>
  7963. <productMenu id="bluetoothIntercom"
  7964. type="1" >
  7965. </productMenu>
  7966. <productMenu id="phone"
  7967. type="2" >
  7968. </productMenu>
  7969. <productMenu id="fmradio"
  7970. type="3" >
  7971. </productMenu>
  7972. <productMenu id="deviceSetting"
  7973. type="1"
  7974. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7975. </productMenu>
  7976. <productMenu id="userGuide"
  7977. type="1"
  7978. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7979. size="1.74MB" >
  7980. </productMenu>
  7981. <productMenu id="connectGuide"
  7982. type="1"
  7983. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7984. size="1.12MB" >
  7985. </productMenu>
  7986. <productID id="5536"
  7987. />
  7988. <productGroupable type="0"
  7989. />
  7990. </product>
  7991. <product id="VORTEX"
  7992. name="VORTEX"
  7993. series="VORTEX"
  7994. latestVersion="1.0"
  7995. latestVersionVoicePrompt="1.0"
  7996. show = "-1" >
  7997. <productMenu id="protocol"
  7998. type="2" >
  7999. </productMenu>
  8000. <productMenu id="ota"
  8001. type="2" >
  8002. <otaLanguages>
  8003. <otaLanguage
  8004. id="0"
  8005. name="English"
  8006. package="0"
  8007. />
  8008. <otaLanguage
  8009. id="0"
  8010. name="French"
  8011. package="1"
  8012. />
  8013. <otaLanguage
  8014. id="0"
  8015. name="Spanish"
  8016. package="2"
  8017. />
  8018. <otaLanguage
  8019. id="0"
  8020. name="Italian"
  8021. package="3"
  8022. />
  8023. <otaLanguage
  8024. id="0"
  8025. name="German"
  8026. package="4"
  8027. />
  8028. <otaLanguage
  8029. id="0"
  8030. name="Dutch"
  8031. package="5"
  8032. />
  8033. <otaLanguage
  8034. id="0"
  8035. name="Russian"
  8036. package="6"
  8037. />
  8038. <otaLanguage
  8039. id="0"
  8040. name="Chinese"
  8041. package="7"
  8042. />
  8043. <otaLanguage
  8044. id="0"
  8045. name="Korean"
  8046. package="8"
  8047. />
  8048. <otaLanguage
  8049. id="0"
  8050. name="Japanese"
  8051. package="9"
  8052. />
  8053. <otaLanguage
  8054. id="0"
  8055. name="Finnish"
  8056. package="10"
  8057. />
  8058. <otaLanguage
  8059. id="0"
  8060. name="Polish"
  8061. package="11"
  8062. />
  8063. </otaLanguages>
  8064. <otaPackages>
  8065. <package
  8066. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8067. size="5183988"
  8068. />
  8069. <package
  8070. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8071. size="5183988"
  8072. />
  8073. <package
  8074. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8075. size="5183988"
  8076. />
  8077. <package
  8078. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8079. size="5183988"
  8080. />
  8081. <package
  8082. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8083. size="5183988"
  8084. />
  8085. <package
  8086. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8087. size="5183988"
  8088. />
  8089. <package
  8090. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8091. size="5183988"
  8092. />
  8093. <package
  8094. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8095. size="5183988"
  8096. />
  8097. <package
  8098. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8099. size="5183988"
  8100. />
  8101. <package
  8102. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8103. size="5183988"
  8104. />
  8105. <package
  8106. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8107. size="5183988"
  8108. />
  8109. <package
  8110. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8111. size="5183988"
  8112. />
  8113. </otaPackages>
  8114. </productMenu>
  8115. <productMenu id="sip"
  8116. type="1" >
  8117. </productMenu>
  8118. <productMenu id="bluetoothIntercom"
  8119. type="1" >
  8120. </productMenu>
  8121. <productMenu id="phone"
  8122. type="1" >
  8123. </productMenu>
  8124. <productMenu id="music"
  8125. type="1" >
  8126. </productMenu>
  8127. <productMenu id="fmradio"
  8128. type="1"
  8129. url="1" >
  8130. </productMenu>
  8131. <productMenu id="deviceSetting"
  8132. type="1"
  8133. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8134. </productMenu>
  8135. <productMenu id="quickGuide"
  8136. type="0"
  8137. url=""
  8138. size="934KB" >
  8139. </productMenu>
  8140. <productMenu id="userGuide"
  8141. type="1"
  8142. url=""
  8143. size="1.14MB" >
  8144. </productMenu>
  8145. <productMenu id="connectGuide"
  8146. type="0"
  8147. url=""
  8148. size="1.12MB" >
  8149. </productMenu>
  8150. <productMenu id="volume"
  8151. type="15" >
  8152. </productMenu>
  8153. <productMenu id="appearance"
  8154. type="1"
  8155. url="1|white,silver,black" >
  8156. </productMenu>
  8157. <productID id="3451"
  8158. />
  8159. <productGroupable type="0"
  8160. />
  8161. </product>
  8162. <product id="SF4"
  8163. name="SF4"
  8164. series="SF"
  8165. latestVersion="1.1.5"
  8166. show = "-1" >
  8167. <productMenu id="protocol"
  8168. type="1"
  8169. url="3">
  8170. </productMenu>
  8171. <productMenu id="sip"
  8172. type="1" >
  8173. </productMenu>
  8174. <productMenu id="bluetoothIntercom"
  8175. type="1" >
  8176. </productMenu>
  8177. <productMenu id="phone"
  8178. type="1" >
  8179. </productMenu>
  8180. <productMenu id="music"
  8181. type="1" >
  8182. </productMenu>
  8183. <productMenu id="fmradio"
  8184. type="1" >
  8185. </productMenu>
  8186. <productMenu id="deviceSetting"
  8187. type="1"
  8188. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8189. <productMenuURL version="1.0.1"
  8190. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8191. />
  8192. </productMenu>
  8193. <productMenu id="quickGuide"
  8194. type="1"
  8195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8196. size="607KB" >
  8197. </productMenu>
  8198. <productMenu id="userGuide"
  8199. type="1"
  8200. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8201. size="1.91MB" >
  8202. </productMenu>
  8203. <productMenu id="volume"
  8204. type="4" >
  8205. </productMenu>
  8206. <productID id="5414"
  8207. />
  8208. <productGroupable type="0"
  8209. />
  8210. </product>
  8211. <product id="SF4"
  8212. name="SF4"
  8213. series="SF"
  8214. latestVersion="3.4.4"
  8215. show = "1" >
  8216. <productMenu id="protocol"
  8217. type="2" >
  8218. </productMenu>
  8219. <productMenu id="sip"
  8220. type="1" >
  8221. </productMenu>
  8222. <productMenu id="bluetoothIntercom"
  8223. type="1" >
  8224. </productMenu>
  8225. <productMenu id="phone"
  8226. type="1" >
  8227. </productMenu>
  8228. <productMenu id="music"
  8229. type="1" >
  8230. </productMenu>
  8231. <productMenu id="fmradio"
  8232. type="1" >
  8233. </productMenu>
  8234. <productMenu id="deviceSetting"
  8235. type="1"
  8236. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8237. <productMenuURL version="3.0"
  8238. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8239. />
  8240. </productMenu>
  8241. <productMenu id="quickGuide"
  8242. type="0"
  8243. url=""
  8244. size="934KB" >
  8245. </productMenu>
  8246. <productMenu id="userGuide"
  8247. type="1"
  8248. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8249. size="1.14MB" >
  8250. </productMenu>
  8251. <productMenu id="connectGuide"
  8252. type="1"
  8253. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8254. size="1.12MB" >
  8255. </productMenu>
  8256. <productMenu id="volume"
  8257. type="15" >
  8258. </productMenu>
  8259. <productID id="3370"
  8260. />
  8261. <productGroupable type="0"
  8262. />
  8263. </product>
  8264. <product id="SF2"
  8265. name="SF2"
  8266. series="SF"
  8267. latestVersion="1.2.1"
  8268. show = "-1" >
  8269. <productMenu id="protocol"
  8270. type="1"
  8271. url="2">
  8272. </productMenu>
  8273. <productMenu id="sip"
  8274. type="1" >
  8275. </productMenu>
  8276. <productMenu id="bluetoothIntercom"
  8277. type="1" >
  8278. </productMenu>
  8279. <productMenu id="phone"
  8280. type="1" >
  8281. </productMenu>
  8282. <productMenu id="music"
  8283. type="1" >
  8284. </productMenu>
  8285. <productMenu id="fmradio"
  8286. type="1" >
  8287. </productMenu>
  8288. <productMenu id="deviceSetting"
  8289. type="1"
  8290. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8291. <productMenuURL version="1.0.1"
  8292. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8293. />
  8294. </productMenu>
  8295. <productMenu id="quickGuide"
  8296. type="1"
  8297. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8298. size="607KB" >
  8299. </productMenu>
  8300. <productMenu id="userGuide"
  8301. type="1"
  8302. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8303. size="1.91MB" >
  8304. </productMenu>
  8305. <productMenu id="volume"
  8306. type="4" >
  8307. </productMenu>
  8308. <productID id="5412"
  8309. />
  8310. <productGroupable type="0"
  8311. />
  8312. </product>
  8313. <product id="SF2"
  8314. name="SF2"
  8315. series="SF"
  8316. latestVersion="3.3.4"
  8317. show = "1" >
  8318. <productMenu id="protocol"
  8319. type="2" >
  8320. </productMenu>
  8321. <productMenu id="sip"
  8322. type="1" >
  8323. </productMenu>
  8324. <productMenu id="bluetoothIntercom"
  8325. type="1" >
  8326. </productMenu>
  8327. <productMenu id="phone"
  8328. type="1" >
  8329. </productMenu>
  8330. <productMenu id="music"
  8331. type="1" >
  8332. </productMenu>
  8333. <productMenu id="fmradio"
  8334. type="0" >
  8335. </productMenu>
  8336. <productMenu id="deviceSetting"
  8337. type="1"
  8338. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8339. <productMenuURL version="3.0"
  8340. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8341. />
  8342. </productMenu>
  8343. <productMenu id="quickGuide"
  8344. type="0"
  8345. url=""
  8346. size="934KB" >
  8347. </productMenu>
  8348. <productMenu id="userGuide"
  8349. type="1"
  8350. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8351. size="1.14MB" >
  8352. </productMenu>
  8353. <productMenu id="connectGuide"
  8354. type="1"
  8355. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8356. size="1.12MB" >
  8357. </productMenu>
  8358. <productMenu id="volume"
  8359. type="15" >
  8360. </productMenu>
  8361. <productID id="3360"
  8362. />
  8363. <productGroupable type="0"
  8364. />
  8365. </product>
  8366. <product id="SF1"
  8367. name="SF1"
  8368. series="SF"
  8369. latestVersion="2.0.5"
  8370. show = "-1" >
  8371. <productMenu id="protocol"
  8372. type="1"
  8373. url="1">
  8374. </productMenu>
  8375. <productMenu id="sip"
  8376. type="1" >
  8377. </productMenu>
  8378. <productMenu id="bluetoothIntercom"
  8379. type="1" >
  8380. <productMenuType version="1.1"
  8381. type="0"
  8382. />
  8383. </productMenu>
  8384. <productMenu id="phone"
  8385. type="1" >
  8386. </productMenu>
  8387. <productMenu id="music"
  8388. type="1" >
  8389. </productMenu>
  8390. <productMenu id="deviceSetting"
  8391. type="1"
  8392. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8393. <productMenuURL version="1.1"
  8394. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8395. />
  8396. <productMenuURL version="1.0"
  8397. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8398. />
  8399. </productMenu>
  8400. <productMenu id="quickGuide"
  8401. type="1"
  8402. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8403. size="401KB" >
  8404. </productMenu>
  8405. <productMenu id="userGuide"
  8406. type="1"
  8407. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8408. size="1.91MB" >
  8409. </productMenu>
  8410. <productMenu id="volume"
  8411. type="3" >
  8412. </productMenu>
  8413. <productID id="5410"
  8414. />
  8415. <productGroupable type="0"
  8416. />
  8417. </product>
  8418. <product id="SF1"
  8419. name="SF1"
  8420. series="SF"
  8421. latestVersion="3.3.4"
  8422. show = "1" >
  8423. <productMenu id="protocol"
  8424. type="2" >
  8425. </productMenu>
  8426. <productMenu id="sip"
  8427. type="1" >
  8428. </productMenu>
  8429. <productMenu id="bluetoothIntercom"
  8430. type="1" >
  8431. </productMenu>
  8432. <productMenu id="phone"
  8433. type="1" >
  8434. </productMenu>
  8435. <productMenu id="music"
  8436. type="1" >
  8437. </productMenu>
  8438. <productMenu id="fmradio"
  8439. type="0" >
  8440. </productMenu>
  8441. <productMenu id="deviceSetting"
  8442. type="1"
  8443. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8444. <productMenuURL version="3.0"
  8445. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8446. />
  8447. </productMenu>
  8448. <productMenu id="quickGuide"
  8449. type="0"
  8450. url=""
  8451. size="934KB" >
  8452. </productMenu>
  8453. <productMenu id="userGuide"
  8454. type="1"
  8455. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8456. size="1.14MB" >
  8457. </productMenu>
  8458. <productMenu id="connectGuide"
  8459. type="1"
  8460. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8461. size="1.12MB" >
  8462. </productMenu>
  8463. <productMenu id="volume"
  8464. type="15" >
  8465. </productMenu>
  8466. <productID id="3350"
  8467. />
  8468. <productGroupable type="0"
  8469. />
  8470. </product>
  8471. <product id="SFR"
  8472. name="SFR"
  8473. series="SF"
  8474. latestVersion="1.1.1"
  8475. show = "1" >
  8476. <productMenu id="protocol"
  8477. type="1"
  8478. url="3">
  8479. </productMenu>
  8480. <productMenu id="sip"
  8481. type="1" >
  8482. </productMenu>
  8483. <productMenu id="bluetoothIntercom"
  8484. type="1" >
  8485. </productMenu>
  8486. <productMenu id="phone"
  8487. type="1" >
  8488. </productMenu>
  8489. <productMenu id="music"
  8490. type="1" >
  8491. </productMenu>
  8492. <productMenu id="fmradio"
  8493. type="1" >
  8494. </productMenu>
  8495. <productMenu id="deviceSetting"
  8496. type="1"
  8497. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8498. </productMenu>
  8499. <productMenu id="quickGuide"
  8500. type="1"
  8501. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8502. size="607KB" >
  8503. </productMenu>
  8504. <productMenu id="userGuide"
  8505. type="1"
  8506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8507. size="1.91MB" >
  8508. </productMenu>
  8509. <productMenu id="volume"
  8510. type="4" >
  8511. </productMenu>
  8512. <productID id="5418"
  8513. />
  8514. <productGroupable type="0"
  8515. />
  8516. </product>
  8517. <product id="20S"
  8518. name="20S"
  8519. series="20"
  8520. latestVersion="2.2.3"
  8521. show = "1" >
  8522. <productMenu id="protocol"
  8523. type="0">
  8524. </productMenu>
  8525. <productMenu id="wa"
  8526. type="5" >
  8527. </productMenu>
  8528. <productMenu id="sip"
  8529. type="1" >
  8530. <productMenuType version="1.0"
  8531. type="0"
  8532. />
  8533. </productMenu>
  8534. <productMenu id="bluetoothIntercom"
  8535. type="1" >
  8536. <productMenuType version="1.0"
  8537. type="0"
  8538. />
  8539. </productMenu>
  8540. <productMenu id="intercomSetting"
  8541. type="1" >
  8542. </productMenu>
  8543. <productMenu id="phone"
  8544. type="2" >
  8545. </productMenu>
  8546. <productMenu id="fmradio"
  8547. type="3" >
  8548. </productMenu>
  8549. <productMenu id="deviceSetting"
  8550. type="1"
  8551. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8552. <productMenuURL version="2.0.2"
  8553. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8554. />
  8555. <productMenuURL version="1.5"
  8556. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8557. />
  8558. <productMenuURL version="1.4.1"
  8559. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8560. />
  8561. <productMenuURL version="1.1"
  8562. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8563. />
  8564. <productMenuURL version="1.0"
  8565. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8566. />
  8567. </productMenu>
  8568. <productMenu id="quickGuide"
  8569. type="0"
  8570. url=""
  8571. size="264KB" >
  8572. </productMenu>
  8573. <productMenu id="userGuide"
  8574. type="1"
  8575. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8576. size="3.09MB" >
  8577. </productMenu>
  8578. <productMenu id="connectGuide"
  8579. type="1"
  8580. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8581. size="1.12MB" >
  8582. </productMenu>
  8583. <productID id="4210"
  8584. />
  8585. <productGroupable type="1"
  8586. />
  8587. </product>
  8588. <product id="20S_EVO"
  8589. name="20S EVO"
  8590. series="20"
  8591. latestVersion="2.2.3"
  8592. show = "1" >
  8593. <productMenu id="protocol"
  8594. type="0">
  8595. </productMenu>
  8596. <productMenu id="wa"
  8597. type="5" >
  8598. </productMenu>
  8599. <productMenu id="sip"
  8600. type="1" >
  8601. <productMenuType version="1.0"
  8602. type="0"
  8603. />
  8604. </productMenu>
  8605. <productMenu id="bluetoothIntercom"
  8606. type="1" >
  8607. <productMenuType version="1.0"
  8608. type="0"
  8609. />
  8610. </productMenu>
  8611. <productMenu id="intercomSetting"
  8612. type="1" >
  8613. </productMenu>
  8614. <productMenu id="phone"
  8615. type="2" >
  8616. </productMenu>
  8617. <productMenu id="fmradio"
  8618. type="3" >
  8619. </productMenu>
  8620. <productMenu id="deviceSetting"
  8621. type="1"
  8622. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8623. <productMenuURL version="2.0.2"
  8624. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8625. />
  8626. <productMenuURL version="1.5"
  8627. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8628. />
  8629. <productMenuURL version="1.4.1"
  8630. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8631. />
  8632. <productMenuURL version="1.1"
  8633. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8634. />
  8635. <productMenuURL version="1.0"
  8636. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8637. />
  8638. </productMenu>
  8639. <productMenu id="quickGuide"
  8640. type="0"
  8641. url=""
  8642. size="264KB" >
  8643. </productMenu>
  8644. <productMenu id="userGuide"
  8645. type="1"
  8646. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8647. size="3.09MB" >
  8648. </productMenu>
  8649. <productMenu id="connectGuide"
  8650. type="1"
  8651. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8652. size="1.12MB" >
  8653. </productMenu>
  8654. <productID id="4210"
  8655. />
  8656. <productProductKey key="16"
  8657. />
  8658. <productGroupable type="1"
  8659. />
  8660. </product>
  8661. <product id="10S"
  8662. name="10S"
  8663. series="10"
  8664. latestVersion="3.0.2"
  8665. show = "1" >
  8666. <productMenu id="protocol"
  8667. type="3" >
  8668. </productMenu>
  8669. <productMenu id="sip"
  8670. type="1" >
  8671. </productMenu>
  8672. <productMenu id="bluetoothIntercom"
  8673. type="1" >
  8674. </productMenu>
  8675. <productMenu id="phone"
  8676. type="1" >
  8677. </productMenu>
  8678. <productMenu id="deviceSetting"
  8679. type="1"
  8680. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8681. </productMenu>
  8682. <productMenu id="quickGuide"
  8683. type="1"
  8684. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8685. size="934KB" >
  8686. </productMenu>
  8687. <productMenu id="userGuide"
  8688. type="1"
  8689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8690. size="1.14MB" >
  8691. </productMenu>
  8692. <productMenu id="connectGuide"
  8693. type="1"
  8694. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8695. size="1.12MB" >
  8696. </productMenu>
  8697. <productID id="3380"
  8698. />
  8699. <productGroupable type="0"
  8700. />
  8701. </product>
  8702. <product id="10S"
  8703. name="10S"
  8704. series="10"
  8705. latestVersion="2.1.1"
  8706. show = "-1" >
  8707. <productMenu id="protocol"
  8708. type="0">
  8709. </productMenu>
  8710. <productMenu id="sip"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="bluetoothIntercom"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="phone"
  8717. type="2" >
  8718. </productMenu>
  8719. <productMenu id="fmradio"
  8720. type="3" >
  8721. </productMenu>
  8722. <productMenu id="deviceSetting"
  8723. type="1"
  8724. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8725. <productMenuURL version="1.5"
  8726. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8727. />
  8728. <productMenuURL version="1.3.1"
  8729. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8730. />
  8731. </productMenu>
  8732. <productMenu id="quickGuide"
  8733. type="1"
  8734. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8735. size="310KB" >
  8736. </productMenu>
  8737. <productMenu id="userGuide"
  8738. type="1"
  8739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8740. size="1.57MB" >
  8741. </productMenu>
  8742. <productID id="5530"
  8743. />
  8744. <productGroupable type="0"
  8745. />
  8746. </product>
  8747. <product id="Apex"
  8748. name="Apex"
  8749. series="Apex"
  8750. latestVersion="1.0"
  8751. latestVersionVoicePrompt="1.0"
  8752. show = "-1" >
  8753. <productMenu id="protocol"
  8754. type="2" >
  8755. </productMenu>
  8756. <productMenu id="serialNumber"
  8757. type="1" >
  8758. </productMenu>
  8759. <productMenu id="ota"
  8760. type="0" >
  8761. <otaLanguages>
  8762. <otaLanguage
  8763. id="0"
  8764. name="English"
  8765. package="0"
  8766. />
  8767. <otaLanguage
  8768. id="0"
  8769. name="French"
  8770. package="1"
  8771. />
  8772. <otaLanguage
  8773. id="0"
  8774. name="Spanish"
  8775. package="2"
  8776. />
  8777. <otaLanguage
  8778. id="0"
  8779. name="Italian"
  8780. package="3"
  8781. />
  8782. <otaLanguage
  8783. id="0"
  8784. name="German"
  8785. package="4"
  8786. />
  8787. <otaLanguage
  8788. id="0"
  8789. name="Dutch"
  8790. package="5"
  8791. />
  8792. <otaLanguage
  8793. id="0"
  8794. name="Russian"
  8795. package="6"
  8796. />
  8797. <otaLanguage
  8798. id="0"
  8799. name="Chinese"
  8800. package="7"
  8801. />
  8802. <otaLanguage
  8803. id="0"
  8804. name="Korean"
  8805. package="8"
  8806. />
  8807. <otaLanguage
  8808. id="0"
  8809. name="Japanese"
  8810. package="9"
  8811. />
  8812. <otaLanguage
  8813. id="0"
  8814. name="Finnish"
  8815. package="10"
  8816. />
  8817. <otaLanguage
  8818. id="0"
  8819. name="Polish"
  8820. package="11"
  8821. />
  8822. </otaLanguages>
  8823. <otaPackages>
  8824. <package
  8825. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8826. size="5183988"
  8827. />
  8828. <package
  8829. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8830. size="5183988"
  8831. />
  8832. <package
  8833. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8834. size="5183988"
  8835. />
  8836. <package
  8837. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8838. size="5183988"
  8839. />
  8840. <package
  8841. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8842. size="5183988"
  8843. />
  8844. <package
  8845. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8846. size="5183988"
  8847. />
  8848. <package
  8849. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8850. size="5183988"
  8851. />
  8852. <package
  8853. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8854. size="5183988"
  8855. />
  8856. <package
  8857. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8858. size="5183988"
  8859. />
  8860. <package
  8861. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8862. size="5183988"
  8863. />
  8864. <package
  8865. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8866. size="5183988"
  8867. />
  8868. <package
  8869. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8870. size="5183988"
  8871. />
  8872. </otaPackages>
  8873. </productMenu>
  8874. <productMenu id="sip"
  8875. type="1" >
  8876. </productMenu>
  8877. <productMenu id="bluetoothIntercom"
  8878. type="1" >
  8879. </productMenu>
  8880. <productMenu id="phone"
  8881. type="1" >
  8882. </productMenu>
  8883. <productMenu id="music"
  8884. type="1" >
  8885. </productMenu>
  8886. <productMenu id="fmradio"
  8887. type="1"
  8888. url="1" >
  8889. </productMenu>
  8890. <productMenu id="deviceSetting"
  8891. type="1"
  8892. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8893. </productMenu>
  8894. <productMenu id="quickGuide"
  8895. type="0"
  8896. url=""
  8897. size="934KB" >
  8898. </productMenu>
  8899. <productMenu id="userGuide"
  8900. type="1"
  8901. url=""
  8902. size="1.14MB" >
  8903. </productMenu>
  8904. <productMenu id="volume"
  8905. type="15" >
  8906. </productMenu>
  8907. <productID id="3452"
  8908. />
  8909. <productGroupable type="0"
  8910. />
  8911. </product>
  8912. <product id="ApexPlus"
  8913. name="Apex Plus"
  8914. series="Apex"
  8915. latestVersion="1.0"
  8916. latestVersionVoicePrompt="1.0"
  8917. show = "-1" >
  8918. <productMenu id="protocol"
  8919. type="2" >
  8920. </productMenu>
  8921. <productMenu id="serialNumber"
  8922. type="1" >
  8923. </productMenu>
  8924. <productMenu id="ota"
  8925. type="0" >
  8926. <otaLanguages>
  8927. <otaLanguage
  8928. id="0"
  8929. name="English"
  8930. package="0"
  8931. />
  8932. <otaLanguage
  8933. id="0"
  8934. name="French"
  8935. package="1"
  8936. />
  8937. <otaLanguage
  8938. id="0"
  8939. name="Spanish"
  8940. package="2"
  8941. />
  8942. <otaLanguage
  8943. id="0"
  8944. name="Italian"
  8945. package="3"
  8946. />
  8947. <otaLanguage
  8948. id="0"
  8949. name="German"
  8950. package="4"
  8951. />
  8952. <otaLanguage
  8953. id="0"
  8954. name="Dutch"
  8955. package="5"
  8956. />
  8957. <otaLanguage
  8958. id="0"
  8959. name="Russian"
  8960. package="6"
  8961. />
  8962. <otaLanguage
  8963. id="0"
  8964. name="Chinese"
  8965. package="7"
  8966. />
  8967. <otaLanguage
  8968. id="0"
  8969. name="Korean"
  8970. package="8"
  8971. />
  8972. <otaLanguage
  8973. id="0"
  8974. name="Japanese"
  8975. package="9"
  8976. />
  8977. <otaLanguage
  8978. id="0"
  8979. name="Finnish"
  8980. package="10"
  8981. />
  8982. <otaLanguage
  8983. id="0"
  8984. name="Polish"
  8985. package="11"
  8986. />
  8987. </otaLanguages>
  8988. <otaPackages>
  8989. <package
  8990. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8991. size="5183988"
  8992. />
  8993. <package
  8994. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8995. size="5183988"
  8996. />
  8997. <package
  8998. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8999. size="5183988"
  9000. />
  9001. <package
  9002. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9003. size="5183988"
  9004. />
  9005. <package
  9006. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9007. size="5183988"
  9008. />
  9009. <package
  9010. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9011. size="5183988"
  9012. />
  9013. <package
  9014. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9015. size="5183988"
  9016. />
  9017. <package
  9018. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9019. size="5183988"
  9020. />
  9021. <package
  9022. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9023. size="5183988"
  9024. />
  9025. <package
  9026. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9027. size="5183988"
  9028. />
  9029. <package
  9030. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9031. size="5183988"
  9032. />
  9033. <package
  9034. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9035. size="5183988"
  9036. />
  9037. </otaPackages>
  9038. </productMenu>
  9039. <productMenu id="sip"
  9040. type="1" >
  9041. </productMenu>
  9042. <productMenu id="bluetoothIntercom"
  9043. type="1" >
  9044. </productMenu>
  9045. <productMenu id="phone"
  9046. type="1" >
  9047. </productMenu>
  9048. <productMenu id="music"
  9049. type="1" >
  9050. </productMenu>
  9051. <productMenu id="fmradio"
  9052. type="1"
  9053. url="1" >
  9054. </productMenu>
  9055. <productMenu id="deviceSetting"
  9056. type="1"
  9057. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  9058. </productMenu>
  9059. <productMenu id="quickGuide"
  9060. type="0"
  9061. url=""
  9062. size="934KB" >
  9063. </productMenu>
  9064. <productMenu id="userGuide"
  9065. type="1"
  9066. url=""
  9067. size="1.14MB" >
  9068. </productMenu>
  9069. <productMenu id="volume"
  9070. type="15" >
  9071. </productMenu>
  9072. <productID id="3453"
  9073. />
  9074. <productGroupable type="0"
  9075. />
  9076. </product>
  9077. <product id="10R2"
  9078. name="10R 2"
  9079. series="10"
  9080. latestVersion="0.9"
  9081. latestVersionVoicePrompt="1.1"
  9082. show = "-1" >
  9083. <productMenu id="protocol"
  9084. type="2" >
  9085. </productMenu>
  9086. <productMenu id="ota"
  9087. type="2" >
  9088. <otaPackages>
  9089. <package
  9090. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9091. size="2945812"
  9092. />
  9093. </otaPackages>
  9094. </productMenu>
  9095. <productMenu id="sip"
  9096. type="1" >
  9097. </productMenu>
  9098. <productMenu id="bluetoothIntercom"
  9099. type="1" >
  9100. </productMenu>
  9101. <productMenu id="phone"
  9102. type="1" >
  9103. </productMenu>
  9104. <productMenu id="music"
  9105. type="1" >
  9106. </productMenu>
  9107. <productMenu id="fmradio"
  9108. type="1"
  9109. url="1" >
  9110. </productMenu>
  9111. <productMenu id="deviceSetting"
  9112. type="1"
  9113. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9114. </productMenu>
  9115. <productMenu id="quickGuide"
  9116. type="1"
  9117. url=""
  9118. size="934KB" >
  9119. </productMenu>
  9120. <productMenu id="userGuide"
  9121. type="0"
  9122. url=""
  9123. size="1.14MB" >
  9124. </productMenu>
  9125. <productMenu id="volume"
  9126. type="15" >
  9127. </productMenu>
  9128. <productID id="4000"
  9129. />
  9130. <productGroupable type="0"
  9131. />
  9132. </product>
  9133. <product id="10R"
  9134. name="10R"
  9135. series="10"
  9136. latestVersion="2.1.1"
  9137. show = "1" >
  9138. <productMenu id="protocol"
  9139. type="0">
  9140. </productMenu>
  9141. <productMenu id="sip"
  9142. type="1" >
  9143. <productMenuType version="1.0.2"
  9144. type="0"
  9145. />
  9146. </productMenu>
  9147. <productMenu id="bluetoothIntercom"
  9148. type="1" >
  9149. <productMenuType version="1.0.2"
  9150. type="0"
  9151. />
  9152. </productMenu>
  9153. <productMenu id="phone"
  9154. type="2" >
  9155. </productMenu>
  9156. <productMenu id="fmradio"
  9157. type="3" >
  9158. </productMenu>
  9159. <productMenu id="deviceSetting"
  9160. type="1"
  9161. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9162. <productMenuURL version="1.4"
  9163. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9164. />
  9165. <productMenuURL version="1.2.1"
  9166. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9167. />
  9168. <productMenuURL version="1.0.2"
  9169. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9170. />
  9171. <productMenuURL version="1.0"
  9172. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9173. />
  9174. </productMenu>
  9175. <productMenu id="quickGuide"
  9176. type="1"
  9177. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9178. size="400KB" >
  9179. </productMenu>
  9180. <productMenu id="userGuide"
  9181. type="1"
  9182. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9183. size="2.75MB" >
  9184. </productMenu>
  9185. <productMenu id="connectGuide"
  9186. type="1"
  9187. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9188. size="1.12MB" >
  9189. </productMenu>
  9190. <productID id="5520"
  9191. />
  9192. <productGroupable type="0"
  9193. />
  9194. </product>
  9195. <product id="10C_EVO"
  9196. name="10C EVO"
  9197. series="10"
  9198. latestVersion="1.7"
  9199. show = "1" >
  9200. <productMenu id="protocol"
  9201. type="0">
  9202. </productMenu>
  9203. <productMenu id="sip"
  9204. type="1" >
  9205. </productMenu>
  9206. <productMenu id="bluetoothIntercom"
  9207. type="1" >
  9208. </productMenu>
  9209. <productMenu id="phone"
  9210. type="2" >
  9211. </productMenu>
  9212. <productMenu id="fmradio"
  9213. type="3" >
  9214. </productMenu>
  9215. <productMenu id="deviceSetting"
  9216. type="1"
  9217. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9218. <productMenuURL version="1.3.1"
  9219. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9220. />
  9221. </productMenu>
  9222. <productMenu id="quickGuide"
  9223. type="1"
  9224. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9225. size="1.32MB" >
  9226. </productMenu>
  9227. <productMenu id="userGuide"
  9228. type="1"
  9229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9230. size="1.68MB" >
  9231. </productMenu>
  9232. <productMenu id="connectGuide"
  9233. type="1"
  9234. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9235. size="1.12MB" >
  9236. </productMenu>
  9237. <productID id="5570"
  9238. />
  9239. <productGroupable type="0"
  9240. />
  9241. </product>
  9242. <product id="10C_Pro"
  9243. name="10C Pro"
  9244. series="10"
  9245. latestVersion="2.7.1"
  9246. show = "1" >
  9247. <productMenu id="protocol"
  9248. type="0">
  9249. </productMenu>
  9250. <productMenu id="sip"
  9251. type="1" >
  9252. </productMenu>
  9253. <productMenu id="bluetoothIntercom"
  9254. type="1" >
  9255. </productMenu>
  9256. <productMenu id="phone"
  9257. type="2" >
  9258. </productMenu>
  9259. <productMenu id="fmradio"
  9260. type="3" >
  9261. </productMenu>
  9262. <productMenu id="deviceSetting"
  9263. type="1"
  9264. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9265. <productMenuURL version="2.5.1"
  9266. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9267. />
  9268. <productMenuURL version="1.0"
  9269. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9270. />
  9271. </productMenu>
  9272. <productMenu id="quickGuide"
  9273. type="1"
  9274. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9275. size="651KB" >
  9276. </productMenu>
  9277. <productMenu id="userGuide"
  9278. type="1"
  9279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9280. size="2.34MB" >
  9281. </productMenu>
  9282. <productMenu id="connectGuide"
  9283. type="1"
  9284. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9285. size="1.12MB" >
  9286. </productMenu>
  9287. <productID id="5580"
  9288. />
  9289. <productGroupable type="0"
  9290. />
  9291. </product>
  9292. <product id="10C"
  9293. name="10C"
  9294. series="10"
  9295. latestVersion="3.0.4"
  9296. show = "1" >
  9297. <productMenu id="protocol"
  9298. type="0">
  9299. </productMenu>
  9300. <productMenu id="sip"
  9301. type="1" >
  9302. <productMenuType version="1.0.4"
  9303. type="0"
  9304. />
  9305. </productMenu>
  9306. <productMenu id="bluetoothIntercom"
  9307. type="1" >
  9308. <productMenuType version="1.0.4"
  9309. type="0"
  9310. />
  9311. </productMenu>
  9312. <productMenu id="phone"
  9313. type="2" >
  9314. </productMenu>
  9315. <productMenu id="fmradio"
  9316. type="3" >
  9317. </productMenu>
  9318. <productMenu id="deviceSetting"
  9319. type="1"
  9320. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9321. <productMenuURL version="2.3"
  9322. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9323. />
  9324. <productMenuURL version="2.1.1"
  9325. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9326. />
  9327. <productMenuURL version="1.0.4"
  9328. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9329. />
  9330. <productMenuURL version="1.0.2"
  9331. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9332. />
  9333. </productMenu>
  9334. <productMenu id="quickGuide"
  9335. type="1"
  9336. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9337. size="935KB" >
  9338. </productMenu>
  9339. <productMenu id="userGuide"
  9340. type="1"
  9341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9342. size="2.82MB" >
  9343. </productMenu>
  9344. <productMenu id="connectGuide"
  9345. type="1"
  9346. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9347. size="1.12MB" >
  9348. </productMenu>
  9349. <productID id="5510"
  9350. />
  9351. <productGroupable type="0"
  9352. />
  9353. </product>
  9354. <product id="10U_GT_AIR"
  9355. name="10U GT-Air"
  9356. series="10"
  9357. latestVersion="2.0.4"
  9358. show = "1" >
  9359. <productMenu id="protocol"
  9360. type="0">
  9361. </productMenu>
  9362. <productMenu id="sip"
  9363. type="1" >
  9364. <productMenuType version="1.0.2"
  9365. type="0"
  9366. />
  9367. </productMenu>
  9368. <productMenu id="bluetoothIntercom"
  9369. type="1" >
  9370. <productMenuType version="1.0.2"
  9371. type="0"
  9372. />
  9373. </productMenu>
  9374. <productMenu id="phone"
  9375. type="2" >
  9376. </productMenu>
  9377. <productMenu id="fmradio"
  9378. type="3" >
  9379. </productMenu>
  9380. <productMenu id="deviceSetting"
  9381. type="1"
  9382. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9383. <productMenuURL version="1.3.2"
  9384. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9385. />
  9386. <productMenuURL version="1.0.2"
  9387. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9388. />
  9389. </productMenu>
  9390. <productMenu id="quickGuide"
  9391. type="1"
  9392. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9393. size="685KB" >
  9394. </productMenu>
  9395. <productMenu id="userGuide"
  9396. type="1"
  9397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9398. size="684KB" >
  9399. </productMenu>
  9400. <productMenu id="connectGuide"
  9401. type="1"
  9402. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9403. size="1.12MB" >
  9404. </productMenu>
  9405. <productID id="5610"
  9406. />
  9407. <productGroupable type="0"
  9408. />
  9409. </product>
  9410. <product id="10U_NEOTEC"
  9411. name="10U Neotec"
  9412. series="10"
  9413. latestVersion="2.0.4"
  9414. show = "1" >
  9415. <productMenu id="protocol"
  9416. type="0">
  9417. </productMenu>
  9418. <productMenu id="sip"
  9419. type="1" >
  9420. <productMenuType version="1.0.2"
  9421. type="0"
  9422. />
  9423. </productMenu>
  9424. <productMenu id="bluetoothIntercom"
  9425. type="1" >
  9426. <productMenuType version="1.0.2"
  9427. type="0"
  9428. />
  9429. </productMenu>
  9430. <productMenu id="phone"
  9431. type="2" >
  9432. </productMenu>
  9433. <productMenu id="fmradio"
  9434. type="3" >
  9435. </productMenu>
  9436. <productMenu id="deviceSetting"
  9437. type="1"
  9438. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9439. <productMenuURL version="1.3.2"
  9440. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9441. />
  9442. <productMenuURL version="1.0.2"
  9443. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9444. />
  9445. </productMenu>
  9446. <productMenu id="quickGuide"
  9447. type="1"
  9448. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9449. size="689KB" >
  9450. </productMenu>
  9451. <productMenu id="userGuide"
  9452. type="1"
  9453. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9454. size="684KB" >
  9455. </productMenu>
  9456. <productMenu id="connectGuide"
  9457. type="1"
  9458. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9459. size="1.12MB" >
  9460. </productMenu>
  9461. <productID id="5611"
  9462. />
  9463. <productGroupable type="0"
  9464. />
  9465. </product>
  9466. <product id="10U_J_CRUISE"
  9467. name="10U J-Cruise"
  9468. series="10"
  9469. latestVersion="2.0.4"
  9470. show = "1" >
  9471. <productMenu id="protocol"
  9472. type="0">
  9473. </productMenu>
  9474. <productMenu id="sip"
  9475. type="1" >
  9476. <productMenuType version="1.0.2"
  9477. type="0"
  9478. />
  9479. </productMenu>
  9480. <productMenu id="bluetoothIntercom"
  9481. type="1" >
  9482. <productMenuType version="1.0.2"
  9483. type="0"
  9484. />
  9485. </productMenu>
  9486. <productMenu id="phone"
  9487. type="2" >
  9488. </productMenu>
  9489. <productMenu id="fmradio"
  9490. type="3" >
  9491. </productMenu>
  9492. <productMenu id="deviceSetting"
  9493. type="1"
  9494. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9495. <productMenuURL version="1.3.2"
  9496. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9497. />
  9498. <productMenuURL version="1.0.2"
  9499. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9500. />
  9501. </productMenu>
  9502. <productMenu id="quickGuide"
  9503. type="1"
  9504. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9505. size="686KB" >
  9506. </productMenu>
  9507. <productMenu id="userGuide"
  9508. type="1"
  9509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9510. size="684KB" >
  9511. </productMenu>
  9512. <productMenu id="connectGuide"
  9513. type="1"
  9514. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9515. size="1.12MB" >
  9516. </productMenu>
  9517. <productID id="5612"
  9518. />
  9519. <productGroupable type="0"
  9520. />
  9521. </product>
  9522. <product id="10U_C3"
  9523. name="10U C3/C3Pro"
  9524. series="10"
  9525. latestVersion="2.0.4"
  9526. show = "1" >
  9527. <productMenu id="protocol"
  9528. type="0">
  9529. </productMenu>
  9530. <productMenu id="sip"
  9531. type="1" >
  9532. <productMenuType version="1.0.2"
  9533. type="0"
  9534. />
  9535. </productMenu>
  9536. <productMenu id="bluetoothIntercom"
  9537. type="1" >
  9538. <productMenuType version="1.0.2"
  9539. type="0"
  9540. />
  9541. </productMenu>
  9542. <productMenu id="phone"
  9543. type="2" >
  9544. </productMenu>
  9545. <productMenu id="fmradio"
  9546. type="3" >
  9547. </productMenu>
  9548. <productMenu id="deviceSetting"
  9549. type="1"
  9550. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9551. <productMenuURL version="1.3.2"
  9552. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9553. />
  9554. <productMenuURL version="1.0.2"
  9555. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9556. />
  9557. </productMenu>
  9558. <productMenu id="quickGuide"
  9559. type="1"
  9560. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9561. size="199KB" >
  9562. </productMenu>
  9563. <productMenu id="userGuide"
  9564. type="1"
  9565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9566. size="684KB" >
  9567. </productMenu>
  9568. <productMenu id="connectGuide"
  9569. type="1"
  9570. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9571. size="1.12MB" >
  9572. </productMenu>
  9573. <productID id="5620"
  9574. />
  9575. <productGroupable type="0"
  9576. />
  9577. </product>
  9578. <product id="10U_ARAI"
  9579. name="10U Arai"
  9580. series="10"
  9581. latestVersion="2.0.4"
  9582. show = "1" >
  9583. <productMenu id="protocol"
  9584. type="0">
  9585. </productMenu>
  9586. <productMenu id="sip"
  9587. type="1" >
  9588. <productMenuType version="1.0.2"
  9589. type="0"
  9590. />
  9591. </productMenu>
  9592. <productMenu id="bluetoothIntercom"
  9593. type="1" >
  9594. <productMenuType version="1.0.2"
  9595. type="0"
  9596. />
  9597. </productMenu>
  9598. <productMenu id="phone"
  9599. type="2" >
  9600. </productMenu>
  9601. <productMenu id="fmradio"
  9602. type="3" >
  9603. </productMenu>
  9604. <productMenu id="deviceSetting"
  9605. type="1"
  9606. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9607. <productMenuURL version="1.3.2"
  9608. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9609. />
  9610. <productMenuURL version="1.0.2"
  9611. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9612. />
  9613. </productMenu>
  9614. <productMenu id="quickGuide"
  9615. type="1"
  9616. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9617. size="689KB" >
  9618. </productMenu>
  9619. <productMenu id="userGuide"
  9620. type="1"
  9621. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9622. size="684KB" >
  9623. </productMenu>
  9624. <productMenu id="connectGuide"
  9625. type="1"
  9626. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9627. size="1.12MB" >
  9628. </productMenu>
  9629. <productID id="5621"
  9630. />
  9631. <productGroupable type="0"
  9632. />
  9633. </product>
  9634. <product id="10Upad"
  9635. name="10Upad"
  9636. series="10"
  9637. latestVersion="2.0.3"
  9638. show = "1" >
  9639. <productMenu id="protocol"
  9640. type="0">
  9641. </productMenu>
  9642. <productMenu id="sip"
  9643. type="1" >
  9644. </productMenu>
  9645. <productMenu id="bluetoothIntercom"
  9646. type="1" >
  9647. </productMenu>
  9648. <productMenu id="phone"
  9649. type="2" >
  9650. </productMenu>
  9651. <productMenu id="fmradio"
  9652. type="3" >
  9653. </productMenu>
  9654. <productMenu id="deviceSetting"
  9655. type="1"
  9656. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9657. <productMenuURL version="1.0.3"
  9658. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9659. />
  9660. </productMenu>
  9661. <productMenu id="quickGuide"
  9662. type="1"
  9663. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9664. size="615KB" >
  9665. </productMenu>
  9666. <productMenu id="userGuide"
  9667. type="1"
  9668. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9669. size="0.99MB" >
  9670. </productMenu>
  9671. <productMenu id="connectGuide"
  9672. type="1"
  9673. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9674. size="1.12MB" >
  9675. </productMenu>
  9676. <productID id="6210"
  9677. />
  9678. <productGroupable type="0"
  9679. />
  9680. </product>
  9681. <product id="5S"
  9682. name="5S"
  9683. series="5"
  9684. latestVersion="2.3.1"
  9685. show = "1" >
  9686. <productMenu id="protocol"
  9687. type="3" >
  9688. </productMenu>
  9689. <productMenu id="sip"
  9690. type="1" >
  9691. </productMenu>
  9692. <productMenu id="bluetoothIntercom"
  9693. type="1" >
  9694. </productMenu>
  9695. <productMenu id="phone"
  9696. type="1" >
  9697. </productMenu>
  9698. <productMenu id="fmradio"
  9699. type="0" >
  9700. </productMenu>
  9701. <productMenu id="deviceSetting"
  9702. type="1"
  9703. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9704. </productMenu>
  9705. <productMenu id="quickGuide"
  9706. type="0"
  9707. url=""
  9708. size="934KB" >
  9709. </productMenu>
  9710. <productMenu id="userGuide"
  9711. type="1"
  9712. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9713. size="1.14MB" >
  9714. </productMenu>
  9715. <productMenu id="connectGuide"
  9716. type="1"
  9717. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9718. size="1.12MB" >
  9719. </productMenu>
  9720. <productID id="5590"
  9721. />
  9722. <productGroupable type="0"
  9723. />
  9724. </product>
  9725. <product id="5S"
  9726. name="5S"
  9727. series="5"
  9728. latestVersion="1.2"
  9729. show = "-1" >
  9730. <productMenu id="protocol"
  9731. type="0">
  9732. </productMenu>
  9733. <productMenu id="sip"
  9734. type="1" >
  9735. </productMenu>
  9736. <productMenu id="bluetoothIntercom"
  9737. type="1" >
  9738. </productMenu>
  9739. <productMenu id="phone"
  9740. type="2" >
  9741. </productMenu>
  9742. <productMenu id="fmradio"
  9743. type="3" >
  9744. </productMenu>
  9745. <productMenu id="deviceSetting"
  9746. type="1"
  9747. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9748. </productMenu>
  9749. <productMenu id="quickGuide"
  9750. type="0"
  9751. url=""
  9752. size="970KB" >
  9753. </productMenu>
  9754. <productMenu id="userGuide"
  9755. type="1"
  9756. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9757. size="1.26MB" >
  9758. </productMenu>
  9759. <productID id="5534"
  9760. />
  9761. <productGroupable type="0"
  9762. />
  9763. </product>
  9764. <product id="5S"
  9765. name="5S"
  9766. series="5"
  9767. latestVersion="3.0.1"
  9768. show = "-1" >
  9769. <productMenu id="protocol"
  9770. type="0">
  9771. </productMenu>
  9772. <productMenu id="sip"
  9773. type="1" >
  9774. </productMenu>
  9775. <productMenu id="bluetoothIntercom"
  9776. type="1" >
  9777. </productMenu>
  9778. <productMenu id="phone"
  9779. type="2" >
  9780. </productMenu>
  9781. <productMenu id="fmradio"
  9782. type="0" >
  9783. </productMenu>
  9784. <productMenu id="deviceSetting"
  9785. type="1"
  9786. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9787. </productMenu>
  9788. <productMenu id="quickGuide"
  9789. type="0"
  9790. url=""
  9791. size="970KB" >
  9792. </productMenu>
  9793. <productMenu id="userGuide"
  9794. type="1"
  9795. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9796. size="1.26MB" >
  9797. </productMenu>
  9798. <productID id="5538"
  9799. />
  9800. <productGroupable type="0"
  9801. />
  9802. </product>
  9803. <product id="3SPLUS"
  9804. name="3S PLUS"
  9805. series="3"
  9806. latestVersion="2.2"
  9807. show = "1" >
  9808. <productMenu id="protocol"
  9809. type="3" >
  9810. </productMenu>
  9811. <productMenu id="sip"
  9812. type="1" >
  9813. </productMenu>
  9814. <productMenu id="bluetoothIntercom"
  9815. type="1" >
  9816. </productMenu>
  9817. <productMenu id="deviceSetting"
  9818. type="1"
  9819. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9820. <productMenuURL version="2.2.1"
  9821. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9822. />
  9823. </productMenu>
  9824. <productMenu id="quickGuide"
  9825. type="1"
  9826. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9827. size="344KB" >
  9828. </productMenu>
  9829. <productMenu id="userGuide"
  9830. type="1"
  9831. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9832. size="1.14MB" >
  9833. </productMenu>
  9834. <productMenu id="connectGuide"
  9835. type="1"
  9836. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9837. size="1.12MB" >
  9838. </productMenu>
  9839. <productID id="4023"
  9840. />
  9841. <productGroupable type="0"
  9842. />
  9843. </product>
  9844. <product id="3SPLUS"
  9845. name="3S PLUS"
  9846. series="3"
  9847. latestVersion="1.1"
  9848. show = "-1" >
  9849. <productMenu id="protocol"
  9850. type="0">
  9851. </productMenu>
  9852. <productMenu id="sip"
  9853. type="1" >
  9854. </productMenu>
  9855. <productMenu id="bluetoothIntercom"
  9856. type="1" >
  9857. </productMenu>
  9858. <productMenu id="deviceSetting"
  9859. type="1"
  9860. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9861. </productMenu>
  9862. <productMenu id="quickGuide"
  9863. type="1"
  9864. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9865. size="842KB" >
  9866. </productMenu>
  9867. <productMenu id="userGuide"
  9868. type="1"
  9869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9870. size="1.02MB" >
  9871. </productMenu>
  9872. <productID id="6320"
  9873. />
  9874. <productGroupable type="0"
  9875. />
  9876. </product>
  9877. <product id="AConnect"
  9878. name="Alpinestars A-Connect"
  9879. series="60"
  9880. latestVersion="1.0.2"
  9881. latestVersionMesh="0.19"
  9882. latestVersionVoicePrompt="1.6"
  9883. show = "-1" >
  9884. <productMenu id="protocol"
  9885. type="2" >
  9886. </productMenu>
  9887. <productMenu id="ota"
  9888. type="2" >
  9889. <otaLanguages>
  9890. <otaLanguage
  9891. id="0"
  9892. name="English"
  9893. package="0"
  9894. />
  9895. <otaLanguage
  9896. id="0"
  9897. name="French"
  9898. package="1"
  9899. />
  9900. <otaLanguage
  9901. id="0"
  9902. name="Spanish"
  9903. package="2"
  9904. />
  9905. <otaLanguage
  9906. id="0"
  9907. name="Italian"
  9908. package="3"
  9909. />
  9910. <otaLanguage
  9911. id="0"
  9912. name="German"
  9913. package="4"
  9914. />
  9915. <otaLanguage
  9916. id="0"
  9917. name="Dutch"
  9918. package="5"
  9919. />
  9920. <otaLanguage
  9921. id="0"
  9922. name="Russian"
  9923. package="6"
  9924. />
  9925. <otaLanguage
  9926. id="0"
  9927. name="Chinese"
  9928. package="7"
  9929. />
  9930. <otaLanguage
  9931. id="0"
  9932. name="Korean"
  9933. package="8"
  9934. />
  9935. <otaLanguage
  9936. id="0"
  9937. name="Japanese"
  9938. package="9"
  9939. />
  9940. <otaLanguage
  9941. id="0"
  9942. name="Finnish"
  9943. package="10"
  9944. />
  9945. <otaLanguage
  9946. id="0"
  9947. name="Polish"
  9948. package="11"
  9949. />
  9950. </otaLanguages>
  9951. <otaPackages>
  9952. <package
  9953. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9954. size="5183988"
  9955. />
  9956. <package
  9957. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9958. size="5183988"
  9959. />
  9960. <package
  9961. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9962. size="5183988"
  9963. />
  9964. <package
  9965. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9966. size="5183988"
  9967. />
  9968. <package
  9969. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9970. size="5183988"
  9971. />
  9972. <package
  9973. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9974. size="5183988"
  9975. />
  9976. <package
  9977. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9978. size="5183988"
  9979. />
  9980. <package
  9981. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9982. size="5183988"
  9983. />
  9984. <package
  9985. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9986. size="5183988"
  9987. />
  9988. <package
  9989. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9990. size="5183988"
  9991. />
  9992. <package
  9993. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9994. size="5183988"
  9995. />
  9996. <package
  9997. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9998. size="5183988"
  9999. />
  10000. </otaPackages>
  10001. </productMenu>
  10002. <productMenu id="sip"
  10003. type="1" >
  10004. </productMenu>
  10005. <productMenu id="illusion"
  10006. type="0" >
  10007. </productMenu>
  10008. <productMenu id="meshIntercom+"
  10009. type="3"
  10010. url="2" >
  10011. </productMenu>
  10012. <productMenu id="waveIntercom"
  10013. type="1" >
  10014. </productMenu>
  10015. <productMenu id="bluetoothIntercom"
  10016. type="1"
  10017. url="2" >
  10018. </productMenu>
  10019. <productMenu id="bluetoothIntercomGrouping"
  10020. type="0" >
  10021. </productMenu>
  10022. <productMenu id="fmradio"
  10023. type="1"
  10024. url="1" >
  10025. </productMenu>
  10026. <productMenu id="phone"
  10027. type="1" >
  10028. </productMenu>
  10029. <productMenu id="music"
  10030. type="1" >
  10031. </productMenu>
  10032. <productMenu id="musicSharing"
  10033. type="0" >
  10034. </productMenu>
  10035. <productMenu id="deviceSetting"
  10036. type="1"
  10037. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10038. </productMenu>
  10039. <productMenu id="quickGuide"
  10040. type="0"
  10041. url=""
  10042. size="1.12MB" >
  10043. </productMenu>
  10044. <productMenu id="userGuide"
  10045. type="0"
  10046. url=""
  10047. size="2.0MB" >
  10048. </productMenu>
  10049. <productMenu id="videoGuide"
  10050. type="0"
  10051. url=""
  10052. size="3.41MB" >
  10053. </productMenu>
  10054. <productMenu id="volume"
  10055. type="16" >
  10056. </productMenu>
  10057. <productMenu id="volume+"
  10058. type="2"
  10059. url="0x6004" >
  10060. </productMenu>
  10061. <productMenu id="soundMode"
  10062. type="0" >
  10063. </productMenu>
  10064. <productMenu id="battery"
  10065. type="1" >
  10066. </productMenu>
  10067. <productID id="6A82"
  10068. />
  10069. <productGroupable type="0"
  10070. />
  10071. </product>
  10072. <product id="iCon"
  10073. name="iCon"
  10074. series="50"
  10075. latestVersion="1.2"
  10076. show = "0" >
  10077. <productMenu id="protocol"
  10078. type="2" >
  10079. </productMenu>
  10080. <productMenu id="alexa"
  10081. type="0" >
  10082. </productMenu>
  10083. <productMenu id="wa"
  10084. type="0" >
  10085. </productMenu>
  10086. <productMenu id="sip"
  10087. type="1" >
  10088. </productMenu>
  10089. <productMenu id="led"
  10090. type="3" >
  10091. </productMenu>
  10092. <productMenu id="meshIntercom"
  10093. type="20" >
  10094. </productMenu>
  10095. <productMenu id="meshIntercom+"
  10096. type="3"
  10097. url="0" >
  10098. <productMenuType version="1.0.9"
  10099. type="2"
  10100. />
  10101. </productMenu>
  10102. <productMenu id="bluetoothIntercom"
  10103. type="1" >
  10104. </productMenu>
  10105. <productMenu id="phone"
  10106. type="1" >
  10107. </productMenu>
  10108. <productMenu id="music"
  10109. type="1" >
  10110. </productMenu>
  10111. <productMenu id="fmradio"
  10112. type="1" >
  10113. </productMenu>
  10114. <productMenu id="deviceSetting"
  10115. type="1"
  10116. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10117. <productMenuURL version="1.0.9"
  10118. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10119. />
  10120. </productMenu>
  10121. <productMenu id="quickGuide"
  10122. type="1"
  10123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10124. size="344KB" >
  10125. </productMenu>
  10126. <productMenu id="userGuide"
  10127. type="1"
  10128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10129. size="3.41MB" >
  10130. </productMenu>
  10131. <productMenu id="volume"
  10132. type="11" >
  10133. </productMenu>
  10134. <productMenu id="battery"
  10135. type="1" >
  10136. </productMenu>
  10137. <productID id="3900"
  10138. />
  10139. <productGroupable type="0"
  10140. />
  10141. </product>
  10142. <product id="ICONHelmLinkSL"
  10143. name="ICON HelmLink SL"
  10144. series="50"
  10145. latestVersion="1.0"
  10146. latestVersionVoicePrompt="1.6"
  10147. show = "-1" >
  10148. <productMenu id="protocol"
  10149. type="2" >
  10150. </productMenu>
  10151. <productMenu id="alexa"
  10152. type="0" >
  10153. </productMenu>
  10154. <productMenu id="ota"
  10155. type="0" >
  10156. <otaPackages>
  10157. <package
  10158. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10159. size="2945812"
  10160. />
  10161. </otaPackages>
  10162. </productMenu>
  10163. <productMenu id="wa"
  10164. type="0" >
  10165. </productMenu>
  10166. <productMenu id="meshIntercom"
  10167. type="30" >
  10168. </productMenu>
  10169. <productMenu id="meshIntercom+"
  10170. type="3"
  10171. url="2" >
  10172. </productMenu>
  10173. <productMenu id="waveIntercom"
  10174. type="1" >
  10175. </productMenu>
  10176. <productMenu id="phone"
  10177. type="1" >
  10178. </productMenu>
  10179. <productMenu id="music"
  10180. type="1" >
  10181. </productMenu>
  10182. <productMenu id="musicSharing"
  10183. type="0" >
  10184. </productMenu>
  10185. <productMenu id="deviceSetting"
  10186. type="1"
  10187. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10188. </productMenu>
  10189. <productMenu id="quickGuide"
  10190. type="0"
  10191. url=""
  10192. size="1.12MB" >
  10193. </productMenu>
  10194. <productMenu id="userGuide"
  10195. type="1"
  10196. url=""
  10197. size="2.0MB" >
  10198. </productMenu>
  10199. <productMenu id="volume"
  10200. type="12" >
  10201. </productMenu>
  10202. <productMenu id="battery"
  10203. type="1" >
  10204. </productMenu>
  10205. <productID id="6842"
  10206. />
  10207. <productGroupable type="0"
  10208. />
  10209. </product>
  10210. <product id="HD50S"
  10211. name="H-D Audio 50S"
  10212. series="50"
  10213. latestVersion="1.0.1"
  10214. show = "-1" >
  10215. <productMenu id="protocol"
  10216. type="2" >
  10217. </productMenu>
  10218. <productMenu id="alexa"
  10219. type="0" >
  10220. </productMenu>
  10221. <productMenu id="ota"
  10222. type="0"
  10223. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10224. size="1150234" >
  10225. </productMenu>
  10226. <productMenu id="wa"
  10227. type="1" >
  10228. </productMenu>
  10229. <productMenu id="sip"
  10230. type="1" >
  10231. </productMenu>
  10232. <productMenu id="meshIntercom"
  10233. type="20" >
  10234. </productMenu>
  10235. <productMenu id="meshIntercom+"
  10236. type="3"
  10237. url="0" >
  10238. <productMenuType version="1.0.9"
  10239. type="2"
  10240. />
  10241. </productMenu>
  10242. <productMenu id="bluetoothIntercom"
  10243. type="1" >
  10244. </productMenu>
  10245. <productMenu id="phone"
  10246. type="1" >
  10247. </productMenu>
  10248. <productMenu id="music"
  10249. type="1" >
  10250. </productMenu>
  10251. <productMenu id="fmradio"
  10252. type="1" >
  10253. </productMenu>
  10254. <productMenu id="deviceSetting"
  10255. type="1"
  10256. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10257. <productMenuURL version="1.0.9"
  10258. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10259. />
  10260. </productMenu>
  10261. <productMenu id="quickGuide"
  10262. type="1"
  10263. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10264. size="934KB" >
  10265. </productMenu>
  10266. <productMenu id="userGuide"
  10267. type="1"
  10268. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10269. size="1.14MB" >
  10270. </productMenu>
  10271. <productMenu id="volume"
  10272. type="11" >
  10273. </productMenu>
  10274. <productMenu id="battery"
  10275. type="1" >
  10276. </productMenu>
  10277. <productID id="3156"
  10278. />
  10279. <productGroupable type="0"
  10280. />
  10281. </product>
  10282. <product id="HD50S"
  10283. name="H-D Audio 50S"
  10284. series="50"
  10285. latestVersion="2.0.2"
  10286. show = "0" >
  10287. <productMenu id="protocol"
  10288. type="2" >
  10289. </productMenu>
  10290. <productMenu id="alexa"
  10291. type="0" >
  10292. </productMenu>
  10293. <productMenu id="ota"
  10294. type="0"
  10295. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10296. size="1150234" >
  10297. </productMenu>
  10298. <productMenu id="wa"
  10299. type="1" >
  10300. </productMenu>
  10301. <productMenu id="sip"
  10302. type="1" >
  10303. </productMenu>
  10304. <productMenu id="meshIntercom"
  10305. type="20" >
  10306. </productMenu>
  10307. <productMenu id="meshIntercom+"
  10308. type="3"
  10309. url="0" >
  10310. <productMenuType version="2.0.9"
  10311. type="2"
  10312. />
  10313. </productMenu>
  10314. <productMenu id="bluetoothIntercom"
  10315. type="1" >
  10316. </productMenu>
  10317. <productMenu id="phone"
  10318. type="1" >
  10319. </productMenu>
  10320. <productMenu id="music"
  10321. type="1" >
  10322. </productMenu>
  10323. <productMenu id="fmradio"
  10324. type="1" >
  10325. </productMenu>
  10326. <productMenu id="deviceSetting"
  10327. type="1"
  10328. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10329. <productMenuURL version="2.0.9"
  10330. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10331. />
  10332. </productMenu>
  10333. <productMenu id="quickGuide"
  10334. type="1"
  10335. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10336. size="934KB" >
  10337. </productMenu>
  10338. <productMenu id="userGuide"
  10339. type="1"
  10340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10341. size="1.14MB" >
  10342. </productMenu>
  10343. <productMenu id="volume"
  10344. type="11" >
  10345. </productMenu>
  10346. <productMenu id="battery"
  10347. type="1" >
  10348. </productMenu>
  10349. <productID id="3213"
  10350. />
  10351. <productGroupable type="0"
  10352. />
  10353. </product>
  10354. <product id="HD50C"
  10355. name="H-D Audio 50C"
  10356. series="50"
  10357. latestVersion="1.0.1"
  10358. show = "0" >
  10359. <productMenu id="protocol"
  10360. type="2" >
  10361. </productMenu>
  10362. <productMenu id="ota"
  10363. type="0" >
  10364. </productMenu>
  10365. <productMenu id="wa"
  10366. type="1" >
  10367. </productMenu>
  10368. <productMenu id="sip"
  10369. type="1" >
  10370. </productMenu>
  10371. <productMenu id="meshIntercom"
  10372. type="20" >
  10373. </productMenu>
  10374. <productMenu id="meshIntercom+"
  10375. type="3"
  10376. url="0" >
  10377. <productMenuType version="1.0.9"
  10378. type="2"
  10379. />
  10380. </productMenu>
  10381. <productMenu id="bluetoothIntercom"
  10382. type="1" >
  10383. </productMenu>
  10384. <productMenu id="phone"
  10385. type="1" >
  10386. </productMenu>
  10387. <productMenu id="music"
  10388. type="1" >
  10389. </productMenu>
  10390. <productMenu id="fmradio"
  10391. type="1" >
  10392. </productMenu>
  10393. <productMenu id="deviceSetting"
  10394. type="1"
  10395. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10396. <productMenuURL version="1.0.9"
  10397. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10398. />
  10399. </productMenu>
  10400. <productMenu id="quickGuide"
  10401. type="1"
  10402. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10403. size="344KB" >
  10404. </productMenu>
  10405. <productMenu id="userGuide"
  10406. type="1"
  10407. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10408. size="3.41MB" >
  10409. </productMenu>
  10410. <productMenu id="volume"
  10411. type="11" >
  10412. </productMenu>
  10413. <productMenu id="battery"
  10414. type="1" >
  10415. </productMenu>
  10416. <productID id="3240"
  10417. />
  10418. <productGroupable type="0"
  10419. />
  10420. </product>
  10421. <product id="HD50S"
  10422. name="FURY N04"
  10423. series="Helmet"
  10424. latestVersion="1.0"
  10425. show = "0" >
  10426. <productMenu id="protocol"
  10427. type="2" >
  10428. </productMenu>
  10429. <productMenu id="alexa"
  10430. type="0" >
  10431. </productMenu>
  10432. <productMenu id="ota"
  10433. type="0" >
  10434. </productMenu>
  10435. <productMenu id="wa"
  10436. type="0" >
  10437. </productMenu>
  10438. <productMenu id="meshIntercom"
  10439. type="20" >
  10440. </productMenu>
  10441. <productMenu id="meshIntercom+"
  10442. type="3"
  10443. url="0" >
  10444. <productMenuType version="1.0.9"
  10445. type="2"
  10446. />
  10447. </productMenu>
  10448. <productMenu id="phone"
  10449. type="1" >
  10450. </productMenu>
  10451. <productMenu id="music"
  10452. type="1" >
  10453. </productMenu>
  10454. <productMenu id="fmradio"
  10455. type="1" >
  10456. </productMenu>
  10457. <productMenu id="deviceSetting"
  10458. type="1"
  10459. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10460. <productMenuURL version="1.0.9"
  10461. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10462. />
  10463. </productMenu>
  10464. <productMenu id="quickGuide"
  10465. type="1"
  10466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10467. size="1.12MB" >
  10468. </productMenu>
  10469. <productMenu id="userGuide"
  10470. type="1"
  10471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10472. size="2.0MB" >
  10473. </productMenu>
  10474. <productMenu id="volume"
  10475. type="13" >
  10476. </productMenu>
  10477. <productMenu id="battery"
  10478. type="1" >
  10479. </productMenu>
  10480. <productID id="5553"
  10481. />
  10482. <productGroupable type="0"
  10483. />
  10484. </product>
  10485. <product id="XCOM3Pro"
  10486. name="X-COM3 Pro"
  10487. series="50"
  10488. latestVersion="1.1"
  10489. show = "0" >
  10490. <productMenu id="protocol"
  10491. type="2" >
  10492. </productMenu>
  10493. <productMenu id="alexa"
  10494. type="0" >
  10495. </productMenu>
  10496. <productMenu id="ota"
  10497. type="0" >
  10498. </productMenu>
  10499. <productMenu id="wa"
  10500. type="0" >
  10501. </productMenu>
  10502. <productMenu id="sip"
  10503. type="1" >
  10504. </productMenu>
  10505. <productMenu id="meshIntercom"
  10506. type="30" >
  10507. </productMenu>
  10508. <productMenu id="meshIntercom+"
  10509. type="3"
  10510. url="2" >
  10511. <productMenuType version="1.1"
  10512. type="2"
  10513. />
  10514. </productMenu>
  10515. <productMenu id="waveIntercom"
  10516. type="1" >
  10517. <productMenuType version="1.1"
  10518. type="0"
  10519. />
  10520. </productMenu>
  10521. <productMenu id="bluetoothIntercom"
  10522. type="1" >
  10523. </productMenu>
  10524. <productMenu id="phone"
  10525. type="1" >
  10526. </productMenu>
  10527. <productMenu id="music"
  10528. type="1" >
  10529. </productMenu>
  10530. <productMenu id="fmradio"
  10531. type="1" >
  10532. </productMenu>
  10533. <productMenu id="deviceSetting"
  10534. type="1"
  10535. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10536. <productMenuURL version="1.1"
  10537. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10538. />
  10539. </productMenu>
  10540. <productMenu id="quickGuide"
  10541. type="0"
  10542. url=""
  10543. size="344KB" >
  10544. </productMenu>
  10545. <productMenu id="userGuide"
  10546. type="1"
  10547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10548. size="3.41MB" >
  10549. </productMenu>
  10550. <productMenu id="volume"
  10551. type="11" >
  10552. </productMenu>
  10553. <productMenu id="battery"
  10554. type="1" >
  10555. </productMenu>
  10556. <productID id="321A"
  10557. />
  10558. <productGroupable type="0"
  10559. />
  10560. </product>
  10561. <product id="XCOM3"
  10562. name="X-COM3"
  10563. series="20"
  10564. latestVersion="1.0"
  10565. show = "0" >
  10566. <productMenu id="protocol"
  10567. type="2" >
  10568. </productMenu>
  10569. <productMenu id="sip"
  10570. type="1" >
  10571. </productMenu>
  10572. <productMenu id="bluetoothIntercom"
  10573. type="1" >
  10574. </productMenu>
  10575. <productMenu id="phone"
  10576. type="1" >
  10577. </productMenu>
  10578. <productMenu id="music"
  10579. type="1" >
  10580. </productMenu>
  10581. <productMenu id="fmradio"
  10582. type="1" >
  10583. </productMenu>
  10584. <productMenu id="deviceSetting"
  10585. type="1"
  10586. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10587. </productMenu>
  10588. <productMenu id="quickGuide"
  10589. type="0"
  10590. url=""
  10591. size="934KB" >
  10592. </productMenu>
  10593. <productMenu id="userGuide"
  10594. type="1"
  10595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10596. size="1.14MB" >
  10597. </productMenu>
  10598. <productMenu id="volume"
  10599. type="15" >
  10600. </productMenu>
  10601. <productID id="3410"
  10602. />
  10603. <productGroupable type="0"
  10604. />
  10605. </product>
  10606. <product id="X-COM2"
  10607. name="X-COM2"
  10608. series="20"
  10609. latestVersion="1.0.5"
  10610. show = "0" >
  10611. <productMenu id="protocol"
  10612. type="0">
  10613. </productMenu>
  10614. <productMenu id="sip"
  10615. type="1" >
  10616. </productMenu>
  10617. <productMenu id="bluetoothIntercom"
  10618. type="1" >
  10619. </productMenu>
  10620. <productMenu id="intercomSetting"
  10621. type="1" >
  10622. </productMenu>
  10623. <productMenu id="phone"
  10624. type="2" >
  10625. </productMenu>
  10626. <productMenu id="fmradio"
  10627. type="3" >
  10628. </productMenu>
  10629. <productMenu id="deviceSetting"
  10630. type="1"
  10631. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10632. </productMenu>
  10633. <productMenu id="quickGuide"
  10634. type="1"
  10635. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10636. size="796KB" >
  10637. </productMenu>
  10638. <productMenu id="userGuide"
  10639. type="1"
  10640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10641. size="1.90MB" >
  10642. </productMenu>
  10643. <productID id="2030"
  10644. />
  10645. <productGroupable type="1"
  10646. />
  10647. </product>
  10648. <product id="AVAABC"
  10649. name="AVA ABC"
  10650. series="SPIDER"
  10651. latestVersion="1.1"
  10652. show = "0" >
  10653. <productMenu id="protocol"
  10654. type="2" >
  10655. </productMenu>
  10656. <productMenu id="alexa"
  10657. type="0" >
  10658. </productMenu>
  10659. <productMenu id="ota"
  10660. type="0" >
  10661. <productMenuType version="1.0"
  10662. type="0"
  10663. />
  10664. <otaPackages>
  10665. <package
  10666. url="https://api.sena.com/support/OTA/"
  10667. size="2945812"
  10668. />
  10669. </otaPackages>
  10670. </productMenu>
  10671. <productMenu id="wa"
  10672. type="0" >
  10673. </productMenu>
  10674. <productMenu id="meshIntercom"
  10675. type="30" >
  10676. <productMenuType version="1.0"
  10677. type="20"
  10678. />
  10679. </productMenu>
  10680. <productMenu id="meshIntercom+"
  10681. type="3"
  10682. url="2" >
  10683. <productMenuType version="1.0"
  10684. type="2"
  10685. />
  10686. <productMenuURL version="1.0"
  10687. url="0"
  10688. />
  10689. </productMenu>
  10690. <productMenu id="waveIntercom"
  10691. type="1" >
  10692. <productMenuType version="1.0"
  10693. type="0"
  10694. />
  10695. </productMenu>
  10696. <productMenu id="phone"
  10697. type="1" >
  10698. </productMenu>
  10699. <productMenu id="music"
  10700. type="1" >
  10701. </productMenu>
  10702. <productMenu id="musicSharing"
  10703. type="0" >
  10704. </productMenu>
  10705. <productMenu id="deviceSetting"
  10706. type="1"
  10707. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10708. <productMenuURL version="1.0"
  10709. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10710. />
  10711. </productMenu>
  10712. <productMenu id="quickGuide"
  10713. type="1"
  10714. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10715. size="1.12MB" >
  10716. </productMenu>
  10717. <productMenu id="userGuide"
  10718. type="1"
  10719. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10720. size="2.0MB" >
  10721. </productMenu>
  10722. <productMenu id="volume"
  10723. type="12" >
  10724. </productMenu>
  10725. <productMenu id="battery"
  10726. type="1" >
  10727. </productMenu>
  10728. <productID id="6808"
  10729. />
  10730. <productGroupable type="0"
  10731. />
  10732. </product>
  10733. <product id="ADVANCEProCOM2"
  10734. name="ADVANCE ProCOM 2"
  10735. series="Helmet"
  10736. latestVersion="0.5"
  10737. latestVersionVoicePrompt="0.3"
  10738. show = "-1" >
  10739. <productMenu id="protocol"
  10740. type="2" >
  10741. </productMenu>
  10742. <productMenu id="ota"
  10743. type="2" >
  10744. <otaLanguages>
  10745. <otaLanguage
  10746. id="0"
  10747. name="English"
  10748. package="0"
  10749. />
  10750. <otaLanguage
  10751. id="0"
  10752. name="French"
  10753. package="1"
  10754. />
  10755. <otaLanguage
  10756. id="0"
  10757. name="Spanish"
  10758. package="2"
  10759. />
  10760. <otaLanguage
  10761. id="0"
  10762. name="Italian"
  10763. package="3"
  10764. />
  10765. <otaLanguage
  10766. id="0"
  10767. name="German"
  10768. package="4"
  10769. />
  10770. <otaLanguage
  10771. id="0"
  10772. name="Dutch"
  10773. package="5"
  10774. />
  10775. <otaLanguage
  10776. id="0"
  10777. name="Russian"
  10778. package="6"
  10779. />
  10780. <otaLanguage
  10781. id="0"
  10782. name="Chinese"
  10783. package="7"
  10784. />
  10785. <otaLanguage
  10786. id="0"
  10787. name="Korean"
  10788. package="8"
  10789. />
  10790. <otaLanguage
  10791. id="0"
  10792. name="Japanese"
  10793. package="9"
  10794. />
  10795. <otaLanguage
  10796. id="0"
  10797. name="Finnish"
  10798. package="10"
  10799. />
  10800. <otaLanguage
  10801. id="0"
  10802. name="Polish"
  10803. package="11"
  10804. />
  10805. </otaLanguages>
  10806. <otaPackages>
  10807. <package
  10808. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10809. size="5183988"
  10810. />
  10811. <package
  10812. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10813. size="5183988"
  10814. />
  10815. <package
  10816. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10817. size="5183988"
  10818. />
  10819. <package
  10820. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10821. size="5183988"
  10822. />
  10823. <package
  10824. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10825. size="5183988"
  10826. />
  10827. <package
  10828. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10829. size="5183988"
  10830. />
  10831. <package
  10832. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10833. size="5183988"
  10834. />
  10835. <package
  10836. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10837. size="5183988"
  10838. />
  10839. <package
  10840. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10841. size="5183988"
  10842. />
  10843. <package
  10844. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10845. size="5183988"
  10846. />
  10847. <package
  10848. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10849. size="5183988"
  10850. />
  10851. <package
  10852. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10853. size="5183988"
  10854. />
  10855. </otaPackages>
  10856. </productMenu>
  10857. <productMenu id="wa"
  10858. type="0" >
  10859. </productMenu>
  10860. <productMenu id="meshIntercom"
  10861. type="30" >
  10862. </productMenu>
  10863. <productMenu id="meshIntercom+"
  10864. type="3"
  10865. url="2" >
  10866. </productMenu>
  10867. <productMenu id="waveIntercom"
  10868. type="1" >
  10869. </productMenu>
  10870. <productMenu id="fmradio"
  10871. type="1" >
  10872. </productMenu>
  10873. <productMenu id="phone"
  10874. type="0" >
  10875. </productMenu>
  10876. <productMenu id="music"
  10877. type="1" >
  10878. </productMenu>
  10879. <productMenu id="musicSharing"
  10880. type="0" >
  10881. </productMenu>
  10882. <productMenu id="deviceSetting"
  10883. type="1"
  10884. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10885. </productMenu>
  10886. <productMenu id="quickGuide"
  10887. type="0"
  10888. url=""
  10889. size="1.12MB" >
  10890. </productMenu>
  10891. <productMenu id="userGuide"
  10892. type="1"
  10893. url=""
  10894. size="2.0MB" >
  10895. </productMenu>
  10896. <productMenu id="videoGuide"
  10897. type="0"
  10898. url=""
  10899. size="3.41MB" >
  10900. </productMenu>
  10901. <productMenu id="connectGuide"
  10902. type="1"
  10903. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10904. size="1.12MB" >
  10905. </productMenu>
  10906. <productMenu id="volume"
  10907. type="16" >
  10908. </productMenu>
  10909. <productMenu id="battery"
  10910. type="1" >
  10911. </productMenu>
  10912. <productID id="6A85"
  10913. />
  10914. <productGroupable type="0"
  10915. />
  10916. </product>
  10917. <product id="Triumph_50S"
  10918. name="Triumph 50S"
  10919. series="50"
  10920. latestVersion="1.5"
  10921. show = "0" >
  10922. <productMenu id="protocol"
  10923. type="2" >
  10924. </productMenu>
  10925. <productMenu id="alexa"
  10926. type="0" >
  10927. </productMenu>
  10928. <productMenu id="ota"
  10929. type="0"
  10930. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10931. size="1150234" >
  10932. </productMenu>
  10933. <productMenu id="wa"
  10934. type="1" >
  10935. </productMenu>
  10936. <productMenu id="sip"
  10937. type="1" >
  10938. </productMenu>
  10939. <productMenu id="meshIntercom"
  10940. type="20" >
  10941. </productMenu>
  10942. <productMenu id="bluetoothIntercom"
  10943. type="1" >
  10944. </productMenu>
  10945. <productMenu id="meshIntercom+"
  10946. type="3"
  10947. url="2" >
  10948. <productMenuType version="1.2.9"
  10949. type="2"
  10950. />
  10951. <productMenuURL version="1.2.9"
  10952. url="0"
  10953. />
  10954. </productMenu>
  10955. <productMenu id="waveIntercom"
  10956. type="1" >
  10957. <productMenuType version="1.2.9"
  10958. type="0"
  10959. />
  10960. </productMenu>
  10961. <productMenu id="phone"
  10962. type="1" >
  10963. </productMenu>
  10964. <productMenu id="music"
  10965. type="1" >
  10966. </productMenu>
  10967. <productMenu id="fmradio"
  10968. type="1" >
  10969. </productMenu>
  10970. <productMenu id="deviceSetting"
  10971. type="1"
  10972. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10973. <productMenuURL version="1.2.9"
  10974. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10975. />
  10976. <productMenuURL version="1.0"
  10977. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10978. />
  10979. </productMenu>
  10980. <productMenu id="quickGuide"
  10981. type="1"
  10982. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10983. size="934KB" >
  10984. </productMenu>
  10985. <productMenu id="userGuide"
  10986. type="1"
  10987. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10988. size="1.14MB" >
  10989. </productMenu>
  10990. <productMenu id="volume"
  10991. type="11" >
  10992. </productMenu>
  10993. <productMenu id="battery"
  10994. type="1" >
  10995. </productMenu>
  10996. <productID id="3264"
  10997. />
  10998. <productGroupable type="0"
  10999. />
  11000. </product>
  11001. <product id="RE50S"
  11002. name="RE 50S"
  11003. series="50"
  11004. latestVersion="2.7"
  11005. show = "0" >
  11006. <productMenu id="protocol"
  11007. type="2" >
  11008. </productMenu>
  11009. <productMenu id="alexa"
  11010. type="0" >
  11011. </productMenu>
  11012. <productMenu id="ota"
  11013. type="0"
  11014. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11015. size="1150234" >
  11016. </productMenu>
  11017. <productMenu id="wa"
  11018. type="1" >
  11019. </productMenu>
  11020. <productMenu id="sip"
  11021. type="1" >
  11022. </productMenu>
  11023. <productMenu id="meshIntercom"
  11024. type="30" >
  11025. </productMenu>
  11026. <productMenu id="meshIntercom+"
  11027. type="3"
  11028. url="2" >
  11029. <productMenuType version="2.5"
  11030. type="2"
  11031. />
  11032. </productMenu>
  11033. <productMenu id="waveIntercom"
  11034. type="1" >
  11035. <productMenuType version="2.5"
  11036. type="0"
  11037. />
  11038. </productMenu>
  11039. <productMenu id="bluetoothIntercom"
  11040. type="1" >
  11041. </productMenu>
  11042. <productMenu id="phone"
  11043. type="1" >
  11044. </productMenu>
  11045. <productMenu id="music"
  11046. type="1" >
  11047. </productMenu>
  11048. <productMenu id="fmradio"
  11049. type="1" >
  11050. </productMenu>
  11051. <productMenu id="deviceSetting"
  11052. type="1"
  11053. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11054. <productMenuURL version="2.5.9"
  11055. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11056. />
  11057. </productMenu>
  11058. <productMenu id="quickGuide"
  11059. type="1"
  11060. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11061. size="934KB" >
  11062. </productMenu>
  11063. <productMenu id="userGuide"
  11064. type="1"
  11065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11066. size="1.14MB" >
  11067. </productMenu>
  11068. <productMenu id="videoGuide"
  11069. type="0"
  11070. url=""
  11071. size="3.41MB" >
  11072. </productMenu>
  11073. <productMenu id="volume"
  11074. type="11" >
  11075. </productMenu>
  11076. <productMenu id="battery"
  11077. type="1" >
  11078. </productMenu>
  11079. <productID id="321C"
  11080. />
  11081. <productGroupable type="0"
  11082. />
  11083. </product>
  11084. <product id="BMW_HELMET_II_U1"
  11085. name="BMW HELMET II U1"
  11086. series="50"
  11087. latestVersion="1.0"
  11088. show = "0" >
  11089. <productMenu id="protocol"
  11090. type="2" >
  11091. </productMenu>
  11092. <productMenu id="alexa"
  11093. type="0" >
  11094. </productMenu>
  11095. <productMenu id="sip"
  11096. type="1" >
  11097. </productMenu>
  11098. <productMenu id="meshIntercom"
  11099. type="20" >
  11100. </productMenu>
  11101. <productMenu id="bluetoothIntercom"
  11102. type="1" >
  11103. </productMenu>
  11104. <productMenu id="bluetoothIntercom2"
  11105. type="1" >
  11106. </productMenu>
  11107. <productMenu id="phone"
  11108. type="1" >
  11109. </productMenu>
  11110. <productMenu id="music"
  11111. type="1" >
  11112. </productMenu>
  11113. <productMenu id="fmradio"
  11114. type="1" >
  11115. </productMenu>
  11116. <productMenu id="deviceSetting"
  11117. type="1"
  11118. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11119. </productMenu>
  11120. <productMenu id="quickGuide"
  11121. type="1"
  11122. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11123. size="934KB" >
  11124. </productMenu>
  11125. <productMenu id="userGuide"
  11126. type="1"
  11127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11128. size="1.14MB" >
  11129. </productMenu>
  11130. <productMenu id="volume"
  11131. type="11" >
  11132. </productMenu>
  11133. <productMenu id="battery"
  11134. type="1" >
  11135. </productMenu>
  11136. <productID id="3260"
  11137. />
  11138. <productGroupable type="0"
  11139. />
  11140. </product>
  11141. <product id="OUTRUSHR"
  11142. name="CX935"
  11143. series="Helmet"
  11144. latestVersion="2.1"
  11145. show = "-1" >
  11146. <productMenu id="protocol"
  11147. type="3">
  11148. </productMenu>
  11149. <productMenu id="sip"
  11150. type="1" >
  11151. </productMenu>
  11152. <productMenu id="bluetoothIntercom"
  11153. type="1" >
  11154. </productMenu>
  11155. <productMenu id="phone"
  11156. type="1" >
  11157. </productMenu>
  11158. <productMenu id="fmradio"
  11159. type="0" >
  11160. </productMenu>
  11161. <productMenu id="deviceSetting"
  11162. type="1"
  11163. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11164. </productMenu>
  11165. <productMenu id="userGuide"
  11166. type="1"
  11167. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11168. size="660KB" >
  11169. </productMenu>
  11170. <productID id="5446"
  11171. />
  11172. <productGroupable type="0"
  11173. />
  11174. </product>
  11175. <product id="LSE_01"
  11176. name="LSE-01"
  11177. series="SF"
  11178. latestVersion="1.2.3"
  11179. show = "0" >
  11180. <productMenu id="protocol"
  11181. type="1"
  11182. url="3">
  11183. </productMenu>
  11184. <productMenu id="sip"
  11185. type="1" >
  11186. </productMenu>
  11187. <productMenu id="bluetoothIntercom"
  11188. type="1" >
  11189. </productMenu>
  11190. <productMenu id="phone"
  11191. type="1" >
  11192. </productMenu>
  11193. <productMenu id="music"
  11194. type="1" >
  11195. </productMenu>
  11196. <productMenu id="fmradio"
  11197. type="1" >
  11198. </productMenu>
  11199. <productMenu id="deviceSetting"
  11200. type="1"
  11201. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11202. <productMenuURL version="1.1"
  11203. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11204. />
  11205. <productMenuURL version="1.0"
  11206. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11207. />
  11208. </productMenu>
  11209. <productMenu id="quickGuide"
  11210. type="1"
  11211. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11212. size="607KB" >
  11213. </productMenu>
  11214. <productMenu id="userGuide"
  11215. type="1"
  11216. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11217. size="1.91MB" >
  11218. </productMenu>
  11219. <productMenu id="volume"
  11220. type="4" >
  11221. </productMenu>
  11222. <productID id="5416"
  11223. />
  11224. <productGroupable type="0"
  11225. />
  11226. </product>
  11227. <product id="AGV_ARK"
  11228. name="AGV ARK"
  11229. series="SF"
  11230. latestVersion="1.0.3"
  11231. show = "0" >
  11232. <productMenu id="protocol"
  11233. type="1"
  11234. url="3">
  11235. </productMenu>
  11236. <productMenu id="sip"
  11237. type="1" >
  11238. </productMenu>
  11239. <productMenu id="bluetoothIntercom"
  11240. type="1" >
  11241. </productMenu>
  11242. <productMenu id="phone"
  11243. type="1" >
  11244. </productMenu>
  11245. <productMenu id="music"
  11246. type="1" >
  11247. </productMenu>
  11248. <productMenu id="fmradio"
  11249. type="1" >
  11250. </productMenu>
  11251. <productMenu id="deviceSetting"
  11252. type="1"
  11253. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11254. </productMenu>
  11255. <productMenu id="quickGuide"
  11256. type="1"
  11257. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11258. size="607KB" >
  11259. </productMenu>
  11260. <productMenu id="userGuide"
  11261. type="1"
  11262. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11263. size="1.91MB" >
  11264. </productMenu>
  11265. <productMenu id="volume"
  11266. type="4" >
  11267. </productMenu>
  11268. <productID id="5420"
  11269. />
  11270. <productGroupable type="0"
  11271. />
  11272. </product>
  11273. <product id="KLIM_KRIOS"
  11274. name="KLIM Krios"
  11275. series="10"
  11276. latestVersion="1.1.2"
  11277. show = "0" >
  11278. <productMenu id="protocol"
  11279. type="0">
  11280. </productMenu>
  11281. <productMenu id="sip"
  11282. type="1" >
  11283. </productMenu>
  11284. <productMenu id="bluetoothIntercom"
  11285. type="1" >
  11286. </productMenu>
  11287. <productMenu id="phone"
  11288. type="2" >
  11289. </productMenu>
  11290. <productMenu id="fmradio"
  11291. type="3" >
  11292. </productMenu>
  11293. <productMenu id="deviceSetting"
  11294. type="1"
  11295. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11296. <productMenuURL version="1.0"
  11297. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11298. />
  11299. </productMenu>
  11300. <productMenu id="quickGuide"
  11301. type="1"
  11302. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11303. size="649KB" >
  11304. </productMenu>
  11305. <productMenu id="userGuide"
  11306. type="1"
  11307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11308. size="1.43MB" >
  11309. </productMenu>
  11310. <productID id="5910"
  11311. />
  11312. <productGroupable type="0"
  11313. />
  11314. </product>
  11315. <product id="POLARIS_SLINGSHOT"
  11316. name="Polaris Slingshot"
  11317. series="10"
  11318. latestVersion="1.1.2"
  11319. show = "0" >
  11320. <productMenu id="protocol"
  11321. type="0">
  11322. </productMenu>
  11323. <productMenu id="sip"
  11324. type="1" >
  11325. </productMenu>
  11326. <productMenu id="bluetoothIntercom"
  11327. type="1" >
  11328. </productMenu>
  11329. <productMenu id="phone"
  11330. type="2" >
  11331. </productMenu>
  11332. <productMenu id="fmradio"
  11333. type="3" >
  11334. </productMenu>
  11335. <productMenu id="deviceSetting"
  11336. type="1"
  11337. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11338. <productMenuURL version="1.0"
  11339. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11340. />
  11341. </productMenu>
  11342. <productMenu id="quickGuide"
  11343. type="1"
  11344. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11345. size="689KB" >
  11346. </productMenu>
  11347. <productMenu id="userGuide"
  11348. type="1"
  11349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11350. size="1.43MB" >
  11351. </productMenu>
  11352. <productID id="5920"
  11353. />
  11354. <productGroupable type="0"
  11355. />
  11356. </product>
  11357. <product id="DWO6"
  11358. name="SEDICI DWO6-PRO"
  11359. series="10"
  11360. latestVersion="1.0.2"
  11361. show = "0" >
  11362. <productMenu id="protocol"
  11363. type="0">
  11364. </productMenu>
  11365. <productMenu id="sip"
  11366. type="1" >
  11367. </productMenu>
  11368. <productMenu id="bluetoothIntercom"
  11369. type="1" >
  11370. </productMenu>
  11371. <productMenu id="phone"
  11372. type="2" >
  11373. </productMenu>
  11374. <productMenu id="fmradio"
  11375. type="3" >
  11376. </productMenu>
  11377. <productMenu id="deviceSetting"
  11378. type="1"
  11379. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11380. </productMenu>
  11381. <productMenu id="quickGuide"
  11382. type="1"
  11383. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11384. size="529KB" >
  11385. </productMenu>
  11386. <productMenu id="userGuide"
  11387. type="1"
  11388. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11389. size="4.09MB" >
  11390. </productMenu>
  11391. <productID id="6112"
  11392. />
  11393. <productGroupable type="0"
  11394. />
  11395. </product>
  11396. <product id="DWO6A"
  11397. name="SEDICI DWO-6"
  11398. series="10"
  11399. latestVersion="1.0.2"
  11400. show = "0" >
  11401. <productMenu id="protocol"
  11402. type="0">
  11403. </productMenu>
  11404. <productMenu id="sip"
  11405. type="1" >
  11406. </productMenu>
  11407. <productMenu id="bluetoothIntercom"
  11408. type="1" >
  11409. </productMenu>
  11410. <productMenu id="phone"
  11411. type="2" >
  11412. </productMenu>
  11413. <productMenu id="fmradio"
  11414. type="3" >
  11415. </productMenu>
  11416. <productMenu id="deviceSetting"
  11417. type="1"
  11418. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11419. </productMenu>
  11420. <productMenu id="quickGuide"
  11421. type="1"
  11422. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11423. size="522KB" >
  11424. </productMenu>
  11425. <productMenu id="userGuide"
  11426. type="1"
  11427. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11428. size="2.71MB" >
  11429. </productMenu>
  11430. <productID id="6114"
  11431. />
  11432. <productGroupable type="0"
  11433. />
  11434. </product>
  11435. <product id="3SPLUS"
  11436. name="ZILL"
  11437. series="3"
  11438. latestVersion="1.0.4"
  11439. show = "0" >
  11440. <productMenu id="protocol"
  11441. type="0">
  11442. </productMenu>
  11443. <productMenu id="sip"
  11444. type="1" >
  11445. </productMenu>
  11446. <productMenu id="bluetoothIntercom"
  11447. type="1" >
  11448. </productMenu>
  11449. <productMenu id="deviceSetting"
  11450. type="1"
  11451. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11452. </productMenu>
  11453. <productMenu id="quickGuide"
  11454. type="1"
  11455. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11456. size="842KB" >
  11457. </productMenu>
  11458. <productMenu id="userGuide"
  11459. type="1"
  11460. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11461. size="1.02MB" >
  11462. </productMenu>
  11463. <productID id="6335"
  11464. />
  11465. <productGroupable type="0"
  11466. />
  11467. </product>
  11468. <product id="HD50S"
  11469. name="Boom! Audio 30K"
  11470. series="30"
  11471. latestVersion="3.4"
  11472. show = "0" >
  11473. <productMenu id="protocol"
  11474. type="1"
  11475. url="0">
  11476. </productMenu>
  11477. <productMenu id="wa"
  11478. type="0" >
  11479. </productMenu>
  11480. <productMenu id="sip"
  11481. type="1" >
  11482. </productMenu>
  11483. <productMenu id="meshIntercom"
  11484. type="20" >
  11485. <productMenuType version="2.9.9"
  11486. type="10"
  11487. />
  11488. </productMenu>
  11489. <productMenu id="bluetoothIntercom"
  11490. type="1" >
  11491. </productMenu>
  11492. <productMenu id="phone"
  11493. type="1" >
  11494. </productMenu>
  11495. <productMenu id="music"
  11496. type="1" >
  11497. </productMenu>
  11498. <productMenu id="fmradio"
  11499. type="1" >
  11500. </productMenu>
  11501. <productMenu id="deviceSetting"
  11502. type="1"
  11503. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11504. <productMenuURL version="3.2"
  11505. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11506. />
  11507. <productMenuURL version="3.0"
  11508. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11509. />
  11510. <productMenuURL version="2.2"
  11511. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11512. />
  11513. </productMenu>
  11514. <productMenu id="quickGuide"
  11515. type="1"
  11516. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11517. size="1.06MB" >
  11518. </productMenu>
  11519. <productMenu id="userGuide"
  11520. type="1"
  11521. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11522. size="3.15MB" >
  11523. </productMenu>
  11524. <productMenu id="volume"
  11525. type="1" >
  11526. </productMenu>
  11527. <productID id="3112"
  11528. />
  11529. <productGroupable type="0"
  11530. />
  11531. </product>
  11532. <product id="HD50S"
  11533. name="Boom! Audio N02"
  11534. series="30"
  11535. latestVersion="3.1"
  11536. show = "0" >
  11537. <productMenu id="protocol"
  11538. type="1"
  11539. url="0">
  11540. </productMenu>
  11541. <productMenu id="wa"
  11542. type="2" >
  11543. </productMenu>
  11544. <productMenu id="sip"
  11545. type="1" >
  11546. </productMenu>
  11547. <productMenu id="meshIntercom"
  11548. type="20" >
  11549. <productMenuType version="2.9.9"
  11550. type="10"
  11551. />
  11552. </productMenu>
  11553. <productMenu id="bluetoothIntercom"
  11554. type="1" >
  11555. </productMenu>
  11556. <productMenu id="phone"
  11557. type="1" >
  11558. </productMenu>
  11559. <productMenu id="music"
  11560. type="1" >
  11561. </productMenu>
  11562. <productMenu id="fmradio"
  11563. type="1" >
  11564. </productMenu>
  11565. <productMenu id="deviceSetting"
  11566. type="1"
  11567. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11568. <productMenuURL version="2.2"
  11569. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11570. />
  11571. </productMenu>
  11572. <productMenu id="quickGuide"
  11573. type="1"
  11574. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11575. size="1.06MB" >
  11576. </productMenu>
  11577. <productMenu id="userGuide"
  11578. type="1"
  11579. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11580. size="3.15MB" >
  11581. </productMenu>
  11582. <productMenu id="volume"
  11583. type="2" >
  11584. </productMenu>
  11585. <productID id="3114"
  11586. />
  11587. <productGroupable type="0"
  11588. />
  11589. </product>
  11590. <product id="HD50S"
  11591. name="Boom Audio 20S"
  11592. series="50"
  11593. latestVersion="2.5.2"
  11594. show = "0" >
  11595. <productMenu id="protocol"
  11596. type="0">
  11597. </productMenu>
  11598. <productMenu id="sip"
  11599. type="1" >
  11600. <productMenuType version="1.0"
  11601. type="0"
  11602. />
  11603. </productMenu>
  11604. <productMenu id="bluetoothIntercom"
  11605. type="1" >
  11606. <productMenuType version="1.0"
  11607. type="0"
  11608. />
  11609. </productMenu>
  11610. <productMenu id="intercomSetting"
  11611. type="1" >
  11612. </productMenu>
  11613. <productMenu id="phone"
  11614. type="2" >
  11615. </productMenu>
  11616. <productMenu id="fmradio"
  11617. type="3" >
  11618. </productMenu>
  11619. <productMenu id="deviceSetting"
  11620. type="1"
  11621. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11622. <productMenuURL version="2.4"
  11623. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11624. />
  11625. <productMenuURL version="1.5"
  11626. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11627. />
  11628. <productMenuURL version="1.4.1"
  11629. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11630. />
  11631. <productMenuURL version="1.1"
  11632. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11633. />
  11634. <productMenuURL version="1.0"
  11635. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11636. />
  11637. </productMenu>
  11638. <productMenu id="quickGuide"
  11639. type="1"
  11640. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11641. size="264KB" >
  11642. </productMenu>
  11643. <productMenu id="userGuide"
  11644. type="1"
  11645. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11646. size="3.09MB" >
  11647. </productMenu>
  11648. <productMenu id="connectGuide"
  11649. type="1"
  11650. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11651. size="1.12MB" >
  11652. </productMenu>
  11653. <productID id="4210"
  11654. />
  11655. <productProductKey key="11"
  11656. />
  11657. <productID id="4230"
  11658. />
  11659. <productProductKey key="11"
  11660. />
  11661. <productGroupable type="1"
  11662. />
  11663. </product>
  11664. <product id="HD50S"
  11665. name="Boom Audio 20S EVO"
  11666. series="50"
  11667. latestVersion="2.5.2"
  11668. show = "0" >
  11669. <productMenu id="protocol"
  11670. type="0">
  11671. </productMenu>
  11672. <productMenu id="sip"
  11673. type="1" >
  11674. <productMenuType version="1.0"
  11675. type="0"
  11676. />
  11677. </productMenu>
  11678. <productMenu id="bluetoothIntercom"
  11679. type="1" >
  11680. <productMenuType version="1.0"
  11681. type="0"
  11682. />
  11683. </productMenu>
  11684. <productMenu id="intercomSetting"
  11685. type="1" >
  11686. </productMenu>
  11687. <productMenu id="phone"
  11688. type="2" >
  11689. </productMenu>
  11690. <productMenu id="fmradio"
  11691. type="3" >
  11692. </productMenu>
  11693. <productMenu id="deviceSetting"
  11694. type="1"
  11695. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11696. <productMenuURL version="2.4"
  11697. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11698. />
  11699. <productMenuURL version="1.5"
  11700. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11701. />
  11702. <productMenuURL version="1.4.1"
  11703. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11704. />
  11705. <productMenuURL version="1.1"
  11706. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11707. />
  11708. <productMenuURL version="1.0"
  11709. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11710. />
  11711. </productMenu>
  11712. <productMenu id="quickGuide"
  11713. type="1"
  11714. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11715. size="321KB" >
  11716. </productMenu>
  11717. <productMenu id="userGuide"
  11718. type="1"
  11719. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11720. size="2.46MB" >
  11721. </productMenu>
  11722. <productID id="4230"
  11723. />
  11724. <productProductKey key="27"
  11725. />
  11726. <productGroupable type="1"
  11727. />
  11728. </product>
  11729. <product id="HD50S"
  11730. name="Boom! Audio 10S"
  11731. series="50"
  11732. latestVersion="1.1.3"
  11733. show = "0" >
  11734. <productMenu id="protocol"
  11735. type="0">
  11736. </productMenu>
  11737. <productMenu id="sip"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="bluetoothIntercom"
  11741. type="1" >
  11742. </productMenu>
  11743. <productMenu id="phone"
  11744. type="2" >
  11745. </productMenu>
  11746. <productMenu id="fmradio"
  11747. type="3" >
  11748. </productMenu>
  11749. <productMenu id="deviceSetting"
  11750. type="1"
  11751. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11752. </productMenu>
  11753. <productMenu id="quickGuide"
  11754. type="1"
  11755. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11756. size="538KB" >
  11757. </productMenu>
  11758. <productMenu id="userGuide"
  11759. type="1"
  11760. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11761. size="1.55MB" >
  11762. </productMenu>
  11763. <productID id="5532"
  11764. />
  11765. <productGroupable type="0"
  11766. />
  11767. </product>
  11768. <product id="HD50S"
  11769. name="Boom! Audio N01 10R"
  11770. series="50"
  11771. latestVersion="1.1.3"
  11772. show = "0" >
  11773. <productMenu id="protocol"
  11774. type="0">
  11775. </productMenu>
  11776. <productMenu id="sip"
  11777. type="1" >
  11778. </productMenu>
  11779. <productMenu id="bluetoothIntercom"
  11780. type="1" >
  11781. </productMenu>
  11782. <productMenu id="phone"
  11783. type="2" >
  11784. </productMenu>
  11785. <productMenu id="fmradio"
  11786. type="3" >
  11787. </productMenu>
  11788. <productMenu id="deviceSetting"
  11789. type="1"
  11790. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11791. </productMenu>
  11792. <productMenu id="quickGuide"
  11793. type="1"
  11794. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11795. size="766KB" >
  11796. </productMenu>
  11797. <productMenu id="userGuide"
  11798. type="1"
  11799. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11800. size="1.45MB" >
  11801. </productMenu>
  11802. <productID id="5522"
  11803. />
  11804. <productGroupable type="0"
  11805. />
  11806. </product>
  11807. <product id="HD50S"
  11808. name="OUTRUSH-R N03"
  11809. series="50"
  11810. latestVersion="1.2.1"
  11811. show = "-1" >
  11812. <productMenu id="protocol"
  11813. type="0">
  11814. </productMenu>
  11815. <productMenu id="sip"
  11816. type="1" >
  11817. </productMenu>
  11818. <productMenu id="bluetoothIntercom"
  11819. type="1" >
  11820. </productMenu>
  11821. <productMenu id="phone"
  11822. type="2" >
  11823. </productMenu>
  11824. <productMenu id="fmradio"
  11825. type="3" >
  11826. </productMenu>
  11827. <productMenu id="deviceSetting"
  11828. type="1"
  11829. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11830. </productMenu>
  11831. <productMenu id="userGuide"
  11832. type="1"
  11833. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11834. size="660KB" >
  11835. </productMenu>
  11836. <productID id="5434"
  11837. />
  11838. <productGroupable type="0"
  11839. />
  11840. </product>
  11841. <product id="HD50S"
  11842. name="OUTRUSH-R N03"
  11843. series="50"
  11844. latestVersion="2.0"
  11845. show = "0" >
  11846. <productMenu id="protocol"
  11847. type="3" >
  11848. </productMenu>
  11849. <productMenu id="sip"
  11850. type="1" >
  11851. </productMenu>
  11852. <productMenu id="bluetoothIntercom"
  11853. type="1" >
  11854. </productMenu>
  11855. <productMenu id="phone"
  11856. type="1" >
  11857. </productMenu>
  11858. <productMenu id="fmradio"
  11859. type="1" >
  11860. </productMenu>
  11861. <productMenu id="deviceSetting"
  11862. type="1"
  11863. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11864. </productMenu>
  11865. <productMenu id="userGuide"
  11866. type="1"
  11867. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11868. size="1.14MB" >
  11869. </productMenu>
  11870. <productID id="5441"
  11871. />
  11872. <productGroupable type="0"
  11873. />
  11874. </product>
  11875. <product id="5R"
  11876. name="5R"
  11877. series="5"
  11878. latestVersion="1.0.1"
  11879. show = "1" >
  11880. <productMenu id="protocol"
  11881. type="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="fmradio"
  11893. type="1" >
  11894. </productMenu>
  11895. <productMenu id="deviceSetting"
  11896. type="1"
  11897. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11898. </productMenu>
  11899. <productMenu id="quickGuide"
  11900. type="0"
  11901. url=""
  11902. size="934KB" >
  11903. </productMenu>
  11904. <productMenu id="userGuide"
  11905. type="1"
  11906. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11907. size="1.14MB" >
  11908. </productMenu>
  11909. <productMenu id="connectGuide"
  11910. type="1"
  11911. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11912. size="1.12MB" >
  11913. </productMenu>
  11914. <productID id="5591"
  11915. />
  11916. <productGroupable type="0"
  11917. />
  11918. </product>
  11919. <product id="5R"
  11920. name="5R LITE"
  11921. series="5"
  11922. latestVersion="1.0.1"
  11923. show = "1" >
  11924. <productMenu id="protocol"
  11925. type="3" >
  11926. </productMenu>
  11927. <productMenu id="sip"
  11928. type="1" >
  11929. </productMenu>
  11930. <productMenu id="bluetoothIntercom"
  11931. type="1" >
  11932. </productMenu>
  11933. <productMenu id="phone"
  11934. type="1" >
  11935. </productMenu>
  11936. <productMenu id="fmradio"
  11937. type="1" >
  11938. </productMenu>
  11939. <productMenu id="deviceSetting"
  11940. type="1"
  11941. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11942. </productMenu>
  11943. <productMenu id="quickGuide"
  11944. type="0"
  11945. url=""
  11946. size="934KB" >
  11947. </productMenu>
  11948. <productMenu id="userGuide"
  11949. type="1"
  11950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11951. size="1.14MB" >
  11952. </productMenu>
  11953. <productMenu id="connectGuide"
  11954. type="1"
  11955. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11956. size="1.12MB" >
  11957. </productMenu>
  11958. <productID id="5592"
  11959. />
  11960. <productGroupable type="0"
  11961. />
  11962. </product>
  11963. <product id="50RLE"
  11964. name="50R LE"
  11965. series="50"
  11966. latestVersion="1.1"
  11967. show = "0" >
  11968. <productMenu id="protocol"
  11969. type="2" >
  11970. </productMenu>
  11971. <productMenu id="alexa"
  11972. type="0" >
  11973. </productMenu>
  11974. <productMenu id="sip"
  11975. type="1" >
  11976. </productMenu>
  11977. <productMenu id="meshIntercom"
  11978. type="30" >
  11979. </productMenu>
  11980. <productMenu id="meshIntercom+"
  11981. type="3"
  11982. url="2" >
  11983. <productMenuType version="1.0.9"
  11984. type="2"
  11985. />
  11986. </productMenu>
  11987. <productMenu id="waveIntercom"
  11988. type="1" >
  11989. <productMenuType version="1.0.9"
  11990. type="0"
  11991. />
  11992. </productMenu>
  11993. <productMenu id="bluetoothIntercom"
  11994. type="1" >
  11995. </productMenu>
  11996. <productMenu id="phone"
  11997. type="1" >
  11998. </productMenu>
  11999. <productMenu id="music"
  12000. type="1" >
  12001. </productMenu>
  12002. <productMenu id="fmradio"
  12003. type="0" >
  12004. </productMenu>
  12005. <productMenu id="deviceSetting"
  12006. type="1"
  12007. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12008. <productMenuURL version="1.0.9"
  12009. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12010. />
  12011. </productMenu>
  12012. <productMenu id="quickGuide"
  12013. type="0"
  12014. url=""
  12015. size="344KB" >
  12016. </productMenu>
  12017. <productMenu id="userGuide"
  12018. type="0"
  12019. url=""
  12020. size="3.41MB" >
  12021. </productMenu>
  12022. <productMenu id="volume"
  12023. type="11" >
  12024. </productMenu>
  12025. <productMenu id="battery"
  12026. type="1" >
  12027. </productMenu>
  12028. <productID id="3223"
  12029. />
  12030. <productGroupable type="0"
  12031. />
  12032. </product>
  12033. <product id="5RLOUIS"
  12034. name="5R LOUIS EDITION"
  12035. series="5"
  12036. latestVersion="1.0"
  12037. show = "-1" >
  12038. <productMenu id="protocol"
  12039. type="3" >
  12040. </productMenu>
  12041. <productMenu id="sip"
  12042. type="1" >
  12043. </productMenu>
  12044. <productMenu id="bluetoothIntercom"
  12045. type="1" >
  12046. </productMenu>
  12047. <productMenu id="phone"
  12048. type="1" >
  12049. </productMenu>
  12050. <productMenu id="fmradio"
  12051. type="1" >
  12052. </productMenu>
  12053. <productMenu id="deviceSetting"
  12054. type="1"
  12055. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12056. </productMenu>
  12057. <productMenu id="quickGuide"
  12058. type="0"
  12059. url=""
  12060. size="934KB" >
  12061. </productMenu>
  12062. <productMenu id="userGuide"
  12063. type="0"
  12064. url=""
  12065. size="1.14MB" >
  12066. </productMenu>
  12067. <productID id="5597"
  12068. />
  12069. <productGroupable type="0"
  12070. />
  12071. </product>
  12072. <product id="5S"
  12073. name="Ridekont 5S"
  12074. series="5"
  12075. latestVersion="2.3"
  12076. show = "-1" >
  12077. <productMenu id="protocol"
  12078. type="3" >
  12079. </productMenu>
  12080. <productMenu id="sip"
  12081. type="1" >
  12082. </productMenu>
  12083. <productMenu id="bluetoothIntercom"
  12084. type="1" >
  12085. </productMenu>
  12086. <productMenu id="phone"
  12087. type="1" >
  12088. </productMenu>
  12089. <productMenu id="fmradio"
  12090. type="0" >
  12091. </productMenu>
  12092. <productMenu id="deviceSetting"
  12093. type="1"
  12094. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12095. </productMenu>
  12096. <productMenu id="quickGuide"
  12097. type="0"
  12098. url=""
  12099. size="934KB" >
  12100. </productMenu>
  12101. <productMenu id="userGuide"
  12102. type="1"
  12103. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12104. size="1.14MB" >
  12105. </productMenu>
  12106. <productID id="5589"
  12107. />
  12108. <productGroupable type="0"
  12109. />
  12110. </product>
  12111. <product id="5R"
  12112. name="Ridekont 5R"
  12113. series="5"
  12114. latestVersion="1.0"
  12115. show = "0" >
  12116. <productMenu id="protocol"
  12117. type="3" >
  12118. </productMenu>
  12119. <productMenu id="sip"
  12120. type="1" >
  12121. </productMenu>
  12122. <productMenu id="bluetoothIntercom"
  12123. type="1" >
  12124. </productMenu>
  12125. <productMenu id="phone"
  12126. type="1" >
  12127. </productMenu>
  12128. <productMenu id="fmradio"
  12129. type="1" >
  12130. </productMenu>
  12131. <productMenu id="deviceSetting"
  12132. type="1"
  12133. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12134. </productMenu>
  12135. <productMenu id="quickGuide"
  12136. type="1"
  12137. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12138. size="934KB" >
  12139. </productMenu>
  12140. <productMenu id="userGuide"
  12141. type="1"
  12142. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12143. size="1.14MB" >
  12144. </productMenu>
  12145. <productID id="5593"
  12146. />
  12147. <productGroupable type="0"
  12148. />
  12149. </product>
  12150. <product id="5R"
  12151. name="Ridekont 5R LITE"
  12152. series="5"
  12153. latestVersion="1.0"
  12154. show = "0" >
  12155. <productMenu id="protocol"
  12156. type="3" >
  12157. </productMenu>
  12158. <productMenu id="sip"
  12159. type="1" >
  12160. </productMenu>
  12161. <productMenu id="bluetoothIntercom"
  12162. type="1" >
  12163. </productMenu>
  12164. <productMenu id="phone"
  12165. type="1" >
  12166. </productMenu>
  12167. <productMenu id="fmradio"
  12168. type="1" >
  12169. </productMenu>
  12170. <productMenu id="deviceSetting"
  12171. type="1"
  12172. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12173. </productMenu>
  12174. <productMenu id="quickGuide"
  12175. type="0"
  12176. url=""
  12177. size="934KB" >
  12178. </productMenu>
  12179. <productMenu id="userGuide"
  12180. type="1"
  12181. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12182. size="1.14MB" >
  12183. </productMenu>
  12184. <productID id="5594"
  12185. />
  12186. <productGroupable type="0"
  12187. />
  12188. </product>
  12189. <product id="SA30"
  12190. name="SA30"
  12191. series="SA"
  12192. latestVersion="1.0.1"
  12193. latestVersionVoicePrompt="0.15"
  12194. show = "-1" >
  12195. <productMenu id="protocol"
  12196. type="2" >
  12197. </productMenu>
  12198. <productMenu id="ota"
  12199. type="2" >
  12200. <otaPackages>
  12201. <package
  12202. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12203. size="3144148"
  12204. />
  12205. </otaPackages>
  12206. </productMenu>
  12207. <productMenu id="meshIntercom"
  12208. type="30" >
  12209. </productMenu>
  12210. <productMenu id="meshIntercom+"
  12211. type="3"
  12212. url="2" >
  12213. </productMenu>
  12214. <productMenu id="phone"
  12215. type="1" >
  12216. </productMenu>
  12217. <productMenu id="music"
  12218. type="1" >
  12219. </productMenu>
  12220. <productMenu id="musicSharing"
  12221. type="0" >
  12222. </productMenu>
  12223. <productMenu id="deviceSetting"
  12224. type="1"
  12225. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12226. </productMenu>
  12227. <productMenu id="quickGuide"
  12228. type="0"
  12229. url=""
  12230. size="1.12MB" >
  12231. </productMenu>
  12232. <productMenu id="userGuide"
  12233. type="1"
  12234. url=""
  12235. size="2.0MB" >
  12236. </productMenu>
  12237. <productMenu id="videoGuide"
  12238. type="0"
  12239. url=""
  12240. size="3.41MB" >
  12241. </productMenu>
  12242. <productMenu id="volume"
  12243. type="12" >
  12244. </productMenu>
  12245. <productMenu id="battery"
  12246. type="1" >
  12247. </productMenu>
  12248. <productID id="6852"
  12249. />
  12250. <productGroupable type="0"
  12251. />
  12252. </product>
  12253. <product id="I30"
  12254. name="I30"
  12255. series="I"
  12256. latestVersion="1.0.1"
  12257. latestVersionVoicePrompt="0.2"
  12258. show = "-1" >
  12259. <productMenu id="protocol"
  12260. type="2" >
  12261. </productMenu>
  12262. <productMenu id="ota"
  12263. type="2" >
  12264. <otaPackages>
  12265. <package
  12266. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12267. size="3144148"
  12268. />
  12269. </otaPackages>
  12270. </productMenu>
  12271. <productMenu id="meshIntercom"
  12272. type="30" >
  12273. </productMenu>
  12274. <productMenu id="meshIntercom+"
  12275. type="3"
  12276. url="2" >
  12277. </productMenu>
  12278. <productMenu id="phone"
  12279. type="1" >
  12280. </productMenu>
  12281. <productMenu id="music"
  12282. type="1" >
  12283. </productMenu>
  12284. <productMenu id="musicSharing"
  12285. type="0" >
  12286. </productMenu>
  12287. <productMenu id="deviceSetting"
  12288. type="1"
  12289. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12290. </productMenu>
  12291. <productMenu id="quickGuide"
  12292. type="0"
  12293. url=""
  12294. size="1.12MB" >
  12295. </productMenu>
  12296. <productMenu id="userGuide"
  12297. type="1"
  12298. url=""
  12299. size="2.10MB" >
  12300. </productMenu>
  12301. <productMenu id="videoGuide"
  12302. type="0"
  12303. url=""
  12304. size="3.11MB" >
  12305. </productMenu>
  12306. <productMenu id="volume"
  12307. type="12" >
  12308. </productMenu>
  12309. <productMenu id="battery"
  12310. type="1" >
  12311. </productMenu>
  12312. <productID id="6853"
  12313. />
  12314. <productGroupable type="0"
  12315. />
  12316. </product>
  12317. <product id="C30"
  12318. name="SENA C30"
  12319. series="C"
  12320. latestVersion="1.2.2"
  12321. latestVersionVoicePrompt="0.13"
  12322. show = "1" >
  12323. <productMenu id="protocol"
  12324. type="2" >
  12325. </productMenu>
  12326. <productMenu id="alexa"
  12327. type="0" >
  12328. </productMenu>
  12329. <productMenu id="ota"
  12330. type="2" >
  12331. <otaPackages>
  12332. <package
  12333. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12334. size="3144148"
  12335. />
  12336. </otaPackages>
  12337. </productMenu>
  12338. <productMenu id="wa"
  12339. type="0" >
  12340. </productMenu>
  12341. <productMenu id="meshIntercom"
  12342. type="30" >
  12343. </productMenu>
  12344. <productMenu id="meshIntercom+"
  12345. type="3"
  12346. url="2" >
  12347. <productMenuType version="1.0.9"
  12348. type="2"
  12349. />
  12350. </productMenu>
  12351. <productMenu id="waveIntercom"
  12352. type="1" >
  12353. <productMenuType version="1.1.9"
  12354. type="0"
  12355. />
  12356. </productMenu>
  12357. <productMenu id="phone"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="music"
  12361. type="1" >
  12362. </productMenu>
  12363. <productMenu id="musicSharing"
  12364. type="0" >
  12365. </productMenu>
  12366. <productMenu id="deviceSetting"
  12367. type="1"
  12368. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12369. <productMenuURL version="1.1.3"
  12370. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12371. />
  12372. <productMenuURL version="1.0.9"
  12373. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12374. />
  12375. </productMenu>
  12376. <productMenu id="quickGuide"
  12377. type="1"
  12378. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12379. size="1.12MB" >
  12380. </productMenu>
  12381. <productMenu id="userGuide"
  12382. type="0"
  12383. url=""
  12384. size="2.0MB" >
  12385. </productMenu>
  12386. <productMenu id="videoGuide"
  12387. type="0"
  12388. url=""
  12389. size="3.41MB" >
  12390. </productMenu>
  12391. <productMenu id="volume"
  12392. type="12" >
  12393. </productMenu>
  12394. <productMenu id="battery"
  12395. type="1" >
  12396. </productMenu>
  12397. <productID id="683A"
  12398. />
  12399. <productGroupable type="0"
  12400. />
  12401. </product>
  12402. <product id="C20"
  12403. name="C20"
  12404. series="C"
  12405. latestVersion="1.0"
  12406. show = "1" >
  12407. <productMenu id="protocol"
  12408. type="3" >
  12409. </productMenu>
  12410. <productMenu id="sip"
  12411. type="1" >
  12412. </productMenu>
  12413. <productMenu id="bluetoothIntercom"
  12414. type="1" >
  12415. </productMenu>
  12416. <productMenu id="phone"
  12417. type="1" >
  12418. </productMenu>
  12419. <productMenu id="deviceSetting"
  12420. type="1"
  12421. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12422. </productMenu>
  12423. <productMenu id="quickGuide"
  12424. type="1"
  12425. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12426. size="934KB" >
  12427. </productMenu>
  12428. <productMenu id="userGuide"
  12429. type="1"
  12430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12431. size="1.14MB" >
  12432. </productMenu>
  12433. <productID id="3701"
  12434. />
  12435. <productGroupable type="0"
  12436. />
  12437. </product>
  12438. <product id="C10"
  12439. name="C10"
  12440. series="C"
  12441. latestVersion="1.4.4"
  12442. show = "1" >
  12443. <productMenu id="protocol"
  12444. type="3" >
  12445. </productMenu>
  12446. <productMenu id="sip"
  12447. type="1" >
  12448. </productMenu>
  12449. <productMenu id="bluetoothIntercom"
  12450. type="1" >
  12451. </productMenu>
  12452. <productMenu id="phone"
  12453. type="1" >
  12454. </productMenu>
  12455. <productMenu id="fmradio"
  12456. type="0" >
  12457. </productMenu>
  12458. <productMenu id="deviceSetting"
  12459. type="1"
  12460. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12461. </productMenu>
  12462. <productMenu id="userGuide"
  12463. type="1"
  12464. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12465. size="1.14MB" >
  12466. </productMenu>
  12467. <productID id="5595"
  12468. />
  12469. <productGroupable type="0"
  12470. />
  12471. </product>
  12472. <product id="J30"
  12473. name="J30"
  12474. series="J"
  12475. latestVersion="1.2.2"
  12476. latestVersionVoicePrompt="0.14"
  12477. show = "0" >
  12478. <productMenu id="protocol"
  12479. type="2" >
  12480. </productMenu>
  12481. <productMenu id="alexa"
  12482. type="0" >
  12483. </productMenu>
  12484. <productMenu id="ota"
  12485. type="2" >
  12486. <otaPackages>
  12487. <package
  12488. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12489. size="3144148"
  12490. />
  12491. </otaPackages>
  12492. </productMenu>
  12493. <productMenu id="wa"
  12494. type="0" >
  12495. </productMenu>
  12496. <productMenu id="meshIntercom"
  12497. type="30" >
  12498. </productMenu>
  12499. <productMenu id="meshIntercom+"
  12500. type="3"
  12501. url="2" >
  12502. <productMenuType version="1.0.9"
  12503. type="2"
  12504. />
  12505. </productMenu>
  12506. <productMenu id="waveIntercom"
  12507. type="1" >
  12508. <productMenuType version="1.1.9"
  12509. type="0"
  12510. />
  12511. </productMenu>
  12512. <productMenu id="phone"
  12513. type="1" >
  12514. </productMenu>
  12515. <productMenu id="music"
  12516. type="1" >
  12517. </productMenu>
  12518. <productMenu id="musicSharing"
  12519. type="0" >
  12520. </productMenu>
  12521. <productMenu id="deviceSetting"
  12522. type="1"
  12523. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12524. <productMenuURL version="1.0.9"
  12525. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12526. />
  12527. </productMenu>
  12528. <productMenu id="quickGuide"
  12529. type="0"
  12530. url=""
  12531. size="1.12MB" >
  12532. </productMenu>
  12533. <productMenu id="userGuide"
  12534. type="1"
  12535. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12536. size="2.0MB" >
  12537. </productMenu>
  12538. <productMenu id="videoGuide"
  12539. type="0"
  12540. url=""
  12541. size="3.41MB" >
  12542. </productMenu>
  12543. <productMenu id="volume"
  12544. type="12" >
  12545. </productMenu>
  12546. <productMenu id="battery"
  12547. type="1" >
  12548. </productMenu>
  12549. <productID id="6848"
  12550. />
  12551. <productGroupable type="0"
  12552. />
  12553. </product>
  12554. <product id="J10"
  12555. name="J10"
  12556. series="5"
  12557. latestVersion="1.1.4"
  12558. show = "0" >
  12559. <productMenu id="protocol"
  12560. type="3" >
  12561. </productMenu>
  12562. <productMenu id="sip"
  12563. type="1" >
  12564. </productMenu>
  12565. <productMenu id="bluetoothIntercom"
  12566. type="1" >
  12567. </productMenu>
  12568. <productMenu id="phone"
  12569. type="1" >
  12570. </productMenu>
  12571. <productMenu id="fmradio"
  12572. type="0" >
  12573. </productMenu>
  12574. <productMenu id="deviceSetting"
  12575. type="1"
  12576. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12577. </productMenu>
  12578. <productMenu id="userGuide"
  12579. type="1"
  12580. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12581. size="1.14MB" >
  12582. </productMenu>
  12583. <productID id="5598"
  12584. />
  12585. <productGroupable type="0"
  12586. />
  12587. </product>
  12588. <product id="B20"
  12589. name="B20"
  12590. series="B"
  12591. latestVersion="1.1.2"
  12592. latestVersionVoicePrompt="0.14"
  12593. show = "0" >
  12594. <productMenu id="protocol"
  12595. type="2" >
  12596. </productMenu>
  12597. <productMenu id="alexa"
  12598. type="0" >
  12599. </productMenu>
  12600. <productMenu id="ota"
  12601. type="2" >
  12602. <otaPackages>
  12603. <package
  12604. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12605. size="3144148"
  12606. />
  12607. </otaPackages>
  12608. </productMenu>
  12609. <productMenu id="wa"
  12610. type="0" >
  12611. </productMenu>
  12612. <productMenu id="meshIntercom"
  12613. type="30" >
  12614. </productMenu>
  12615. <productMenu id="phone"
  12616. type="1" >
  12617. </productMenu>
  12618. <productMenu id="music"
  12619. type="1" >
  12620. </productMenu>
  12621. <productMenu id="musicSharing"
  12622. type="0" >
  12623. </productMenu>
  12624. <productMenu id="deviceSetting"
  12625. type="1"
  12626. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12627. <productMenuURL version="1.0.9"
  12628. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12629. />
  12630. </productMenu>
  12631. <productMenu id="quickGuide"
  12632. type="0"
  12633. url=""
  12634. size="1.12MB" >
  12635. </productMenu>
  12636. <productMenu id="userGuide"
  12637. type="1"
  12638. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12639. size="2.0MB" >
  12640. </productMenu>
  12641. <productMenu id="videoGuide"
  12642. type="0"
  12643. url=""
  12644. size="3.41MB" >
  12645. </productMenu>
  12646. <productMenu id="volume"
  12647. type="12" >
  12648. </productMenu>
  12649. <productMenu id="battery"
  12650. type="1" >
  12651. </productMenu>
  12652. <productID id="6847"
  12653. />
  12654. <productGroupable type="0"
  12655. />
  12656. </product>
  12657. <product id="B10"
  12658. name="B10"
  12659. series="5"
  12660. latestVersion="1.2.4"
  12661. show = "0" >
  12662. <productMenu id="protocol"
  12663. type="3" >
  12664. </productMenu>
  12665. <productMenu id="sip"
  12666. type="1" >
  12667. </productMenu>
  12668. <productMenu id="bluetoothIntercom"
  12669. type="1" >
  12670. </productMenu>
  12671. <productMenu id="phone"
  12672. type="1" >
  12673. </productMenu>
  12674. <productMenu id="fmradio"
  12675. type="0" >
  12676. </productMenu>
  12677. <productMenu id="deviceSetting"
  12678. type="1"
  12679. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12680. </productMenu>
  12681. <productMenu id="userGuide"
  12682. type="1"
  12683. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12684. size="1.14MB" >
  12685. </productMenu>
  12686. <productID id="5596"
  12687. />
  12688. <productGroupable type="0"
  12689. />
  12690. </product>
  12691. <product id="E30"
  12692. name="E30"
  12693. series="E"
  12694. latestVersion="1.1.2"
  12695. latestVersionVoicePrompt="0.14"
  12696. show = "0" >
  12697. <productMenu id="protocol"
  12698. type="2" >
  12699. </productMenu>
  12700. <productMenu id="alexa"
  12701. type="0" >
  12702. </productMenu>
  12703. <productMenu id="ota"
  12704. type="2" >
  12705. <otaPackages>
  12706. <package
  12707. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12708. size="3144148"
  12709. />
  12710. </otaPackages>
  12711. </productMenu>
  12712. <productMenu id="wa"
  12713. type="0" >
  12714. </productMenu>
  12715. <productMenu id="meshIntercom"
  12716. type="30" >
  12717. </productMenu>
  12718. <productMenu id="meshIntercom+"
  12719. type="3"
  12720. url="2" >
  12721. </productMenu>
  12722. <productMenu id="waveIntercom"
  12723. type="1" >
  12724. <productMenuType version="1.0.9"
  12725. type="0"
  12726. />
  12727. </productMenu>
  12728. <productMenu id="phone"
  12729. type="1" >
  12730. </productMenu>
  12731. <productMenu id="music"
  12732. type="1" >
  12733. </productMenu>
  12734. <productMenu id="musicSharing"
  12735. type="0" >
  12736. </productMenu>
  12737. <productMenu id="deviceSetting"
  12738. type="1"
  12739. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12740. </productMenu>
  12741. <productMenu id="quickGuide"
  12742. type="0"
  12743. url=""
  12744. size="1.12MB" >
  12745. </productMenu>
  12746. <productMenu id="userGuide"
  12747. type="1"
  12748. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12749. size="2.0MB" >
  12750. </productMenu>
  12751. <productMenu id="videoGuide"
  12752. type="0"
  12753. url=""
  12754. size="3.41MB" >
  12755. </productMenu>
  12756. <productMenu id="volume"
  12757. type="12" >
  12758. </productMenu>
  12759. <productMenu id="battery"
  12760. type="1" >
  12761. </productMenu>
  12762. <productID id="6846"
  12763. />
  12764. <productGroupable type="0"
  12765. />
  12766. </product>
  12767. <product id="ACSRAM"
  12768. name="ACS-RAM"
  12769. series="ACS"
  12770. latestVersion="1.0.5"
  12771. show = "1" >
  12772. <productMenu id="protocol"
  12773. type="3" >
  12774. </productMenu>
  12775. <productMenu id="sip"
  12776. type="1" >
  12777. </productMenu>
  12778. <productMenu id="bluetoothIntercom"
  12779. type="1" >
  12780. </productMenu>
  12781. <productMenu id="deviceSetting"
  12782. type="1"
  12783. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12784. </productMenu>
  12785. <productMenu id="quickGuide"
  12786. type="1"
  12787. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12788. size="344KB" >
  12789. </productMenu>
  12790. <productMenu id="userGuide"
  12791. type="1"
  12792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12793. size="1.14MB" >
  12794. </productMenu>
  12795. <productMenu id="connectGuide"
  12796. type="1"
  12797. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12798. size="1.12MB" >
  12799. </productMenu>
  12800. <productID id="3400"
  12801. />
  12802. <productGroupable type="0"
  12803. />
  12804. </product>
  12805. <product id="ACS10"
  12806. name="ACS10"
  12807. series="ACS"
  12808. latestVersion="1.0.2"
  12809. show = "1" >
  12810. <productMenu id="protocol"
  12811. type="0">
  12812. </productMenu>
  12813. <productMenu id="sip"
  12814. type="1" >
  12815. </productMenu>
  12816. <productMenu id="bluetoothIntercom"
  12817. type="1" >
  12818. </productMenu>
  12819. <productMenu id="phone"
  12820. type="2" >
  12821. </productMenu>
  12822. <productMenu id="deviceSetting"
  12823. type="1"
  12824. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12825. </productMenu>
  12826. <productMenu id="quickGuide"
  12827. type="1"
  12828. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12829. size="970KB" >
  12830. </productMenu>
  12831. <productMenu id="userGuide"
  12832. type="1"
  12833. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12834. size="1.26MB" >
  12835. </productMenu>
  12836. <productMenu id="connectGuide"
  12837. type="1"
  12838. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12839. size="1.12MB" >
  12840. </productMenu>
  12841. <productID id="3300"
  12842. />
  12843. <productGroupable type="0"
  12844. />
  12845. </product>
  12846. <product id="DWO7ProMesh"
  12847. name="DWO 7 Pro Mesh"
  12848. series="50"
  12849. latestVersion="1.1"
  12850. latestVersionVoicePrompt="0.9"
  12851. show = "0" >
  12852. <productMenu id="protocol"
  12853. type="2" >
  12854. </productMenu>
  12855. <productMenu id="alexa"
  12856. type="0" >
  12857. </productMenu>
  12858. <productMenu id="ota"
  12859. type="2" >
  12860. <otaPackages>
  12861. <package
  12862. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12863. size="2945812"
  12864. />
  12865. </otaPackages>
  12866. </productMenu>
  12867. <productMenu id="wa"
  12868. type="0" >
  12869. </productMenu>
  12870. <productMenu id="meshIntercom"
  12871. type="20" >
  12872. </productMenu>
  12873. <productMenu id="meshIntercom+"
  12874. type="3"
  12875. url="2" >
  12876. <productMenuType version="1.0.9"
  12877. type="2"
  12878. />
  12879. <productMenuURL version="2.1.1"
  12880. url="0"
  12881. />
  12882. </productMenu>
  12883. <productMenu id="waveIntercom"
  12884. type="1" >
  12885. <productMenuType version="1.0.9"
  12886. type="0"
  12887. />
  12888. </productMenu>
  12889. <productMenu id="phone"
  12890. type="1" >
  12891. </productMenu>
  12892. <productMenu id="music"
  12893. type="1" >
  12894. </productMenu>
  12895. <productMenu id="fmradio"
  12896. type="1" >
  12897. </productMenu>
  12898. <productMenu id="musicSharing"
  12899. type="0" >
  12900. </productMenu>
  12901. <productMenu id="deviceSetting"
  12902. type="1"
  12903. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12904. <productMenuURL version="1.0.9"
  12905. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12906. />
  12907. </productMenu>
  12908. <productMenu id="quickGuide"
  12909. type="1"
  12910. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12911. size="1.12MB" >
  12912. </productMenu>
  12913. <productMenu id="userGuide"
  12914. type="1"
  12915. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12916. size="2.0MB" >
  12917. </productMenu>
  12918. <productMenu id="volume"
  12919. type="12" >
  12920. </productMenu>
  12921. <productMenu id="battery"
  12922. type="1" >
  12923. </productMenu>
  12924. <productID id="6806"
  12925. />
  12926. <productGroupable type="0"
  12927. />
  12928. </product>
  12929. <product id="ERA1X"
  12930. name="ERA 1 X"
  12931. series="UCOM"
  12932. latestVersion="0.2.1"
  12933. latestVersionMesh="0.19"
  12934. latestVersionVoicePrompt="1.2"
  12935. show = "-1" >
  12936. <productMenu id="protocol"
  12937. type="2" >
  12938. </productMenu>
  12939. <productMenu id="ota"
  12940. type="2" >
  12941. <otaLanguages>
  12942. <otaLanguage
  12943. id="0"
  12944. name="English"
  12945. package="0"
  12946. />
  12947. <otaLanguage
  12948. id="0"
  12949. name="French"
  12950. package="1"
  12951. />
  12952. <otaLanguage
  12953. id="0"
  12954. name="Spanish"
  12955. package="2"
  12956. />
  12957. <otaLanguage
  12958. id="0"
  12959. name="Italian"
  12960. package="3"
  12961. />
  12962. <otaLanguage
  12963. id="0"
  12964. name="German"
  12965. package="4"
  12966. />
  12967. <otaLanguage
  12968. id="0"
  12969. name="Dutch"
  12970. package="5"
  12971. />
  12972. <otaLanguage
  12973. id="0"
  12974. name="Russian"
  12975. package="6"
  12976. />
  12977. <otaLanguage
  12978. id="0"
  12979. name="Chinese"
  12980. package="7"
  12981. />
  12982. <otaLanguage
  12983. id="0"
  12984. name="Korean"
  12985. package="8"
  12986. />
  12987. <otaLanguage
  12988. id="0"
  12989. name="Japanese"
  12990. package="9"
  12991. />
  12992. <otaLanguage
  12993. id="0"
  12994. name="Finnish"
  12995. package="10"
  12996. />
  12997. <otaLanguage
  12998. id="0"
  12999. name="Polish"
  13000. package="11"
  13001. />
  13002. <otaLanguage
  13003. id="0"
  13004. name="Czech"
  13005. package="12"
  13006. />
  13007. <otaLanguage
  13008. id="0"
  13009. name="Danish"
  13010. package="13"
  13011. />
  13012. <otaLanguage
  13013. id="0"
  13014. name="Norwegian"
  13015. package="14"
  13016. />
  13017. <otaLanguage
  13018. id="0"
  13019. name="Swedish"
  13020. package="15"
  13021. />
  13022. <otaLanguage
  13023. id="0"
  13024. name="Turkish"
  13025. package="16"
  13026. />
  13027. <otaLanguage
  13028. id="0"
  13029. name="Hungarian"
  13030. package="17"
  13031. />
  13032. <otaLanguage
  13033. id="0"
  13034. name="Portuguese"
  13035. package="18"
  13036. />
  13037. <otaLanguage
  13038. id="0"
  13039. name="Hebrew"
  13040. package="19"
  13041. />
  13042. <otaLanguage
  13043. id="0"
  13044. name="Greek"
  13045. package="20"
  13046. />
  13047. </otaLanguages>
  13048. <otaPackages>
  13049. <package
  13050. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13051. size="5183988"
  13052. />
  13053. <package
  13054. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13055. size="5183988"
  13056. />
  13057. <package
  13058. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13059. size="5183988"
  13060. />
  13061. <package
  13062. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13063. size="5183988"
  13064. />
  13065. <package
  13066. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13067. size="5183988"
  13068. />
  13069. <package
  13070. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13071. size="5183988"
  13072. />
  13073. <package
  13074. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13075. size="5183988"
  13076. />
  13077. <package
  13078. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13079. size="5183988"
  13080. />
  13081. <package
  13082. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13083. size="5183988"
  13084. />
  13085. <package
  13086. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13087. size="5183988"
  13088. />
  13089. <package
  13090. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13091. size="5183988"
  13092. />
  13093. <package
  13094. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13095. size="5183988"
  13096. />
  13097. <package
  13098. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13099. size="5183988"
  13100. />
  13101. <package
  13102. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13103. size="5183988"
  13104. />
  13105. <package
  13106. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13107. size="5183988"
  13108. />
  13109. <package
  13110. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13111. size="5183988"
  13112. />
  13113. <package
  13114. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13115. size="5183988"
  13116. />
  13117. <package
  13118. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13119. size="5183988"
  13120. />
  13121. <package
  13122. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13123. size="5183988"
  13124. />
  13125. <package
  13126. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13127. size="5183988"
  13128. />
  13129. <package
  13130. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13131. size="5183988"
  13132. />
  13133. </otaPackages>
  13134. </productMenu>
  13135. <productMenu id="wa"
  13136. type="0" >
  13137. </productMenu>
  13138. <productMenu id="sip"
  13139. type="1" >
  13140. </productMenu>
  13141. <productMenu id="led"
  13142. type="0" >
  13143. </productMenu>
  13144. <productMenu id="illusion"
  13145. type="1" >
  13146. </productMenu>
  13147. <productMenu id="meshIntercom"
  13148. type="30" >
  13149. </productMenu>
  13150. <productMenu id="meshIntercom+"
  13151. type="3"
  13152. url="2" >
  13153. </productMenu>
  13154. <productMenu id="waveIntercom"
  13155. type="0" >
  13156. </productMenu>
  13157. <productMenu id="bluetoothIntercom"
  13158. type="1" >
  13159. </productMenu>
  13160. <productMenu id="bluetoothIntercomGrouping"
  13161. type="0" >
  13162. </productMenu>
  13163. <productMenu id="fmradio"
  13164. type="1"
  13165. url="1" >
  13166. </productMenu>
  13167. <productMenu id="phone"
  13168. type="1" >
  13169. </productMenu>
  13170. <productMenu id="music"
  13171. type="1" >
  13172. </productMenu>
  13173. <productMenu id="musicSharing"
  13174. type="0" >
  13175. </productMenu>
  13176. <productMenu id="deviceSetting"
  13177. type="1"
  13178. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13179. </productMenu>
  13180. <productMenu id="quickGuide"
  13181. type="0"
  13182. url=""
  13183. size="1.12MB" >
  13184. </productMenu>
  13185. <productMenu id="userGuide"
  13186. type="1"
  13187. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13188. size="2.0MB" >
  13189. </productMenu>
  13190. <productMenu id="videoGuide"
  13191. type="0"
  13192. url=""
  13193. size="3.41MB" >
  13194. </productMenu>
  13195. <productMenu id="volume"
  13196. type="16" >
  13197. </productMenu>
  13198. <productMenu id="soundMode"
  13199. type="1" >
  13200. </productMenu>
  13201. <productMenu id="battery"
  13202. type="1" >
  13203. </productMenu>
  13204. <productID id="6A83"
  13205. />
  13206. <productGroupable type="0"
  13207. />
  13208. </product>
  13209. <product id="MeshStation"
  13210. name="Mesh Station"
  13211. series="50"
  13212. latestVersion="0.9"
  13213. show = "-1" >
  13214. <productMenu id="protocol"
  13215. type="2" >
  13216. </productMenu>
  13217. <productMenu id="meshIntercom"
  13218. type="20"
  13219. url="99" >
  13220. </productMenu>
  13221. <productID id="3161"
  13222. />
  13223. <productGroupable type="0"
  13224. />
  13225. </product>
  13226. </products>
  13227. </sna>