snm.xml 478 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260108" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="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="R"
  109. name="R Series"
  110. show="1"
  111. />
  112. <series id="C"
  113. name="C Series"
  114. show="1"
  115. />
  116. <series id="Other"
  117. name="Other"
  118. show="1"
  119. />
  120. <!--
  121. <series id="smh"
  122. name="SMH"
  123. />
  124. <series id="cavalry"
  125. name="CAVALRY"
  126. show="0"
  127. />
  128. -->
  129. </serieses>
  130. <products>
  131. <product id="60SPRO"
  132. name="60S PRO"
  133. series="60"
  134. latestVersion="0.1"
  135. latestVersionMesh="0.19"
  136. latestVersionVoicePrompt="1.2"
  137. show = "-1" >
  138. <productMenu id="protocol"
  139. type="2" >
  140. </productMenu>
  141. <productMenu id="ota"
  142. type="0" >
  143. <otaLanguages>
  144. <otaLanguage
  145. id="0"
  146. name="English"
  147. package="0"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="French"
  152. package="1"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="Spanish"
  157. package="2"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Italian"
  162. package="3"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="German"
  167. package="4"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Dutch"
  172. package="5"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Russian"
  177. package="6"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Chinese"
  182. package="7"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Korean"
  187. package="8"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Japanese"
  192. package="9"
  193. />
  194. <otaLanguage
  195. id="0"
  196. name="Finnish"
  197. package="10"
  198. />
  199. <otaLanguage
  200. id="0"
  201. name="Polish"
  202. package="11"
  203. />
  204. </otaLanguages>
  205. <otaPackages>
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  252. size="5183988"
  253. />
  254. </otaPackages>
  255. </productMenu>
  256. <productMenu id="sip"
  257. type="1" >
  258. </productMenu>
  259. <productMenu id="illusion"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="meshIntercom"
  263. type="30" >
  264. </productMenu>
  265. <productMenu id="meshIntercom+"
  266. type="3"
  267. url="2" >
  268. </productMenu>
  269. <productMenu id="waveIntercom"
  270. type="1" >
  271. </productMenu>
  272. <productMenu id="bluetoothIntercom"
  273. type="1"
  274. url="2" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercomGrouping"
  277. type="0" >
  278. </productMenu>
  279. <productMenu id="fmradio"
  280. type="1"
  281. url="1" >
  282. </productMenu>
  283. <productMenu id="phone"
  284. type="1" >
  285. </productMenu>
  286. <productMenu id="music"
  287. type="1" >
  288. </productMenu>
  289. <productMenu id="musicSharing"
  290. type="0" >
  291. </productMenu>
  292. <productMenu id="deviceSetting"
  293. type="1"
  294. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  295. </productMenu>
  296. <productMenu id="quickGuide"
  297. type="0"
  298. url=""
  299. size="1.12MB" >
  300. </productMenu>
  301. <productMenu id="userGuide"
  302. type="1"
  303. url=""
  304. size="2.0MB" >
  305. </productMenu>
  306. <productMenu id="videoGuide"
  307. type="0"
  308. url=""
  309. size="3.41MB" >
  310. </productMenu>
  311. <productMenu id="connectGuide"
  312. type="0"
  313. url=""
  314. size="1.12MB" >
  315. </productMenu>
  316. <productMenu id="volume"
  317. type="16" >
  318. </productMenu>
  319. <productMenu id="soundMode"
  320. type="1" >
  321. </productMenu>
  322. <productMenu id="battery"
  323. type="1" >
  324. </productMenu>
  325. <productID id="6A1A"
  326. />
  327. <productGroupable type="0"
  328. />
  329. </product>
  330. <product id="60SEVO"
  331. name="60S EVO"
  332. series="60"
  333. latestVersion="1.0.2"
  334. latestVersionMesh="0.19"
  335. latestVersionVoicePrompt="1.7"
  336. show = "-1" >
  337. <productMenu id="protocol"
  338. type="2" >
  339. </productMenu>
  340. <productMenu id="warranty"
  341. type="1" >
  342. </productMenu>
  343. <productMenu id="serialNumber"
  344. type="1" >
  345. </productMenu>
  346. <productMenu id="ota"
  347. type="2" >
  348. <otaLanguages>
  349. <otaLanguage
  350. id="0"
  351. name="English"
  352. package="0"
  353. />
  354. <otaLanguage
  355. id="0"
  356. name="French"
  357. package="1"
  358. />
  359. <otaLanguage
  360. id="0"
  361. name="Spanish"
  362. package="2"
  363. />
  364. <otaLanguage
  365. id="0"
  366. name="Italian"
  367. package="3"
  368. />
  369. <otaLanguage
  370. id="0"
  371. name="German"
  372. package="4"
  373. />
  374. <otaLanguage
  375. id="0"
  376. name="Dutch"
  377. package="5"
  378. />
  379. <otaLanguage
  380. id="0"
  381. name="Russian"
  382. package="6"
  383. />
  384. <otaLanguage
  385. id="0"
  386. name="Chinese"
  387. package="7"
  388. />
  389. <otaLanguage
  390. id="0"
  391. name="Korean"
  392. package="8"
  393. />
  394. <otaLanguage
  395. id="0"
  396. name="Japanese"
  397. package="9"
  398. />
  399. <otaLanguage
  400. id="0"
  401. name="Finnish"
  402. package="10"
  403. />
  404. <otaLanguage
  405. id="0"
  406. name="Polish"
  407. package="11"
  408. />
  409. </otaLanguages>
  410. <otaPackages>
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  457. size="5183988"
  458. />
  459. </otaPackages>
  460. </productMenu>
  461. <productMenu id="sip"
  462. type="1" >
  463. </productMenu>
  464. <productMenu id="illusion"
  465. type="1" >
  466. </productMenu>
  467. <productMenu id="meshIntercom"
  468. type="30" >
  469. </productMenu>
  470. <productMenu id="meshIntercom+"
  471. type="3"
  472. url="2" >
  473. </productMenu>
  474. <productMenu id="waveIntercom"
  475. type="1" >
  476. </productMenu>
  477. <productMenu id="bluetoothIntercom"
  478. type="1"
  479. url="2" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercomGrouping"
  482. type="0" >
  483. </productMenu>
  484. <productMenu id="fmradio"
  485. type="1"
  486. url="1" >
  487. </productMenu>
  488. <productMenu id="phone"
  489. type="1" >
  490. </productMenu>
  491. <productMenu id="music"
  492. type="1" >
  493. </productMenu>
  494. <productMenu id="musicSharing"
  495. type="0" >
  496. </productMenu>
  497. <productMenu id="deviceSetting"
  498. type="1"
  499. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  500. </productMenu>
  501. <productMenu id="quickGuide"
  502. type="0"
  503. url=""
  504. size="1.12MB" >
  505. </productMenu>
  506. <productMenu id="userGuide"
  507. type="1"
  508. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  509. size="2.0MB" >
  510. </productMenu>
  511. <productMenu id="videoGuide"
  512. type="0"
  513. url=""
  514. size="3.41MB" >
  515. </productMenu>
  516. <productMenu id="connectGuide"
  517. type="0"
  518. url=""
  519. size="1.12MB" >
  520. </productMenu>
  521. <productMenu id="volume"
  522. type="16" >
  523. </productMenu>
  524. <productMenu id="volume+"
  525. type="2"
  526. url="0x6004" >
  527. </productMenu>
  528. <productMenu id="soundMode"
  529. type="1" >
  530. </productMenu>
  531. <productMenu id="appearance"
  532. type="1"
  533. url="1|white,silver,black,glossy_black" >
  534. </productMenu>
  535. <productMenu id="battery"
  536. type="1" >
  537. </productMenu>
  538. <productID id="6A15"
  539. />
  540. <productGroupable type="0"
  541. />
  542. </product>
  543. <product id="60S"
  544. name="60S"
  545. series="60"
  546. latestVersion="1.2.9"
  547. latestVersionMesh="1.2"
  548. latestVersionVoicePrompt="1.7"
  549. show = "1" >
  550. <productMenu id="protocol"
  551. type="2" >
  552. </productMenu>
  553. <productMenu id="ota"
  554. type="2" >
  555. <otaLanguages>
  556. <otaLanguage
  557. id="0"
  558. name="English"
  559. package="0"
  560. />
  561. <otaLanguage
  562. id="0"
  563. name="French"
  564. package="1"
  565. />
  566. <otaLanguage
  567. id="0"
  568. name="Spanish"
  569. package="2"
  570. />
  571. <otaLanguage
  572. id="0"
  573. name="Italian"
  574. package="3"
  575. />
  576. <otaLanguage
  577. id="0"
  578. name="German"
  579. package="4"
  580. />
  581. <otaLanguage
  582. id="0"
  583. name="Dutch"
  584. package="5"
  585. />
  586. <otaLanguage
  587. id="0"
  588. name="Russian"
  589. package="6"
  590. />
  591. <otaLanguage
  592. id="0"
  593. name="Chinese"
  594. package="7"
  595. />
  596. <otaLanguage
  597. id="0"
  598. name="Korean"
  599. package="8"
  600. />
  601. <otaLanguage
  602. id="0"
  603. name="Japanese"
  604. package="9"
  605. />
  606. <otaLanguage
  607. id="0"
  608. name="Finnish"
  609. package="10"
  610. />
  611. <otaLanguage
  612. id="0"
  613. name="Polish"
  614. package="11"
  615. />
  616. </otaLanguages>
  617. <otaPackages>
  618. <package
  619. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  660. size="5183988"
  661. />
  662. <package
  663. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  664. size="5183988"
  665. />
  666. </otaPackages>
  667. </productMenu>
  668. <productMenu id="sip"
  669. type="1" >
  670. </productMenu>
  671. <productMenu id="illusion"
  672. type="1" >
  673. </productMenu>
  674. <productMenu id="meshIntercom"
  675. type="30" >
  676. </productMenu>
  677. <productMenu id="meshIntercom+"
  678. type="3"
  679. url="2" >
  680. </productMenu>
  681. <productMenu id="waveIntercom"
  682. type="1" >
  683. </productMenu>
  684. <productMenu id="bluetoothIntercom"
  685. type="1"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="bluetoothIntercomGrouping"
  689. type="0" >
  690. </productMenu>
  691. <productMenu id="fmradio"
  692. type="1"
  693. url="1" >
  694. </productMenu>
  695. <productMenu id="phone"
  696. type="1" >
  697. </productMenu>
  698. <productMenu id="music"
  699. type="1" >
  700. </productMenu>
  701. <productMenu id="musicSharing"
  702. type="0" >
  703. </productMenu>
  704. <productMenu id="deviceSetting"
  705. type="1"
  706. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  707. <productMenuURL version="1.2.6"
  708. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  709. />
  710. <productMenuURL version="1.2.3"
  711. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  712. />
  713. </productMenu>
  714. <productMenu id="quickGuide"
  715. type="0"
  716. url=""
  717. size="1.12MB" >
  718. </productMenu>
  719. <productMenu id="userGuide"
  720. type="1"
  721. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  722. size="2.0MB" >
  723. </productMenu>
  724. <productMenu id="videoGuide"
  725. type="0"
  726. url=""
  727. size="3.41MB" >
  728. </productMenu>
  729. <productMenu id="connectGuide"
  730. type="1"
  731. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  732. size="1.12MB" >
  733. </productMenu>
  734. <productMenu id="volume"
  735. type="16" >
  736. </productMenu>
  737. <productMenu id="volume+"
  738. type="2"
  739. url="0x6004" >
  740. <productMenuURL version="1.2.3"
  741. url="0x6004"
  742. />
  743. </productMenu>
  744. <productMenu id="soundMode"
  745. type="0" >
  746. </productMenu>
  747. <productMenu id="appearance"
  748. type="1"
  749. url="2|white,silver,chrome,black" >
  750. </productMenu>
  751. <productMenu id="battery"
  752. type="1" >
  753. </productMenu>
  754. <productID id="6A0D"
  755. />
  756. <productGroupable type="0"
  757. />
  758. </product>
  759. <product id="60S"
  760. name="60S"
  761. series="60"
  762. latestVersion="1.2.9"
  763. latestVersionMesh="1.2"
  764. latestVersionVoicePrompt="1.7"
  765. show = "-1" >
  766. <productMenu id="protocol"
  767. type="2" >
  768. </productMenu>
  769. <productMenu id="ota"
  770. type="2" >
  771. <otaLanguages>
  772. <otaLanguage
  773. id="0"
  774. name="English"
  775. package="0"
  776. />
  777. <otaLanguage
  778. id="0"
  779. name="French"
  780. package="1"
  781. />
  782. <otaLanguage
  783. id="0"
  784. name="Spanish"
  785. package="2"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="Italian"
  790. package="3"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="German"
  795. package="4"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Dutch"
  800. package="5"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="Russian"
  805. package="6"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Chinese"
  810. package="7"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Korean"
  815. package="8"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Japanese"
  820. package="9"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Finnish"
  825. package="10"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Polish"
  830. package="11"
  831. />
  832. </otaLanguages>
  833. <otaPackages>
  834. <package
  835. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  876. size="5183988"
  877. />
  878. <package
  879. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  880. size="5183988"
  881. />
  882. </otaPackages>
  883. </productMenu>
  884. <productMenu id="wa"
  885. type="0" >
  886. </productMenu>
  887. <productMenu id="sip"
  888. type="1" >
  889. </productMenu>
  890. <productMenu id="led"
  891. type="0" >
  892. </productMenu>
  893. <productMenu id="illusion"
  894. type="1" >
  895. </productMenu>
  896. <productMenu id="meshIntercom"
  897. type="30" >
  898. </productMenu>
  899. <productMenu id="meshIntercom+"
  900. type="3"
  901. url="2" >
  902. <productMenuURL version="1.0.2"
  903. url="10"
  904. />
  905. </productMenu>
  906. <productMenu id="waveIntercom"
  907. type="1" >
  908. <productMenuType version="1.0.9"
  909. type="0"
  910. />
  911. </productMenu>
  912. <productMenu id="bluetoothIntercom"
  913. type="1"
  914. url="2" >
  915. </productMenu>
  916. <productMenu id="bluetoothIntercomGrouping"
  917. type="0" >
  918. </productMenu>
  919. <productMenu id="fmradio"
  920. type="1"
  921. url="1" >
  922. </productMenu>
  923. <productMenu id="phone"
  924. type="1" >
  925. </productMenu>
  926. <productMenu id="music"
  927. type="1" >
  928. </productMenu>
  929. <productMenu id="musicSharing"
  930. type="0" >
  931. </productMenu>
  932. <productMenu id="deviceSetting"
  933. type="1"
  934. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  935. <productMenuURL version="1.2.6"
  936. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  937. />
  938. <productMenuURL version="1.2.3"
  939. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  940. />
  941. <productMenuURL version="1.0.2"
  942. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  943. />
  944. <productMenuURL version="1.0"
  945. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  946. />
  947. <productMenuURL version="0.9.11"
  948. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  949. />
  950. </productMenu>
  951. <productMenu id="quickGuide"
  952. type="0"
  953. url=""
  954. size="1.12MB" >
  955. </productMenu>
  956. <productMenu id="userGuide"
  957. type="1"
  958. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  959. size="2.0MB" >
  960. </productMenu>
  961. <productMenu id="videoGuide"
  962. type="0"
  963. url=""
  964. size="3.41MB" >
  965. </productMenu>
  966. <productMenu id="connectGuide"
  967. type="1"
  968. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  969. size="1.12MB" >
  970. </productMenu>
  971. <productMenu id="volume"
  972. type="16" >
  973. <productMenuType version="0.9.11"
  974. type="13"
  975. />
  976. </productMenu>
  977. <productMenu id="volume+"
  978. type="2"
  979. url="0x6004" >
  980. <productMenuURL version="1.2.3"
  981. url="0x6004"
  982. />
  983. </productMenu>
  984. <productMenu id="soundMode"
  985. type="0" >
  986. <productMenuType version="0.9.11"
  987. type="0"
  988. />
  989. </productMenu>
  990. <productMenu id="appearance"
  991. type="1"
  992. url="2|white,silver,chrome,black" >
  993. </productMenu>
  994. <productMenu id="battery"
  995. type="1" >
  996. </productMenu>
  997. <productID id="6A02"
  998. />
  999. <productGroupable type="0"
  1000. />
  1001. </product>
  1002. <product id="60X"
  1003. name="60X"
  1004. series="60"
  1005. latestVersion="1.0"
  1006. latestVersionMesh="0.19"
  1007. latestVersionVoicePrompt="1.7"
  1008. show = "-1" >
  1009. <productMenu id="protocol"
  1010. type="2" >
  1011. </productMenu>
  1012. <productMenu id="warranty"
  1013. type="1" >
  1014. </productMenu>
  1015. <productMenu id="serialNumber"
  1016. type="1" >
  1017. </productMenu>
  1018. <productMenu id="ota"
  1019. type="2" >
  1020. <otaLanguages>
  1021. <otaLanguage
  1022. id="0"
  1023. name="English"
  1024. package="0"
  1025. />
  1026. <otaLanguage
  1027. id="0"
  1028. name="French"
  1029. package="1"
  1030. />
  1031. <otaLanguage
  1032. id="0"
  1033. name="Spanish"
  1034. package="2"
  1035. />
  1036. <otaLanguage
  1037. id="0"
  1038. name="Italian"
  1039. package="3"
  1040. />
  1041. <otaLanguage
  1042. id="0"
  1043. name="German"
  1044. package="4"
  1045. />
  1046. <otaLanguage
  1047. id="0"
  1048. name="Dutch"
  1049. package="5"
  1050. />
  1051. <otaLanguage
  1052. id="0"
  1053. name="Russian"
  1054. package="6"
  1055. />
  1056. <otaLanguage
  1057. id="0"
  1058. name="Chinese"
  1059. package="7"
  1060. />
  1061. <otaLanguage
  1062. id="0"
  1063. name="Korean"
  1064. package="8"
  1065. />
  1066. <otaLanguage
  1067. id="0"
  1068. name="Japanese"
  1069. package="9"
  1070. />
  1071. <otaLanguage
  1072. id="0"
  1073. name="Finnish"
  1074. package="10"
  1075. />
  1076. <otaLanguage
  1077. id="0"
  1078. name="Polish"
  1079. package="11"
  1080. />
  1081. </otaLanguages>
  1082. <otaPackages>
  1083. <package
  1084. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1085. size="5183988"
  1086. />
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1125. size="5183988"
  1126. />
  1127. <package
  1128. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1129. size="5183988"
  1130. />
  1131. </otaPackages>
  1132. </productMenu>
  1133. <productMenu id="wa"
  1134. type="0" >
  1135. </productMenu>
  1136. <productMenu id="sip"
  1137. type="1" >
  1138. </productMenu>
  1139. <productMenu id="led"
  1140. type="1" >
  1141. </productMenu>
  1142. <productMenu id="illusion"
  1143. type="1" >
  1144. </productMenu>
  1145. <productMenu id="meshIntercom"
  1146. type="30" >
  1147. </productMenu>
  1148. <productMenu id="meshIntercom+"
  1149. type="3"
  1150. url="2" >
  1151. </productMenu>
  1152. <productMenu id="waveIntercom"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="bluetoothIntercom"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="fmradio"
  1159. type="1"
  1160. url="1" >
  1161. </productMenu>
  1162. <productMenu id="mic"
  1163. type="0" >
  1164. </productMenu>
  1165. <productMenu id="phone"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="music"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="musicSharing"
  1172. type="0" >
  1173. </productMenu>
  1174. <productMenu id="deviceSetting"
  1175. type="1"
  1176. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1177. </productMenu>
  1178. <productMenu id="quickGuide"
  1179. type="0"
  1180. url=""
  1181. size="1.12MB" >
  1182. </productMenu>
  1183. <productMenu id="userGuide"
  1184. type="0"
  1185. url=""
  1186. size="2.0MB" >
  1187. </productMenu>
  1188. <productMenu id="videoGuide"
  1189. type="0"
  1190. url=""
  1191. size="3.41MB" >
  1192. </productMenu>
  1193. <productMenu id="keySettings"
  1194. type="1"
  1195. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1196. </productMenu>
  1197. <productMenu id="volume"
  1198. type="13" >
  1199. </productMenu>
  1200. <productMenu id="volume+"
  1201. type="2"
  1202. url="0x6004" >
  1203. </productMenu>
  1204. <productMenu id="appearance"
  1205. type="1"
  1206. url="1|white,silver,black,glossy_black" >
  1207. </productMenu>
  1208. <productMenu id="battery"
  1209. type="1" >
  1210. </productMenu>
  1211. <productID id="6A03"
  1212. />
  1213. <productGroupable type="0"
  1214. />
  1215. </product>
  1216. <product id="R35"
  1217. name="R35"
  1218. series="R"
  1219. latestVersion="1.1.1"
  1220. latestVersionVoicePrompt="1.5"
  1221. show = "1" >
  1222. <productMenu id="protocol"
  1223. type="2" >
  1224. </productMenu>
  1225. <productMenu id="ota"
  1226. type="2" >
  1227. <otaLanguages>
  1228. <otaLanguage
  1229. id="0"
  1230. name="English"
  1231. package="0"
  1232. />
  1233. <otaLanguage
  1234. id="0"
  1235. name="Chinese"
  1236. package="1"
  1237. />
  1238. <otaLanguage
  1239. id="0"
  1240. name="Chinese Singapore"
  1241. package="2"
  1242. />
  1243. <otaLanguage
  1244. id="0"
  1245. name="Filipino"
  1246. package="3"
  1247. />
  1248. <otaLanguage
  1249. id="0"
  1250. name="Hebrew"
  1251. package="4"
  1252. />
  1253. <otaLanguage
  1254. id="0"
  1255. name="Hindi"
  1256. package="5"
  1257. />
  1258. <otaLanguage
  1259. id="0"
  1260. name="Indonesian"
  1261. package="6"
  1262. />
  1263. <otaLanguage
  1264. id="0"
  1265. name="Japanese"
  1266. package="7"
  1267. />
  1268. <otaLanguage
  1269. id="0"
  1270. name="Korean"
  1271. package="8"
  1272. />
  1273. <otaLanguage
  1274. id="0"
  1275. name="Malay"
  1276. package="9"
  1277. />
  1278. <otaLanguage
  1279. id="0"
  1280. name="Modern Standard Arabic"
  1281. package="10"
  1282. />
  1283. <otaLanguage
  1284. id="0"
  1285. name="Taiwanese"
  1286. package="11"
  1287. />
  1288. <otaLanguage
  1289. id="0"
  1290. name="Tamil"
  1291. package="12"
  1292. />
  1293. <otaLanguage
  1294. id="0"
  1295. name="Thai"
  1296. package="13"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="东北话"
  1301. package="14"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="广东话"
  1306. package="15"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="江浙沪"
  1311. package="16"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="四川话"
  1316. package="17"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="陕西话"
  1321. package="18"
  1322. />
  1323. </otaLanguages>
  1324. <otaPackages>
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1399. size="5183988"
  1400. />
  1401. </otaPackages>
  1402. </productMenu>
  1403. <productMenu id="sip"
  1404. type="1" >
  1405. </productMenu>
  1406. <productMenu id="illusion"
  1407. type="1" >
  1408. </productMenu>
  1409. <productMenu id="meshIntercom"
  1410. type="30" >
  1411. </productMenu>
  1412. <productMenu id="meshIntercom+"
  1413. type="3"
  1414. url="2" >
  1415. </productMenu>
  1416. <productMenu id="waveIntercom"
  1417. type="1" >
  1418. </productMenu>
  1419. <productMenu id="phone"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="music"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="musicSharing"
  1426. type="0" >
  1427. </productMenu>
  1428. <productMenu id="deviceSetting"
  1429. type="1"
  1430. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1431. <productMenuURL version="1.0.3"
  1432. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1433. />
  1434. </productMenu>
  1435. <productMenu id="quickGuide"
  1436. type="0"
  1437. url=""
  1438. size="1.12MB" >
  1439. </productMenu>
  1440. <productMenu id="userGuide"
  1441. type="1"
  1442. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1443. size="2.0MB" >
  1444. </productMenu>
  1445. <productMenu id="videoGuide"
  1446. type="0"
  1447. url=""
  1448. size="3.41MB" >
  1449. </productMenu>
  1450. <productMenu id="connectGuide"
  1451. type="0"
  1452. url=""
  1453. size="1.12MB" >
  1454. </productMenu>
  1455. <productMenu id="volume"
  1456. type="16" >
  1457. </productMenu>
  1458. <productMenu id="volume+"
  1459. type="2"
  1460. url="0x6004" >
  1461. </productMenu>
  1462. <productMenu id="soundMode"
  1463. type="0" >
  1464. </productMenu>
  1465. <productMenu id="appearance"
  1466. type="1"
  1467. url="1|white,silver,chrome,black" >
  1468. </productMenu>
  1469. <productMenu id="battery"
  1470. type="1" >
  1471. </productMenu>
  1472. <productID id="6A06"
  1473. />
  1474. <productGroupable type="0"
  1475. />
  1476. </product>
  1477. <product id="COM60X"
  1478. name="BMW MOTORRAD COM 60X"
  1479. series="60"
  1480. latestVersion="1.0"
  1481. latestVersionMesh="0.19"
  1482. latestVersionVoicePrompt="1.7"
  1483. show = "-1" >
  1484. <productMenu id="protocol"
  1485. type="2" >
  1486. </productMenu>
  1487. <productMenu id="ota"
  1488. type="0" >
  1489. <otaLanguages>
  1490. <otaLanguage
  1491. id="0"
  1492. name="English"
  1493. package="0"
  1494. />
  1495. <otaLanguage
  1496. id="0"
  1497. name="French"
  1498. package="1"
  1499. />
  1500. <otaLanguage
  1501. id="0"
  1502. name="Spanish"
  1503. package="2"
  1504. />
  1505. <otaLanguage
  1506. id="0"
  1507. name="Italian"
  1508. package="3"
  1509. />
  1510. <otaLanguage
  1511. id="0"
  1512. name="German"
  1513. package="4"
  1514. />
  1515. <otaLanguage
  1516. id="0"
  1517. name="Dutch"
  1518. package="5"
  1519. />
  1520. <otaLanguage
  1521. id="0"
  1522. name="Russian"
  1523. package="6"
  1524. />
  1525. <otaLanguage
  1526. id="0"
  1527. name="Chinese"
  1528. package="7"
  1529. />
  1530. <otaLanguage
  1531. id="0"
  1532. name="Korean"
  1533. package="8"
  1534. />
  1535. <otaLanguage
  1536. id="0"
  1537. name="Japanese"
  1538. package="9"
  1539. />
  1540. <otaLanguage
  1541. id="0"
  1542. name="Finnish"
  1543. package="10"
  1544. />
  1545. <otaLanguage
  1546. id="0"
  1547. name="Polish"
  1548. package="11"
  1549. />
  1550. </otaLanguages>
  1551. <otaPackages>
  1552. <package
  1553. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1554. size="5183988"
  1555. />
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1598. size="5183988"
  1599. />
  1600. </otaPackages>
  1601. </productMenu>
  1602. <productMenu id="wa"
  1603. type="0" >
  1604. </productMenu>
  1605. <productMenu id="sip"
  1606. type="1" >
  1607. </productMenu>
  1608. <productMenu id="led"
  1609. type="1" >
  1610. </productMenu>
  1611. <productMenu id="illusion"
  1612. type="1" >
  1613. </productMenu>
  1614. <productMenu id="meshIntercom"
  1615. type="30" >
  1616. </productMenu>
  1617. <productMenu id="meshIntercom+"
  1618. type="3"
  1619. url="2" >
  1620. </productMenu>
  1621. <productMenu id="bluetoothIntercom"
  1622. type="1" >
  1623. </productMenu>
  1624. <productMenu id="fmradio"
  1625. type="1"
  1626. url="1" >
  1627. </productMenu>
  1628. <productMenu id="mic"
  1629. type="0" >
  1630. </productMenu>
  1631. <productMenu id="phone"
  1632. type="1" >
  1633. </productMenu>
  1634. <productMenu id="music"
  1635. type="1" >
  1636. </productMenu>
  1637. <productMenu id="musicSharing"
  1638. type="0" >
  1639. </productMenu>
  1640. <productMenu id="deviceSetting"
  1641. type="1"
  1642. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1643. </productMenu>
  1644. <productMenu id="quickGuide"
  1645. type="0"
  1646. url=""
  1647. size="1.12MB" >
  1648. </productMenu>
  1649. <productMenu id="userGuide"
  1650. type="1"
  1651. url=""
  1652. size="2.0MB" >
  1653. </productMenu>
  1654. <productMenu id="videoGuide"
  1655. type="0"
  1656. url=""
  1657. size="3.41MB" >
  1658. </productMenu>
  1659. <productMenu id="keySettings"
  1660. type="1"
  1661. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1662. </productMenu>
  1663. <productMenu id="volume"
  1664. type="13" >
  1665. </productMenu>
  1666. <productMenu id="volume+"
  1667. type="2"
  1668. url="0x6004" >
  1669. </productMenu>
  1670. <productMenu id="battery"
  1671. type="1" >
  1672. </productMenu>
  1673. <productID id="6A1B"
  1674. />
  1675. <productGroupable type="0"
  1676. />
  1677. </product>
  1678. <product id="COMP1"
  1679. name="BMW COM P1"
  1680. series="60"
  1681. latestVersion="1.2"
  1682. latestVersionMesh="0.19"
  1683. latestVersionVoicePrompt="1.0"
  1684. show = "-1" >
  1685. <productMenu id="protocol"
  1686. type="2" >
  1687. </productMenu>
  1688. <productMenu id="ota"
  1689. type="2" >
  1690. <otaLanguages>
  1691. <otaLanguage
  1692. id="0"
  1693. name="English"
  1694. package="0"
  1695. />
  1696. <otaLanguage
  1697. id="0"
  1698. name="French"
  1699. package="1"
  1700. />
  1701. <otaLanguage
  1702. id="0"
  1703. name="Spanish"
  1704. package="2"
  1705. />
  1706. <otaLanguage
  1707. id="0"
  1708. name="Italian"
  1709. package="3"
  1710. />
  1711. <otaLanguage
  1712. id="0"
  1713. name="German"
  1714. package="4"
  1715. />
  1716. <otaLanguage
  1717. id="0"
  1718. name="Dutch"
  1719. package="5"
  1720. />
  1721. <otaLanguage
  1722. id="0"
  1723. name="Russian"
  1724. package="6"
  1725. />
  1726. <otaLanguage
  1727. id="0"
  1728. name="Chinese"
  1729. package="7"
  1730. />
  1731. <otaLanguage
  1732. id="0"
  1733. name="Korean"
  1734. package="8"
  1735. />
  1736. <otaLanguage
  1737. id="0"
  1738. name="Japanese"
  1739. package="9"
  1740. />
  1741. <otaLanguage
  1742. id="0"
  1743. name="Finnish"
  1744. package="10"
  1745. />
  1746. </otaLanguages>
  1747. <otaPackages>
  1748. <package
  1749. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1750. size="5183988"
  1751. />
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1790. size="5183988"
  1791. />
  1792. </otaPackages>
  1793. </productMenu>
  1794. <productMenu id="wa"
  1795. type="0" >
  1796. </productMenu>
  1797. <productMenu id="sip"
  1798. type="1" >
  1799. </productMenu>
  1800. <productMenu id="led"
  1801. type="0" >
  1802. </productMenu>
  1803. <productMenu id="illusion"
  1804. type="0" >
  1805. </productMenu>
  1806. <productMenu id="meshIntercom"
  1807. type="30" >
  1808. </productMenu>
  1809. <productMenu id="bluetoothIntercom"
  1810. type="1" >
  1811. </productMenu>
  1812. <productMenu id="bluetoothIntercomGrouping"
  1813. type="0" >
  1814. </productMenu>
  1815. <productMenu id="fmradio"
  1816. type="0" >
  1817. </productMenu>
  1818. <productMenu id="phone"
  1819. type="1" >
  1820. </productMenu>
  1821. <productMenu id="music"
  1822. type="1" >
  1823. </productMenu>
  1824. <productMenu id="musicSharing"
  1825. type="0" >
  1826. </productMenu>
  1827. <productMenu id="deviceSetting"
  1828. type="1"
  1829. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1830. </productMenu>
  1831. <productMenu id="quickGuide"
  1832. type="0"
  1833. url=""
  1834. size="1.12MB" >
  1835. </productMenu>
  1836. <productMenu id="userGuide"
  1837. type="0"
  1838. url=""
  1839. size="2.0MB" >
  1840. </productMenu>
  1841. <productMenu id="videoGuide"
  1842. type="0"
  1843. url=""
  1844. size="3.41MB" >
  1845. </productMenu>
  1846. <productMenu id="volume"
  1847. type="16" >
  1848. </productMenu>
  1849. <productMenu id="battery"
  1850. type="1" >
  1851. </productMenu>
  1852. <productID id="6A80"
  1853. />
  1854. <productGroupable type="0"
  1855. />
  1856. </product>
  1857. <product id="50S"
  1858. name="50S"
  1859. series="50"
  1860. latestVersion="2.7.2"
  1861. show = "1" >
  1862. <productMenu id="protocol"
  1863. type="2" >
  1864. </productMenu>
  1865. <productMenu id="alexa"
  1866. type="0" >
  1867. </productMenu>
  1868. <productMenu id="ota"
  1869. type="0"
  1870. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1871. size="1150234" >
  1872. </productMenu>
  1873. <productMenu id="wa"
  1874. type="1" >
  1875. </productMenu>
  1876. <productMenu id="sip"
  1877. type="1" >
  1878. </productMenu>
  1879. <productMenu id="meshIntercom"
  1880. type="30" >
  1881. <productMenuType version="2.1.1"
  1882. type="20"
  1883. />
  1884. </productMenu>
  1885. <productMenu id="meshIntercom+"
  1886. type="3"
  1887. url="2" >
  1888. <productMenuType version="2.5.9"
  1889. type="2"
  1890. />
  1891. <productMenuURL version="2.1.1"
  1892. url="0"
  1893. />
  1894. </productMenu>
  1895. <productMenu id="waveIntercom"
  1896. type="1" >
  1897. <productMenuType version="2.6"
  1898. type="0"
  1899. />
  1900. </productMenu>
  1901. <productMenu id="bluetoothIntercom"
  1902. type="1" >
  1903. </productMenu>
  1904. <productMenu id="phone"
  1905. type="1" >
  1906. </productMenu>
  1907. <productMenu id="music"
  1908. type="1" >
  1909. </productMenu>
  1910. <productMenu id="fmradio"
  1911. type="1" >
  1912. </productMenu>
  1913. <productMenu id="deviceSetting"
  1914. type="1"
  1915. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1916. <productMenuURL version="2.5.9"
  1917. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1918. />
  1919. <productMenuURL version="2.1.1"
  1920. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1921. />
  1922. <productMenuURL version="2.0.3"
  1923. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1924. />
  1925. </productMenu>
  1926. <productMenu id="quickGuide"
  1927. type="0"
  1928. url=""
  1929. size="934KB" >
  1930. </productMenu>
  1931. <productMenu id="userGuide"
  1932. type="1"
  1933. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1934. size="1.14MB" >
  1935. </productMenu>
  1936. <productMenu id="videoGuide"
  1937. type="1"
  1938. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1939. size="3.41MB" >
  1940. </productMenu>
  1941. <productMenu id="connectGuide"
  1942. type="1"
  1943. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1944. size="1.12MB" >
  1945. </productMenu>
  1946. <productMenu id="volume"
  1947. type="11" >
  1948. </productMenu>
  1949. <productMenu id="battery"
  1950. type="1" >
  1951. </productMenu>
  1952. <productID id="3210"
  1953. />
  1954. <productGroupable type="0"
  1955. />
  1956. </product>
  1957. <product id="50S"
  1958. name="50S"
  1959. series="50"
  1960. latestVersion="1.5.1"
  1961. show = "-1" >
  1962. <productMenu id="protocol"
  1963. type="2" >
  1964. </productMenu>
  1965. <productMenu id="alexa"
  1966. type="0" >
  1967. </productMenu>
  1968. <productMenu id="wa"
  1969. type="1" >
  1970. </productMenu>
  1971. <productMenu id="sip"
  1972. type="1" >
  1973. </productMenu>
  1974. <productMenu id="meshIntercom"
  1975. type="30" >
  1976. <productMenuType version="1.2.2"
  1977. type="20"
  1978. />
  1979. </productMenu>
  1980. <productMenu id="meshIntercom+"
  1981. type="3"
  1982. url="2" >
  1983. <productMenuType version="1.4.9"
  1984. type="2"
  1985. />
  1986. <productMenuURL version="1.2.2"
  1987. url="0"
  1988. />
  1989. </productMenu>
  1990. <productMenu id="waveIntercom"
  1991. type="1" >
  1992. <productMenuType version="1.3.9"
  1993. type="0"
  1994. />
  1995. </productMenu>
  1996. <productMenu id="bluetoothIntercom"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="phone"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="music"
  2003. type="1" >
  2004. </productMenu>
  2005. <productMenu id="fmradio"
  2006. type="1" >
  2007. </productMenu>
  2008. <productMenu id="deviceSetting"
  2009. type="1"
  2010. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2011. <productMenuURL version="1.4.9"
  2012. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2013. />
  2014. <productMenuURL version="1.3.9"
  2015. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2016. />
  2017. <productMenuURL version="1.2.2"
  2018. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2019. />
  2020. <productMenuURL version="1.1.1"
  2021. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2022. />
  2023. </productMenu>
  2024. <productMenu id="quickGuide"
  2025. type="0"
  2026. url=""
  2027. size="934KB" >
  2028. </productMenu>
  2029. <productMenu id="userGuide"
  2030. type="1"
  2031. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2032. size="1.14MB" >
  2033. </productMenu>
  2034. <productMenu id="videoGuide"
  2035. type="1"
  2036. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2037. size="3.41MB" >
  2038. </productMenu>
  2039. <productMenu id="volume"
  2040. type="11" >
  2041. </productMenu>
  2042. <productMenu id="battery"
  2043. type="1" >
  2044. </productMenu>
  2045. <productID id="3132"
  2046. />
  2047. <productGroupable type="0"
  2048. />
  2049. </product>
  2050. <product id="50R"
  2051. name="50R"
  2052. series="50"
  2053. latestVersion="2.7.1"
  2054. show = "1" >
  2055. <productMenu id="protocol"
  2056. type="2" >
  2057. </productMenu>
  2058. <productMenu id="alexa"
  2059. type="0" >
  2060. </productMenu>
  2061. <productMenu id="ota"
  2062. type="0"
  2063. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2064. size="1150234" >
  2065. </productMenu>
  2066. <productMenu id="wa"
  2067. type="1" >
  2068. </productMenu>
  2069. <productMenu id="sip"
  2070. type="1" >
  2071. </productMenu>
  2072. <productMenu id="meshIntercom"
  2073. type="30" >
  2074. <productMenuType version="2.1.1"
  2075. type="20"
  2076. />
  2077. </productMenu>
  2078. <productMenu id="meshIntercom+"
  2079. type="3"
  2080. url="2" >
  2081. <productMenuType version="2.5.9"
  2082. type="2"
  2083. />
  2084. <productMenuURL version="2.1.1"
  2085. url="0"
  2086. />
  2087. </productMenu>
  2088. <productMenu id="waveIntercom"
  2089. type="1" >
  2090. <productMenuType version="2.6"
  2091. type="0"
  2092. />
  2093. </productMenu>
  2094. <productMenu id="bluetoothIntercom"
  2095. type="1" >
  2096. </productMenu>
  2097. <productMenu id="phone"
  2098. type="1" >
  2099. </productMenu>
  2100. <productMenu id="music"
  2101. type="1" >
  2102. </productMenu>
  2103. <productMenu id="fmradio"
  2104. type="1" >
  2105. </productMenu>
  2106. <productMenu id="deviceSetting"
  2107. type="1"
  2108. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2109. <productMenuURL version="2.5.9"
  2110. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2111. />
  2112. <productMenuURL version="2.1.1"
  2113. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2114. />
  2115. <productMenuURL version="2.0"
  2116. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2117. />
  2118. </productMenu>
  2119. <productMenu id="quickGuide"
  2120. type="0"
  2121. url=""
  2122. size="344KB" >
  2123. </productMenu>
  2124. <productMenu id="userGuide"
  2125. type="1"
  2126. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2127. size="3.41MB" >
  2128. </productMenu>
  2129. <productMenu id="videoGuide"
  2130. type="1"
  2131. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2132. size="3.41MB" >
  2133. </productMenu>
  2134. <productMenu id="connectGuide"
  2135. type="1"
  2136. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2137. size="1.12MB" >
  2138. </productMenu>
  2139. <productMenu id="volume"
  2140. type="11" >
  2141. </productMenu>
  2142. <productMenu id="battery"
  2143. type="1" >
  2144. </productMenu>
  2145. <productID id="3218"
  2146. />
  2147. <productGroupable type="0"
  2148. />
  2149. </product>
  2150. <product id="50R"
  2151. name="50R"
  2152. series="50"
  2153. latestVersion="1.5.1"
  2154. show = "-1" >
  2155. <productMenu id="protocol"
  2156. type="2" >
  2157. </productMenu>
  2158. <productMenu id="alexa"
  2159. type="0" >
  2160. </productMenu>
  2161. <productMenu id="wa"
  2162. type="1" >
  2163. </productMenu>
  2164. <productMenu id="sip"
  2165. type="1" >
  2166. </productMenu>
  2167. <productMenu id="meshIntercom"
  2168. type="30" >
  2169. <productMenuType version="1.2.2"
  2170. type="20"
  2171. />
  2172. </productMenu>
  2173. <productMenu id="meshIntercom+"
  2174. type="3"
  2175. url="2" >
  2176. <productMenuType version="1.4.9"
  2177. type="2"
  2178. />
  2179. <productMenuURL version="1.2.2"
  2180. url="0"
  2181. />
  2182. </productMenu>
  2183. <productMenu id="waveIntercom"
  2184. type="1" >
  2185. <productMenuType version="1.3.9"
  2186. type="0"
  2187. />
  2188. </productMenu>
  2189. <productMenu id="bluetoothIntercom"
  2190. type="1" >
  2191. </productMenu>
  2192. <productMenu id="phone"
  2193. type="1" >
  2194. </productMenu>
  2195. <productMenu id="music"
  2196. type="1" >
  2197. </productMenu>
  2198. <productMenu id="fmradio"
  2199. type="1" >
  2200. </productMenu>
  2201. <productMenu id="deviceSetting"
  2202. type="1"
  2203. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2204. <productMenuURL version="1.4.9"
  2205. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2206. />
  2207. <productMenuURL version="1.3.9"
  2208. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2209. />
  2210. <productMenuURL version="1.2.2"
  2211. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2212. />
  2213. <productMenuURL version="1.1.1"
  2214. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2215. />
  2216. </productMenu>
  2217. <productMenu id="quickGuide"
  2218. type="0"
  2219. url=""
  2220. size="344KB" >
  2221. </productMenu>
  2222. <productMenu id="userGuide"
  2223. type="1"
  2224. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2225. size="3.41MB" >
  2226. </productMenu>
  2227. <productMenu id="videoGuide"
  2228. type="1"
  2229. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2230. size="3.41MB" >
  2231. </productMenu>
  2232. <productMenu id="volume"
  2233. type="11" >
  2234. </productMenu>
  2235. <productMenu id="battery"
  2236. type="1" >
  2237. </productMenu>
  2238. <productID id="3134"
  2239. />
  2240. <productGroupable type="0"
  2241. />
  2242. </product>
  2243. <product id="50C"
  2244. name="50C"
  2245. series="50"
  2246. latestVersion="1.4.3"
  2247. show = "1" >
  2248. <productMenu id="protocol"
  2249. type="2" >
  2250. </productMenu>
  2251. <productMenu id="ota"
  2252. type="0" >
  2253. </productMenu>
  2254. <productMenu id="wa"
  2255. type="1" >
  2256. </productMenu>
  2257. <productMenu id="sip"
  2258. type="1" >
  2259. </productMenu>
  2260. <productMenu id="meshIntercom"
  2261. type="30" >
  2262. <productMenuType version="1.1.1"
  2263. type="20"
  2264. />
  2265. </productMenu>
  2266. <productMenu id="meshIntercom+"
  2267. type="3"
  2268. url="2" >
  2269. <productMenuType version="1.3.9"
  2270. type="2"
  2271. />
  2272. <productMenuURL version="1.1.1"
  2273. url="0"
  2274. />
  2275. </productMenu>
  2276. <productMenu id="waveIntercom"
  2277. type="1" >
  2278. <productMenuType version="1.2.9"
  2279. type="0"
  2280. />
  2281. </productMenu>
  2282. <productMenu id="bluetoothIntercom"
  2283. type="1" >
  2284. </productMenu>
  2285. <productMenu id="phone"
  2286. type="1" >
  2287. </productMenu>
  2288. <productMenu id="music"
  2289. type="1" >
  2290. </productMenu>
  2291. <productMenu id="fmradio"
  2292. type="1" >
  2293. </productMenu>
  2294. <productMenu id="deviceSetting"
  2295. type="1"
  2296. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2297. <productMenuURL version="1.3.9"
  2298. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2299. />
  2300. <productMenuURL version="1.1.1"
  2301. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2302. />
  2303. <productMenuURL version="1.0.1"
  2304. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2305. />
  2306. </productMenu>
  2307. <productMenu id="quickGuide"
  2308. type="0"
  2309. url=""
  2310. size="344KB" >
  2311. </productMenu>
  2312. <productMenu id="userGuide"
  2313. type="1"
  2314. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2315. size="3.41MB" >
  2316. </productMenu>
  2317. <productMenu id="connectGuide"
  2318. type="1"
  2319. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2320. size="1.12MB" >
  2321. </productMenu>
  2322. <productMenu id="volume"
  2323. type="11" >
  2324. </productMenu>
  2325. <productMenu id="battery"
  2326. type="1" >
  2327. </productMenu>
  2328. <productID id="3232"
  2329. />
  2330. <productGroupable type="0"
  2331. />
  2332. </product>
  2333. <product id="PHANTOMXB"
  2334. name="PHANTOM XB"
  2335. series="Helmet"
  2336. latestVersion="1.2.9"
  2337. latestVersionVoicePrompt="1.6"
  2338. show = "-1" >
  2339. <productMenu id="protocol"
  2340. type="2" >
  2341. </productMenu>
  2342. <productMenu id="ota"
  2343. type="2" >
  2344. <otaLanguages>
  2345. <otaLanguage
  2346. id="0"
  2347. name="English"
  2348. package="0"
  2349. />
  2350. <otaLanguage
  2351. id="0"
  2352. name="French"
  2353. package="1"
  2354. />
  2355. <otaLanguage
  2356. id="0"
  2357. name="Spanish"
  2358. package="2"
  2359. />
  2360. <otaLanguage
  2361. id="0"
  2362. name="Italian"
  2363. package="3"
  2364. />
  2365. <otaLanguage
  2366. id="0"
  2367. name="German"
  2368. package="4"
  2369. />
  2370. <otaLanguage
  2371. id="0"
  2372. name="Dutch"
  2373. package="5"
  2374. />
  2375. <otaLanguage
  2376. id="0"
  2377. name="Russian"
  2378. package="6"
  2379. />
  2380. <otaLanguage
  2381. id="0"
  2382. name="Chinese"
  2383. package="7"
  2384. />
  2385. <otaLanguage
  2386. id="0"
  2387. name="Korean"
  2388. package="8"
  2389. />
  2390. <otaLanguage
  2391. id="0"
  2392. name="Japanese"
  2393. package="9"
  2394. />
  2395. <otaLanguage
  2396. id="0"
  2397. name="Finnish"
  2398. package="10"
  2399. />
  2400. <otaLanguage
  2401. id="0"
  2402. name="Polish"
  2403. package="11"
  2404. />
  2405. </otaLanguages>
  2406. <otaPackages>
  2407. <package
  2408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2409. size="5183988"
  2410. />
  2411. <package
  2412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2413. size="5183988"
  2414. />
  2415. <package
  2416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2417. size="5183988"
  2418. />
  2419. <package
  2420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2421. size="5183988"
  2422. />
  2423. <package
  2424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2425. size="5183988"
  2426. />
  2427. <package
  2428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2429. size="5183988"
  2430. />
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2453. size="5183988"
  2454. />
  2455. </otaPackages>
  2456. </productMenu>
  2457. <productMenu id="wa"
  2458. type="0" >
  2459. </productMenu>
  2460. <productMenu id="led"
  2461. type="5" >
  2462. </productMenu>
  2463. <productMenu id="led+"
  2464. type="2"
  2465. url="1" >
  2466. </productMenu>
  2467. <productMenu id="meshIntercom"
  2468. type="30" >
  2469. </productMenu>
  2470. <productMenu id="meshIntercom+"
  2471. type="3"
  2472. url="2" >
  2473. </productMenu>
  2474. <productMenu id="waveIntercom"
  2475. type="1" >
  2476. </productMenu>
  2477. <productMenu id="fmradio"
  2478. type="0" >
  2479. </productMenu>
  2480. <productMenu id="phone"
  2481. type="1" >
  2482. </productMenu>
  2483. <productMenu id="music"
  2484. type="1" >
  2485. </productMenu>
  2486. <productMenu id="musicSharing"
  2487. type="0" >
  2488. </productMenu>
  2489. <productMenu id="deviceSetting"
  2490. type="1"
  2491. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2492. <productMenuURL version="1.2.4"
  2493. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2494. />
  2495. </productMenu>
  2496. <productMenu id="quickGuide"
  2497. type="0"
  2498. url=""
  2499. size="1.12MB" >
  2500. </productMenu>
  2501. <productMenu id="userGuide"
  2502. type="1"
  2503. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2504. size="2.0MB" >
  2505. </productMenu>
  2506. <productMenu id="videoGuide"
  2507. type="0"
  2508. url=""
  2509. size="3.41MB" >
  2510. </productMenu>
  2511. <productMenu id="volume"
  2512. type="16" >
  2513. </productMenu>
  2514. <productMenu id="volume+"
  2515. type="2"
  2516. url="0x6004" >
  2517. </productMenu>
  2518. <productMenu id="battery"
  2519. type="1" >
  2520. </productMenu>
  2521. <productID id="6A0F"
  2522. />
  2523. <productGroupable type="0"
  2524. />
  2525. </product>
  2526. <product id="PHANTOMXB"
  2527. name="PHANTOM XB"
  2528. series="Helmet"
  2529. latestVersion="1.2.9"
  2530. latestVersionVoicePrompt="1.6"
  2531. show = "-1" >
  2532. <productMenu id="protocol"
  2533. type="2" >
  2534. </productMenu>
  2535. <productMenu id="ota"
  2536. type="2" >
  2537. <otaLanguages>
  2538. <otaLanguage
  2539. id="0"
  2540. name="English"
  2541. package="0"
  2542. />
  2543. <otaLanguage
  2544. id="0"
  2545. name="French"
  2546. package="1"
  2547. />
  2548. <otaLanguage
  2549. id="0"
  2550. name="Spanish"
  2551. package="2"
  2552. />
  2553. <otaLanguage
  2554. id="0"
  2555. name="Italian"
  2556. package="3"
  2557. />
  2558. <otaLanguage
  2559. id="0"
  2560. name="German"
  2561. package="4"
  2562. />
  2563. <otaLanguage
  2564. id="0"
  2565. name="Dutch"
  2566. package="5"
  2567. />
  2568. <otaLanguage
  2569. id="0"
  2570. name="Russian"
  2571. package="6"
  2572. />
  2573. <otaLanguage
  2574. id="0"
  2575. name="Chinese"
  2576. package="7"
  2577. />
  2578. <otaLanguage
  2579. id="0"
  2580. name="Korean"
  2581. package="8"
  2582. />
  2583. <otaLanguage
  2584. id="0"
  2585. name="Japanese"
  2586. package="9"
  2587. />
  2588. <otaLanguage
  2589. id="0"
  2590. name="Finnish"
  2591. package="10"
  2592. />
  2593. <otaLanguage
  2594. id="0"
  2595. name="Polish"
  2596. package="11"
  2597. />
  2598. </otaLanguages>
  2599. <otaPackages>
  2600. <package
  2601. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2602. size="5183988"
  2603. />
  2604. <package
  2605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2606. size="5183988"
  2607. />
  2608. <package
  2609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2610. size="5183988"
  2611. />
  2612. <package
  2613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2614. size="5183988"
  2615. />
  2616. <package
  2617. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2618. size="5183988"
  2619. />
  2620. <package
  2621. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2622. size="5183988"
  2623. />
  2624. <package
  2625. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2626. size="5183988"
  2627. />
  2628. <package
  2629. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2630. size="5183988"
  2631. />
  2632. <package
  2633. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2634. size="5183988"
  2635. />
  2636. <package
  2637. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2638. size="5183988"
  2639. />
  2640. <package
  2641. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2642. size="5183988"
  2643. />
  2644. <package
  2645. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2646. size="5183988"
  2647. />
  2648. </otaPackages>
  2649. </productMenu>
  2650. <productMenu id="wa"
  2651. type="0" >
  2652. </productMenu>
  2653. <productMenu id="led"
  2654. type="5" >
  2655. </productMenu>
  2656. <productMenu id="led+"
  2657. type="2"
  2658. url="1" >
  2659. </productMenu>
  2660. <productMenu id="meshIntercom"
  2661. type="30" >
  2662. </productMenu>
  2663. <productMenu id="meshIntercom+"
  2664. type="3"
  2665. url="2" >
  2666. </productMenu>
  2667. <productMenu id="waveIntercom"
  2668. type="1" >
  2669. </productMenu>
  2670. <productMenu id="fmradio"
  2671. type="0" >
  2672. </productMenu>
  2673. <productMenu id="phone"
  2674. type="1" >
  2675. </productMenu>
  2676. <productMenu id="music"
  2677. type="1" >
  2678. </productMenu>
  2679. <productMenu id="musicSharing"
  2680. type="0" >
  2681. </productMenu>
  2682. <productMenu id="deviceSetting"
  2683. type="1"
  2684. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2685. <productMenuURL version="1.2.4"
  2686. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2687. />
  2688. <productMenuURL version="1.2.1"
  2689. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2690. />
  2691. </productMenu>
  2692. <productMenu id="quickGuide"
  2693. type="0"
  2694. url=""
  2695. size="1.12MB" >
  2696. </productMenu>
  2697. <productMenu id="userGuide"
  2698. type="1"
  2699. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2700. size="2.0MB" >
  2701. </productMenu>
  2702. <productMenu id="videoGuide"
  2703. type="0"
  2704. url=""
  2705. size="3.41MB" >
  2706. </productMenu>
  2707. <productMenu id="volume"
  2708. type="16" >
  2709. </productMenu>
  2710. <productMenu id="volume+"
  2711. type="2"
  2712. url="0x6004" >
  2713. </productMenu>
  2714. <productMenu id="battery"
  2715. type="1" >
  2716. </productMenu>
  2717. <productID id="6A0C"
  2718. />
  2719. <productGroupable type="0"
  2720. />
  2721. </product>
  2722. <product id="PHANTOMKV"
  2723. name="PHANTOM KV"
  2724. series="Helmet"
  2725. latestVersion="1.2.10"
  2726. latestVersionVoicePrompt="1.7"
  2727. show = "-1" >
  2728. <productMenu id="protocol"
  2729. type="2" >
  2730. </productMenu>
  2731. <productMenu id="ota"
  2732. type="2" >
  2733. <otaLanguages>
  2734. <otaLanguage
  2735. id="0"
  2736. name="English"
  2737. package="0"
  2738. />
  2739. <otaLanguage
  2740. id="0"
  2741. name="French"
  2742. package="1"
  2743. />
  2744. <otaLanguage
  2745. id="0"
  2746. name="Spanish"
  2747. package="2"
  2748. />
  2749. <otaLanguage
  2750. id="0"
  2751. name="Italian"
  2752. package="3"
  2753. />
  2754. <otaLanguage
  2755. id="0"
  2756. name="German"
  2757. package="4"
  2758. />
  2759. <otaLanguage
  2760. id="0"
  2761. name="Dutch"
  2762. package="5"
  2763. />
  2764. <otaLanguage
  2765. id="0"
  2766. name="Russian"
  2767. package="6"
  2768. />
  2769. <otaLanguage
  2770. id="0"
  2771. name="Chinese"
  2772. package="7"
  2773. />
  2774. <otaLanguage
  2775. id="0"
  2776. name="Korean"
  2777. package="8"
  2778. />
  2779. <otaLanguage
  2780. id="0"
  2781. name="Japanese"
  2782. package="9"
  2783. />
  2784. <otaLanguage
  2785. id="0"
  2786. name="Finnish"
  2787. package="10"
  2788. />
  2789. <otaLanguage
  2790. id="0"
  2791. name="Polish"
  2792. package="11"
  2793. />
  2794. </otaLanguages>
  2795. <otaPackages>
  2796. <package
  2797. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2798. size="5183988"
  2799. />
  2800. <package
  2801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2802. size="5183988"
  2803. />
  2804. <package
  2805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2806. size="5183988"
  2807. />
  2808. <package
  2809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2810. size="5183988"
  2811. />
  2812. <package
  2813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2814. size="5183988"
  2815. />
  2816. <package
  2817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2818. size="5183988"
  2819. />
  2820. <package
  2821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2822. size="5183988"
  2823. />
  2824. <package
  2825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2826. size="5183988"
  2827. />
  2828. <package
  2829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2830. size="5183988"
  2831. />
  2832. <package
  2833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2834. size="5183988"
  2835. />
  2836. <package
  2837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2838. size="5183988"
  2839. />
  2840. <package
  2841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2842. size="5183988"
  2843. />
  2844. </otaPackages>
  2845. </productMenu>
  2846. <productMenu id="wa"
  2847. type="0" >
  2848. </productMenu>
  2849. <productMenu id="led"
  2850. type="5" >
  2851. </productMenu>
  2852. <productMenu id="led+"
  2853. type="2"
  2854. url="1" >
  2855. </productMenu>
  2856. <productMenu id="meshIntercom"
  2857. type="30" >
  2858. </productMenu>
  2859. <productMenu id="meshIntercom+"
  2860. type="3"
  2861. url="2" >
  2862. </productMenu>
  2863. <productMenu id="waveIntercom"
  2864. type="1" >
  2865. </productMenu>
  2866. <productMenu id="fmradio"
  2867. type="0" >
  2868. </productMenu>
  2869. <productMenu id="phone"
  2870. type="1" >
  2871. </productMenu>
  2872. <productMenu id="music"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="musicSharing"
  2876. type="0" >
  2877. </productMenu>
  2878. <productMenu id="deviceSetting"
  2879. type="1"
  2880. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2881. <productMenuURL version="1.2.4"
  2882. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2883. />
  2884. </productMenu>
  2885. <productMenu id="quickGuide"
  2886. type="0"
  2887. url=""
  2888. size="1.12MB" >
  2889. </productMenu>
  2890. <productMenu id="userGuide"
  2891. type="1"
  2892. url=""
  2893. size="2.0MB" >
  2894. </productMenu>
  2895. <productMenu id="videoGuide"
  2896. type="0"
  2897. url=""
  2898. size="3.41MB" >
  2899. </productMenu>
  2900. <productMenu id="volume"
  2901. type="16" >
  2902. </productMenu>
  2903. <productMenu id="volume+"
  2904. type="2"
  2905. url="0x6004" >
  2906. </productMenu>
  2907. <productMenu id="soundMode"
  2908. type="1" >
  2909. </productMenu>
  2910. <productMenu id="battery"
  2911. type="1" >
  2912. </productMenu>
  2913. <productID id="6A13"
  2914. />
  2915. <productGroupable type="0"
  2916. />
  2917. </product>
  2918. <product id="PHANTOMCamera"
  2919. name="PHANTOM Camera"
  2920. series="Helmet"
  2921. latestVersion="1.0.1"
  2922. latestVersionVoicePrompt="0.4"
  2923. show = "-1" >
  2924. <productMenu id="protocol"
  2925. type="2" >
  2926. </productMenu>
  2927. <productMenu id="ota"
  2928. type="3" >
  2929. <otaLanguages>
  2930. <otaLanguage
  2931. id="0"
  2932. name="English"
  2933. package="0"
  2934. />
  2935. <otaLanguage
  2936. id="0"
  2937. name="French"
  2938. package="1"
  2939. />
  2940. <otaLanguage
  2941. id="0"
  2942. name="Spanish"
  2943. package="2"
  2944. />
  2945. <otaLanguage
  2946. id="0"
  2947. name="Italian"
  2948. package="3"
  2949. />
  2950. <otaLanguage
  2951. id="0"
  2952. name="German"
  2953. package="4"
  2954. />
  2955. <otaLanguage
  2956. id="0"
  2957. name="Dutch"
  2958. package="5"
  2959. />
  2960. <otaLanguage
  2961. id="0"
  2962. name="Russian"
  2963. package="6"
  2964. />
  2965. <otaLanguage
  2966. id="0"
  2967. name="Chinese"
  2968. package="7"
  2969. />
  2970. <otaLanguage
  2971. id="0"
  2972. name="Korean"
  2973. package="8"
  2974. />
  2975. <otaLanguage
  2976. id="0"
  2977. name="Japanese"
  2978. package="9"
  2979. />
  2980. <otaLanguage
  2981. id="0"
  2982. name="Finnish"
  2983. package="10"
  2984. />
  2985. <otaLanguage
  2986. id="0"
  2987. name="Polish"
  2988. package="11"
  2989. />
  2990. </otaLanguages>
  2991. <otaPackages>
  2992. <package
  2993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2994. size="5183988"
  2995. />
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3010. size="5183988"
  3011. />
  3012. <package
  3013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3014. size="5183988"
  3015. />
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3038. size="5183988"
  3039. />
  3040. </otaPackages>
  3041. </productMenu>
  3042. <productMenu id="wa"
  3043. type="0" >
  3044. </productMenu>
  3045. <productMenu id="led"
  3046. type="5" >
  3047. </productMenu>
  3048. <productMenu id="led+"
  3049. type="2"
  3050. url="1" >
  3051. </productMenu>
  3052. <productMenu id="meshIntercom"
  3053. type="30" >
  3054. </productMenu>
  3055. <productMenu id="meshIntercom+"
  3056. type="3"
  3057. url="2" >
  3058. </productMenu>
  3059. <productMenu id="waveIntercom"
  3060. type="1" >
  3061. </productMenu>
  3062. <productMenu id="fmradio"
  3063. type="0" >
  3064. </productMenu>
  3065. <productMenu id="phone"
  3066. type="1" >
  3067. </productMenu>
  3068. <productMenu id="music"
  3069. type="1" >
  3070. </productMenu>
  3071. <productMenu id="musicSharing"
  3072. type="0" >
  3073. </productMenu>
  3074. <productMenu id="deviceSetting"
  3075. type="1"
  3076. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3077. </productMenu>
  3078. <productMenu id="quickGuide"
  3079. type="0"
  3080. url=""
  3081. size="1.12MB" >
  3082. </productMenu>
  3083. <productMenu id="userGuide"
  3084. type="1"
  3085. url=""
  3086. size="2.0MB" >
  3087. </productMenu>
  3088. <productMenu id="videoGuide"
  3089. type="0"
  3090. url=""
  3091. size="3.41MB" >
  3092. </productMenu>
  3093. <productMenu id="volume"
  3094. type="16" >
  3095. </productMenu>
  3096. <productMenu id="battery"
  3097. type="1" >
  3098. </productMenu>
  3099. <productID id="6A10"
  3100. />
  3101. <productGroupable type="0"
  3102. />
  3103. </product>
  3104. <product id="PHANTOMCamera"
  3105. name="PHANTOM Camera"
  3106. series="Helmet"
  3107. latestVersion="1.0.1"
  3108. latestVersionVoicePrompt="0.4"
  3109. show = "-1" >
  3110. <productMenu id="protocol"
  3111. type="2" >
  3112. </productMenu>
  3113. <productMenu id="ota"
  3114. type="3" >
  3115. <otaLanguages>
  3116. <otaLanguage
  3117. id="0"
  3118. name="English"
  3119. package="0"
  3120. />
  3121. <otaLanguage
  3122. id="0"
  3123. name="French"
  3124. package="1"
  3125. />
  3126. <otaLanguage
  3127. id="0"
  3128. name="Spanish"
  3129. package="2"
  3130. />
  3131. <otaLanguage
  3132. id="0"
  3133. name="Italian"
  3134. package="3"
  3135. />
  3136. <otaLanguage
  3137. id="0"
  3138. name="German"
  3139. package="4"
  3140. />
  3141. <otaLanguage
  3142. id="0"
  3143. name="Dutch"
  3144. package="5"
  3145. />
  3146. <otaLanguage
  3147. id="0"
  3148. name="Russian"
  3149. package="6"
  3150. />
  3151. <otaLanguage
  3152. id="0"
  3153. name="Chinese"
  3154. package="7"
  3155. />
  3156. <otaLanguage
  3157. id="0"
  3158. name="Korean"
  3159. package="8"
  3160. />
  3161. <otaLanguage
  3162. id="0"
  3163. name="Japanese"
  3164. package="9"
  3165. />
  3166. <otaLanguage
  3167. id="0"
  3168. name="Finnish"
  3169. package="10"
  3170. />
  3171. <otaLanguage
  3172. id="0"
  3173. name="Polish"
  3174. package="11"
  3175. />
  3176. </otaLanguages>
  3177. <otaPackages>
  3178. <package
  3179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3180. size="5183988"
  3181. />
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3196. size="5183988"
  3197. />
  3198. <package
  3199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3200. size="5183988"
  3201. />
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3224. size="5183988"
  3225. />
  3226. </otaPackages>
  3227. </productMenu>
  3228. <productMenu id="wa"
  3229. type="0" >
  3230. </productMenu>
  3231. <productMenu id="led"
  3232. type="5" >
  3233. </productMenu>
  3234. <productMenu id="led+"
  3235. type="2"
  3236. url="1" >
  3237. </productMenu>
  3238. <productMenu id="meshIntercom"
  3239. type="30" >
  3240. </productMenu>
  3241. <productMenu id="meshIntercom+"
  3242. type="3"
  3243. url="2" >
  3244. </productMenu>
  3245. <productMenu id="waveIntercom"
  3246. type="1" >
  3247. </productMenu>
  3248. <productMenu id="fmradio"
  3249. type="0" >
  3250. </productMenu>
  3251. <productMenu id="phone"
  3252. type="1" >
  3253. </productMenu>
  3254. <productMenu id="music"
  3255. type="1" >
  3256. </productMenu>
  3257. <productMenu id="musicSharing"
  3258. type="0" >
  3259. </productMenu>
  3260. <productMenu id="deviceSetting"
  3261. type="1"
  3262. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3263. </productMenu>
  3264. <productMenu id="quickGuide"
  3265. type="0"
  3266. url=""
  3267. size="1.12MB" >
  3268. </productMenu>
  3269. <productMenu id="userGuide"
  3270. type="1"
  3271. url=""
  3272. size="2.0MB" >
  3273. </productMenu>
  3274. <productMenu id="videoGuide"
  3275. type="0"
  3276. url=""
  3277. size="3.41MB" >
  3278. </productMenu>
  3279. <productMenu id="volume"
  3280. type="16" >
  3281. </productMenu>
  3282. <productMenu id="battery"
  3283. type="1" >
  3284. </productMenu>
  3285. <productID id="6A09"
  3286. />
  3287. <productGroupable type="0"
  3288. />
  3289. </product>
  3290. <product id="PHANTOM"
  3291. name="PHANTOM ANC"
  3292. series="Helmet"
  3293. latestVersion="1.2.9"
  3294. latestVersionVoicePrompt="1.7"
  3295. show = "1" >
  3296. <productMenu id="protocol"
  3297. type="2" >
  3298. </productMenu>
  3299. <productMenu id="ota"
  3300. type="2" >
  3301. <productMenuType version="0.6.9"
  3302. type="0"
  3303. />
  3304. <otaLanguages>
  3305. <otaLanguage
  3306. id="0"
  3307. name="English"
  3308. package="0"
  3309. />
  3310. <otaLanguage
  3311. id="0"
  3312. name="French"
  3313. package="1"
  3314. />
  3315. <otaLanguage
  3316. id="0"
  3317. name="Spanish"
  3318. package="2"
  3319. />
  3320. <otaLanguage
  3321. id="0"
  3322. name="Italian"
  3323. package="3"
  3324. />
  3325. <otaLanguage
  3326. id="0"
  3327. name="German"
  3328. package="4"
  3329. />
  3330. <otaLanguage
  3331. id="0"
  3332. name="Dutch"
  3333. package="5"
  3334. />
  3335. <otaLanguage
  3336. id="0"
  3337. name="Russian"
  3338. package="6"
  3339. />
  3340. <otaLanguage
  3341. id="0"
  3342. name="Chinese"
  3343. package="7"
  3344. />
  3345. <otaLanguage
  3346. id="0"
  3347. name="Korean"
  3348. package="8"
  3349. />
  3350. <otaLanguage
  3351. id="0"
  3352. name="Japanese"
  3353. package="9"
  3354. />
  3355. <otaLanguage
  3356. id="0"
  3357. name="Finnish"
  3358. package="10"
  3359. />
  3360. <otaLanguage
  3361. id="0"
  3362. name="Polish"
  3363. package="11"
  3364. />
  3365. </otaLanguages>
  3366. <otaPackages>
  3367. <package
  3368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3369. size="5183988"
  3370. />
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3413. size="5183988"
  3414. />
  3415. </otaPackages>
  3416. </productMenu>
  3417. <productMenu id="wa"
  3418. type="0" >
  3419. </productMenu>
  3420. <productMenu id="led"
  3421. type="5" >
  3422. </productMenu>
  3423. <productMenu id="led+"
  3424. type="2"
  3425. url="1" >
  3426. </productMenu>
  3427. <productMenu id="meshIntercom"
  3428. type="30" >
  3429. </productMenu>
  3430. <productMenu id="meshIntercom+"
  3431. type="3"
  3432. url="2" >
  3433. <productMenuURL version="1.0.4"
  3434. url="10"
  3435. />
  3436. </productMenu>
  3437. <productMenu id="waveIntercom"
  3438. type="1" >
  3439. <productMenuType version="1.0.9"
  3440. type="0"
  3441. />
  3442. </productMenu>
  3443. <productMenu id="fmradio"
  3444. type="0" >
  3445. </productMenu>
  3446. <productMenu id="phone"
  3447. type="1" >
  3448. </productMenu>
  3449. <productMenu id="music"
  3450. type="1" >
  3451. </productMenu>
  3452. <productMenu id="musicSharing"
  3453. type="0" >
  3454. </productMenu>
  3455. <productMenu id="deviceSetting"
  3456. type="1"
  3457. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3458. <productMenuURL version="1.2.4"
  3459. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3460. />
  3461. <productMenuURL version="1.2.1"
  3462. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3463. />
  3464. <productMenuURL version="1.1.2"
  3465. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3466. />
  3467. <productMenuURL version="1.0.4"
  3468. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3469. />
  3470. </productMenu>
  3471. <productMenu id="quickGuide"
  3472. type="0"
  3473. url=""
  3474. size="1.12MB" >
  3475. </productMenu>
  3476. <productMenu id="userGuide"
  3477. type="1"
  3478. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3479. size="2.0MB" >
  3480. </productMenu>
  3481. <productMenu id="videoGuide"
  3482. type="0"
  3483. url=""
  3484. size="3.41MB" >
  3485. </productMenu>
  3486. <productMenu id="volume"
  3487. type="16" >
  3488. </productMenu>
  3489. <productMenu id="volume+"
  3490. type="2"
  3491. url="0x6004" >
  3492. </productMenu>
  3493. <productMenu id="soundMode"
  3494. type="1" >
  3495. <productMenuType version="0.9.11"
  3496. type="0"
  3497. />
  3498. </productMenu>
  3499. <productMenu id="battery"
  3500. type="1" >
  3501. </productMenu>
  3502. <productID id="6A01"
  3503. />
  3504. <productGroupable type="0"
  3505. />
  3506. </product>
  3507. <product id="PHANTOM"
  3508. name="PHANTOM ANC"
  3509. series="Helmet"
  3510. latestVersion="1.2.9"
  3511. latestVersionVoicePrompt="1.7"
  3512. show = "-1" >
  3513. <productMenu id="protocol"
  3514. type="2" >
  3515. </productMenu>
  3516. <productMenu id="ota"
  3517. type="2" >
  3518. <otaLanguages>
  3519. <otaLanguage
  3520. id="0"
  3521. name="English"
  3522. package="0"
  3523. />
  3524. <otaLanguage
  3525. id="0"
  3526. name="French"
  3527. package="1"
  3528. />
  3529. <otaLanguage
  3530. id="0"
  3531. name="Spanish"
  3532. package="2"
  3533. />
  3534. <otaLanguage
  3535. id="0"
  3536. name="Italian"
  3537. package="3"
  3538. />
  3539. <otaLanguage
  3540. id="0"
  3541. name="German"
  3542. package="4"
  3543. />
  3544. <otaLanguage
  3545. id="0"
  3546. name="Dutch"
  3547. package="5"
  3548. />
  3549. <otaLanguage
  3550. id="0"
  3551. name="Russian"
  3552. package="6"
  3553. />
  3554. <otaLanguage
  3555. id="0"
  3556. name="Chinese"
  3557. package="7"
  3558. />
  3559. <otaLanguage
  3560. id="0"
  3561. name="Korean"
  3562. package="8"
  3563. />
  3564. <otaLanguage
  3565. id="0"
  3566. name="Japanese"
  3567. package="9"
  3568. />
  3569. <otaLanguage
  3570. id="0"
  3571. name="Finnish"
  3572. package="10"
  3573. />
  3574. <otaLanguage
  3575. id="0"
  3576. name="Polish"
  3577. package="11"
  3578. />
  3579. </otaLanguages>
  3580. <otaPackages>
  3581. <package
  3582. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3583. size="5183988"
  3584. />
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3599. size="5183988"
  3600. />
  3601. <package
  3602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3603. size="5183988"
  3604. />
  3605. <package
  3606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3607. size="5183988"
  3608. />
  3609. <package
  3610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3623. size="5183988"
  3624. />
  3625. <package
  3626. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3627. size="5183988"
  3628. />
  3629. </otaPackages>
  3630. </productMenu>
  3631. <productMenu id="led"
  3632. type="5" >
  3633. </productMenu>
  3634. <productMenu id="led+"
  3635. type="2"
  3636. url="1" >
  3637. </productMenu>
  3638. <productMenu id="meshIntercom"
  3639. type="30" >
  3640. </productMenu>
  3641. <productMenu id="meshIntercom+"
  3642. type="3"
  3643. url="2" >
  3644. </productMenu>
  3645. <productMenu id="waveIntercom"
  3646. type="1" >
  3647. </productMenu>
  3648. <productMenu id="fmradio"
  3649. type="0" >
  3650. </productMenu>
  3651. <productMenu id="phone"
  3652. type="1" >
  3653. </productMenu>
  3654. <productMenu id="music"
  3655. type="1" >
  3656. </productMenu>
  3657. <productMenu id="musicSharing"
  3658. type="0" >
  3659. </productMenu>
  3660. <productMenu id="deviceSetting"
  3661. type="1"
  3662. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3663. <productMenuURL version="1.2.4"
  3664. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3665. />
  3666. </productMenu>
  3667. <productMenu id="quickGuide"
  3668. type="0"
  3669. url=""
  3670. size="1.12MB" >
  3671. </productMenu>
  3672. <productMenu id="userGuide"
  3673. type="1"
  3674. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3675. size="2.0MB" >
  3676. </productMenu>
  3677. <productMenu id="videoGuide"
  3678. type="0"
  3679. url=""
  3680. size="3.41MB" >
  3681. </productMenu>
  3682. <productMenu id="volume"
  3683. type="16" >
  3684. </productMenu>
  3685. <productMenu id="volume+"
  3686. type="2"
  3687. url="0x6004" >
  3688. </productMenu>
  3689. <productMenu id="soundMode"
  3690. type="1" >
  3691. </productMenu>
  3692. <productMenu id="battery"
  3693. type="1" >
  3694. </productMenu>
  3695. <productID id="6A19"
  3696. />
  3697. <productGroupable type="0"
  3698. />
  3699. </product>
  3700. <product id="PHANTOM"
  3701. name="PHANTOM"
  3702. series="Helmet"
  3703. latestVersion="1.2.9"
  3704. latestVersionVoicePrompt="1.7"
  3705. show = "-1" >
  3706. <productMenu id="protocol"
  3707. type="2" >
  3708. </productMenu>
  3709. <productMenu id="ota"
  3710. type="2" >
  3711. <otaLanguages>
  3712. <otaLanguage
  3713. id="0"
  3714. name="English"
  3715. package="0"
  3716. />
  3717. <otaLanguage
  3718. id="0"
  3719. name="French"
  3720. package="1"
  3721. />
  3722. <otaLanguage
  3723. id="0"
  3724. name="Spanish"
  3725. package="2"
  3726. />
  3727. <otaLanguage
  3728. id="0"
  3729. name="Italian"
  3730. package="3"
  3731. />
  3732. <otaLanguage
  3733. id="0"
  3734. name="German"
  3735. package="4"
  3736. />
  3737. <otaLanguage
  3738. id="0"
  3739. name="Dutch"
  3740. package="5"
  3741. />
  3742. <otaLanguage
  3743. id="0"
  3744. name="Russian"
  3745. package="6"
  3746. />
  3747. <otaLanguage
  3748. id="0"
  3749. name="Chinese"
  3750. package="7"
  3751. />
  3752. <otaLanguage
  3753. id="0"
  3754. name="Korean"
  3755. package="8"
  3756. />
  3757. <otaLanguage
  3758. id="0"
  3759. name="Japanese"
  3760. package="9"
  3761. />
  3762. <otaLanguage
  3763. id="0"
  3764. name="Finnish"
  3765. package="10"
  3766. />
  3767. <otaLanguage
  3768. id="0"
  3769. name="Polish"
  3770. package="11"
  3771. />
  3772. </otaLanguages>
  3773. <otaPackages>
  3774. <package
  3775. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3776. size="5183988"
  3777. />
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3800. size="5183988"
  3801. />
  3802. <package
  3803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3804. size="5183988"
  3805. />
  3806. <package
  3807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3808. size="5183988"
  3809. />
  3810. <package
  3811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3812. size="5183988"
  3813. />
  3814. <package
  3815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3816. size="5183988"
  3817. />
  3818. <package
  3819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3820. size="5183988"
  3821. />
  3822. </otaPackages>
  3823. </productMenu>
  3824. <productMenu id="wa"
  3825. type="0" >
  3826. </productMenu>
  3827. <productMenu id="led"
  3828. type="5" >
  3829. </productMenu>
  3830. <productMenu id="led+"
  3831. type="2"
  3832. url="1" >
  3833. </productMenu>
  3834. <productMenu id="meshIntercom"
  3835. type="30" >
  3836. </productMenu>
  3837. <productMenu id="meshIntercom+"
  3838. type="3"
  3839. url="2" >
  3840. </productMenu>
  3841. <productMenu id="waveIntercom"
  3842. type="1" >
  3843. </productMenu>
  3844. <productMenu id="fmradio"
  3845. type="0" >
  3846. </productMenu>
  3847. <productMenu id="phone"
  3848. type="1" >
  3849. </productMenu>
  3850. <productMenu id="music"
  3851. type="1" >
  3852. </productMenu>
  3853. <productMenu id="musicSharing"
  3854. type="0" >
  3855. </productMenu>
  3856. <productMenu id="deviceSetting"
  3857. type="1"
  3858. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3859. <productMenuURL version="1.2.4"
  3860. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3861. />
  3862. </productMenu>
  3863. <productMenu id="quickGuide"
  3864. type="0"
  3865. url=""
  3866. size="1.52MB" >
  3867. </productMenu>
  3868. <productMenu id="userGuide"
  3869. type="1"
  3870. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3871. size="2.01MB" >
  3872. </productMenu>
  3873. <productMenu id="videoGuide"
  3874. type="0"
  3875. url=""
  3876. size="3.46MB" >
  3877. </productMenu>
  3878. <productMenu id="connectGuide"
  3879. type="1"
  3880. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3881. size="1.1MB" >
  3882. </productMenu>
  3883. <productMenu id="volume"
  3884. type="16" >
  3885. </productMenu>
  3886. <productMenu id="volume+"
  3887. type="2"
  3888. url="0x6004" >
  3889. </productMenu>
  3890. <productMenu id="battery"
  3891. type="1" >
  3892. </productMenu>
  3893. <productID id="6A0E"
  3894. />
  3895. <productGroupable type="0"
  3896. />
  3897. </product>
  3898. <product id="PHANTOM"
  3899. name="PHANTOM"
  3900. series="Helmet"
  3901. latestVersion="1.2.9"
  3902. latestVersionVoicePrompt="1.7"
  3903. show = "1" >
  3904. <productMenu id="protocol"
  3905. type="2" >
  3906. </productMenu>
  3907. <productMenu id="ota"
  3908. type="2" >
  3909. <otaLanguages>
  3910. <otaLanguage
  3911. id="0"
  3912. name="English"
  3913. package="0"
  3914. />
  3915. <otaLanguage
  3916. id="0"
  3917. name="French"
  3918. package="1"
  3919. />
  3920. <otaLanguage
  3921. id="0"
  3922. name="Spanish"
  3923. package="2"
  3924. />
  3925. <otaLanguage
  3926. id="0"
  3927. name="Italian"
  3928. package="3"
  3929. />
  3930. <otaLanguage
  3931. id="0"
  3932. name="German"
  3933. package="4"
  3934. />
  3935. <otaLanguage
  3936. id="0"
  3937. name="Dutch"
  3938. package="5"
  3939. />
  3940. <otaLanguage
  3941. id="0"
  3942. name="Russian"
  3943. package="6"
  3944. />
  3945. <otaLanguage
  3946. id="0"
  3947. name="Chinese"
  3948. package="7"
  3949. />
  3950. <otaLanguage
  3951. id="0"
  3952. name="Korean"
  3953. package="8"
  3954. />
  3955. <otaLanguage
  3956. id="0"
  3957. name="Japanese"
  3958. package="9"
  3959. />
  3960. <otaLanguage
  3961. id="0"
  3962. name="Finnish"
  3963. package="10"
  3964. />
  3965. <otaLanguage
  3966. id="0"
  3967. name="Polish"
  3968. package="11"
  3969. />
  3970. </otaLanguages>
  3971. <otaPackages>
  3972. <package
  3973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3974. size="5183988"
  3975. />
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4018. size="5183988"
  4019. />
  4020. </otaPackages>
  4021. </productMenu>
  4022. <productMenu id="wa"
  4023. type="0" >
  4024. </productMenu>
  4025. <productMenu id="led"
  4026. type="5" >
  4027. <productMenuType version="1.0.1"
  4028. type="4"
  4029. />
  4030. </productMenu>
  4031. <productMenu id="led+"
  4032. type="2"
  4033. url="1" >
  4034. <productMenuType version="1.0.1"
  4035. type="-1"
  4036. />
  4037. </productMenu>
  4038. <productMenu id="meshIntercom"
  4039. type="30" >
  4040. </productMenu>
  4041. <productMenu id="meshIntercom+"
  4042. type="3"
  4043. url="2" >
  4044. <productMenuURL version="1.0.4"
  4045. url="10"
  4046. />
  4047. </productMenu>
  4048. <productMenu id="waveIntercom"
  4049. type="1" >
  4050. <productMenuType version="1.0.9"
  4051. type="0"
  4052. />
  4053. </productMenu>
  4054. <productMenu id="fmradio"
  4055. type="0" >
  4056. </productMenu>
  4057. <productMenu id="phone"
  4058. type="1" >
  4059. </productMenu>
  4060. <productMenu id="music"
  4061. type="1" >
  4062. </productMenu>
  4063. <productMenu id="musicSharing"
  4064. type="0" >
  4065. </productMenu>
  4066. <productMenu id="deviceSetting"
  4067. type="1"
  4068. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4069. <productMenuURL version="1.2.4"
  4070. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4071. />
  4072. <productMenuURL version="1.2.1"
  4073. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4074. />
  4075. <productMenuURL version="1.0.4"
  4076. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4077. />
  4078. <productMenuURL version="1.0.1"
  4079. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="quickGuide"
  4083. type="0"
  4084. url=""
  4085. size="1.12MB" >
  4086. </productMenu>
  4087. <productMenu id="userGuide"
  4088. type="1"
  4089. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4090. size="2.0MB" >
  4091. </productMenu>
  4092. <productMenu id="videoGuide"
  4093. type="0"
  4094. url=""
  4095. size="3.41MB" >
  4096. </productMenu>
  4097. <productMenu id="connectGuide"
  4098. type="1"
  4099. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4100. size="1.12MB" >
  4101. </productMenu>
  4102. <productMenu id="volume"
  4103. type="16" >
  4104. <productMenuType version="1.0"
  4105. type="13"
  4106. />
  4107. </productMenu>
  4108. <productMenu id="volume+"
  4109. type="2"
  4110. url="0x6004" >
  4111. </productMenu>
  4112. <productMenu id="battery"
  4113. type="1" >
  4114. </productMenu>
  4115. <productID id="6A04"
  4116. />
  4117. <productGroupable type="0"
  4118. />
  4119. </product>
  4120. <product id="PHANTOMEasyLink"
  4121. name="PHANTOM EasyLink"
  4122. series="Helmet"
  4123. latestVersion="0.1"
  4124. latestVersionVoicePrompt="1.2"
  4125. show = "-1" >
  4126. <productMenu id="protocol"
  4127. type="2" >
  4128. </productMenu>
  4129. <productMenu id="ota"
  4130. type="0" >
  4131. <otaLanguages>
  4132. <otaLanguage
  4133. id="0"
  4134. name="English"
  4135. package="0"
  4136. />
  4137. <otaLanguage
  4138. id="0"
  4139. name="French"
  4140. package="1"
  4141. />
  4142. <otaLanguage
  4143. id="0"
  4144. name="Spanish"
  4145. package="2"
  4146. />
  4147. <otaLanguage
  4148. id="0"
  4149. name="Italian"
  4150. package="3"
  4151. />
  4152. <otaLanguage
  4153. id="0"
  4154. name="German"
  4155. package="4"
  4156. />
  4157. <otaLanguage
  4158. id="0"
  4159. name="Dutch"
  4160. package="5"
  4161. />
  4162. <otaLanguage
  4163. id="0"
  4164. name="Russian"
  4165. package="6"
  4166. />
  4167. <otaLanguage
  4168. id="0"
  4169. name="Chinese"
  4170. package="7"
  4171. />
  4172. <otaLanguage
  4173. id="0"
  4174. name="Korean"
  4175. package="8"
  4176. />
  4177. <otaLanguage
  4178. id="0"
  4179. name="Japanese"
  4180. package="9"
  4181. />
  4182. <otaLanguage
  4183. id="0"
  4184. name="Finnish"
  4185. package="10"
  4186. />
  4187. <otaLanguage
  4188. id="0"
  4189. name="Polish"
  4190. package="11"
  4191. />
  4192. </otaLanguages>
  4193. <otaPackages>
  4194. <package
  4195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4196. size="5183988"
  4197. />
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4236. size="5183988"
  4237. />
  4238. <package
  4239. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4240. size="5183988"
  4241. />
  4242. </otaPackages>
  4243. </productMenu>
  4244. <productMenu id="meshIntercom"
  4245. type="30" >
  4246. </productMenu>
  4247. <productMenu id="meshIntercom+"
  4248. type="3"
  4249. url="2" >
  4250. </productMenu>
  4251. <productMenu id="waveIntercom"
  4252. type="1" >
  4253. </productMenu>
  4254. <productMenu id="fmradio"
  4255. type="0" >
  4256. </productMenu>
  4257. <productMenu id="phone"
  4258. type="1" >
  4259. </productMenu>
  4260. <productMenu id="music"
  4261. type="1" >
  4262. </productMenu>
  4263. <productMenu id="musicSharing"
  4264. type="0" >
  4265. </productMenu>
  4266. <productMenu id="deviceSetting"
  4267. type="1"
  4268. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4269. </productMenu>
  4270. <productMenu id="quickGuide"
  4271. type="0"
  4272. url=""
  4273. size="1.12MB" >
  4274. </productMenu>
  4275. <productMenu id="userGuide"
  4276. type="1"
  4277. url=""
  4278. size="2.0MB" >
  4279. </productMenu>
  4280. <productMenu id="videoGuide"
  4281. type="0"
  4282. url=""
  4283. size="3.41MB" >
  4284. </productMenu>
  4285. <productMenu id="connectGuide"
  4286. type="0"
  4287. url=""
  4288. size="1.12MB" >
  4289. </productMenu>
  4290. <productMenu id="volume"
  4291. type="16" >
  4292. </productMenu>
  4293. <productMenu id="battery"
  4294. type="1" >
  4295. </productMenu>
  4296. <productID id="6A18"
  4297. />
  4298. <productGroupable type="0"
  4299. />
  4300. </product>
  4301. <product id="SPIDERXSlim"
  4302. name="SPIDER X Slim"
  4303. series="SPIDER"
  4304. latestVersion="1.0"
  4305. latestVersionVoicePrompt="1.7"
  4306. show = "1" >
  4307. <productMenu id="protocol"
  4308. type="2" >
  4309. </productMenu>
  4310. <productMenu id="ota"
  4311. type="2" >
  4312. <otaLanguages>
  4313. <otaLanguage
  4314. id="0"
  4315. name="English"
  4316. package="0"
  4317. />
  4318. <otaLanguage
  4319. id="0"
  4320. name="French"
  4321. package="1"
  4322. />
  4323. <otaLanguage
  4324. id="0"
  4325. name="Spanish"
  4326. package="2"
  4327. />
  4328. <otaLanguage
  4329. id="0"
  4330. name="Italian"
  4331. package="3"
  4332. />
  4333. <otaLanguage
  4334. id="0"
  4335. name="German"
  4336. package="4"
  4337. />
  4338. <otaLanguage
  4339. id="0"
  4340. name="Dutch"
  4341. package="5"
  4342. />
  4343. <otaLanguage
  4344. id="0"
  4345. name="Russian"
  4346. package="6"
  4347. />
  4348. <otaLanguage
  4349. id="0"
  4350. name="Chinese"
  4351. package="7"
  4352. />
  4353. <otaLanguage
  4354. id="0"
  4355. name="Korean"
  4356. package="8"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="Japanese"
  4361. package="9"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Finnish"
  4366. package="10"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Polish"
  4371. package="11"
  4372. />
  4373. </otaLanguages>
  4374. <otaPackages>
  4375. <package
  4376. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4377. size="5183988"
  4378. />
  4379. <package
  4380. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4421. size="5183988"
  4422. />
  4423. </otaPackages>
  4424. </productMenu>
  4425. <productMenu id="meshIntercom"
  4426. type="30" >
  4427. </productMenu>
  4428. <productMenu id="meshIntercom+"
  4429. type="3"
  4430. url="2" >
  4431. </productMenu>
  4432. <productMenu id="waveIntercom"
  4433. type="1" >
  4434. </productMenu>
  4435. <productMenu id="fmradio"
  4436. type="1"
  4437. url="1" >
  4438. </productMenu>
  4439. <productMenu id="phone"
  4440. type="1" >
  4441. </productMenu>
  4442. <productMenu id="music"
  4443. type="1" >
  4444. </productMenu>
  4445. <productMenu id="musicSharing"
  4446. type="0" >
  4447. </productMenu>
  4448. <productMenu id="deviceSetting"
  4449. type="1"
  4450. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4451. </productMenu>
  4452. <productMenu id="quickGuide"
  4453. type="0"
  4454. url=""
  4455. size="1.12MB" >
  4456. </productMenu>
  4457. <productMenu id="userGuide"
  4458. type="1"
  4459. url=""
  4460. size="2.0MB" >
  4461. </productMenu>
  4462. <productMenu id="videoGuide"
  4463. type="0"
  4464. url=""
  4465. size="3.41MB" >
  4466. </productMenu>
  4467. <productMenu id="volume"
  4468. type="16" >
  4469. </productMenu>
  4470. <productMenu id="volume+"
  4471. type="2"
  4472. url="0x6004" >
  4473. </productMenu>
  4474. <productMenu id="appearance"
  4475. type="1"
  4476. url="2|white,silver,chrome,black" >
  4477. </productMenu>
  4478. <productMenu id="battery"
  4479. type="1" >
  4480. </productMenu>
  4481. <productID id="6A07"
  4482. />
  4483. <productGroupable type="0"
  4484. />
  4485. </product>
  4486. <product id="XFITM"
  4487. name="X-FIT M"
  4488. series="SPIDER"
  4489. latestVersion="0.1.11"
  4490. latestVersionVoicePrompt="1.1"
  4491. show = "-1" >
  4492. <productMenu id="protocol"
  4493. type="2" >
  4494. </productMenu>
  4495. <productMenu id="ota"
  4496. type="0" >
  4497. <otaLanguages>
  4498. <otaLanguage
  4499. id="0"
  4500. name="English"
  4501. package="0"
  4502. />
  4503. <otaLanguage
  4504. id="0"
  4505. name="French"
  4506. package="1"
  4507. />
  4508. <otaLanguage
  4509. id="0"
  4510. name="Spanish"
  4511. package="2"
  4512. />
  4513. <otaLanguage
  4514. id="0"
  4515. name="Italian"
  4516. package="3"
  4517. />
  4518. <otaLanguage
  4519. id="0"
  4520. name="German"
  4521. package="4"
  4522. />
  4523. <otaLanguage
  4524. id="0"
  4525. name="Dutch"
  4526. package="5"
  4527. />
  4528. <otaLanguage
  4529. id="0"
  4530. name="Russian"
  4531. package="6"
  4532. />
  4533. <otaLanguage
  4534. id="0"
  4535. name="Chinese"
  4536. package="7"
  4537. />
  4538. <otaLanguage
  4539. id="0"
  4540. name="Korean"
  4541. package="8"
  4542. />
  4543. <otaLanguage
  4544. id="0"
  4545. name="Japanese"
  4546. package="9"
  4547. />
  4548. <otaLanguage
  4549. id="0"
  4550. name="Finnish"
  4551. package="10"
  4552. />
  4553. <otaLanguage
  4554. id="0"
  4555. name="Polish"
  4556. package="11"
  4557. />
  4558. </otaLanguages>
  4559. <otaPackages>
  4560. <package
  4561. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4562. size="5183988"
  4563. />
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4602. size="5183988"
  4603. />
  4604. <package
  4605. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4606. size="5183988"
  4607. />
  4608. </otaPackages>
  4609. </productMenu>
  4610. <productMenu id="meshIntercom"
  4611. type="30" >
  4612. </productMenu>
  4613. <productMenu id="meshIntercom+"
  4614. type="3"
  4615. url="2" >
  4616. </productMenu>
  4617. <productMenu id="waveIntercom"
  4618. type="1" >
  4619. </productMenu>
  4620. <productMenu id="fmradio"
  4621. type="1"
  4622. url="1" >
  4623. </productMenu>
  4624. <productMenu id="phone"
  4625. type="1" >
  4626. </productMenu>
  4627. <productMenu id="music"
  4628. type="1" >
  4629. </productMenu>
  4630. <productMenu id="musicSharing"
  4631. type="0" >
  4632. </productMenu>
  4633. <productMenu id="deviceSetting"
  4634. type="1"
  4635. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4636. </productMenu>
  4637. <productMenu id="quickGuide"
  4638. type="0"
  4639. url=""
  4640. size="1.12MB" >
  4641. </productMenu>
  4642. <productMenu id="userGuide"
  4643. type="1"
  4644. url=""
  4645. size="2.0MB" >
  4646. </productMenu>
  4647. <productMenu id="videoGuide"
  4648. type="0"
  4649. url=""
  4650. size="3.41MB" >
  4651. </productMenu>
  4652. <productMenu id="volume"
  4653. type="16" >
  4654. </productMenu>
  4655. <productMenu id="volume+"
  4656. type="2"
  4657. url="0x6004" >
  4658. </productMenu>
  4659. <productMenu id="battery"
  4660. type="1" >
  4661. </productMenu>
  4662. <productID id="6A17"
  4663. />
  4664. <productGroupable type="0"
  4665. />
  4666. </product>
  4667. <product id="VORTEXMESH"
  4668. name="VORTEX MESH"
  4669. series="Helmet"
  4670. latestVersion="0.1.11"
  4671. latestVersionVoicePrompt="1.1"
  4672. show = "-1" >
  4673. <productMenu id="protocol"
  4674. type="2" >
  4675. </productMenu>
  4676. <productMenu id="ota"
  4677. type="0" >
  4678. <otaLanguages>
  4679. <otaLanguage
  4680. id="0"
  4681. name="English"
  4682. package="0"
  4683. />
  4684. <otaLanguage
  4685. id="0"
  4686. name="French"
  4687. package="1"
  4688. />
  4689. <otaLanguage
  4690. id="0"
  4691. name="Spanish"
  4692. package="2"
  4693. />
  4694. <otaLanguage
  4695. id="0"
  4696. name="Italian"
  4697. package="3"
  4698. />
  4699. <otaLanguage
  4700. id="0"
  4701. name="German"
  4702. package="4"
  4703. />
  4704. <otaLanguage
  4705. id="0"
  4706. name="Dutch"
  4707. package="5"
  4708. />
  4709. <otaLanguage
  4710. id="0"
  4711. name="Russian"
  4712. package="6"
  4713. />
  4714. <otaLanguage
  4715. id="0"
  4716. name="Chinese"
  4717. package="7"
  4718. />
  4719. <otaLanguage
  4720. id="0"
  4721. name="Korean"
  4722. package="8"
  4723. />
  4724. <otaLanguage
  4725. id="0"
  4726. name="Japanese"
  4727. package="9"
  4728. />
  4729. <otaLanguage
  4730. id="0"
  4731. name="Finnish"
  4732. package="10"
  4733. />
  4734. <otaLanguage
  4735. id="0"
  4736. name="Polish"
  4737. package="11"
  4738. />
  4739. </otaLanguages>
  4740. <otaPackages>
  4741. <package
  4742. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4743. size="5183988"
  4744. />
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4759. size="5183988"
  4760. />
  4761. <package
  4762. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4763. size="5183988"
  4764. />
  4765. <package
  4766. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4767. size="5183988"
  4768. />
  4769. <package
  4770. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4771. size="5183988"
  4772. />
  4773. <package
  4774. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4775. size="5183988"
  4776. />
  4777. <package
  4778. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4779. size="5183988"
  4780. />
  4781. <package
  4782. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4783. size="5183988"
  4784. />
  4785. <package
  4786. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4787. size="5183988"
  4788. />
  4789. </otaPackages>
  4790. </productMenu>
  4791. <productMenu id="wa"
  4792. type="0" >
  4793. </productMenu>
  4794. <productMenu id="led"
  4795. type="5" >
  4796. </productMenu>
  4797. <productMenu id="led+"
  4798. type="2"
  4799. url="1" >
  4800. </productMenu>
  4801. <productMenu id="meshIntercom"
  4802. type="30" >
  4803. </productMenu>
  4804. <productMenu id="meshIntercom+"
  4805. type="3"
  4806. url="2" >
  4807. </productMenu>
  4808. <productMenu id="waveIntercom"
  4809. type="1" >
  4810. </productMenu>
  4811. <productMenu id="fmradio"
  4812. type="0" >
  4813. </productMenu>
  4814. <productMenu id="phone"
  4815. type="1" >
  4816. </productMenu>
  4817. <productMenu id="music"
  4818. type="1" >
  4819. </productMenu>
  4820. <productMenu id="musicSharing"
  4821. type="0" >
  4822. </productMenu>
  4823. <productMenu id="deviceSetting"
  4824. type="1"
  4825. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4826. </productMenu>
  4827. <productMenu id="quickGuide"
  4828. type="0"
  4829. url=""
  4830. size="1.12MB" >
  4831. </productMenu>
  4832. <productMenu id="userGuide"
  4833. type="1"
  4834. url=""
  4835. size="2.0MB" >
  4836. </productMenu>
  4837. <productMenu id="videoGuide"
  4838. type="0"
  4839. url=""
  4840. size="3.41MB" >
  4841. </productMenu>
  4842. <productMenu id="volume"
  4843. type="16" >
  4844. </productMenu>
  4845. <productMenu id="battery"
  4846. type="1" >
  4847. </productMenu>
  4848. <productID id="6A12"
  4849. />
  4850. <productGroupable type="0"
  4851. />
  4852. </product>
  4853. <product id="MeshOn"
  4854. name="Mesh ON"
  4855. series="60"
  4856. latestVersion="1.0.1"
  4857. latestVersionVoicePrompt="0.7"
  4858. show = "-1" >
  4859. <productMenu id="protocol"
  4860. type="2" >
  4861. </productMenu>
  4862. <productMenu id="ota"
  4863. type="2" >
  4864. <otaPackages>
  4865. <package
  4866. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4867. size="2945812"
  4868. />
  4869. </otaPackages>
  4870. </productMenu>
  4871. <productMenu id="meshIntercom+"
  4872. type="3"
  4873. url="4" >
  4874. </productMenu>
  4875. <productMenu id="waveIntercom"
  4876. type="0" >
  4877. </productMenu>
  4878. <productMenu id="phone"
  4879. type="0" >
  4880. </productMenu>
  4881. <productMenu id="music"
  4882. type="0" >
  4883. </productMenu>
  4884. <productMenu id="musicSharing"
  4885. type="0" >
  4886. </productMenu>
  4887. <productMenu id="deviceSetting"
  4888. type="1"
  4889. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4890. </productMenu>
  4891. <productMenu id="userGuide"
  4892. type="1"
  4893. url=""
  4894. size="2.0MB" >
  4895. </productMenu>
  4896. <productMenu id="bluetoothHeadset"
  4897. type="1"
  4898. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4899. </productMenu>
  4900. <productMenu id="volume"
  4901. type="0" >
  4902. </productMenu>
  4903. <productMenu id="battery"
  4904. type="1" >
  4905. </productMenu>
  4906. <productID id="684E"
  4907. />
  4908. <productGroupable type="0"
  4909. />
  4910. </product>
  4911. <product id="Impulse"
  4912. name="Impulse"
  4913. series="Helmet"
  4914. latestVersion="1.4.1"
  4915. show = "1" >
  4916. <productMenu id="protocol"
  4917. type="2" >
  4918. </productMenu>
  4919. <productMenu id="alexa"
  4920. type="0" >
  4921. </productMenu>
  4922. <productMenu id="ota"
  4923. type="0" >
  4924. </productMenu>
  4925. <productMenu id="wa"
  4926. type="24" >
  4927. </productMenu>
  4928. <productMenu id="manager"
  4929. type="0" >
  4930. </productMenu>
  4931. <productMenu id="sip"
  4932. type="1" >
  4933. </productMenu>
  4934. <productMenu id="led"
  4935. type="1" >
  4936. <productMenuType version="1.0.1"
  4937. type="2"
  4938. />
  4939. <productMenuType version="1.0"
  4940. type="1"
  4941. />
  4942. </productMenu>
  4943. <productMenu id="meshIntercom"
  4944. type="30" >
  4945. <productMenuType version="1.1.1"
  4946. type="20"
  4947. />
  4948. </productMenu>
  4949. <productMenu id="meshIntercom+"
  4950. type="3"
  4951. url="2" >
  4952. <productMenuType version="1.3.9"
  4953. type="2"
  4954. />
  4955. <productMenuURL version="1.1.1"
  4956. url="0"
  4957. />
  4958. </productMenu>
  4959. <productMenu id="waveIntercom"
  4960. type="1" >
  4961. <productMenuType version="1.3.9"
  4962. type="0"
  4963. />
  4964. </productMenu>
  4965. <productMenu id="bluetoothIntercom"
  4966. type="1" >
  4967. </productMenu>
  4968. <productMenu id="phone"
  4969. type="1" >
  4970. </productMenu>
  4971. <productMenu id="music"
  4972. type="1" >
  4973. </productMenu>
  4974. <productMenu id="fmradio"
  4975. type="1" >
  4976. </productMenu>
  4977. <productMenu id="deviceSetting"
  4978. type="1"
  4979. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4980. <productMenuURL version="1.3.9"
  4981. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4982. />
  4983. <productMenuURL version="1.1.1"
  4984. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4985. />
  4986. <productMenuURL version="1.0.4"
  4987. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4988. />
  4989. </productMenu>
  4990. <productMenu id="quickGuide"
  4991. type="0"
  4992. url=""
  4993. size="344KB" >
  4994. </productMenu>
  4995. <productMenu id="userGuide"
  4996. type="1"
  4997. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4998. size="3.41MB" >
  4999. </productMenu>
  5000. <productMenu id="connectGuide"
  5001. type="1"
  5002. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5003. size="1.12MB" >
  5004. </productMenu>
  5005. <productMenu id="volume"
  5006. type="11" >
  5007. </productMenu>
  5008. <productMenu id="battery"
  5009. type="1" >
  5010. </productMenu>
  5011. <productID id="3148"
  5012. />
  5013. <productGroupable type="0"
  5014. />
  5015. </product>
  5016. <product id="Impulse"
  5017. name="Impulse"
  5018. series="Helmet"
  5019. latestVersion="2.0"
  5020. show = "-1" >
  5021. <productMenu id="protocol"
  5022. type="2" >
  5023. </productMenu>
  5024. <productMenu id="alexa"
  5025. type="0" >
  5026. </productMenu>
  5027. <productMenu id="ota"
  5028. type="0" >
  5029. </productMenu>
  5030. <productMenu id="wa"
  5031. type="8" >
  5032. </productMenu>
  5033. <productMenu id="manager"
  5034. type="0" >
  5035. </productMenu>
  5036. <productMenu id="sip"
  5037. type="1" >
  5038. </productMenu>
  5039. <productMenu id="led"
  5040. type="3" >
  5041. </productMenu>
  5042. <productMenu id="meshIntercom"
  5043. type="20" >
  5044. </productMenu>
  5045. <productMenu id="bluetoothIntercom"
  5046. type="1" >
  5047. </productMenu>
  5048. <productMenu id="phone"
  5049. type="1" >
  5050. </productMenu>
  5051. <productMenu id="music"
  5052. type="1" >
  5053. </productMenu>
  5054. <productMenu id="fmradio"
  5055. type="1" >
  5056. </productMenu>
  5057. <productMenu id="deviceSetting"
  5058. type="1"
  5059. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5060. </productMenu>
  5061. <productMenu id="quickGuide"
  5062. type="1"
  5063. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5064. size="344KB" >
  5065. </productMenu>
  5066. <productMenu id="userGuide"
  5067. type="1"
  5068. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5069. size="3.41MB" >
  5070. </productMenu>
  5071. <productMenu id="volume"
  5072. type="11" >
  5073. </productMenu>
  5074. <productMenu id="battery"
  5075. type="1" >
  5076. </productMenu>
  5077. <productID id="3221"
  5078. />
  5079. <productGroupable type="0"
  5080. />
  5081. </product>
  5082. <product id="Stryker"
  5083. name="Stryker"
  5084. series="Helmet"
  5085. latestVersion="1.4.1"
  5086. show = "1" >
  5087. <productMenu id="protocol"
  5088. type="2" >
  5089. </productMenu>
  5090. <productMenu id="alexa"
  5091. type="0" >
  5092. </productMenu>
  5093. <productMenu id="ota"
  5094. type="0" >
  5095. </productMenu>
  5096. <productMenu id="wa"
  5097. type="40" >
  5098. </productMenu>
  5099. <productMenu id="manager"
  5100. type="0" >
  5101. </productMenu>
  5102. <productMenu id="sip"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="led"
  5106. type="1" >
  5107. <productMenuType version="1.0.1"
  5108. type="2"
  5109. />
  5110. <productMenuType version="1.0"
  5111. type="1"
  5112. />
  5113. </productMenu>
  5114. <productMenu id="meshIntercom"
  5115. type="30" >
  5116. <productMenuType version="1.1.1"
  5117. type="20"
  5118. />
  5119. </productMenu>
  5120. <productMenu id="meshIntercom+"
  5121. type="3"
  5122. url="2" >
  5123. <productMenuType version="1.3.9"
  5124. type="2"
  5125. />
  5126. <productMenuURL version="1.1.1"
  5127. url="0"
  5128. />
  5129. </productMenu>
  5130. <productMenu id="waveIntercom"
  5131. type="1" >
  5132. <productMenuType version="1.2.9"
  5133. type="0"
  5134. />
  5135. </productMenu>
  5136. <productMenu id="bluetoothIntercom"
  5137. type="1" >
  5138. </productMenu>
  5139. <productMenu id="phone"
  5140. type="1" >
  5141. </productMenu>
  5142. <productMenu id="music"
  5143. type="1" >
  5144. </productMenu>
  5145. <productMenu id="fmradio"
  5146. type="1" >
  5147. </productMenu>
  5148. <productMenu id="deviceSetting"
  5149. type="1"
  5150. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5151. <productMenuURL version="1.3.9"
  5152. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5153. />
  5154. <productMenuURL version="1.1.1"
  5155. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5156. />
  5157. <productMenuURL version="1.0.4"
  5158. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5159. />
  5160. </productMenu>
  5161. <productMenu id="quickGuide"
  5162. type="0"
  5163. url=""
  5164. size="344KB" >
  5165. </productMenu>
  5166. <productMenu id="userGuide"
  5167. type="1"
  5168. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5169. size="3.41MB" >
  5170. </productMenu>
  5171. <productMenu id="connectGuide"
  5172. type="1"
  5173. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5174. size="1.12MB" >
  5175. </productMenu>
  5176. <productMenu id="volume"
  5177. type="11" >
  5178. </productMenu>
  5179. <productMenu id="battery"
  5180. type="1" >
  5181. </productMenu>
  5182. <productID id="3154"
  5183. />
  5184. <productGroupable type="0"
  5185. />
  5186. </product>
  5187. <product id="SRL3Plus"
  5188. name="SRL3 Plus"
  5189. series="60"
  5190. latestVersion="0.9.5"
  5191. latestVersionMesh="0.19"
  5192. latestVersionVoicePrompt="1.2"
  5193. show = "-1" >
  5194. <productMenu id="protocol"
  5195. type="2" >
  5196. </productMenu>
  5197. <productMenu id="ota"
  5198. type="2" >
  5199. <otaLanguages>
  5200. <otaLanguage
  5201. id="0"
  5202. name="English"
  5203. package="0"
  5204. />
  5205. <otaLanguage
  5206. id="0"
  5207. name="French"
  5208. package="1"
  5209. />
  5210. <otaLanguage
  5211. id="0"
  5212. name="Spanish"
  5213. package="2"
  5214. />
  5215. <otaLanguage
  5216. id="0"
  5217. name="Italian"
  5218. package="3"
  5219. />
  5220. <otaLanguage
  5221. id="0"
  5222. name="German"
  5223. package="4"
  5224. />
  5225. <otaLanguage
  5226. id="0"
  5227. name="Dutch"
  5228. package="5"
  5229. />
  5230. <otaLanguage
  5231. id="0"
  5232. name="Russian"
  5233. package="6"
  5234. />
  5235. <otaLanguage
  5236. id="0"
  5237. name="Chinese"
  5238. package="7"
  5239. />
  5240. <otaLanguage
  5241. id="0"
  5242. name="Korean"
  5243. package="8"
  5244. />
  5245. <otaLanguage
  5246. id="0"
  5247. name="Japanese"
  5248. package="9"
  5249. />
  5250. <otaLanguage
  5251. id="0"
  5252. name="Finnish"
  5253. package="10"
  5254. />
  5255. </otaLanguages>
  5256. <otaPackages>
  5257. <package
  5258. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5259. size="5183988"
  5260. />
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5271. size="5183988"
  5272. />
  5273. <package
  5274. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5275. size="5183988"
  5276. />
  5277. <package
  5278. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5279. size="5183988"
  5280. />
  5281. <package
  5282. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5283. size="5183988"
  5284. />
  5285. <package
  5286. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5287. size="5183988"
  5288. />
  5289. <package
  5290. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5295. size="5183988"
  5296. />
  5297. <package
  5298. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5299. size="5183988"
  5300. />
  5301. </otaPackages>
  5302. </productMenu>
  5303. <productMenu id="sip"
  5304. type="1" >
  5305. </productMenu>
  5306. <productMenu id="illusion"
  5307. type="1" >
  5308. </productMenu>
  5309. <productMenu id="meshIntercom+"
  5310. type="3"
  5311. url="2" >
  5312. </productMenu>
  5313. <productMenu id="waveIntercom"
  5314. type="1" >
  5315. </productMenu>
  5316. <productMenu id="bluetoothIntercom"
  5317. type="1"
  5318. url="2" >
  5319. </productMenu>
  5320. <productMenu id="bluetoothIntercomGrouping"
  5321. type="0" >
  5322. </productMenu>
  5323. <productMenu id="fmradio"
  5324. type="1"
  5325. url="1" >
  5326. </productMenu>
  5327. <productMenu id="phone"
  5328. type="1" >
  5329. </productMenu>
  5330. <productMenu id="music"
  5331. type="1" >
  5332. </productMenu>
  5333. <productMenu id="musicSharing"
  5334. type="0" >
  5335. </productMenu>
  5336. <productMenu id="deviceSetting"
  5337. type="1"
  5338. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5339. </productMenu>
  5340. <productMenu id="quickGuide"
  5341. type="0"
  5342. url=""
  5343. size="1.12MB" >
  5344. </productMenu>
  5345. <productMenu id="userGuide"
  5346. type="0"
  5347. url=""
  5348. size="2.0MB" >
  5349. </productMenu>
  5350. <productMenu id="videoGuide"
  5351. type="0"
  5352. url=""
  5353. size="3.41MB" >
  5354. </productMenu>
  5355. <productMenu id="volume"
  5356. type="16" >
  5357. </productMenu>
  5358. <productMenu id="soundMode"
  5359. type="1" >
  5360. </productMenu>
  5361. <productMenu id="battery"
  5362. type="1" >
  5363. </productMenu>
  5364. <productID id="6A08"
  5365. />
  5366. <productGroupable type="0"
  5367. />
  5368. </product>
  5369. <product id="SRL3"
  5370. name="SRL3"
  5371. series="SRL"
  5372. latestVersion="1.5"
  5373. show = "1" >
  5374. <productMenu id="protocol"
  5375. type="2" >
  5376. </productMenu>
  5377. <productMenu id="alexa"
  5378. type="0" >
  5379. </productMenu>
  5380. <productMenu id="ota"
  5381. type="0" >
  5382. </productMenu>
  5383. <productMenu id="wa"
  5384. type="1" >
  5385. </productMenu>
  5386. <productMenu id="sip"
  5387. type="1" >
  5388. </productMenu>
  5389. <productMenu id="meshIntercom"
  5390. type="30" >
  5391. </productMenu>
  5392. <productMenu id="meshIntercom+"
  5393. type="3"
  5394. url="2" >
  5395. <productMenuType version="1.3.9"
  5396. type="2"
  5397. />
  5398. </productMenu>
  5399. <productMenu id="waveIntercom"
  5400. type="1" >
  5401. <productMenuType version="1.4.9"
  5402. type="0"
  5403. />
  5404. </productMenu>
  5405. <productMenu id="bluetoothIntercom"
  5406. type="1" >
  5407. </productMenu>
  5408. <productMenu id="phone"
  5409. type="1" >
  5410. </productMenu>
  5411. <productMenu id="music"
  5412. type="1" >
  5413. </productMenu>
  5414. <productMenu id="fmradio"
  5415. type="1" >
  5416. </productMenu>
  5417. <productMenu id="deviceSetting"
  5418. type="1"
  5419. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5420. <productMenuURL version="1.3"
  5421. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5422. />
  5423. </productMenu>
  5424. <productMenu id="quickGuide"
  5425. type="0"
  5426. url=""
  5427. size="344KB" >
  5428. </productMenu>
  5429. <productMenu id="userGuide"
  5430. type="1"
  5431. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5432. size="3.41MB" >
  5433. </productMenu>
  5434. <productMenu id="connectGuide"
  5435. type="1"
  5436. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5437. size="1.12MB" >
  5438. </productMenu>
  5439. <productMenu id="volume"
  5440. type="11" >
  5441. </productMenu>
  5442. <productMenu id="battery"
  5443. type="1" >
  5444. </productMenu>
  5445. <productID id="3219"
  5446. />
  5447. <productGroupable type="0"
  5448. />
  5449. </product>
  5450. <product id="SRL_Mesh"
  5451. name="SRL-Mesh"
  5452. series="SRL"
  5453. latestVersion="1.7.1"
  5454. show = "1" >
  5455. <productMenu id="protocol"
  5456. type="2" >
  5457. </productMenu>
  5458. <productMenu id="alexa"
  5459. type="0" >
  5460. </productMenu>
  5461. <productMenu id="ota"
  5462. type="0" >
  5463. </productMenu>
  5464. <productMenu id="wa"
  5465. type="1" >
  5466. </productMenu>
  5467. <productMenu id="sip"
  5468. type="1" >
  5469. </productMenu>
  5470. <productMenu id="meshIntercom"
  5471. type="30" >
  5472. <productMenuType version="1.1.1"
  5473. type="20"
  5474. />
  5475. </productMenu>
  5476. <productMenu id="meshIntercom+"
  5477. type="3"
  5478. url="2" >
  5479. <productMenuType version="1.5.9"
  5480. type="2"
  5481. />
  5482. <productMenuURL version="1.1.1"
  5483. url="0"
  5484. />
  5485. </productMenu>
  5486. <productMenu id="waveIntercom"
  5487. type="1" >
  5488. <productMenuType version="1.6.9"
  5489. type="0"
  5490. />
  5491. </productMenu>
  5492. <productMenu id="bluetoothIntercom"
  5493. type="1" >
  5494. </productMenu>
  5495. <productMenu id="phone"
  5496. type="1" >
  5497. </productMenu>
  5498. <productMenu id="music"
  5499. type="1" >
  5500. </productMenu>
  5501. <productMenu id="fmradio"
  5502. type="1" >
  5503. </productMenu>
  5504. <productMenu id="deviceSetting"
  5505. type="1"
  5506. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5507. <productMenuURL version="1.5"
  5508. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5509. />
  5510. <productMenuURL version="1.1.1"
  5511. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5512. />
  5513. <productMenuURL version="1.0.3"
  5514. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5515. />
  5516. </productMenu>
  5517. <productMenu id="quickGuide"
  5518. type="0"
  5519. url=""
  5520. size="344KB" >
  5521. </productMenu>
  5522. <productMenu id="userGuide"
  5523. type="1"
  5524. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5525. size="3.41MB" >
  5526. </productMenu>
  5527. <productMenu id="connectGuide"
  5528. type="1"
  5529. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5530. size="1.12MB" >
  5531. </productMenu>
  5532. <productMenu id="volume"
  5533. type="11" >
  5534. </productMenu>
  5535. <productMenu id="battery"
  5536. type="1" >
  5537. </productMenu>
  5538. <productID id="3216"
  5539. />
  5540. <productGroupable type="0"
  5541. />
  5542. </product>
  5543. <product id="SRL_EXT"
  5544. name="SRL-EXT"
  5545. series="SRL"
  5546. latestVersion="1.7.1"
  5547. show = "1" >
  5548. <productMenu id="protocol"
  5549. type="2" >
  5550. </productMenu>
  5551. <productMenu id="alexa"
  5552. type="0" >
  5553. </productMenu>
  5554. <productMenu id="ota"
  5555. type="0" >
  5556. </productMenu>
  5557. <productMenu id="wa"
  5558. type="0" >
  5559. </productMenu>
  5560. <productMenu id="sip"
  5561. type="1" >
  5562. </productMenu>
  5563. <productMenu id="meshIntercom"
  5564. type="30" >
  5565. <productMenuType version="1.1.1"
  5566. type="20"
  5567. />
  5568. </productMenu>
  5569. <productMenu id="meshIntercom+"
  5570. type="3"
  5571. url="2" >
  5572. <productMenuType version="1.5.9"
  5573. type="2"
  5574. />
  5575. <productMenuURL version="1.1.1"
  5576. url="0"
  5577. />
  5578. </productMenu>
  5579. <productMenu id="waveIntercom"
  5580. type="1" >
  5581. <productMenuType version="1.6.9"
  5582. type="0"
  5583. />
  5584. </productMenu>
  5585. <productMenu id="bluetoothIntercom"
  5586. type="1" >
  5587. </productMenu>
  5588. <productMenu id="phone"
  5589. type="1" >
  5590. </productMenu>
  5591. <productMenu id="music"
  5592. type="1" >
  5593. </productMenu>
  5594. <productMenu id="fmradio"
  5595. type="1" >
  5596. </productMenu>
  5597. <productMenu id="deviceSetting"
  5598. type="1"
  5599. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5600. <productMenuURL version="1.5"
  5601. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5602. />
  5603. <productMenuURL version="1.1.1"
  5604. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5605. />
  5606. <productMenuURL version="1.0.3"
  5607. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5608. />
  5609. </productMenu>
  5610. <productMenu id="quickGuide"
  5611. type="0"
  5612. url=""
  5613. size="344KB" >
  5614. </productMenu>
  5615. <productMenu id="userGuide"
  5616. type="1"
  5617. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5618. size="3.41MB" >
  5619. </productMenu>
  5620. <productMenu id="connectGuide"
  5621. type="1"
  5622. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5623. size="1.12MB" >
  5624. </productMenu>
  5625. <productMenu id="volume"
  5626. type="11" >
  5627. </productMenu>
  5628. <productMenu id="battery"
  5629. type="1" >
  5630. </productMenu>
  5631. <productID id="3212"
  5632. />
  5633. <productGroupable type="0"
  5634. />
  5635. </product>
  5636. <product id="SRL2"
  5637. name="SRL2"
  5638. series="SRL"
  5639. latestVersion="1.0.9"
  5640. show = "1" >
  5641. <productMenu id="protocol"
  5642. type="0">
  5643. </productMenu>
  5644. <productMenu id="sip"
  5645. type="1" >
  5646. </productMenu>
  5647. <productMenu id="bluetoothIntercom"
  5648. type="1" >
  5649. </productMenu>
  5650. <productMenu id="intercomSetting"
  5651. type="1" >
  5652. </productMenu>
  5653. <productMenu id="phone"
  5654. type="2" >
  5655. </productMenu>
  5656. <productMenu id="fmradio"
  5657. type="3" >
  5658. </productMenu>
  5659. <productMenu id="deviceSetting"
  5660. type="1"
  5661. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5662. </productMenu>
  5663. <productMenu id="quickGuide"
  5664. type="1"
  5665. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5666. size="846KB" >
  5667. </productMenu>
  5668. <productMenu id="userGuide"
  5669. type="1"
  5670. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5671. size="1.18MB" >
  5672. </productMenu>
  5673. <productMenu id="connectGuide"
  5674. type="1"
  5675. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5676. size="1.12MB" >
  5677. </productMenu>
  5678. <productID id="4530"
  5679. />
  5680. <productGroupable type="1"
  5681. />
  5682. </product>
  5683. <product id="Neotec2"
  5684. name="SRL Neotec2"
  5685. series="SRL"
  5686. latestVersion="1.1.5"
  5687. show = "1" >
  5688. <productMenu id="protocol"
  5689. type="0">
  5690. </productMenu>
  5691. <productMenu id="sip"
  5692. type="1" >
  5693. </productMenu>
  5694. <productMenu id="bluetoothIntercom"
  5695. type="1" >
  5696. </productMenu>
  5697. <productMenu id="intercomSetting"
  5698. type="1" >
  5699. </productMenu>
  5700. <productMenu id="phone"
  5701. type="2" >
  5702. </productMenu>
  5703. <productMenu id="fmradio"
  5704. type="3" >
  5705. </productMenu>
  5706. <productMenu id="deviceSetting"
  5707. type="1"
  5708. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5709. </productMenu>
  5710. <productMenu id="quickGuide"
  5711. type="0"
  5712. url=""
  5713. size="796KB" >
  5714. </productMenu>
  5715. <productMenu id="userGuide"
  5716. type="1"
  5717. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5718. size="1.90MB" >
  5719. </productMenu>
  5720. <productMenu id="connectGuide"
  5721. type="1"
  5722. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5723. size="1.12MB" >
  5724. </productMenu>
  5725. <productID id="4510"
  5726. />
  5727. <productGroupable type="1"
  5728. />
  5729. </product>
  5730. <product id="SPIDERST2ANC"
  5731. name="SPIDER ST2 ANC"
  5732. series="SPIDER"
  5733. latestVersion="0.5.1"
  5734. latestVersionVoicePrompt="0.2"
  5735. latestVersionMesh="0.8"
  5736. show = "-1" >
  5737. <productMenu id="protocol"
  5738. type="2" >
  5739. </productMenu>
  5740. <productMenu id="ota"
  5741. type="0" >
  5742. <otaPackages>
  5743. <package
  5744. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5745. size="2945812"
  5746. />
  5747. </otaPackages>
  5748. </productMenu>
  5749. <productMenu id="wa"
  5750. type="0" >
  5751. </productMenu>
  5752. <productMenu id="led"
  5753. type="1" >
  5754. </productMenu>
  5755. <productMenu id="meshIntercom"
  5756. type="30" >
  5757. </productMenu>
  5758. <productMenu id="fmradio"
  5759. type="1" >
  5760. </productMenu>
  5761. <productMenu id="phone"
  5762. type="1" >
  5763. </productMenu>
  5764. <productMenu id="music"
  5765. type="1" >
  5766. </productMenu>
  5767. <productMenu id="musicSharing"
  5768. type="0" >
  5769. </productMenu>
  5770. <productMenu id="deviceSetting"
  5771. type="1"
  5772. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5773. </productMenu>
  5774. <productMenu id="quickGuide"
  5775. type="1"
  5776. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5777. size="1.12MB" >
  5778. </productMenu>
  5779. <productMenu id="userGuide"
  5780. type="1"
  5781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5782. size="2.0MB" >
  5783. </productMenu>
  5784. <productMenu id="videoGuide"
  5785. type="1"
  5786. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5787. size="3.41MB" >
  5788. </productMenu>
  5789. <productMenu id="volume"
  5790. type="12" >
  5791. </productMenu>
  5792. <productMenu id="battery"
  5793. type="1" >
  5794. </productMenu>
  5795. <productID id="6A00"
  5796. />
  5797. <productGroupable type="0"
  5798. />
  5799. </product>
  5800. <product id="SPIDER_ST1"
  5801. name="SPIDER ST1"
  5802. series="SPIDER"
  5803. latestVersion="2.5.3"
  5804. latestVersionVoicePrompt="1.6"
  5805. show = "1" >
  5806. <productMenu id="protocol"
  5807. type="2" >
  5808. </productMenu>
  5809. <productMenu id="alexa"
  5810. type="0" >
  5811. </productMenu>
  5812. <productMenu id="ota"
  5813. type="2" >
  5814. <productMenuType version="2.1.9"
  5815. type="0"
  5816. />
  5817. <otaPackages>
  5818. <package
  5819. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5820. size="2945812"
  5821. />
  5822. </otaPackages>
  5823. </productMenu>
  5824. <productMenu id="wa"
  5825. type="0" >
  5826. </productMenu>
  5827. <productMenu id="meshIntercom"
  5828. type="30" >
  5829. <productMenuType version="2.1.1"
  5830. type="20"
  5831. />
  5832. </productMenu>
  5833. <productMenu id="meshIntercom+"
  5834. type="3"
  5835. url="2" >
  5836. <productMenuType version="2.2.9"
  5837. type="2"
  5838. />
  5839. <productMenuURL version="2.1.1"
  5840. url="0"
  5841. />
  5842. </productMenu>
  5843. <productMenu id="waveIntercom"
  5844. type="1" >
  5845. <productMenuType version="2.3.9"
  5846. type="0"
  5847. />
  5848. </productMenu>
  5849. <productMenu id="phone"
  5850. type="1" >
  5851. </productMenu>
  5852. <productMenu id="music"
  5853. type="1" >
  5854. </productMenu>
  5855. <productMenu id="musicSharing"
  5856. type="0" >
  5857. </productMenu>
  5858. <productMenu id="deviceSetting"
  5859. type="1"
  5860. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5861. <productMenuURL version="2.4.9"
  5862. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5863. />
  5864. <productMenuURL version="2.2.2"
  5865. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5866. />
  5867. <productMenuURL version="2.1.1"
  5868. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5869. />
  5870. </productMenu>
  5871. <productMenu id="quickGuide"
  5872. type="0"
  5873. url=""
  5874. size="1.12MB" >
  5875. </productMenu>
  5876. <productMenu id="userGuide"
  5877. type="1"
  5878. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5879. size="2.0MB" >
  5880. </productMenu>
  5881. <productMenu id="videoGuide"
  5882. type="1"
  5883. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5884. size="3.41MB" >
  5885. </productMenu>
  5886. <productMenu id="connectGuide"
  5887. type="1"
  5888. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5889. size="1.12MB" >
  5890. </productMenu>
  5891. <productMenu id="volume"
  5892. type="12" >
  5893. </productMenu>
  5894. <productMenu id="battery"
  5895. type="1" >
  5896. </productMenu>
  5897. <productID id="6800"
  5898. />
  5899. <productGroupable type="0"
  5900. />
  5901. </product>
  5902. <product id="SPIDER_ST1"
  5903. name="SPIDER ST1"
  5904. series="SPIDER"
  5905. latestVersion="1.2.2"
  5906. show = "-1" >
  5907. <productMenu id="protocol"
  5908. type="2" >
  5909. </productMenu>
  5910. <productMenu id="alexa"
  5911. type="0" >
  5912. </productMenu>
  5913. <productMenu id="ota"
  5914. type="0" >
  5915. </productMenu>
  5916. <productMenu id="wa"
  5917. type="0" >
  5918. </productMenu>
  5919. <productMenu id="meshIntercom"
  5920. type="20" >
  5921. </productMenu>
  5922. <productMenu id="phone"
  5923. type="1" >
  5924. </productMenu>
  5925. <productMenu id="music"
  5926. type="1" >
  5927. </productMenu>
  5928. <productMenu id="deviceSetting"
  5929. type="1"
  5930. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5931. </productMenu>
  5932. <productMenu id="quickGuide"
  5933. type="0"
  5934. url=""
  5935. size="1.12MB" >
  5936. </productMenu>
  5937. <productMenu id="userGuide"
  5938. type="1"
  5939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5940. size="2.0MB" >
  5941. </productMenu>
  5942. <productMenu id="videoGuide"
  5943. type="1"
  5944. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5945. size="3.41MB" >
  5946. </productMenu>
  5947. <productMenu id="volume"
  5948. type="13" >
  5949. <productMenuType version="1.1.6"
  5950. type="14"/>
  5951. </productMenu>
  5952. <productMenu id="battery"
  5953. type="1" >
  5954. </productMenu>
  5955. <productID id="6510"
  5956. />
  5957. <productGroupable type="0"
  5958. />
  5959. </product>
  5960. <product id="SPIDER_RT1"
  5961. name="SPIDER RT1"
  5962. series="SPIDER"
  5963. latestVersion="2.5.3"
  5964. latestVersionVoicePrompt="1.6"
  5965. show = "1" >
  5966. <productMenu id="protocol"
  5967. type="2" >
  5968. </productMenu>
  5969. <productMenu id="alexa"
  5970. type="0" >
  5971. </productMenu>
  5972. <productMenu id="ota"
  5973. type="2" >
  5974. <productMenuType version="2.1.9"
  5975. type="0"
  5976. />
  5977. <otaPackages>
  5978. <package
  5979. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5980. size="2945812"
  5981. />
  5982. </otaPackages>
  5983. </productMenu>
  5984. <productMenu id="wa"
  5985. type="0" >
  5986. </productMenu>
  5987. <productMenu id="meshIntercom"
  5988. type="30" >
  5989. <productMenuType version="2.1.1"
  5990. type="20"
  5991. />
  5992. </productMenu>
  5993. <productMenu id="meshIntercom+"
  5994. type="3"
  5995. url="2" >
  5996. <productMenuType version="2.2.9"
  5997. type="2"
  5998. />
  5999. <productMenuURL version="2.1.1"
  6000. url="0"
  6001. />
  6002. </productMenu>
  6003. <productMenu id="waveIntercom"
  6004. type="1" >
  6005. <productMenuType version="2.3.9"
  6006. type="0"
  6007. />
  6008. </productMenu>
  6009. <productMenu id="phone"
  6010. type="1" >
  6011. </productMenu>
  6012. <productMenu id="music"
  6013. type="1" >
  6014. </productMenu>
  6015. <productMenu id="musicSharing"
  6016. type="0" >
  6017. </productMenu>
  6018. <productMenu id="deviceSetting"
  6019. type="1"
  6020. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6021. <productMenuURL version="2.4.9"
  6022. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6023. />
  6024. <productMenuURL version="2.2.2"
  6025. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6026. />
  6027. <productMenuURL version="2.1.1"
  6028. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6029. />
  6030. </productMenu>
  6031. <productMenu id="quickGuide"
  6032. type="0"
  6033. url=""
  6034. size="1.12MB" >
  6035. </productMenu>
  6036. <productMenu id="userGuide"
  6037. type="1"
  6038. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6039. size="2.0MB" >
  6040. </productMenu>
  6041. <productMenu id="videoGuide"
  6042. type="1"
  6043. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6044. size="3.41MB" >
  6045. </productMenu>
  6046. <productMenu id="connectGuide"
  6047. type="1"
  6048. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6049. size="1.12MB" >
  6050. </productMenu>
  6051. <productMenu id="volume"
  6052. type="12" >
  6053. </productMenu>
  6054. <productMenu id="battery"
  6055. type="1" >
  6056. </productMenu>
  6057. <productID id="6810"
  6058. />
  6059. <productGroupable type="0"
  6060. />
  6061. </product>
  6062. <product id="SPIDER_RT1"
  6063. name="SPIDER RT1"
  6064. series="SPIDER"
  6065. latestVersion="1.2.2"
  6066. show = "-1" >
  6067. <productMenu id="protocol"
  6068. type="2" >
  6069. </productMenu>
  6070. <productMenu id="alexa"
  6071. type="0" >
  6072. </productMenu>
  6073. <productMenu id="ota"
  6074. type="0" >
  6075. </productMenu>
  6076. <productMenu id="wa"
  6077. type="0" >
  6078. </productMenu>
  6079. <productMenu id="meshIntercom"
  6080. type="20" >
  6081. </productMenu>
  6082. <productMenu id="phone"
  6083. type="1" >
  6084. </productMenu>
  6085. <productMenu id="music"
  6086. type="1" >
  6087. </productMenu>
  6088. <productMenu id="deviceSetting"
  6089. type="1"
  6090. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6091. </productMenu>
  6092. <productMenu id="quickGuide"
  6093. type="0"
  6094. url=""
  6095. size="1.32MB" >
  6096. </productMenu>
  6097. <productMenu id="userGuide"
  6098. type="1"
  6099. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6100. size="1.79MB" >
  6101. </productMenu>
  6102. <productMenu id="videoGuide"
  6103. type="1"
  6104. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6105. size="3.41MB" >
  6106. </productMenu>
  6107. <productMenu id="volume"
  6108. type="13" >
  6109. <productMenuType version="1.1.6"
  6110. type="14"/>
  6111. </productMenu>
  6112. <productMenu id="battery"
  6113. type="1" >
  6114. </productMenu>
  6115. <productID id="6500"
  6116. />
  6117. <productGroupable type="0"
  6118. />
  6119. </product>
  6120. <product id="30K"
  6121. name="30K"
  6122. series="30"
  6123. latestVersion="4.5.1"
  6124. show = "1" >
  6125. <productMenu id="protocol"
  6126. type="2" >
  6127. </productMenu>
  6128. <productMenu id="alexa"
  6129. type="0" >
  6130. </productMenu>
  6131. <productMenu id="wa"
  6132. type="1" >
  6133. </productMenu>
  6134. <productMenu id="sip"
  6135. type="1" >
  6136. </productMenu>
  6137. <productMenu id="meshIntercom"
  6138. type="30" >
  6139. <productMenuType version="4.0.4"
  6140. type="20"
  6141. />
  6142. </productMenu>
  6143. <productMenu id="meshIntercom+"
  6144. type="3"
  6145. url="2" >
  6146. <productMenuType version="4.3.9"
  6147. type="2"
  6148. />
  6149. <productMenuURL version="4.0.4"
  6150. url="0"
  6151. />
  6152. </productMenu>
  6153. <productMenu id="waveIntercom"
  6154. type="1" >
  6155. <productMenuType version="4.4.9"
  6156. type="0"
  6157. />
  6158. </productMenu>
  6159. <productMenu id="bluetoothIntercom"
  6160. type="1" >
  6161. </productMenu>
  6162. <productMenu id="phone"
  6163. type="1" >
  6164. </productMenu>
  6165. <productMenu id="music"
  6166. type="1" >
  6167. </productMenu>
  6168. <productMenu id="fmradio"
  6169. type="1" >
  6170. </productMenu>
  6171. <productMenu id="deviceSetting"
  6172. type="1"
  6173. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6174. <productMenuURL version="4.3"
  6175. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6176. />
  6177. <productMenuURL version="4.2"
  6178. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6179. />
  6180. <productMenuURL version="4.0.4"
  6181. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6182. />
  6183. </productMenu>
  6184. <productMenu id="quickGuide"
  6185. type="0"
  6186. url=""
  6187. size="934KB" >
  6188. </productMenu>
  6189. <productMenu id="userGuide"
  6190. type="1"
  6191. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6192. size="1.14MB" >
  6193. </productMenu>
  6194. <productMenu id="connectGuide"
  6195. type="1"
  6196. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6197. size="1.12MB" >
  6198. </productMenu>
  6199. <productMenu id="volume"
  6200. type="11" >
  6201. </productMenu>
  6202. <productMenu id="battery"
  6203. type="1" >
  6204. </productMenu>
  6205. <productID id="3211"
  6206. />
  6207. <productGroupable type="0"
  6208. />
  6209. </product>
  6210. <product id="30K"
  6211. name="30K"
  6212. series="30"
  6213. latestVersion="3.5"
  6214. show = "-1" >
  6215. <productMenu id="protocol"
  6216. type="1"
  6217. url="0">
  6218. </productMenu>
  6219. <productMenu id="wa"
  6220. type="7" >
  6221. </productMenu>
  6222. <productMenu id="sip"
  6223. type="1" >
  6224. </productMenu>
  6225. <productMenu id="meshIntercom"
  6226. type="20" >
  6227. <productMenuType version="2.9.9"
  6228. type="10"
  6229. />
  6230. </productMenu>
  6231. <productMenu id="meshIntercom+"
  6232. type="3"
  6233. url="2" >
  6234. <productMenuType version="3.4.9"
  6235. type="2"
  6236. />
  6237. <productMenuType version="2.9.9"
  6238. type="1"
  6239. />
  6240. <productMenuURL version="3.3.1"
  6241. url="0"
  6242. />
  6243. </productMenu>
  6244. <productMenu id="bluetoothIntercom"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="phone"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="music"
  6251. type="1" >
  6252. </productMenu>
  6253. <productMenu id="fmradio"
  6254. type="1" >
  6255. </productMenu>
  6256. <productMenu id="deviceSetting"
  6257. type="1"
  6258. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6259. <productMenuURL version="3.4.9"
  6260. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6261. />
  6262. <productMenuURL version="3.3.1"
  6263. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6264. />
  6265. <productMenuURL version="3.0.1"
  6266. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6267. />
  6268. <productMenuURL version="2.3.1"
  6269. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6270. />
  6271. <productMenuURL version="2.0"
  6272. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6273. />
  6274. <productMenuURL version="1.0.3"
  6275. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6276. />
  6277. </productMenu>
  6278. <productMenu id="quickGuide"
  6279. type="0"
  6280. url=""
  6281. size="1.06MB" >
  6282. </productMenu>
  6283. <productMenu id="userGuide"
  6284. type="1"
  6285. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6286. size="3.15MB" >
  6287. </productMenu>
  6288. <productMenu id="volume"
  6289. type="1" >
  6290. </productMenu>
  6291. <productID id="3110"
  6292. />
  6293. <productGroupable type="0"
  6294. />
  6295. </product>
  6296. <product id="FURY"
  6297. name="FURY"
  6298. series="Helmet"
  6299. latestVersion="1.0"
  6300. show = "-1" >
  6301. <productMenu id="protocol"
  6302. type="2" >
  6303. </productMenu>
  6304. <productMenu id="alexa"
  6305. type="0" >
  6306. </productMenu>
  6307. <productMenu id="ota"
  6308. type="0" >
  6309. </productMenu>
  6310. <productMenu id="wa"
  6311. type="0" >
  6312. </productMenu>
  6313. <productMenu id="meshIntercom"
  6314. type="20" >
  6315. </productMenu>
  6316. <productMenu id="phone"
  6317. type="1" >
  6318. </productMenu>
  6319. <productMenu id="music"
  6320. type="1" >
  6321. </productMenu>
  6322. <productMenu id="fmradio"
  6323. type="1" >
  6324. </productMenu>
  6325. <productMenu id="deviceSetting"
  6326. type="1"
  6327. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6328. </productMenu>
  6329. <productMenu id="quickGuide"
  6330. type="1"
  6331. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6332. size="1.12MB" >
  6333. </productMenu>
  6334. <productMenu id="userGuide"
  6335. type="1"
  6336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6337. size="2.0MB" >
  6338. </productMenu>
  6339. <productMenu id="volume"
  6340. type="13" >
  6341. </productMenu>
  6342. <productMenu id="battery"
  6343. type="1" >
  6344. </productMenu>
  6345. <productID id="5552"
  6346. />
  6347. <productGroupable type="0"
  6348. />
  6349. </product>
  6350. <product id="MomentumM"
  6351. name="Momentum EVO"
  6352. series="Helmet"
  6353. latestVersion="2.1.2"
  6354. show = "1" >
  6355. <productMenu id="protocol"
  6356. type="1"
  6357. url="0">
  6358. </productMenu>
  6359. <productMenu id="wa"
  6360. type="3" >
  6361. </productMenu>
  6362. <productMenu id="sip"
  6363. type="1" >
  6364. </productMenu>
  6365. <productMenu id="meshIntercom"
  6366. type="20" >
  6367. <productMenuType version="1.9.9"
  6368. type="10"
  6369. />
  6370. </productMenu>
  6371. <productMenu id="bluetoothIntercom"
  6372. type="1" >
  6373. </productMenu>
  6374. <productMenu id="phone"
  6375. type="1" >
  6376. </productMenu>
  6377. <productMenu id="music"
  6378. type="1" >
  6379. </productMenu>
  6380. <productMenu id="fmradio"
  6381. type="1" >
  6382. </productMenu>
  6383. <productMenu id="deviceSetting"
  6384. type="1"
  6385. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6386. <productMenuURL version="1.0.1"
  6387. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6388. />
  6389. </productMenu>
  6390. <productMenu id="quickGuide"
  6391. type="1"
  6392. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6393. size="1.06MB" >
  6394. </productMenu>
  6395. <productMenu id="userGuide"
  6396. type="1"
  6397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6398. size="3.15MB" >
  6399. </productMenu>
  6400. <productMenu id="connectGuide"
  6401. type="1"
  6402. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6403. size="1.12MB" >
  6404. </productMenu>
  6405. <productMenu id="volume"
  6406. type="2" >
  6407. </productMenu>
  6408. <productID id="3116"
  6409. />
  6410. <productGroupable type="0"
  6411. />
  6412. </product>
  6413. <product id="Momentum"
  6414. name="Momentum"
  6415. series="Helmet"
  6416. latestVersion="1.0.9"
  6417. show = "1" >
  6418. <productMenu id="protocol"
  6419. type="0">
  6420. </productMenu>
  6421. <productMenu id="sip"
  6422. type="1" >
  6423. </productMenu>
  6424. <productMenu id="bluetoothIntercom"
  6425. type="1" >
  6426. </productMenu>
  6427. <productMenu id="intercomSetting"
  6428. type="1" >
  6429. </productMenu>
  6430. <productMenu id="phone"
  6431. type="2" >
  6432. </productMenu>
  6433. <productMenu id="fmradio"
  6434. type="3" >
  6435. </productMenu>
  6436. <productMenu id="deviceSetting"
  6437. type="1"
  6438. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6439. </productMenu>
  6440. <productMenu id="quickGuide"
  6441. type="1"
  6442. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6443. size="796KB" >
  6444. </productMenu>
  6445. <productMenu id="userGuide"
  6446. type="1"
  6447. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6448. size="1.90MB" >
  6449. </productMenu>
  6450. <productMenu id="connectGuide"
  6451. type="1"
  6452. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6453. size="1.12MB" >
  6454. </productMenu>
  6455. <productID id="4310"
  6456. />
  6457. <productGroupable type="1"
  6458. />
  6459. </product>
  6460. <product id="Momentum_Pro"
  6461. name="Momentum Pro"
  6462. series="Helmet"
  6463. latestVersion="1.0.6"
  6464. show = "1" >
  6465. <productMenu id="protocol"
  6466. type="0">
  6467. </productMenu>
  6468. <productMenu id="sip"
  6469. type="1" >
  6470. </productMenu>
  6471. <productMenu id="bluetoothIntercom"
  6472. type="1" >
  6473. </productMenu>
  6474. <productMenu id="intercomSetting"
  6475. type="1" >
  6476. </productMenu>
  6477. <productMenu id="phone"
  6478. type="2" >
  6479. </productMenu>
  6480. <productMenu id="fmradio"
  6481. type="3" >
  6482. </productMenu>
  6483. <productMenu id="deviceSetting"
  6484. type="1"
  6485. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6486. </productMenu>
  6487. <productMenu id="quickGuide"
  6488. type="1"
  6489. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6490. size="796KB" >
  6491. </productMenu>
  6492. <productMenu id="userGuide"
  6493. type="1"
  6494. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6495. size="1.90MB" >
  6496. </productMenu>
  6497. <productMenu id="connectGuide"
  6498. type="1"
  6499. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6500. size="1.12MB" >
  6501. </productMenu>
  6502. <productID id="4330"
  6503. />
  6504. <productGroupable type="1"
  6505. />
  6506. </product>
  6507. <product id="Momentum_INC"
  6508. name="Momentum INC"
  6509. series="Helmet"
  6510. latestVersion="1.0.7"
  6511. show = "1" >
  6512. <productMenu id="protocol"
  6513. type="0">
  6514. </productMenu>
  6515. <productMenu id="sip"
  6516. type="1" >
  6517. </productMenu>
  6518. <productMenu id="bluetoothIntercom"
  6519. type="1" >
  6520. </productMenu>
  6521. <productMenu id="intercomSetting"
  6522. type="1" >
  6523. </productMenu>
  6524. <productMenu id="phone"
  6525. type="2" >
  6526. </productMenu>
  6527. <productMenu id="fmradio"
  6528. type="3" >
  6529. </productMenu>
  6530. <productMenu id="deviceSetting"
  6531. type="1"
  6532. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6533. </productMenu>
  6534. <productMenu id="quickGuide"
  6535. type="1"
  6536. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6537. size="794KB" >
  6538. </productMenu>
  6539. <productMenu id="userGuide"
  6540. type="1"
  6541. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6542. size="1.53MB" >
  6543. </productMenu>
  6544. <productMenu id="connectGuide"
  6545. type="1"
  6546. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6547. size="1.12MB" >
  6548. </productMenu>
  6549. <productID id="4410"
  6550. />
  6551. <productGroupable type="1"
  6552. />
  6553. </product>
  6554. <product id="Momentum_INCP"
  6555. name="Momentum INC Pro"
  6556. series="Helmet"
  6557. latestVersion="1.0.4"
  6558. show = "1" >
  6559. <productMenu id="protocol"
  6560. type="0">
  6561. </productMenu>
  6562. <productMenu id="sip"
  6563. type="1" >
  6564. </productMenu>
  6565. <productMenu id="bluetoothIntercom"
  6566. type="1" >
  6567. </productMenu>
  6568. <productMenu id="intercomSetting"
  6569. type="1" >
  6570. </productMenu>
  6571. <productMenu id="phone"
  6572. type="2" >
  6573. </productMenu>
  6574. <productMenu id="fmradio"
  6575. type="3" >
  6576. </productMenu>
  6577. <productMenu id="deviceSetting"
  6578. type="1"
  6579. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6580. </productMenu>
  6581. <productMenu id="quickGuide"
  6582. type="1"
  6583. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6584. size="794KB" >
  6585. </productMenu>
  6586. <productMenu id="userGuide"
  6587. type="1"
  6588. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6589. size="1.53MB" >
  6590. </productMenu>
  6591. <productMenu id="connectGuide"
  6592. type="1"
  6593. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6594. size="1.12MB" >
  6595. </productMenu>
  6596. <productID id="4430"
  6597. />
  6598. <productGroupable type="1"
  6599. />
  6600. </product>
  6601. <product id="Momentum_Lite"
  6602. name="Momentum Lite"
  6603. series="Helmet"
  6604. latestVersion="2.0.3"
  6605. show = "1" >
  6606. <productMenu id="protocol"
  6607. type="0">
  6608. </productMenu>
  6609. <productMenu id="sip"
  6610. type="1" >
  6611. </productMenu>
  6612. <productMenu id="bluetoothIntercom"
  6613. type="1" >
  6614. </productMenu>
  6615. <productMenu id="phone"
  6616. type="2" >
  6617. </productMenu>
  6618. <productMenu id="fmradio"
  6619. type="3" >
  6620. </productMenu>
  6621. <productMenu id="deviceSetting"
  6622. type="1"
  6623. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6624. <productMenuURL version="1.1"
  6625. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6626. />
  6627. </productMenu>
  6628. <productMenu id="quickGuide"
  6629. type="1"
  6630. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6631. size="790KB" >
  6632. </productMenu>
  6633. <productMenu id="userGuide"
  6634. type="1"
  6635. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6636. size="1.42MB" >
  6637. </productMenu>
  6638. <productMenu id="connectGuide"
  6639. type="1"
  6640. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6641. size="1.12MB" >
  6642. </productMenu>
  6643. <productID id="5526"
  6644. />
  6645. <productGroupable type="0"
  6646. />
  6647. </product>
  6648. <product id="OUTRUSHM"
  6649. name="OUTRUSH M"
  6650. series="Helmet"
  6651. latestVersion="1.0"
  6652. show = "-1" >
  6653. <productMenu id="protocol"
  6654. type="2" >
  6655. </productMenu>
  6656. <productMenu id="alexa"
  6657. type="0" >
  6658. </productMenu>
  6659. <productMenu id="ota"
  6660. type="0" >
  6661. </productMenu>
  6662. <productMenu id="wa"
  6663. type="0" >
  6664. </productMenu>
  6665. <productMenu id="meshIntercom"
  6666. type="30" >
  6667. </productMenu>
  6668. <productMenu id="phone"
  6669. type="1" >
  6670. </productMenu>
  6671. <productMenu id="music"
  6672. type="1" >
  6673. </productMenu>
  6674. <productMenu id="fmradio"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="deviceSetting"
  6678. type="1"
  6679. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6680. </productMenu>
  6681. <productMenu id="quickGuide"
  6682. type="1"
  6683. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6684. size="1.12MB" >
  6685. </productMenu>
  6686. <productMenu id="userGuide"
  6687. type="1"
  6688. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6689. size="2.0MB" >
  6690. </productMenu>
  6691. <productMenu id="volume"
  6692. type="13" >
  6693. </productMenu>
  6694. <productMenu id="battery"
  6695. type="1" >
  6696. </productMenu>
  6697. <productID id="5600"
  6698. />
  6699. <productGroupable type="0"
  6700. />
  6701. </product>
  6702. <product id="ProRideEVO"
  6703. name="ProRide EVO"
  6704. series="Helmet"
  6705. latestVersion="1.1.2"
  6706. show = "1" >
  6707. <productMenu id="protocol"
  6708. type="0">
  6709. </productMenu>
  6710. <productMenu id="sip"
  6711. type="1" >
  6712. </productMenu>
  6713. <productMenu id="bluetoothIntercom"
  6714. type="1" >
  6715. </productMenu>
  6716. <productMenu id="phone"
  6717. type="2" >
  6718. </productMenu>
  6719. <productMenu id="fmradio"
  6720. type="3" >
  6721. </productMenu>
  6722. <productMenu id="deviceSetting"
  6723. type="1"
  6724. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6725. </productMenu>
  6726. <productMenu id="userGuide"
  6727. type="1"
  6728. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6729. size="778KB" >
  6730. </productMenu>
  6731. <productMenu id="connectGuide"
  6732. type="1"
  6733. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6734. size="1.12MB" >
  6735. </productMenu>
  6736. <productID id="5426"
  6737. />
  6738. <productGroupable type="0"
  6739. />
  6740. </product>
  6741. <product id="OUTRUSHR"
  6742. name="OUTRUSH R"
  6743. series="Helmet"
  6744. latestVersion="2.1"
  6745. show = "1" >
  6746. <productMenu id="protocol"
  6747. type="3" >
  6748. </productMenu>
  6749. <productMenu id="sip"
  6750. type="1" >
  6751. </productMenu>
  6752. <productMenu id="bluetoothIntercom"
  6753. type="1" >
  6754. </productMenu>
  6755. <productMenu id="phone"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="fmradio"
  6759. type="0" >
  6760. </productMenu>
  6761. <productMenu id="deviceSetting"
  6762. type="1"
  6763. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6764. </productMenu>
  6765. <productMenu id="userGuide"
  6766. type="1"
  6767. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6768. size="1.14MB" >
  6769. </productMenu>
  6770. <productMenu id="connectGuide"
  6771. type="1"
  6772. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6773. size="1.12MB" >
  6774. </productMenu>
  6775. <productID id="5440"
  6776. />
  6777. <productGroupable type="0"
  6778. />
  6779. </product>
  6780. <product id="OUTRUSHR"
  6781. name="OUTRUSH R"
  6782. series="Helmet"
  6783. latestVersion="1.1.4"
  6784. show = "-1" >
  6785. <productMenu id="protocol"
  6786. type="0">
  6787. </productMenu>
  6788. <productMenu id="sip"
  6789. type="1" >
  6790. </productMenu>
  6791. <productMenu id="bluetoothIntercom"
  6792. type="1" >
  6793. </productMenu>
  6794. <productMenu id="phone"
  6795. type="2" >
  6796. </productMenu>
  6797. <productMenu id="fmradio"
  6798. type="3" >
  6799. </productMenu>
  6800. <productMenu id="deviceSetting"
  6801. type="1"
  6802. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6803. </productMenu>
  6804. <productMenu id="userGuide"
  6805. type="1"
  6806. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6807. size="660KB" >
  6808. </productMenu>
  6809. <productMenu id="connectGuide"
  6810. type="1"
  6811. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6812. size="1.12MB" >
  6813. </productMenu>
  6814. <productID id="5424"
  6815. />
  6816. <productGroupable type="0"
  6817. />
  6818. </product>
  6819. <product id="OUTSTARS"
  6820. name="OUTSTAR S"
  6821. series="Helmet"
  6822. latestVersion="2.0.1"
  6823. show = "-1" >
  6824. <productMenu id="protocol"
  6825. type="3" >
  6826. </productMenu>
  6827. <productMenu id="sip"
  6828. type="1" >
  6829. </productMenu>
  6830. <productMenu id="bluetoothIntercom"
  6831. type="1" >
  6832. </productMenu>
  6833. <productMenu id="phone"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="fmradio"
  6837. type="0" >
  6838. </productMenu>
  6839. <productMenu id="deviceSetting"
  6840. type="1"
  6841. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6842. </productMenu>
  6843. <productMenu id="userGuide"
  6844. type="0"
  6845. url=""
  6846. size="1.14MB" >
  6847. </productMenu>
  6848. <productID id="5443"
  6849. />
  6850. <productGroupable type="0"
  6851. />
  6852. </product>
  6853. <product id="OUTSTARS"
  6854. name="OUTSTAR S"
  6855. series="Helmet"
  6856. latestVersion="1.1.4"
  6857. show = "1" >
  6858. <productMenu id="protocol"
  6859. type="0">
  6860. </productMenu>
  6861. <productMenu id="sip"
  6862. type="1" >
  6863. </productMenu>
  6864. <productMenu id="bluetoothIntercom"
  6865. type="1" >
  6866. </productMenu>
  6867. <productMenu id="phone"
  6868. type="2" >
  6869. </productMenu>
  6870. <productMenu id="fmradio"
  6871. type="3" >
  6872. </productMenu>
  6873. <productMenu id="deviceSetting"
  6874. type="1"
  6875. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6876. </productMenu>
  6877. <productMenu id="quickGuide"
  6878. type="1"
  6879. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6880. size="643KB" >
  6881. </productMenu>
  6882. <productMenu id="userGuide"
  6883. type="1"
  6884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6885. size="1.15MB" >
  6886. </productMenu>
  6887. <productMenu id="connectGuide"
  6888. type="1"
  6889. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6890. size="1.12MB" >
  6891. </productMenu>
  6892. <productID id="5428"
  6893. />
  6894. <productGroupable type="0"
  6895. />
  6896. </product>
  6897. <product id="OUTRIDE"
  6898. name="OUTRIDE"
  6899. series="Helmet"
  6900. latestVersion="1.0.1"
  6901. show = "1" >
  6902. <productMenu id="protocol"
  6903. type="0">
  6904. </productMenu>
  6905. <productMenu id="sip"
  6906. type="1" >
  6907. </productMenu>
  6908. <productMenu id="bluetoothIntercom"
  6909. type="1" >
  6910. </productMenu>
  6911. <productMenu id="phone"
  6912. type="2" >
  6913. </productMenu>
  6914. <productMenu id="fmradio"
  6915. type="3" >
  6916. </productMenu>
  6917. <productMenu id="deviceSetting"
  6918. type="1"
  6919. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6920. </productMenu>
  6921. <productMenu id="quickGuide"
  6922. type="1"
  6923. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6924. size="643KB" >
  6925. </productMenu>
  6926. <productMenu id="userGuide"
  6927. type="1"
  6928. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6929. size="660KB" >
  6930. </productMenu>
  6931. <productMenu id="connectGuide"
  6932. type="1"
  6933. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6934. size="1.12MB" >
  6935. </productMenu>
  6936. <productID id="5432"
  6937. />
  6938. <productGroupable type="0"
  6939. />
  6940. </product>
  6941. <product id="OUTFORCE"
  6942. name="OUTFORCE"
  6943. series="Helmet"
  6944. latestVersion="1.0.1"
  6945. show = "1" >
  6946. <productMenu id="protocol"
  6947. type="0">
  6948. </productMenu>
  6949. <productMenu id="sip"
  6950. type="1" >
  6951. </productMenu>
  6952. <productMenu id="bluetoothIntercom"
  6953. type="1" >
  6954. </productMenu>
  6955. <productMenu id="phone"
  6956. type="2" >
  6957. </productMenu>
  6958. <productMenu id="fmradio"
  6959. type="3" >
  6960. </productMenu>
  6961. <productMenu id="deviceSetting"
  6962. type="1"
  6963. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6964. </productMenu>
  6965. <productMenu id="quickGuide"
  6966. type="1"
  6967. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6968. size="643KB" >
  6969. </productMenu>
  6970. <productMenu id="userGuide"
  6971. type="1"
  6972. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6973. size="660KB" >
  6974. </productMenu>
  6975. <productMenu id="connectGuide"
  6976. type="1"
  6977. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6978. size="1.12MB" >
  6979. </productMenu>
  6980. <productID id="5430"
  6981. />
  6982. <productGroupable type="0"
  6983. />
  6984. </product>
  6985. <product id="Rumba"
  6986. name="Rumba"
  6987. series="30"
  6988. latestVersion="2.0"
  6989. show = "-1" >
  6990. <productMenu id="protocol"
  6991. type="3" >
  6992. </productMenu>
  6993. <productMenu id="sip"
  6994. type="1" >
  6995. </productMenu>
  6996. <productMenu id="bluetoothIntercom"
  6997. type="1" >
  6998. </productMenu>
  6999. <productMenu id="deviceSetting"
  7000. type="1"
  7001. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7002. </productMenu>
  7003. <productMenu id="quickGuide"
  7004. type="1"
  7005. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7006. size="344KB" >
  7007. </productMenu>
  7008. <productMenu id="userGuide"
  7009. type="1"
  7010. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7011. size="1.14MB" >
  7012. </productMenu>
  7013. <productID id="6322"
  7014. />
  7015. <productGroupable type="0"
  7016. />
  7017. </product>
  7018. <product id="Savage"
  7019. name="Savage"
  7020. series="Helmet"
  7021. latestVersion="1.2.2"
  7022. show = "1" >
  7023. <productMenu id="protocol"
  7024. type="0">
  7025. </productMenu>
  7026. <productMenu id="sip"
  7027. type="1" >
  7028. </productMenu>
  7029. <productMenu id="bluetoothIntercom"
  7030. type="1" >
  7031. </productMenu>
  7032. <productMenu id="phone"
  7033. type="2" >
  7034. </productMenu>
  7035. <productMenu id="fmradio"
  7036. type="3" >
  7037. </productMenu>
  7038. <productMenu id="deviceSetting"
  7039. type="1"
  7040. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7041. <productMenuURL version="1.9"
  7042. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7043. />
  7044. <productMenuURL version="1.1"
  7045. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7046. />
  7047. </productMenu>
  7048. <productMenu id="quickGuide"
  7049. type="1"
  7050. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7051. size="796KB" >
  7052. </productMenu>
  7053. <productMenu id="userGuide"
  7054. type="1"
  7055. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7056. size="910KB" >
  7057. </productMenu>
  7058. <productMenu id="connectGuide"
  7059. type="1"
  7060. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7061. size="1.12MB" >
  7062. </productMenu>
  7063. <productID id="5550"
  7064. />
  7065. <productGroupable type="0"
  7066. />
  7067. </product>
  7068. <product id="SPECTER"
  7069. name="SPECTER"
  7070. series="Helmet"
  7071. latestVersion="1.0.9"
  7072. latestVersionVoicePrompt="1.7"
  7073. show = "1" >
  7074. <productMenu id="protocol"
  7075. type="2" >
  7076. </productMenu>
  7077. <productMenu id="ota"
  7078. type="2" >
  7079. <otaLanguages>
  7080. <otaLanguage
  7081. id="0"
  7082. name="English"
  7083. package="0"
  7084. />
  7085. <otaLanguage
  7086. id="0"
  7087. name="French"
  7088. package="1"
  7089. />
  7090. <otaLanguage
  7091. id="0"
  7092. name="Spanish"
  7093. package="2"
  7094. />
  7095. <otaLanguage
  7096. id="0"
  7097. name="Italian"
  7098. package="3"
  7099. />
  7100. <otaLanguage
  7101. id="0"
  7102. name="German"
  7103. package="4"
  7104. />
  7105. <otaLanguage
  7106. id="0"
  7107. name="Dutch"
  7108. package="5"
  7109. />
  7110. <otaLanguage
  7111. id="0"
  7112. name="Russian"
  7113. package="6"
  7114. />
  7115. <otaLanguage
  7116. id="0"
  7117. name="Chinese"
  7118. package="7"
  7119. />
  7120. <otaLanguage
  7121. id="0"
  7122. name="Korean"
  7123. package="8"
  7124. />
  7125. <otaLanguage
  7126. id="0"
  7127. name="Japanese"
  7128. package="9"
  7129. />
  7130. <otaLanguage
  7131. id="0"
  7132. name="Finnish"
  7133. package="10"
  7134. />
  7135. <otaLanguage
  7136. id="0"
  7137. name="Polish"
  7138. package="11"
  7139. />
  7140. </otaLanguages>
  7141. <otaPackages>
  7142. <package
  7143. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7144. size="5183988"
  7145. />
  7146. <package
  7147. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7148. size="5183988"
  7149. />
  7150. <package
  7151. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7152. size="5183988"
  7153. />
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7160. size="5183988"
  7161. />
  7162. <package
  7163. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7164. size="5183988"
  7165. />
  7166. <package
  7167. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7168. size="5183988"
  7169. />
  7170. <package
  7171. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7172. size="5183988"
  7173. />
  7174. <package
  7175. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7176. size="5183988"
  7177. />
  7178. <package
  7179. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7180. size="5183988"
  7181. />
  7182. <package
  7183. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7184. size="5183988"
  7185. />
  7186. <package
  7187. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7188. size="5183988"
  7189. />
  7190. </otaPackages>
  7191. </productMenu>
  7192. <productMenu id="wa"
  7193. type="0" >
  7194. </productMenu>
  7195. <productMenu id="led"
  7196. type="5" >
  7197. </productMenu>
  7198. <productMenu id="led+"
  7199. type="2"
  7200. url="1" >
  7201. </productMenu>
  7202. <productMenu id="meshIntercom+"
  7203. type="3"
  7204. url="2" >
  7205. </productMenu>
  7206. <productMenu id="waveIntercom"
  7207. type="1" >
  7208. </productMenu>
  7209. <productMenu id="fmradio"
  7210. type="0" >
  7211. </productMenu>
  7212. <productMenu id="phone"
  7213. type="1" >
  7214. </productMenu>
  7215. <productMenu id="music"
  7216. type="1" >
  7217. </productMenu>
  7218. <productMenu id="musicSharing"
  7219. type="0" >
  7220. </productMenu>
  7221. <productMenu id="deviceSetting"
  7222. type="1"
  7223. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7224. <productMenuURL version="1.0.4"
  7225. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7226. />
  7227. </productMenu>
  7228. <productMenu id="quickGuide"
  7229. type="0"
  7230. url=""
  7231. size="1.12MB" >
  7232. </productMenu>
  7233. <productMenu id="userGuide"
  7234. type="1"
  7235. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7236. size="2.0MB" >
  7237. </productMenu>
  7238. <productMenu id="videoGuide"
  7239. type="0"
  7240. url=""
  7241. size="3.41MB" >
  7242. </productMenu>
  7243. <productMenu id="volume"
  7244. type="16" >
  7245. </productMenu>
  7246. <productMenu id="volume+"
  7247. type="2"
  7248. url="0x6004" >
  7249. </productMenu>
  7250. <productMenu id="battery"
  7251. type="1" >
  7252. </productMenu>
  7253. <productID id="6A11"
  7254. />
  7255. <productGroupable type="0"
  7256. />
  7257. </product>
  7258. <product id="SPECTER"
  7259. name="SPECTER"
  7260. series="Helmet"
  7261. latestVersion="1.0.9"
  7262. latestVersionVoicePrompt="1.7"
  7263. show = "-1" >
  7264. <productMenu id="protocol"
  7265. type="2" >
  7266. </productMenu>
  7267. <productMenu id="ota"
  7268. type="2" >
  7269. <otaLanguages>
  7270. <otaLanguage
  7271. id="0"
  7272. name="English"
  7273. package="0"
  7274. />
  7275. <otaLanguage
  7276. id="0"
  7277. name="French"
  7278. package="1"
  7279. />
  7280. <otaLanguage
  7281. id="0"
  7282. name="Spanish"
  7283. package="2"
  7284. />
  7285. <otaLanguage
  7286. id="0"
  7287. name="Italian"
  7288. package="3"
  7289. />
  7290. <otaLanguage
  7291. id="0"
  7292. name="German"
  7293. package="4"
  7294. />
  7295. <otaLanguage
  7296. id="0"
  7297. name="Dutch"
  7298. package="5"
  7299. />
  7300. <otaLanguage
  7301. id="0"
  7302. name="Russian"
  7303. package="6"
  7304. />
  7305. <otaLanguage
  7306. id="0"
  7307. name="Chinese"
  7308. package="7"
  7309. />
  7310. <otaLanguage
  7311. id="0"
  7312. name="Korean"
  7313. package="8"
  7314. />
  7315. <otaLanguage
  7316. id="0"
  7317. name="Japanese"
  7318. package="9"
  7319. />
  7320. <otaLanguage
  7321. id="0"
  7322. name="Finnish"
  7323. package="10"
  7324. />
  7325. <otaLanguage
  7326. id="0"
  7327. name="Polish"
  7328. package="11"
  7329. />
  7330. </otaLanguages>
  7331. <otaPackages>
  7332. <package
  7333. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7334. size="5183988"
  7335. />
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7350. size="5183988"
  7351. />
  7352. <package
  7353. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7354. size="5183988"
  7355. />
  7356. <package
  7357. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7358. size="5183988"
  7359. />
  7360. <package
  7361. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7362. size="5183988"
  7363. />
  7364. <package
  7365. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7366. size="5183988"
  7367. />
  7368. <package
  7369. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7370. size="5183988"
  7371. />
  7372. <package
  7373. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7374. size="5183988"
  7375. />
  7376. <package
  7377. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7378. size="5183988"
  7379. />
  7380. </otaPackages>
  7381. </productMenu>
  7382. <productMenu id="wa"
  7383. type="0" >
  7384. </productMenu>
  7385. <productMenu id="led"
  7386. type="5" >
  7387. </productMenu>
  7388. <productMenu id="led+"
  7389. type="2"
  7390. url="1" >
  7391. </productMenu>
  7392. <productMenu id="meshIntercom+"
  7393. type="3"
  7394. url="2" >
  7395. </productMenu>
  7396. <productMenu id="waveIntercom"
  7397. type="1" >
  7398. </productMenu>
  7399. <productMenu id="fmradio"
  7400. type="0" >
  7401. </productMenu>
  7402. <productMenu id="phone"
  7403. type="1" >
  7404. </productMenu>
  7405. <productMenu id="music"
  7406. type="1" >
  7407. </productMenu>
  7408. <productMenu id="musicSharing"
  7409. type="0" >
  7410. </productMenu>
  7411. <productMenu id="deviceSetting"
  7412. type="1"
  7413. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7414. <productMenuURL version="1.0.4"
  7415. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7416. />
  7417. <productMenuURL version="1.0"
  7418. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7419. />
  7420. </productMenu>
  7421. <productMenu id="quickGuide"
  7422. type="0"
  7423. url=""
  7424. size="1.12MB" >
  7425. </productMenu>
  7426. <productMenu id="userGuide"
  7427. type="1"
  7428. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7429. size="2.0MB" >
  7430. </productMenu>
  7431. <productMenu id="videoGuide"
  7432. type="0"
  7433. url=""
  7434. size="3.41MB" >
  7435. </productMenu>
  7436. <productMenu id="volume"
  7437. type="16" >
  7438. </productMenu>
  7439. <productMenu id="volume+"
  7440. type="2"
  7441. url="0x6004" >
  7442. </productMenu>
  7443. <productMenu id="battery"
  7444. type="1" >
  7445. </productMenu>
  7446. <productID id="6A0A"
  7447. />
  7448. <productGroupable type="0"
  7449. />
  7450. </product>
  7451. <product id="OUTLANDER"
  7452. name="OUTLANDER"
  7453. series="Helmet"
  7454. latestVersion="1.0.9"
  7455. latestVersionVoicePrompt="1.7"
  7456. show = "1" >
  7457. <productMenu id="protocol"
  7458. type="2" >
  7459. </productMenu>
  7460. <productMenu id="ota"
  7461. type="2" >
  7462. <otaLanguages>
  7463. <otaLanguage
  7464. id="0"
  7465. name="English"
  7466. package="0"
  7467. />
  7468. <otaLanguage
  7469. id="0"
  7470. name="French"
  7471. package="1"
  7472. />
  7473. <otaLanguage
  7474. id="0"
  7475. name="Spanish"
  7476. package="2"
  7477. />
  7478. <otaLanguage
  7479. id="0"
  7480. name="Italian"
  7481. package="3"
  7482. />
  7483. <otaLanguage
  7484. id="0"
  7485. name="German"
  7486. package="4"
  7487. />
  7488. <otaLanguage
  7489. id="0"
  7490. name="Dutch"
  7491. package="5"
  7492. />
  7493. <otaLanguage
  7494. id="0"
  7495. name="Russian"
  7496. package="6"
  7497. />
  7498. <otaLanguage
  7499. id="0"
  7500. name="Chinese"
  7501. package="7"
  7502. />
  7503. <otaLanguage
  7504. id="0"
  7505. name="Korean"
  7506. package="8"
  7507. />
  7508. <otaLanguage
  7509. id="0"
  7510. name="Japanese"
  7511. package="9"
  7512. />
  7513. <otaLanguage
  7514. id="0"
  7515. name="Finnish"
  7516. package="10"
  7517. />
  7518. <otaLanguage
  7519. id="0"
  7520. name="Polish"
  7521. package="11"
  7522. />
  7523. </otaLanguages>
  7524. <otaPackages>
  7525. <package
  7526. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7527. size="5183988"
  7528. />
  7529. <package
  7530. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7531. size="5183988"
  7532. />
  7533. <package
  7534. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7535. size="5183988"
  7536. />
  7537. <package
  7538. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7539. size="5183988"
  7540. />
  7541. <package
  7542. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7543. size="5183988"
  7544. />
  7545. <package
  7546. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7547. size="5183988"
  7548. />
  7549. <package
  7550. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7551. size="5183988"
  7552. />
  7553. <package
  7554. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7555. size="5183988"
  7556. />
  7557. <package
  7558. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7559. size="5183988"
  7560. />
  7561. <package
  7562. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7563. size="5183988"
  7564. />
  7565. <package
  7566. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7567. size="5183988"
  7568. />
  7569. <package
  7570. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7571. size="5183988"
  7572. />
  7573. </otaPackages>
  7574. </productMenu>
  7575. <productMenu id="wa"
  7576. type="0" >
  7577. </productMenu>
  7578. <productMenu id="led"
  7579. type="5" >
  7580. </productMenu>
  7581. <productMenu id="led+"
  7582. type="2"
  7583. url="1" >
  7584. </productMenu>
  7585. <productMenu id="meshIntercom+"
  7586. type="3"
  7587. url="2" >
  7588. </productMenu>
  7589. <productMenu id="waveIntercom"
  7590. type="1" >
  7591. </productMenu>
  7592. <productMenu id="fmradio"
  7593. type="0" >
  7594. </productMenu>
  7595. <productMenu id="phone"
  7596. type="1" >
  7597. </productMenu>
  7598. <productMenu id="music"
  7599. type="1" >
  7600. </productMenu>
  7601. <productMenu id="musicSharing"
  7602. type="0" >
  7603. </productMenu>
  7604. <productMenu id="deviceSetting"
  7605. type="1"
  7606. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7607. <productMenuURL version="1.0.4"
  7608. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7609. />
  7610. </productMenu>
  7611. <productMenu id="quickGuide"
  7612. type="0"
  7613. url=""
  7614. size="1.12MB" >
  7615. </productMenu>
  7616. <productMenu id="userGuide"
  7617. type="1"
  7618. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7619. size="2.0MB" >
  7620. </productMenu>
  7621. <productMenu id="videoGuide"
  7622. type="0"
  7623. url=""
  7624. size="3.41MB" >
  7625. </productMenu>
  7626. <productMenu id="volume"
  7627. type="16" >
  7628. </productMenu>
  7629. <productMenu id="volume+"
  7630. type="2"
  7631. url="0x6004" >
  7632. </productMenu>
  7633. <productMenu id="battery"
  7634. type="1" >
  7635. </productMenu>
  7636. <productID id="6A05"
  7637. />
  7638. <productGroupable type="0"
  7639. />
  7640. </product>
  7641. <product id="OUTRUSH2"
  7642. name="OUTRUSH 2"
  7643. series="Helmet"
  7644. latestVersion="1.0.3"
  7645. latestVersionVoicePrompt="1.6"
  7646. show = "1" >
  7647. <productMenu id="protocol"
  7648. type="2" >
  7649. </productMenu>
  7650. <productMenu id="alexa"
  7651. type="0" >
  7652. </productMenu>
  7653. <productMenu id="ota"
  7654. type="2" >
  7655. <otaPackages>
  7656. <package
  7657. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7658. size="2945812"
  7659. />
  7660. </otaPackages>
  7661. </productMenu>
  7662. <productMenu id="meshIntercom+"
  7663. type="3"
  7664. url="2" >
  7665. </productMenu>
  7666. <productMenu id="waveIntercom"
  7667. type="1" >
  7668. </productMenu>
  7669. <productMenu id="phone"
  7670. type="1" >
  7671. </productMenu>
  7672. <productMenu id="music"
  7673. type="1" >
  7674. </productMenu>
  7675. <productMenu id="musicSharing"
  7676. type="0" >
  7677. </productMenu>
  7678. <productMenu id="deviceSetting"
  7679. type="1"
  7680. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7681. <productMenuURL version="1.0"
  7682. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7683. />
  7684. </productMenu>
  7685. <productMenu id="quickGuide"
  7686. type="0"
  7687. url=""
  7688. size="1.12MB" >
  7689. </productMenu>
  7690. <productMenu id="userGuide"
  7691. type="1"
  7692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7693. size="2.0MB" >
  7694. </productMenu>
  7695. <productMenu id="volume"
  7696. type="12" >
  7697. </productMenu>
  7698. <productMenu id="battery"
  7699. type="1" >
  7700. </productMenu>
  7701. <productID id="684A"
  7702. />
  7703. <productGroupable type="0"
  7704. />
  7705. </product>
  7706. <product id="OUTSTAR2"
  7707. name="OUTSTAR 2"
  7708. series="Helmet"
  7709. latestVersion="1.0.2"
  7710. latestVersionVoicePrompt="1.6"
  7711. show = "1" >
  7712. <productMenu id="protocol"
  7713. type="2" >
  7714. </productMenu>
  7715. <productMenu id="alexa"
  7716. type="0" >
  7717. </productMenu>
  7718. <productMenu id="ota"
  7719. type="2" >
  7720. <otaPackages>
  7721. <package
  7722. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7723. size="2945812"
  7724. />
  7725. </otaPackages>
  7726. </productMenu>
  7727. <productMenu id="meshIntercom+"
  7728. type="3"
  7729. url="2" >
  7730. </productMenu>
  7731. <productMenu id="waveIntercom"
  7732. type="1" >
  7733. </productMenu>
  7734. <productMenu id="phone"
  7735. type="1" >
  7736. </productMenu>
  7737. <productMenu id="music"
  7738. type="1" >
  7739. </productMenu>
  7740. <productMenu id="musicSharing"
  7741. type="0" >
  7742. </productMenu>
  7743. <productMenu id="deviceSetting"
  7744. type="1"
  7745. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7746. </productMenu>
  7747. <productMenu id="quickGuide"
  7748. type="0"
  7749. url=""
  7750. size="1.12MB" >
  7751. </productMenu>
  7752. <productMenu id="userGuide"
  7753. type="1"
  7754. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7755. size="2.0MB" >
  7756. </productMenu>
  7757. <productMenu id="volume"
  7758. type="12" >
  7759. </productMenu>
  7760. <productMenu id="battery"
  7761. type="1" >
  7762. </productMenu>
  7763. <productID id="684B"
  7764. />
  7765. <productGroupable type="0"
  7766. />
  7767. </product>
  7768. <product id="SURGE"
  7769. name="SURGE"
  7770. series="Helmet"
  7771. latestVersion="1.2"
  7772. latestVersionVoicePrompt="1.3"
  7773. show = "1" >
  7774. <productMenu id="protocol"
  7775. type="2" >
  7776. </productMenu>
  7777. <productMenu id="alexa"
  7778. type="0" >
  7779. </productMenu>
  7780. <productMenu id="ota"
  7781. type="2" >
  7782. <otaPackages>
  7783. <package
  7784. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7785. size="2945812"
  7786. />
  7787. </otaPackages>
  7788. </productMenu>
  7789. <productMenu id="meshIntercom"
  7790. type="30" >
  7791. </productMenu>
  7792. <productMenu id="meshIntercom+"
  7793. type="3"
  7794. url="2" >
  7795. <productMenuType version="1.0.1"
  7796. type="2"
  7797. />
  7798. </productMenu>
  7799. <productMenu id="waveIntercom"
  7800. type="1" >
  7801. <productMenuType version="1.0.9"
  7802. type="0"
  7803. />
  7804. </productMenu>
  7805. <productMenu id="phone"
  7806. type="1" >
  7807. </productMenu>
  7808. <productMenu id="music"
  7809. type="1" >
  7810. </productMenu>
  7811. <productMenu id="musicSharing"
  7812. type="0" >
  7813. </productMenu>
  7814. <productMenu id="deviceSetting"
  7815. type="1"
  7816. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7817. <productMenuURL version="1.1.9"
  7818. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7819. />
  7820. <productMenuURL version="1.0.1"
  7821. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7822. />
  7823. </productMenu>
  7824. <productMenu id="quickGuide"
  7825. type="0"
  7826. url=""
  7827. size="1.12MB" >
  7828. </productMenu>
  7829. <productMenu id="userGuide"
  7830. type="1"
  7831. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7832. size="2.0MB" >
  7833. </productMenu>
  7834. <productMenu id="volume"
  7835. type="12" >
  7836. </productMenu>
  7837. <productMenu id="battery"
  7838. type="1" >
  7839. </productMenu>
  7840. <productID id="6840"
  7841. />
  7842. <productGroupable type="0"
  7843. />
  7844. </product>
  7845. <product id="Cavalry2"
  7846. name="Cavalry 2"
  7847. series="Helmet"
  7848. latestVersion="1.2"
  7849. latestVersionVoicePrompt="1.3"
  7850. show = "1" >
  7851. <productMenu id="protocol"
  7852. type="2" >
  7853. </productMenu>
  7854. <productMenu id="alexa"
  7855. type="0" >
  7856. </productMenu>
  7857. <productMenu id="ota"
  7858. type="2" >
  7859. <otaPackages>
  7860. <package
  7861. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7862. size="3144148"
  7863. />
  7864. </otaPackages>
  7865. </productMenu>
  7866. <productMenu id="wa"
  7867. type="0" >
  7868. </productMenu>
  7869. <productMenu id="meshIntercom"
  7870. type="30" >
  7871. </productMenu>
  7872. <productMenu id="meshIntercom+"
  7873. type="3"
  7874. url="2" >
  7875. <productMenuType version="1.0"
  7876. type="2"
  7877. />
  7878. </productMenu>
  7879. <productMenu id="waveIntercom"
  7880. type="1" >
  7881. <productMenuType version="1.0.9"
  7882. type="0"
  7883. />
  7884. </productMenu>
  7885. <productMenu id="phone"
  7886. type="1" >
  7887. </productMenu>
  7888. <productMenu id="music"
  7889. type="1" >
  7890. </productMenu>
  7891. <productMenu id="musicSharing"
  7892. type="0" >
  7893. </productMenu>
  7894. <productMenu id="deviceSetting"
  7895. type="1"
  7896. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7897. <productMenuURL version="1.1.9"
  7898. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7899. />
  7900. <productMenuURL version="1.0"
  7901. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7902. />
  7903. </productMenu>
  7904. <productMenu id="quickGuide"
  7905. type="0"
  7906. url=""
  7907. size="1.12MB" >
  7908. </productMenu>
  7909. <productMenu id="userGuide"
  7910. type="1"
  7911. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7912. size="2.0MB" >
  7913. </productMenu>
  7914. <productMenu id="connectGuide"
  7915. type="1"
  7916. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7917. size="1.12MB" >
  7918. </productMenu>
  7919. <productMenu id="volume"
  7920. type="12" >
  7921. </productMenu>
  7922. <productMenu id="battery"
  7923. type="1" >
  7924. </productMenu>
  7925. <productID id="6839"
  7926. />
  7927. <productGroupable type="0"
  7928. />
  7929. </product>
  7930. <product id="Cavalry"
  7931. name="Cavalry"
  7932. series="Helmet"
  7933. latestVersion="1.2.2"
  7934. show = "1" >
  7935. <productMenu id="protocol"
  7936. type="0">
  7937. </productMenu>
  7938. <productMenu id="sip"
  7939. type="1" >
  7940. </productMenu>
  7941. <productMenu id="bluetoothIntercom"
  7942. type="1" >
  7943. </productMenu>
  7944. <productMenu id="phone"
  7945. type="2" >
  7946. </productMenu>
  7947. <productMenu id="fmradio"
  7948. type="3" >
  7949. </productMenu>
  7950. <productMenu id="deviceSetting"
  7951. type="1"
  7952. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7953. <productMenuURL version="1.9"
  7954. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7955. />
  7956. <productMenuURL version="1.0.1"
  7957. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7958. />
  7959. </productMenu>
  7960. <productMenu id="quickGuide"
  7961. type="1"
  7962. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7963. size="795KB" >
  7964. </productMenu>
  7965. <productMenu id="userGuide"
  7966. type="1"
  7967. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7968. size="1.87MB" >
  7969. </productMenu>
  7970. <productMenu id="connectGuide"
  7971. type="1"
  7972. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7973. size="1.12MB" >
  7974. </productMenu>
  7975. <productID id="5524"
  7976. />
  7977. <productGroupable type="0"
  7978. />
  7979. </product>
  7980. <product id="Cavalry_Lite"
  7981. name="Cavalry Lite"
  7982. series="Helmet"
  7983. latestVersion="1.0.2"
  7984. show = "1" >
  7985. <productMenu id="protocol"
  7986. type="0">
  7987. </productMenu>
  7988. <productMenu id="sip"
  7989. type="1" >
  7990. </productMenu>
  7991. <productMenu id="bluetoothIntercom"
  7992. type="1" >
  7993. </productMenu>
  7994. <productMenu id="phone"
  7995. type="2" >
  7996. </productMenu>
  7997. <productMenu id="fmradio"
  7998. type="3" >
  7999. </productMenu>
  8000. <productMenu id="deviceSetting"
  8001. type="1"
  8002. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8003. </productMenu>
  8004. <productMenu id="userGuide"
  8005. type="1"
  8006. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8007. size="1.74MB" >
  8008. </productMenu>
  8009. <productMenu id="connectGuide"
  8010. type="1"
  8011. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8012. size="1.12MB" >
  8013. </productMenu>
  8014. <productID id="5536"
  8015. />
  8016. <productGroupable type="0"
  8017. />
  8018. </product>
  8019. <product id="VORTEX"
  8020. name="VORTEX"
  8021. series="VORTEX"
  8022. latestVersion="1.0"
  8023. latestVersionVoicePrompt="1.0"
  8024. show = "-1" >
  8025. <productMenu id="protocol"
  8026. type="2" >
  8027. </productMenu>
  8028. <productMenu id="ota"
  8029. type="2" >
  8030. <otaLanguages>
  8031. <otaLanguage
  8032. id="0"
  8033. name="English"
  8034. package="0"
  8035. />
  8036. <otaLanguage
  8037. id="0"
  8038. name="French"
  8039. package="1"
  8040. />
  8041. <otaLanguage
  8042. id="0"
  8043. name="Spanish"
  8044. package="2"
  8045. />
  8046. <otaLanguage
  8047. id="0"
  8048. name="Italian"
  8049. package="3"
  8050. />
  8051. <otaLanguage
  8052. id="0"
  8053. name="German"
  8054. package="4"
  8055. />
  8056. <otaLanguage
  8057. id="0"
  8058. name="Dutch"
  8059. package="5"
  8060. />
  8061. <otaLanguage
  8062. id="0"
  8063. name="Russian"
  8064. package="6"
  8065. />
  8066. <otaLanguage
  8067. id="0"
  8068. name="Chinese"
  8069. package="7"
  8070. />
  8071. <otaLanguage
  8072. id="0"
  8073. name="Korean"
  8074. package="8"
  8075. />
  8076. <otaLanguage
  8077. id="0"
  8078. name="Japanese"
  8079. package="9"
  8080. />
  8081. <otaLanguage
  8082. id="0"
  8083. name="Finnish"
  8084. package="10"
  8085. />
  8086. <otaLanguage
  8087. id="0"
  8088. name="Polish"
  8089. package="11"
  8090. />
  8091. </otaLanguages>
  8092. <otaPackages>
  8093. <package
  8094. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8095. size="5183988"
  8096. />
  8097. <package
  8098. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8099. size="5183988"
  8100. />
  8101. <package
  8102. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8103. size="5183988"
  8104. />
  8105. <package
  8106. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8107. size="5183988"
  8108. />
  8109. <package
  8110. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8111. size="5183988"
  8112. />
  8113. <package
  8114. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8115. size="5183988"
  8116. />
  8117. <package
  8118. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8119. size="5183988"
  8120. />
  8121. <package
  8122. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8123. size="5183988"
  8124. />
  8125. <package
  8126. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8127. size="5183988"
  8128. />
  8129. <package
  8130. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8131. size="5183988"
  8132. />
  8133. <package
  8134. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8135. size="5183988"
  8136. />
  8137. <package
  8138. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8139. size="5183988"
  8140. />
  8141. </otaPackages>
  8142. </productMenu>
  8143. <productMenu id="sip"
  8144. type="1" >
  8145. </productMenu>
  8146. <productMenu id="bluetoothIntercom"
  8147. type="1" >
  8148. </productMenu>
  8149. <productMenu id="phone"
  8150. type="1" >
  8151. </productMenu>
  8152. <productMenu id="music"
  8153. type="1" >
  8154. </productMenu>
  8155. <productMenu id="fmradio"
  8156. type="1"
  8157. url="1" >
  8158. </productMenu>
  8159. <productMenu id="deviceSetting"
  8160. type="1"
  8161. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8162. </productMenu>
  8163. <productMenu id="quickGuide"
  8164. type="0"
  8165. url=""
  8166. size="934KB" >
  8167. </productMenu>
  8168. <productMenu id="userGuide"
  8169. type="1"
  8170. url=""
  8171. size="1.14MB" >
  8172. </productMenu>
  8173. <productMenu id="connectGuide"
  8174. type="0"
  8175. url=""
  8176. size="1.12MB" >
  8177. </productMenu>
  8178. <productMenu id="volume"
  8179. type="15" >
  8180. </productMenu>
  8181. <productMenu id="appearance"
  8182. type="1"
  8183. url="1|white,silver,black" >
  8184. </productMenu>
  8185. <productID id="3451"
  8186. />
  8187. <productGroupable type="0"
  8188. />
  8189. </product>
  8190. <product id="SF4"
  8191. name="SF4"
  8192. series="SF"
  8193. latestVersion="1.1.5"
  8194. show = "-1" >
  8195. <productMenu id="protocol"
  8196. type="1"
  8197. url="3">
  8198. </productMenu>
  8199. <productMenu id="sip"
  8200. type="1" >
  8201. </productMenu>
  8202. <productMenu id="bluetoothIntercom"
  8203. type="1" >
  8204. </productMenu>
  8205. <productMenu id="phone"
  8206. type="1" >
  8207. </productMenu>
  8208. <productMenu id="music"
  8209. type="1" >
  8210. </productMenu>
  8211. <productMenu id="fmradio"
  8212. type="1" >
  8213. </productMenu>
  8214. <productMenu id="deviceSetting"
  8215. type="1"
  8216. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8217. <productMenuURL version="1.0.1"
  8218. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8219. />
  8220. </productMenu>
  8221. <productMenu id="quickGuide"
  8222. type="1"
  8223. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8224. size="607KB" >
  8225. </productMenu>
  8226. <productMenu id="userGuide"
  8227. type="1"
  8228. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8229. size="1.91MB" >
  8230. </productMenu>
  8231. <productMenu id="volume"
  8232. type="4" >
  8233. </productMenu>
  8234. <productID id="5414"
  8235. />
  8236. <productGroupable type="0"
  8237. />
  8238. </product>
  8239. <product id="SF4"
  8240. name="SF4"
  8241. series="SF"
  8242. latestVersion="3.4.4"
  8243. show = "1" >
  8244. <productMenu id="protocol"
  8245. type="2" >
  8246. </productMenu>
  8247. <productMenu id="sip"
  8248. type="1" >
  8249. </productMenu>
  8250. <productMenu id="bluetoothIntercom"
  8251. type="1" >
  8252. </productMenu>
  8253. <productMenu id="phone"
  8254. type="1" >
  8255. </productMenu>
  8256. <productMenu id="music"
  8257. type="1" >
  8258. </productMenu>
  8259. <productMenu id="fmradio"
  8260. type="1" >
  8261. </productMenu>
  8262. <productMenu id="deviceSetting"
  8263. type="1"
  8264. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8265. <productMenuURL version="3.0"
  8266. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8267. />
  8268. </productMenu>
  8269. <productMenu id="quickGuide"
  8270. type="0"
  8271. url=""
  8272. size="934KB" >
  8273. </productMenu>
  8274. <productMenu id="userGuide"
  8275. type="1"
  8276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8277. size="1.14MB" >
  8278. </productMenu>
  8279. <productMenu id="connectGuide"
  8280. type="1"
  8281. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8282. size="1.12MB" >
  8283. </productMenu>
  8284. <productMenu id="volume"
  8285. type="15" >
  8286. </productMenu>
  8287. <productID id="3370"
  8288. />
  8289. <productGroupable type="0"
  8290. />
  8291. </product>
  8292. <product id="SF2"
  8293. name="SF2"
  8294. series="SF"
  8295. latestVersion="1.2.1"
  8296. show = "-1" >
  8297. <productMenu id="protocol"
  8298. type="1"
  8299. url="2">
  8300. </productMenu>
  8301. <productMenu id="sip"
  8302. type="1" >
  8303. </productMenu>
  8304. <productMenu id="bluetoothIntercom"
  8305. type="1" >
  8306. </productMenu>
  8307. <productMenu id="phone"
  8308. type="1" >
  8309. </productMenu>
  8310. <productMenu id="music"
  8311. type="1" >
  8312. </productMenu>
  8313. <productMenu id="fmradio"
  8314. type="1" >
  8315. </productMenu>
  8316. <productMenu id="deviceSetting"
  8317. type="1"
  8318. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8319. <productMenuURL version="1.0.1"
  8320. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8321. />
  8322. </productMenu>
  8323. <productMenu id="quickGuide"
  8324. type="1"
  8325. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8326. size="607KB" >
  8327. </productMenu>
  8328. <productMenu id="userGuide"
  8329. type="1"
  8330. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8331. size="1.91MB" >
  8332. </productMenu>
  8333. <productMenu id="volume"
  8334. type="4" >
  8335. </productMenu>
  8336. <productID id="5412"
  8337. />
  8338. <productGroupable type="0"
  8339. />
  8340. </product>
  8341. <product id="SF2"
  8342. name="SF2"
  8343. series="SF"
  8344. latestVersion="3.3.4"
  8345. show = "1" >
  8346. <productMenu id="protocol"
  8347. type="2" >
  8348. </productMenu>
  8349. <productMenu id="sip"
  8350. type="1" >
  8351. </productMenu>
  8352. <productMenu id="bluetoothIntercom"
  8353. type="1" >
  8354. </productMenu>
  8355. <productMenu id="phone"
  8356. type="1" >
  8357. </productMenu>
  8358. <productMenu id="music"
  8359. type="1" >
  8360. </productMenu>
  8361. <productMenu id="fmradio"
  8362. type="0" >
  8363. </productMenu>
  8364. <productMenu id="deviceSetting"
  8365. type="1"
  8366. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8367. <productMenuURL version="3.0"
  8368. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8369. />
  8370. </productMenu>
  8371. <productMenu id="quickGuide"
  8372. type="0"
  8373. url=""
  8374. size="934KB" >
  8375. </productMenu>
  8376. <productMenu id="userGuide"
  8377. type="1"
  8378. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8379. size="1.14MB" >
  8380. </productMenu>
  8381. <productMenu id="connectGuide"
  8382. type="1"
  8383. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8384. size="1.12MB" >
  8385. </productMenu>
  8386. <productMenu id="volume"
  8387. type="15" >
  8388. </productMenu>
  8389. <productID id="3360"
  8390. />
  8391. <productGroupable type="0"
  8392. />
  8393. </product>
  8394. <product id="SF1"
  8395. name="SF1"
  8396. series="SF"
  8397. latestVersion="2.0.5"
  8398. show = "-1" >
  8399. <productMenu id="protocol"
  8400. type="1"
  8401. url="1">
  8402. </productMenu>
  8403. <productMenu id="sip"
  8404. type="1" >
  8405. </productMenu>
  8406. <productMenu id="bluetoothIntercom"
  8407. type="1" >
  8408. <productMenuType version="1.1"
  8409. type="0"
  8410. />
  8411. </productMenu>
  8412. <productMenu id="phone"
  8413. type="1" >
  8414. </productMenu>
  8415. <productMenu id="music"
  8416. type="1" >
  8417. </productMenu>
  8418. <productMenu id="deviceSetting"
  8419. type="1"
  8420. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8421. <productMenuURL version="1.1"
  8422. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8423. />
  8424. <productMenuURL version="1.0"
  8425. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8426. />
  8427. </productMenu>
  8428. <productMenu id="quickGuide"
  8429. type="1"
  8430. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8431. size="401KB" >
  8432. </productMenu>
  8433. <productMenu id="userGuide"
  8434. type="1"
  8435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8436. size="1.91MB" >
  8437. </productMenu>
  8438. <productMenu id="volume"
  8439. type="3" >
  8440. </productMenu>
  8441. <productID id="5410"
  8442. />
  8443. <productGroupable type="0"
  8444. />
  8445. </product>
  8446. <product id="SF1"
  8447. name="SF1"
  8448. series="SF"
  8449. latestVersion="3.3.4"
  8450. show = "1" >
  8451. <productMenu id="protocol"
  8452. type="2" >
  8453. </productMenu>
  8454. <productMenu id="sip"
  8455. type="1" >
  8456. </productMenu>
  8457. <productMenu id="bluetoothIntercom"
  8458. type="1" >
  8459. </productMenu>
  8460. <productMenu id="phone"
  8461. type="1" >
  8462. </productMenu>
  8463. <productMenu id="music"
  8464. type="1" >
  8465. </productMenu>
  8466. <productMenu id="fmradio"
  8467. type="0" >
  8468. </productMenu>
  8469. <productMenu id="deviceSetting"
  8470. type="1"
  8471. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8472. <productMenuURL version="3.0"
  8473. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8474. />
  8475. </productMenu>
  8476. <productMenu id="quickGuide"
  8477. type="0"
  8478. url=""
  8479. size="934KB" >
  8480. </productMenu>
  8481. <productMenu id="userGuide"
  8482. type="1"
  8483. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8484. size="1.14MB" >
  8485. </productMenu>
  8486. <productMenu id="connectGuide"
  8487. type="1"
  8488. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8489. size="1.12MB" >
  8490. </productMenu>
  8491. <productMenu id="volume"
  8492. type="15" >
  8493. </productMenu>
  8494. <productID id="3350"
  8495. />
  8496. <productGroupable type="0"
  8497. />
  8498. </product>
  8499. <product id="SFR"
  8500. name="SFR"
  8501. series="SF"
  8502. latestVersion="1.1.1"
  8503. show = "1" >
  8504. <productMenu id="protocol"
  8505. type="1"
  8506. url="3">
  8507. </productMenu>
  8508. <productMenu id="sip"
  8509. type="1" >
  8510. </productMenu>
  8511. <productMenu id="bluetoothIntercom"
  8512. type="1" >
  8513. </productMenu>
  8514. <productMenu id="phone"
  8515. type="1" >
  8516. </productMenu>
  8517. <productMenu id="music"
  8518. type="1" >
  8519. </productMenu>
  8520. <productMenu id="fmradio"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="deviceSetting"
  8524. type="1"
  8525. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8526. </productMenu>
  8527. <productMenu id="quickGuide"
  8528. type="1"
  8529. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8530. size="607KB" >
  8531. </productMenu>
  8532. <productMenu id="userGuide"
  8533. type="1"
  8534. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8535. size="1.91MB" >
  8536. </productMenu>
  8537. <productMenu id="volume"
  8538. type="4" >
  8539. </productMenu>
  8540. <productID id="5418"
  8541. />
  8542. <productGroupable type="0"
  8543. />
  8544. </product>
  8545. <product id="20S"
  8546. name="20S"
  8547. series="20"
  8548. latestVersion="2.2.3"
  8549. show = "1" >
  8550. <productMenu id="protocol"
  8551. type="0">
  8552. </productMenu>
  8553. <productMenu id="wa"
  8554. type="5" >
  8555. </productMenu>
  8556. <productMenu id="sip"
  8557. type="1" >
  8558. <productMenuType version="1.0"
  8559. type="0"
  8560. />
  8561. </productMenu>
  8562. <productMenu id="bluetoothIntercom"
  8563. type="1" >
  8564. <productMenuType version="1.0"
  8565. type="0"
  8566. />
  8567. </productMenu>
  8568. <productMenu id="intercomSetting"
  8569. type="1" >
  8570. </productMenu>
  8571. <productMenu id="phone"
  8572. type="2" >
  8573. </productMenu>
  8574. <productMenu id="fmradio"
  8575. type="3" >
  8576. </productMenu>
  8577. <productMenu id="deviceSetting"
  8578. type="1"
  8579. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8580. <productMenuURL version="2.0.2"
  8581. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8582. />
  8583. <productMenuURL version="1.5"
  8584. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8585. />
  8586. <productMenuURL version="1.4.1"
  8587. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8588. />
  8589. <productMenuURL version="1.1"
  8590. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8591. />
  8592. <productMenuURL version="1.0"
  8593. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8594. />
  8595. </productMenu>
  8596. <productMenu id="quickGuide"
  8597. type="0"
  8598. url=""
  8599. size="264KB" >
  8600. </productMenu>
  8601. <productMenu id="userGuide"
  8602. type="1"
  8603. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8604. size="3.09MB" >
  8605. </productMenu>
  8606. <productMenu id="connectGuide"
  8607. type="1"
  8608. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8609. size="1.12MB" >
  8610. </productMenu>
  8611. <productID id="4210"
  8612. />
  8613. <productGroupable type="1"
  8614. />
  8615. </product>
  8616. <product id="20S_EVO"
  8617. name="20S EVO"
  8618. series="20"
  8619. latestVersion="2.2.3"
  8620. show = "1" >
  8621. <productMenu id="protocol"
  8622. type="0">
  8623. </productMenu>
  8624. <productMenu id="wa"
  8625. type="5" >
  8626. </productMenu>
  8627. <productMenu id="sip"
  8628. type="1" >
  8629. <productMenuType version="1.0"
  8630. type="0"
  8631. />
  8632. </productMenu>
  8633. <productMenu id="bluetoothIntercom"
  8634. type="1" >
  8635. <productMenuType version="1.0"
  8636. type="0"
  8637. />
  8638. </productMenu>
  8639. <productMenu id="intercomSetting"
  8640. type="1" >
  8641. </productMenu>
  8642. <productMenu id="phone"
  8643. type="2" >
  8644. </productMenu>
  8645. <productMenu id="fmradio"
  8646. type="3" >
  8647. </productMenu>
  8648. <productMenu id="deviceSetting"
  8649. type="1"
  8650. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8651. <productMenuURL version="2.0.2"
  8652. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8653. />
  8654. <productMenuURL version="1.5"
  8655. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8656. />
  8657. <productMenuURL version="1.4.1"
  8658. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8659. />
  8660. <productMenuURL version="1.1"
  8661. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8662. />
  8663. <productMenuURL version="1.0"
  8664. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8665. />
  8666. </productMenu>
  8667. <productMenu id="quickGuide"
  8668. type="0"
  8669. url=""
  8670. size="264KB" >
  8671. </productMenu>
  8672. <productMenu id="userGuide"
  8673. type="1"
  8674. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8675. size="3.09MB" >
  8676. </productMenu>
  8677. <productMenu id="connectGuide"
  8678. type="1"
  8679. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8680. size="1.12MB" >
  8681. </productMenu>
  8682. <productID id="4210"
  8683. />
  8684. <productProductKey key="16"
  8685. />
  8686. <productGroupable type="1"
  8687. />
  8688. </product>
  8689. <product id="10S"
  8690. name="10S"
  8691. series="10"
  8692. latestVersion="3.0.2"
  8693. show = "1" >
  8694. <productMenu id="protocol"
  8695. type="3" >
  8696. </productMenu>
  8697. <productMenu id="sip"
  8698. type="1" >
  8699. </productMenu>
  8700. <productMenu id="bluetoothIntercom"
  8701. type="1" >
  8702. </productMenu>
  8703. <productMenu id="phone"
  8704. type="1" >
  8705. </productMenu>
  8706. <productMenu id="deviceSetting"
  8707. type="1"
  8708. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8709. </productMenu>
  8710. <productMenu id="quickGuide"
  8711. type="1"
  8712. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8713. size="934KB" >
  8714. </productMenu>
  8715. <productMenu id="userGuide"
  8716. type="1"
  8717. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8718. size="1.14MB" >
  8719. </productMenu>
  8720. <productMenu id="connectGuide"
  8721. type="1"
  8722. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8723. size="1.12MB" >
  8724. </productMenu>
  8725. <productID id="3380"
  8726. />
  8727. <productGroupable type="0"
  8728. />
  8729. </product>
  8730. <product id="10S"
  8731. name="10S"
  8732. series="10"
  8733. latestVersion="2.1.1"
  8734. show = "-1" >
  8735. <productMenu id="protocol"
  8736. type="0">
  8737. </productMenu>
  8738. <productMenu id="sip"
  8739. type="1" >
  8740. </productMenu>
  8741. <productMenu id="bluetoothIntercom"
  8742. type="1" >
  8743. </productMenu>
  8744. <productMenu id="phone"
  8745. type="2" >
  8746. </productMenu>
  8747. <productMenu id="fmradio"
  8748. type="3" >
  8749. </productMenu>
  8750. <productMenu id="deviceSetting"
  8751. type="1"
  8752. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8753. <productMenuURL version="1.5"
  8754. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8755. />
  8756. <productMenuURL version="1.3.1"
  8757. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8758. />
  8759. </productMenu>
  8760. <productMenu id="quickGuide"
  8761. type="1"
  8762. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8763. size="310KB" >
  8764. </productMenu>
  8765. <productMenu id="userGuide"
  8766. type="1"
  8767. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8768. size="1.57MB" >
  8769. </productMenu>
  8770. <productID id="5530"
  8771. />
  8772. <productGroupable type="0"
  8773. />
  8774. </product>
  8775. <product id="Apex"
  8776. name="Apex"
  8777. series="Apex"
  8778. latestVersion="1.0"
  8779. latestVersionVoicePrompt="1.0"
  8780. show = "-1" >
  8781. <productMenu id="protocol"
  8782. type="2" >
  8783. </productMenu>
  8784. <productMenu id="serialNumber"
  8785. type="1" >
  8786. </productMenu>
  8787. <productMenu id="ota"
  8788. type="0" >
  8789. <otaLanguages>
  8790. <otaLanguage
  8791. id="0"
  8792. name="English"
  8793. package="0"
  8794. />
  8795. <otaLanguage
  8796. id="0"
  8797. name="French"
  8798. package="1"
  8799. />
  8800. <otaLanguage
  8801. id="0"
  8802. name="Spanish"
  8803. package="2"
  8804. />
  8805. <otaLanguage
  8806. id="0"
  8807. name="Italian"
  8808. package="3"
  8809. />
  8810. <otaLanguage
  8811. id="0"
  8812. name="German"
  8813. package="4"
  8814. />
  8815. <otaLanguage
  8816. id="0"
  8817. name="Dutch"
  8818. package="5"
  8819. />
  8820. <otaLanguage
  8821. id="0"
  8822. name="Russian"
  8823. package="6"
  8824. />
  8825. <otaLanguage
  8826. id="0"
  8827. name="Chinese"
  8828. package="7"
  8829. />
  8830. <otaLanguage
  8831. id="0"
  8832. name="Korean"
  8833. package="8"
  8834. />
  8835. <otaLanguage
  8836. id="0"
  8837. name="Japanese"
  8838. package="9"
  8839. />
  8840. <otaLanguage
  8841. id="0"
  8842. name="Finnish"
  8843. package="10"
  8844. />
  8845. <otaLanguage
  8846. id="0"
  8847. name="Polish"
  8848. package="11"
  8849. />
  8850. </otaLanguages>
  8851. <otaPackages>
  8852. <package
  8853. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8854. size="5183988"
  8855. />
  8856. <package
  8857. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8858. size="5183988"
  8859. />
  8860. <package
  8861. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8862. size="5183988"
  8863. />
  8864. <package
  8865. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8866. size="5183988"
  8867. />
  8868. <package
  8869. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8870. size="5183988"
  8871. />
  8872. <package
  8873. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8874. size="5183988"
  8875. />
  8876. <package
  8877. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8878. size="5183988"
  8879. />
  8880. <package
  8881. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8882. size="5183988"
  8883. />
  8884. <package
  8885. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8886. size="5183988"
  8887. />
  8888. <package
  8889. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8890. size="5183988"
  8891. />
  8892. <package
  8893. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8894. size="5183988"
  8895. />
  8896. <package
  8897. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8898. size="5183988"
  8899. />
  8900. </otaPackages>
  8901. </productMenu>
  8902. <productMenu id="sip"
  8903. type="1" >
  8904. </productMenu>
  8905. <productMenu id="bluetoothIntercom"
  8906. type="1" >
  8907. </productMenu>
  8908. <productMenu id="phone"
  8909. type="1" >
  8910. </productMenu>
  8911. <productMenu id="music"
  8912. type="1" >
  8913. </productMenu>
  8914. <productMenu id="fmradio"
  8915. type="1"
  8916. url="1" >
  8917. </productMenu>
  8918. <productMenu id="deviceSetting"
  8919. type="1"
  8920. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  8921. </productMenu>
  8922. <productMenu id="quickGuide"
  8923. type="0"
  8924. url=""
  8925. size="934KB" >
  8926. </productMenu>
  8927. <productMenu id="userGuide"
  8928. type="1"
  8929. url=""
  8930. size="1.14MB" >
  8931. </productMenu>
  8932. <productMenu id="volume"
  8933. type="15" >
  8934. </productMenu>
  8935. <productID id="3452"
  8936. />
  8937. <productGroupable type="0"
  8938. />
  8939. </product>
  8940. <product id="ApexPlus"
  8941. name="Apex Plus"
  8942. series="Apex"
  8943. latestVersion="1.0"
  8944. latestVersionVoicePrompt="1.0"
  8945. show = "-1" >
  8946. <productMenu id="protocol"
  8947. type="2" >
  8948. </productMenu>
  8949. <productMenu id="serialNumber"
  8950. type="1" >
  8951. </productMenu>
  8952. <productMenu id="ota"
  8953. type="0" >
  8954. <otaLanguages>
  8955. <otaLanguage
  8956. id="0"
  8957. name="English"
  8958. package="0"
  8959. />
  8960. <otaLanguage
  8961. id="0"
  8962. name="French"
  8963. package="1"
  8964. />
  8965. <otaLanguage
  8966. id="0"
  8967. name="Spanish"
  8968. package="2"
  8969. />
  8970. <otaLanguage
  8971. id="0"
  8972. name="Italian"
  8973. package="3"
  8974. />
  8975. <otaLanguage
  8976. id="0"
  8977. name="German"
  8978. package="4"
  8979. />
  8980. <otaLanguage
  8981. id="0"
  8982. name="Dutch"
  8983. package="5"
  8984. />
  8985. <otaLanguage
  8986. id="0"
  8987. name="Russian"
  8988. package="6"
  8989. />
  8990. <otaLanguage
  8991. id="0"
  8992. name="Chinese"
  8993. package="7"
  8994. />
  8995. <otaLanguage
  8996. id="0"
  8997. name="Korean"
  8998. package="8"
  8999. />
  9000. <otaLanguage
  9001. id="0"
  9002. name="Japanese"
  9003. package="9"
  9004. />
  9005. <otaLanguage
  9006. id="0"
  9007. name="Finnish"
  9008. package="10"
  9009. />
  9010. <otaLanguage
  9011. id="0"
  9012. name="Polish"
  9013. package="11"
  9014. />
  9015. </otaLanguages>
  9016. <otaPackages>
  9017. <package
  9018. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9019. size="5183988"
  9020. />
  9021. <package
  9022. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9023. size="5183988"
  9024. />
  9025. <package
  9026. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9027. size="5183988"
  9028. />
  9029. <package
  9030. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9031. size="5183988"
  9032. />
  9033. <package
  9034. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9035. size="5183988"
  9036. />
  9037. <package
  9038. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9039. size="5183988"
  9040. />
  9041. <package
  9042. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9043. size="5183988"
  9044. />
  9045. <package
  9046. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9047. size="5183988"
  9048. />
  9049. <package
  9050. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9051. size="5183988"
  9052. />
  9053. <package
  9054. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9055. size="5183988"
  9056. />
  9057. <package
  9058. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9059. size="5183988"
  9060. />
  9061. <package
  9062. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9063. size="5183988"
  9064. />
  9065. </otaPackages>
  9066. </productMenu>
  9067. <productMenu id="sip"
  9068. type="1" >
  9069. </productMenu>
  9070. <productMenu id="bluetoothIntercom"
  9071. type="1" >
  9072. </productMenu>
  9073. <productMenu id="phone"
  9074. type="1" >
  9075. </productMenu>
  9076. <productMenu id="music"
  9077. type="1" >
  9078. </productMenu>
  9079. <productMenu id="fmradio"
  9080. type="1"
  9081. url="1" >
  9082. </productMenu>
  9083. <productMenu id="deviceSetting"
  9084. type="1"
  9085. url="https://api.sena.com/support/test/xml/NS_Apex_test_03.xml" >
  9086. </productMenu>
  9087. <productMenu id="quickGuide"
  9088. type="0"
  9089. url=""
  9090. size="934KB" >
  9091. </productMenu>
  9092. <productMenu id="userGuide"
  9093. type="1"
  9094. url=""
  9095. size="1.14MB" >
  9096. </productMenu>
  9097. <productMenu id="volume"
  9098. type="15" >
  9099. </productMenu>
  9100. <productID id="3453"
  9101. />
  9102. <productGroupable type="0"
  9103. />
  9104. </product>
  9105. <product id="10R2"
  9106. name="10R 2"
  9107. series="10"
  9108. latestVersion="0.9"
  9109. latestVersionVoicePrompt="1.1"
  9110. show = "-1" >
  9111. <productMenu id="protocol"
  9112. type="2" >
  9113. </productMenu>
  9114. <productMenu id="ota"
  9115. type="2" >
  9116. <otaPackages>
  9117. <package
  9118. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9119. size="2945812"
  9120. />
  9121. </otaPackages>
  9122. </productMenu>
  9123. <productMenu id="sip"
  9124. type="1" >
  9125. </productMenu>
  9126. <productMenu id="bluetoothIntercom"
  9127. type="1" >
  9128. </productMenu>
  9129. <productMenu id="phone"
  9130. type="1" >
  9131. </productMenu>
  9132. <productMenu id="music"
  9133. type="1" >
  9134. </productMenu>
  9135. <productMenu id="fmradio"
  9136. type="1"
  9137. url="1" >
  9138. </productMenu>
  9139. <productMenu id="deviceSetting"
  9140. type="1"
  9141. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9142. </productMenu>
  9143. <productMenu id="quickGuide"
  9144. type="1"
  9145. url=""
  9146. size="934KB" >
  9147. </productMenu>
  9148. <productMenu id="userGuide"
  9149. type="0"
  9150. url=""
  9151. size="1.14MB" >
  9152. </productMenu>
  9153. <productMenu id="volume"
  9154. type="15" >
  9155. </productMenu>
  9156. <productID id="4000"
  9157. />
  9158. <productGroupable type="0"
  9159. />
  9160. </product>
  9161. <product id="10R"
  9162. name="10R"
  9163. series="10"
  9164. latestVersion="2.1.1"
  9165. show = "1" >
  9166. <productMenu id="protocol"
  9167. type="0">
  9168. </productMenu>
  9169. <productMenu id="sip"
  9170. type="1" >
  9171. <productMenuType version="1.0.2"
  9172. type="0"
  9173. />
  9174. </productMenu>
  9175. <productMenu id="bluetoothIntercom"
  9176. type="1" >
  9177. <productMenuType version="1.0.2"
  9178. type="0"
  9179. />
  9180. </productMenu>
  9181. <productMenu id="phone"
  9182. type="2" >
  9183. </productMenu>
  9184. <productMenu id="fmradio"
  9185. type="3" >
  9186. </productMenu>
  9187. <productMenu id="deviceSetting"
  9188. type="1"
  9189. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9190. <productMenuURL version="1.4"
  9191. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9192. />
  9193. <productMenuURL version="1.2.1"
  9194. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9195. />
  9196. <productMenuURL version="1.0.2"
  9197. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9198. />
  9199. <productMenuURL version="1.0"
  9200. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9201. />
  9202. </productMenu>
  9203. <productMenu id="quickGuide"
  9204. type="1"
  9205. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9206. size="400KB" >
  9207. </productMenu>
  9208. <productMenu id="userGuide"
  9209. type="1"
  9210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9211. size="2.75MB" >
  9212. </productMenu>
  9213. <productMenu id="connectGuide"
  9214. type="1"
  9215. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9216. size="1.12MB" >
  9217. </productMenu>
  9218. <productID id="5520"
  9219. />
  9220. <productGroupable type="0"
  9221. />
  9222. </product>
  9223. <product id="10C_EVO"
  9224. name="10C EVO"
  9225. series="10"
  9226. latestVersion="1.7"
  9227. show = "1" >
  9228. <productMenu id="protocol"
  9229. type="0">
  9230. </productMenu>
  9231. <productMenu id="sip"
  9232. type="1" >
  9233. </productMenu>
  9234. <productMenu id="bluetoothIntercom"
  9235. type="1" >
  9236. </productMenu>
  9237. <productMenu id="phone"
  9238. type="2" >
  9239. </productMenu>
  9240. <productMenu id="fmradio"
  9241. type="3" >
  9242. </productMenu>
  9243. <productMenu id="deviceSetting"
  9244. type="1"
  9245. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9246. <productMenuURL version="1.3.1"
  9247. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9248. />
  9249. </productMenu>
  9250. <productMenu id="quickGuide"
  9251. type="1"
  9252. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9253. size="1.32MB" >
  9254. </productMenu>
  9255. <productMenu id="userGuide"
  9256. type="1"
  9257. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9258. size="1.68MB" >
  9259. </productMenu>
  9260. <productMenu id="connectGuide"
  9261. type="1"
  9262. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9263. size="1.12MB" >
  9264. </productMenu>
  9265. <productID id="5570"
  9266. />
  9267. <productGroupable type="0"
  9268. />
  9269. </product>
  9270. <product id="10C_Pro"
  9271. name="10C Pro"
  9272. series="10"
  9273. latestVersion="2.7.1"
  9274. show = "1" >
  9275. <productMenu id="protocol"
  9276. type="0">
  9277. </productMenu>
  9278. <productMenu id="sip"
  9279. type="1" >
  9280. </productMenu>
  9281. <productMenu id="bluetoothIntercom"
  9282. type="1" >
  9283. </productMenu>
  9284. <productMenu id="phone"
  9285. type="2" >
  9286. </productMenu>
  9287. <productMenu id="fmradio"
  9288. type="3" >
  9289. </productMenu>
  9290. <productMenu id="deviceSetting"
  9291. type="1"
  9292. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9293. <productMenuURL version="2.5.1"
  9294. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9295. />
  9296. <productMenuURL version="1.0"
  9297. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9298. />
  9299. </productMenu>
  9300. <productMenu id="quickGuide"
  9301. type="1"
  9302. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9303. size="651KB" >
  9304. </productMenu>
  9305. <productMenu id="userGuide"
  9306. type="1"
  9307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9308. size="2.34MB" >
  9309. </productMenu>
  9310. <productMenu id="connectGuide"
  9311. type="1"
  9312. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9313. size="1.12MB" >
  9314. </productMenu>
  9315. <productID id="5580"
  9316. />
  9317. <productGroupable type="0"
  9318. />
  9319. </product>
  9320. <product id="10C"
  9321. name="10C"
  9322. series="10"
  9323. latestVersion="3.0.4"
  9324. show = "1" >
  9325. <productMenu id="protocol"
  9326. type="0">
  9327. </productMenu>
  9328. <productMenu id="sip"
  9329. type="1" >
  9330. <productMenuType version="1.0.4"
  9331. type="0"
  9332. />
  9333. </productMenu>
  9334. <productMenu id="bluetoothIntercom"
  9335. type="1" >
  9336. <productMenuType version="1.0.4"
  9337. type="0"
  9338. />
  9339. </productMenu>
  9340. <productMenu id="phone"
  9341. type="2" >
  9342. </productMenu>
  9343. <productMenu id="fmradio"
  9344. type="3" >
  9345. </productMenu>
  9346. <productMenu id="deviceSetting"
  9347. type="1"
  9348. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9349. <productMenuURL version="2.3"
  9350. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9351. />
  9352. <productMenuURL version="2.1.1"
  9353. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9354. />
  9355. <productMenuURL version="1.0.4"
  9356. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9357. />
  9358. <productMenuURL version="1.0.2"
  9359. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9360. />
  9361. </productMenu>
  9362. <productMenu id="quickGuide"
  9363. type="1"
  9364. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9365. size="935KB" >
  9366. </productMenu>
  9367. <productMenu id="userGuide"
  9368. type="1"
  9369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9370. size="2.82MB" >
  9371. </productMenu>
  9372. <productMenu id="connectGuide"
  9373. type="1"
  9374. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9375. size="1.12MB" >
  9376. </productMenu>
  9377. <productID id="5510"
  9378. />
  9379. <productGroupable type="0"
  9380. />
  9381. </product>
  9382. <product id="10U_GT_AIR"
  9383. name="10U GT-Air"
  9384. series="10"
  9385. latestVersion="2.0.4"
  9386. show = "1" >
  9387. <productMenu id="protocol"
  9388. type="0">
  9389. </productMenu>
  9390. <productMenu id="sip"
  9391. type="1" >
  9392. <productMenuType version="1.0.2"
  9393. type="0"
  9394. />
  9395. </productMenu>
  9396. <productMenu id="bluetoothIntercom"
  9397. type="1" >
  9398. <productMenuType version="1.0.2"
  9399. type="0"
  9400. />
  9401. </productMenu>
  9402. <productMenu id="phone"
  9403. type="2" >
  9404. </productMenu>
  9405. <productMenu id="fmradio"
  9406. type="3" >
  9407. </productMenu>
  9408. <productMenu id="deviceSetting"
  9409. type="1"
  9410. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9411. <productMenuURL version="1.3.2"
  9412. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9413. />
  9414. <productMenuURL version="1.0.2"
  9415. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9416. />
  9417. </productMenu>
  9418. <productMenu id="quickGuide"
  9419. type="1"
  9420. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9421. size="685KB" >
  9422. </productMenu>
  9423. <productMenu id="userGuide"
  9424. type="1"
  9425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9426. size="684KB" >
  9427. </productMenu>
  9428. <productMenu id="connectGuide"
  9429. type="1"
  9430. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9431. size="1.12MB" >
  9432. </productMenu>
  9433. <productID id="5610"
  9434. />
  9435. <productGroupable type="0"
  9436. />
  9437. </product>
  9438. <product id="10U_NEOTEC"
  9439. name="10U Neotec"
  9440. series="10"
  9441. latestVersion="2.0.4"
  9442. show = "1" >
  9443. <productMenu id="protocol"
  9444. type="0">
  9445. </productMenu>
  9446. <productMenu id="sip"
  9447. type="1" >
  9448. <productMenuType version="1.0.2"
  9449. type="0"
  9450. />
  9451. </productMenu>
  9452. <productMenu id="bluetoothIntercom"
  9453. type="1" >
  9454. <productMenuType version="1.0.2"
  9455. type="0"
  9456. />
  9457. </productMenu>
  9458. <productMenu id="phone"
  9459. type="2" >
  9460. </productMenu>
  9461. <productMenu id="fmradio"
  9462. type="3" >
  9463. </productMenu>
  9464. <productMenu id="deviceSetting"
  9465. type="1"
  9466. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9467. <productMenuURL version="1.3.2"
  9468. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9469. />
  9470. <productMenuURL version="1.0.2"
  9471. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9472. />
  9473. </productMenu>
  9474. <productMenu id="quickGuide"
  9475. type="1"
  9476. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9477. size="689KB" >
  9478. </productMenu>
  9479. <productMenu id="userGuide"
  9480. type="1"
  9481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9482. size="684KB" >
  9483. </productMenu>
  9484. <productMenu id="connectGuide"
  9485. type="1"
  9486. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9487. size="1.12MB" >
  9488. </productMenu>
  9489. <productID id="5611"
  9490. />
  9491. <productGroupable type="0"
  9492. />
  9493. </product>
  9494. <product id="10U_J_CRUISE"
  9495. name="10U J-Cruise"
  9496. series="10"
  9497. latestVersion="2.0.4"
  9498. show = "1" >
  9499. <productMenu id="protocol"
  9500. type="0">
  9501. </productMenu>
  9502. <productMenu id="sip"
  9503. type="1" >
  9504. <productMenuType version="1.0.2"
  9505. type="0"
  9506. />
  9507. </productMenu>
  9508. <productMenu id="bluetoothIntercom"
  9509. type="1" >
  9510. <productMenuType version="1.0.2"
  9511. type="0"
  9512. />
  9513. </productMenu>
  9514. <productMenu id="phone"
  9515. type="2" >
  9516. </productMenu>
  9517. <productMenu id="fmradio"
  9518. type="3" >
  9519. </productMenu>
  9520. <productMenu id="deviceSetting"
  9521. type="1"
  9522. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9523. <productMenuURL version="1.3.2"
  9524. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9525. />
  9526. <productMenuURL version="1.0.2"
  9527. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9528. />
  9529. </productMenu>
  9530. <productMenu id="quickGuide"
  9531. type="1"
  9532. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9533. size="686KB" >
  9534. </productMenu>
  9535. <productMenu id="userGuide"
  9536. type="1"
  9537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9538. size="684KB" >
  9539. </productMenu>
  9540. <productMenu id="connectGuide"
  9541. type="1"
  9542. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9543. size="1.12MB" >
  9544. </productMenu>
  9545. <productID id="5612"
  9546. />
  9547. <productGroupable type="0"
  9548. />
  9549. </product>
  9550. <product id="10U_C3"
  9551. name="10U C3/C3Pro"
  9552. series="10"
  9553. latestVersion="2.0.4"
  9554. show = "1" >
  9555. <productMenu id="protocol"
  9556. type="0">
  9557. </productMenu>
  9558. <productMenu id="sip"
  9559. type="1" >
  9560. <productMenuType version="1.0.2"
  9561. type="0"
  9562. />
  9563. </productMenu>
  9564. <productMenu id="bluetoothIntercom"
  9565. type="1" >
  9566. <productMenuType version="1.0.2"
  9567. type="0"
  9568. />
  9569. </productMenu>
  9570. <productMenu id="phone"
  9571. type="2" >
  9572. </productMenu>
  9573. <productMenu id="fmradio"
  9574. type="3" >
  9575. </productMenu>
  9576. <productMenu id="deviceSetting"
  9577. type="1"
  9578. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9579. <productMenuURL version="1.3.2"
  9580. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9581. />
  9582. <productMenuURL version="1.0.2"
  9583. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9584. />
  9585. </productMenu>
  9586. <productMenu id="quickGuide"
  9587. type="1"
  9588. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9589. size="199KB" >
  9590. </productMenu>
  9591. <productMenu id="userGuide"
  9592. type="1"
  9593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9594. size="684KB" >
  9595. </productMenu>
  9596. <productMenu id="connectGuide"
  9597. type="1"
  9598. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9599. size="1.12MB" >
  9600. </productMenu>
  9601. <productID id="5620"
  9602. />
  9603. <productGroupable type="0"
  9604. />
  9605. </product>
  9606. <product id="10U_ARAI"
  9607. name="10U Arai"
  9608. series="10"
  9609. latestVersion="2.0.4"
  9610. show = "1" >
  9611. <productMenu id="protocol"
  9612. type="0">
  9613. </productMenu>
  9614. <productMenu id="sip"
  9615. type="1" >
  9616. <productMenuType version="1.0.2"
  9617. type="0"
  9618. />
  9619. </productMenu>
  9620. <productMenu id="bluetoothIntercom"
  9621. type="1" >
  9622. <productMenuType version="1.0.2"
  9623. type="0"
  9624. />
  9625. </productMenu>
  9626. <productMenu id="phone"
  9627. type="2" >
  9628. </productMenu>
  9629. <productMenu id="fmradio"
  9630. type="3" >
  9631. </productMenu>
  9632. <productMenu id="deviceSetting"
  9633. type="1"
  9634. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9635. <productMenuURL version="1.3.2"
  9636. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9637. />
  9638. <productMenuURL version="1.0.2"
  9639. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9640. />
  9641. </productMenu>
  9642. <productMenu id="quickGuide"
  9643. type="1"
  9644. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9645. size="689KB" >
  9646. </productMenu>
  9647. <productMenu id="userGuide"
  9648. type="1"
  9649. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9650. size="684KB" >
  9651. </productMenu>
  9652. <productMenu id="connectGuide"
  9653. type="1"
  9654. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9655. size="1.12MB" >
  9656. </productMenu>
  9657. <productID id="5621"
  9658. />
  9659. <productGroupable type="0"
  9660. />
  9661. </product>
  9662. <product id="10Upad"
  9663. name="10Upad"
  9664. series="10"
  9665. latestVersion="2.0.3"
  9666. show = "1" >
  9667. <productMenu id="protocol"
  9668. type="0">
  9669. </productMenu>
  9670. <productMenu id="sip"
  9671. type="1" >
  9672. </productMenu>
  9673. <productMenu id="bluetoothIntercom"
  9674. type="1" >
  9675. </productMenu>
  9676. <productMenu id="phone"
  9677. type="2" >
  9678. </productMenu>
  9679. <productMenu id="fmradio"
  9680. type="3" >
  9681. </productMenu>
  9682. <productMenu id="deviceSetting"
  9683. type="1"
  9684. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9685. <productMenuURL version="1.0.3"
  9686. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9687. />
  9688. </productMenu>
  9689. <productMenu id="quickGuide"
  9690. type="1"
  9691. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9692. size="615KB" >
  9693. </productMenu>
  9694. <productMenu id="userGuide"
  9695. type="1"
  9696. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9697. size="0.99MB" >
  9698. </productMenu>
  9699. <productMenu id="connectGuide"
  9700. type="1"
  9701. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9702. size="1.12MB" >
  9703. </productMenu>
  9704. <productID id="6210"
  9705. />
  9706. <productGroupable type="0"
  9707. />
  9708. </product>
  9709. <product id="5S"
  9710. name="5S"
  9711. series="5"
  9712. latestVersion="2.3.1"
  9713. show = "1" >
  9714. <productMenu id="protocol"
  9715. type="3" >
  9716. </productMenu>
  9717. <productMenu id="sip"
  9718. type="1" >
  9719. </productMenu>
  9720. <productMenu id="bluetoothIntercom"
  9721. type="1" >
  9722. </productMenu>
  9723. <productMenu id="phone"
  9724. type="1" >
  9725. </productMenu>
  9726. <productMenu id="fmradio"
  9727. type="0" >
  9728. </productMenu>
  9729. <productMenu id="deviceSetting"
  9730. type="1"
  9731. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9732. </productMenu>
  9733. <productMenu id="quickGuide"
  9734. type="0"
  9735. url=""
  9736. size="934KB" >
  9737. </productMenu>
  9738. <productMenu id="userGuide"
  9739. type="1"
  9740. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9741. size="1.14MB" >
  9742. </productMenu>
  9743. <productMenu id="connectGuide"
  9744. type="1"
  9745. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9746. size="1.12MB" >
  9747. </productMenu>
  9748. <productID id="5590"
  9749. />
  9750. <productGroupable type="0"
  9751. />
  9752. </product>
  9753. <product id="5S"
  9754. name="5S"
  9755. series="5"
  9756. latestVersion="1.2"
  9757. show = "-1" >
  9758. <productMenu id="protocol"
  9759. type="0">
  9760. </productMenu>
  9761. <productMenu id="sip"
  9762. type="1" >
  9763. </productMenu>
  9764. <productMenu id="bluetoothIntercom"
  9765. type="1" >
  9766. </productMenu>
  9767. <productMenu id="phone"
  9768. type="2" >
  9769. </productMenu>
  9770. <productMenu id="fmradio"
  9771. type="3" >
  9772. </productMenu>
  9773. <productMenu id="deviceSetting"
  9774. type="1"
  9775. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9776. </productMenu>
  9777. <productMenu id="quickGuide"
  9778. type="0"
  9779. url=""
  9780. size="970KB" >
  9781. </productMenu>
  9782. <productMenu id="userGuide"
  9783. type="1"
  9784. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9785. size="1.26MB" >
  9786. </productMenu>
  9787. <productID id="5534"
  9788. />
  9789. <productGroupable type="0"
  9790. />
  9791. </product>
  9792. <product id="5S"
  9793. name="5S"
  9794. series="5"
  9795. latestVersion="3.0.1"
  9796. show = "-1" >
  9797. <productMenu id="protocol"
  9798. type="0">
  9799. </productMenu>
  9800. <productMenu id="sip"
  9801. type="1" >
  9802. </productMenu>
  9803. <productMenu id="bluetoothIntercom"
  9804. type="1" >
  9805. </productMenu>
  9806. <productMenu id="phone"
  9807. type="2" >
  9808. </productMenu>
  9809. <productMenu id="fmradio"
  9810. type="0" >
  9811. </productMenu>
  9812. <productMenu id="deviceSetting"
  9813. type="1"
  9814. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9815. </productMenu>
  9816. <productMenu id="quickGuide"
  9817. type="0"
  9818. url=""
  9819. size="970KB" >
  9820. </productMenu>
  9821. <productMenu id="userGuide"
  9822. type="1"
  9823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9824. size="1.26MB" >
  9825. </productMenu>
  9826. <productID id="5538"
  9827. />
  9828. <productGroupable type="0"
  9829. />
  9830. </product>
  9831. <product id="3SPLUS"
  9832. name="3S PLUS"
  9833. series="3"
  9834. latestVersion="2.2"
  9835. show = "1" >
  9836. <productMenu id="protocol"
  9837. type="3" >
  9838. </productMenu>
  9839. <productMenu id="sip"
  9840. type="1" >
  9841. </productMenu>
  9842. <productMenu id="bluetoothIntercom"
  9843. type="1" >
  9844. </productMenu>
  9845. <productMenu id="deviceSetting"
  9846. type="1"
  9847. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9848. <productMenuURL version="2.2.1"
  9849. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9850. />
  9851. </productMenu>
  9852. <productMenu id="quickGuide"
  9853. type="1"
  9854. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9855. size="344KB" >
  9856. </productMenu>
  9857. <productMenu id="userGuide"
  9858. type="1"
  9859. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9860. size="1.14MB" >
  9861. </productMenu>
  9862. <productMenu id="connectGuide"
  9863. type="1"
  9864. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9865. size="1.12MB" >
  9866. </productMenu>
  9867. <productID id="4023"
  9868. />
  9869. <productGroupable type="0"
  9870. />
  9871. </product>
  9872. <product id="3SPLUS"
  9873. name="3S PLUS"
  9874. series="3"
  9875. latestVersion="1.1"
  9876. show = "-1" >
  9877. <productMenu id="protocol"
  9878. type="0">
  9879. </productMenu>
  9880. <productMenu id="sip"
  9881. type="1" >
  9882. </productMenu>
  9883. <productMenu id="bluetoothIntercom"
  9884. type="1" >
  9885. </productMenu>
  9886. <productMenu id="deviceSetting"
  9887. type="1"
  9888. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9889. </productMenu>
  9890. <productMenu id="quickGuide"
  9891. type="1"
  9892. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9893. size="842KB" >
  9894. </productMenu>
  9895. <productMenu id="userGuide"
  9896. type="1"
  9897. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9898. size="1.02MB" >
  9899. </productMenu>
  9900. <productID id="6320"
  9901. />
  9902. <productGroupable type="0"
  9903. />
  9904. </product>
  9905. <product id="AConnect"
  9906. name="Alpinestars A-Connect"
  9907. series="60"
  9908. latestVersion="1.0.2"
  9909. latestVersionMesh="0.19"
  9910. latestVersionVoicePrompt="1.6"
  9911. show = "-1" >
  9912. <productMenu id="protocol"
  9913. type="2" >
  9914. </productMenu>
  9915. <productMenu id="ota"
  9916. type="2" >
  9917. <otaLanguages>
  9918. <otaLanguage
  9919. id="0"
  9920. name="English"
  9921. package="0"
  9922. />
  9923. <otaLanguage
  9924. id="0"
  9925. name="French"
  9926. package="1"
  9927. />
  9928. <otaLanguage
  9929. id="0"
  9930. name="Spanish"
  9931. package="2"
  9932. />
  9933. <otaLanguage
  9934. id="0"
  9935. name="Italian"
  9936. package="3"
  9937. />
  9938. <otaLanguage
  9939. id="0"
  9940. name="German"
  9941. package="4"
  9942. />
  9943. <otaLanguage
  9944. id="0"
  9945. name="Dutch"
  9946. package="5"
  9947. />
  9948. <otaLanguage
  9949. id="0"
  9950. name="Russian"
  9951. package="6"
  9952. />
  9953. <otaLanguage
  9954. id="0"
  9955. name="Chinese"
  9956. package="7"
  9957. />
  9958. <otaLanguage
  9959. id="0"
  9960. name="Korean"
  9961. package="8"
  9962. />
  9963. <otaLanguage
  9964. id="0"
  9965. name="Japanese"
  9966. package="9"
  9967. />
  9968. <otaLanguage
  9969. id="0"
  9970. name="Finnish"
  9971. package="10"
  9972. />
  9973. <otaLanguage
  9974. id="0"
  9975. name="Polish"
  9976. package="11"
  9977. />
  9978. </otaLanguages>
  9979. <otaPackages>
  9980. <package
  9981. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9982. size="5183988"
  9983. />
  9984. <package
  9985. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9986. size="5183988"
  9987. />
  9988. <package
  9989. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9990. size="5183988"
  9991. />
  9992. <package
  9993. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9994. size="5183988"
  9995. />
  9996. <package
  9997. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9998. size="5183988"
  9999. />
  10000. <package
  10001. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10002. size="5183988"
  10003. />
  10004. <package
  10005. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10006. size="5183988"
  10007. />
  10008. <package
  10009. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10010. size="5183988"
  10011. />
  10012. <package
  10013. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10014. size="5183988"
  10015. />
  10016. <package
  10017. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10018. size="5183988"
  10019. />
  10020. <package
  10021. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10022. size="5183988"
  10023. />
  10024. <package
  10025. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10026. size="5183988"
  10027. />
  10028. </otaPackages>
  10029. </productMenu>
  10030. <productMenu id="sip"
  10031. type="1" >
  10032. </productMenu>
  10033. <productMenu id="illusion"
  10034. type="0" >
  10035. </productMenu>
  10036. <productMenu id="meshIntercom+"
  10037. type="3"
  10038. url="2" >
  10039. </productMenu>
  10040. <productMenu id="waveIntercom"
  10041. type="1" >
  10042. </productMenu>
  10043. <productMenu id="bluetoothIntercom"
  10044. type="1"
  10045. url="2" >
  10046. </productMenu>
  10047. <productMenu id="bluetoothIntercomGrouping"
  10048. type="0" >
  10049. </productMenu>
  10050. <productMenu id="fmradio"
  10051. type="1"
  10052. url="1" >
  10053. </productMenu>
  10054. <productMenu id="phone"
  10055. type="1" >
  10056. </productMenu>
  10057. <productMenu id="music"
  10058. type="1" >
  10059. </productMenu>
  10060. <productMenu id="musicSharing"
  10061. type="0" >
  10062. </productMenu>
  10063. <productMenu id="deviceSetting"
  10064. type="1"
  10065. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10066. </productMenu>
  10067. <productMenu id="quickGuide"
  10068. type="0"
  10069. url=""
  10070. size="1.12MB" >
  10071. </productMenu>
  10072. <productMenu id="userGuide"
  10073. type="1"
  10074. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10075. size="2.0MB" >
  10076. </productMenu>
  10077. <productMenu id="videoGuide"
  10078. type="0"
  10079. url=""
  10080. size="3.41MB" >
  10081. </productMenu>
  10082. <productMenu id="volume"
  10083. type="16" >
  10084. </productMenu>
  10085. <productMenu id="volume+"
  10086. type="2"
  10087. url="0x6004" >
  10088. </productMenu>
  10089. <productMenu id="soundMode"
  10090. type="0" >
  10091. </productMenu>
  10092. <productMenu id="battery"
  10093. type="1" >
  10094. </productMenu>
  10095. <productID id="6A82"
  10096. />
  10097. <productGroupable type="0"
  10098. />
  10099. </product>
  10100. <product id="iCon"
  10101. name="iCon"
  10102. series="50"
  10103. latestVersion="1.2"
  10104. show = "0" >
  10105. <productMenu id="protocol"
  10106. type="2" >
  10107. </productMenu>
  10108. <productMenu id="alexa"
  10109. type="0" >
  10110. </productMenu>
  10111. <productMenu id="wa"
  10112. type="0" >
  10113. </productMenu>
  10114. <productMenu id="sip"
  10115. type="1" >
  10116. </productMenu>
  10117. <productMenu id="led"
  10118. type="3" >
  10119. </productMenu>
  10120. <productMenu id="meshIntercom"
  10121. type="20" >
  10122. </productMenu>
  10123. <productMenu id="meshIntercom+"
  10124. type="3"
  10125. url="0" >
  10126. <productMenuType version="1.0.9"
  10127. type="2"
  10128. />
  10129. </productMenu>
  10130. <productMenu id="bluetoothIntercom"
  10131. type="1" >
  10132. </productMenu>
  10133. <productMenu id="phone"
  10134. type="1" >
  10135. </productMenu>
  10136. <productMenu id="music"
  10137. type="1" >
  10138. </productMenu>
  10139. <productMenu id="fmradio"
  10140. type="1" >
  10141. </productMenu>
  10142. <productMenu id="deviceSetting"
  10143. type="1"
  10144. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10145. <productMenuURL version="1.0.9"
  10146. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10147. />
  10148. </productMenu>
  10149. <productMenu id="quickGuide"
  10150. type="1"
  10151. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10152. size="344KB" >
  10153. </productMenu>
  10154. <productMenu id="userGuide"
  10155. type="1"
  10156. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10157. size="3.41MB" >
  10158. </productMenu>
  10159. <productMenu id="volume"
  10160. type="11" >
  10161. </productMenu>
  10162. <productMenu id="battery"
  10163. type="1" >
  10164. </productMenu>
  10165. <productID id="3900"
  10166. />
  10167. <productGroupable type="0"
  10168. />
  10169. </product>
  10170. <product id="ICONHelmLinkSL"
  10171. name="ICON HelmLink SL"
  10172. series="50"
  10173. latestVersion="1.0"
  10174. latestVersionVoicePrompt="1.6"
  10175. show = "-1" >
  10176. <productMenu id="protocol"
  10177. type="2" >
  10178. </productMenu>
  10179. <productMenu id="alexa"
  10180. type="0" >
  10181. </productMenu>
  10182. <productMenu id="ota"
  10183. type="0" >
  10184. <otaPackages>
  10185. <package
  10186. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10187. size="2945812"
  10188. />
  10189. </otaPackages>
  10190. </productMenu>
  10191. <productMenu id="wa"
  10192. type="0" >
  10193. </productMenu>
  10194. <productMenu id="meshIntercom"
  10195. type="30" >
  10196. </productMenu>
  10197. <productMenu id="meshIntercom+"
  10198. type="3"
  10199. url="2" >
  10200. </productMenu>
  10201. <productMenu id="waveIntercom"
  10202. type="1" >
  10203. </productMenu>
  10204. <productMenu id="phone"
  10205. type="1" >
  10206. </productMenu>
  10207. <productMenu id="music"
  10208. type="1" >
  10209. </productMenu>
  10210. <productMenu id="musicSharing"
  10211. type="0" >
  10212. </productMenu>
  10213. <productMenu id="deviceSetting"
  10214. type="1"
  10215. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10216. </productMenu>
  10217. <productMenu id="quickGuide"
  10218. type="0"
  10219. url=""
  10220. size="1.12MB" >
  10221. </productMenu>
  10222. <productMenu id="userGuide"
  10223. type="1"
  10224. url=""
  10225. size="2.0MB" >
  10226. </productMenu>
  10227. <productMenu id="volume"
  10228. type="12" >
  10229. </productMenu>
  10230. <productMenu id="battery"
  10231. type="1" >
  10232. </productMenu>
  10233. <productID id="6842"
  10234. />
  10235. <productGroupable type="0"
  10236. />
  10237. </product>
  10238. <product id="HD50S"
  10239. name="H-D Audio 50S"
  10240. series="50"
  10241. latestVersion="1.0.1"
  10242. show = "-1" >
  10243. <productMenu id="protocol"
  10244. type="2" >
  10245. </productMenu>
  10246. <productMenu id="alexa"
  10247. type="0" >
  10248. </productMenu>
  10249. <productMenu id="ota"
  10250. type="0"
  10251. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10252. size="1150234" >
  10253. </productMenu>
  10254. <productMenu id="wa"
  10255. type="1" >
  10256. </productMenu>
  10257. <productMenu id="sip"
  10258. type="1" >
  10259. </productMenu>
  10260. <productMenu id="meshIntercom"
  10261. type="20" >
  10262. </productMenu>
  10263. <productMenu id="meshIntercom+"
  10264. type="3"
  10265. url="0" >
  10266. <productMenuType version="1.0.9"
  10267. type="2"
  10268. />
  10269. </productMenu>
  10270. <productMenu id="bluetoothIntercom"
  10271. type="1" >
  10272. </productMenu>
  10273. <productMenu id="phone"
  10274. type="1" >
  10275. </productMenu>
  10276. <productMenu id="music"
  10277. type="1" >
  10278. </productMenu>
  10279. <productMenu id="fmradio"
  10280. type="1" >
  10281. </productMenu>
  10282. <productMenu id="deviceSetting"
  10283. type="1"
  10284. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10285. <productMenuURL version="1.0.9"
  10286. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10287. />
  10288. </productMenu>
  10289. <productMenu id="quickGuide"
  10290. type="1"
  10291. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10292. size="934KB" >
  10293. </productMenu>
  10294. <productMenu id="userGuide"
  10295. type="1"
  10296. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10297. size="1.14MB" >
  10298. </productMenu>
  10299. <productMenu id="volume"
  10300. type="11" >
  10301. </productMenu>
  10302. <productMenu id="battery"
  10303. type="1" >
  10304. </productMenu>
  10305. <productID id="3156"
  10306. />
  10307. <productGroupable type="0"
  10308. />
  10309. </product>
  10310. <product id="HD50S"
  10311. name="H-D Audio 50S"
  10312. series="50"
  10313. latestVersion="2.0.2"
  10314. show = "0" >
  10315. <productMenu id="protocol"
  10316. type="2" >
  10317. </productMenu>
  10318. <productMenu id="alexa"
  10319. type="0" >
  10320. </productMenu>
  10321. <productMenu id="ota"
  10322. type="0"
  10323. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10324. size="1150234" >
  10325. </productMenu>
  10326. <productMenu id="wa"
  10327. type="1" >
  10328. </productMenu>
  10329. <productMenu id="sip"
  10330. type="1" >
  10331. </productMenu>
  10332. <productMenu id="meshIntercom"
  10333. type="20" >
  10334. </productMenu>
  10335. <productMenu id="meshIntercom+"
  10336. type="3"
  10337. url="0" >
  10338. <productMenuType version="2.0.9"
  10339. type="2"
  10340. />
  10341. </productMenu>
  10342. <productMenu id="bluetoothIntercom"
  10343. type="1" >
  10344. </productMenu>
  10345. <productMenu id="phone"
  10346. type="1" >
  10347. </productMenu>
  10348. <productMenu id="music"
  10349. type="1" >
  10350. </productMenu>
  10351. <productMenu id="fmradio"
  10352. type="1" >
  10353. </productMenu>
  10354. <productMenu id="deviceSetting"
  10355. type="1"
  10356. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10357. <productMenuURL version="2.0.9"
  10358. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10359. />
  10360. </productMenu>
  10361. <productMenu id="quickGuide"
  10362. type="1"
  10363. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10364. size="934KB" >
  10365. </productMenu>
  10366. <productMenu id="userGuide"
  10367. type="1"
  10368. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10369. size="1.14MB" >
  10370. </productMenu>
  10371. <productMenu id="volume"
  10372. type="11" >
  10373. </productMenu>
  10374. <productMenu id="battery"
  10375. type="1" >
  10376. </productMenu>
  10377. <productID id="3213"
  10378. />
  10379. <productGroupable type="0"
  10380. />
  10381. </product>
  10382. <product id="HD50C"
  10383. name="H-D Audio 50C"
  10384. series="50"
  10385. latestVersion="1.0.1"
  10386. show = "0" >
  10387. <productMenu id="protocol"
  10388. type="2" >
  10389. </productMenu>
  10390. <productMenu id="ota"
  10391. type="0" >
  10392. </productMenu>
  10393. <productMenu id="wa"
  10394. type="1" >
  10395. </productMenu>
  10396. <productMenu id="sip"
  10397. type="1" >
  10398. </productMenu>
  10399. <productMenu id="meshIntercom"
  10400. type="20" >
  10401. </productMenu>
  10402. <productMenu id="meshIntercom+"
  10403. type="3"
  10404. url="0" >
  10405. <productMenuType version="1.0.9"
  10406. type="2"
  10407. />
  10408. </productMenu>
  10409. <productMenu id="bluetoothIntercom"
  10410. type="1" >
  10411. </productMenu>
  10412. <productMenu id="phone"
  10413. type="1" >
  10414. </productMenu>
  10415. <productMenu id="music"
  10416. type="1" >
  10417. </productMenu>
  10418. <productMenu id="fmradio"
  10419. type="1" >
  10420. </productMenu>
  10421. <productMenu id="deviceSetting"
  10422. type="1"
  10423. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10424. <productMenuURL version="1.0.9"
  10425. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10426. />
  10427. </productMenu>
  10428. <productMenu id="quickGuide"
  10429. type="1"
  10430. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10431. size="344KB" >
  10432. </productMenu>
  10433. <productMenu id="userGuide"
  10434. type="1"
  10435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10436. size="3.41MB" >
  10437. </productMenu>
  10438. <productMenu id="volume"
  10439. type="11" >
  10440. </productMenu>
  10441. <productMenu id="battery"
  10442. type="1" >
  10443. </productMenu>
  10444. <productID id="3240"
  10445. />
  10446. <productGroupable type="0"
  10447. />
  10448. </product>
  10449. <product id="HD50S"
  10450. name="FURY N04"
  10451. series="Helmet"
  10452. latestVersion="1.0"
  10453. show = "0" >
  10454. <productMenu id="protocol"
  10455. type="2" >
  10456. </productMenu>
  10457. <productMenu id="alexa"
  10458. type="0" >
  10459. </productMenu>
  10460. <productMenu id="ota"
  10461. type="0" >
  10462. </productMenu>
  10463. <productMenu id="wa"
  10464. type="0" >
  10465. </productMenu>
  10466. <productMenu id="meshIntercom"
  10467. type="20" >
  10468. </productMenu>
  10469. <productMenu id="meshIntercom+"
  10470. type="3"
  10471. url="0" >
  10472. <productMenuType version="1.0.9"
  10473. type="2"
  10474. />
  10475. </productMenu>
  10476. <productMenu id="phone"
  10477. type="1" >
  10478. </productMenu>
  10479. <productMenu id="music"
  10480. type="1" >
  10481. </productMenu>
  10482. <productMenu id="fmradio"
  10483. type="1" >
  10484. </productMenu>
  10485. <productMenu id="deviceSetting"
  10486. type="1"
  10487. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10488. <productMenuURL version="1.0.9"
  10489. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10490. />
  10491. </productMenu>
  10492. <productMenu id="quickGuide"
  10493. type="1"
  10494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10495. size="1.12MB" >
  10496. </productMenu>
  10497. <productMenu id="userGuide"
  10498. type="1"
  10499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10500. size="2.0MB" >
  10501. </productMenu>
  10502. <productMenu id="volume"
  10503. type="13" >
  10504. </productMenu>
  10505. <productMenu id="battery"
  10506. type="1" >
  10507. </productMenu>
  10508. <productID id="5553"
  10509. />
  10510. <productGroupable type="0"
  10511. />
  10512. </product>
  10513. <product id="XCOM3Pro"
  10514. name="X-COM3 Pro"
  10515. series="50"
  10516. latestVersion="1.1"
  10517. show = "0" >
  10518. <productMenu id="protocol"
  10519. type="2" >
  10520. </productMenu>
  10521. <productMenu id="alexa"
  10522. type="0" >
  10523. </productMenu>
  10524. <productMenu id="ota"
  10525. type="0" >
  10526. </productMenu>
  10527. <productMenu id="wa"
  10528. type="0" >
  10529. </productMenu>
  10530. <productMenu id="sip"
  10531. type="1" >
  10532. </productMenu>
  10533. <productMenu id="meshIntercom"
  10534. type="30" >
  10535. </productMenu>
  10536. <productMenu id="meshIntercom+"
  10537. type="3"
  10538. url="2" >
  10539. <productMenuType version="1.1"
  10540. type="2"
  10541. />
  10542. </productMenu>
  10543. <productMenu id="waveIntercom"
  10544. type="1" >
  10545. <productMenuType version="1.1"
  10546. type="0"
  10547. />
  10548. </productMenu>
  10549. <productMenu id="bluetoothIntercom"
  10550. type="1" >
  10551. </productMenu>
  10552. <productMenu id="phone"
  10553. type="1" >
  10554. </productMenu>
  10555. <productMenu id="music"
  10556. type="1" >
  10557. </productMenu>
  10558. <productMenu id="fmradio"
  10559. type="1" >
  10560. </productMenu>
  10561. <productMenu id="deviceSetting"
  10562. type="1"
  10563. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10564. <productMenuURL version="1.1"
  10565. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10566. />
  10567. </productMenu>
  10568. <productMenu id="quickGuide"
  10569. type="0"
  10570. url=""
  10571. size="344KB" >
  10572. </productMenu>
  10573. <productMenu id="userGuide"
  10574. type="1"
  10575. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10576. size="3.41MB" >
  10577. </productMenu>
  10578. <productMenu id="volume"
  10579. type="11" >
  10580. </productMenu>
  10581. <productMenu id="battery"
  10582. type="1" >
  10583. </productMenu>
  10584. <productID id="321A"
  10585. />
  10586. <productGroupable type="0"
  10587. />
  10588. </product>
  10589. <product id="XCOM3"
  10590. name="X-COM3"
  10591. series="20"
  10592. latestVersion="1.0"
  10593. show = "0" >
  10594. <productMenu id="protocol"
  10595. type="2" >
  10596. </productMenu>
  10597. <productMenu id="sip"
  10598. type="1" >
  10599. </productMenu>
  10600. <productMenu id="bluetoothIntercom"
  10601. type="1" >
  10602. </productMenu>
  10603. <productMenu id="phone"
  10604. type="1" >
  10605. </productMenu>
  10606. <productMenu id="music"
  10607. type="1" >
  10608. </productMenu>
  10609. <productMenu id="fmradio"
  10610. type="1" >
  10611. </productMenu>
  10612. <productMenu id="deviceSetting"
  10613. type="1"
  10614. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10615. </productMenu>
  10616. <productMenu id="quickGuide"
  10617. type="0"
  10618. url=""
  10619. size="934KB" >
  10620. </productMenu>
  10621. <productMenu id="userGuide"
  10622. type="1"
  10623. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10624. size="1.14MB" >
  10625. </productMenu>
  10626. <productMenu id="volume"
  10627. type="15" >
  10628. </productMenu>
  10629. <productID id="3410"
  10630. />
  10631. <productGroupable type="0"
  10632. />
  10633. </product>
  10634. <product id="X-COM2"
  10635. name="X-COM2"
  10636. series="20"
  10637. latestVersion="1.0.5"
  10638. show = "0" >
  10639. <productMenu id="protocol"
  10640. type="0">
  10641. </productMenu>
  10642. <productMenu id="sip"
  10643. type="1" >
  10644. </productMenu>
  10645. <productMenu id="bluetoothIntercom"
  10646. type="1" >
  10647. </productMenu>
  10648. <productMenu id="intercomSetting"
  10649. type="1" >
  10650. </productMenu>
  10651. <productMenu id="phone"
  10652. type="2" >
  10653. </productMenu>
  10654. <productMenu id="fmradio"
  10655. type="3" >
  10656. </productMenu>
  10657. <productMenu id="deviceSetting"
  10658. type="1"
  10659. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10660. </productMenu>
  10661. <productMenu id="quickGuide"
  10662. type="1"
  10663. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10664. size="796KB" >
  10665. </productMenu>
  10666. <productMenu id="userGuide"
  10667. type="1"
  10668. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10669. size="1.90MB" >
  10670. </productMenu>
  10671. <productID id="2030"
  10672. />
  10673. <productGroupable type="1"
  10674. />
  10675. </product>
  10676. <product id="AVAABC"
  10677. name="AVA ABC"
  10678. series="SPIDER"
  10679. latestVersion="1.1"
  10680. show = "0" >
  10681. <productMenu id="protocol"
  10682. type="2" >
  10683. </productMenu>
  10684. <productMenu id="alexa"
  10685. type="0" >
  10686. </productMenu>
  10687. <productMenu id="ota"
  10688. type="0" >
  10689. <productMenuType version="1.0"
  10690. type="0"
  10691. />
  10692. <otaPackages>
  10693. <package
  10694. url="https://api.sena.com/support/OTA/"
  10695. size="2945812"
  10696. />
  10697. </otaPackages>
  10698. </productMenu>
  10699. <productMenu id="wa"
  10700. type="0" >
  10701. </productMenu>
  10702. <productMenu id="meshIntercom"
  10703. type="30" >
  10704. <productMenuType version="1.0"
  10705. type="20"
  10706. />
  10707. </productMenu>
  10708. <productMenu id="meshIntercom+"
  10709. type="3"
  10710. url="2" >
  10711. <productMenuType version="1.0"
  10712. type="2"
  10713. />
  10714. <productMenuURL version="1.0"
  10715. url="0"
  10716. />
  10717. </productMenu>
  10718. <productMenu id="waveIntercom"
  10719. type="1" >
  10720. <productMenuType version="1.0"
  10721. type="0"
  10722. />
  10723. </productMenu>
  10724. <productMenu id="phone"
  10725. type="1" >
  10726. </productMenu>
  10727. <productMenu id="music"
  10728. type="1" >
  10729. </productMenu>
  10730. <productMenu id="musicSharing"
  10731. type="0" >
  10732. </productMenu>
  10733. <productMenu id="deviceSetting"
  10734. type="1"
  10735. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10736. <productMenuURL version="1.0"
  10737. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10738. />
  10739. </productMenu>
  10740. <productMenu id="quickGuide"
  10741. type="1"
  10742. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10743. size="1.12MB" >
  10744. </productMenu>
  10745. <productMenu id="userGuide"
  10746. type="1"
  10747. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10748. size="2.0MB" >
  10749. </productMenu>
  10750. <productMenu id="volume"
  10751. type="12" >
  10752. </productMenu>
  10753. <productMenu id="battery"
  10754. type="1" >
  10755. </productMenu>
  10756. <productID id="6808"
  10757. />
  10758. <productGroupable type="0"
  10759. />
  10760. </product>
  10761. <product id="ADVANCEProCOM2"
  10762. name="ADVANCE ProCOM 2"
  10763. series="Helmet"
  10764. latestVersion="0.5"
  10765. latestVersionVoicePrompt="0.3"
  10766. show = "-1" >
  10767. <productMenu id="protocol"
  10768. type="2" >
  10769. </productMenu>
  10770. <productMenu id="ota"
  10771. type="2" >
  10772. <otaLanguages>
  10773. <otaLanguage
  10774. id="0"
  10775. name="English"
  10776. package="0"
  10777. />
  10778. <otaLanguage
  10779. id="0"
  10780. name="French"
  10781. package="1"
  10782. />
  10783. <otaLanguage
  10784. id="0"
  10785. name="Spanish"
  10786. package="2"
  10787. />
  10788. <otaLanguage
  10789. id="0"
  10790. name="Italian"
  10791. package="3"
  10792. />
  10793. <otaLanguage
  10794. id="0"
  10795. name="German"
  10796. package="4"
  10797. />
  10798. <otaLanguage
  10799. id="0"
  10800. name="Dutch"
  10801. package="5"
  10802. />
  10803. <otaLanguage
  10804. id="0"
  10805. name="Russian"
  10806. package="6"
  10807. />
  10808. <otaLanguage
  10809. id="0"
  10810. name="Chinese"
  10811. package="7"
  10812. />
  10813. <otaLanguage
  10814. id="0"
  10815. name="Korean"
  10816. package="8"
  10817. />
  10818. <otaLanguage
  10819. id="0"
  10820. name="Japanese"
  10821. package="9"
  10822. />
  10823. <otaLanguage
  10824. id="0"
  10825. name="Finnish"
  10826. package="10"
  10827. />
  10828. <otaLanguage
  10829. id="0"
  10830. name="Polish"
  10831. package="11"
  10832. />
  10833. </otaLanguages>
  10834. <otaPackages>
  10835. <package
  10836. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10837. size="5183988"
  10838. />
  10839. <package
  10840. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10841. size="5183988"
  10842. />
  10843. <package
  10844. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10845. size="5183988"
  10846. />
  10847. <package
  10848. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10849. size="5183988"
  10850. />
  10851. <package
  10852. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10853. size="5183988"
  10854. />
  10855. <package
  10856. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10857. size="5183988"
  10858. />
  10859. <package
  10860. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10861. size="5183988"
  10862. />
  10863. <package
  10864. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10865. size="5183988"
  10866. />
  10867. <package
  10868. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10869. size="5183988"
  10870. />
  10871. <package
  10872. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10873. size="5183988"
  10874. />
  10875. <package
  10876. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10877. size="5183988"
  10878. />
  10879. <package
  10880. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10881. size="5183988"
  10882. />
  10883. </otaPackages>
  10884. </productMenu>
  10885. <productMenu id="wa"
  10886. type="0" >
  10887. </productMenu>
  10888. <productMenu id="meshIntercom"
  10889. type="30" >
  10890. </productMenu>
  10891. <productMenu id="meshIntercom+"
  10892. type="3"
  10893. url="2" >
  10894. </productMenu>
  10895. <productMenu id="waveIntercom"
  10896. type="1" >
  10897. </productMenu>
  10898. <productMenu id="fmradio"
  10899. type="1" >
  10900. </productMenu>
  10901. <productMenu id="phone"
  10902. type="0" >
  10903. </productMenu>
  10904. <productMenu id="music"
  10905. type="1" >
  10906. </productMenu>
  10907. <productMenu id="musicSharing"
  10908. type="0" >
  10909. </productMenu>
  10910. <productMenu id="deviceSetting"
  10911. type="1"
  10912. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10913. </productMenu>
  10914. <productMenu id="quickGuide"
  10915. type="0"
  10916. url=""
  10917. size="1.12MB" >
  10918. </productMenu>
  10919. <productMenu id="userGuide"
  10920. type="1"
  10921. url=""
  10922. size="2.0MB" >
  10923. </productMenu>
  10924. <productMenu id="videoGuide"
  10925. type="0"
  10926. url=""
  10927. size="3.41MB" >
  10928. </productMenu>
  10929. <productMenu id="connectGuide"
  10930. type="1"
  10931. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10932. size="1.12MB" >
  10933. </productMenu>
  10934. <productMenu id="volume"
  10935. type="16" >
  10936. </productMenu>
  10937. <productMenu id="battery"
  10938. type="1" >
  10939. </productMenu>
  10940. <productID id="6A85"
  10941. />
  10942. <productGroupable type="0"
  10943. />
  10944. </product>
  10945. <product id="TRIUMPH60X"
  10946. name="TRIUMPH 60X"
  10947. series="60"
  10948. latestVersion="1.0"
  10949. latestVersionMesh="0.19"
  10950. latestVersionVoicePrompt="1.7"
  10951. show = "-1" >
  10952. <productMenu id="protocol"
  10953. type="2" >
  10954. </productMenu>
  10955. <productMenu id="ota"
  10956. type="0" >
  10957. <otaLanguages>
  10958. <otaLanguage
  10959. id="0"
  10960. name="English"
  10961. package="0"
  10962. />
  10963. <otaLanguage
  10964. id="0"
  10965. name="French"
  10966. package="1"
  10967. />
  10968. <otaLanguage
  10969. id="0"
  10970. name="Spanish"
  10971. package="2"
  10972. />
  10973. <otaLanguage
  10974. id="0"
  10975. name="Italian"
  10976. package="3"
  10977. />
  10978. <otaLanguage
  10979. id="0"
  10980. name="German"
  10981. package="4"
  10982. />
  10983. <otaLanguage
  10984. id="0"
  10985. name="Dutch"
  10986. package="5"
  10987. />
  10988. <otaLanguage
  10989. id="0"
  10990. name="Russian"
  10991. package="6"
  10992. />
  10993. <otaLanguage
  10994. id="0"
  10995. name="Chinese"
  10996. package="7"
  10997. />
  10998. <otaLanguage
  10999. id="0"
  11000. name="Korean"
  11001. package="8"
  11002. />
  11003. <otaLanguage
  11004. id="0"
  11005. name="Japanese"
  11006. package="9"
  11007. />
  11008. <otaLanguage
  11009. id="0"
  11010. name="Finnish"
  11011. package="10"
  11012. />
  11013. <otaLanguage
  11014. id="0"
  11015. name="Polish"
  11016. package="11"
  11017. />
  11018. </otaLanguages>
  11019. <otaPackages>
  11020. <package
  11021. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11022. size="5183988"
  11023. />
  11024. <package
  11025. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11026. size="5183988"
  11027. />
  11028. <package
  11029. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11030. size="5183988"
  11031. />
  11032. <package
  11033. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11034. size="5183988"
  11035. />
  11036. <package
  11037. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11038. size="5183988"
  11039. />
  11040. <package
  11041. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11042. size="5183988"
  11043. />
  11044. <package
  11045. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11046. size="5183988"
  11047. />
  11048. <package
  11049. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11050. size="5183988"
  11051. />
  11052. <package
  11053. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11054. size="5183988"
  11055. />
  11056. <package
  11057. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11058. size="5183988"
  11059. />
  11060. <package
  11061. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11062. size="5183988"
  11063. />
  11064. <package
  11065. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11066. size="5183988"
  11067. />
  11068. </otaPackages>
  11069. </productMenu>
  11070. <productMenu id="wa"
  11071. type="0" >
  11072. </productMenu>
  11073. <productMenu id="sip"
  11074. type="1" >
  11075. </productMenu>
  11076. <productMenu id="led"
  11077. type="1" >
  11078. </productMenu>
  11079. <productMenu id="illusion"
  11080. type="1" >
  11081. </productMenu>
  11082. <productMenu id="meshIntercom"
  11083. type="30" >
  11084. </productMenu>
  11085. <productMenu id="meshIntercom+"
  11086. type="3"
  11087. url="2" >
  11088. </productMenu>
  11089. <productMenu id="bluetoothIntercom"
  11090. type="1" >
  11091. </productMenu>
  11092. <productMenu id="fmradio"
  11093. type="1"
  11094. url="1" >
  11095. </productMenu>
  11096. <productMenu id="mic"
  11097. type="0" >
  11098. </productMenu>
  11099. <productMenu id="phone"
  11100. type="1" >
  11101. </productMenu>
  11102. <productMenu id="music"
  11103. type="1" >
  11104. </productMenu>
  11105. <productMenu id="musicSharing"
  11106. type="0" >
  11107. </productMenu>
  11108. <productMenu id="deviceSetting"
  11109. type="1"
  11110. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11111. </productMenu>
  11112. <productMenu id="quickGuide"
  11113. type="0"
  11114. url=""
  11115. size="1.12MB" >
  11116. </productMenu>
  11117. <productMenu id="userGuide"
  11118. type="1"
  11119. url=""
  11120. size="2.0MB" >
  11121. </productMenu>
  11122. <productMenu id="videoGuide"
  11123. type="0"
  11124. url=""
  11125. size="3.41MB" >
  11126. </productMenu>
  11127. <productMenu id="keySettings"
  11128. type="1"
  11129. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11130. </productMenu>
  11131. <productMenu id="volume"
  11132. type="13" >
  11133. </productMenu>
  11134. <productMenu id="volume+"
  11135. type="2"
  11136. url="0x6004" >
  11137. </productMenu>
  11138. <productMenu id="battery"
  11139. type="1" >
  11140. </productMenu>
  11141. <productID id="6A1C"
  11142. />
  11143. <productGroupable type="0"
  11144. />
  11145. </product>
  11146. <product id="Triumph_50S"
  11147. name="Triumph 50S"
  11148. series="50"
  11149. latestVersion="1.5"
  11150. show = "0" >
  11151. <productMenu id="protocol"
  11152. type="2" >
  11153. </productMenu>
  11154. <productMenu id="alexa"
  11155. type="0" >
  11156. </productMenu>
  11157. <productMenu id="ota"
  11158. type="0"
  11159. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11160. size="1150234" >
  11161. </productMenu>
  11162. <productMenu id="wa"
  11163. type="1" >
  11164. </productMenu>
  11165. <productMenu id="sip"
  11166. type="1" >
  11167. </productMenu>
  11168. <productMenu id="meshIntercom"
  11169. type="20" >
  11170. </productMenu>
  11171. <productMenu id="bluetoothIntercom"
  11172. type="1" >
  11173. </productMenu>
  11174. <productMenu id="meshIntercom+"
  11175. type="3"
  11176. url="2" >
  11177. <productMenuType version="1.2.9"
  11178. type="2"
  11179. />
  11180. <productMenuURL version="1.2.9"
  11181. url="0"
  11182. />
  11183. </productMenu>
  11184. <productMenu id="waveIntercom"
  11185. type="1" >
  11186. <productMenuType version="1.2.9"
  11187. type="0"
  11188. />
  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/SenaNeoApp/50/NS_50_14.xml" >
  11202. <productMenuURL version="1.2.9"
  11203. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11204. />
  11205. <productMenuURL version="1.0"
  11206. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11207. />
  11208. </productMenu>
  11209. <productMenu id="quickGuide"
  11210. type="1"
  11211. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11212. size="934KB" >
  11213. </productMenu>
  11214. <productMenu id="userGuide"
  11215. type="1"
  11216. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11217. size="1.14MB" >
  11218. </productMenu>
  11219. <productMenu id="volume"
  11220. type="11" >
  11221. </productMenu>
  11222. <productMenu id="battery"
  11223. type="1" >
  11224. </productMenu>
  11225. <productID id="3264"
  11226. />
  11227. <productGroupable type="0"
  11228. />
  11229. </product>
  11230. <product id="RE50S"
  11231. name="RE 50S"
  11232. series="50"
  11233. latestVersion="2.7"
  11234. show = "0" >
  11235. <productMenu id="protocol"
  11236. type="2" >
  11237. </productMenu>
  11238. <productMenu id="alexa"
  11239. type="0" >
  11240. </productMenu>
  11241. <productMenu id="ota"
  11242. type="0"
  11243. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11244. size="1150234" >
  11245. </productMenu>
  11246. <productMenu id="wa"
  11247. type="1" >
  11248. </productMenu>
  11249. <productMenu id="sip"
  11250. type="1" >
  11251. </productMenu>
  11252. <productMenu id="meshIntercom"
  11253. type="30" >
  11254. </productMenu>
  11255. <productMenu id="meshIntercom+"
  11256. type="3"
  11257. url="2" >
  11258. <productMenuType version="2.5"
  11259. type="2"
  11260. />
  11261. </productMenu>
  11262. <productMenu id="waveIntercom"
  11263. type="1" >
  11264. <productMenuType version="2.5"
  11265. type="0"
  11266. />
  11267. </productMenu>
  11268. <productMenu id="bluetoothIntercom"
  11269. type="1" >
  11270. </productMenu>
  11271. <productMenu id="phone"
  11272. type="1" >
  11273. </productMenu>
  11274. <productMenu id="music"
  11275. type="1" >
  11276. </productMenu>
  11277. <productMenu id="fmradio"
  11278. type="1" >
  11279. </productMenu>
  11280. <productMenu id="deviceSetting"
  11281. type="1"
  11282. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11283. <productMenuURL version="2.5.9"
  11284. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11285. />
  11286. </productMenu>
  11287. <productMenu id="quickGuide"
  11288. type="1"
  11289. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11290. size="934KB" >
  11291. </productMenu>
  11292. <productMenu id="userGuide"
  11293. type="1"
  11294. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11295. size="1.14MB" >
  11296. </productMenu>
  11297. <productMenu id="videoGuide"
  11298. type="0"
  11299. url=""
  11300. size="3.41MB" >
  11301. </productMenu>
  11302. <productMenu id="volume"
  11303. type="11" >
  11304. </productMenu>
  11305. <productMenu id="battery"
  11306. type="1" >
  11307. </productMenu>
  11308. <productID id="321C"
  11309. />
  11310. <productGroupable type="0"
  11311. />
  11312. </product>
  11313. <product id="BMW_HELMET_II_U1"
  11314. name="BMW HELMET II U1"
  11315. series="50"
  11316. latestVersion="1.0"
  11317. show = "0" >
  11318. <productMenu id="protocol"
  11319. type="2" >
  11320. </productMenu>
  11321. <productMenu id="alexa"
  11322. type="0" >
  11323. </productMenu>
  11324. <productMenu id="sip"
  11325. type="1" >
  11326. </productMenu>
  11327. <productMenu id="meshIntercom"
  11328. type="20" >
  11329. </productMenu>
  11330. <productMenu id="bluetoothIntercom"
  11331. type="1" >
  11332. </productMenu>
  11333. <productMenu id="bluetoothIntercom2"
  11334. type="1" >
  11335. </productMenu>
  11336. <productMenu id="phone"
  11337. type="1" >
  11338. </productMenu>
  11339. <productMenu id="music"
  11340. type="1" >
  11341. </productMenu>
  11342. <productMenu id="fmradio"
  11343. type="1" >
  11344. </productMenu>
  11345. <productMenu id="deviceSetting"
  11346. type="1"
  11347. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11348. </productMenu>
  11349. <productMenu id="quickGuide"
  11350. type="1"
  11351. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11352. size="934KB" >
  11353. </productMenu>
  11354. <productMenu id="userGuide"
  11355. type="1"
  11356. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11357. size="1.14MB" >
  11358. </productMenu>
  11359. <productMenu id="volume"
  11360. type="11" >
  11361. </productMenu>
  11362. <productMenu id="battery"
  11363. type="1" >
  11364. </productMenu>
  11365. <productID id="3260"
  11366. />
  11367. <productGroupable type="0"
  11368. />
  11369. </product>
  11370. <product id="OUTRUSHR"
  11371. name="CX935"
  11372. series="Helmet"
  11373. latestVersion="2.1"
  11374. show = "-1" >
  11375. <productMenu id="protocol"
  11376. type="3">
  11377. </productMenu>
  11378. <productMenu id="sip"
  11379. type="1" >
  11380. </productMenu>
  11381. <productMenu id="bluetoothIntercom"
  11382. type="1" >
  11383. </productMenu>
  11384. <productMenu id="phone"
  11385. type="1" >
  11386. </productMenu>
  11387. <productMenu id="fmradio"
  11388. type="0" >
  11389. </productMenu>
  11390. <productMenu id="deviceSetting"
  11391. type="1"
  11392. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11393. </productMenu>
  11394. <productMenu id="userGuide"
  11395. type="1"
  11396. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11397. size="660KB" >
  11398. </productMenu>
  11399. <productID id="5446"
  11400. />
  11401. <productGroupable type="0"
  11402. />
  11403. </product>
  11404. <product id="LSE_01"
  11405. name="LSE-01"
  11406. series="SF"
  11407. latestVersion="1.2.3"
  11408. show = "0" >
  11409. <productMenu id="protocol"
  11410. type="1"
  11411. url="3">
  11412. </productMenu>
  11413. <productMenu id="sip"
  11414. type="1" >
  11415. </productMenu>
  11416. <productMenu id="bluetoothIntercom"
  11417. type="1" >
  11418. </productMenu>
  11419. <productMenu id="phone"
  11420. type="1" >
  11421. </productMenu>
  11422. <productMenu id="music"
  11423. type="1" >
  11424. </productMenu>
  11425. <productMenu id="fmradio"
  11426. type="1" >
  11427. </productMenu>
  11428. <productMenu id="deviceSetting"
  11429. type="1"
  11430. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11431. <productMenuURL version="1.1"
  11432. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11433. />
  11434. <productMenuURL version="1.0"
  11435. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11436. />
  11437. </productMenu>
  11438. <productMenu id="quickGuide"
  11439. type="1"
  11440. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11441. size="607KB" >
  11442. </productMenu>
  11443. <productMenu id="userGuide"
  11444. type="1"
  11445. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11446. size="1.91MB" >
  11447. </productMenu>
  11448. <productMenu id="volume"
  11449. type="4" >
  11450. </productMenu>
  11451. <productID id="5416"
  11452. />
  11453. <productGroupable type="0"
  11454. />
  11455. </product>
  11456. <product id="AGV_ARK"
  11457. name="AGV ARK"
  11458. series="SF"
  11459. latestVersion="1.0.3"
  11460. show = "0" >
  11461. <productMenu id="protocol"
  11462. type="1"
  11463. url="3">
  11464. </productMenu>
  11465. <productMenu id="sip"
  11466. type="1" >
  11467. </productMenu>
  11468. <productMenu id="bluetoothIntercom"
  11469. type="1" >
  11470. </productMenu>
  11471. <productMenu id="phone"
  11472. type="1" >
  11473. </productMenu>
  11474. <productMenu id="music"
  11475. type="1" >
  11476. </productMenu>
  11477. <productMenu id="fmradio"
  11478. type="1" >
  11479. </productMenu>
  11480. <productMenu id="deviceSetting"
  11481. type="1"
  11482. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11483. </productMenu>
  11484. <productMenu id="quickGuide"
  11485. type="1"
  11486. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11487. size="607KB" >
  11488. </productMenu>
  11489. <productMenu id="userGuide"
  11490. type="1"
  11491. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11492. size="1.91MB" >
  11493. </productMenu>
  11494. <productMenu id="volume"
  11495. type="4" >
  11496. </productMenu>
  11497. <productID id="5420"
  11498. />
  11499. <productGroupable type="0"
  11500. />
  11501. </product>
  11502. <product id="KLIM_KRIOS"
  11503. name="KLIM Krios"
  11504. series="10"
  11505. latestVersion="1.1.2"
  11506. show = "0" >
  11507. <productMenu id="protocol"
  11508. type="0">
  11509. </productMenu>
  11510. <productMenu id="sip"
  11511. type="1" >
  11512. </productMenu>
  11513. <productMenu id="bluetoothIntercom"
  11514. type="1" >
  11515. </productMenu>
  11516. <productMenu id="phone"
  11517. type="2" >
  11518. </productMenu>
  11519. <productMenu id="fmradio"
  11520. type="3" >
  11521. </productMenu>
  11522. <productMenu id="deviceSetting"
  11523. type="1"
  11524. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11525. <productMenuURL version="1.0"
  11526. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11527. />
  11528. </productMenu>
  11529. <productMenu id="quickGuide"
  11530. type="1"
  11531. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11532. size="649KB" >
  11533. </productMenu>
  11534. <productMenu id="userGuide"
  11535. type="1"
  11536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11537. size="1.43MB" >
  11538. </productMenu>
  11539. <productID id="5910"
  11540. />
  11541. <productGroupable type="0"
  11542. />
  11543. </product>
  11544. <product id="POLARIS_SLINGSHOT"
  11545. name="Polaris Slingshot"
  11546. series="10"
  11547. latestVersion="1.1.2"
  11548. show = "0" >
  11549. <productMenu id="protocol"
  11550. type="0">
  11551. </productMenu>
  11552. <productMenu id="sip"
  11553. type="1" >
  11554. </productMenu>
  11555. <productMenu id="bluetoothIntercom"
  11556. type="1" >
  11557. </productMenu>
  11558. <productMenu id="phone"
  11559. type="2" >
  11560. </productMenu>
  11561. <productMenu id="fmradio"
  11562. type="3" >
  11563. </productMenu>
  11564. <productMenu id="deviceSetting"
  11565. type="1"
  11566. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11567. <productMenuURL version="1.0"
  11568. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11569. />
  11570. </productMenu>
  11571. <productMenu id="quickGuide"
  11572. type="1"
  11573. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11574. size="689KB" >
  11575. </productMenu>
  11576. <productMenu id="userGuide"
  11577. type="1"
  11578. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11579. size="1.43MB" >
  11580. </productMenu>
  11581. <productID id="5920"
  11582. />
  11583. <productGroupable type="0"
  11584. />
  11585. </product>
  11586. <product id="DWO6"
  11587. name="SEDICI DWO6-PRO"
  11588. series="10"
  11589. latestVersion="1.0.2"
  11590. show = "0" >
  11591. <productMenu id="protocol"
  11592. type="0">
  11593. </productMenu>
  11594. <productMenu id="sip"
  11595. type="1" >
  11596. </productMenu>
  11597. <productMenu id="bluetoothIntercom"
  11598. type="1" >
  11599. </productMenu>
  11600. <productMenu id="phone"
  11601. type="2" >
  11602. </productMenu>
  11603. <productMenu id="fmradio"
  11604. type="3" >
  11605. </productMenu>
  11606. <productMenu id="deviceSetting"
  11607. type="1"
  11608. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11609. </productMenu>
  11610. <productMenu id="quickGuide"
  11611. type="1"
  11612. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11613. size="529KB" >
  11614. </productMenu>
  11615. <productMenu id="userGuide"
  11616. type="1"
  11617. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11618. size="4.09MB" >
  11619. </productMenu>
  11620. <productID id="6112"
  11621. />
  11622. <productGroupable type="0"
  11623. />
  11624. </product>
  11625. <product id="DWO6A"
  11626. name="SEDICI DWO-6"
  11627. series="10"
  11628. latestVersion="1.0.2"
  11629. show = "0" >
  11630. <productMenu id="protocol"
  11631. type="0">
  11632. </productMenu>
  11633. <productMenu id="sip"
  11634. type="1" >
  11635. </productMenu>
  11636. <productMenu id="bluetoothIntercom"
  11637. type="1" >
  11638. </productMenu>
  11639. <productMenu id="phone"
  11640. type="2" >
  11641. </productMenu>
  11642. <productMenu id="fmradio"
  11643. type="3" >
  11644. </productMenu>
  11645. <productMenu id="deviceSetting"
  11646. type="1"
  11647. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11648. </productMenu>
  11649. <productMenu id="quickGuide"
  11650. type="1"
  11651. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11652. size="522KB" >
  11653. </productMenu>
  11654. <productMenu id="userGuide"
  11655. type="1"
  11656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11657. size="2.71MB" >
  11658. </productMenu>
  11659. <productID id="6114"
  11660. />
  11661. <productGroupable type="0"
  11662. />
  11663. </product>
  11664. <product id="3SPLUS"
  11665. name="ZILL"
  11666. series="3"
  11667. latestVersion="1.0.4"
  11668. show = "0" >
  11669. <productMenu id="protocol"
  11670. type="0">
  11671. </productMenu>
  11672. <productMenu id="sip"
  11673. type="1" >
  11674. </productMenu>
  11675. <productMenu id="bluetoothIntercom"
  11676. type="1" >
  11677. </productMenu>
  11678. <productMenu id="deviceSetting"
  11679. type="1"
  11680. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11681. </productMenu>
  11682. <productMenu id="quickGuide"
  11683. type="1"
  11684. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11685. size="842KB" >
  11686. </productMenu>
  11687. <productMenu id="userGuide"
  11688. type="1"
  11689. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11690. size="1.02MB" >
  11691. </productMenu>
  11692. <productID id="6335"
  11693. />
  11694. <productGroupable type="0"
  11695. />
  11696. </product>
  11697. <product id="HD50S"
  11698. name="Boom! Audio 30K"
  11699. series="30"
  11700. latestVersion="3.4"
  11701. show = "0" >
  11702. <productMenu id="protocol"
  11703. type="1"
  11704. url="0">
  11705. </productMenu>
  11706. <productMenu id="wa"
  11707. type="0" >
  11708. </productMenu>
  11709. <productMenu id="sip"
  11710. type="1" >
  11711. </productMenu>
  11712. <productMenu id="meshIntercom"
  11713. type="20" >
  11714. <productMenuType version="2.9.9"
  11715. type="10"
  11716. />
  11717. </productMenu>
  11718. <productMenu id="bluetoothIntercom"
  11719. type="1" >
  11720. </productMenu>
  11721. <productMenu id="phone"
  11722. type="1" >
  11723. </productMenu>
  11724. <productMenu id="music"
  11725. type="1" >
  11726. </productMenu>
  11727. <productMenu id="fmradio"
  11728. type="1" >
  11729. </productMenu>
  11730. <productMenu id="deviceSetting"
  11731. type="1"
  11732. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11733. <productMenuURL version="3.2"
  11734. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11735. />
  11736. <productMenuURL version="3.0"
  11737. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11738. />
  11739. <productMenuURL version="2.2"
  11740. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11741. />
  11742. </productMenu>
  11743. <productMenu id="quickGuide"
  11744. type="1"
  11745. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11746. size="1.06MB" >
  11747. </productMenu>
  11748. <productMenu id="userGuide"
  11749. type="1"
  11750. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11751. size="3.15MB" >
  11752. </productMenu>
  11753. <productMenu id="volume"
  11754. type="1" >
  11755. </productMenu>
  11756. <productID id="3112"
  11757. />
  11758. <productGroupable type="0"
  11759. />
  11760. </product>
  11761. <product id="HD50S"
  11762. name="Boom! Audio N02"
  11763. series="30"
  11764. latestVersion="3.1"
  11765. show = "0" >
  11766. <productMenu id="protocol"
  11767. type="1"
  11768. url="0">
  11769. </productMenu>
  11770. <productMenu id="wa"
  11771. type="2" >
  11772. </productMenu>
  11773. <productMenu id="sip"
  11774. type="1" >
  11775. </productMenu>
  11776. <productMenu id="meshIntercom"
  11777. type="20" >
  11778. <productMenuType version="2.9.9"
  11779. type="10"
  11780. />
  11781. </productMenu>
  11782. <productMenu id="bluetoothIntercom"
  11783. type="1" >
  11784. </productMenu>
  11785. <productMenu id="phone"
  11786. type="1" >
  11787. </productMenu>
  11788. <productMenu id="music"
  11789. type="1" >
  11790. </productMenu>
  11791. <productMenu id="fmradio"
  11792. type="1" >
  11793. </productMenu>
  11794. <productMenu id="deviceSetting"
  11795. type="1"
  11796. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11797. <productMenuURL version="2.2"
  11798. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11799. />
  11800. </productMenu>
  11801. <productMenu id="quickGuide"
  11802. type="1"
  11803. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11804. size="1.06MB" >
  11805. </productMenu>
  11806. <productMenu id="userGuide"
  11807. type="1"
  11808. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11809. size="3.15MB" >
  11810. </productMenu>
  11811. <productMenu id="volume"
  11812. type="2" >
  11813. </productMenu>
  11814. <productID id="3114"
  11815. />
  11816. <productGroupable type="0"
  11817. />
  11818. </product>
  11819. <product id="HD50S"
  11820. name="Boom Audio 20S"
  11821. series="50"
  11822. latestVersion="2.5.2"
  11823. show = "0" >
  11824. <productMenu id="protocol"
  11825. type="0">
  11826. </productMenu>
  11827. <productMenu id="sip"
  11828. type="1" >
  11829. <productMenuType version="1.0"
  11830. type="0"
  11831. />
  11832. </productMenu>
  11833. <productMenu id="bluetoothIntercom"
  11834. type="1" >
  11835. <productMenuType version="1.0"
  11836. type="0"
  11837. />
  11838. </productMenu>
  11839. <productMenu id="intercomSetting"
  11840. type="1" >
  11841. </productMenu>
  11842. <productMenu id="phone"
  11843. type="2" >
  11844. </productMenu>
  11845. <productMenu id="fmradio"
  11846. type="3" >
  11847. </productMenu>
  11848. <productMenu id="deviceSetting"
  11849. type="1"
  11850. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11851. <productMenuURL version="2.4"
  11852. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11853. />
  11854. <productMenuURL version="1.5"
  11855. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11856. />
  11857. <productMenuURL version="1.4.1"
  11858. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11859. />
  11860. <productMenuURL version="1.1"
  11861. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11862. />
  11863. <productMenuURL version="1.0"
  11864. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11865. />
  11866. </productMenu>
  11867. <productMenu id="quickGuide"
  11868. type="1"
  11869. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11870. size="264KB" >
  11871. </productMenu>
  11872. <productMenu id="userGuide"
  11873. type="1"
  11874. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11875. size="3.09MB" >
  11876. </productMenu>
  11877. <productMenu id="connectGuide"
  11878. type="1"
  11879. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11880. size="1.12MB" >
  11881. </productMenu>
  11882. <productID id="4210"
  11883. />
  11884. <productProductKey key="11"
  11885. />
  11886. <productID id="4230"
  11887. />
  11888. <productProductKey key="11"
  11889. />
  11890. <productGroupable type="1"
  11891. />
  11892. </product>
  11893. <product id="HD50S"
  11894. name="Boom Audio 20S EVO"
  11895. series="50"
  11896. latestVersion="2.5.2"
  11897. show = "0" >
  11898. <productMenu id="protocol"
  11899. type="0">
  11900. </productMenu>
  11901. <productMenu id="sip"
  11902. type="1" >
  11903. <productMenuType version="1.0"
  11904. type="0"
  11905. />
  11906. </productMenu>
  11907. <productMenu id="bluetoothIntercom"
  11908. type="1" >
  11909. <productMenuType version="1.0"
  11910. type="0"
  11911. />
  11912. </productMenu>
  11913. <productMenu id="intercomSetting"
  11914. type="1" >
  11915. </productMenu>
  11916. <productMenu id="phone"
  11917. type="2" >
  11918. </productMenu>
  11919. <productMenu id="fmradio"
  11920. type="3" >
  11921. </productMenu>
  11922. <productMenu id="deviceSetting"
  11923. type="1"
  11924. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11925. <productMenuURL version="2.4"
  11926. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11927. />
  11928. <productMenuURL version="1.5"
  11929. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11930. />
  11931. <productMenuURL version="1.4.1"
  11932. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11933. />
  11934. <productMenuURL version="1.1"
  11935. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11936. />
  11937. <productMenuURL version="1.0"
  11938. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11939. />
  11940. </productMenu>
  11941. <productMenu id="quickGuide"
  11942. type="1"
  11943. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11944. size="321KB" >
  11945. </productMenu>
  11946. <productMenu id="userGuide"
  11947. type="1"
  11948. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11949. size="2.46MB" >
  11950. </productMenu>
  11951. <productID id="4230"
  11952. />
  11953. <productProductKey key="27"
  11954. />
  11955. <productGroupable type="1"
  11956. />
  11957. </product>
  11958. <product id="HD50S"
  11959. name="Boom! Audio 10S"
  11960. series="50"
  11961. latestVersion="1.1.3"
  11962. show = "0" >
  11963. <productMenu id="protocol"
  11964. type="0">
  11965. </productMenu>
  11966. <productMenu id="sip"
  11967. type="1" >
  11968. </productMenu>
  11969. <productMenu id="bluetoothIntercom"
  11970. type="1" >
  11971. </productMenu>
  11972. <productMenu id="phone"
  11973. type="2" >
  11974. </productMenu>
  11975. <productMenu id="fmradio"
  11976. type="3" >
  11977. </productMenu>
  11978. <productMenu id="deviceSetting"
  11979. type="1"
  11980. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11981. </productMenu>
  11982. <productMenu id="quickGuide"
  11983. type="1"
  11984. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11985. size="538KB" >
  11986. </productMenu>
  11987. <productMenu id="userGuide"
  11988. type="1"
  11989. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11990. size="1.55MB" >
  11991. </productMenu>
  11992. <productID id="5532"
  11993. />
  11994. <productGroupable type="0"
  11995. />
  11996. </product>
  11997. <product id="HD50S"
  11998. name="Boom! Audio N01 10R"
  11999. series="50"
  12000. latestVersion="1.1.3"
  12001. show = "0" >
  12002. <productMenu id="protocol"
  12003. type="0">
  12004. </productMenu>
  12005. <productMenu id="sip"
  12006. type="1" >
  12007. </productMenu>
  12008. <productMenu id="bluetoothIntercom"
  12009. type="1" >
  12010. </productMenu>
  12011. <productMenu id="phone"
  12012. type="2" >
  12013. </productMenu>
  12014. <productMenu id="fmradio"
  12015. type="3" >
  12016. </productMenu>
  12017. <productMenu id="deviceSetting"
  12018. type="1"
  12019. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12020. </productMenu>
  12021. <productMenu id="quickGuide"
  12022. type="1"
  12023. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12024. size="766KB" >
  12025. </productMenu>
  12026. <productMenu id="userGuide"
  12027. type="1"
  12028. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12029. size="1.45MB" >
  12030. </productMenu>
  12031. <productID id="5522"
  12032. />
  12033. <productGroupable type="0"
  12034. />
  12035. </product>
  12036. <product id="HD50S"
  12037. name="OUTRUSH-R N03"
  12038. series="50"
  12039. latestVersion="1.2.1"
  12040. show = "-1" >
  12041. <productMenu id="protocol"
  12042. type="0">
  12043. </productMenu>
  12044. <productMenu id="sip"
  12045. type="1" >
  12046. </productMenu>
  12047. <productMenu id="bluetoothIntercom"
  12048. type="1" >
  12049. </productMenu>
  12050. <productMenu id="phone"
  12051. type="2" >
  12052. </productMenu>
  12053. <productMenu id="fmradio"
  12054. type="3" >
  12055. </productMenu>
  12056. <productMenu id="deviceSetting"
  12057. type="1"
  12058. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12059. </productMenu>
  12060. <productMenu id="userGuide"
  12061. type="1"
  12062. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12063. size="660KB" >
  12064. </productMenu>
  12065. <productID id="5434"
  12066. />
  12067. <productGroupable type="0"
  12068. />
  12069. </product>
  12070. <product id="HD50S"
  12071. name="OUTRUSH-R N03"
  12072. series="50"
  12073. latestVersion="2.0"
  12074. show = "0" >
  12075. <productMenu id="protocol"
  12076. type="3" >
  12077. </productMenu>
  12078. <productMenu id="sip"
  12079. type="1" >
  12080. </productMenu>
  12081. <productMenu id="bluetoothIntercom"
  12082. type="1" >
  12083. </productMenu>
  12084. <productMenu id="phone"
  12085. type="1" >
  12086. </productMenu>
  12087. <productMenu id="fmradio"
  12088. type="1" >
  12089. </productMenu>
  12090. <productMenu id="deviceSetting"
  12091. type="1"
  12092. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12093. </productMenu>
  12094. <productMenu id="userGuide"
  12095. type="1"
  12096. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12097. size="1.14MB" >
  12098. </productMenu>
  12099. <productID id="5441"
  12100. />
  12101. <productGroupable type="0"
  12102. />
  12103. </product>
  12104. <product id="5R"
  12105. name="5R"
  12106. series="5"
  12107. latestVersion="1.0.1"
  12108. show = "1" >
  12109. <productMenu id="protocol"
  12110. type="3" >
  12111. </productMenu>
  12112. <productMenu id="sip"
  12113. type="1" >
  12114. </productMenu>
  12115. <productMenu id="bluetoothIntercom"
  12116. type="1" >
  12117. </productMenu>
  12118. <productMenu id="phone"
  12119. type="1" >
  12120. </productMenu>
  12121. <productMenu id="fmradio"
  12122. type="1" >
  12123. </productMenu>
  12124. <productMenu id="deviceSetting"
  12125. type="1"
  12126. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12127. </productMenu>
  12128. <productMenu id="quickGuide"
  12129. type="0"
  12130. url=""
  12131. size="934KB" >
  12132. </productMenu>
  12133. <productMenu id="userGuide"
  12134. type="1"
  12135. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12136. size="1.14MB" >
  12137. </productMenu>
  12138. <productMenu id="connectGuide"
  12139. type="1"
  12140. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12141. size="1.12MB" >
  12142. </productMenu>
  12143. <productID id="5591"
  12144. />
  12145. <productGroupable type="0"
  12146. />
  12147. </product>
  12148. <product id="5R"
  12149. name="5R LITE"
  12150. series="5"
  12151. latestVersion="1.0.1"
  12152. show = "1" >
  12153. <productMenu id="protocol"
  12154. type="3" >
  12155. </productMenu>
  12156. <productMenu id="sip"
  12157. type="1" >
  12158. </productMenu>
  12159. <productMenu id="bluetoothIntercom"
  12160. type="1" >
  12161. </productMenu>
  12162. <productMenu id="phone"
  12163. type="1" >
  12164. </productMenu>
  12165. <productMenu id="fmradio"
  12166. type="1" >
  12167. </productMenu>
  12168. <productMenu id="deviceSetting"
  12169. type="1"
  12170. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12171. </productMenu>
  12172. <productMenu id="quickGuide"
  12173. type="0"
  12174. url=""
  12175. size="934KB" >
  12176. </productMenu>
  12177. <productMenu id="userGuide"
  12178. type="1"
  12179. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12180. size="1.14MB" >
  12181. </productMenu>
  12182. <productMenu id="connectGuide"
  12183. type="1"
  12184. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12185. size="1.12MB" >
  12186. </productMenu>
  12187. <productID id="5592"
  12188. />
  12189. <productGroupable type="0"
  12190. />
  12191. </product>
  12192. <product id="50RLE"
  12193. name="50R LE"
  12194. series="50"
  12195. latestVersion="1.1"
  12196. show = "0" >
  12197. <productMenu id="protocol"
  12198. type="2" >
  12199. </productMenu>
  12200. <productMenu id="alexa"
  12201. type="0" >
  12202. </productMenu>
  12203. <productMenu id="sip"
  12204. type="1" >
  12205. </productMenu>
  12206. <productMenu id="meshIntercom"
  12207. type="30" >
  12208. </productMenu>
  12209. <productMenu id="meshIntercom+"
  12210. type="3"
  12211. url="2" >
  12212. <productMenuType version="1.0.9"
  12213. type="2"
  12214. />
  12215. </productMenu>
  12216. <productMenu id="waveIntercom"
  12217. type="1" >
  12218. <productMenuType version="1.0.9"
  12219. type="0"
  12220. />
  12221. </productMenu>
  12222. <productMenu id="bluetoothIntercom"
  12223. type="1" >
  12224. </productMenu>
  12225. <productMenu id="phone"
  12226. type="1" >
  12227. </productMenu>
  12228. <productMenu id="music"
  12229. type="1" >
  12230. </productMenu>
  12231. <productMenu id="fmradio"
  12232. type="0" >
  12233. </productMenu>
  12234. <productMenu id="deviceSetting"
  12235. type="1"
  12236. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12237. <productMenuURL version="1.0.9"
  12238. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12239. />
  12240. </productMenu>
  12241. <productMenu id="quickGuide"
  12242. type="0"
  12243. url=""
  12244. size="344KB" >
  12245. </productMenu>
  12246. <productMenu id="userGuide"
  12247. type="0"
  12248. url=""
  12249. size="3.41MB" >
  12250. </productMenu>
  12251. <productMenu id="volume"
  12252. type="11" >
  12253. </productMenu>
  12254. <productMenu id="battery"
  12255. type="1" >
  12256. </productMenu>
  12257. <productID id="3223"
  12258. />
  12259. <productGroupable type="0"
  12260. />
  12261. </product>
  12262. <product id="5RLOUIS"
  12263. name="5R LOUIS EDITION"
  12264. series="5"
  12265. latestVersion="1.0"
  12266. show = "-1" >
  12267. <productMenu id="protocol"
  12268. type="3" >
  12269. </productMenu>
  12270. <productMenu id="sip"
  12271. type="1" >
  12272. </productMenu>
  12273. <productMenu id="bluetoothIntercom"
  12274. type="1" >
  12275. </productMenu>
  12276. <productMenu id="phone"
  12277. type="1" >
  12278. </productMenu>
  12279. <productMenu id="fmradio"
  12280. type="1" >
  12281. </productMenu>
  12282. <productMenu id="deviceSetting"
  12283. type="1"
  12284. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12285. </productMenu>
  12286. <productMenu id="quickGuide"
  12287. type="0"
  12288. url=""
  12289. size="934KB" >
  12290. </productMenu>
  12291. <productMenu id="userGuide"
  12292. type="0"
  12293. url=""
  12294. size="1.14MB" >
  12295. </productMenu>
  12296. <productID id="5597"
  12297. />
  12298. <productGroupable type="0"
  12299. />
  12300. </product>
  12301. <product id="5S"
  12302. name="Ridekont 5S"
  12303. series="5"
  12304. latestVersion="2.3"
  12305. show = "-1" >
  12306. <productMenu id="protocol"
  12307. type="3" >
  12308. </productMenu>
  12309. <productMenu id="sip"
  12310. type="1" >
  12311. </productMenu>
  12312. <productMenu id="bluetoothIntercom"
  12313. type="1" >
  12314. </productMenu>
  12315. <productMenu id="phone"
  12316. type="1" >
  12317. </productMenu>
  12318. <productMenu id="fmradio"
  12319. type="0" >
  12320. </productMenu>
  12321. <productMenu id="deviceSetting"
  12322. type="1"
  12323. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12324. </productMenu>
  12325. <productMenu id="quickGuide"
  12326. type="0"
  12327. url=""
  12328. size="934KB" >
  12329. </productMenu>
  12330. <productMenu id="userGuide"
  12331. type="1"
  12332. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12333. size="1.14MB" >
  12334. </productMenu>
  12335. <productID id="5589"
  12336. />
  12337. <productGroupable type="0"
  12338. />
  12339. </product>
  12340. <product id="5R"
  12341. name="Ridekont 5R"
  12342. series="5"
  12343. latestVersion="1.0"
  12344. show = "0" >
  12345. <productMenu id="protocol"
  12346. type="3" >
  12347. </productMenu>
  12348. <productMenu id="sip"
  12349. type="1" >
  12350. </productMenu>
  12351. <productMenu id="bluetoothIntercom"
  12352. type="1" >
  12353. </productMenu>
  12354. <productMenu id="phone"
  12355. type="1" >
  12356. </productMenu>
  12357. <productMenu id="fmradio"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="deviceSetting"
  12361. type="1"
  12362. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12363. </productMenu>
  12364. <productMenu id="quickGuide"
  12365. type="1"
  12366. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12367. size="934KB" >
  12368. </productMenu>
  12369. <productMenu id="userGuide"
  12370. type="1"
  12371. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12372. size="1.14MB" >
  12373. </productMenu>
  12374. <productID id="5593"
  12375. />
  12376. <productGroupable type="0"
  12377. />
  12378. </product>
  12379. <product id="5R"
  12380. name="Ridekont 5R LITE"
  12381. series="5"
  12382. latestVersion="1.0"
  12383. show = "0" >
  12384. <productMenu id="protocol"
  12385. type="3" >
  12386. </productMenu>
  12387. <productMenu id="sip"
  12388. type="1" >
  12389. </productMenu>
  12390. <productMenu id="bluetoothIntercom"
  12391. type="1" >
  12392. </productMenu>
  12393. <productMenu id="phone"
  12394. type="1" >
  12395. </productMenu>
  12396. <productMenu id="fmradio"
  12397. type="1" >
  12398. </productMenu>
  12399. <productMenu id="deviceSetting"
  12400. type="1"
  12401. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12402. </productMenu>
  12403. <productMenu id="quickGuide"
  12404. type="0"
  12405. url=""
  12406. size="934KB" >
  12407. </productMenu>
  12408. <productMenu id="userGuide"
  12409. type="1"
  12410. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12411. size="1.14MB" >
  12412. </productMenu>
  12413. <productID id="5594"
  12414. />
  12415. <productGroupable type="0"
  12416. />
  12417. </product>
  12418. <product id="SA30"
  12419. name="SA30"
  12420. series="SA"
  12421. latestVersion="1.0.1"
  12422. latestVersionVoicePrompt="0.15"
  12423. show = "-1" >
  12424. <productMenu id="protocol"
  12425. type="2" >
  12426. </productMenu>
  12427. <productMenu id="ota"
  12428. type="2" >
  12429. <otaPackages>
  12430. <package
  12431. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12432. size="3144148"
  12433. />
  12434. </otaPackages>
  12435. </productMenu>
  12436. <productMenu id="meshIntercom"
  12437. type="30" >
  12438. </productMenu>
  12439. <productMenu id="meshIntercom+"
  12440. type="3"
  12441. url="2" >
  12442. </productMenu>
  12443. <productMenu id="phone"
  12444. type="1" >
  12445. </productMenu>
  12446. <productMenu id="music"
  12447. type="1" >
  12448. </productMenu>
  12449. <productMenu id="musicSharing"
  12450. type="0" >
  12451. </productMenu>
  12452. <productMenu id="deviceSetting"
  12453. type="1"
  12454. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12455. </productMenu>
  12456. <productMenu id="quickGuide"
  12457. type="0"
  12458. url=""
  12459. size="1.12MB" >
  12460. </productMenu>
  12461. <productMenu id="userGuide"
  12462. type="1"
  12463. url=""
  12464. size="2.0MB" >
  12465. </productMenu>
  12466. <productMenu id="videoGuide"
  12467. type="0"
  12468. url=""
  12469. size="3.41MB" >
  12470. </productMenu>
  12471. <productMenu id="volume"
  12472. type="12" >
  12473. </productMenu>
  12474. <productMenu id="battery"
  12475. type="1" >
  12476. </productMenu>
  12477. <productID id="6852"
  12478. />
  12479. <productGroupable type="0"
  12480. />
  12481. </product>
  12482. <product id="I30"
  12483. name="I30"
  12484. series="I"
  12485. latestVersion="1.0.1"
  12486. latestVersionVoicePrompt="0.2"
  12487. show = "-1" >
  12488. <productMenu id="protocol"
  12489. type="2" >
  12490. </productMenu>
  12491. <productMenu id="ota"
  12492. type="2" >
  12493. <otaPackages>
  12494. <package
  12495. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12496. size="3144148"
  12497. />
  12498. </otaPackages>
  12499. </productMenu>
  12500. <productMenu id="meshIntercom"
  12501. type="30" >
  12502. </productMenu>
  12503. <productMenu id="meshIntercom+"
  12504. type="3"
  12505. url="2" >
  12506. </productMenu>
  12507. <productMenu id="phone"
  12508. type="1" >
  12509. </productMenu>
  12510. <productMenu id="music"
  12511. type="1" >
  12512. </productMenu>
  12513. <productMenu id="musicSharing"
  12514. type="0" >
  12515. </productMenu>
  12516. <productMenu id="deviceSetting"
  12517. type="1"
  12518. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12519. </productMenu>
  12520. <productMenu id="quickGuide"
  12521. type="0"
  12522. url=""
  12523. size="1.12MB" >
  12524. </productMenu>
  12525. <productMenu id="userGuide"
  12526. type="1"
  12527. url=""
  12528. size="2.10MB" >
  12529. </productMenu>
  12530. <productMenu id="videoGuide"
  12531. type="0"
  12532. url=""
  12533. size="3.11MB" >
  12534. </productMenu>
  12535. <productMenu id="volume"
  12536. type="12" >
  12537. </productMenu>
  12538. <productMenu id="battery"
  12539. type="1" >
  12540. </productMenu>
  12541. <productID id="6853"
  12542. />
  12543. <productGroupable type="0"
  12544. />
  12545. </product>
  12546. <product id="LS2C30"
  12547. name="LS2-C30"
  12548. series="C"
  12549. latestVersion="1.0"
  12550. latestVersionVoicePrompt="0.13"
  12551. show = "-1" >
  12552. <productMenu id="protocol"
  12553. type="2" >
  12554. </productMenu>
  12555. <productMenu id="ota"
  12556. type="0" >
  12557. <otaPackages>
  12558. <package
  12559. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12560. size="3144148"
  12561. />
  12562. </otaPackages>
  12563. </productMenu>
  12564. <productMenu id="meshIntercom+"
  12565. type="3"
  12566. url="2" >
  12567. </productMenu>
  12568. <productMenu id="waveIntercom"
  12569. type="1" >
  12570. </productMenu>
  12571. <productMenu id="phone"
  12572. type="1" >
  12573. </productMenu>
  12574. <productMenu id="music"
  12575. type="1" >
  12576. </productMenu>
  12577. <productMenu id="musicSharing"
  12578. type="0" >
  12579. </productMenu>
  12580. <productMenu id="deviceSetting"
  12581. type="1"
  12582. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12583. </productMenu>
  12584. <productMenu id="quickGuide"
  12585. type="0"
  12586. url=""
  12587. size="1.17MB" >
  12588. </productMenu>
  12589. <productMenu id="userGuide"
  12590. type="1"
  12591. url=""
  12592. size="2.0MB" >
  12593. </productMenu>
  12594. <productMenu id="videoGuide"
  12595. type="0"
  12596. url=""
  12597. size="3.41MB" >
  12598. </productMenu>
  12599. <productMenu id="volume"
  12600. type="12" >
  12601. </productMenu>
  12602. <productMenu id="battery"
  12603. type="1" >
  12604. </productMenu>
  12605. <productID id="685E"
  12606. />
  12607. <productGroupable type="0"
  12608. />
  12609. </product>
  12610. <product id="C30EVO"
  12611. name="C30 EVO"
  12612. series="C"
  12613. latestVersion="1.0"
  12614. latestVersionVoicePrompt="0.13"
  12615. show = "-1" >
  12616. <productMenu id="protocol"
  12617. type="2" >
  12618. </productMenu>
  12619. <productMenu id="ota"
  12620. type="0" >
  12621. <otaPackages>
  12622. <package
  12623. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12624. size="3144148"
  12625. />
  12626. </otaPackages>
  12627. </productMenu>
  12628. <productMenu id="meshIntercom+"
  12629. type="3"
  12630. url="2" >
  12631. </productMenu>
  12632. <productMenu id="waveIntercom"
  12633. type="1" >
  12634. </productMenu>
  12635. <productMenu id="phone"
  12636. type="1" >
  12637. </productMenu>
  12638. <productMenu id="music"
  12639. type="1" >
  12640. </productMenu>
  12641. <productMenu id="musicSharing"
  12642. type="0" >
  12643. </productMenu>
  12644. <productMenu id="deviceSetting"
  12645. type="1"
  12646. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12647. </productMenu>
  12648. <productMenu id="quickGuide"
  12649. type="0"
  12650. url=""
  12651. size="1.17MB" >
  12652. </productMenu>
  12653. <productMenu id="userGuide"
  12654. type="1"
  12655. url=""
  12656. size="2.0MB" >
  12657. </productMenu>
  12658. <productMenu id="videoGuide"
  12659. type="0"
  12660. url=""
  12661. size="3.41MB" >
  12662. </productMenu>
  12663. <productMenu id="volume"
  12664. type="12" >
  12665. </productMenu>
  12666. <productMenu id="battery"
  12667. type="1" >
  12668. </productMenu>
  12669. <productID id="685B"
  12670. />
  12671. <productGroupable type="0"
  12672. />
  12673. </product>
  12674. <product id="C30"
  12675. name="SENA C30"
  12676. series="C"
  12677. latestVersion="1.2.2"
  12678. latestVersionVoicePrompt="0.13"
  12679. show = "1" >
  12680. <productMenu id="protocol"
  12681. type="2" >
  12682. </productMenu>
  12683. <productMenu id="alexa"
  12684. type="0" >
  12685. </productMenu>
  12686. <productMenu id="ota"
  12687. type="2" >
  12688. <otaPackages>
  12689. <package
  12690. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12691. size="3144148"
  12692. />
  12693. </otaPackages>
  12694. </productMenu>
  12695. <productMenu id="wa"
  12696. type="0" >
  12697. </productMenu>
  12698. <productMenu id="meshIntercom"
  12699. type="30" >
  12700. </productMenu>
  12701. <productMenu id="meshIntercom+"
  12702. type="3"
  12703. url="2" >
  12704. <productMenuType version="1.0.9"
  12705. type="2"
  12706. />
  12707. </productMenu>
  12708. <productMenu id="waveIntercom"
  12709. type="1" >
  12710. <productMenuType version="1.1.9"
  12711. type="0"
  12712. />
  12713. </productMenu>
  12714. <productMenu id="phone"
  12715. type="1" >
  12716. </productMenu>
  12717. <productMenu id="music"
  12718. type="1" >
  12719. </productMenu>
  12720. <productMenu id="musicSharing"
  12721. type="0" >
  12722. </productMenu>
  12723. <productMenu id="deviceSetting"
  12724. type="1"
  12725. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12726. <productMenuURL version="1.1.3"
  12727. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12728. />
  12729. <productMenuURL version="1.0.9"
  12730. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12731. />
  12732. </productMenu>
  12733. <productMenu id="quickGuide"
  12734. type="1"
  12735. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12736. size="1.12MB" >
  12737. </productMenu>
  12738. <productMenu id="userGuide"
  12739. type="0"
  12740. url=""
  12741. size="2.0MB" >
  12742. </productMenu>
  12743. <productMenu id="videoGuide"
  12744. type="0"
  12745. url=""
  12746. size="3.41MB" >
  12747. </productMenu>
  12748. <productMenu id="volume"
  12749. type="12" >
  12750. </productMenu>
  12751. <productMenu id="battery"
  12752. type="1" >
  12753. </productMenu>
  12754. <productID id="683A"
  12755. />
  12756. <productGroupable type="0"
  12757. />
  12758. </product>
  12759. <product id="C20"
  12760. name="C20"
  12761. series="C"
  12762. latestVersion="1.0"
  12763. show = "1" >
  12764. <productMenu id="protocol"
  12765. type="3" >
  12766. </productMenu>
  12767. <productMenu id="sip"
  12768. type="1" >
  12769. </productMenu>
  12770. <productMenu id="bluetoothIntercom"
  12771. type="1" >
  12772. </productMenu>
  12773. <productMenu id="phone"
  12774. type="1" >
  12775. </productMenu>
  12776. <productMenu id="deviceSetting"
  12777. type="1"
  12778. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12779. </productMenu>
  12780. <productMenu id="quickGuide"
  12781. type="1"
  12782. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12783. size="934KB" >
  12784. </productMenu>
  12785. <productMenu id="userGuide"
  12786. type="1"
  12787. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12788. size="1.14MB" >
  12789. </productMenu>
  12790. <productID id="3701"
  12791. />
  12792. <productGroupable type="0"
  12793. />
  12794. </product>
  12795. <product id="C10"
  12796. name="C10"
  12797. series="C"
  12798. latestVersion="1.4.4"
  12799. show = "1" >
  12800. <productMenu id="protocol"
  12801. type="3" >
  12802. </productMenu>
  12803. <productMenu id="sip"
  12804. type="1" >
  12805. </productMenu>
  12806. <productMenu id="bluetoothIntercom"
  12807. type="1" >
  12808. </productMenu>
  12809. <productMenu id="phone"
  12810. type="1" >
  12811. </productMenu>
  12812. <productMenu id="fmradio"
  12813. type="0" >
  12814. </productMenu>
  12815. <productMenu id="deviceSetting"
  12816. type="1"
  12817. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12818. </productMenu>
  12819. <productMenu id="userGuide"
  12820. type="1"
  12821. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12822. size="1.14MB" >
  12823. </productMenu>
  12824. <productID id="5595"
  12825. />
  12826. <productGroupable type="0"
  12827. />
  12828. </product>
  12829. <product id="J30"
  12830. name="J30"
  12831. series="J"
  12832. latestVersion="1.2.2"
  12833. latestVersionVoicePrompt="0.14"
  12834. show = "0" >
  12835. <productMenu id="protocol"
  12836. type="2" >
  12837. </productMenu>
  12838. <productMenu id="alexa"
  12839. type="0" >
  12840. </productMenu>
  12841. <productMenu id="ota"
  12842. type="2" >
  12843. <otaPackages>
  12844. <package
  12845. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12846. size="3144148"
  12847. />
  12848. </otaPackages>
  12849. </productMenu>
  12850. <productMenu id="wa"
  12851. type="0" >
  12852. </productMenu>
  12853. <productMenu id="meshIntercom"
  12854. type="30" >
  12855. </productMenu>
  12856. <productMenu id="meshIntercom+"
  12857. type="3"
  12858. url="2" >
  12859. <productMenuType version="1.0.9"
  12860. type="2"
  12861. />
  12862. </productMenu>
  12863. <productMenu id="waveIntercom"
  12864. type="1" >
  12865. <productMenuType version="1.1.9"
  12866. type="0"
  12867. />
  12868. </productMenu>
  12869. <productMenu id="phone"
  12870. type="1" >
  12871. </productMenu>
  12872. <productMenu id="music"
  12873. type="1" >
  12874. </productMenu>
  12875. <productMenu id="musicSharing"
  12876. type="0" >
  12877. </productMenu>
  12878. <productMenu id="deviceSetting"
  12879. type="1"
  12880. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12881. <productMenuURL version="1.0.9"
  12882. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12883. />
  12884. </productMenu>
  12885. <productMenu id="quickGuide"
  12886. type="0"
  12887. url=""
  12888. size="1.12MB" >
  12889. </productMenu>
  12890. <productMenu id="userGuide"
  12891. type="1"
  12892. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12893. size="2.0MB" >
  12894. </productMenu>
  12895. <productMenu id="videoGuide"
  12896. type="0"
  12897. url=""
  12898. size="3.41MB" >
  12899. </productMenu>
  12900. <productMenu id="volume"
  12901. type="12" >
  12902. </productMenu>
  12903. <productMenu id="battery"
  12904. type="1" >
  12905. </productMenu>
  12906. <productID id="6848"
  12907. />
  12908. <productGroupable type="0"
  12909. />
  12910. </product>
  12911. <product id="J10"
  12912. name="J10"
  12913. series="5"
  12914. latestVersion="1.1.4"
  12915. show = "0" >
  12916. <productMenu id="protocol"
  12917. type="3" >
  12918. </productMenu>
  12919. <productMenu id="sip"
  12920. type="1" >
  12921. </productMenu>
  12922. <productMenu id="bluetoothIntercom"
  12923. type="1" >
  12924. </productMenu>
  12925. <productMenu id="phone"
  12926. type="1" >
  12927. </productMenu>
  12928. <productMenu id="fmradio"
  12929. type="0" >
  12930. </productMenu>
  12931. <productMenu id="deviceSetting"
  12932. type="1"
  12933. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12934. </productMenu>
  12935. <productMenu id="userGuide"
  12936. type="1"
  12937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12938. size="1.14MB" >
  12939. </productMenu>
  12940. <productID id="5598"
  12941. />
  12942. <productGroupable type="0"
  12943. />
  12944. </product>
  12945. <product id="B20"
  12946. name="B20"
  12947. series="B"
  12948. latestVersion="1.1.2"
  12949. latestVersionVoicePrompt="0.14"
  12950. show = "0" >
  12951. <productMenu id="protocol"
  12952. type="2" >
  12953. </productMenu>
  12954. <productMenu id="alexa"
  12955. type="0" >
  12956. </productMenu>
  12957. <productMenu id="ota"
  12958. type="2" >
  12959. <otaPackages>
  12960. <package
  12961. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12962. size="3144148"
  12963. />
  12964. </otaPackages>
  12965. </productMenu>
  12966. <productMenu id="wa"
  12967. type="0" >
  12968. </productMenu>
  12969. <productMenu id="meshIntercom"
  12970. type="30" >
  12971. </productMenu>
  12972. <productMenu id="phone"
  12973. type="1" >
  12974. </productMenu>
  12975. <productMenu id="music"
  12976. type="1" >
  12977. </productMenu>
  12978. <productMenu id="musicSharing"
  12979. type="0" >
  12980. </productMenu>
  12981. <productMenu id="deviceSetting"
  12982. type="1"
  12983. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12984. <productMenuURL version="1.0.9"
  12985. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12986. />
  12987. </productMenu>
  12988. <productMenu id="quickGuide"
  12989. type="0"
  12990. url=""
  12991. size="1.12MB" >
  12992. </productMenu>
  12993. <productMenu id="userGuide"
  12994. type="1"
  12995. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12996. size="2.0MB" >
  12997. </productMenu>
  12998. <productMenu id="videoGuide"
  12999. type="0"
  13000. url=""
  13001. size="3.41MB" >
  13002. </productMenu>
  13003. <productMenu id="volume"
  13004. type="12" >
  13005. </productMenu>
  13006. <productMenu id="battery"
  13007. type="1" >
  13008. </productMenu>
  13009. <productID id="6847"
  13010. />
  13011. <productGroupable type="0"
  13012. />
  13013. </product>
  13014. <product id="B10"
  13015. name="B10"
  13016. series="5"
  13017. latestVersion="1.2.4"
  13018. show = "0" >
  13019. <productMenu id="protocol"
  13020. type="3" >
  13021. </productMenu>
  13022. <productMenu id="sip"
  13023. type="1" >
  13024. </productMenu>
  13025. <productMenu id="bluetoothIntercom"
  13026. type="1" >
  13027. </productMenu>
  13028. <productMenu id="phone"
  13029. type="1" >
  13030. </productMenu>
  13031. <productMenu id="fmradio"
  13032. type="0" >
  13033. </productMenu>
  13034. <productMenu id="deviceSetting"
  13035. type="1"
  13036. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13037. </productMenu>
  13038. <productMenu id="userGuide"
  13039. type="1"
  13040. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13041. size="1.14MB" >
  13042. </productMenu>
  13043. <productID id="5596"
  13044. />
  13045. <productGroupable type="0"
  13046. />
  13047. </product>
  13048. <product id="E30"
  13049. name="E30"
  13050. series="E"
  13051. latestVersion="1.1.2"
  13052. latestVersionVoicePrompt="0.14"
  13053. show = "0" >
  13054. <productMenu id="protocol"
  13055. type="2" >
  13056. </productMenu>
  13057. <productMenu id="alexa"
  13058. type="0" >
  13059. </productMenu>
  13060. <productMenu id="ota"
  13061. type="2" >
  13062. <otaPackages>
  13063. <package
  13064. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  13065. size="3144148"
  13066. />
  13067. </otaPackages>
  13068. </productMenu>
  13069. <productMenu id="wa"
  13070. type="0" >
  13071. </productMenu>
  13072. <productMenu id="meshIntercom"
  13073. type="30" >
  13074. </productMenu>
  13075. <productMenu id="meshIntercom+"
  13076. type="3"
  13077. url="2" >
  13078. </productMenu>
  13079. <productMenu id="waveIntercom"
  13080. type="1" >
  13081. <productMenuType version="1.0.9"
  13082. type="0"
  13083. />
  13084. </productMenu>
  13085. <productMenu id="phone"
  13086. type="1" >
  13087. </productMenu>
  13088. <productMenu id="music"
  13089. type="1" >
  13090. </productMenu>
  13091. <productMenu id="musicSharing"
  13092. type="0" >
  13093. </productMenu>
  13094. <productMenu id="deviceSetting"
  13095. type="1"
  13096. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13097. </productMenu>
  13098. <productMenu id="quickGuide"
  13099. type="0"
  13100. url=""
  13101. size="1.12MB" >
  13102. </productMenu>
  13103. <productMenu id="userGuide"
  13104. type="1"
  13105. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13106. size="2.0MB" >
  13107. </productMenu>
  13108. <productMenu id="videoGuide"
  13109. type="0"
  13110. url=""
  13111. size="3.41MB" >
  13112. </productMenu>
  13113. <productMenu id="volume"
  13114. type="12" >
  13115. </productMenu>
  13116. <productMenu id="battery"
  13117. type="1" >
  13118. </productMenu>
  13119. <productID id="6846"
  13120. />
  13121. <productGroupable type="0"
  13122. />
  13123. </product>
  13124. <product id="ACSRAM"
  13125. name="ACS-RAM"
  13126. series="ACS"
  13127. latestVersion="1.0.5"
  13128. show = "1" >
  13129. <productMenu id="protocol"
  13130. type="3" >
  13131. </productMenu>
  13132. <productMenu id="sip"
  13133. type="1" >
  13134. </productMenu>
  13135. <productMenu id="bluetoothIntercom"
  13136. type="1" >
  13137. </productMenu>
  13138. <productMenu id="deviceSetting"
  13139. type="1"
  13140. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13141. </productMenu>
  13142. <productMenu id="quickGuide"
  13143. type="1"
  13144. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13145. size="344KB" >
  13146. </productMenu>
  13147. <productMenu id="userGuide"
  13148. type="1"
  13149. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13150. size="1.14MB" >
  13151. </productMenu>
  13152. <productMenu id="connectGuide"
  13153. type="1"
  13154. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13155. size="1.12MB" >
  13156. </productMenu>
  13157. <productID id="3400"
  13158. />
  13159. <productGroupable type="0"
  13160. />
  13161. </product>
  13162. <product id="ACS10"
  13163. name="ACS10"
  13164. series="ACS"
  13165. latestVersion="1.0.2"
  13166. show = "1" >
  13167. <productMenu id="protocol"
  13168. type="0">
  13169. </productMenu>
  13170. <productMenu id="sip"
  13171. type="1" >
  13172. </productMenu>
  13173. <productMenu id="bluetoothIntercom"
  13174. type="1" >
  13175. </productMenu>
  13176. <productMenu id="phone"
  13177. type="2" >
  13178. </productMenu>
  13179. <productMenu id="deviceSetting"
  13180. type="1"
  13181. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13182. </productMenu>
  13183. <productMenu id="quickGuide"
  13184. type="1"
  13185. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13186. size="970KB" >
  13187. </productMenu>
  13188. <productMenu id="userGuide"
  13189. type="1"
  13190. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13191. size="1.26MB" >
  13192. </productMenu>
  13193. <productMenu id="connectGuide"
  13194. type="1"
  13195. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13196. size="1.12MB" >
  13197. </productMenu>
  13198. <productID id="3300"
  13199. />
  13200. <productGroupable type="0"
  13201. />
  13202. </product>
  13203. <product id="DWO7ProMesh"
  13204. name="DWO 7 Pro Mesh"
  13205. series="50"
  13206. latestVersion="1.1"
  13207. latestVersionVoicePrompt="0.9"
  13208. show = "0" >
  13209. <productMenu id="protocol"
  13210. type="2" >
  13211. </productMenu>
  13212. <productMenu id="alexa"
  13213. type="0" >
  13214. </productMenu>
  13215. <productMenu id="ota"
  13216. type="2" >
  13217. <otaPackages>
  13218. <package
  13219. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13220. size="2945812"
  13221. />
  13222. </otaPackages>
  13223. </productMenu>
  13224. <productMenu id="wa"
  13225. type="0" >
  13226. </productMenu>
  13227. <productMenu id="meshIntercom"
  13228. type="20" >
  13229. </productMenu>
  13230. <productMenu id="meshIntercom+"
  13231. type="3"
  13232. url="2" >
  13233. <productMenuType version="1.0.9"
  13234. type="2"
  13235. />
  13236. <productMenuURL version="2.1.1"
  13237. url="0"
  13238. />
  13239. </productMenu>
  13240. <productMenu id="waveIntercom"
  13241. type="1" >
  13242. <productMenuType version="1.0.9"
  13243. type="0"
  13244. />
  13245. </productMenu>
  13246. <productMenu id="phone"
  13247. type="1" >
  13248. </productMenu>
  13249. <productMenu id="music"
  13250. type="1" >
  13251. </productMenu>
  13252. <productMenu id="fmradio"
  13253. type="1" >
  13254. </productMenu>
  13255. <productMenu id="musicSharing"
  13256. type="0" >
  13257. </productMenu>
  13258. <productMenu id="deviceSetting"
  13259. type="1"
  13260. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13261. <productMenuURL version="1.0.9"
  13262. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13263. />
  13264. </productMenu>
  13265. <productMenu id="quickGuide"
  13266. type="1"
  13267. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13268. size="1.12MB" >
  13269. </productMenu>
  13270. <productMenu id="userGuide"
  13271. type="1"
  13272. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13273. size="2.0MB" >
  13274. </productMenu>
  13275. <productMenu id="volume"
  13276. type="12" >
  13277. </productMenu>
  13278. <productMenu id="battery"
  13279. type="1" >
  13280. </productMenu>
  13281. <productID id="6806"
  13282. />
  13283. <productGroupable type="0"
  13284. />
  13285. </product>
  13286. <product id="ERA1X"
  13287. name="ERA 1 X"
  13288. series="UCOM"
  13289. latestVersion="0.2.1"
  13290. latestVersionMesh="0.19"
  13291. latestVersionVoicePrompt="1.2"
  13292. show = "-1" >
  13293. <productMenu id="protocol"
  13294. type="2" >
  13295. </productMenu>
  13296. <productMenu id="ota"
  13297. type="2" >
  13298. <otaLanguages>
  13299. <otaLanguage
  13300. id="0"
  13301. name="English"
  13302. package="0"
  13303. />
  13304. <otaLanguage
  13305. id="0"
  13306. name="French"
  13307. package="1"
  13308. />
  13309. <otaLanguage
  13310. id="0"
  13311. name="Spanish"
  13312. package="2"
  13313. />
  13314. <otaLanguage
  13315. id="0"
  13316. name="Italian"
  13317. package="3"
  13318. />
  13319. <otaLanguage
  13320. id="0"
  13321. name="German"
  13322. package="4"
  13323. />
  13324. <otaLanguage
  13325. id="0"
  13326. name="Dutch"
  13327. package="5"
  13328. />
  13329. <otaLanguage
  13330. id="0"
  13331. name="Russian"
  13332. package="6"
  13333. />
  13334. <otaLanguage
  13335. id="0"
  13336. name="Chinese"
  13337. package="7"
  13338. />
  13339. <otaLanguage
  13340. id="0"
  13341. name="Korean"
  13342. package="8"
  13343. />
  13344. <otaLanguage
  13345. id="0"
  13346. name="Japanese"
  13347. package="9"
  13348. />
  13349. <otaLanguage
  13350. id="0"
  13351. name="Finnish"
  13352. package="10"
  13353. />
  13354. <otaLanguage
  13355. id="0"
  13356. name="Polish"
  13357. package="11"
  13358. />
  13359. <otaLanguage
  13360. id="0"
  13361. name="Czech"
  13362. package="12"
  13363. />
  13364. <otaLanguage
  13365. id="0"
  13366. name="Danish"
  13367. package="13"
  13368. />
  13369. <otaLanguage
  13370. id="0"
  13371. name="Norwegian"
  13372. package="14"
  13373. />
  13374. <otaLanguage
  13375. id="0"
  13376. name="Swedish"
  13377. package="15"
  13378. />
  13379. <otaLanguage
  13380. id="0"
  13381. name="Turkish"
  13382. package="16"
  13383. />
  13384. <otaLanguage
  13385. id="0"
  13386. name="Hungarian"
  13387. package="17"
  13388. />
  13389. <otaLanguage
  13390. id="0"
  13391. name="Portuguese"
  13392. package="18"
  13393. />
  13394. <otaLanguage
  13395. id="0"
  13396. name="Hebrew"
  13397. package="19"
  13398. />
  13399. <otaLanguage
  13400. id="0"
  13401. name="Greek"
  13402. package="20"
  13403. />
  13404. </otaLanguages>
  13405. <otaPackages>
  13406. <package
  13407. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13408. size="5183988"
  13409. />
  13410. <package
  13411. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13412. size="5183988"
  13413. />
  13414. <package
  13415. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13416. size="5183988"
  13417. />
  13418. <package
  13419. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13420. size="5183988"
  13421. />
  13422. <package
  13423. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13424. size="5183988"
  13425. />
  13426. <package
  13427. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13428. size="5183988"
  13429. />
  13430. <package
  13431. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13432. size="5183988"
  13433. />
  13434. <package
  13435. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13436. size="5183988"
  13437. />
  13438. <package
  13439. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13440. size="5183988"
  13441. />
  13442. <package
  13443. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13444. size="5183988"
  13445. />
  13446. <package
  13447. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13448. size="5183988"
  13449. />
  13450. <package
  13451. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13452. size="5183988"
  13453. />
  13454. <package
  13455. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13456. size="5183988"
  13457. />
  13458. <package
  13459. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13460. size="5183988"
  13461. />
  13462. <package
  13463. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13464. size="5183988"
  13465. />
  13466. <package
  13467. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13468. size="5183988"
  13469. />
  13470. <package
  13471. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13472. size="5183988"
  13473. />
  13474. <package
  13475. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13476. size="5183988"
  13477. />
  13478. <package
  13479. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13480. size="5183988"
  13481. />
  13482. <package
  13483. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13484. size="5183988"
  13485. />
  13486. <package
  13487. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13488. size="5183988"
  13489. />
  13490. </otaPackages>
  13491. </productMenu>
  13492. <productMenu id="wa"
  13493. type="0" >
  13494. </productMenu>
  13495. <productMenu id="sip"
  13496. type="1" >
  13497. </productMenu>
  13498. <productMenu id="led"
  13499. type="0" >
  13500. </productMenu>
  13501. <productMenu id="illusion"
  13502. type="1" >
  13503. </productMenu>
  13504. <productMenu id="meshIntercom"
  13505. type="30" >
  13506. </productMenu>
  13507. <productMenu id="meshIntercom+"
  13508. type="3"
  13509. url="2" >
  13510. </productMenu>
  13511. <productMenu id="waveIntercom"
  13512. type="0" >
  13513. </productMenu>
  13514. <productMenu id="bluetoothIntercom"
  13515. type="1" >
  13516. </productMenu>
  13517. <productMenu id="bluetoothIntercomGrouping"
  13518. type="0" >
  13519. </productMenu>
  13520. <productMenu id="fmradio"
  13521. type="1"
  13522. url="1" >
  13523. </productMenu>
  13524. <productMenu id="phone"
  13525. type="1" >
  13526. </productMenu>
  13527. <productMenu id="music"
  13528. type="1" >
  13529. </productMenu>
  13530. <productMenu id="musicSharing"
  13531. type="0" >
  13532. </productMenu>
  13533. <productMenu id="deviceSetting"
  13534. type="1"
  13535. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13536. </productMenu>
  13537. <productMenu id="quickGuide"
  13538. type="0"
  13539. url=""
  13540. size="1.12MB" >
  13541. </productMenu>
  13542. <productMenu id="userGuide"
  13543. type="1"
  13544. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13545. size="2.0MB" >
  13546. </productMenu>
  13547. <productMenu id="videoGuide"
  13548. type="0"
  13549. url=""
  13550. size="3.41MB" >
  13551. </productMenu>
  13552. <productMenu id="volume"
  13553. type="16" >
  13554. </productMenu>
  13555. <productMenu id="soundMode"
  13556. type="1" >
  13557. </productMenu>
  13558. <productMenu id="battery"
  13559. type="1" >
  13560. </productMenu>
  13561. <productID id="6A83"
  13562. />
  13563. <productGroupable type="0"
  13564. />
  13565. </product>
  13566. <product id="MeshStation"
  13567. name="Mesh Station"
  13568. series="50"
  13569. latestVersion="0.9"
  13570. show = "-1" >
  13571. <productMenu id="protocol"
  13572. type="2" >
  13573. </productMenu>
  13574. <productMenu id="meshIntercom"
  13575. type="20"
  13576. url="99" >
  13577. </productMenu>
  13578. <productID id="3161"
  13579. />
  13580. <productGroupable type="0"
  13581. />
  13582. </product>
  13583. </products>
  13584. </sna>