snm.xml 404 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250252" appVer="2.14" iosAppVer="2.14" central="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60SEVO"
  122. name="60S EVO"
  123. series="60"
  124. latestVersion="0.1"
  125. latestVersionMesh="0.19"
  126. latestVersionVoicePrompt="1.2"
  127. show = "-1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="0" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  268. </productMenu>
  269. <productMenu id="fmradio"
  270. type="1"
  271. url="1" >
  272. </productMenu>
  273. <productMenu id="phone"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="music"
  277. type="1" >
  278. </productMenu>
  279. <productMenu id="musicSharing"
  280. type="0" >
  281. </productMenu>
  282. <productMenu id="deviceSetting"
  283. type="1"
  284. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url=""
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="0"
  303. url=""
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="1" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A15"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60S"
  321. name="60S"
  322. series="60"
  323. latestVersion="1.2.3"
  324. latestVersionMesh="1.2"
  325. latestVersionVoicePrompt="1.2"
  326. show = "1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="ota"
  331. type="2" >
  332. <otaLanguages>
  333. <otaLanguage
  334. id="0"
  335. name="English"
  336. package="0"
  337. />
  338. <otaLanguage
  339. id="0"
  340. name="French"
  341. package="1"
  342. />
  343. <otaLanguage
  344. id="0"
  345. name="Spanish"
  346. package="2"
  347. />
  348. <otaLanguage
  349. id="0"
  350. name="Italian"
  351. package="3"
  352. />
  353. <otaLanguage
  354. id="0"
  355. name="German"
  356. package="4"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="Dutch"
  361. package="5"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Russian"
  366. package="6"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Chinese"
  371. package="7"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Korean"
  376. package="8"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Japanese"
  381. package="9"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Finnish"
  386. package="10"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Polish"
  391. package="11"
  392. />
  393. </otaLanguages>
  394. <otaPackages>
  395. <package
  396. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.3-build0-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="sip"
  446. type="1" >
  447. </productMenu>
  448. <productMenu id="illusion"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="meshIntercom"
  452. type="30" >
  453. </productMenu>
  454. <productMenu id="meshIntercom+"
  455. type="3"
  456. url="2" >
  457. </productMenu>
  458. <productMenu id="waveIntercom"
  459. type="1" >
  460. </productMenu>
  461. <productMenu id="bluetoothIntercom"
  462. type="1"
  463. url="2" >
  464. </productMenu>
  465. <productMenu id="bluetoothIntercomGrouping"
  466. type="0" >
  467. </productMenu>
  468. <productMenu id="fmradio"
  469. type="1"
  470. url="1" >
  471. </productMenu>
  472. <productMenu id="phone"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="music"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="musicSharing"
  479. type="0" >
  480. </productMenu>
  481. <productMenu id="deviceSetting"
  482. type="1"
  483. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05.xml" >
  484. <productMenuURL version="1.2.3"
  485. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  486. />
  487. </productMenu>
  488. <productMenu id="quickGuide"
  489. type="0"
  490. url=""
  491. size="1.12MB" >
  492. </productMenu>
  493. <productMenu id="userGuide"
  494. type="1"
  495. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  496. size="2.0MB" >
  497. </productMenu>
  498. <productMenu id="videoGuide"
  499. type="0"
  500. url=""
  501. size="3.41MB" >
  502. </productMenu>
  503. <productMenu id="connectGuide"
  504. type="1"
  505. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  506. size="1.12MB" >
  507. </productMenu>
  508. <productMenu id="volume"
  509. type="16" >
  510. </productMenu>
  511. <productMenu id="volume+"
  512. type="2"
  513. url="0x6024" >
  514. <productMenuURL version="1.2.3"
  515. url="0x6004"
  516. />
  517. </productMenu>
  518. <productMenu id="soundMode"
  519. type="0" >
  520. </productMenu>
  521. <productMenu id="battery"
  522. type="1" >
  523. </productMenu>
  524. <productID id="6A0D"
  525. />
  526. <productGroupable type="0"
  527. />
  528. </product>
  529. <product id="60S"
  530. name="60S"
  531. series="60"
  532. latestVersion="1.2.3"
  533. latestVersionMesh="1.2"
  534. latestVersionVoicePrompt="1.2"
  535. show = "-1" >
  536. <productMenu id="protocol"
  537. type="2" >
  538. </productMenu>
  539. <productMenu id="ota"
  540. type="2" >
  541. <otaLanguages>
  542. <otaLanguage
  543. id="0"
  544. name="English"
  545. package="0"
  546. />
  547. <otaLanguage
  548. id="0"
  549. name="French"
  550. package="1"
  551. />
  552. <otaLanguage
  553. id="0"
  554. name="Spanish"
  555. package="2"
  556. />
  557. <otaLanguage
  558. id="0"
  559. name="Italian"
  560. package="3"
  561. />
  562. <otaLanguage
  563. id="0"
  564. name="German"
  565. package="4"
  566. />
  567. <otaLanguage
  568. id="0"
  569. name="Dutch"
  570. package="5"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="Russian"
  575. package="6"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Chinese"
  580. package="7"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Korean"
  585. package="8"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Japanese"
  590. package="9"
  591. />
  592. <otaLanguage
  593. id="0"
  594. name="Finnish"
  595. package="10"
  596. />
  597. <otaLanguage
  598. id="0"
  599. name="Polish"
  600. package="11"
  601. />
  602. </otaLanguages>
  603. <otaPackages>
  604. <package
  605. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0.img"
  606. size="5183988"
  607. />
  608. <package
  609. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-fr-FR.img"
  610. size="5183988"
  611. />
  612. <package
  613. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-es-ES.img"
  614. size="5183988"
  615. />
  616. <package
  617. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-it-IT.img"
  618. size="5183988"
  619. />
  620. <package
  621. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-de-DE.img"
  622. size="5183988"
  623. />
  624. <package
  625. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-nl-NL.img"
  626. size="5183988"
  627. />
  628. <package
  629. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-ru-RU.img"
  630. size="5183988"
  631. />
  632. <package
  633. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-cmn-CN.img"
  634. size="5183988"
  635. />
  636. <package
  637. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-ko-KR.img"
  638. size="5183988"
  639. />
  640. <package
  641. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-ja-JP.img"
  642. size="5183988"
  643. />
  644. <package
  645. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-fi-FI.img"
  646. size="5183988"
  647. />
  648. <package
  649. url="https://api.sena.com/support/OTA/60S/60S-v1.2.3-build0-pl-PL.img"
  650. size="5183988"
  651. />
  652. </otaPackages>
  653. </productMenu>
  654. <productMenu id="wa"
  655. type="0" >
  656. </productMenu>
  657. <productMenu id="sip"
  658. type="1" >
  659. </productMenu>
  660. <productMenu id="led"
  661. type="0" >
  662. </productMenu>
  663. <productMenu id="illusion"
  664. type="1" >
  665. </productMenu>
  666. <productMenu id="meshIntercom"
  667. type="30" >
  668. </productMenu>
  669. <productMenu id="meshIntercom+"
  670. type="3"
  671. url="2" >
  672. <productMenuURL version="1.0.2"
  673. url="10"
  674. />
  675. </productMenu>
  676. <productMenu id="waveIntercom"
  677. type="1" >
  678. <productMenuType version="1.0.9"
  679. type="0"
  680. />
  681. </productMenu>
  682. <productMenu id="bluetoothIntercom"
  683. type="1"
  684. url="2" >
  685. </productMenu>
  686. <productMenu id="bluetoothIntercomGrouping"
  687. type="0" >
  688. </productMenu>
  689. <productMenu id="fmradio"
  690. type="1"
  691. url="1" >
  692. </productMenu>
  693. <productMenu id="phone"
  694. type="1" >
  695. </productMenu>
  696. <productMenu id="music"
  697. type="1" >
  698. </productMenu>
  699. <productMenu id="musicSharing"
  700. type="0" >
  701. </productMenu>
  702. <productMenu id="deviceSetting"
  703. type="1"
  704. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05.xml" >
  705. <productMenuURL version="1.2.3"
  706. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  707. />
  708. <productMenuURL version="1.0.2"
  709. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  710. />
  711. <productMenuURL version="1.0"
  712. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  713. />
  714. <productMenuURL version="0.9.11"
  715. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  716. />
  717. </productMenu>
  718. <productMenu id="quickGuide"
  719. type="0"
  720. url=""
  721. size="1.12MB" >
  722. </productMenu>
  723. <productMenu id="userGuide"
  724. type="1"
  725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  726. size="2.0MB" >
  727. </productMenu>
  728. <productMenu id="videoGuide"
  729. type="0"
  730. url=""
  731. size="3.41MB" >
  732. </productMenu>
  733. <productMenu id="connectGuide"
  734. type="1"
  735. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  736. size="1.12MB" >
  737. </productMenu>
  738. <productMenu id="volume"
  739. type="16" >
  740. <productMenuType version="0.9.11"
  741. type="13"
  742. />
  743. </productMenu>
  744. <productMenu id="volume+"
  745. type="2"
  746. url="0x6024" >
  747. <productMenuURL version="1.2.3"
  748. url="0x6004"
  749. />
  750. </productMenu>
  751. <productMenu id="soundMode"
  752. type="0" >
  753. <productMenuType version="0.9.11"
  754. type="0"
  755. />
  756. </productMenu>
  757. <productMenu id="battery"
  758. type="1" >
  759. </productMenu>
  760. <productID id="6A02"
  761. />
  762. <productGroupable type="0"
  763. />
  764. </product>
  765. <product id="60X"
  766. name="60X"
  767. series="60"
  768. latestVersion="0.2"
  769. latestVersionMesh="1.2"
  770. latestVersionVoicePrompt="1.2"
  771. show = "-1" >
  772. <productMenu id="protocol"
  773. type="2" >
  774. </productMenu>
  775. <productMenu id="ota"
  776. type="0" >
  777. <otaLanguages>
  778. <otaLanguage
  779. id="0"
  780. name="English"
  781. package="0"
  782. />
  783. <otaLanguage
  784. id="0"
  785. name="Korean"
  786. package="1"
  787. />
  788. </otaLanguages>
  789. <otaPackages>
  790. <package
  791. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  792. size="5183988"
  793. />
  794. <package
  795. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  796. size="5183988"
  797. />
  798. </otaPackages>
  799. </productMenu>
  800. <productMenu id="wa"
  801. type="0" >
  802. </productMenu>
  803. <productMenu id="sip"
  804. type="1" >
  805. </productMenu>
  806. <productMenu id="led"
  807. type="1" >
  808. </productMenu>
  809. <productMenu id="illusion"
  810. type="1" >
  811. </productMenu>
  812. <productMenu id="meshIntercom"
  813. type="30" >
  814. </productMenu>
  815. <productMenu id="bluetoothIntercom"
  816. type="1" >
  817. </productMenu>
  818. <productMenu id="fmradio"
  819. type="1"
  820. url="1" >
  821. </productMenu>
  822. <productMenu id="phone"
  823. type="1" >
  824. </productMenu>
  825. <productMenu id="music"
  826. type="1" >
  827. </productMenu>
  828. <productMenu id="musicSharing"
  829. type="0" >
  830. </productMenu>
  831. <productMenu id="deviceSetting"
  832. type="1"
  833. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  834. </productMenu>
  835. <productMenu id="quickGuide"
  836. type="0"
  837. url=""
  838. size="1.12MB" >
  839. </productMenu>
  840. <productMenu id="userGuide"
  841. type="0"
  842. url=""
  843. size="2.0MB" >
  844. </productMenu>
  845. <productMenu id="videoGuide"
  846. type="0"
  847. url=""
  848. size="3.41MB" >
  849. </productMenu>
  850. <productMenu id="volume"
  851. type="13" >
  852. </productMenu>
  853. <productMenu id="battery"
  854. type="1" >
  855. </productMenu>
  856. <productID id="6A03"
  857. />
  858. <productGroupable type="0"
  859. />
  860. </product>
  861. <product id="R35"
  862. name="R35"
  863. series="R"
  864. latestVersion="1.0"
  865. latestVersionVoicePrompt="1.2"
  866. show = "-1" >
  867. <productMenu id="protocol"
  868. type="2" >
  869. </productMenu>
  870. <productMenu id="ota"
  871. type="0" >
  872. <otaLanguages>
  873. <otaLanguage
  874. id="0"
  875. name="English"
  876. package="0"
  877. />
  878. <otaLanguage
  879. id="0"
  880. name="French"
  881. package="1"
  882. />
  883. <otaLanguage
  884. id="0"
  885. name="Spanish"
  886. package="2"
  887. />
  888. <otaLanguage
  889. id="0"
  890. name="Italian"
  891. package="3"
  892. />
  893. <otaLanguage
  894. id="0"
  895. name="German"
  896. package="4"
  897. />
  898. <otaLanguage
  899. id="0"
  900. name="Dutch"
  901. package="5"
  902. />
  903. <otaLanguage
  904. id="0"
  905. name="Russian"
  906. package="6"
  907. />
  908. <otaLanguage
  909. id="0"
  910. name="Chinese"
  911. package="7"
  912. />
  913. <otaLanguage
  914. id="0"
  915. name="Korean"
  916. package="8"
  917. />
  918. <otaLanguage
  919. id="0"
  920. name="Japanese"
  921. package="9"
  922. />
  923. <otaLanguage
  924. id="0"
  925. name="Finnish"
  926. package="10"
  927. />
  928. <otaLanguage
  929. id="0"
  930. name="Polish"
  931. package="11"
  932. />
  933. </otaLanguages>
  934. <otaPackages>
  935. <package
  936. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0.img"
  937. size="5183988"
  938. />
  939. <package
  940. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-fr-FR.img"
  941. size="5183988"
  942. />
  943. <package
  944. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-es-ES.img"
  945. size="5183988"
  946. />
  947. <package
  948. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-it-IT.img"
  949. size="5183988"
  950. />
  951. <package
  952. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-de-DE.img"
  953. size="5183988"
  954. />
  955. <package
  956. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-nl-NL.img"
  957. size="5183988"
  958. />
  959. <package
  960. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-ru-RU.img"
  961. size="5183988"
  962. />
  963. <package
  964. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-cmn-CN.img"
  965. size="5183988"
  966. />
  967. <package
  968. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-ko-KR.img"
  969. size="5183988"
  970. />
  971. <package
  972. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-ja-JP.img"
  973. size="5183988"
  974. />
  975. <package
  976. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-fi-FI.img"
  977. size="5183988"
  978. />
  979. <package
  980. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/R35/R35-v0.9.4-build0-pl-PL.img"
  981. size="5183988"
  982. />
  983. </otaPackages>
  984. </productMenu>
  985. <productMenu id="sip"
  986. type="1" >
  987. </productMenu>
  988. <productMenu id="illusion"
  989. type="1" >
  990. </productMenu>
  991. <productMenu id="meshIntercom"
  992. type="30" >
  993. </productMenu>
  994. <productMenu id="meshIntercom+"
  995. type="3"
  996. url="2" >
  997. </productMenu>
  998. <productMenu id="waveIntercom"
  999. type="1" >
  1000. </productMenu>
  1001. <productMenu id="phone"
  1002. type="1" >
  1003. </productMenu>
  1004. <productMenu id="music"
  1005. type="1" >
  1006. </productMenu>
  1007. <productMenu id="musicSharing"
  1008. type="0" >
  1009. </productMenu>
  1010. <productMenu id="deviceSetting"
  1011. type="1"
  1012. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  1013. </productMenu>
  1014. <productMenu id="quickGuide"
  1015. type="0"
  1016. url=""
  1017. size="1.12MB" >
  1018. </productMenu>
  1019. <productMenu id="userGuide"
  1020. type="1"
  1021. url=""
  1022. size="2.0MB" >
  1023. </productMenu>
  1024. <productMenu id="videoGuide"
  1025. type="0"
  1026. url=""
  1027. size="3.41MB" >
  1028. </productMenu>
  1029. <productMenu id="connectGuide"
  1030. type="0"
  1031. url=""
  1032. size="1.12MB" >
  1033. </productMenu>
  1034. <productMenu id="volume"
  1035. type="16" >
  1036. </productMenu>
  1037. <productMenu id="soundMode"
  1038. type="0" >
  1039. </productMenu>
  1040. <productMenu id="battery"
  1041. type="1" >
  1042. </productMenu>
  1043. <productID id="6A06"
  1044. />
  1045. <productGroupable type="0"
  1046. />
  1047. </product>
  1048. <product id="COMP1"
  1049. name="BMW COM P1"
  1050. series="60"
  1051. latestVersion="1.0.6"
  1052. latestVersionMesh="0.19"
  1053. latestVersionVoicePrompt="1.0"
  1054. show = "-1" >
  1055. <productMenu id="protocol"
  1056. type="2" >
  1057. </productMenu>
  1058. <productMenu id="ota"
  1059. type="2" >
  1060. <otaLanguages>
  1061. <otaLanguage
  1062. id="0"
  1063. name="English"
  1064. package="0"
  1065. />
  1066. <otaLanguage
  1067. id="0"
  1068. name="French"
  1069. package="1"
  1070. />
  1071. <otaLanguage
  1072. id="0"
  1073. name="Spanish"
  1074. package="2"
  1075. />
  1076. <otaLanguage
  1077. id="0"
  1078. name="Italian"
  1079. package="3"
  1080. />
  1081. <otaLanguage
  1082. id="0"
  1083. name="German"
  1084. package="4"
  1085. />
  1086. <otaLanguage
  1087. id="0"
  1088. name="Dutch"
  1089. package="5"
  1090. />
  1091. <otaLanguage
  1092. id="0"
  1093. name="Russian"
  1094. package="6"
  1095. />
  1096. <otaLanguage
  1097. id="0"
  1098. name="Chinese"
  1099. package="7"
  1100. />
  1101. <otaLanguage
  1102. id="0"
  1103. name="Korean"
  1104. package="8"
  1105. />
  1106. <otaLanguage
  1107. id="0"
  1108. name="Japanese"
  1109. package="9"
  1110. />
  1111. <otaLanguage
  1112. id="0"
  1113. name="Finnish"
  1114. package="10"
  1115. />
  1116. </otaLanguages>
  1117. <otaPackages>
  1118. <package
  1119. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1120. size="5183988"
  1121. />
  1122. <package
  1123. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1124. size="5183988"
  1125. />
  1126. <package
  1127. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1128. size="5183988"
  1129. />
  1130. <package
  1131. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1132. size="5183988"
  1133. />
  1134. <package
  1135. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1136. size="5183988"
  1137. />
  1138. <package
  1139. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1140. size="5183988"
  1141. />
  1142. <package
  1143. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1144. size="5183988"
  1145. />
  1146. <package
  1147. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1148. size="5183988"
  1149. />
  1150. <package
  1151. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1152. size="5183988"
  1153. />
  1154. <package
  1155. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1156. size="5183988"
  1157. />
  1158. <package
  1159. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1160. size="5183988"
  1161. />
  1162. </otaPackages>
  1163. </productMenu>
  1164. <productMenu id="wa"
  1165. type="0" >
  1166. </productMenu>
  1167. <productMenu id="sip"
  1168. type="1" >
  1169. </productMenu>
  1170. <productMenu id="led"
  1171. type="0" >
  1172. </productMenu>
  1173. <productMenu id="illusion"
  1174. type="0" >
  1175. </productMenu>
  1176. <productMenu id="meshIntercom"
  1177. type="30" >
  1178. </productMenu>
  1179. <productMenu id="bluetoothIntercom"
  1180. type="1" >
  1181. </productMenu>
  1182. <productMenu id="bluetoothIntercomGrouping"
  1183. type="0" >
  1184. </productMenu>
  1185. <productMenu id="fmradio"
  1186. type="0" >
  1187. </productMenu>
  1188. <productMenu id="phone"
  1189. type="1" >
  1190. </productMenu>
  1191. <productMenu id="music"
  1192. type="1" >
  1193. </productMenu>
  1194. <productMenu id="musicSharing"
  1195. type="0" >
  1196. </productMenu>
  1197. <productMenu id="deviceSetting"
  1198. type="1"
  1199. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  1200. </productMenu>
  1201. <productMenu id="quickGuide"
  1202. type="0"
  1203. url=""
  1204. size="1.12MB" >
  1205. </productMenu>
  1206. <productMenu id="userGuide"
  1207. type="0"
  1208. url=""
  1209. size="2.0MB" >
  1210. </productMenu>
  1211. <productMenu id="videoGuide"
  1212. type="0"
  1213. url=""
  1214. size="3.41MB" >
  1215. </productMenu>
  1216. <productMenu id="volume"
  1217. type="16" >
  1218. </productMenu>
  1219. <productMenu id="battery"
  1220. type="1" >
  1221. </productMenu>
  1222. <productID id="6A80"
  1223. />
  1224. <productGroupable type="0"
  1225. />
  1226. </product>
  1227. <product id="50S"
  1228. name="50S"
  1229. series="50"
  1230. latestVersion="2.7.1"
  1231. show = "1" >
  1232. <productMenu id="protocol"
  1233. type="2" >
  1234. </productMenu>
  1235. <productMenu id="alexa"
  1236. type="0" >
  1237. </productMenu>
  1238. <productMenu id="ota"
  1239. type="0"
  1240. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1241. size="1150234" >
  1242. </productMenu>
  1243. <productMenu id="wa"
  1244. type="1" >
  1245. </productMenu>
  1246. <productMenu id="sip"
  1247. type="1" >
  1248. </productMenu>
  1249. <productMenu id="meshIntercom"
  1250. type="30" >
  1251. <productMenuType version="2.1.1"
  1252. type="20"
  1253. />
  1254. </productMenu>
  1255. <productMenu id="meshIntercom+"
  1256. type="3"
  1257. url="2" >
  1258. <productMenuType version="2.5.9"
  1259. type="2"
  1260. />
  1261. <productMenuURL version="2.1.1"
  1262. url="0"
  1263. />
  1264. </productMenu>
  1265. <productMenu id="waveIntercom"
  1266. type="1" >
  1267. <productMenuType version="2.6"
  1268. type="0"
  1269. />
  1270. </productMenu>
  1271. <productMenu id="bluetoothIntercom"
  1272. type="1" >
  1273. </productMenu>
  1274. <productMenu id="phone"
  1275. type="1" >
  1276. </productMenu>
  1277. <productMenu id="music"
  1278. type="1" >
  1279. </productMenu>
  1280. <productMenu id="fmradio"
  1281. type="1" >
  1282. </productMenu>
  1283. <productMenu id="deviceSetting"
  1284. type="1"
  1285. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1286. <productMenuURL version="2.5.9"
  1287. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1288. />
  1289. <productMenuURL version="2.1.1"
  1290. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1291. />
  1292. <productMenuURL version="2.0.3"
  1293. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1294. />
  1295. </productMenu>
  1296. <productMenu id="quickGuide"
  1297. type="0"
  1298. url=""
  1299. size="934KB" >
  1300. </productMenu>
  1301. <productMenu id="userGuide"
  1302. type="1"
  1303. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1304. size="1.14MB" >
  1305. </productMenu>
  1306. <productMenu id="videoGuide"
  1307. type="1"
  1308. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1309. size="3.41MB" >
  1310. </productMenu>
  1311. <productMenu id="connectGuide"
  1312. type="1"
  1313. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1314. size="1.12MB" >
  1315. </productMenu>
  1316. <productMenu id="volume"
  1317. type="11" >
  1318. </productMenu>
  1319. <productMenu id="battery"
  1320. type="1" >
  1321. </productMenu>
  1322. <productID id="3210"
  1323. />
  1324. <productGroupable type="0"
  1325. />
  1326. </product>
  1327. <product id="50S"
  1328. name="50S"
  1329. series="50"
  1330. latestVersion="1.5"
  1331. show = "-1" >
  1332. <productMenu id="protocol"
  1333. type="2" >
  1334. </productMenu>
  1335. <productMenu id="alexa"
  1336. type="0" >
  1337. </productMenu>
  1338. <productMenu id="wa"
  1339. type="1" >
  1340. </productMenu>
  1341. <productMenu id="sip"
  1342. type="1" >
  1343. </productMenu>
  1344. <productMenu id="meshIntercom"
  1345. type="30" >
  1346. <productMenuType version="1.2.2"
  1347. type="20"
  1348. />
  1349. </productMenu>
  1350. <productMenu id="meshIntercom+"
  1351. type="3"
  1352. url="2" >
  1353. <productMenuType version="1.4.9"
  1354. type="2"
  1355. />
  1356. <productMenuURL version="1.2.2"
  1357. url="0"
  1358. />
  1359. </productMenu>
  1360. <productMenu id="waveIntercom"
  1361. type="1" >
  1362. <productMenuType version="1.3.9"
  1363. type="0"
  1364. />
  1365. </productMenu>
  1366. <productMenu id="bluetoothIntercom"
  1367. type="1" >
  1368. </productMenu>
  1369. <productMenu id="phone"
  1370. type="1" >
  1371. </productMenu>
  1372. <productMenu id="music"
  1373. type="1" >
  1374. </productMenu>
  1375. <productMenu id="fmradio"
  1376. type="1" >
  1377. </productMenu>
  1378. <productMenu id="deviceSetting"
  1379. type="1"
  1380. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1381. <productMenuURL version="1.4.9"
  1382. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1383. />
  1384. <productMenuURL version="1.3.9"
  1385. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1386. />
  1387. <productMenuURL version="1.2.2"
  1388. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1389. />
  1390. <productMenuURL version="1.1.1"
  1391. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1392. />
  1393. </productMenu>
  1394. <productMenu id="quickGuide"
  1395. type="0"
  1396. url=""
  1397. size="934KB" >
  1398. </productMenu>
  1399. <productMenu id="userGuide"
  1400. type="1"
  1401. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1402. size="1.14MB" >
  1403. </productMenu>
  1404. <productMenu id="videoGuide"
  1405. type="1"
  1406. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1407. size="3.41MB" >
  1408. </productMenu>
  1409. <productMenu id="volume"
  1410. type="11" >
  1411. </productMenu>
  1412. <productMenu id="battery"
  1413. type="1" >
  1414. </productMenu>
  1415. <productID id="3132"
  1416. />
  1417. <productGroupable type="0"
  1418. />
  1419. </product>
  1420. <product id="50R"
  1421. name="50R"
  1422. series="50"
  1423. latestVersion="2.7"
  1424. show = "1" >
  1425. <productMenu id="protocol"
  1426. type="2" >
  1427. </productMenu>
  1428. <productMenu id="alexa"
  1429. type="0" >
  1430. </productMenu>
  1431. <productMenu id="ota"
  1432. type="0"
  1433. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1434. size="1150234" >
  1435. </productMenu>
  1436. <productMenu id="wa"
  1437. type="1" >
  1438. </productMenu>
  1439. <productMenu id="sip"
  1440. type="1" >
  1441. </productMenu>
  1442. <productMenu id="meshIntercom"
  1443. type="30" >
  1444. <productMenuType version="2.1.1"
  1445. type="20"
  1446. />
  1447. </productMenu>
  1448. <productMenu id="meshIntercom+"
  1449. type="3"
  1450. url="2" >
  1451. <productMenuType version="2.5.9"
  1452. type="2"
  1453. />
  1454. <productMenuURL version="2.1.1"
  1455. url="0"
  1456. />
  1457. </productMenu>
  1458. <productMenu id="waveIntercom"
  1459. type="1" >
  1460. <productMenuType version="2.6"
  1461. type="0"
  1462. />
  1463. </productMenu>
  1464. <productMenu id="bluetoothIntercom"
  1465. type="1" >
  1466. </productMenu>
  1467. <productMenu id="phone"
  1468. type="1" >
  1469. </productMenu>
  1470. <productMenu id="music"
  1471. type="1" >
  1472. </productMenu>
  1473. <productMenu id="fmradio"
  1474. type="1" >
  1475. </productMenu>
  1476. <productMenu id="deviceSetting"
  1477. type="1"
  1478. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1479. <productMenuURL version="2.5.9"
  1480. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1481. />
  1482. <productMenuURL version="2.1.1"
  1483. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1484. />
  1485. <productMenuURL version="2.0"
  1486. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1487. />
  1488. </productMenu>
  1489. <productMenu id="quickGuide"
  1490. type="0"
  1491. url=""
  1492. size="344KB" >
  1493. </productMenu>
  1494. <productMenu id="userGuide"
  1495. type="1"
  1496. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1497. size="3.41MB" >
  1498. </productMenu>
  1499. <productMenu id="videoGuide"
  1500. type="1"
  1501. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1502. size="3.41MB" >
  1503. </productMenu>
  1504. <productMenu id="connectGuide"
  1505. type="1"
  1506. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1507. size="1.12MB" >
  1508. </productMenu>
  1509. <productMenu id="volume"
  1510. type="11" >
  1511. </productMenu>
  1512. <productMenu id="battery"
  1513. type="1" >
  1514. </productMenu>
  1515. <productID id="3218"
  1516. />
  1517. <productGroupable type="0"
  1518. />
  1519. </product>
  1520. <product id="50R"
  1521. name="50R"
  1522. series="50"
  1523. latestVersion="1.5"
  1524. show = "-1" >
  1525. <productMenu id="protocol"
  1526. type="2" >
  1527. </productMenu>
  1528. <productMenu id="alexa"
  1529. type="0" >
  1530. </productMenu>
  1531. <productMenu id="wa"
  1532. type="1" >
  1533. </productMenu>
  1534. <productMenu id="sip"
  1535. type="1" >
  1536. </productMenu>
  1537. <productMenu id="meshIntercom"
  1538. type="30" >
  1539. <productMenuType version="1.2.2"
  1540. type="20"
  1541. />
  1542. </productMenu>
  1543. <productMenu id="meshIntercom+"
  1544. type="3"
  1545. url="2" >
  1546. <productMenuType version="1.4.9"
  1547. type="2"
  1548. />
  1549. <productMenuURL version="1.2.2"
  1550. url="0"
  1551. />
  1552. </productMenu>
  1553. <productMenu id="waveIntercom"
  1554. type="1" >
  1555. <productMenuType version="1.3.9"
  1556. type="0"
  1557. />
  1558. </productMenu>
  1559. <productMenu id="bluetoothIntercom"
  1560. type="1" >
  1561. </productMenu>
  1562. <productMenu id="phone"
  1563. type="1" >
  1564. </productMenu>
  1565. <productMenu id="music"
  1566. type="1" >
  1567. </productMenu>
  1568. <productMenu id="fmradio"
  1569. type="1" >
  1570. </productMenu>
  1571. <productMenu id="deviceSetting"
  1572. type="1"
  1573. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1574. <productMenuURL version="1.4.9"
  1575. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1576. />
  1577. <productMenuURL version="1.3.9"
  1578. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1579. />
  1580. <productMenuURL version="1.2.2"
  1581. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1582. />
  1583. <productMenuURL version="1.1.1"
  1584. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1585. />
  1586. </productMenu>
  1587. <productMenu id="quickGuide"
  1588. type="0"
  1589. url=""
  1590. size="344KB" >
  1591. </productMenu>
  1592. <productMenu id="userGuide"
  1593. type="1"
  1594. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1595. size="3.41MB" >
  1596. </productMenu>
  1597. <productMenu id="videoGuide"
  1598. type="1"
  1599. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1600. size="3.41MB" >
  1601. </productMenu>
  1602. <productMenu id="volume"
  1603. type="11" >
  1604. </productMenu>
  1605. <productMenu id="battery"
  1606. type="1" >
  1607. </productMenu>
  1608. <productID id="3134"
  1609. />
  1610. <productGroupable type="0"
  1611. />
  1612. </product>
  1613. <product id="50C"
  1614. name="50C"
  1615. series="50"
  1616. latestVersion="1.4.2"
  1617. show = "1" >
  1618. <productMenu id="protocol"
  1619. type="2" >
  1620. </productMenu>
  1621. <productMenu id="ota"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="wa"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="sip"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="meshIntercom"
  1631. type="30" >
  1632. <productMenuType version="1.1.1"
  1633. type="20"
  1634. />
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. <productMenuType version="1.3.9"
  1640. type="2"
  1641. />
  1642. <productMenuURL version="1.1.1"
  1643. url="0"
  1644. />
  1645. </productMenu>
  1646. <productMenu id="waveIntercom"
  1647. type="1" >
  1648. <productMenuType version="1.2.9"
  1649. type="0"
  1650. />
  1651. </productMenu>
  1652. <productMenu id="bluetoothIntercom"
  1653. type="1" >
  1654. </productMenu>
  1655. <productMenu id="phone"
  1656. type="1" >
  1657. </productMenu>
  1658. <productMenu id="music"
  1659. type="1" >
  1660. </productMenu>
  1661. <productMenu id="fmradio"
  1662. type="1" >
  1663. </productMenu>
  1664. <productMenu id="deviceSetting"
  1665. type="1"
  1666. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1667. <productMenuURL version="1.3.9"
  1668. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1669. />
  1670. <productMenuURL version="1.1.1"
  1671. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1672. />
  1673. <productMenuURL version="1.0.1"
  1674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1675. />
  1676. </productMenu>
  1677. <productMenu id="quickGuide"
  1678. type="0"
  1679. url=""
  1680. size="344KB" >
  1681. </productMenu>
  1682. <productMenu id="userGuide"
  1683. type="1"
  1684. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1685. size="3.41MB" >
  1686. </productMenu>
  1687. <productMenu id="connectGuide"
  1688. type="1"
  1689. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1690. size="1.12MB" >
  1691. </productMenu>
  1692. <productMenu id="volume"
  1693. type="11" >
  1694. </productMenu>
  1695. <productMenu id="battery"
  1696. type="1" >
  1697. </productMenu>
  1698. <productID id="3232"
  1699. />
  1700. <productGroupable type="0"
  1701. />
  1702. </product>
  1703. <product id="PHANTOMXB"
  1704. name="PHANTOM XB"
  1705. series="Helmet"
  1706. latestVersion="1.2.2"
  1707. latestVersionVoicePrompt="1.2"
  1708. show = "-1" >
  1709. <productMenu id="protocol"
  1710. type="2" >
  1711. </productMenu>
  1712. <productMenu id="ota"
  1713. type="2" >
  1714. <otaLanguages>
  1715. <otaLanguage
  1716. id="0"
  1717. name="English"
  1718. package="0"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="French"
  1723. package="1"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Spanish"
  1728. package="2"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Italian"
  1733. package="3"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="German"
  1738. package="4"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Dutch"
  1743. package="5"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Russian"
  1748. package="6"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Chinese"
  1753. package="7"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Korean"
  1758. package="8"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Japanese"
  1763. package="9"
  1764. />
  1765. <otaLanguage
  1766. id="0"
  1767. name="Finnish"
  1768. package="10"
  1769. />
  1770. <otaLanguage
  1771. id="0"
  1772. name="Polish"
  1773. package="11"
  1774. />
  1775. </otaLanguages>
  1776. <otaPackages>
  1777. <package
  1778. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1.img"
  1779. size="5183988"
  1780. />
  1781. <package
  1782. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fr-FR.img"
  1783. size="5183988"
  1784. />
  1785. <package
  1786. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-es-ES.img"
  1787. size="5183988"
  1788. />
  1789. <package
  1790. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-it-IT.img"
  1791. size="5183988"
  1792. />
  1793. <package
  1794. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-de-DE.img"
  1795. size="5183988"
  1796. />
  1797. <package
  1798. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-nl-NL.img"
  1799. size="5183988"
  1800. />
  1801. <package
  1802. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ru-RU.img"
  1803. size="5183988"
  1804. />
  1805. <package
  1806. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-cmn-CN.img"
  1807. size="5183988"
  1808. />
  1809. <package
  1810. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ko-KR.img"
  1811. size="5183988"
  1812. />
  1813. <package
  1814. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-ja-JP.img"
  1815. size="5183988"
  1816. />
  1817. <package
  1818. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-fi-FI.img"
  1819. size="5183988"
  1820. />
  1821. <package
  1822. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.2-build1-pl-PL.img"
  1823. size="5183988"
  1824. />
  1825. </otaPackages>
  1826. </productMenu>
  1827. <productMenu id="wa"
  1828. type="0" >
  1829. </productMenu>
  1830. <productMenu id="led"
  1831. type="5" >
  1832. </productMenu>
  1833. <productMenu id="led+"
  1834. type="2"
  1835. url="1" >
  1836. </productMenu>
  1837. <productMenu id="meshIntercom"
  1838. type="30" >
  1839. </productMenu>
  1840. <productMenu id="meshIntercom+"
  1841. type="3"
  1842. url="2" >
  1843. </productMenu>
  1844. <productMenu id="waveIntercom"
  1845. type="1" >
  1846. </productMenu>
  1847. <productMenu id="fmradio"
  1848. type="0" >
  1849. </productMenu>
  1850. <productMenu id="phone"
  1851. type="1" >
  1852. </productMenu>
  1853. <productMenu id="music"
  1854. type="1" >
  1855. </productMenu>
  1856. <productMenu id="musicSharing"
  1857. type="0" >
  1858. </productMenu>
  1859. <productMenu id="deviceSetting"
  1860. type="1"
  1861. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  1862. </productMenu>
  1863. <productMenu id="quickGuide"
  1864. type="0"
  1865. url=""
  1866. size="1.12MB" >
  1867. </productMenu>
  1868. <productMenu id="userGuide"
  1869. type="1"
  1870. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  1871. size="2.0MB" >
  1872. </productMenu>
  1873. <productMenu id="videoGuide"
  1874. type="0"
  1875. url=""
  1876. size="3.41MB" >
  1877. </productMenu>
  1878. <productMenu id="volume"
  1879. type="16" >
  1880. </productMenu>
  1881. <productMenu id="battery"
  1882. type="1" >
  1883. </productMenu>
  1884. <productID id="6A0F"
  1885. />
  1886. <productGroupable type="0"
  1887. />
  1888. </product>
  1889. <product id="PHANTOMXB"
  1890. name="PHANTOM XB"
  1891. series="Helmet"
  1892. latestVersion="1.2.2"
  1893. latestVersionVoicePrompt="1.2"
  1894. show = "-1" >
  1895. <productMenu id="protocol"
  1896. type="2" >
  1897. </productMenu>
  1898. <productMenu id="ota"
  1899. type="2" >
  1900. <otaLanguages>
  1901. <otaLanguage
  1902. id="0"
  1903. name="English"
  1904. package="0"
  1905. />
  1906. <otaLanguage
  1907. id="0"
  1908. name="French"
  1909. package="1"
  1910. />
  1911. <otaLanguage
  1912. id="0"
  1913. name="Spanish"
  1914. package="2"
  1915. />
  1916. <otaLanguage
  1917. id="0"
  1918. name="Italian"
  1919. package="3"
  1920. />
  1921. <otaLanguage
  1922. id="0"
  1923. name="German"
  1924. package="4"
  1925. />
  1926. <otaLanguage
  1927. id="0"
  1928. name="Dutch"
  1929. package="5"
  1930. />
  1931. <otaLanguage
  1932. id="0"
  1933. name="Russian"
  1934. package="6"
  1935. />
  1936. <otaLanguage
  1937. id="0"
  1938. name="Chinese"
  1939. package="7"
  1940. />
  1941. <otaLanguage
  1942. id="0"
  1943. name="Korean"
  1944. package="8"
  1945. />
  1946. <otaLanguage
  1947. id="0"
  1948. name="Japanese"
  1949. package="9"
  1950. />
  1951. <otaLanguage
  1952. id="0"
  1953. name="Finnish"
  1954. package="10"
  1955. />
  1956. <otaLanguage
  1957. id="0"
  1958. name="Polish"
  1959. package="11"
  1960. />
  1961. </otaLanguages>
  1962. <otaPackages>
  1963. <package
  1964. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1.img"
  1965. size="5183988"
  1966. />
  1967. <package
  1968. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fr-FR.img"
  1969. size="5183988"
  1970. />
  1971. <package
  1972. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-es-ES.img"
  1973. size="5183988"
  1974. />
  1975. <package
  1976. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-it-IT.img"
  1977. size="5183988"
  1978. />
  1979. <package
  1980. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-de-DE.img"
  1981. size="5183988"
  1982. />
  1983. <package
  1984. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-nl-NL.img"
  1985. size="5183988"
  1986. />
  1987. <package
  1988. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ru-RU.img"
  1989. size="5183988"
  1990. />
  1991. <package
  1992. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-cmn-CN.img"
  1993. size="5183988"
  1994. />
  1995. <package
  1996. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ko-KR.img"
  1997. size="5183988"
  1998. />
  1999. <package
  2000. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-ja-JP.img"
  2001. size="5183988"
  2002. />
  2003. <package
  2004. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-fi-FI.img"
  2005. size="5183988"
  2006. />
  2007. <package
  2008. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.2-build1-pl-PL.img"
  2009. size="5183988"
  2010. />
  2011. </otaPackages>
  2012. </productMenu>
  2013. <productMenu id="wa"
  2014. type="0" >
  2015. </productMenu>
  2016. <productMenu id="led"
  2017. type="5" >
  2018. </productMenu>
  2019. <productMenu id="led+"
  2020. type="2"
  2021. url="1" >
  2022. </productMenu>
  2023. <productMenu id="meshIntercom"
  2024. type="30" >
  2025. </productMenu>
  2026. <productMenu id="meshIntercom+"
  2027. type="3"
  2028. url="2" >
  2029. </productMenu>
  2030. <productMenu id="waveIntercom"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="fmradio"
  2034. type="0" >
  2035. </productMenu>
  2036. <productMenu id="phone"
  2037. type="1" >
  2038. </productMenu>
  2039. <productMenu id="music"
  2040. type="1" >
  2041. </productMenu>
  2042. <productMenu id="musicSharing"
  2043. type="0" >
  2044. </productMenu>
  2045. <productMenu id="deviceSetting"
  2046. type="1"
  2047. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2048. <productMenuURL version="1.2.1"
  2049. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2050. />
  2051. </productMenu>
  2052. <productMenu id="quickGuide"
  2053. type="0"
  2054. url=""
  2055. size="1.12MB" >
  2056. </productMenu>
  2057. <productMenu id="userGuide"
  2058. type="1"
  2059. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2060. size="2.0MB" >
  2061. </productMenu>
  2062. <productMenu id="videoGuide"
  2063. type="0"
  2064. url=""
  2065. size="3.41MB" >
  2066. </productMenu>
  2067. <productMenu id="volume"
  2068. type="16" >
  2069. </productMenu>
  2070. <productMenu id="battery"
  2071. type="1" >
  2072. </productMenu>
  2073. <productID id="6A0C"
  2074. />
  2075. <productGroupable type="0"
  2076. />
  2077. </product>
  2078. <product id="PHANTOMKV"
  2079. name="PHANTOM KV"
  2080. series="Helmet"
  2081. latestVersion="1.2.2"
  2082. latestVersionVoicePrompt="1.0"
  2083. show = "-1" >
  2084. <productMenu id="protocol"
  2085. type="2" >
  2086. </productMenu>
  2087. <productMenu id="ota"
  2088. type="0" >
  2089. <otaLanguages>
  2090. <otaLanguage
  2091. id="0"
  2092. name="English"
  2093. package="0"
  2094. />
  2095. <otaLanguage
  2096. id="0"
  2097. name="French"
  2098. package="1"
  2099. />
  2100. <otaLanguage
  2101. id="0"
  2102. name="Spanish"
  2103. package="2"
  2104. />
  2105. <otaLanguage
  2106. id="0"
  2107. name="Italian"
  2108. package="3"
  2109. />
  2110. <otaLanguage
  2111. id="0"
  2112. name="German"
  2113. package="4"
  2114. />
  2115. <otaLanguage
  2116. id="0"
  2117. name="Dutch"
  2118. package="5"
  2119. />
  2120. <otaLanguage
  2121. id="0"
  2122. name="Russian"
  2123. package="6"
  2124. />
  2125. <otaLanguage
  2126. id="0"
  2127. name="Chinese"
  2128. package="7"
  2129. />
  2130. <otaLanguage
  2131. id="0"
  2132. name="Korean"
  2133. package="8"
  2134. />
  2135. <otaLanguage
  2136. id="0"
  2137. name="Japanese"
  2138. package="9"
  2139. />
  2140. <otaLanguage
  2141. id="0"
  2142. name="Finnish"
  2143. package="10"
  2144. />
  2145. <otaLanguage
  2146. id="0"
  2147. name="Polish"
  2148. package="11"
  2149. />
  2150. </otaLanguages>
  2151. <otaPackages>
  2152. <package
  2153. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2154. size="5183988"
  2155. />
  2156. <package
  2157. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2158. size="5183988"
  2159. />
  2160. <package
  2161. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2162. size="5183988"
  2163. />
  2164. <package
  2165. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2166. size="5183988"
  2167. />
  2168. <package
  2169. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2170. size="5183988"
  2171. />
  2172. <package
  2173. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2174. size="5183988"
  2175. />
  2176. <package
  2177. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2178. size="5183988"
  2179. />
  2180. <package
  2181. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2182. size="5183988"
  2183. />
  2184. <package
  2185. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2186. size="5183988"
  2187. />
  2188. <package
  2189. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2190. size="5183988"
  2191. />
  2192. <package
  2193. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2194. size="5183988"
  2195. />
  2196. <package
  2197. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2198. size="5183988"
  2199. />
  2200. </otaPackages>
  2201. </productMenu>
  2202. <productMenu id="wa"
  2203. type="0" >
  2204. </productMenu>
  2205. <productMenu id="led"
  2206. type="5" >
  2207. </productMenu>
  2208. <productMenu id="led+"
  2209. type="2"
  2210. url="1" >
  2211. </productMenu>
  2212. <productMenu id="meshIntercom"
  2213. type="30" >
  2214. </productMenu>
  2215. <productMenu id="meshIntercom+"
  2216. type="3"
  2217. url="2" >
  2218. </productMenu>
  2219. <productMenu id="waveIntercom"
  2220. type="1" >
  2221. </productMenu>
  2222. <productMenu id="fmradio"
  2223. type="0" >
  2224. </productMenu>
  2225. <productMenu id="phone"
  2226. type="1" >
  2227. </productMenu>
  2228. <productMenu id="music"
  2229. type="1" >
  2230. </productMenu>
  2231. <productMenu id="musicSharing"
  2232. type="0" >
  2233. </productMenu>
  2234. <productMenu id="deviceSetting"
  2235. type="1"
  2236. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2237. </productMenu>
  2238. <productMenu id="quickGuide"
  2239. type="0"
  2240. url=""
  2241. size="1.12MB" >
  2242. </productMenu>
  2243. <productMenu id="userGuide"
  2244. type="1"
  2245. url=""
  2246. size="2.0MB" >
  2247. </productMenu>
  2248. <productMenu id="videoGuide"
  2249. type="0"
  2250. url=""
  2251. size="3.41MB" >
  2252. </productMenu>
  2253. <productMenu id="volume"
  2254. type="16" >
  2255. </productMenu>
  2256. <productMenu id="battery"
  2257. type="1" >
  2258. </productMenu>
  2259. <productID id="6A14"
  2260. />
  2261. <productGroupable type="0"
  2262. />
  2263. </product>
  2264. <product id="PHANTOMKV"
  2265. name="PHANTOM KV"
  2266. series="Helmet"
  2267. latestVersion="1.2.2"
  2268. latestVersionVoicePrompt="1.0"
  2269. show = "-1" >
  2270. <productMenu id="protocol"
  2271. type="2" >
  2272. </productMenu>
  2273. <productMenu id="ota"
  2274. type="0" >
  2275. <otaLanguages>
  2276. <otaLanguage
  2277. id="0"
  2278. name="English"
  2279. package="0"
  2280. />
  2281. <otaLanguage
  2282. id="0"
  2283. name="French"
  2284. package="1"
  2285. />
  2286. <otaLanguage
  2287. id="0"
  2288. name="Spanish"
  2289. package="2"
  2290. />
  2291. <otaLanguage
  2292. id="0"
  2293. name="Italian"
  2294. package="3"
  2295. />
  2296. <otaLanguage
  2297. id="0"
  2298. name="German"
  2299. package="4"
  2300. />
  2301. <otaLanguage
  2302. id="0"
  2303. name="Dutch"
  2304. package="5"
  2305. />
  2306. <otaLanguage
  2307. id="0"
  2308. name="Russian"
  2309. package="6"
  2310. />
  2311. <otaLanguage
  2312. id="0"
  2313. name="Chinese"
  2314. package="7"
  2315. />
  2316. <otaLanguage
  2317. id="0"
  2318. name="Korean"
  2319. package="8"
  2320. />
  2321. <otaLanguage
  2322. id="0"
  2323. name="Japanese"
  2324. package="9"
  2325. />
  2326. <otaLanguage
  2327. id="0"
  2328. name="Finnish"
  2329. package="10"
  2330. />
  2331. <otaLanguage
  2332. id="0"
  2333. name="Polish"
  2334. package="11"
  2335. />
  2336. </otaLanguages>
  2337. <otaPackages>
  2338. <package
  2339. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2340. size="5183988"
  2341. />
  2342. <package
  2343. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2344. size="5183988"
  2345. />
  2346. <package
  2347. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2348. size="5183988"
  2349. />
  2350. <package
  2351. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2352. size="5183988"
  2353. />
  2354. <package
  2355. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2356. size="5183988"
  2357. />
  2358. <package
  2359. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2360. size="5183988"
  2361. />
  2362. <package
  2363. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2364. size="5183988"
  2365. />
  2366. <package
  2367. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2368. size="5183988"
  2369. />
  2370. <package
  2371. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2372. size="5183988"
  2373. />
  2374. <package
  2375. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2376. size="5183988"
  2377. />
  2378. <package
  2379. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2380. size="5183988"
  2381. />
  2382. <package
  2383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2384. size="5183988"
  2385. />
  2386. </otaPackages>
  2387. </productMenu>
  2388. <productMenu id="wa"
  2389. type="0" >
  2390. </productMenu>
  2391. <productMenu id="led"
  2392. type="5" >
  2393. </productMenu>
  2394. <productMenu id="led+"
  2395. type="2"
  2396. url="1" >
  2397. </productMenu>
  2398. <productMenu id="meshIntercom"
  2399. type="30" >
  2400. </productMenu>
  2401. <productMenu id="meshIntercom+"
  2402. type="3"
  2403. url="2" >
  2404. </productMenu>
  2405. <productMenu id="waveIntercom"
  2406. type="1" >
  2407. </productMenu>
  2408. <productMenu id="fmradio"
  2409. type="0" >
  2410. </productMenu>
  2411. <productMenu id="phone"
  2412. type="1" >
  2413. </productMenu>
  2414. <productMenu id="music"
  2415. type="1" >
  2416. </productMenu>
  2417. <productMenu id="musicSharing"
  2418. type="0" >
  2419. </productMenu>
  2420. <productMenu id="deviceSetting"
  2421. type="1"
  2422. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2423. </productMenu>
  2424. <productMenu id="quickGuide"
  2425. type="0"
  2426. url=""
  2427. size="1.12MB" >
  2428. </productMenu>
  2429. <productMenu id="userGuide"
  2430. type="1"
  2431. url=""
  2432. size="2.0MB" >
  2433. </productMenu>
  2434. <productMenu id="videoGuide"
  2435. type="0"
  2436. url=""
  2437. size="3.41MB" >
  2438. </productMenu>
  2439. <productMenu id="volume"
  2440. type="16" >
  2441. </productMenu>
  2442. <productMenu id="battery"
  2443. type="1" >
  2444. </productMenu>
  2445. <productID id="6A13"
  2446. />
  2447. <productGroupable type="0"
  2448. />
  2449. </product>
  2450. <product id="PHANTOMCamera"
  2451. name="PHANTOM Camera"
  2452. series="Helmet"
  2453. latestVersion="1.0"
  2454. latestVersionVoicePrompt="0.4"
  2455. show = "-1" >
  2456. <productMenu id="protocol"
  2457. type="2" >
  2458. </productMenu>
  2459. <productMenu id="ota"
  2460. type="0" >
  2461. <otaLanguages>
  2462. <otaLanguage
  2463. id="0"
  2464. name="English"
  2465. package="0"
  2466. />
  2467. <otaLanguage
  2468. id="0"
  2469. name="French"
  2470. package="1"
  2471. />
  2472. <otaLanguage
  2473. id="0"
  2474. name="Spanish"
  2475. package="2"
  2476. />
  2477. <otaLanguage
  2478. id="0"
  2479. name="Italian"
  2480. package="3"
  2481. />
  2482. <otaLanguage
  2483. id="0"
  2484. name="German"
  2485. package="4"
  2486. />
  2487. <otaLanguage
  2488. id="0"
  2489. name="Dutch"
  2490. package="5"
  2491. />
  2492. <otaLanguage
  2493. id="0"
  2494. name="Russian"
  2495. package="6"
  2496. />
  2497. <otaLanguage
  2498. id="0"
  2499. name="Chinese"
  2500. package="7"
  2501. />
  2502. <otaLanguage
  2503. id="0"
  2504. name="Korean"
  2505. package="8"
  2506. />
  2507. <otaLanguage
  2508. id="0"
  2509. name="Japanese"
  2510. package="9"
  2511. />
  2512. <otaLanguage
  2513. id="0"
  2514. name="Finnish"
  2515. package="10"
  2516. />
  2517. <otaLanguage
  2518. id="0"
  2519. name="Polish"
  2520. package="11"
  2521. />
  2522. </otaLanguages>
  2523. <otaPackages>
  2524. <package
  2525. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2526. size="5183988"
  2527. />
  2528. <package
  2529. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2530. size="5183988"
  2531. />
  2532. <package
  2533. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2534. size="5183988"
  2535. />
  2536. <package
  2537. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2538. size="5183988"
  2539. />
  2540. <package
  2541. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2542. size="5183988"
  2543. />
  2544. <package
  2545. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2546. size="5183988"
  2547. />
  2548. <package
  2549. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2550. size="5183988"
  2551. />
  2552. <package
  2553. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2554. size="5183988"
  2555. />
  2556. <package
  2557. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2558. size="5183988"
  2559. />
  2560. <package
  2561. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2562. size="5183988"
  2563. />
  2564. <package
  2565. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2566. size="5183988"
  2567. />
  2568. <package
  2569. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2570. size="5183988"
  2571. />
  2572. </otaPackages>
  2573. </productMenu>
  2574. <productMenu id="wa"
  2575. type="0" >
  2576. </productMenu>
  2577. <productMenu id="led"
  2578. type="5" >
  2579. </productMenu>
  2580. <productMenu id="led+"
  2581. type="2"
  2582. url="1" >
  2583. </productMenu>
  2584. <productMenu id="meshIntercom"
  2585. type="30" >
  2586. </productMenu>
  2587. <productMenu id="meshIntercom+"
  2588. type="3"
  2589. url="2" >
  2590. </productMenu>
  2591. <productMenu id="waveIntercom"
  2592. type="1" >
  2593. </productMenu>
  2594. <productMenu id="fmradio"
  2595. type="0" >
  2596. </productMenu>
  2597. <productMenu id="phone"
  2598. type="1" >
  2599. </productMenu>
  2600. <productMenu id="music"
  2601. type="1" >
  2602. </productMenu>
  2603. <productMenu id="musicSharing"
  2604. type="0" >
  2605. </productMenu>
  2606. <productMenu id="deviceSetting"
  2607. type="1"
  2608. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2609. </productMenu>
  2610. <productMenu id="quickGuide"
  2611. type="0"
  2612. url=""
  2613. size="1.12MB" >
  2614. </productMenu>
  2615. <productMenu id="userGuide"
  2616. type="1"
  2617. url=""
  2618. size="2.0MB" >
  2619. </productMenu>
  2620. <productMenu id="videoGuide"
  2621. type="0"
  2622. url=""
  2623. size="3.41MB" >
  2624. </productMenu>
  2625. <productMenu id="volume"
  2626. type="16" >
  2627. </productMenu>
  2628. <productMenu id="battery"
  2629. type="1" >
  2630. </productMenu>
  2631. <productID id="6A10"
  2632. />
  2633. <productGroupable type="0"
  2634. />
  2635. </product>
  2636. <product id="PHANTOMCamera"
  2637. name="PHANTOM Camera"
  2638. series="Helmet"
  2639. latestVersion="0.9"
  2640. latestVersionVoicePrompt="0.3"
  2641. show = "-1" >
  2642. <productMenu id="protocol"
  2643. type="2" >
  2644. </productMenu>
  2645. <productMenu id="ota"
  2646. type="0" >
  2647. <otaLanguages>
  2648. <otaLanguage
  2649. id="0"
  2650. name="English"
  2651. package="0"
  2652. />
  2653. <otaLanguage
  2654. id="0"
  2655. name="French"
  2656. package="1"
  2657. />
  2658. <otaLanguage
  2659. id="0"
  2660. name="Spanish"
  2661. package="2"
  2662. />
  2663. <otaLanguage
  2664. id="0"
  2665. name="Italian"
  2666. package="3"
  2667. />
  2668. <otaLanguage
  2669. id="0"
  2670. name="German"
  2671. package="4"
  2672. />
  2673. <otaLanguage
  2674. id="0"
  2675. name="Dutch"
  2676. package="5"
  2677. />
  2678. <otaLanguage
  2679. id="0"
  2680. name="Russian"
  2681. package="6"
  2682. />
  2683. <otaLanguage
  2684. id="0"
  2685. name="Chinese"
  2686. package="7"
  2687. />
  2688. <otaLanguage
  2689. id="0"
  2690. name="Korean"
  2691. package="8"
  2692. />
  2693. <otaLanguage
  2694. id="0"
  2695. name="Japanese"
  2696. package="9"
  2697. />
  2698. <otaLanguage
  2699. id="0"
  2700. name="Finnish"
  2701. package="10"
  2702. />
  2703. <otaLanguage
  2704. id="0"
  2705. name="Polish"
  2706. package="11"
  2707. />
  2708. </otaLanguages>
  2709. <otaPackages>
  2710. <package
  2711. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  2712. size="5183988"
  2713. />
  2714. <package
  2715. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  2716. size="5183988"
  2717. />
  2718. <package
  2719. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  2720. size="5183988"
  2721. />
  2722. <package
  2723. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  2724. size="5183988"
  2725. />
  2726. <package
  2727. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  2728. size="5183988"
  2729. />
  2730. <package
  2731. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  2732. size="5183988"
  2733. />
  2734. <package
  2735. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  2736. size="5183988"
  2737. />
  2738. <package
  2739. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  2740. size="5183988"
  2741. />
  2742. <package
  2743. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  2744. size="5183988"
  2745. />
  2746. <package
  2747. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  2748. size="5183988"
  2749. />
  2750. <package
  2751. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  2752. size="5183988"
  2753. />
  2754. <package
  2755. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  2756. size="5183988"
  2757. />
  2758. </otaPackages>
  2759. </productMenu>
  2760. <productMenu id="wa"
  2761. type="0" >
  2762. </productMenu>
  2763. <productMenu id="led"
  2764. type="5" >
  2765. </productMenu>
  2766. <productMenu id="led+"
  2767. type="2"
  2768. url="1" >
  2769. </productMenu>
  2770. <productMenu id="meshIntercom"
  2771. type="30" >
  2772. </productMenu>
  2773. <productMenu id="meshIntercom+"
  2774. type="3"
  2775. url="2" >
  2776. </productMenu>
  2777. <productMenu id="waveIntercom"
  2778. type="1" >
  2779. </productMenu>
  2780. <productMenu id="fmradio"
  2781. type="0" >
  2782. </productMenu>
  2783. <productMenu id="phone"
  2784. type="1" >
  2785. </productMenu>
  2786. <productMenu id="music"
  2787. type="1" >
  2788. </productMenu>
  2789. <productMenu id="musicSharing"
  2790. type="0" >
  2791. </productMenu>
  2792. <productMenu id="deviceSetting"
  2793. type="1"
  2794. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2795. </productMenu>
  2796. <productMenu id="quickGuide"
  2797. type="0"
  2798. url=""
  2799. size="1.12MB" >
  2800. </productMenu>
  2801. <productMenu id="userGuide"
  2802. type="1"
  2803. url=""
  2804. size="2.0MB" >
  2805. </productMenu>
  2806. <productMenu id="videoGuide"
  2807. type="0"
  2808. url=""
  2809. size="3.41MB" >
  2810. </productMenu>
  2811. <productMenu id="volume"
  2812. type="16" >
  2813. </productMenu>
  2814. <productMenu id="battery"
  2815. type="1" >
  2816. </productMenu>
  2817. <productID id="6A09"
  2818. />
  2819. <productGroupable type="0"
  2820. />
  2821. </product>
  2822. <product id="PHANTOM"
  2823. name="PHANTOM ANC"
  2824. series="Helmet"
  2825. latestVersion="1.2.2"
  2826. latestVersionVoicePrompt="1.2"
  2827. show = "1" >
  2828. <productMenu id="protocol"
  2829. type="2" >
  2830. </productMenu>
  2831. <productMenu id="ota"
  2832. type="2" >
  2833. <productMenuType version="0.6.9"
  2834. type="0"
  2835. />
  2836. <otaLanguages>
  2837. <otaLanguage
  2838. id="0"
  2839. name="English"
  2840. package="0"
  2841. />
  2842. <otaLanguage
  2843. id="0"
  2844. name="French"
  2845. package="1"
  2846. />
  2847. <otaLanguage
  2848. id="0"
  2849. name="Spanish"
  2850. package="2"
  2851. />
  2852. <otaLanguage
  2853. id="0"
  2854. name="Italian"
  2855. package="3"
  2856. />
  2857. <otaLanguage
  2858. id="0"
  2859. name="German"
  2860. package="4"
  2861. />
  2862. <otaLanguage
  2863. id="0"
  2864. name="Dutch"
  2865. package="5"
  2866. />
  2867. <otaLanguage
  2868. id="0"
  2869. name="Russian"
  2870. package="6"
  2871. />
  2872. <otaLanguage
  2873. id="0"
  2874. name="Chinese"
  2875. package="7"
  2876. />
  2877. <otaLanguage
  2878. id="0"
  2879. name="Korean"
  2880. package="8"
  2881. />
  2882. <otaLanguage
  2883. id="0"
  2884. name="Japanese"
  2885. package="9"
  2886. />
  2887. <otaLanguage
  2888. id="0"
  2889. name="Finnish"
  2890. package="10"
  2891. />
  2892. <otaLanguage
  2893. id="0"
  2894. name="Polish"
  2895. package="11"
  2896. />
  2897. </otaLanguages>
  2898. <otaPackages>
  2899. <package
  2900. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1.img"
  2901. size="5183988"
  2902. />
  2903. <package
  2904. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fr-FR.img"
  2905. size="5183988"
  2906. />
  2907. <package
  2908. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-es-ES.img"
  2909. size="5183988"
  2910. />
  2911. <package
  2912. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-it-IT.img"
  2913. size="5183988"
  2914. />
  2915. <package
  2916. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-de-DE.img"
  2917. size="5183988"
  2918. />
  2919. <package
  2920. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-nl-NL.img"
  2921. size="5183988"
  2922. />
  2923. <package
  2924. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ru-RU.img"
  2925. size="5183988"
  2926. />
  2927. <package
  2928. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-cmn-CN.img"
  2929. size="5183988"
  2930. />
  2931. <package
  2932. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ko-KR.img"
  2933. size="5183988"
  2934. />
  2935. <package
  2936. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-ja-JP.img"
  2937. size="5183988"
  2938. />
  2939. <package
  2940. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-fi-FI.img"
  2941. size="5183988"
  2942. />
  2943. <package
  2944. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.2.2-build1-pl-PL.img"
  2945. size="5183988"
  2946. />
  2947. </otaPackages>
  2948. </productMenu>
  2949. <productMenu id="wa"
  2950. type="0" >
  2951. </productMenu>
  2952. <productMenu id="led"
  2953. type="5" >
  2954. </productMenu>
  2955. <productMenu id="led+"
  2956. type="2"
  2957. url="1" >
  2958. </productMenu>
  2959. <productMenu id="meshIntercom"
  2960. type="30" >
  2961. </productMenu>
  2962. <productMenu id="meshIntercom+"
  2963. type="3"
  2964. url="2" >
  2965. <productMenuURL version="1.0.4"
  2966. url="10"
  2967. />
  2968. </productMenu>
  2969. <productMenu id="waveIntercom"
  2970. type="1" >
  2971. <productMenuType version="1.0.9"
  2972. type="0"
  2973. />
  2974. </productMenu>
  2975. <productMenu id="fmradio"
  2976. type="0" >
  2977. </productMenu>
  2978. <productMenu id="phone"
  2979. type="1" >
  2980. </productMenu>
  2981. <productMenu id="music"
  2982. type="1" >
  2983. </productMenu>
  2984. <productMenu id="musicSharing"
  2985. type="0" >
  2986. </productMenu>
  2987. <productMenu id="deviceSetting"
  2988. type="1"
  2989. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  2990. <productMenuURL version="1.2.1"
  2991. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2992. />
  2993. <productMenuURL version="1.1.2"
  2994. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  2995. />
  2996. <productMenuURL version="1.0.4"
  2997. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  2998. />
  2999. </productMenu>
  3000. <productMenu id="quickGuide"
  3001. type="0"
  3002. url=""
  3003. size="1.12MB" >
  3004. </productMenu>
  3005. <productMenu id="userGuide"
  3006. type="1"
  3007. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3008. size="2.0MB" >
  3009. </productMenu>
  3010. <productMenu id="videoGuide"
  3011. type="0"
  3012. url=""
  3013. size="3.41MB" >
  3014. </productMenu>
  3015. <productMenu id="volume"
  3016. type="16" >
  3017. </productMenu>
  3018. <productMenu id="soundMode"
  3019. type="1" >
  3020. <productMenuType version="0.9.11"
  3021. type="0"
  3022. />
  3023. </productMenu>
  3024. <productMenu id="battery"
  3025. type="1" >
  3026. </productMenu>
  3027. <productID id="6A01"
  3028. />
  3029. <productGroupable type="0"
  3030. />
  3031. </product>
  3032. <product id="PHANTOM"
  3033. name="PHANTOM ANC"
  3034. series="Helmet"
  3035. latestVersion="1.2.2"
  3036. latestVersionVoicePrompt="1.2"
  3037. show = "-1" >
  3038. <productMenu id="protocol"
  3039. type="2" >
  3040. </productMenu>
  3041. <productMenu id="ota"
  3042. type="0" >
  3043. <otaLanguages>
  3044. <otaLanguage
  3045. id="0"
  3046. name="English"
  3047. package="0"
  3048. />
  3049. <otaLanguage
  3050. id="0"
  3051. name="French"
  3052. package="1"
  3053. />
  3054. <otaLanguage
  3055. id="0"
  3056. name="Spanish"
  3057. package="2"
  3058. />
  3059. <otaLanguage
  3060. id="0"
  3061. name="Italian"
  3062. package="3"
  3063. />
  3064. <otaLanguage
  3065. id="0"
  3066. name="German"
  3067. package="4"
  3068. />
  3069. <otaLanguage
  3070. id="0"
  3071. name="Dutch"
  3072. package="5"
  3073. />
  3074. <otaLanguage
  3075. id="0"
  3076. name="Russian"
  3077. package="6"
  3078. />
  3079. <otaLanguage
  3080. id="0"
  3081. name="Chinese"
  3082. package="7"
  3083. />
  3084. <otaLanguage
  3085. id="0"
  3086. name="Korean"
  3087. package="8"
  3088. />
  3089. <otaLanguage
  3090. id="0"
  3091. name="Japanese"
  3092. package="9"
  3093. />
  3094. <otaLanguage
  3095. id="0"
  3096. name="Finnish"
  3097. package="10"
  3098. />
  3099. <otaLanguage
  3100. id="0"
  3101. name="Polish"
  3102. package="11"
  3103. />
  3104. </otaLanguages>
  3105. <otaPackages>
  3106. <package
  3107. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1.img"
  3108. size="5183988"
  3109. />
  3110. <package
  3111. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-fr-FR.img"
  3112. size="5183988"
  3113. />
  3114. <package
  3115. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-es-ES.img"
  3116. size="5183988"
  3117. />
  3118. <package
  3119. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-it-IT.img"
  3120. size="5183988"
  3121. />
  3122. <package
  3123. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-de-DE.img"
  3124. size="5183988"
  3125. />
  3126. <package
  3127. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-nl-NL.img"
  3128. size="5183988"
  3129. />
  3130. <package
  3131. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-ru-RU.img"
  3132. size="5183988"
  3133. />
  3134. <package
  3135. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-cmn-CN.img"
  3136. size="5183988"
  3137. />
  3138. <package
  3139. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-ko-KR.img"
  3140. size="5183988"
  3141. />
  3142. <package
  3143. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-ja-JP.img"
  3144. size="5183988"
  3145. />
  3146. <package
  3147. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-fi-FI.img"
  3148. size="5183988"
  3149. />
  3150. <package
  3151. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANCREV2-v1.2.2-build1-pl-PL.img"
  3152. size="5183988"
  3153. />
  3154. </otaPackages>
  3155. </productMenu>
  3156. <productMenu id="led"
  3157. type="5" >
  3158. </productMenu>
  3159. <productMenu id="led+"
  3160. type="2"
  3161. url="1" >
  3162. </productMenu>
  3163. <productMenu id="meshIntercom"
  3164. type="30" >
  3165. </productMenu>
  3166. <productMenu id="meshIntercom+"
  3167. type="3"
  3168. url="2" >
  3169. </productMenu>
  3170. <productMenu id="waveIntercom"
  3171. type="1" >
  3172. </productMenu>
  3173. <productMenu id="fmradio"
  3174. type="0" >
  3175. </productMenu>
  3176. <productMenu id="phone"
  3177. type="1" >
  3178. </productMenu>
  3179. <productMenu id="music"
  3180. type="1" >
  3181. </productMenu>
  3182. <productMenu id="musicSharing"
  3183. type="0" >
  3184. </productMenu>
  3185. <productMenu id="deviceSetting"
  3186. type="1"
  3187. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3188. </productMenu>
  3189. <productMenu id="quickGuide"
  3190. type="0"
  3191. url=""
  3192. size="1.12MB" >
  3193. </productMenu>
  3194. <productMenu id="userGuide"
  3195. type="1"
  3196. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3197. size="2.0MB" >
  3198. </productMenu>
  3199. <productMenu id="videoGuide"
  3200. type="0"
  3201. url=""
  3202. size="3.41MB" >
  3203. </productMenu>
  3204. <productMenu id="volume"
  3205. type="16" >
  3206. </productMenu>
  3207. <productMenu id="soundMode"
  3208. type="1" >
  3209. </productMenu>
  3210. <productMenu id="battery"
  3211. type="1" >
  3212. </productMenu>
  3213. <productID id="6A19"
  3214. />
  3215. <productGroupable type="0"
  3216. />
  3217. </product>
  3218. <product id="PHANTOM"
  3219. name="PHANTOM"
  3220. series="Helmet"
  3221. latestVersion="1.2.2"
  3222. latestVersionVoicePrompt="1.2"
  3223. show = "-1" >
  3224. <productMenu id="protocol"
  3225. type="2" >
  3226. </productMenu>
  3227. <productMenu id="ota"
  3228. type="2" >
  3229. <otaLanguages>
  3230. <otaLanguage
  3231. id="0"
  3232. name="English"
  3233. package="0"
  3234. />
  3235. <otaLanguage
  3236. id="0"
  3237. name="French"
  3238. package="1"
  3239. />
  3240. <otaLanguage
  3241. id="0"
  3242. name="Spanish"
  3243. package="2"
  3244. />
  3245. <otaLanguage
  3246. id="0"
  3247. name="Italian"
  3248. package="3"
  3249. />
  3250. <otaLanguage
  3251. id="0"
  3252. name="German"
  3253. package="4"
  3254. />
  3255. <otaLanguage
  3256. id="0"
  3257. name="Dutch"
  3258. package="5"
  3259. />
  3260. <otaLanguage
  3261. id="0"
  3262. name="Russian"
  3263. package="6"
  3264. />
  3265. <otaLanguage
  3266. id="0"
  3267. name="Chinese"
  3268. package="7"
  3269. />
  3270. <otaLanguage
  3271. id="0"
  3272. name="Korean"
  3273. package="8"
  3274. />
  3275. <otaLanguage
  3276. id="0"
  3277. name="Japanese"
  3278. package="9"
  3279. />
  3280. <otaLanguage
  3281. id="0"
  3282. name="Finnish"
  3283. package="10"
  3284. />
  3285. <otaLanguage
  3286. id="0"
  3287. name="Polish"
  3288. package="11"
  3289. />
  3290. </otaLanguages>
  3291. <otaPackages>
  3292. <package
  3293. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1.img"
  3294. size="5183988"
  3295. />
  3296. <package
  3297. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fr-FR.img"
  3298. size="5183988"
  3299. />
  3300. <package
  3301. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-es-ES.img"
  3302. size="5183988"
  3303. />
  3304. <package
  3305. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-it-IT.img"
  3306. size="5183988"
  3307. />
  3308. <package
  3309. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-de-DE.img"
  3310. size="5183988"
  3311. />
  3312. <package
  3313. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-nl-NL.img"
  3314. size="5183988"
  3315. />
  3316. <package
  3317. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ru-RU.img"
  3318. size="5183988"
  3319. />
  3320. <package
  3321. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-cmn-CN.img"
  3322. size="5183988"
  3323. />
  3324. <package
  3325. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ko-KR.img"
  3326. size="5183988"
  3327. />
  3328. <package
  3329. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-ja-JP.img"
  3330. size="5183988"
  3331. />
  3332. <package
  3333. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-fi-FI.img"
  3334. size="5183988"
  3335. />
  3336. <package
  3337. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.2-build1-pl-PL.img"
  3338. size="5183988"
  3339. />
  3340. </otaPackages>
  3341. </productMenu>
  3342. <productMenu id="wa"
  3343. type="0" >
  3344. </productMenu>
  3345. <productMenu id="led"
  3346. type="5" >
  3347. </productMenu>
  3348. <productMenu id="led+"
  3349. type="2"
  3350. url="1" >
  3351. </productMenu>
  3352. <productMenu id="meshIntercom"
  3353. type="30" >
  3354. </productMenu>
  3355. <productMenu id="meshIntercom+"
  3356. type="3"
  3357. url="2" >
  3358. </productMenu>
  3359. <productMenu id="waveIntercom"
  3360. type="1" >
  3361. </productMenu>
  3362. <productMenu id="fmradio"
  3363. type="0" >
  3364. </productMenu>
  3365. <productMenu id="phone"
  3366. type="1" >
  3367. </productMenu>
  3368. <productMenu id="music"
  3369. type="1" >
  3370. </productMenu>
  3371. <productMenu id="musicSharing"
  3372. type="0" >
  3373. </productMenu>
  3374. <productMenu id="deviceSetting"
  3375. type="1"
  3376. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3377. </productMenu>
  3378. <productMenu id="quickGuide"
  3379. type="0"
  3380. url=""
  3381. size="1.52MB" >
  3382. </productMenu>
  3383. <productMenu id="userGuide"
  3384. type="1"
  3385. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3386. size="2.01MB" >
  3387. </productMenu>
  3388. <productMenu id="videoGuide"
  3389. type="0"
  3390. url=""
  3391. size="3.46MB" >
  3392. </productMenu>
  3393. <productMenu id="connectGuide"
  3394. type="1"
  3395. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3396. size="1.1MB" >
  3397. </productMenu>
  3398. <productMenu id="volume"
  3399. type="16" >
  3400. </productMenu>
  3401. <productMenu id="battery"
  3402. type="1" >
  3403. </productMenu>
  3404. <productID id="6A0E"
  3405. />
  3406. <productGroupable type="0"
  3407. />
  3408. </product>
  3409. <product id="PHANTOM"
  3410. name="PHANTOM"
  3411. series="Helmet"
  3412. latestVersion="1.2.2"
  3413. latestVersionVoicePrompt="1.2"
  3414. show = "1" >
  3415. <productMenu id="protocol"
  3416. type="2" >
  3417. </productMenu>
  3418. <productMenu id="ota"
  3419. type="2" >
  3420. <otaLanguages>
  3421. <otaLanguage
  3422. id="0"
  3423. name="English"
  3424. package="0"
  3425. />
  3426. <otaLanguage
  3427. id="0"
  3428. name="French"
  3429. package="1"
  3430. />
  3431. <otaLanguage
  3432. id="0"
  3433. name="Spanish"
  3434. package="2"
  3435. />
  3436. <otaLanguage
  3437. id="0"
  3438. name="Italian"
  3439. package="3"
  3440. />
  3441. <otaLanguage
  3442. id="0"
  3443. name="German"
  3444. package="4"
  3445. />
  3446. <otaLanguage
  3447. id="0"
  3448. name="Dutch"
  3449. package="5"
  3450. />
  3451. <otaLanguage
  3452. id="0"
  3453. name="Russian"
  3454. package="6"
  3455. />
  3456. <otaLanguage
  3457. id="0"
  3458. name="Chinese"
  3459. package="7"
  3460. />
  3461. <otaLanguage
  3462. id="0"
  3463. name="Korean"
  3464. package="8"
  3465. />
  3466. <otaLanguage
  3467. id="0"
  3468. name="Japanese"
  3469. package="9"
  3470. />
  3471. <otaLanguage
  3472. id="0"
  3473. name="Finnish"
  3474. package="10"
  3475. />
  3476. <otaLanguage
  3477. id="0"
  3478. name="Polish"
  3479. package="11"
  3480. />
  3481. </otaLanguages>
  3482. <otaPackages>
  3483. <package
  3484. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1.img"
  3485. size="5183988"
  3486. />
  3487. <package
  3488. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fr-FR.img"
  3489. size="5183988"
  3490. />
  3491. <package
  3492. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-es-ES.img"
  3493. size="5183988"
  3494. />
  3495. <package
  3496. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-it-IT.img"
  3497. size="5183988"
  3498. />
  3499. <package
  3500. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-de-DE.img"
  3501. size="5183988"
  3502. />
  3503. <package
  3504. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-nl-NL.img"
  3505. size="5183988"
  3506. />
  3507. <package
  3508. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ru-RU.img"
  3509. size="5183988"
  3510. />
  3511. <package
  3512. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-cmn-CN.img"
  3513. size="5183988"
  3514. />
  3515. <package
  3516. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ko-KR.img"
  3517. size="5183988"
  3518. />
  3519. <package
  3520. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-ja-JP.img"
  3521. size="5183988"
  3522. />
  3523. <package
  3524. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-fi-FI.img"
  3525. size="5183988"
  3526. />
  3527. <package
  3528. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.2-build1-pl-PL.img"
  3529. size="5183988"
  3530. />
  3531. </otaPackages>
  3532. </productMenu>
  3533. <productMenu id="wa"
  3534. type="0" >
  3535. </productMenu>
  3536. <productMenu id="led"
  3537. type="5" >
  3538. <productMenuType version="1.0.1"
  3539. type="4"
  3540. />
  3541. </productMenu>
  3542. <productMenu id="led+"
  3543. type="2"
  3544. url="1" >
  3545. <productMenuType version="1.0.1"
  3546. type="-1"
  3547. />
  3548. </productMenu>
  3549. <productMenu id="meshIntercom"
  3550. type="30" >
  3551. </productMenu>
  3552. <productMenu id="meshIntercom+"
  3553. type="3"
  3554. url="2" >
  3555. <productMenuURL version="1.0.4"
  3556. url="10"
  3557. />
  3558. </productMenu>
  3559. <productMenu id="waveIntercom"
  3560. type="1" >
  3561. <productMenuType version="1.0.9"
  3562. type="0"
  3563. />
  3564. </productMenu>
  3565. <productMenu id="fmradio"
  3566. type="0" >
  3567. </productMenu>
  3568. <productMenu id="phone"
  3569. type="1" >
  3570. </productMenu>
  3571. <productMenu id="music"
  3572. type="1" >
  3573. </productMenu>
  3574. <productMenu id="musicSharing"
  3575. type="0" >
  3576. </productMenu>
  3577. <productMenu id="deviceSetting"
  3578. type="1"
  3579. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3580. <productMenuURL version="1.2.1"
  3581. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3582. />
  3583. <productMenuURL version="1.0.4"
  3584. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  3585. />
  3586. <productMenuURL version="1.0.1"
  3587. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  3588. />
  3589. </productMenu>
  3590. <productMenu id="quickGuide"
  3591. type="0"
  3592. url=""
  3593. size="1.12MB" >
  3594. </productMenu>
  3595. <productMenu id="userGuide"
  3596. type="1"
  3597. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3598. size="2.0MB" >
  3599. </productMenu>
  3600. <productMenu id="videoGuide"
  3601. type="0"
  3602. url=""
  3603. size="3.41MB" >
  3604. </productMenu>
  3605. <productMenu id="connectGuide"
  3606. type="1"
  3607. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3608. size="1.12MB" >
  3609. </productMenu>
  3610. <productMenu id="volume"
  3611. type="16" >
  3612. <productMenuType version="1.0"
  3613. type="13"
  3614. />
  3615. </productMenu>
  3616. <productMenu id="battery"
  3617. type="1" >
  3618. </productMenu>
  3619. <productID id="6A04"
  3620. />
  3621. <productGroupable type="0"
  3622. />
  3623. </product>
  3624. <product id="PHANTOMEasyLink"
  3625. name="PHANTOM EasyLink"
  3626. series="Helmet"
  3627. latestVersion="0.1"
  3628. latestVersionVoicePrompt="1.2"
  3629. show = "-1" >
  3630. <productMenu id="protocol"
  3631. type="2" >
  3632. </productMenu>
  3633. <productMenu id="ota"
  3634. type="0" >
  3635. <otaLanguages>
  3636. <otaLanguage
  3637. id="0"
  3638. name="English"
  3639. package="0"
  3640. />
  3641. <otaLanguage
  3642. id="0"
  3643. name="French"
  3644. package="1"
  3645. />
  3646. <otaLanguage
  3647. id="0"
  3648. name="Spanish"
  3649. package="2"
  3650. />
  3651. <otaLanguage
  3652. id="0"
  3653. name="Italian"
  3654. package="3"
  3655. />
  3656. <otaLanguage
  3657. id="0"
  3658. name="German"
  3659. package="4"
  3660. />
  3661. <otaLanguage
  3662. id="0"
  3663. name="Dutch"
  3664. package="5"
  3665. />
  3666. <otaLanguage
  3667. id="0"
  3668. name="Russian"
  3669. package="6"
  3670. />
  3671. <otaLanguage
  3672. id="0"
  3673. name="Chinese"
  3674. package="7"
  3675. />
  3676. <otaLanguage
  3677. id="0"
  3678. name="Korean"
  3679. package="8"
  3680. />
  3681. <otaLanguage
  3682. id="0"
  3683. name="Japanese"
  3684. package="9"
  3685. />
  3686. <otaLanguage
  3687. id="0"
  3688. name="Finnish"
  3689. package="10"
  3690. />
  3691. <otaLanguage
  3692. id="0"
  3693. name="Polish"
  3694. package="11"
  3695. />
  3696. </otaLanguages>
  3697. <otaPackages>
  3698. <package
  3699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  3700. size="5183988"
  3701. />
  3702. <package
  3703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  3704. size="5183988"
  3705. />
  3706. <package
  3707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  3708. size="5183988"
  3709. />
  3710. <package
  3711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  3712. size="5183988"
  3713. />
  3714. <package
  3715. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  3716. size="5183988"
  3717. />
  3718. <package
  3719. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  3720. size="5183988"
  3721. />
  3722. <package
  3723. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  3724. size="5183988"
  3725. />
  3726. <package
  3727. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  3728. size="5183988"
  3729. />
  3730. <package
  3731. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  3732. size="5183988"
  3733. />
  3734. <package
  3735. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  3736. size="5183988"
  3737. />
  3738. <package
  3739. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  3740. size="5183988"
  3741. />
  3742. <package
  3743. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  3744. size="5183988"
  3745. />
  3746. </otaPackages>
  3747. </productMenu>
  3748. <productMenu id="meshIntercom"
  3749. type="30" >
  3750. </productMenu>
  3751. <productMenu id="meshIntercom+"
  3752. type="3"
  3753. url="2" >
  3754. </productMenu>
  3755. <productMenu id="waveIntercom"
  3756. type="1" >
  3757. </productMenu>
  3758. <productMenu id="fmradio"
  3759. type="0" >
  3760. </productMenu>
  3761. <productMenu id="phone"
  3762. type="1" >
  3763. </productMenu>
  3764. <productMenu id="music"
  3765. type="1" >
  3766. </productMenu>
  3767. <productMenu id="musicSharing"
  3768. type="0" >
  3769. </productMenu>
  3770. <productMenu id="deviceSetting"
  3771. type="1"
  3772. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3773. </productMenu>
  3774. <productMenu id="quickGuide"
  3775. type="0"
  3776. url=""
  3777. size="1.12MB" >
  3778. </productMenu>
  3779. <productMenu id="userGuide"
  3780. type="1"
  3781. url=""
  3782. size="2.0MB" >
  3783. </productMenu>
  3784. <productMenu id="videoGuide"
  3785. type="0"
  3786. url=""
  3787. size="3.41MB" >
  3788. </productMenu>
  3789. <productMenu id="connectGuide"
  3790. type="0"
  3791. url=""
  3792. size="1.12MB" >
  3793. </productMenu>
  3794. <productMenu id="volume"
  3795. type="16" >
  3796. </productMenu>
  3797. <productMenu id="battery"
  3798. type="1" >
  3799. </productMenu>
  3800. <productID id="6A18"
  3801. />
  3802. <productGroupable type="0"
  3803. />
  3804. </product>
  3805. <product id="SPIDERXSlim"
  3806. name="SPIDER X Slim"
  3807. series="SPIDER"
  3808. latestVersion="0.1.11"
  3809. latestVersionVoicePrompt="1.1"
  3810. show = "-1" >
  3811. <productMenu id="protocol"
  3812. type="2" >
  3813. </productMenu>
  3814. <productMenu id="ota"
  3815. type="0" >
  3816. <otaLanguages>
  3817. <otaLanguage
  3818. id="0"
  3819. name="English"
  3820. package="0"
  3821. />
  3822. <otaLanguage
  3823. id="0"
  3824. name="French"
  3825. package="1"
  3826. />
  3827. <otaLanguage
  3828. id="0"
  3829. name="Spanish"
  3830. package="2"
  3831. />
  3832. <otaLanguage
  3833. id="0"
  3834. name="Italian"
  3835. package="3"
  3836. />
  3837. <otaLanguage
  3838. id="0"
  3839. name="German"
  3840. package="4"
  3841. />
  3842. <otaLanguage
  3843. id="0"
  3844. name="Dutch"
  3845. package="5"
  3846. />
  3847. <otaLanguage
  3848. id="0"
  3849. name="Russian"
  3850. package="6"
  3851. />
  3852. <otaLanguage
  3853. id="0"
  3854. name="Chinese"
  3855. package="7"
  3856. />
  3857. <otaLanguage
  3858. id="0"
  3859. name="Korean"
  3860. package="8"
  3861. />
  3862. <otaLanguage
  3863. id="0"
  3864. name="Japanese"
  3865. package="9"
  3866. />
  3867. <otaLanguage
  3868. id="0"
  3869. name="Finnish"
  3870. package="10"
  3871. />
  3872. <otaLanguage
  3873. id="0"
  3874. name="Polish"
  3875. package="11"
  3876. />
  3877. </otaLanguages>
  3878. <otaPackages>
  3879. <package
  3880. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0.img"
  3881. size="5183988"
  3882. />
  3883. <package
  3884. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fr-FR.img"
  3885. size="5183988"
  3886. />
  3887. <package
  3888. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-es-ES.img"
  3889. size="5183988"
  3890. />
  3891. <package
  3892. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-it-IT.img"
  3893. size="5183988"
  3894. />
  3895. <package
  3896. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-de-DE.img"
  3897. size="5183988"
  3898. />
  3899. <package
  3900. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-nl-NL.img"
  3901. size="5183988"
  3902. />
  3903. <package
  3904. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ru-RU.img"
  3905. size="5183988"
  3906. />
  3907. <package
  3908. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-cmn-CN.img"
  3909. size="5183988"
  3910. />
  3911. <package
  3912. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ko-KR.img"
  3913. size="5183988"
  3914. />
  3915. <package
  3916. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-ja-JP.img"
  3917. size="5183988"
  3918. />
  3919. <package
  3920. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-fi-FI.img"
  3921. size="5183988"
  3922. />
  3923. <package
  3924. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2.0-build0-pl-PL.img"
  3925. size="5183988"
  3926. />
  3927. </otaPackages>
  3928. </productMenu>
  3929. <productMenu id="wa"
  3930. type="0" >
  3931. </productMenu>
  3932. <productMenu id="led"
  3933. type="5" >
  3934. </productMenu>
  3935. <productMenu id="led+"
  3936. type="2"
  3937. url="1" >
  3938. </productMenu>
  3939. <productMenu id="meshIntercom"
  3940. type="30" >
  3941. </productMenu>
  3942. <productMenu id="meshIntercom+"
  3943. type="3"
  3944. url="2" >
  3945. </productMenu>
  3946. <productMenu id="waveIntercom"
  3947. type="1" >
  3948. </productMenu>
  3949. <productMenu id="fmradio"
  3950. type="0" >
  3951. </productMenu>
  3952. <productMenu id="phone"
  3953. type="1" >
  3954. </productMenu>
  3955. <productMenu id="music"
  3956. type="1" >
  3957. </productMenu>
  3958. <productMenu id="musicSharing"
  3959. type="0" >
  3960. </productMenu>
  3961. <productMenu id="deviceSetting"
  3962. type="1"
  3963. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3964. </productMenu>
  3965. <productMenu id="quickGuide"
  3966. type="0"
  3967. url=""
  3968. size="1.12MB" >
  3969. </productMenu>
  3970. <productMenu id="userGuide"
  3971. type="1"
  3972. url=""
  3973. size="2.0MB" >
  3974. </productMenu>
  3975. <productMenu id="videoGuide"
  3976. type="0"
  3977. url=""
  3978. size="3.41MB" >
  3979. </productMenu>
  3980. <productMenu id="volume"
  3981. type="16" >
  3982. </productMenu>
  3983. <productMenu id="battery"
  3984. type="1" >
  3985. </productMenu>
  3986. <productID id="6A07"
  3987. />
  3988. <productGroupable type="0"
  3989. />
  3990. </product>
  3991. <product id="VORTEXMESH"
  3992. name="VORTEX MESH"
  3993. series="Helmet"
  3994. latestVersion="0.1.11"
  3995. latestVersionVoicePrompt="1.1"
  3996. show = "-1" >
  3997. <productMenu id="protocol"
  3998. type="2" >
  3999. </productMenu>
  4000. <productMenu id="ota"
  4001. type="0" >
  4002. <otaLanguages>
  4003. <otaLanguage
  4004. id="0"
  4005. name="English"
  4006. package="0"
  4007. />
  4008. <otaLanguage
  4009. id="0"
  4010. name="French"
  4011. package="1"
  4012. />
  4013. <otaLanguage
  4014. id="0"
  4015. name="Spanish"
  4016. package="2"
  4017. />
  4018. <otaLanguage
  4019. id="0"
  4020. name="Italian"
  4021. package="3"
  4022. />
  4023. <otaLanguage
  4024. id="0"
  4025. name="German"
  4026. package="4"
  4027. />
  4028. <otaLanguage
  4029. id="0"
  4030. name="Dutch"
  4031. package="5"
  4032. />
  4033. <otaLanguage
  4034. id="0"
  4035. name="Russian"
  4036. package="6"
  4037. />
  4038. <otaLanguage
  4039. id="0"
  4040. name="Chinese"
  4041. package="7"
  4042. />
  4043. <otaLanguage
  4044. id="0"
  4045. name="Korean"
  4046. package="8"
  4047. />
  4048. <otaLanguage
  4049. id="0"
  4050. name="Japanese"
  4051. package="9"
  4052. />
  4053. <otaLanguage
  4054. id="0"
  4055. name="Finnish"
  4056. package="10"
  4057. />
  4058. <otaLanguage
  4059. id="0"
  4060. name="Polish"
  4061. package="11"
  4062. />
  4063. </otaLanguages>
  4064. <otaPackages>
  4065. <package
  4066. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4075. size="5183988"
  4076. />
  4077. <package
  4078. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4079. size="5183988"
  4080. />
  4081. <package
  4082. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4083. size="5183988"
  4084. />
  4085. <package
  4086. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4087. size="5183988"
  4088. />
  4089. <package
  4090. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4091. size="5183988"
  4092. />
  4093. <package
  4094. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4095. size="5183988"
  4096. />
  4097. <package
  4098. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4099. size="5183988"
  4100. />
  4101. <package
  4102. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4103. size="5183988"
  4104. />
  4105. <package
  4106. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4107. size="5183988"
  4108. />
  4109. <package
  4110. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4111. size="5183988"
  4112. />
  4113. </otaPackages>
  4114. </productMenu>
  4115. <productMenu id="wa"
  4116. type="0" >
  4117. </productMenu>
  4118. <productMenu id="led"
  4119. type="5" >
  4120. </productMenu>
  4121. <productMenu id="led+"
  4122. type="2"
  4123. url="1" >
  4124. </productMenu>
  4125. <productMenu id="meshIntercom"
  4126. type="30" >
  4127. </productMenu>
  4128. <productMenu id="meshIntercom+"
  4129. type="3"
  4130. url="2" >
  4131. </productMenu>
  4132. <productMenu id="waveIntercom"
  4133. type="1" >
  4134. </productMenu>
  4135. <productMenu id="fmradio"
  4136. type="0" >
  4137. </productMenu>
  4138. <productMenu id="phone"
  4139. type="1" >
  4140. </productMenu>
  4141. <productMenu id="music"
  4142. type="1" >
  4143. </productMenu>
  4144. <productMenu id="musicSharing"
  4145. type="0" >
  4146. </productMenu>
  4147. <productMenu id="deviceSetting"
  4148. type="1"
  4149. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4150. </productMenu>
  4151. <productMenu id="quickGuide"
  4152. type="0"
  4153. url=""
  4154. size="1.12MB" >
  4155. </productMenu>
  4156. <productMenu id="userGuide"
  4157. type="1"
  4158. url=""
  4159. size="2.0MB" >
  4160. </productMenu>
  4161. <productMenu id="videoGuide"
  4162. type="0"
  4163. url=""
  4164. size="3.41MB" >
  4165. </productMenu>
  4166. <productMenu id="volume"
  4167. type="16" >
  4168. </productMenu>
  4169. <productMenu id="battery"
  4170. type="1" >
  4171. </productMenu>
  4172. <productID id="6A12"
  4173. />
  4174. <productGroupable type="0"
  4175. />
  4176. </product>
  4177. <product id="Impulse"
  4178. name="Impulse"
  4179. series="Helmet"
  4180. latestVersion="1.4.1"
  4181. show = "1" >
  4182. <productMenu id="protocol"
  4183. type="2" >
  4184. </productMenu>
  4185. <productMenu id="alexa"
  4186. type="0" >
  4187. </productMenu>
  4188. <productMenu id="ota"
  4189. type="0" >
  4190. </productMenu>
  4191. <productMenu id="wa"
  4192. type="24" >
  4193. </productMenu>
  4194. <productMenu id="manager"
  4195. type="0" >
  4196. </productMenu>
  4197. <productMenu id="sip"
  4198. type="1" >
  4199. </productMenu>
  4200. <productMenu id="led"
  4201. type="1" >
  4202. <productMenuType version="1.0.1"
  4203. type="2"
  4204. />
  4205. <productMenuType version="1.0"
  4206. type="1"
  4207. />
  4208. </productMenu>
  4209. <productMenu id="meshIntercom"
  4210. type="30" >
  4211. <productMenuType version="1.1.1"
  4212. type="20"
  4213. />
  4214. </productMenu>
  4215. <productMenu id="meshIntercom+"
  4216. type="3"
  4217. url="2" >
  4218. <productMenuType version="1.3.9"
  4219. type="2"
  4220. />
  4221. <productMenuURL version="1.1.1"
  4222. url="0"
  4223. />
  4224. </productMenu>
  4225. <productMenu id="waveIntercom"
  4226. type="1" >
  4227. <productMenuType version="1.3.9"
  4228. type="0"
  4229. />
  4230. </productMenu>
  4231. <productMenu id="bluetoothIntercom"
  4232. type="1" >
  4233. </productMenu>
  4234. <productMenu id="phone"
  4235. type="1" >
  4236. </productMenu>
  4237. <productMenu id="music"
  4238. type="1" >
  4239. </productMenu>
  4240. <productMenu id="fmradio"
  4241. type="1" >
  4242. </productMenu>
  4243. <productMenu id="deviceSetting"
  4244. type="1"
  4245. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4246. <productMenuURL version="1.3.9"
  4247. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4248. />
  4249. <productMenuURL version="1.1.1"
  4250. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4251. />
  4252. <productMenuURL version="1.0.4"
  4253. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4254. />
  4255. </productMenu>
  4256. <productMenu id="quickGuide"
  4257. type="0"
  4258. url=""
  4259. size="344KB" >
  4260. </productMenu>
  4261. <productMenu id="userGuide"
  4262. type="1"
  4263. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4264. size="3.41MB" >
  4265. </productMenu>
  4266. <productMenu id="connectGuide"
  4267. type="1"
  4268. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4269. size="1.12MB" >
  4270. </productMenu>
  4271. <productMenu id="volume"
  4272. type="11" >
  4273. </productMenu>
  4274. <productMenu id="battery"
  4275. type="1" >
  4276. </productMenu>
  4277. <productID id="3148"
  4278. />
  4279. <productGroupable type="0"
  4280. />
  4281. </product>
  4282. <product id="Impulse"
  4283. name="Impulse"
  4284. series="Helmet"
  4285. latestVersion="2.0"
  4286. show = "-1" >
  4287. <productMenu id="protocol"
  4288. type="2" >
  4289. </productMenu>
  4290. <productMenu id="alexa"
  4291. type="0" >
  4292. </productMenu>
  4293. <productMenu id="ota"
  4294. type="0" >
  4295. </productMenu>
  4296. <productMenu id="wa"
  4297. type="8" >
  4298. </productMenu>
  4299. <productMenu id="manager"
  4300. type="0" >
  4301. </productMenu>
  4302. <productMenu id="sip"
  4303. type="1" >
  4304. </productMenu>
  4305. <productMenu id="led"
  4306. type="3" >
  4307. </productMenu>
  4308. <productMenu id="meshIntercom"
  4309. type="20" >
  4310. </productMenu>
  4311. <productMenu id="bluetoothIntercom"
  4312. type="1" >
  4313. </productMenu>
  4314. <productMenu id="phone"
  4315. type="1" >
  4316. </productMenu>
  4317. <productMenu id="music"
  4318. type="1" >
  4319. </productMenu>
  4320. <productMenu id="fmradio"
  4321. type="1" >
  4322. </productMenu>
  4323. <productMenu id="deviceSetting"
  4324. type="1"
  4325. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4326. </productMenu>
  4327. <productMenu id="quickGuide"
  4328. type="1"
  4329. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4330. size="344KB" >
  4331. </productMenu>
  4332. <productMenu id="userGuide"
  4333. type="1"
  4334. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4335. size="3.41MB" >
  4336. </productMenu>
  4337. <productMenu id="volume"
  4338. type="11" >
  4339. </productMenu>
  4340. <productMenu id="battery"
  4341. type="1" >
  4342. </productMenu>
  4343. <productID id="3221"
  4344. />
  4345. <productGroupable type="0"
  4346. />
  4347. </product>
  4348. <product id="Stryker"
  4349. name="Stryker"
  4350. series="Helmet"
  4351. latestVersion="1.4.1"
  4352. show = "1" >
  4353. <productMenu id="protocol"
  4354. type="2" >
  4355. </productMenu>
  4356. <productMenu id="alexa"
  4357. type="0" >
  4358. </productMenu>
  4359. <productMenu id="ota"
  4360. type="0" >
  4361. </productMenu>
  4362. <productMenu id="wa"
  4363. type="40" >
  4364. </productMenu>
  4365. <productMenu id="manager"
  4366. type="0" >
  4367. </productMenu>
  4368. <productMenu id="sip"
  4369. type="1" >
  4370. </productMenu>
  4371. <productMenu id="led"
  4372. type="1" >
  4373. <productMenuType version="1.0.1"
  4374. type="2"
  4375. />
  4376. <productMenuType version="1.0"
  4377. type="1"
  4378. />
  4379. </productMenu>
  4380. <productMenu id="meshIntercom"
  4381. type="30" >
  4382. <productMenuType version="1.1.1"
  4383. type="20"
  4384. />
  4385. </productMenu>
  4386. <productMenu id="meshIntercom+"
  4387. type="3"
  4388. url="2" >
  4389. <productMenuType version="1.3.9"
  4390. type="2"
  4391. />
  4392. <productMenuURL version="1.1.1"
  4393. url="0"
  4394. />
  4395. </productMenu>
  4396. <productMenu id="waveIntercom"
  4397. type="1" >
  4398. <productMenuType version="1.2.9"
  4399. type="0"
  4400. />
  4401. </productMenu>
  4402. <productMenu id="bluetoothIntercom"
  4403. type="1" >
  4404. </productMenu>
  4405. <productMenu id="phone"
  4406. type="1" >
  4407. </productMenu>
  4408. <productMenu id="music"
  4409. type="1" >
  4410. </productMenu>
  4411. <productMenu id="fmradio"
  4412. type="1" >
  4413. </productMenu>
  4414. <productMenu id="deviceSetting"
  4415. type="1"
  4416. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4417. <productMenuURL version="1.3.9"
  4418. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4419. />
  4420. <productMenuURL version="1.1.1"
  4421. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4422. />
  4423. <productMenuURL version="1.0.4"
  4424. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4425. />
  4426. </productMenu>
  4427. <productMenu id="quickGuide"
  4428. type="0"
  4429. url=""
  4430. size="344KB" >
  4431. </productMenu>
  4432. <productMenu id="userGuide"
  4433. type="1"
  4434. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  4435. size="3.41MB" >
  4436. </productMenu>
  4437. <productMenu id="connectGuide"
  4438. type="1"
  4439. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4440. size="1.12MB" >
  4441. </productMenu>
  4442. <productMenu id="volume"
  4443. type="11" >
  4444. </productMenu>
  4445. <productMenu id="battery"
  4446. type="1" >
  4447. </productMenu>
  4448. <productID id="3154"
  4449. />
  4450. <productGroupable type="0"
  4451. />
  4452. </product>
  4453. <product id="SRL3Plus"
  4454. name="SRL3 Plus"
  4455. series="60"
  4456. latestVersion="0.9.5"
  4457. latestVersionMesh="0.19"
  4458. latestVersionVoicePrompt="1.2"
  4459. show = "-1" >
  4460. <productMenu id="protocol"
  4461. type="2" >
  4462. </productMenu>
  4463. <productMenu id="ota"
  4464. type="2" >
  4465. <otaLanguages>
  4466. <otaLanguage
  4467. id="0"
  4468. name="English"
  4469. package="0"
  4470. />
  4471. <otaLanguage
  4472. id="0"
  4473. name="French"
  4474. package="1"
  4475. />
  4476. <otaLanguage
  4477. id="0"
  4478. name="Spanish"
  4479. package="2"
  4480. />
  4481. <otaLanguage
  4482. id="0"
  4483. name="Italian"
  4484. package="3"
  4485. />
  4486. <otaLanguage
  4487. id="0"
  4488. name="German"
  4489. package="4"
  4490. />
  4491. <otaLanguage
  4492. id="0"
  4493. name="Dutch"
  4494. package="5"
  4495. />
  4496. <otaLanguage
  4497. id="0"
  4498. name="Russian"
  4499. package="6"
  4500. />
  4501. <otaLanguage
  4502. id="0"
  4503. name="Chinese"
  4504. package="7"
  4505. />
  4506. <otaLanguage
  4507. id="0"
  4508. name="Korean"
  4509. package="8"
  4510. />
  4511. <otaLanguage
  4512. id="0"
  4513. name="Japanese"
  4514. package="9"
  4515. />
  4516. <otaLanguage
  4517. id="0"
  4518. name="Finnish"
  4519. package="10"
  4520. />
  4521. </otaLanguages>
  4522. <otaPackages>
  4523. <package
  4524. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  4525. size="5183988"
  4526. />
  4527. <package
  4528. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  4529. size="5183988"
  4530. />
  4531. <package
  4532. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  4533. size="5183988"
  4534. />
  4535. <package
  4536. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  4537. size="5183988"
  4538. />
  4539. <package
  4540. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  4541. size="5183988"
  4542. />
  4543. <package
  4544. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  4545. size="5183988"
  4546. />
  4547. <package
  4548. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  4549. size="5183988"
  4550. />
  4551. <package
  4552. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  4553. size="5183988"
  4554. />
  4555. <package
  4556. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  4557. size="5183988"
  4558. />
  4559. <package
  4560. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  4561. size="5183988"
  4562. />
  4563. <package
  4564. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  4565. size="5183988"
  4566. />
  4567. </otaPackages>
  4568. </productMenu>
  4569. <productMenu id="sip"
  4570. type="1" >
  4571. </productMenu>
  4572. <productMenu id="illusion"
  4573. type="1" >
  4574. </productMenu>
  4575. <productMenu id="meshIntercom+"
  4576. type="3"
  4577. url="2" >
  4578. </productMenu>
  4579. <productMenu id="waveIntercom"
  4580. type="1" >
  4581. </productMenu>
  4582. <productMenu id="bluetoothIntercom"
  4583. type="1"
  4584. url="2" >
  4585. </productMenu>
  4586. <productMenu id="bluetoothIntercomGrouping"
  4587. type="0" >
  4588. </productMenu>
  4589. <productMenu id="fmradio"
  4590. type="1"
  4591. url="1" >
  4592. </productMenu>
  4593. <productMenu id="phone"
  4594. type="1" >
  4595. </productMenu>
  4596. <productMenu id="music"
  4597. type="1" >
  4598. </productMenu>
  4599. <productMenu id="musicSharing"
  4600. type="0" >
  4601. </productMenu>
  4602. <productMenu id="deviceSetting"
  4603. type="1"
  4604. url="https://api.sena.com/support/test/xml/NS_SRL60_UCOM16R_ALPINESTARS_Only_Test.xml" >
  4605. </productMenu>
  4606. <productMenu id="quickGuide"
  4607. type="0"
  4608. url=""
  4609. size="1.12MB" >
  4610. </productMenu>
  4611. <productMenu id="userGuide"
  4612. type="0"
  4613. url=""
  4614. size="2.0MB" >
  4615. </productMenu>
  4616. <productMenu id="videoGuide"
  4617. type="0"
  4618. url=""
  4619. size="3.41MB" >
  4620. </productMenu>
  4621. <productMenu id="volume"
  4622. type="16" >
  4623. </productMenu>
  4624. <productMenu id="soundMode"
  4625. type="1" >
  4626. </productMenu>
  4627. <productMenu id="battery"
  4628. type="1" >
  4629. </productMenu>
  4630. <productID id="6A08"
  4631. />
  4632. <productGroupable type="0"
  4633. />
  4634. </product>
  4635. <product id="SRL3"
  4636. name="SRL3"
  4637. series="SRL"
  4638. latestVersion="1.5"
  4639. show = "1" >
  4640. <productMenu id="protocol"
  4641. type="2" >
  4642. </productMenu>
  4643. <productMenu id="alexa"
  4644. type="0" >
  4645. </productMenu>
  4646. <productMenu id="ota"
  4647. type="0" >
  4648. </productMenu>
  4649. <productMenu id="wa"
  4650. type="1" >
  4651. </productMenu>
  4652. <productMenu id="sip"
  4653. type="1" >
  4654. </productMenu>
  4655. <productMenu id="meshIntercom"
  4656. type="30" >
  4657. </productMenu>
  4658. <productMenu id="meshIntercom+"
  4659. type="3"
  4660. url="2" >
  4661. <productMenuType version="1.3.9"
  4662. type="2"
  4663. />
  4664. </productMenu>
  4665. <productMenu id="waveIntercom"
  4666. type="1" >
  4667. <productMenuType version="1.4.9"
  4668. type="0"
  4669. />
  4670. </productMenu>
  4671. <productMenu id="bluetoothIntercom"
  4672. type="1" >
  4673. </productMenu>
  4674. <productMenu id="phone"
  4675. type="1" >
  4676. </productMenu>
  4677. <productMenu id="music"
  4678. type="1" >
  4679. </productMenu>
  4680. <productMenu id="fmradio"
  4681. type="1" >
  4682. </productMenu>
  4683. <productMenu id="deviceSetting"
  4684. type="1"
  4685. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4686. <productMenuURL version="1.3"
  4687. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4688. />
  4689. </productMenu>
  4690. <productMenu id="quickGuide"
  4691. type="0"
  4692. url=""
  4693. size="344KB" >
  4694. </productMenu>
  4695. <productMenu id="userGuide"
  4696. type="1"
  4697. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  4698. size="3.41MB" >
  4699. </productMenu>
  4700. <productMenu id="connectGuide"
  4701. type="1"
  4702. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4703. size="1.12MB" >
  4704. </productMenu>
  4705. <productMenu id="volume"
  4706. type="11" >
  4707. </productMenu>
  4708. <productMenu id="battery"
  4709. type="1" >
  4710. </productMenu>
  4711. <productID id="3219"
  4712. />
  4713. <productGroupable type="0"
  4714. />
  4715. </product>
  4716. <product id="SRL_Mesh"
  4717. name="SRL-Mesh"
  4718. series="SRL"
  4719. latestVersion="1.7"
  4720. show = "1" >
  4721. <productMenu id="protocol"
  4722. type="2" >
  4723. </productMenu>
  4724. <productMenu id="alexa"
  4725. type="0" >
  4726. </productMenu>
  4727. <productMenu id="ota"
  4728. type="0" >
  4729. </productMenu>
  4730. <productMenu id="wa"
  4731. type="1" >
  4732. </productMenu>
  4733. <productMenu id="sip"
  4734. type="1" >
  4735. </productMenu>
  4736. <productMenu id="meshIntercom"
  4737. type="30" >
  4738. <productMenuType version="1.1.1"
  4739. type="20"
  4740. />
  4741. </productMenu>
  4742. <productMenu id="meshIntercom+"
  4743. type="3"
  4744. url="2" >
  4745. <productMenuType version="1.5.9"
  4746. type="2"
  4747. />
  4748. <productMenuURL version="1.1.1"
  4749. url="0"
  4750. />
  4751. </productMenu>
  4752. <productMenu id="waveIntercom"
  4753. type="1" >
  4754. <productMenuType version="1.6.9"
  4755. type="0"
  4756. />
  4757. </productMenu>
  4758. <productMenu id="bluetoothIntercom"
  4759. type="1" >
  4760. </productMenu>
  4761. <productMenu id="phone"
  4762. type="1" >
  4763. </productMenu>
  4764. <productMenu id="music"
  4765. type="1" >
  4766. </productMenu>
  4767. <productMenu id="fmradio"
  4768. type="1" >
  4769. </productMenu>
  4770. <productMenu id="deviceSetting"
  4771. type="1"
  4772. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4773. <productMenuURL version="1.5"
  4774. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4775. />
  4776. <productMenuURL version="1.1.1"
  4777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4778. />
  4779. <productMenuURL version="1.0.3"
  4780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4781. />
  4782. </productMenu>
  4783. <productMenu id="quickGuide"
  4784. type="0"
  4785. url=""
  4786. size="344KB" >
  4787. </productMenu>
  4788. <productMenu id="userGuide"
  4789. type="1"
  4790. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  4791. size="3.41MB" >
  4792. </productMenu>
  4793. <productMenu id="connectGuide"
  4794. type="1"
  4795. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4796. size="1.12MB" >
  4797. </productMenu>
  4798. <productMenu id="volume"
  4799. type="11" >
  4800. </productMenu>
  4801. <productMenu id="battery"
  4802. type="1" >
  4803. </productMenu>
  4804. <productID id="3216"
  4805. />
  4806. <productGroupable type="0"
  4807. />
  4808. </product>
  4809. <product id="SRL_EXT"
  4810. name="SRL-EXT"
  4811. series="SRL"
  4812. latestVersion="1.7"
  4813. show = "1" >
  4814. <productMenu id="protocol"
  4815. type="2" >
  4816. </productMenu>
  4817. <productMenu id="alexa"
  4818. type="0" >
  4819. </productMenu>
  4820. <productMenu id="ota"
  4821. type="0" >
  4822. </productMenu>
  4823. <productMenu id="wa"
  4824. type="0" >
  4825. </productMenu>
  4826. <productMenu id="sip"
  4827. type="1" >
  4828. </productMenu>
  4829. <productMenu id="meshIntercom"
  4830. type="30" >
  4831. <productMenuType version="1.1.1"
  4832. type="20"
  4833. />
  4834. </productMenu>
  4835. <productMenu id="meshIntercom+"
  4836. type="3"
  4837. url="2" >
  4838. <productMenuType version="1.5.9"
  4839. type="2"
  4840. />
  4841. <productMenuURL version="1.1.1"
  4842. url="0"
  4843. />
  4844. </productMenu>
  4845. <productMenu id="waveIntercom"
  4846. type="1" >
  4847. <productMenuType version="1.6.9"
  4848. type="0"
  4849. />
  4850. </productMenu>
  4851. <productMenu id="bluetoothIntercom"
  4852. type="1" >
  4853. </productMenu>
  4854. <productMenu id="phone"
  4855. type="1" >
  4856. </productMenu>
  4857. <productMenu id="music"
  4858. type="1" >
  4859. </productMenu>
  4860. <productMenu id="fmradio"
  4861. type="1" >
  4862. </productMenu>
  4863. <productMenu id="deviceSetting"
  4864. type="1"
  4865. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  4866. <productMenuURL version="1.5"
  4867. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  4868. />
  4869. <productMenuURL version="1.1.1"
  4870. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  4871. />
  4872. <productMenuURL version="1.0.3"
  4873. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4874. />
  4875. </productMenu>
  4876. <productMenu id="quickGuide"
  4877. type="0"
  4878. url=""
  4879. size="344KB" >
  4880. </productMenu>
  4881. <productMenu id="userGuide"
  4882. type="1"
  4883. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  4884. size="3.41MB" >
  4885. </productMenu>
  4886. <productMenu id="connectGuide"
  4887. type="1"
  4888. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4889. size="1.12MB" >
  4890. </productMenu>
  4891. <productMenu id="volume"
  4892. type="11" >
  4893. </productMenu>
  4894. <productMenu id="battery"
  4895. type="1" >
  4896. </productMenu>
  4897. <productID id="3212"
  4898. />
  4899. <productGroupable type="0"
  4900. />
  4901. </product>
  4902. <product id="SRL2"
  4903. name="SRL2"
  4904. series="SRL"
  4905. latestVersion="1.0.9"
  4906. show = "1" >
  4907. <productMenu id="protocol"
  4908. type="0">
  4909. </productMenu>
  4910. <productMenu id="sip"
  4911. type="1" >
  4912. </productMenu>
  4913. <productMenu id="bluetoothIntercom"
  4914. type="1" >
  4915. </productMenu>
  4916. <productMenu id="intercomSetting"
  4917. type="1" >
  4918. </productMenu>
  4919. <productMenu id="phone"
  4920. type="2" >
  4921. </productMenu>
  4922. <productMenu id="fmradio"
  4923. type="3" >
  4924. </productMenu>
  4925. <productMenu id="deviceSetting"
  4926. type="1"
  4927. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4928. </productMenu>
  4929. <productMenu id="quickGuide"
  4930. type="1"
  4931. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  4932. size="846KB" >
  4933. </productMenu>
  4934. <productMenu id="userGuide"
  4935. type="1"
  4936. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  4937. size="1.18MB" >
  4938. </productMenu>
  4939. <productMenu id="connectGuide"
  4940. type="1"
  4941. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4942. size="1.12MB" >
  4943. </productMenu>
  4944. <productID id="4530"
  4945. />
  4946. <productGroupable type="1"
  4947. />
  4948. </product>
  4949. <product id="Neotec2"
  4950. name="SRL Neotec2"
  4951. series="SRL"
  4952. latestVersion="1.1.5"
  4953. show = "1" >
  4954. <productMenu id="protocol"
  4955. type="0">
  4956. </productMenu>
  4957. <productMenu id="sip"
  4958. type="1" >
  4959. </productMenu>
  4960. <productMenu id="bluetoothIntercom"
  4961. type="1" >
  4962. </productMenu>
  4963. <productMenu id="intercomSetting"
  4964. type="1" >
  4965. </productMenu>
  4966. <productMenu id="phone"
  4967. type="2" >
  4968. </productMenu>
  4969. <productMenu id="fmradio"
  4970. type="3" >
  4971. </productMenu>
  4972. <productMenu id="deviceSetting"
  4973. type="1"
  4974. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4975. </productMenu>
  4976. <productMenu id="quickGuide"
  4977. type="0"
  4978. url=""
  4979. size="796KB" >
  4980. </productMenu>
  4981. <productMenu id="userGuide"
  4982. type="1"
  4983. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  4984. size="1.90MB" >
  4985. </productMenu>
  4986. <productMenu id="connectGuide"
  4987. type="1"
  4988. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  4989. size="1.12MB" >
  4990. </productMenu>
  4991. <productID id="4510"
  4992. />
  4993. <productGroupable type="1"
  4994. />
  4995. </product>
  4996. <product id="SPIDERST2ANC"
  4997. name="SPIDER ST2 ANC"
  4998. series="SPIDER"
  4999. latestVersion="0.5.1"
  5000. latestVersionVoicePrompt="0.2"
  5001. latestVersionMesh="0.8"
  5002. show = "-1" >
  5003. <productMenu id="protocol"
  5004. type="2" >
  5005. </productMenu>
  5006. <productMenu id="ota"
  5007. type="0" >
  5008. <otaPackages>
  5009. <package
  5010. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5011. size="2945812"
  5012. />
  5013. </otaPackages>
  5014. </productMenu>
  5015. <productMenu id="wa"
  5016. type="0" >
  5017. </productMenu>
  5018. <productMenu id="led"
  5019. type="1" >
  5020. </productMenu>
  5021. <productMenu id="meshIntercom"
  5022. type="30" >
  5023. </productMenu>
  5024. <productMenu id="fmradio"
  5025. type="1" >
  5026. </productMenu>
  5027. <productMenu id="phone"
  5028. type="1" >
  5029. </productMenu>
  5030. <productMenu id="music"
  5031. type="1" >
  5032. </productMenu>
  5033. <productMenu id="musicSharing"
  5034. type="0" >
  5035. </productMenu>
  5036. <productMenu id="deviceSetting"
  5037. type="1"
  5038. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  5039. </productMenu>
  5040. <productMenu id="quickGuide"
  5041. type="1"
  5042. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5043. size="1.12MB" >
  5044. </productMenu>
  5045. <productMenu id="userGuide"
  5046. type="1"
  5047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5048. size="2.0MB" >
  5049. </productMenu>
  5050. <productMenu id="videoGuide"
  5051. type="1"
  5052. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5053. size="3.41MB" >
  5054. </productMenu>
  5055. <productMenu id="volume"
  5056. type="12" >
  5057. </productMenu>
  5058. <productMenu id="battery"
  5059. type="1" >
  5060. </productMenu>
  5061. <productID id="6A00"
  5062. />
  5063. <productGroupable type="0"
  5064. />
  5065. </product>
  5066. <product id="SPIDER_ST1"
  5067. name="SPIDER ST1"
  5068. series="SPIDER"
  5069. latestVersion="2.5"
  5070. latestVersionVoicePrompt="1.1"
  5071. show = "1" >
  5072. <productMenu id="protocol"
  5073. type="2" >
  5074. </productMenu>
  5075. <productMenu id="alexa"
  5076. type="0" >
  5077. </productMenu>
  5078. <productMenu id="ota"
  5079. type="2" >
  5080. <productMenuType version="2.1.9"
  5081. type="0"
  5082. />
  5083. <otaPackages>
  5084. <package
  5085. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  5086. size="2945812"
  5087. />
  5088. </otaPackages>
  5089. </productMenu>
  5090. <productMenu id="wa"
  5091. type="0" >
  5092. </productMenu>
  5093. <productMenu id="meshIntercom"
  5094. type="30" >
  5095. <productMenuType version="2.1.1"
  5096. type="20"
  5097. />
  5098. </productMenu>
  5099. <productMenu id="meshIntercom+"
  5100. type="3"
  5101. url="2" >
  5102. <productMenuType version="2.2.9"
  5103. type="2"
  5104. />
  5105. <productMenuURL version="2.1.1"
  5106. url="0"
  5107. />
  5108. </productMenu>
  5109. <productMenu id="waveIntercom"
  5110. type="1" >
  5111. <productMenuType version="2.3.9"
  5112. type="0"
  5113. />
  5114. </productMenu>
  5115. <productMenu id="phone"
  5116. type="1" >
  5117. </productMenu>
  5118. <productMenu id="music"
  5119. type="1" >
  5120. </productMenu>
  5121. <productMenu id="musicSharing"
  5122. type="0" >
  5123. </productMenu>
  5124. <productMenu id="deviceSetting"
  5125. type="1"
  5126. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5127. <productMenuURL version="2.4.9"
  5128. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5129. />
  5130. <productMenuURL version="2.2.2"
  5131. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5132. />
  5133. <productMenuURL version="2.1.1"
  5134. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5135. />
  5136. </productMenu>
  5137. <productMenu id="quickGuide"
  5138. type="0"
  5139. url=""
  5140. size="1.12MB" >
  5141. </productMenu>
  5142. <productMenu id="userGuide"
  5143. type="1"
  5144. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5145. size="2.0MB" >
  5146. </productMenu>
  5147. <productMenu id="videoGuide"
  5148. type="1"
  5149. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5150. size="3.41MB" >
  5151. </productMenu>
  5152. <productMenu id="connectGuide"
  5153. type="1"
  5154. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5155. size="1.12MB" >
  5156. </productMenu>
  5157. <productMenu id="volume"
  5158. type="12" >
  5159. </productMenu>
  5160. <productMenu id="battery"
  5161. type="1" >
  5162. </productMenu>
  5163. <productID id="6800"
  5164. />
  5165. <productGroupable type="0"
  5166. />
  5167. </product>
  5168. <product id="SPIDER_ST1"
  5169. name="SPIDER ST1"
  5170. series="SPIDER"
  5171. latestVersion="1.2.2"
  5172. show = "-1" >
  5173. <productMenu id="protocol"
  5174. type="2" >
  5175. </productMenu>
  5176. <productMenu id="alexa"
  5177. type="0" >
  5178. </productMenu>
  5179. <productMenu id="ota"
  5180. type="0" >
  5181. </productMenu>
  5182. <productMenu id="wa"
  5183. type="0" >
  5184. </productMenu>
  5185. <productMenu id="meshIntercom"
  5186. type="20" >
  5187. </productMenu>
  5188. <productMenu id="phone"
  5189. type="1" >
  5190. </productMenu>
  5191. <productMenu id="music"
  5192. type="1" >
  5193. </productMenu>
  5194. <productMenu id="deviceSetting"
  5195. type="1"
  5196. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5197. </productMenu>
  5198. <productMenu id="quickGuide"
  5199. type="0"
  5200. url=""
  5201. size="1.12MB" >
  5202. </productMenu>
  5203. <productMenu id="userGuide"
  5204. type="1"
  5205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5206. size="2.0MB" >
  5207. </productMenu>
  5208. <productMenu id="videoGuide"
  5209. type="1"
  5210. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5211. size="3.41MB" >
  5212. </productMenu>
  5213. <productMenu id="volume"
  5214. type="13" >
  5215. <productMenuType version="1.1.6"
  5216. type="14"/>
  5217. </productMenu>
  5218. <productMenu id="battery"
  5219. type="1" >
  5220. </productMenu>
  5221. <productID id="6510"
  5222. />
  5223. <productGroupable type="0"
  5224. />
  5225. </product>
  5226. <product id="SPIDER_RT1"
  5227. name="SPIDER RT1"
  5228. series="SPIDER"
  5229. latestVersion="2.5"
  5230. latestVersionVoicePrompt="1.1"
  5231. show = "1" >
  5232. <productMenu id="protocol"
  5233. type="2" >
  5234. </productMenu>
  5235. <productMenu id="alexa"
  5236. type="0" >
  5237. </productMenu>
  5238. <productMenu id="ota"
  5239. type="2" >
  5240. <productMenuType version="2.1.9"
  5241. type="0"
  5242. />
  5243. <otaPackages>
  5244. <package
  5245. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  5246. size="2945812"
  5247. />
  5248. </otaPackages>
  5249. </productMenu>
  5250. <productMenu id="wa"
  5251. type="0" >
  5252. </productMenu>
  5253. <productMenu id="meshIntercom"
  5254. type="30" >
  5255. <productMenuType version="2.1.1"
  5256. type="20"
  5257. />
  5258. </productMenu>
  5259. <productMenu id="meshIntercom+"
  5260. type="3"
  5261. url="2" >
  5262. <productMenuType version="2.2.9"
  5263. type="2"
  5264. />
  5265. <productMenuURL version="2.1.1"
  5266. url="0"
  5267. />
  5268. </productMenu>
  5269. <productMenu id="waveIntercom"
  5270. type="1" >
  5271. <productMenuType version="2.3.9"
  5272. type="0"
  5273. />
  5274. </productMenu>
  5275. <productMenu id="phone"
  5276. type="1" >
  5277. </productMenu>
  5278. <productMenu id="music"
  5279. type="1" >
  5280. </productMenu>
  5281. <productMenu id="musicSharing"
  5282. type="0" >
  5283. </productMenu>
  5284. <productMenu id="deviceSetting"
  5285. type="1"
  5286. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5287. <productMenuURL version="2.4.9"
  5288. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5289. />
  5290. <productMenuURL version="2.2.2"
  5291. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5292. />
  5293. <productMenuURL version="2.1.1"
  5294. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5295. />
  5296. </productMenu>
  5297. <productMenu id="quickGuide"
  5298. type="0"
  5299. url=""
  5300. size="1.12MB" >
  5301. </productMenu>
  5302. <productMenu id="userGuide"
  5303. type="1"
  5304. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5305. size="2.0MB" >
  5306. </productMenu>
  5307. <productMenu id="videoGuide"
  5308. type="1"
  5309. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5310. size="3.41MB" >
  5311. </productMenu>
  5312. <productMenu id="connectGuide"
  5313. type="1"
  5314. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5315. size="1.12MB" >
  5316. </productMenu>
  5317. <productMenu id="volume"
  5318. type="12" >
  5319. </productMenu>
  5320. <productMenu id="battery"
  5321. type="1" >
  5322. </productMenu>
  5323. <productID id="6810"
  5324. />
  5325. <productGroupable type="0"
  5326. />
  5327. </product>
  5328. <product id="SPIDER_RT1"
  5329. name="SPIDER RT1"
  5330. series="SPIDER"
  5331. latestVersion="1.2.2"
  5332. show = "-1" >
  5333. <productMenu id="protocol"
  5334. type="2" >
  5335. </productMenu>
  5336. <productMenu id="alexa"
  5337. type="0" >
  5338. </productMenu>
  5339. <productMenu id="ota"
  5340. type="0" >
  5341. </productMenu>
  5342. <productMenu id="wa"
  5343. type="0" >
  5344. </productMenu>
  5345. <productMenu id="meshIntercom"
  5346. type="20" >
  5347. </productMenu>
  5348. <productMenu id="phone"
  5349. type="1" >
  5350. </productMenu>
  5351. <productMenu id="music"
  5352. type="1" >
  5353. </productMenu>
  5354. <productMenu id="deviceSetting"
  5355. type="1"
  5356. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5357. </productMenu>
  5358. <productMenu id="quickGuide"
  5359. type="0"
  5360. url=""
  5361. size="1.32MB" >
  5362. </productMenu>
  5363. <productMenu id="userGuide"
  5364. type="1"
  5365. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  5366. size="1.79MB" >
  5367. </productMenu>
  5368. <productMenu id="videoGuide"
  5369. type="1"
  5370. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5371. size="3.41MB" >
  5372. </productMenu>
  5373. <productMenu id="volume"
  5374. type="13" >
  5375. <productMenuType version="1.1.6"
  5376. type="14"/>
  5377. </productMenu>
  5378. <productMenu id="battery"
  5379. type="1" >
  5380. </productMenu>
  5381. <productID id="6500"
  5382. />
  5383. <productGroupable type="0"
  5384. />
  5385. </product>
  5386. <product id="30K"
  5387. name="30K"
  5388. series="30"
  5389. latestVersion="4.5"
  5390. show = "1" >
  5391. <productMenu id="protocol"
  5392. type="2" >
  5393. </productMenu>
  5394. <productMenu id="alexa"
  5395. type="0" >
  5396. </productMenu>
  5397. <productMenu id="wa"
  5398. type="1" >
  5399. </productMenu>
  5400. <productMenu id="sip"
  5401. type="1" >
  5402. </productMenu>
  5403. <productMenu id="meshIntercom"
  5404. type="30" >
  5405. <productMenuType version="4.0.4"
  5406. type="20"
  5407. />
  5408. </productMenu>
  5409. <productMenu id="meshIntercom+"
  5410. type="3"
  5411. url="2" >
  5412. <productMenuType version="4.3.9"
  5413. type="2"
  5414. />
  5415. <productMenuURL version="4.0.4"
  5416. url="0"
  5417. />
  5418. </productMenu>
  5419. <productMenu id="waveIntercom"
  5420. type="1" >
  5421. <productMenuType version="4.4.9"
  5422. type="0"
  5423. />
  5424. </productMenu>
  5425. <productMenu id="bluetoothIntercom"
  5426. type="1" >
  5427. </productMenu>
  5428. <productMenu id="phone"
  5429. type="1" >
  5430. </productMenu>
  5431. <productMenu id="music"
  5432. type="1" >
  5433. </productMenu>
  5434. <productMenu id="fmradio"
  5435. type="1" >
  5436. </productMenu>
  5437. <productMenu id="deviceSetting"
  5438. type="1"
  5439. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  5440. <productMenuURL version="4.3"
  5441. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  5442. />
  5443. <productMenuURL version="4.2"
  5444. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  5445. />
  5446. <productMenuURL version="4.0.4"
  5447. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  5448. />
  5449. </productMenu>
  5450. <productMenu id="quickGuide"
  5451. type="0"
  5452. url=""
  5453. size="934KB" >
  5454. </productMenu>
  5455. <productMenu id="userGuide"
  5456. type="1"
  5457. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  5458. size="1.14MB" >
  5459. </productMenu>
  5460. <productMenu id="connectGuide"
  5461. type="1"
  5462. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5463. size="1.12MB" >
  5464. </productMenu>
  5465. <productMenu id="volume"
  5466. type="11" >
  5467. </productMenu>
  5468. <productMenu id="battery"
  5469. type="1" >
  5470. </productMenu>
  5471. <productID id="3211"
  5472. />
  5473. <productGroupable type="0"
  5474. />
  5475. </product>
  5476. <product id="30K"
  5477. name="30K"
  5478. series="30"
  5479. latestVersion="3.5"
  5480. show = "-1" >
  5481. <productMenu id="protocol"
  5482. type="1"
  5483. url="0">
  5484. </productMenu>
  5485. <productMenu id="wa"
  5486. type="7" >
  5487. </productMenu>
  5488. <productMenu id="sip"
  5489. type="1" >
  5490. </productMenu>
  5491. <productMenu id="meshIntercom"
  5492. type="20" >
  5493. <productMenuType version="2.9.9"
  5494. type="10"
  5495. />
  5496. </productMenu>
  5497. <productMenu id="meshIntercom+"
  5498. type="3"
  5499. url="2" >
  5500. <productMenuType version="3.4.9"
  5501. type="2"
  5502. />
  5503. <productMenuType version="2.9.9"
  5504. type="1"
  5505. />
  5506. <productMenuURL version="3.3.1"
  5507. url="0"
  5508. />
  5509. </productMenu>
  5510. <productMenu id="bluetoothIntercom"
  5511. type="1" >
  5512. </productMenu>
  5513. <productMenu id="phone"
  5514. type="1" >
  5515. </productMenu>
  5516. <productMenu id="music"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="fmradio"
  5520. type="1" >
  5521. </productMenu>
  5522. <productMenu id="deviceSetting"
  5523. type="1"
  5524. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  5525. <productMenuURL version="3.4.9"
  5526. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  5527. />
  5528. <productMenuURL version="3.3.1"
  5529. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  5530. />
  5531. <productMenuURL version="3.0.1"
  5532. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  5533. />
  5534. <productMenuURL version="2.3.1"
  5535. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  5536. />
  5537. <productMenuURL version="2.0"
  5538. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5539. />
  5540. <productMenuURL version="1.0.3"
  5541. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  5542. />
  5543. </productMenu>
  5544. <productMenu id="quickGuide"
  5545. type="0"
  5546. url=""
  5547. size="1.06MB" >
  5548. </productMenu>
  5549. <productMenu id="userGuide"
  5550. type="1"
  5551. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  5552. size="3.15MB" >
  5553. </productMenu>
  5554. <productMenu id="volume"
  5555. type="1" >
  5556. </productMenu>
  5557. <productID id="3110"
  5558. />
  5559. <productGroupable type="0"
  5560. />
  5561. </product>
  5562. <product id="FURY"
  5563. name="FURY"
  5564. series="Helmet"
  5565. latestVersion="1.0"
  5566. show = "-1" >
  5567. <productMenu id="protocol"
  5568. type="2" >
  5569. </productMenu>
  5570. <productMenu id="alexa"
  5571. type="0" >
  5572. </productMenu>
  5573. <productMenu id="ota"
  5574. type="0" >
  5575. </productMenu>
  5576. <productMenu id="wa"
  5577. type="0" >
  5578. </productMenu>
  5579. <productMenu id="meshIntercom"
  5580. type="20" >
  5581. </productMenu>
  5582. <productMenu id="phone"
  5583. type="1" >
  5584. </productMenu>
  5585. <productMenu id="music"
  5586. type="1" >
  5587. </productMenu>
  5588. <productMenu id="fmradio"
  5589. type="1" >
  5590. </productMenu>
  5591. <productMenu id="deviceSetting"
  5592. type="1"
  5593. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  5594. </productMenu>
  5595. <productMenu id="quickGuide"
  5596. type="1"
  5597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5598. size="1.12MB" >
  5599. </productMenu>
  5600. <productMenu id="userGuide"
  5601. type="1"
  5602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5603. size="2.0MB" >
  5604. </productMenu>
  5605. <productMenu id="volume"
  5606. type="13" >
  5607. </productMenu>
  5608. <productMenu id="battery"
  5609. type="1" >
  5610. </productMenu>
  5611. <productID id="5552"
  5612. />
  5613. <productGroupable type="0"
  5614. />
  5615. </product>
  5616. <product id="MomentumM"
  5617. name="Momentum EVO"
  5618. series="Helmet"
  5619. latestVersion="2.1.2"
  5620. show = "1" >
  5621. <productMenu id="protocol"
  5622. type="1"
  5623. url="0">
  5624. </productMenu>
  5625. <productMenu id="wa"
  5626. type="3" >
  5627. </productMenu>
  5628. <productMenu id="sip"
  5629. type="1" >
  5630. </productMenu>
  5631. <productMenu id="meshIntercom"
  5632. type="20" >
  5633. <productMenuType version="1.9.9"
  5634. type="10"
  5635. />
  5636. </productMenu>
  5637. <productMenu id="bluetoothIntercom"
  5638. type="1" >
  5639. </productMenu>
  5640. <productMenu id="phone"
  5641. type="1" >
  5642. </productMenu>
  5643. <productMenu id="music"
  5644. type="1" >
  5645. </productMenu>
  5646. <productMenu id="fmradio"
  5647. type="1" >
  5648. </productMenu>
  5649. <productMenu id="deviceSetting"
  5650. type="1"
  5651. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  5652. <productMenuURL version="1.0.1"
  5653. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  5654. />
  5655. </productMenu>
  5656. <productMenu id="quickGuide"
  5657. type="1"
  5658. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  5659. size="1.06MB" >
  5660. </productMenu>
  5661. <productMenu id="userGuide"
  5662. type="1"
  5663. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  5664. size="3.15MB" >
  5665. </productMenu>
  5666. <productMenu id="connectGuide"
  5667. type="1"
  5668. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  5669. size="1.12MB" >
  5670. </productMenu>
  5671. <productMenu id="volume"
  5672. type="2" >
  5673. </productMenu>
  5674. <productID id="3116"
  5675. />
  5676. <productGroupable type="0"
  5677. />
  5678. </product>
  5679. <product id="Momentum"
  5680. name="Momentum"
  5681. series="Helmet"
  5682. latestVersion="1.0.9"
  5683. show = "1" >
  5684. <productMenu id="protocol"
  5685. type="0">
  5686. </productMenu>
  5687. <productMenu id="sip"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="bluetoothIntercom"
  5691. type="1" >
  5692. </productMenu>
  5693. <productMenu id="intercomSetting"
  5694. type="1" >
  5695. </productMenu>
  5696. <productMenu id="phone"
  5697. type="2" >
  5698. </productMenu>
  5699. <productMenu id="fmradio"
  5700. type="3" >
  5701. </productMenu>
  5702. <productMenu id="deviceSetting"
  5703. type="1"
  5704. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5705. </productMenu>
  5706. <productMenu id="quickGuide"
  5707. type="1"
  5708. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  5709. size="796KB" >
  5710. </productMenu>
  5711. <productMenu id="userGuide"
  5712. type="1"
  5713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  5714. size="1.90MB" >
  5715. </productMenu>
  5716. <productMenu id="connectGuide"
  5717. type="1"
  5718. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5719. size="1.12MB" >
  5720. </productMenu>
  5721. <productID id="4310"
  5722. />
  5723. <productGroupable type="1"
  5724. />
  5725. </product>
  5726. <product id="Momentum_Pro"
  5727. name="Momentum Pro"
  5728. series="Helmet"
  5729. latestVersion="1.0.6"
  5730. show = "1" >
  5731. <productMenu id="protocol"
  5732. type="0">
  5733. </productMenu>
  5734. <productMenu id="sip"
  5735. type="1" >
  5736. </productMenu>
  5737. <productMenu id="bluetoothIntercom"
  5738. type="1" >
  5739. </productMenu>
  5740. <productMenu id="intercomSetting"
  5741. type="1" >
  5742. </productMenu>
  5743. <productMenu id="phone"
  5744. type="2" >
  5745. </productMenu>
  5746. <productMenu id="fmradio"
  5747. type="3" >
  5748. </productMenu>
  5749. <productMenu id="deviceSetting"
  5750. type="1"
  5751. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5752. </productMenu>
  5753. <productMenu id="quickGuide"
  5754. type="1"
  5755. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  5756. size="796KB" >
  5757. </productMenu>
  5758. <productMenu id="userGuide"
  5759. type="1"
  5760. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  5761. size="1.90MB" >
  5762. </productMenu>
  5763. <productMenu id="connectGuide"
  5764. type="1"
  5765. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5766. size="1.12MB" >
  5767. </productMenu>
  5768. <productID id="4330"
  5769. />
  5770. <productGroupable type="1"
  5771. />
  5772. </product>
  5773. <product id="Momentum_INC"
  5774. name="Momentum INC"
  5775. series="Helmet"
  5776. latestVersion="1.0.7"
  5777. show = "1" >
  5778. <productMenu id="protocol"
  5779. type="0">
  5780. </productMenu>
  5781. <productMenu id="sip"
  5782. type="1" >
  5783. </productMenu>
  5784. <productMenu id="bluetoothIntercom"
  5785. type="1" >
  5786. </productMenu>
  5787. <productMenu id="intercomSetting"
  5788. type="1" >
  5789. </productMenu>
  5790. <productMenu id="phone"
  5791. type="2" >
  5792. </productMenu>
  5793. <productMenu id="fmradio"
  5794. type="3" >
  5795. </productMenu>
  5796. <productMenu id="deviceSetting"
  5797. type="1"
  5798. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5799. </productMenu>
  5800. <productMenu id="quickGuide"
  5801. type="1"
  5802. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  5803. size="794KB" >
  5804. </productMenu>
  5805. <productMenu id="userGuide"
  5806. type="1"
  5807. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  5808. size="1.53MB" >
  5809. </productMenu>
  5810. <productMenu id="connectGuide"
  5811. type="1"
  5812. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5813. size="1.12MB" >
  5814. </productMenu>
  5815. <productID id="4410"
  5816. />
  5817. <productGroupable type="1"
  5818. />
  5819. </product>
  5820. <product id="Momentum_INCP"
  5821. name="Momentum INC Pro"
  5822. series="Helmet"
  5823. latestVersion="1.0.4"
  5824. show = "1" >
  5825. <productMenu id="protocol"
  5826. type="0">
  5827. </productMenu>
  5828. <productMenu id="sip"
  5829. type="1" >
  5830. </productMenu>
  5831. <productMenu id="bluetoothIntercom"
  5832. type="1" >
  5833. </productMenu>
  5834. <productMenu id="intercomSetting"
  5835. type="1" >
  5836. </productMenu>
  5837. <productMenu id="phone"
  5838. type="2" >
  5839. </productMenu>
  5840. <productMenu id="fmradio"
  5841. type="3" >
  5842. </productMenu>
  5843. <productMenu id="deviceSetting"
  5844. type="1"
  5845. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  5846. </productMenu>
  5847. <productMenu id="quickGuide"
  5848. type="1"
  5849. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  5850. size="794KB" >
  5851. </productMenu>
  5852. <productMenu id="userGuide"
  5853. type="1"
  5854. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  5855. size="1.53MB" >
  5856. </productMenu>
  5857. <productMenu id="connectGuide"
  5858. type="1"
  5859. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5860. size="1.12MB" >
  5861. </productMenu>
  5862. <productID id="4430"
  5863. />
  5864. <productGroupable type="1"
  5865. />
  5866. </product>
  5867. <product id="Momentum_Lite"
  5868. name="Momentum Lite"
  5869. series="Helmet"
  5870. latestVersion="2.0.3"
  5871. show = "1" >
  5872. <productMenu id="protocol"
  5873. type="0">
  5874. </productMenu>
  5875. <productMenu id="sip"
  5876. type="1" >
  5877. </productMenu>
  5878. <productMenu id="bluetoothIntercom"
  5879. type="1" >
  5880. </productMenu>
  5881. <productMenu id="phone"
  5882. type="2" >
  5883. </productMenu>
  5884. <productMenu id="fmradio"
  5885. type="3" >
  5886. </productMenu>
  5887. <productMenu id="deviceSetting"
  5888. type="1"
  5889. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5890. <productMenuURL version="1.1"
  5891. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  5892. />
  5893. </productMenu>
  5894. <productMenu id="quickGuide"
  5895. type="1"
  5896. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  5897. size="790KB" >
  5898. </productMenu>
  5899. <productMenu id="userGuide"
  5900. type="1"
  5901. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  5902. size="1.42MB" >
  5903. </productMenu>
  5904. <productMenu id="connectGuide"
  5905. type="1"
  5906. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  5907. size="1.12MB" >
  5908. </productMenu>
  5909. <productID id="5526"
  5910. />
  5911. <productGroupable type="0"
  5912. />
  5913. </product>
  5914. <product id="OUTRUSHM"
  5915. name="OUTRUSH M"
  5916. series="Helmet"
  5917. latestVersion="1.0"
  5918. show = "-1" >
  5919. <productMenu id="protocol"
  5920. type="2" >
  5921. </productMenu>
  5922. <productMenu id="alexa"
  5923. type="0" >
  5924. </productMenu>
  5925. <productMenu id="ota"
  5926. type="0" >
  5927. </productMenu>
  5928. <productMenu id="wa"
  5929. type="0" >
  5930. </productMenu>
  5931. <productMenu id="meshIntercom"
  5932. type="30" >
  5933. </productMenu>
  5934. <productMenu id="phone"
  5935. type="1" >
  5936. </productMenu>
  5937. <productMenu id="music"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="fmradio"
  5941. type="1" >
  5942. </productMenu>
  5943. <productMenu id="deviceSetting"
  5944. type="1"
  5945. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  5946. </productMenu>
  5947. <productMenu id="quickGuide"
  5948. type="1"
  5949. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  5950. size="1.12MB" >
  5951. </productMenu>
  5952. <productMenu id="userGuide"
  5953. type="1"
  5954. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  5955. size="2.0MB" >
  5956. </productMenu>
  5957. <productMenu id="volume"
  5958. type="13" >
  5959. </productMenu>
  5960. <productMenu id="battery"
  5961. type="1" >
  5962. </productMenu>
  5963. <productID id="5600"
  5964. />
  5965. <productGroupable type="0"
  5966. />
  5967. </product>
  5968. <product id="ProRideEVO"
  5969. name="ProRide EVO"
  5970. series="Helmet"
  5971. latestVersion="1.1.2"
  5972. show = "1" >
  5973. <productMenu id="protocol"
  5974. type="0">
  5975. </productMenu>
  5976. <productMenu id="sip"
  5977. type="1" >
  5978. </productMenu>
  5979. <productMenu id="bluetoothIntercom"
  5980. type="1" >
  5981. </productMenu>
  5982. <productMenu id="phone"
  5983. type="2" >
  5984. </productMenu>
  5985. <productMenu id="fmradio"
  5986. type="3" >
  5987. </productMenu>
  5988. <productMenu id="deviceSetting"
  5989. type="1"
  5990. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  5991. </productMenu>
  5992. <productMenu id="userGuide"
  5993. type="1"
  5994. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  5995. size="778KB" >
  5996. </productMenu>
  5997. <productMenu id="connectGuide"
  5998. type="1"
  5999. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6000. size="1.12MB" >
  6001. </productMenu>
  6002. <productID id="5426"
  6003. />
  6004. <productGroupable type="0"
  6005. />
  6006. </product>
  6007. <product id="OUTRUSHR"
  6008. name="OUTRUSH R"
  6009. series="Helmet"
  6010. latestVersion="2.1"
  6011. show = "1" >
  6012. <productMenu id="protocol"
  6013. type="3" >
  6014. </productMenu>
  6015. <productMenu id="sip"
  6016. type="1" >
  6017. </productMenu>
  6018. <productMenu id="bluetoothIntercom"
  6019. type="1" >
  6020. </productMenu>
  6021. <productMenu id="phone"
  6022. type="1" >
  6023. </productMenu>
  6024. <productMenu id="fmradio"
  6025. type="0" >
  6026. </productMenu>
  6027. <productMenu id="deviceSetting"
  6028. type="1"
  6029. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6030. </productMenu>
  6031. <productMenu id="userGuide"
  6032. type="1"
  6033. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6034. size="1.14MB" >
  6035. </productMenu>
  6036. <productMenu id="connectGuide"
  6037. type="1"
  6038. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6039. size="1.12MB" >
  6040. </productMenu>
  6041. <productID id="5440"
  6042. />
  6043. <productGroupable type="0"
  6044. />
  6045. </product>
  6046. <product id="OUTRUSHR"
  6047. name="OUTRUSH R"
  6048. series="Helmet"
  6049. latestVersion="1.1.4"
  6050. show = "-1" >
  6051. <productMenu id="protocol"
  6052. type="0">
  6053. </productMenu>
  6054. <productMenu id="sip"
  6055. type="1" >
  6056. </productMenu>
  6057. <productMenu id="bluetoothIntercom"
  6058. type="1" >
  6059. </productMenu>
  6060. <productMenu id="phone"
  6061. type="2" >
  6062. </productMenu>
  6063. <productMenu id="fmradio"
  6064. type="3" >
  6065. </productMenu>
  6066. <productMenu id="deviceSetting"
  6067. type="1"
  6068. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6069. </productMenu>
  6070. <productMenu id="userGuide"
  6071. type="1"
  6072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6073. size="660KB" >
  6074. </productMenu>
  6075. <productMenu id="connectGuide"
  6076. type="1"
  6077. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6078. size="1.12MB" >
  6079. </productMenu>
  6080. <productID id="5424"
  6081. />
  6082. <productGroupable type="0"
  6083. />
  6084. </product>
  6085. <product id="OUTSTARS"
  6086. name="OUTSTAR S"
  6087. series="Helmet"
  6088. latestVersion="2.0.1"
  6089. show = "-1" >
  6090. <productMenu id="protocol"
  6091. type="3" >
  6092. </productMenu>
  6093. <productMenu id="sip"
  6094. type="1" >
  6095. </productMenu>
  6096. <productMenu id="bluetoothIntercom"
  6097. type="1" >
  6098. </productMenu>
  6099. <productMenu id="phone"
  6100. type="1" >
  6101. </productMenu>
  6102. <productMenu id="fmradio"
  6103. type="0" >
  6104. </productMenu>
  6105. <productMenu id="deviceSetting"
  6106. type="1"
  6107. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6108. </productMenu>
  6109. <productMenu id="userGuide"
  6110. type="0"
  6111. url=""
  6112. size="1.14MB" >
  6113. </productMenu>
  6114. <productID id="5443"
  6115. />
  6116. <productGroupable type="0"
  6117. />
  6118. </product>
  6119. <product id="OUTSTARS"
  6120. name="OUTSTAR S"
  6121. series="Helmet"
  6122. latestVersion="1.1.4"
  6123. show = "1" >
  6124. <productMenu id="protocol"
  6125. type="0">
  6126. </productMenu>
  6127. <productMenu id="sip"
  6128. type="1" >
  6129. </productMenu>
  6130. <productMenu id="bluetoothIntercom"
  6131. type="1" >
  6132. </productMenu>
  6133. <productMenu id="phone"
  6134. type="2" >
  6135. </productMenu>
  6136. <productMenu id="fmradio"
  6137. type="3" >
  6138. </productMenu>
  6139. <productMenu id="deviceSetting"
  6140. type="1"
  6141. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6142. </productMenu>
  6143. <productMenu id="quickGuide"
  6144. type="1"
  6145. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6146. size="643KB" >
  6147. </productMenu>
  6148. <productMenu id="userGuide"
  6149. type="1"
  6150. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6151. size="1.15MB" >
  6152. </productMenu>
  6153. <productMenu id="connectGuide"
  6154. type="1"
  6155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6156. size="1.12MB" >
  6157. </productMenu>
  6158. <productID id="5428"
  6159. />
  6160. <productGroupable type="0"
  6161. />
  6162. </product>
  6163. <product id="OUTRIDE"
  6164. name="OUTRIDE"
  6165. series="Helmet"
  6166. latestVersion="1.0.1"
  6167. show = "1" >
  6168. <productMenu id="protocol"
  6169. type="0">
  6170. </productMenu>
  6171. <productMenu id="sip"
  6172. type="1" >
  6173. </productMenu>
  6174. <productMenu id="bluetoothIntercom"
  6175. type="1" >
  6176. </productMenu>
  6177. <productMenu id="phone"
  6178. type="2" >
  6179. </productMenu>
  6180. <productMenu id="fmradio"
  6181. type="3" >
  6182. </productMenu>
  6183. <productMenu id="deviceSetting"
  6184. type="1"
  6185. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6186. </productMenu>
  6187. <productMenu id="quickGuide"
  6188. type="1"
  6189. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6190. size="643KB" >
  6191. </productMenu>
  6192. <productMenu id="userGuide"
  6193. type="1"
  6194. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6195. size="660KB" >
  6196. </productMenu>
  6197. <productMenu id="connectGuide"
  6198. type="1"
  6199. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6200. size="1.12MB" >
  6201. </productMenu>
  6202. <productID id="5432"
  6203. />
  6204. <productGroupable type="0"
  6205. />
  6206. </product>
  6207. <product id="OUTFORCE"
  6208. name="OUTFORCE"
  6209. series="Helmet"
  6210. latestVersion="1.0.1"
  6211. show = "1" >
  6212. <productMenu id="protocol"
  6213. type="0">
  6214. </productMenu>
  6215. <productMenu id="sip"
  6216. type="1" >
  6217. </productMenu>
  6218. <productMenu id="bluetoothIntercom"
  6219. type="1" >
  6220. </productMenu>
  6221. <productMenu id="phone"
  6222. type="2" >
  6223. </productMenu>
  6224. <productMenu id="fmradio"
  6225. type="3" >
  6226. </productMenu>
  6227. <productMenu id="deviceSetting"
  6228. type="1"
  6229. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6230. </productMenu>
  6231. <productMenu id="quickGuide"
  6232. type="1"
  6233. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6234. size="643KB" >
  6235. </productMenu>
  6236. <productMenu id="userGuide"
  6237. type="1"
  6238. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6239. size="660KB" >
  6240. </productMenu>
  6241. <productMenu id="connectGuide"
  6242. type="1"
  6243. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6244. size="1.12MB" >
  6245. </productMenu>
  6246. <productID id="5430"
  6247. />
  6248. <productGroupable type="0"
  6249. />
  6250. </product>
  6251. <product id="Rumba"
  6252. name="Rumba"
  6253. series="30"
  6254. latestVersion="2.0"
  6255. show = "-1" >
  6256. <productMenu id="protocol"
  6257. type="3" >
  6258. </productMenu>
  6259. <productMenu id="sip"
  6260. type="1" >
  6261. </productMenu>
  6262. <productMenu id="bluetoothIntercom"
  6263. type="1" >
  6264. </productMenu>
  6265. <productMenu id="deviceSetting"
  6266. type="1"
  6267. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6268. </productMenu>
  6269. <productMenu id="quickGuide"
  6270. type="1"
  6271. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6272. size="344KB" >
  6273. </productMenu>
  6274. <productMenu id="userGuide"
  6275. type="1"
  6276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6277. size="1.14MB" >
  6278. </productMenu>
  6279. <productID id="6322"
  6280. />
  6281. <productGroupable type="0"
  6282. />
  6283. </product>
  6284. <product id="Savage"
  6285. name="Savage"
  6286. series="Helmet"
  6287. latestVersion="1.2.2"
  6288. show = "1" >
  6289. <productMenu id="protocol"
  6290. type="0">
  6291. </productMenu>
  6292. <productMenu id="sip"
  6293. type="1" >
  6294. </productMenu>
  6295. <productMenu id="bluetoothIntercom"
  6296. type="1" >
  6297. </productMenu>
  6298. <productMenu id="phone"
  6299. type="2" >
  6300. </productMenu>
  6301. <productMenu id="fmradio"
  6302. type="3" >
  6303. </productMenu>
  6304. <productMenu id="deviceSetting"
  6305. type="1"
  6306. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6307. <productMenuURL version="1.9"
  6308. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6309. />
  6310. <productMenuURL version="1.1"
  6311. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6312. />
  6313. </productMenu>
  6314. <productMenu id="quickGuide"
  6315. type="1"
  6316. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6317. size="796KB" >
  6318. </productMenu>
  6319. <productMenu id="userGuide"
  6320. type="1"
  6321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6322. size="910KB" >
  6323. </productMenu>
  6324. <productMenu id="connectGuide"
  6325. type="1"
  6326. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6327. size="1.12MB" >
  6328. </productMenu>
  6329. <productID id="5550"
  6330. />
  6331. <productGroupable type="0"
  6332. />
  6333. </product>
  6334. <product id="SPECTER"
  6335. name="SPECTER"
  6336. series="Helmet"
  6337. latestVersion="1.0.1"
  6338. latestVersionVoicePrompt="1.2"
  6339. show = "-1" >
  6340. <productMenu id="protocol"
  6341. type="2" >
  6342. </productMenu>
  6343. <productMenu id="ota"
  6344. type="2" >
  6345. <otaLanguages>
  6346. <otaLanguage
  6347. id="0"
  6348. name="English"
  6349. package="0"
  6350. />
  6351. <otaLanguage
  6352. id="0"
  6353. name="French"
  6354. package="1"
  6355. />
  6356. <otaLanguage
  6357. id="0"
  6358. name="Spanish"
  6359. package="2"
  6360. />
  6361. <otaLanguage
  6362. id="0"
  6363. name="Italian"
  6364. package="3"
  6365. />
  6366. <otaLanguage
  6367. id="0"
  6368. name="German"
  6369. package="4"
  6370. />
  6371. <otaLanguage
  6372. id="0"
  6373. name="Dutch"
  6374. package="5"
  6375. />
  6376. <otaLanguage
  6377. id="0"
  6378. name="Russian"
  6379. package="6"
  6380. />
  6381. <otaLanguage
  6382. id="0"
  6383. name="Chinese"
  6384. package="7"
  6385. />
  6386. <otaLanguage
  6387. id="0"
  6388. name="Korean"
  6389. package="8"
  6390. />
  6391. <otaLanguage
  6392. id="0"
  6393. name="Japanese"
  6394. package="9"
  6395. />
  6396. <otaLanguage
  6397. id="0"
  6398. name="Finnish"
  6399. package="10"
  6400. />
  6401. <otaLanguage
  6402. id="0"
  6403. name="Polish"
  6404. package="11"
  6405. />
  6406. </otaLanguages>
  6407. <otaPackages>
  6408. <package
  6409. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1.img"
  6410. size="5183988"
  6411. />
  6412. <package
  6413. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fr-FR.img"
  6414. size="5183988"
  6415. />
  6416. <package
  6417. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-es-ES.img"
  6418. size="5183988"
  6419. />
  6420. <package
  6421. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-it-IT.img"
  6422. size="5183988"
  6423. />
  6424. <package
  6425. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-de-DE.img"
  6426. size="5183988"
  6427. />
  6428. <package
  6429. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-nl-NL.img"
  6430. size="5183988"
  6431. />
  6432. <package
  6433. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ru-RU.img"
  6434. size="5183988"
  6435. />
  6436. <package
  6437. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-cmn-CN.img"
  6438. size="5183988"
  6439. />
  6440. <package
  6441. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ko-KR.img"
  6442. size="5183988"
  6443. />
  6444. <package
  6445. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-ja-JP.img"
  6446. size="5183988"
  6447. />
  6448. <package
  6449. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-fi-FI.img"
  6450. size="5183988"
  6451. />
  6452. <package
  6453. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.1-build1-pl-PL.img"
  6454. size="5183988"
  6455. />
  6456. </otaPackages>
  6457. </productMenu>
  6458. <productMenu id="wa"
  6459. type="0" >
  6460. </productMenu>
  6461. <productMenu id="led"
  6462. type="5" >
  6463. </productMenu>
  6464. <productMenu id="led+"
  6465. type="2"
  6466. url="1" >
  6467. </productMenu>
  6468. <productMenu id="meshIntercom+"
  6469. type="3"
  6470. url="2" >
  6471. </productMenu>
  6472. <productMenu id="waveIntercom"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="fmradio"
  6476. type="0" >
  6477. </productMenu>
  6478. <productMenu id="phone"
  6479. type="1" >
  6480. </productMenu>
  6481. <productMenu id="music"
  6482. type="1" >
  6483. </productMenu>
  6484. <productMenu id="musicSharing"
  6485. type="0" >
  6486. </productMenu>
  6487. <productMenu id="deviceSetting"
  6488. type="1"
  6489. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6490. </productMenu>
  6491. <productMenu id="quickGuide"
  6492. type="0"
  6493. url=""
  6494. size="1.12MB" >
  6495. </productMenu>
  6496. <productMenu id="userGuide"
  6497. type="0"
  6498. url=""
  6499. size="2.0MB" >
  6500. </productMenu>
  6501. <productMenu id="videoGuide"
  6502. type="0"
  6503. url=""
  6504. size="3.41MB" >
  6505. </productMenu>
  6506. <productMenu id="volume"
  6507. type="16" >
  6508. </productMenu>
  6509. <productMenu id="battery"
  6510. type="1" >
  6511. </productMenu>
  6512. <productID id="6A11"
  6513. />
  6514. <productGroupable type="0"
  6515. />
  6516. </product>
  6517. <product id="SPECTER"
  6518. name="SPECTER"
  6519. series="Helmet"
  6520. latestVersion="1.0.1"
  6521. latestVersionVoicePrompt="1.2"
  6522. show = "-1" >
  6523. <productMenu id="protocol"
  6524. type="2" >
  6525. </productMenu>
  6526. <productMenu id="ota"
  6527. type="2" >
  6528. <otaLanguages>
  6529. <otaLanguage
  6530. id="0"
  6531. name="English"
  6532. package="0"
  6533. />
  6534. <otaLanguage
  6535. id="0"
  6536. name="French"
  6537. package="1"
  6538. />
  6539. <otaLanguage
  6540. id="0"
  6541. name="Spanish"
  6542. package="2"
  6543. />
  6544. <otaLanguage
  6545. id="0"
  6546. name="Italian"
  6547. package="3"
  6548. />
  6549. <otaLanguage
  6550. id="0"
  6551. name="German"
  6552. package="4"
  6553. />
  6554. <otaLanguage
  6555. id="0"
  6556. name="Dutch"
  6557. package="5"
  6558. />
  6559. <otaLanguage
  6560. id="0"
  6561. name="Russian"
  6562. package="6"
  6563. />
  6564. <otaLanguage
  6565. id="0"
  6566. name="Chinese"
  6567. package="7"
  6568. />
  6569. <otaLanguage
  6570. id="0"
  6571. name="Korean"
  6572. package="8"
  6573. />
  6574. <otaLanguage
  6575. id="0"
  6576. name="Japanese"
  6577. package="9"
  6578. />
  6579. <otaLanguage
  6580. id="0"
  6581. name="Finnish"
  6582. package="10"
  6583. />
  6584. <otaLanguage
  6585. id="0"
  6586. name="Polish"
  6587. package="11"
  6588. />
  6589. </otaLanguages>
  6590. <otaPackages>
  6591. <package
  6592. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1.img"
  6593. size="5183988"
  6594. />
  6595. <package
  6596. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fr-FR.img"
  6597. size="5183988"
  6598. />
  6599. <package
  6600. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-es-ES.img"
  6601. size="5183988"
  6602. />
  6603. <package
  6604. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-it-IT.img"
  6605. size="5183988"
  6606. />
  6607. <package
  6608. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-de-DE.img"
  6609. size="5183988"
  6610. />
  6611. <package
  6612. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-nl-NL.img"
  6613. size="5183988"
  6614. />
  6615. <package
  6616. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ru-RU.img"
  6617. size="5183988"
  6618. />
  6619. <package
  6620. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-cmn-CN.img"
  6621. size="5183988"
  6622. />
  6623. <package
  6624. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ko-KR.img"
  6625. size="5183988"
  6626. />
  6627. <package
  6628. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-ja-JP.img"
  6629. size="5183988"
  6630. />
  6631. <package
  6632. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-fi-FI.img"
  6633. size="5183988"
  6634. />
  6635. <package
  6636. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.1-build1-pl-PL.img"
  6637. size="5183988"
  6638. />
  6639. </otaPackages>
  6640. </productMenu>
  6641. <productMenu id="wa"
  6642. type="0" >
  6643. </productMenu>
  6644. <productMenu id="led"
  6645. type="5" >
  6646. </productMenu>
  6647. <productMenu id="led+"
  6648. type="2"
  6649. url="1" >
  6650. </productMenu>
  6651. <productMenu id="meshIntercom+"
  6652. type="3"
  6653. url="2" >
  6654. </productMenu>
  6655. <productMenu id="waveIntercom"
  6656. type="1" >
  6657. </productMenu>
  6658. <productMenu id="fmradio"
  6659. type="0" >
  6660. </productMenu>
  6661. <productMenu id="phone"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="music"
  6665. type="1" >
  6666. </productMenu>
  6667. <productMenu id="musicSharing"
  6668. type="0" >
  6669. </productMenu>
  6670. <productMenu id="deviceSetting"
  6671. type="1"
  6672. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6673. <productMenuURL version="1.0"
  6674. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  6675. />
  6676. </productMenu>
  6677. <productMenu id="quickGuide"
  6678. type="0"
  6679. url=""
  6680. size="1.12MB" >
  6681. </productMenu>
  6682. <productMenu id="userGuide"
  6683. type="0"
  6684. url=""
  6685. size="2.0MB" >
  6686. </productMenu>
  6687. <productMenu id="videoGuide"
  6688. type="0"
  6689. url=""
  6690. size="3.41MB" >
  6691. </productMenu>
  6692. <productMenu id="volume"
  6693. type="16" >
  6694. </productMenu>
  6695. <productMenu id="battery"
  6696. type="1" >
  6697. </productMenu>
  6698. <productID id="6A0A"
  6699. />
  6700. <productGroupable type="0"
  6701. />
  6702. </product>
  6703. <product id="OUTLANDER"
  6704. name="OUTLANDER"
  6705. series="Helmet"
  6706. latestVersion="1.0.2"
  6707. latestVersionVoicePrompt="1.2"
  6708. show = "-1" >
  6709. <productMenu id="protocol"
  6710. type="2" >
  6711. </productMenu>
  6712. <productMenu id="ota"
  6713. type="2" >
  6714. <otaLanguages>
  6715. <otaLanguage
  6716. id="0"
  6717. name="English"
  6718. package="0"
  6719. />
  6720. <otaLanguage
  6721. id="0"
  6722. name="French"
  6723. package="1"
  6724. />
  6725. <otaLanguage
  6726. id="0"
  6727. name="Spanish"
  6728. package="2"
  6729. />
  6730. <otaLanguage
  6731. id="0"
  6732. name="Italian"
  6733. package="3"
  6734. />
  6735. <otaLanguage
  6736. id="0"
  6737. name="German"
  6738. package="4"
  6739. />
  6740. <otaLanguage
  6741. id="0"
  6742. name="Dutch"
  6743. package="5"
  6744. />
  6745. <otaLanguage
  6746. id="0"
  6747. name="Russian"
  6748. package="6"
  6749. />
  6750. <otaLanguage
  6751. id="0"
  6752. name="Chinese"
  6753. package="7"
  6754. />
  6755. <otaLanguage
  6756. id="0"
  6757. name="Korean"
  6758. package="8"
  6759. />
  6760. <otaLanguage
  6761. id="0"
  6762. name="Japanese"
  6763. package="9"
  6764. />
  6765. <otaLanguage
  6766. id="0"
  6767. name="Finnish"
  6768. package="10"
  6769. />
  6770. <otaLanguage
  6771. id="0"
  6772. name="Polish"
  6773. package="11"
  6774. />
  6775. </otaLanguages>
  6776. <otaPackages>
  6777. <package
  6778. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1.img"
  6779. size="5183988"
  6780. />
  6781. <package
  6782. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fr-FR.img"
  6783. size="5183988"
  6784. />
  6785. <package
  6786. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-es-ES.img"
  6787. size="5183988"
  6788. />
  6789. <package
  6790. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-it-IT.img"
  6791. size="5183988"
  6792. />
  6793. <package
  6794. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-de-DE.img"
  6795. size="5183988"
  6796. />
  6797. <package
  6798. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-nl-NL.img"
  6799. size="5183988"
  6800. />
  6801. <package
  6802. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ru-RU.img"
  6803. size="5183988"
  6804. />
  6805. <package
  6806. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-cmn-CN.img"
  6807. size="5183988"
  6808. />
  6809. <package
  6810. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ko-KR.img"
  6811. size="5183988"
  6812. />
  6813. <package
  6814. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-ja-JP.img"
  6815. size="5183988"
  6816. />
  6817. <package
  6818. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-fi-FI.img"
  6819. size="5183988"
  6820. />
  6821. <package
  6822. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.2-build1-pl-PL.img"
  6823. size="5183988"
  6824. />
  6825. </otaPackages>
  6826. </productMenu>
  6827. <productMenu id="wa"
  6828. type="0" >
  6829. </productMenu>
  6830. <productMenu id="led"
  6831. type="5" >
  6832. </productMenu>
  6833. <productMenu id="led+"
  6834. type="2"
  6835. url="1" >
  6836. </productMenu>
  6837. <productMenu id="meshIntercom+"
  6838. type="3"
  6839. url="2" >
  6840. </productMenu>
  6841. <productMenu id="waveIntercom"
  6842. type="1" >
  6843. </productMenu>
  6844. <productMenu id="fmradio"
  6845. type="0" >
  6846. </productMenu>
  6847. <productMenu id="phone"
  6848. type="1" >
  6849. </productMenu>
  6850. <productMenu id="music"
  6851. type="1" >
  6852. </productMenu>
  6853. <productMenu id="musicSharing"
  6854. type="0" >
  6855. </productMenu>
  6856. <productMenu id="deviceSetting"
  6857. type="1"
  6858. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  6859. </productMenu>
  6860. <productMenu id="quickGuide"
  6861. type="0"
  6862. url=""
  6863. size="1.12MB" >
  6864. </productMenu>
  6865. <productMenu id="userGuide"
  6866. type="0"
  6867. url=""
  6868. size="2.0MB" >
  6869. </productMenu>
  6870. <productMenu id="videoGuide"
  6871. type="0"
  6872. url=""
  6873. size="3.41MB" >
  6874. </productMenu>
  6875. <productMenu id="volume"
  6876. type="16" >
  6877. </productMenu>
  6878. <productMenu id="battery"
  6879. type="1" >
  6880. </productMenu>
  6881. <productID id="6A05"
  6882. />
  6883. <productGroupable type="0"
  6884. />
  6885. </product>
  6886. <product id="OUTRUSH2"
  6887. name="OUTRUSH 2"
  6888. series="Helmet"
  6889. latestVersion="1.0.2"
  6890. latestVersionVoicePrompt="1.1"
  6891. show = "-1" >
  6892. <productMenu id="protocol"
  6893. type="2" >
  6894. </productMenu>
  6895. <productMenu id="alexa"
  6896. type="0" >
  6897. </productMenu>
  6898. <productMenu id="ota"
  6899. type="2" >
  6900. <otaPackages>
  6901. <package
  6902. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  6903. size="2945812"
  6904. />
  6905. </otaPackages>
  6906. </productMenu>
  6907. <productMenu id="meshIntercom+"
  6908. type="3"
  6909. url="2" >
  6910. </productMenu>
  6911. <productMenu id="waveIntercom"
  6912. type="1" >
  6913. </productMenu>
  6914. <productMenu id="phone"
  6915. type="1" >
  6916. </productMenu>
  6917. <productMenu id="music"
  6918. type="1" >
  6919. </productMenu>
  6920. <productMenu id="musicSharing"
  6921. type="0" >
  6922. </productMenu>
  6923. <productMenu id="deviceSetting"
  6924. type="1"
  6925. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6926. <productMenuURL version="1.0"
  6927. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  6928. />
  6929. </productMenu>
  6930. <productMenu id="quickGuide"
  6931. type="0"
  6932. url=""
  6933. size="1.12MB" >
  6934. </productMenu>
  6935. <productMenu id="userGuide"
  6936. type="1"
  6937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  6938. size="2.0MB" >
  6939. </productMenu>
  6940. <productMenu id="volume"
  6941. type="12" >
  6942. </productMenu>
  6943. <productMenu id="battery"
  6944. type="1" >
  6945. </productMenu>
  6946. <productID id="684A"
  6947. />
  6948. <productGroupable type="0"
  6949. />
  6950. </product>
  6951. <product id="OUTSTAR2"
  6952. name="OUTSTAR 2"
  6953. series="Helmet"
  6954. latestVersion="1.0.1"
  6955. latestVersionVoicePrompt="1.1"
  6956. show = "-1" >
  6957. <productMenu id="protocol"
  6958. type="2" >
  6959. </productMenu>
  6960. <productMenu id="alexa"
  6961. type="0" >
  6962. </productMenu>
  6963. <productMenu id="ota"
  6964. type="2" >
  6965. <otaPackages>
  6966. <package
  6967. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  6968. size="2945812"
  6969. />
  6970. </otaPackages>
  6971. </productMenu>
  6972. <productMenu id="meshIntercom+"
  6973. type="3"
  6974. url="2" >
  6975. </productMenu>
  6976. <productMenu id="waveIntercom"
  6977. type="1" >
  6978. </productMenu>
  6979. <productMenu id="phone"
  6980. type="1" >
  6981. </productMenu>
  6982. <productMenu id="music"
  6983. type="1" >
  6984. </productMenu>
  6985. <productMenu id="musicSharing"
  6986. type="0" >
  6987. </productMenu>
  6988. <productMenu id="deviceSetting"
  6989. type="1"
  6990. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  6991. </productMenu>
  6992. <productMenu id="quickGuide"
  6993. type="0"
  6994. url=""
  6995. size="1.12MB" >
  6996. </productMenu>
  6997. <productMenu id="userGuide"
  6998. type="1"
  6999. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  7000. size="2.0MB" >
  7001. </productMenu>
  7002. <productMenu id="volume"
  7003. type="12" >
  7004. </productMenu>
  7005. <productMenu id="battery"
  7006. type="1" >
  7007. </productMenu>
  7008. <productID id="684B"
  7009. />
  7010. <productGroupable type="0"
  7011. />
  7012. </product>
  7013. <product id="SURGE"
  7014. name="SURGE"
  7015. series="Helmet"
  7016. latestVersion="1.2"
  7017. latestVersionVoicePrompt="1.3"
  7018. show = "1" >
  7019. <productMenu id="protocol"
  7020. type="2" >
  7021. </productMenu>
  7022. <productMenu id="alexa"
  7023. type="0" >
  7024. </productMenu>
  7025. <productMenu id="ota"
  7026. type="2" >
  7027. <otaPackages>
  7028. <package
  7029. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7030. size="2945812"
  7031. />
  7032. </otaPackages>
  7033. </productMenu>
  7034. <productMenu id="meshIntercom"
  7035. type="30" >
  7036. </productMenu>
  7037. <productMenu id="meshIntercom+"
  7038. type="3"
  7039. url="2" >
  7040. <productMenuType version="1.0.1"
  7041. type="2"
  7042. />
  7043. </productMenu>
  7044. <productMenu id="waveIntercom"
  7045. type="1" >
  7046. <productMenuType version="1.0.9"
  7047. type="0"
  7048. />
  7049. </productMenu>
  7050. <productMenu id="phone"
  7051. type="1" >
  7052. </productMenu>
  7053. <productMenu id="music"
  7054. type="1" >
  7055. </productMenu>
  7056. <productMenu id="musicSharing"
  7057. type="0" >
  7058. </productMenu>
  7059. <productMenu id="deviceSetting"
  7060. type="1"
  7061. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7062. <productMenuURL version="1.1.9"
  7063. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7064. />
  7065. <productMenuURL version="1.0.1"
  7066. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7067. />
  7068. </productMenu>
  7069. <productMenu id="quickGuide"
  7070. type="0"
  7071. url=""
  7072. size="1.12MB" >
  7073. </productMenu>
  7074. <productMenu id="userGuide"
  7075. type="1"
  7076. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7077. size="2.0MB" >
  7078. </productMenu>
  7079. <productMenu id="volume"
  7080. type="12" >
  7081. </productMenu>
  7082. <productMenu id="battery"
  7083. type="1" >
  7084. </productMenu>
  7085. <productID id="6840"
  7086. />
  7087. <productGroupable type="0"
  7088. />
  7089. </product>
  7090. <product id="Cavalry2"
  7091. name="Cavalry 2"
  7092. series="Helmet"
  7093. latestVersion="1.2"
  7094. latestVersionVoicePrompt="1.3"
  7095. show = "1" >
  7096. <productMenu id="protocol"
  7097. type="2" >
  7098. </productMenu>
  7099. <productMenu id="alexa"
  7100. type="0" >
  7101. </productMenu>
  7102. <productMenu id="ota"
  7103. type="2" >
  7104. <otaPackages>
  7105. <package
  7106. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7107. size="3144148"
  7108. />
  7109. </otaPackages>
  7110. </productMenu>
  7111. <productMenu id="wa"
  7112. type="0" >
  7113. </productMenu>
  7114. <productMenu id="meshIntercom"
  7115. type="30" >
  7116. </productMenu>
  7117. <productMenu id="meshIntercom+"
  7118. type="3"
  7119. url="2" >
  7120. <productMenuType version="1.0"
  7121. type="2"
  7122. />
  7123. </productMenu>
  7124. <productMenu id="waveIntercom"
  7125. type="1" >
  7126. <productMenuType version="1.0.9"
  7127. type="0"
  7128. />
  7129. </productMenu>
  7130. <productMenu id="phone"
  7131. type="1" >
  7132. </productMenu>
  7133. <productMenu id="music"
  7134. type="1" >
  7135. </productMenu>
  7136. <productMenu id="musicSharing"
  7137. type="0" >
  7138. </productMenu>
  7139. <productMenu id="deviceSetting"
  7140. type="1"
  7141. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7142. <productMenuURL version="1.1.9"
  7143. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7144. />
  7145. <productMenuURL version="1.0"
  7146. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7147. />
  7148. </productMenu>
  7149. <productMenu id="quickGuide"
  7150. type="0"
  7151. url=""
  7152. size="1.12MB" >
  7153. </productMenu>
  7154. <productMenu id="userGuide"
  7155. type="1"
  7156. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7157. size="2.0MB" >
  7158. </productMenu>
  7159. <productMenu id="connectGuide"
  7160. type="1"
  7161. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7162. size="1.12MB" >
  7163. </productMenu>
  7164. <productMenu id="volume"
  7165. type="12" >
  7166. </productMenu>
  7167. <productMenu id="battery"
  7168. type="1" >
  7169. </productMenu>
  7170. <productID id="6839"
  7171. />
  7172. <productGroupable type="0"
  7173. />
  7174. </product>
  7175. <product id="Cavalry"
  7176. name="Cavalry"
  7177. series="Helmet"
  7178. latestVersion="1.2.2"
  7179. show = "1" >
  7180. <productMenu id="protocol"
  7181. type="0">
  7182. </productMenu>
  7183. <productMenu id="sip"
  7184. type="1" >
  7185. </productMenu>
  7186. <productMenu id="bluetoothIntercom"
  7187. type="1" >
  7188. </productMenu>
  7189. <productMenu id="phone"
  7190. type="2" >
  7191. </productMenu>
  7192. <productMenu id="fmradio"
  7193. type="3" >
  7194. </productMenu>
  7195. <productMenu id="deviceSetting"
  7196. type="1"
  7197. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7198. <productMenuURL version="1.9"
  7199. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7200. />
  7201. <productMenuURL version="1.0.1"
  7202. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7203. />
  7204. </productMenu>
  7205. <productMenu id="quickGuide"
  7206. type="1"
  7207. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7208. size="795KB" >
  7209. </productMenu>
  7210. <productMenu id="userGuide"
  7211. type="1"
  7212. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7213. size="1.87MB" >
  7214. </productMenu>
  7215. <productMenu id="connectGuide"
  7216. type="1"
  7217. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7218. size="1.12MB" >
  7219. </productMenu>
  7220. <productID id="5524"
  7221. />
  7222. <productGroupable type="0"
  7223. />
  7224. </product>
  7225. <product id="Cavalry_Lite"
  7226. name="Cavalry Lite"
  7227. series="Helmet"
  7228. latestVersion="1.0.2"
  7229. show = "1" >
  7230. <productMenu id="protocol"
  7231. type="0">
  7232. </productMenu>
  7233. <productMenu id="sip"
  7234. type="1" >
  7235. </productMenu>
  7236. <productMenu id="bluetoothIntercom"
  7237. type="1" >
  7238. </productMenu>
  7239. <productMenu id="phone"
  7240. type="2" >
  7241. </productMenu>
  7242. <productMenu id="fmradio"
  7243. type="3" >
  7244. </productMenu>
  7245. <productMenu id="deviceSetting"
  7246. type="1"
  7247. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7248. </productMenu>
  7249. <productMenu id="userGuide"
  7250. type="1"
  7251. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7252. size="1.74MB" >
  7253. </productMenu>
  7254. <productMenu id="connectGuide"
  7255. type="1"
  7256. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7257. size="1.12MB" >
  7258. </productMenu>
  7259. <productID id="5536"
  7260. />
  7261. <productGroupable type="0"
  7262. />
  7263. </product>
  7264. <product id="SF4"
  7265. name="SF4"
  7266. series="SF"
  7267. latestVersion="1.1.5"
  7268. show = "-1" >
  7269. <productMenu id="protocol"
  7270. type="1"
  7271. url="3">
  7272. </productMenu>
  7273. <productMenu id="sip"
  7274. type="1" >
  7275. </productMenu>
  7276. <productMenu id="bluetoothIntercom"
  7277. type="1" >
  7278. </productMenu>
  7279. <productMenu id="phone"
  7280. type="1" >
  7281. </productMenu>
  7282. <productMenu id="music"
  7283. type="1" >
  7284. </productMenu>
  7285. <productMenu id="fmradio"
  7286. type="1" >
  7287. </productMenu>
  7288. <productMenu id="deviceSetting"
  7289. type="1"
  7290. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7291. <productMenuURL version="1.0.1"
  7292. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7293. />
  7294. </productMenu>
  7295. <productMenu id="quickGuide"
  7296. type="1"
  7297. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  7298. size="607KB" >
  7299. </productMenu>
  7300. <productMenu id="userGuide"
  7301. type="1"
  7302. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7303. size="1.91MB" >
  7304. </productMenu>
  7305. <productMenu id="volume"
  7306. type="4" >
  7307. </productMenu>
  7308. <productID id="5414"
  7309. />
  7310. <productGroupable type="0"
  7311. />
  7312. </product>
  7313. <product id="SF4"
  7314. name="SF4"
  7315. series="SF"
  7316. latestVersion="3.4.4"
  7317. show = "1" >
  7318. <productMenu id="protocol"
  7319. type="2" >
  7320. </productMenu>
  7321. <productMenu id="sip"
  7322. type="1" >
  7323. </productMenu>
  7324. <productMenu id="bluetoothIntercom"
  7325. type="1" >
  7326. </productMenu>
  7327. <productMenu id="phone"
  7328. type="1" >
  7329. </productMenu>
  7330. <productMenu id="music"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="fmradio"
  7334. type="1" >
  7335. </productMenu>
  7336. <productMenu id="deviceSetting"
  7337. type="1"
  7338. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  7339. <productMenuURL version="3.0"
  7340. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  7341. />
  7342. </productMenu>
  7343. <productMenu id="quickGuide"
  7344. type="0"
  7345. url=""
  7346. size="934KB" >
  7347. </productMenu>
  7348. <productMenu id="userGuide"
  7349. type="1"
  7350. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7351. size="1.14MB" >
  7352. </productMenu>
  7353. <productMenu id="connectGuide"
  7354. type="1"
  7355. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7356. size="1.12MB" >
  7357. </productMenu>
  7358. <productMenu id="volume"
  7359. type="15" >
  7360. </productMenu>
  7361. <productID id="3370"
  7362. />
  7363. <productGroupable type="0"
  7364. />
  7365. </product>
  7366. <product id="SF2"
  7367. name="SF2"
  7368. series="SF"
  7369. latestVersion="1.2.1"
  7370. show = "-1" >
  7371. <productMenu id="protocol"
  7372. type="1"
  7373. url="2">
  7374. </productMenu>
  7375. <productMenu id="sip"
  7376. type="1" >
  7377. </productMenu>
  7378. <productMenu id="bluetoothIntercom"
  7379. type="1" >
  7380. </productMenu>
  7381. <productMenu id="phone"
  7382. type="1" >
  7383. </productMenu>
  7384. <productMenu id="music"
  7385. type="1" >
  7386. </productMenu>
  7387. <productMenu id="fmradio"
  7388. type="1" >
  7389. </productMenu>
  7390. <productMenu id="deviceSetting"
  7391. type="1"
  7392. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7393. <productMenuURL version="1.0.1"
  7394. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7395. />
  7396. </productMenu>
  7397. <productMenu id="quickGuide"
  7398. type="1"
  7399. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  7400. size="607KB" >
  7401. </productMenu>
  7402. <productMenu id="userGuide"
  7403. type="1"
  7404. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7405. size="1.91MB" >
  7406. </productMenu>
  7407. <productMenu id="volume"
  7408. type="4" >
  7409. </productMenu>
  7410. <productID id="5412"
  7411. />
  7412. <productGroupable type="0"
  7413. />
  7414. </product>
  7415. <product id="SF2"
  7416. name="SF2"
  7417. series="SF"
  7418. latestVersion="3.3.4"
  7419. show = "1" >
  7420. <productMenu id="protocol"
  7421. type="2" >
  7422. </productMenu>
  7423. <productMenu id="sip"
  7424. type="1" >
  7425. </productMenu>
  7426. <productMenu id="bluetoothIntercom"
  7427. type="1" >
  7428. </productMenu>
  7429. <productMenu id="phone"
  7430. type="1" >
  7431. </productMenu>
  7432. <productMenu id="music"
  7433. type="1" >
  7434. </productMenu>
  7435. <productMenu id="fmradio"
  7436. type="0" >
  7437. </productMenu>
  7438. <productMenu id="deviceSetting"
  7439. type="1"
  7440. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7441. <productMenuURL version="3.0"
  7442. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7443. />
  7444. </productMenu>
  7445. <productMenu id="quickGuide"
  7446. type="0"
  7447. url=""
  7448. size="934KB" >
  7449. </productMenu>
  7450. <productMenu id="userGuide"
  7451. type="1"
  7452. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7453. size="1.14MB" >
  7454. </productMenu>
  7455. <productMenu id="connectGuide"
  7456. type="1"
  7457. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7458. size="1.12MB" >
  7459. </productMenu>
  7460. <productMenu id="volume"
  7461. type="15" >
  7462. </productMenu>
  7463. <productID id="3360"
  7464. />
  7465. <productGroupable type="0"
  7466. />
  7467. </product>
  7468. <product id="SF1"
  7469. name="SF1"
  7470. series="SF"
  7471. latestVersion="2.0.5"
  7472. show = "-1" >
  7473. <productMenu id="protocol"
  7474. type="1"
  7475. url="1">
  7476. </productMenu>
  7477. <productMenu id="sip"
  7478. type="1" >
  7479. </productMenu>
  7480. <productMenu id="bluetoothIntercom"
  7481. type="1" >
  7482. <productMenuType version="1.1"
  7483. type="0"
  7484. />
  7485. </productMenu>
  7486. <productMenu id="phone"
  7487. type="1" >
  7488. </productMenu>
  7489. <productMenu id="music"
  7490. type="1" >
  7491. </productMenu>
  7492. <productMenu id="deviceSetting"
  7493. type="1"
  7494. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  7495. <productMenuURL version="1.1"
  7496. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  7497. />
  7498. <productMenuURL version="1.0"
  7499. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  7500. />
  7501. </productMenu>
  7502. <productMenu id="quickGuide"
  7503. type="1"
  7504. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  7505. size="401KB" >
  7506. </productMenu>
  7507. <productMenu id="userGuide"
  7508. type="1"
  7509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7510. size="1.91MB" >
  7511. </productMenu>
  7512. <productMenu id="volume"
  7513. type="3" >
  7514. </productMenu>
  7515. <productID id="5410"
  7516. />
  7517. <productGroupable type="0"
  7518. />
  7519. </product>
  7520. <product id="SF1"
  7521. name="SF1"
  7522. series="SF"
  7523. latestVersion="3.3.4"
  7524. show = "1" >
  7525. <productMenu id="protocol"
  7526. type="2" >
  7527. </productMenu>
  7528. <productMenu id="sip"
  7529. type="1" >
  7530. </productMenu>
  7531. <productMenu id="bluetoothIntercom"
  7532. type="1" >
  7533. </productMenu>
  7534. <productMenu id="phone"
  7535. type="1" >
  7536. </productMenu>
  7537. <productMenu id="music"
  7538. type="1" >
  7539. </productMenu>
  7540. <productMenu id="fmradio"
  7541. type="0" >
  7542. </productMenu>
  7543. <productMenu id="deviceSetting"
  7544. type="1"
  7545. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7546. <productMenuURL version="3.0"
  7547. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7548. />
  7549. </productMenu>
  7550. <productMenu id="quickGuide"
  7551. type="0"
  7552. url=""
  7553. size="934KB" >
  7554. </productMenu>
  7555. <productMenu id="userGuide"
  7556. type="1"
  7557. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7558. size="1.14MB" >
  7559. </productMenu>
  7560. <productMenu id="connectGuide"
  7561. type="1"
  7562. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7563. size="1.12MB" >
  7564. </productMenu>
  7565. <productMenu id="volume"
  7566. type="15" >
  7567. </productMenu>
  7568. <productID id="3350"
  7569. />
  7570. <productGroupable type="0"
  7571. />
  7572. </product>
  7573. <product id="SFR"
  7574. name="SFR"
  7575. series="SF"
  7576. latestVersion="1.1.1"
  7577. show = "1" >
  7578. <productMenu id="protocol"
  7579. type="1"
  7580. url="3">
  7581. </productMenu>
  7582. <productMenu id="sip"
  7583. type="1" >
  7584. </productMenu>
  7585. <productMenu id="bluetoothIntercom"
  7586. type="1" >
  7587. </productMenu>
  7588. <productMenu id="phone"
  7589. type="1" >
  7590. </productMenu>
  7591. <productMenu id="music"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="fmradio"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="deviceSetting"
  7598. type="1"
  7599. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7600. </productMenu>
  7601. <productMenu id="quickGuide"
  7602. type="1"
  7603. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  7604. size="607KB" >
  7605. </productMenu>
  7606. <productMenu id="userGuide"
  7607. type="1"
  7608. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  7609. size="1.91MB" >
  7610. </productMenu>
  7611. <productMenu id="volume"
  7612. type="4" >
  7613. </productMenu>
  7614. <productID id="5418"
  7615. />
  7616. <productGroupable type="0"
  7617. />
  7618. </product>
  7619. <product id="20S"
  7620. name="20S"
  7621. series="20"
  7622. latestVersion="2.2.3"
  7623. show = "1" >
  7624. <productMenu id="protocol"
  7625. type="0">
  7626. </productMenu>
  7627. <productMenu id="wa"
  7628. type="5" >
  7629. </productMenu>
  7630. <productMenu id="sip"
  7631. type="1" >
  7632. <productMenuType version="1.0"
  7633. type="0"
  7634. />
  7635. </productMenu>
  7636. <productMenu id="bluetoothIntercom"
  7637. type="1" >
  7638. <productMenuType version="1.0"
  7639. type="0"
  7640. />
  7641. </productMenu>
  7642. <productMenu id="intercomSetting"
  7643. type="1" >
  7644. </productMenu>
  7645. <productMenu id="phone"
  7646. type="2" >
  7647. </productMenu>
  7648. <productMenu id="fmradio"
  7649. type="3" >
  7650. </productMenu>
  7651. <productMenu id="deviceSetting"
  7652. type="1"
  7653. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7654. <productMenuURL version="2.0.2"
  7655. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7656. />
  7657. <productMenuURL version="1.5"
  7658. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7659. />
  7660. <productMenuURL version="1.4.1"
  7661. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7662. />
  7663. <productMenuURL version="1.1"
  7664. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7665. />
  7666. <productMenuURL version="1.0"
  7667. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7668. />
  7669. </productMenu>
  7670. <productMenu id="quickGuide"
  7671. type="0"
  7672. url=""
  7673. size="264KB" >
  7674. </productMenu>
  7675. <productMenu id="userGuide"
  7676. type="1"
  7677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7678. size="3.09MB" >
  7679. </productMenu>
  7680. <productMenu id="connectGuide"
  7681. type="1"
  7682. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7683. size="1.12MB" >
  7684. </productMenu>
  7685. <productID id="4210"
  7686. />
  7687. <productGroupable type="1"
  7688. />
  7689. </product>
  7690. <product id="20S_EVO"
  7691. name="20S EVO"
  7692. series="20"
  7693. latestVersion="2.2.3"
  7694. show = "1" >
  7695. <productMenu id="protocol"
  7696. type="0">
  7697. </productMenu>
  7698. <productMenu id="wa"
  7699. type="5" >
  7700. </productMenu>
  7701. <productMenu id="sip"
  7702. type="1" >
  7703. <productMenuType version="1.0"
  7704. type="0"
  7705. />
  7706. </productMenu>
  7707. <productMenu id="bluetoothIntercom"
  7708. type="1" >
  7709. <productMenuType version="1.0"
  7710. type="0"
  7711. />
  7712. </productMenu>
  7713. <productMenu id="intercomSetting"
  7714. type="1" >
  7715. </productMenu>
  7716. <productMenu id="phone"
  7717. type="2" >
  7718. </productMenu>
  7719. <productMenu id="fmradio"
  7720. type="3" >
  7721. </productMenu>
  7722. <productMenu id="deviceSetting"
  7723. type="1"
  7724. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  7725. <productMenuURL version="2.0.2"
  7726. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  7727. />
  7728. <productMenuURL version="1.5"
  7729. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  7730. />
  7731. <productMenuURL version="1.4.1"
  7732. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  7733. />
  7734. <productMenuURL version="1.1"
  7735. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  7736. />
  7737. <productMenuURL version="1.0"
  7738. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  7739. />
  7740. </productMenu>
  7741. <productMenu id="quickGuide"
  7742. type="0"
  7743. url=""
  7744. size="264KB" >
  7745. </productMenu>
  7746. <productMenu id="userGuide"
  7747. type="1"
  7748. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  7749. size="3.09MB" >
  7750. </productMenu>
  7751. <productMenu id="connectGuide"
  7752. type="1"
  7753. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7754. size="1.12MB" >
  7755. </productMenu>
  7756. <productID id="4210"
  7757. />
  7758. <productProductKey key="16"
  7759. />
  7760. <productGroupable type="1"
  7761. />
  7762. </product>
  7763. <product id="10S"
  7764. name="10S"
  7765. series="10"
  7766. latestVersion="3.0.1"
  7767. show = "1" >
  7768. <productMenu id="protocol"
  7769. type="3" >
  7770. </productMenu>
  7771. <productMenu id="sip"
  7772. type="1" >
  7773. </productMenu>
  7774. <productMenu id="bluetoothIntercom"
  7775. type="1" >
  7776. </productMenu>
  7777. <productMenu id="phone"
  7778. type="1" >
  7779. </productMenu>
  7780. <productMenu id="deviceSetting"
  7781. type="1"
  7782. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  7783. </productMenu>
  7784. <productMenu id="quickGuide"
  7785. type="1"
  7786. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  7787. size="934KB" >
  7788. </productMenu>
  7789. <productMenu id="userGuide"
  7790. type="1"
  7791. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  7792. size="1.14MB" >
  7793. </productMenu>
  7794. <productMenu id="connectGuide"
  7795. type="1"
  7796. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  7797. size="1.12MB" >
  7798. </productMenu>
  7799. <productID id="3380"
  7800. />
  7801. <productGroupable type="0"
  7802. />
  7803. </product>
  7804. <product id="10S"
  7805. name="10S"
  7806. series="10"
  7807. latestVersion="2.1.1"
  7808. show = "-1" >
  7809. <productMenu id="protocol"
  7810. type="0">
  7811. </productMenu>
  7812. <productMenu id="sip"
  7813. type="1" >
  7814. </productMenu>
  7815. <productMenu id="bluetoothIntercom"
  7816. type="1" >
  7817. </productMenu>
  7818. <productMenu id="phone"
  7819. type="2" >
  7820. </productMenu>
  7821. <productMenu id="fmradio"
  7822. type="3" >
  7823. </productMenu>
  7824. <productMenu id="deviceSetting"
  7825. type="1"
  7826. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  7827. <productMenuURL version="1.5"
  7828. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  7829. />
  7830. <productMenuURL version="1.3.1"
  7831. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  7832. />
  7833. </productMenu>
  7834. <productMenu id="quickGuide"
  7835. type="1"
  7836. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  7837. size="310KB" >
  7838. </productMenu>
  7839. <productMenu id="userGuide"
  7840. type="1"
  7841. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  7842. size="1.57MB" >
  7843. </productMenu>
  7844. <productID id="5530"
  7845. />
  7846. <productGroupable type="0"
  7847. />
  7848. </product>
  7849. <product id="10R"
  7850. name="10R"
  7851. series="10"
  7852. latestVersion="2.1.1"
  7853. show = "1" >
  7854. <productMenu id="protocol"
  7855. type="0">
  7856. </productMenu>
  7857. <productMenu id="sip"
  7858. type="1" >
  7859. <productMenuType version="1.0.2"
  7860. type="0"
  7861. />
  7862. </productMenu>
  7863. <productMenu id="bluetoothIntercom"
  7864. type="1" >
  7865. <productMenuType version="1.0.2"
  7866. type="0"
  7867. />
  7868. </productMenu>
  7869. <productMenu id="phone"
  7870. type="2" >
  7871. </productMenu>
  7872. <productMenu id="fmradio"
  7873. type="3" >
  7874. </productMenu>
  7875. <productMenu id="deviceSetting"
  7876. type="1"
  7877. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  7878. <productMenuURL version="1.4"
  7879. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  7880. />
  7881. <productMenuURL version="1.2.1"
  7882. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  7883. />
  7884. <productMenuURL version="1.0.2"
  7885. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  7886. />
  7887. <productMenuURL version="1.0"
  7888. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  7889. />
  7890. </productMenu>
  7891. <productMenu id="quickGuide"
  7892. type="1"
  7893. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  7894. size="400KB" >
  7895. </productMenu>
  7896. <productMenu id="userGuide"
  7897. type="1"
  7898. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  7899. size="2.75MB" >
  7900. </productMenu>
  7901. <productMenu id="connectGuide"
  7902. type="1"
  7903. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7904. size="1.12MB" >
  7905. </productMenu>
  7906. <productID id="5520"
  7907. />
  7908. <productGroupable type="0"
  7909. />
  7910. </product>
  7911. <product id="10C_EVO"
  7912. name="10C EVO"
  7913. series="10"
  7914. latestVersion="1.7"
  7915. show = "1" >
  7916. <productMenu id="protocol"
  7917. type="0">
  7918. </productMenu>
  7919. <productMenu id="sip"
  7920. type="1" >
  7921. </productMenu>
  7922. <productMenu id="bluetoothIntercom"
  7923. type="1" >
  7924. </productMenu>
  7925. <productMenu id="phone"
  7926. type="2" >
  7927. </productMenu>
  7928. <productMenu id="fmradio"
  7929. type="3" >
  7930. </productMenu>
  7931. <productMenu id="deviceSetting"
  7932. type="1"
  7933. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  7934. <productMenuURL version="1.3.1"
  7935. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7936. />
  7937. </productMenu>
  7938. <productMenu id="quickGuide"
  7939. type="1"
  7940. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  7941. size="1.32MB" >
  7942. </productMenu>
  7943. <productMenu id="userGuide"
  7944. type="1"
  7945. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  7946. size="1.68MB" >
  7947. </productMenu>
  7948. <productMenu id="connectGuide"
  7949. type="1"
  7950. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7951. size="1.12MB" >
  7952. </productMenu>
  7953. <productID id="5570"
  7954. />
  7955. <productGroupable type="0"
  7956. />
  7957. </product>
  7958. <product id="10C_Pro"
  7959. name="10C Pro"
  7960. series="10"
  7961. latestVersion="2.7.1"
  7962. show = "1" >
  7963. <productMenu id="protocol"
  7964. type="0">
  7965. </productMenu>
  7966. <productMenu id="sip"
  7967. type="1" >
  7968. </productMenu>
  7969. <productMenu id="bluetoothIntercom"
  7970. type="1" >
  7971. </productMenu>
  7972. <productMenu id="phone"
  7973. type="2" >
  7974. </productMenu>
  7975. <productMenu id="fmradio"
  7976. type="3" >
  7977. </productMenu>
  7978. <productMenu id="deviceSetting"
  7979. type="1"
  7980. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  7981. <productMenuURL version="2.5.1"
  7982. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  7983. />
  7984. <productMenuURL version="1.0"
  7985. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  7986. />
  7987. </productMenu>
  7988. <productMenu id="quickGuide"
  7989. type="1"
  7990. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  7991. size="651KB" >
  7992. </productMenu>
  7993. <productMenu id="userGuide"
  7994. type="1"
  7995. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  7996. size="2.34MB" >
  7997. </productMenu>
  7998. <productMenu id="connectGuide"
  7999. type="1"
  8000. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8001. size="1.12MB" >
  8002. </productMenu>
  8003. <productID id="5580"
  8004. />
  8005. <productGroupable type="0"
  8006. />
  8007. </product>
  8008. <product id="10C"
  8009. name="10C"
  8010. series="10"
  8011. latestVersion="3.0.4"
  8012. show = "1" >
  8013. <productMenu id="protocol"
  8014. type="0">
  8015. </productMenu>
  8016. <productMenu id="sip"
  8017. type="1" >
  8018. <productMenuType version="1.0.4"
  8019. type="0"
  8020. />
  8021. </productMenu>
  8022. <productMenu id="bluetoothIntercom"
  8023. type="1" >
  8024. <productMenuType version="1.0.4"
  8025. type="0"
  8026. />
  8027. </productMenu>
  8028. <productMenu id="phone"
  8029. type="2" >
  8030. </productMenu>
  8031. <productMenu id="fmradio"
  8032. type="3" >
  8033. </productMenu>
  8034. <productMenu id="deviceSetting"
  8035. type="1"
  8036. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  8037. <productMenuURL version="2.3"
  8038. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  8039. />
  8040. <productMenuURL version="2.1.1"
  8041. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  8042. />
  8043. <productMenuURL version="1.0.4"
  8044. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  8045. />
  8046. <productMenuURL version="1.0.2"
  8047. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  8048. />
  8049. </productMenu>
  8050. <productMenu id="quickGuide"
  8051. type="1"
  8052. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  8053. size="935KB" >
  8054. </productMenu>
  8055. <productMenu id="userGuide"
  8056. type="1"
  8057. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  8058. size="2.82MB" >
  8059. </productMenu>
  8060. <productMenu id="connectGuide"
  8061. type="1"
  8062. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8063. size="1.12MB" >
  8064. </productMenu>
  8065. <productID id="5510"
  8066. />
  8067. <productGroupable type="0"
  8068. />
  8069. </product>
  8070. <product id="10U_GT_AIR"
  8071. name="10U GT-Air"
  8072. series="10"
  8073. latestVersion="2.0.4"
  8074. show = "1" >
  8075. <productMenu id="protocol"
  8076. type="0">
  8077. </productMenu>
  8078. <productMenu id="sip"
  8079. type="1" >
  8080. <productMenuType version="1.0.2"
  8081. type="0"
  8082. />
  8083. </productMenu>
  8084. <productMenu id="bluetoothIntercom"
  8085. type="1" >
  8086. <productMenuType version="1.0.2"
  8087. type="0"
  8088. />
  8089. </productMenu>
  8090. <productMenu id="phone"
  8091. type="2" >
  8092. </productMenu>
  8093. <productMenu id="fmradio"
  8094. type="3" >
  8095. </productMenu>
  8096. <productMenu id="deviceSetting"
  8097. type="1"
  8098. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8099. <productMenuURL version="1.3.2"
  8100. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8101. />
  8102. <productMenuURL version="1.0.2"
  8103. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8104. />
  8105. </productMenu>
  8106. <productMenu id="quickGuide"
  8107. type="1"
  8108. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  8109. size="685KB" >
  8110. </productMenu>
  8111. <productMenu id="userGuide"
  8112. type="1"
  8113. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8114. size="684KB" >
  8115. </productMenu>
  8116. <productMenu id="connectGuide"
  8117. type="1"
  8118. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8119. size="1.12MB" >
  8120. </productMenu>
  8121. <productID id="5610"
  8122. />
  8123. <productGroupable type="0"
  8124. />
  8125. </product>
  8126. <product id="10U_NEOTEC"
  8127. name="10U Neotec"
  8128. series="10"
  8129. latestVersion="2.0.4"
  8130. show = "1" >
  8131. <productMenu id="protocol"
  8132. type="0">
  8133. </productMenu>
  8134. <productMenu id="sip"
  8135. type="1" >
  8136. <productMenuType version="1.0.2"
  8137. type="0"
  8138. />
  8139. </productMenu>
  8140. <productMenu id="bluetoothIntercom"
  8141. type="1" >
  8142. <productMenuType version="1.0.2"
  8143. type="0"
  8144. />
  8145. </productMenu>
  8146. <productMenu id="phone"
  8147. type="2" >
  8148. </productMenu>
  8149. <productMenu id="fmradio"
  8150. type="3" >
  8151. </productMenu>
  8152. <productMenu id="deviceSetting"
  8153. type="1"
  8154. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8155. <productMenuURL version="1.3.2"
  8156. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8157. />
  8158. <productMenuURL version="1.0.2"
  8159. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8160. />
  8161. </productMenu>
  8162. <productMenu id="quickGuide"
  8163. type="1"
  8164. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  8165. size="689KB" >
  8166. </productMenu>
  8167. <productMenu id="userGuide"
  8168. type="1"
  8169. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8170. size="684KB" >
  8171. </productMenu>
  8172. <productMenu id="connectGuide"
  8173. type="1"
  8174. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8175. size="1.12MB" >
  8176. </productMenu>
  8177. <productID id="5611"
  8178. />
  8179. <productGroupable type="0"
  8180. />
  8181. </product>
  8182. <product id="10U_J_CRUISE"
  8183. name="10U J-Cruise"
  8184. series="10"
  8185. latestVersion="2.0.4"
  8186. show = "1" >
  8187. <productMenu id="protocol"
  8188. type="0">
  8189. </productMenu>
  8190. <productMenu id="sip"
  8191. type="1" >
  8192. <productMenuType version="1.0.2"
  8193. type="0"
  8194. />
  8195. </productMenu>
  8196. <productMenu id="bluetoothIntercom"
  8197. type="1" >
  8198. <productMenuType version="1.0.2"
  8199. type="0"
  8200. />
  8201. </productMenu>
  8202. <productMenu id="phone"
  8203. type="2" >
  8204. </productMenu>
  8205. <productMenu id="fmradio"
  8206. type="3" >
  8207. </productMenu>
  8208. <productMenu id="deviceSetting"
  8209. type="1"
  8210. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8211. <productMenuURL version="1.3.2"
  8212. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8213. />
  8214. <productMenuURL version="1.0.2"
  8215. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8216. />
  8217. </productMenu>
  8218. <productMenu id="quickGuide"
  8219. type="1"
  8220. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  8221. size="686KB" >
  8222. </productMenu>
  8223. <productMenu id="userGuide"
  8224. type="1"
  8225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8226. size="684KB" >
  8227. </productMenu>
  8228. <productMenu id="connectGuide"
  8229. type="1"
  8230. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8231. size="1.12MB" >
  8232. </productMenu>
  8233. <productID id="5612"
  8234. />
  8235. <productGroupable type="0"
  8236. />
  8237. </product>
  8238. <product id="10U_C3"
  8239. name="10U C3/C3Pro"
  8240. series="10"
  8241. latestVersion="2.0.4"
  8242. show = "1" >
  8243. <productMenu id="protocol"
  8244. type="0">
  8245. </productMenu>
  8246. <productMenu id="sip"
  8247. type="1" >
  8248. <productMenuType version="1.0.2"
  8249. type="0"
  8250. />
  8251. </productMenu>
  8252. <productMenu id="bluetoothIntercom"
  8253. type="1" >
  8254. <productMenuType version="1.0.2"
  8255. type="0"
  8256. />
  8257. </productMenu>
  8258. <productMenu id="phone"
  8259. type="2" >
  8260. </productMenu>
  8261. <productMenu id="fmradio"
  8262. type="3" >
  8263. </productMenu>
  8264. <productMenu id="deviceSetting"
  8265. type="1"
  8266. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8267. <productMenuURL version="1.3.2"
  8268. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8269. />
  8270. <productMenuURL version="1.0.2"
  8271. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8272. />
  8273. </productMenu>
  8274. <productMenu id="quickGuide"
  8275. type="1"
  8276. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  8277. size="199KB" >
  8278. </productMenu>
  8279. <productMenu id="userGuide"
  8280. type="1"
  8281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8282. size="684KB" >
  8283. </productMenu>
  8284. <productMenu id="connectGuide"
  8285. type="1"
  8286. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8287. size="1.12MB" >
  8288. </productMenu>
  8289. <productID id="5620"
  8290. />
  8291. <productGroupable type="0"
  8292. />
  8293. </product>
  8294. <product id="10U_ARAI"
  8295. name="10U Arai"
  8296. series="10"
  8297. latestVersion="2.0.4"
  8298. show = "1" >
  8299. <productMenu id="protocol"
  8300. type="0">
  8301. </productMenu>
  8302. <productMenu id="sip"
  8303. type="1" >
  8304. <productMenuType version="1.0.2"
  8305. type="0"
  8306. />
  8307. </productMenu>
  8308. <productMenu id="bluetoothIntercom"
  8309. type="1" >
  8310. <productMenuType version="1.0.2"
  8311. type="0"
  8312. />
  8313. </productMenu>
  8314. <productMenu id="phone"
  8315. type="2" >
  8316. </productMenu>
  8317. <productMenu id="fmradio"
  8318. type="3" >
  8319. </productMenu>
  8320. <productMenu id="deviceSetting"
  8321. type="1"
  8322. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8323. <productMenuURL version="1.3.2"
  8324. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8325. />
  8326. <productMenuURL version="1.0.2"
  8327. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8328. />
  8329. </productMenu>
  8330. <productMenu id="quickGuide"
  8331. type="1"
  8332. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  8333. size="689KB" >
  8334. </productMenu>
  8335. <productMenu id="userGuide"
  8336. type="1"
  8337. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8338. size="684KB" >
  8339. </productMenu>
  8340. <productMenu id="connectGuide"
  8341. type="1"
  8342. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8343. size="1.12MB" >
  8344. </productMenu>
  8345. <productID id="5621"
  8346. />
  8347. <productGroupable type="0"
  8348. />
  8349. </product>
  8350. <product id="10Upad"
  8351. name="10Upad"
  8352. series="10"
  8353. latestVersion="2.0.3"
  8354. show = "1" >
  8355. <productMenu id="protocol"
  8356. type="0">
  8357. </productMenu>
  8358. <productMenu id="sip"
  8359. type="1" >
  8360. </productMenu>
  8361. <productMenu id="bluetoothIntercom"
  8362. type="1" >
  8363. </productMenu>
  8364. <productMenu id="phone"
  8365. type="2" >
  8366. </productMenu>
  8367. <productMenu id="fmradio"
  8368. type="3" >
  8369. </productMenu>
  8370. <productMenu id="deviceSetting"
  8371. type="1"
  8372. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  8373. <productMenuURL version="1.0.3"
  8374. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  8375. />
  8376. </productMenu>
  8377. <productMenu id="quickGuide"
  8378. type="1"
  8379. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  8380. size="615KB" >
  8381. </productMenu>
  8382. <productMenu id="userGuide"
  8383. type="1"
  8384. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  8385. size="0.99MB" >
  8386. </productMenu>
  8387. <productMenu id="connectGuide"
  8388. type="1"
  8389. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8390. size="1.12MB" >
  8391. </productMenu>
  8392. <productID id="6210"
  8393. />
  8394. <productGroupable type="0"
  8395. />
  8396. </product>
  8397. <product id="5S"
  8398. name="5S"
  8399. series="5"
  8400. latestVersion="2.2.1"
  8401. show = "1" >
  8402. <productMenu id="protocol"
  8403. type="3" >
  8404. </productMenu>
  8405. <productMenu id="sip"
  8406. type="1" >
  8407. </productMenu>
  8408. <productMenu id="bluetoothIntercom"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="phone"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="fmradio"
  8415. type="0" >
  8416. </productMenu>
  8417. <productMenu id="deviceSetting"
  8418. type="1"
  8419. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8420. </productMenu>
  8421. <productMenu id="quickGuide"
  8422. type="0"
  8423. url=""
  8424. size="934KB" >
  8425. </productMenu>
  8426. <productMenu id="userGuide"
  8427. type="1"
  8428. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8429. size="1.14MB" >
  8430. </productMenu>
  8431. <productMenu id="connectGuide"
  8432. type="1"
  8433. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  8434. size="1.12MB" >
  8435. </productMenu>
  8436. <productID id="5590"
  8437. />
  8438. <productGroupable type="0"
  8439. />
  8440. </product>
  8441. <product id="5S"
  8442. name="5S"
  8443. series="5"
  8444. latestVersion="1.2"
  8445. show = "-1" >
  8446. <productMenu id="protocol"
  8447. type="0">
  8448. </productMenu>
  8449. <productMenu id="sip"
  8450. type="1" >
  8451. </productMenu>
  8452. <productMenu id="bluetoothIntercom"
  8453. type="1" >
  8454. </productMenu>
  8455. <productMenu id="phone"
  8456. type="2" >
  8457. </productMenu>
  8458. <productMenu id="fmradio"
  8459. type="0" >
  8460. </productMenu>
  8461. <productMenu id="deviceSetting"
  8462. type="1"
  8463. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  8464. </productMenu>
  8465. <productMenu id="quickGuide"
  8466. type="0"
  8467. url=""
  8468. size="970KB" >
  8469. </productMenu>
  8470. <productMenu id="userGuide"
  8471. type="1"
  8472. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  8473. size="1.26MB" >
  8474. </productMenu>
  8475. <productID id="5534"
  8476. />
  8477. <productGroupable type="0"
  8478. />
  8479. </product>
  8480. <product id="5S"
  8481. name="5S"
  8482. series="5"
  8483. latestVersion="3.0.1"
  8484. show = "-1" >
  8485. <productMenu id="protocol"
  8486. type="0">
  8487. </productMenu>
  8488. <productMenu id="sip"
  8489. type="1" >
  8490. </productMenu>
  8491. <productMenu id="bluetoothIntercom"
  8492. type="1" >
  8493. </productMenu>
  8494. <productMenu id="phone"
  8495. type="2" >
  8496. </productMenu>
  8497. <productMenu id="fmradio"
  8498. type="0" >
  8499. </productMenu>
  8500. <productMenu id="deviceSetting"
  8501. type="1"
  8502. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  8503. </productMenu>
  8504. <productMenu id="quickGuide"
  8505. type="0"
  8506. url=""
  8507. size="970KB" >
  8508. </productMenu>
  8509. <productMenu id="userGuide"
  8510. type="1"
  8511. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  8512. size="1.26MB" >
  8513. </productMenu>
  8514. <productID id="5538"
  8515. />
  8516. <productGroupable type="0"
  8517. />
  8518. </product>
  8519. <product id="3SPLUS"
  8520. name="3S PLUS"
  8521. series="3"
  8522. latestVersion="2.2"
  8523. show = "1" >
  8524. <productMenu id="protocol"
  8525. type="3" >
  8526. </productMenu>
  8527. <productMenu id="sip"
  8528. type="1" >
  8529. </productMenu>
  8530. <productMenu id="bluetoothIntercom"
  8531. type="1" >
  8532. </productMenu>
  8533. <productMenu id="deviceSetting"
  8534. type="1"
  8535. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  8536. <productMenuURL version="2.2.1"
  8537. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  8538. />
  8539. </productMenu>
  8540. <productMenu id="quickGuide"
  8541. type="1"
  8542. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8543. size="344KB" >
  8544. </productMenu>
  8545. <productMenu id="userGuide"
  8546. type="1"
  8547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  8548. size="1.14MB" >
  8549. </productMenu>
  8550. <productMenu id="connectGuide"
  8551. type="1"
  8552. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  8553. size="1.12MB" >
  8554. </productMenu>
  8555. <productID id="4023"
  8556. />
  8557. <productGroupable type="0"
  8558. />
  8559. </product>
  8560. <product id="3SPLUS"
  8561. name="3S PLUS"
  8562. series="3"
  8563. latestVersion="1.1"
  8564. show = "-1" >
  8565. <productMenu id="protocol"
  8566. type="0">
  8567. </productMenu>
  8568. <productMenu id="sip"
  8569. type="1" >
  8570. </productMenu>
  8571. <productMenu id="bluetoothIntercom"
  8572. type="1" >
  8573. </productMenu>
  8574. <productMenu id="deviceSetting"
  8575. type="1"
  8576. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  8577. </productMenu>
  8578. <productMenu id="quickGuide"
  8579. type="1"
  8580. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  8581. size="842KB" >
  8582. </productMenu>
  8583. <productMenu id="userGuide"
  8584. type="1"
  8585. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  8586. size="1.02MB" >
  8587. </productMenu>
  8588. <productID id="6320"
  8589. />
  8590. <productGroupable type="0"
  8591. />
  8592. </product>
  8593. <product id="iCon"
  8594. name="iCon"
  8595. series="50"
  8596. latestVersion="1.2"
  8597. show = "0" >
  8598. <productMenu id="protocol"
  8599. type="2" >
  8600. </productMenu>
  8601. <productMenu id="alexa"
  8602. type="0" >
  8603. </productMenu>
  8604. <productMenu id="wa"
  8605. type="0" >
  8606. </productMenu>
  8607. <productMenu id="sip"
  8608. type="1" >
  8609. </productMenu>
  8610. <productMenu id="led"
  8611. type="3" >
  8612. </productMenu>
  8613. <productMenu id="meshIntercom"
  8614. type="20" >
  8615. </productMenu>
  8616. <productMenu id="meshIntercom+"
  8617. type="3"
  8618. url="0" >
  8619. <productMenuType version="1.0.9"
  8620. type="2"
  8621. />
  8622. </productMenu>
  8623. <productMenu id="bluetoothIntercom"
  8624. type="1" >
  8625. </productMenu>
  8626. <productMenu id="phone"
  8627. type="1" >
  8628. </productMenu>
  8629. <productMenu id="music"
  8630. type="1" >
  8631. </productMenu>
  8632. <productMenu id="fmradio"
  8633. type="1" >
  8634. </productMenu>
  8635. <productMenu id="deviceSetting"
  8636. type="1"
  8637. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  8638. <productMenuURL version="1.0.9"
  8639. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  8640. />
  8641. </productMenu>
  8642. <productMenu id="quickGuide"
  8643. type="1"
  8644. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  8645. size="344KB" >
  8646. </productMenu>
  8647. <productMenu id="userGuide"
  8648. type="1"
  8649. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  8650. size="3.41MB" >
  8651. </productMenu>
  8652. <productMenu id="volume"
  8653. type="11" >
  8654. </productMenu>
  8655. <productMenu id="battery"
  8656. type="1" >
  8657. </productMenu>
  8658. <productID id="3900"
  8659. />
  8660. <productGroupable type="0"
  8661. />
  8662. </product>
  8663. <product id="HD50S"
  8664. name="H-D Audio 50S"
  8665. series="50"
  8666. latestVersion="1.0.1"
  8667. show = "-1" >
  8668. <productMenu id="protocol"
  8669. type="2" >
  8670. </productMenu>
  8671. <productMenu id="alexa"
  8672. type="0" >
  8673. </productMenu>
  8674. <productMenu id="ota"
  8675. type="0"
  8676. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8677. size="1150234" >
  8678. </productMenu>
  8679. <productMenu id="wa"
  8680. type="1" >
  8681. </productMenu>
  8682. <productMenu id="sip"
  8683. type="1" >
  8684. </productMenu>
  8685. <productMenu id="meshIntercom"
  8686. type="20" >
  8687. </productMenu>
  8688. <productMenu id="meshIntercom+"
  8689. type="3"
  8690. url="0" >
  8691. <productMenuType version="1.0.9"
  8692. type="2"
  8693. />
  8694. </productMenu>
  8695. <productMenu id="bluetoothIntercom"
  8696. type="1" >
  8697. </productMenu>
  8698. <productMenu id="phone"
  8699. type="1" >
  8700. </productMenu>
  8701. <productMenu id="music"
  8702. type="1" >
  8703. </productMenu>
  8704. <productMenu id="fmradio"
  8705. type="1" >
  8706. </productMenu>
  8707. <productMenu id="deviceSetting"
  8708. type="1"
  8709. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  8710. <productMenuURL version="1.0.9"
  8711. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  8712. />
  8713. </productMenu>
  8714. <productMenu id="quickGuide"
  8715. type="1"
  8716. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8717. size="934KB" >
  8718. </productMenu>
  8719. <productMenu id="userGuide"
  8720. type="1"
  8721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  8722. size="1.14MB" >
  8723. </productMenu>
  8724. <productMenu id="volume"
  8725. type="11" >
  8726. </productMenu>
  8727. <productMenu id="battery"
  8728. type="1" >
  8729. </productMenu>
  8730. <productID id="3156"
  8731. />
  8732. <productGroupable type="0"
  8733. />
  8734. </product>
  8735. <product id="HD50S"
  8736. name="H-D Audio 50S"
  8737. series="50"
  8738. latestVersion="2.0.2"
  8739. show = "0" >
  8740. <productMenu id="protocol"
  8741. type="2" >
  8742. </productMenu>
  8743. <productMenu id="alexa"
  8744. type="0" >
  8745. </productMenu>
  8746. <productMenu id="ota"
  8747. type="0"
  8748. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  8749. size="1150234" >
  8750. </productMenu>
  8751. <productMenu id="wa"
  8752. type="1" >
  8753. </productMenu>
  8754. <productMenu id="sip"
  8755. type="1" >
  8756. </productMenu>
  8757. <productMenu id="meshIntercom"
  8758. type="20" >
  8759. </productMenu>
  8760. <productMenu id="meshIntercom+"
  8761. type="3"
  8762. url="0" >
  8763. <productMenuType version="2.0.9"
  8764. type="2"
  8765. />
  8766. </productMenu>
  8767. <productMenu id="bluetoothIntercom"
  8768. type="1" >
  8769. </productMenu>
  8770. <productMenu id="phone"
  8771. type="1" >
  8772. </productMenu>
  8773. <productMenu id="music"
  8774. type="1" >
  8775. </productMenu>
  8776. <productMenu id="fmradio"
  8777. type="1" >
  8778. </productMenu>
  8779. <productMenu id="deviceSetting"
  8780. type="1"
  8781. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  8782. <productMenuURL version="2.0.9"
  8783. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  8784. />
  8785. </productMenu>
  8786. <productMenu id="quickGuide"
  8787. type="1"
  8788. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8789. size="934KB" >
  8790. </productMenu>
  8791. <productMenu id="userGuide"
  8792. type="1"
  8793. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  8794. size="1.14MB" >
  8795. </productMenu>
  8796. <productMenu id="volume"
  8797. type="11" >
  8798. </productMenu>
  8799. <productMenu id="battery"
  8800. type="1" >
  8801. </productMenu>
  8802. <productID id="3213"
  8803. />
  8804. <productGroupable type="0"
  8805. />
  8806. </product>
  8807. <product id="HD50C"
  8808. name="H-D Audio 50C"
  8809. series="50"
  8810. latestVersion="1.0.1"
  8811. show = "0" >
  8812. <productMenu id="protocol"
  8813. type="2" >
  8814. </productMenu>
  8815. <productMenu id="ota"
  8816. type="0" >
  8817. </productMenu>
  8818. <productMenu id="wa"
  8819. type="1" >
  8820. </productMenu>
  8821. <productMenu id="sip"
  8822. type="1" >
  8823. </productMenu>
  8824. <productMenu id="meshIntercom"
  8825. type="20" >
  8826. </productMenu>
  8827. <productMenu id="meshIntercom+"
  8828. type="3"
  8829. url="0" >
  8830. <productMenuType version="1.0.9"
  8831. type="2"
  8832. />
  8833. </productMenu>
  8834. <productMenu id="bluetoothIntercom"
  8835. type="1" >
  8836. </productMenu>
  8837. <productMenu id="phone"
  8838. type="1" >
  8839. </productMenu>
  8840. <productMenu id="music"
  8841. type="1" >
  8842. </productMenu>
  8843. <productMenu id="fmradio"
  8844. type="1" >
  8845. </productMenu>
  8846. <productMenu id="deviceSetting"
  8847. type="1"
  8848. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  8849. <productMenuURL version="1.0.9"
  8850. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  8851. />
  8852. </productMenu>
  8853. <productMenu id="quickGuide"
  8854. type="1"
  8855. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8856. size="344KB" >
  8857. </productMenu>
  8858. <productMenu id="userGuide"
  8859. type="1"
  8860. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  8861. size="3.41MB" >
  8862. </productMenu>
  8863. <productMenu id="volume"
  8864. type="11" >
  8865. </productMenu>
  8866. <productMenu id="battery"
  8867. type="1" >
  8868. </productMenu>
  8869. <productID id="3240"
  8870. />
  8871. <productGroupable type="0"
  8872. />
  8873. </product>
  8874. <product id="HD50S"
  8875. name="FURY N04"
  8876. series="Helmet"
  8877. latestVersion="1.0"
  8878. show = "0" >
  8879. <productMenu id="protocol"
  8880. type="2" >
  8881. </productMenu>
  8882. <productMenu id="alexa"
  8883. type="0" >
  8884. </productMenu>
  8885. <productMenu id="ota"
  8886. type="0" >
  8887. </productMenu>
  8888. <productMenu id="wa"
  8889. type="0" >
  8890. </productMenu>
  8891. <productMenu id="meshIntercom"
  8892. type="20" >
  8893. </productMenu>
  8894. <productMenu id="meshIntercom+"
  8895. type="3"
  8896. url="0" >
  8897. <productMenuType version="1.0.9"
  8898. type="2"
  8899. />
  8900. </productMenu>
  8901. <productMenu id="phone"
  8902. type="1" >
  8903. </productMenu>
  8904. <productMenu id="music"
  8905. type="1" >
  8906. </productMenu>
  8907. <productMenu id="fmradio"
  8908. type="1" >
  8909. </productMenu>
  8910. <productMenu id="deviceSetting"
  8911. type="1"
  8912. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  8913. <productMenuURL version="1.0.9"
  8914. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  8915. />
  8916. </productMenu>
  8917. <productMenu id="quickGuide"
  8918. type="1"
  8919. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  8920. size="1.12MB" >
  8921. </productMenu>
  8922. <productMenu id="userGuide"
  8923. type="1"
  8924. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  8925. size="2.0MB" >
  8926. </productMenu>
  8927. <productMenu id="volume"
  8928. type="13" >
  8929. </productMenu>
  8930. <productMenu id="battery"
  8931. type="1" >
  8932. </productMenu>
  8933. <productID id="5553"
  8934. />
  8935. <productGroupable type="0"
  8936. />
  8937. </product>
  8938. <product id="XCOM3Pro"
  8939. name="X-COM3 Pro"
  8940. series="50"
  8941. latestVersion="1.1"
  8942. show = "0" >
  8943. <productMenu id="protocol"
  8944. type="2" >
  8945. </productMenu>
  8946. <productMenu id="alexa"
  8947. type="0" >
  8948. </productMenu>
  8949. <productMenu id="ota"
  8950. type="0" >
  8951. </productMenu>
  8952. <productMenu id="wa"
  8953. type="0" >
  8954. </productMenu>
  8955. <productMenu id="sip"
  8956. type="1" >
  8957. </productMenu>
  8958. <productMenu id="meshIntercom"
  8959. type="30" >
  8960. </productMenu>
  8961. <productMenu id="meshIntercom+"
  8962. type="3"
  8963. url="2" >
  8964. <productMenuType version="1.1"
  8965. type="2"
  8966. />
  8967. </productMenu>
  8968. <productMenu id="waveIntercom"
  8969. type="1" >
  8970. <productMenuType version="1.1"
  8971. type="0"
  8972. />
  8973. </productMenu>
  8974. <productMenu id="bluetoothIntercom"
  8975. type="1" >
  8976. </productMenu>
  8977. <productMenu id="phone"
  8978. type="1" >
  8979. </productMenu>
  8980. <productMenu id="music"
  8981. type="1" >
  8982. </productMenu>
  8983. <productMenu id="fmradio"
  8984. type="1" >
  8985. </productMenu>
  8986. <productMenu id="deviceSetting"
  8987. type="1"
  8988. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  8989. <productMenuURL version="1.1"
  8990. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  8991. />
  8992. </productMenu>
  8993. <productMenu id="quickGuide"
  8994. type="0"
  8995. url=""
  8996. size="344KB" >
  8997. </productMenu>
  8998. <productMenu id="userGuide"
  8999. type="1"
  9000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  9001. size="3.41MB" >
  9002. </productMenu>
  9003. <productMenu id="volume"
  9004. type="11" >
  9005. </productMenu>
  9006. <productMenu id="battery"
  9007. type="1" >
  9008. </productMenu>
  9009. <productID id="321A"
  9010. />
  9011. <productGroupable type="0"
  9012. />
  9013. </product>
  9014. <product id="XCOM3"
  9015. name="X-COM3"
  9016. series="20"
  9017. latestVersion="1.0"
  9018. show = "0" >
  9019. <productMenu id="protocol"
  9020. type="2" >
  9021. </productMenu>
  9022. <productMenu id="sip"
  9023. type="1" >
  9024. </productMenu>
  9025. <productMenu id="bluetoothIntercom"
  9026. type="1" >
  9027. </productMenu>
  9028. <productMenu id="phone"
  9029. type="1" >
  9030. </productMenu>
  9031. <productMenu id="music"
  9032. type="1" >
  9033. </productMenu>
  9034. <productMenu id="fmradio"
  9035. type="1" >
  9036. </productMenu>
  9037. <productMenu id="deviceSetting"
  9038. type="1"
  9039. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  9040. </productMenu>
  9041. <productMenu id="quickGuide"
  9042. type="0"
  9043. url=""
  9044. size="934KB" >
  9045. </productMenu>
  9046. <productMenu id="userGuide"
  9047. type="1"
  9048. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  9049. size="1.14MB" >
  9050. </productMenu>
  9051. <productMenu id="volume"
  9052. type="15" >
  9053. </productMenu>
  9054. <productID id="3410"
  9055. />
  9056. <productGroupable type="0"
  9057. />
  9058. </product>
  9059. <product id="X-COM2"
  9060. name="X-COM2"
  9061. series="20"
  9062. latestVersion="1.0.5"
  9063. show = "0" >
  9064. <productMenu id="protocol"
  9065. type="0">
  9066. </productMenu>
  9067. <productMenu id="sip"
  9068. type="1" >
  9069. </productMenu>
  9070. <productMenu id="bluetoothIntercom"
  9071. type="1" >
  9072. </productMenu>
  9073. <productMenu id="intercomSetting"
  9074. type="1" >
  9075. </productMenu>
  9076. <productMenu id="phone"
  9077. type="2" >
  9078. </productMenu>
  9079. <productMenu id="fmradio"
  9080. type="3" >
  9081. </productMenu>
  9082. <productMenu id="deviceSetting"
  9083. type="1"
  9084. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  9085. </productMenu>
  9086. <productMenu id="quickGuide"
  9087. type="1"
  9088. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  9089. size="796KB" >
  9090. </productMenu>
  9091. <productMenu id="userGuide"
  9092. type="1"
  9093. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  9094. size="1.90MB" >
  9095. </productMenu>
  9096. <productID id="2030"
  9097. />
  9098. <productGroupable type="1"
  9099. />
  9100. </product>
  9101. <product id="AVAABC"
  9102. name="AVA ABC"
  9103. series="SPIDER"
  9104. latestVersion="1.0"
  9105. show = "0" >
  9106. <productMenu id="protocol"
  9107. type="2" >
  9108. </productMenu>
  9109. <productMenu id="alexa"
  9110. type="0" >
  9111. </productMenu>
  9112. <productMenu id="ota"
  9113. type="0" >
  9114. </productMenu>
  9115. <productMenu id="wa"
  9116. type="0" >
  9117. </productMenu>
  9118. <productMenu id="meshIntercom"
  9119. type="20" >
  9120. </productMenu>
  9121. <productMenu id="phone"
  9122. type="1" >
  9123. </productMenu>
  9124. <productMenu id="music"
  9125. type="1" >
  9126. </productMenu>
  9127. <productMenu id="musicSharing"
  9128. type="0" >
  9129. </productMenu>
  9130. <productMenu id="deviceSetting"
  9131. type="1"
  9132. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  9133. </productMenu>
  9134. <productMenu id="quickGuide"
  9135. type="1"
  9136. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  9137. size="1.12MB" >
  9138. </productMenu>
  9139. <productMenu id="userGuide"
  9140. type="1"
  9141. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  9142. size="2.0MB" >
  9143. </productMenu>
  9144. <productMenu id="volume"
  9145. type="12" >
  9146. </productMenu>
  9147. <productMenu id="battery"
  9148. type="1" >
  9149. </productMenu>
  9150. <productID id="6808"
  9151. />
  9152. <productGroupable type="0"
  9153. />
  9154. </product>
  9155. <product id="ADVANCEPROCOMMP"
  9156. name="ADVANCE PROCOM MP"
  9157. series="Helmet"
  9158. latestVersion="0.3"
  9159. latestVersionVoicePrompt="0.2"
  9160. show = "-1" >
  9161. <productMenu id="protocol"
  9162. type="2" >
  9163. </productMenu>
  9164. <productMenu id="ota"
  9165. type="2" >
  9166. <otaLanguages>
  9167. <otaLanguage
  9168. id="0"
  9169. name="English"
  9170. package="0"
  9171. />
  9172. <otaLanguage
  9173. id="0"
  9174. name="French"
  9175. package="1"
  9176. />
  9177. <otaLanguage
  9178. id="0"
  9179. name="Spanish"
  9180. package="2"
  9181. />
  9182. <otaLanguage
  9183. id="0"
  9184. name="Italian"
  9185. package="3"
  9186. />
  9187. <otaLanguage
  9188. id="0"
  9189. name="German"
  9190. package="4"
  9191. />
  9192. <otaLanguage
  9193. id="0"
  9194. name="Dutch"
  9195. package="5"
  9196. />
  9197. <otaLanguage
  9198. id="0"
  9199. name="Russian"
  9200. package="6"
  9201. />
  9202. <otaLanguage
  9203. id="0"
  9204. name="Chinese"
  9205. package="7"
  9206. />
  9207. <otaLanguage
  9208. id="0"
  9209. name="Korean"
  9210. package="8"
  9211. />
  9212. <otaLanguage
  9213. id="0"
  9214. name="Japanese"
  9215. package="9"
  9216. />
  9217. <otaLanguage
  9218. id="0"
  9219. name="Finnish"
  9220. package="10"
  9221. />
  9222. <otaLanguage
  9223. id="0"
  9224. name="Polish"
  9225. package="11"
  9226. />
  9227. </otaLanguages>
  9228. <otaPackages>
  9229. <package
  9230. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0.img"
  9231. size="5183988"
  9232. />
  9233. <package
  9234. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fr-FR.img"
  9235. size="5183988"
  9236. />
  9237. <package
  9238. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-es-ES.img"
  9239. size="5183988"
  9240. />
  9241. <package
  9242. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-it-IT.img"
  9243. size="5183988"
  9244. />
  9245. <package
  9246. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-de-DE.img"
  9247. size="5183988"
  9248. />
  9249. <package
  9250. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-nl-NL.img"
  9251. size="5183988"
  9252. />
  9253. <package
  9254. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ru-RU.img"
  9255. size="5183988"
  9256. />
  9257. <package
  9258. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-cmn-CN.img"
  9259. size="5183988"
  9260. />
  9261. <package
  9262. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ko-KR.img"
  9263. size="5183988"
  9264. />
  9265. <package
  9266. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-ja-JP.img"
  9267. size="5183988"
  9268. />
  9269. <package
  9270. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-fi-FI.img"
  9271. size="5183988"
  9272. />
  9273. <package
  9274. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM_MP-v0.3-build0-pl-PL.img"
  9275. size="5183988"
  9276. />
  9277. </otaPackages>
  9278. </productMenu>
  9279. <productMenu id="wa"
  9280. type="0" >
  9281. </productMenu>
  9282. <productMenu id="meshIntercom"
  9283. type="30" >
  9284. </productMenu>
  9285. <productMenu id="meshIntercom+"
  9286. type="3"
  9287. url="2" >
  9288. </productMenu>
  9289. <productMenu id="waveIntercom"
  9290. type="1" >
  9291. </productMenu>
  9292. <productMenu id="fmradio"
  9293. type="1" >
  9294. </productMenu>
  9295. <productMenu id="phone"
  9296. type="0" >
  9297. </productMenu>
  9298. <productMenu id="music"
  9299. type="1" >
  9300. </productMenu>
  9301. <productMenu id="musicSharing"
  9302. type="0" >
  9303. </productMenu>
  9304. <productMenu id="deviceSetting"
  9305. type="1"
  9306. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  9307. </productMenu>
  9308. <productMenu id="quickGuide"
  9309. type="0"
  9310. url=""
  9311. size="1.12MB" >
  9312. </productMenu>
  9313. <productMenu id="userGuide"
  9314. type="1"
  9315. url=""
  9316. size="2.0MB" >
  9317. </productMenu>
  9318. <productMenu id="videoGuide"
  9319. type="0"
  9320. url=""
  9321. size="3.41MB" >
  9322. </productMenu>
  9323. <productMenu id="connectGuide"
  9324. type="1"
  9325. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  9326. size="1.12MB" >
  9327. </productMenu>
  9328. <productMenu id="volume"
  9329. type="16" >
  9330. </productMenu>
  9331. <productMenu id="battery"
  9332. type="1" >
  9333. </productMenu>
  9334. <productID id="6A85"
  9335. />
  9336. <productGroupable type="0"
  9337. />
  9338. </product>
  9339. <product id="Triumph_50S"
  9340. name="Triumph 50S"
  9341. series="50"
  9342. latestVersion="1.5"
  9343. show = "0" >
  9344. <productMenu id="protocol"
  9345. type="2" >
  9346. </productMenu>
  9347. <productMenu id="alexa"
  9348. type="0" >
  9349. </productMenu>
  9350. <productMenu id="ota"
  9351. type="0"
  9352. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9353. size="1150234" >
  9354. </productMenu>
  9355. <productMenu id="wa"
  9356. type="1" >
  9357. </productMenu>
  9358. <productMenu id="sip"
  9359. type="1" >
  9360. </productMenu>
  9361. <productMenu id="meshIntercom"
  9362. type="20" >
  9363. </productMenu>
  9364. <productMenu id="bluetoothIntercom"
  9365. type="1" >
  9366. </productMenu>
  9367. <productMenu id="meshIntercom+"
  9368. type="3"
  9369. url="2" >
  9370. <productMenuType version="1.2.9"
  9371. type="2"
  9372. />
  9373. <productMenuURL version="1.2.9"
  9374. url="0"
  9375. />
  9376. </productMenu>
  9377. <productMenu id="waveIntercom"
  9378. type="1" >
  9379. <productMenuType version="1.2.9"
  9380. type="0"
  9381. />
  9382. </productMenu>
  9383. <productMenu id="phone"
  9384. type="1" >
  9385. </productMenu>
  9386. <productMenu id="music"
  9387. type="1" >
  9388. </productMenu>
  9389. <productMenu id="fmradio"
  9390. type="1" >
  9391. </productMenu>
  9392. <productMenu id="deviceSetting"
  9393. type="1"
  9394. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  9395. <productMenuURL version="1.2.9"
  9396. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  9397. />
  9398. <productMenuURL version="1.0"
  9399. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9400. />
  9401. </productMenu>
  9402. <productMenu id="quickGuide"
  9403. type="1"
  9404. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  9405. size="934KB" >
  9406. </productMenu>
  9407. <productMenu id="userGuide"
  9408. type="1"
  9409. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  9410. size="1.14MB" >
  9411. </productMenu>
  9412. <productMenu id="volume"
  9413. type="11" >
  9414. </productMenu>
  9415. <productMenu id="battery"
  9416. type="1" >
  9417. </productMenu>
  9418. <productID id="3264"
  9419. />
  9420. <productGroupable type="0"
  9421. />
  9422. </product>
  9423. <product id="RE50S"
  9424. name="RE 50S"
  9425. series="50"
  9426. latestVersion="2.7"
  9427. show = "0" >
  9428. <productMenu id="protocol"
  9429. type="2" >
  9430. </productMenu>
  9431. <productMenu id="alexa"
  9432. type="0" >
  9433. </productMenu>
  9434. <productMenu id="ota"
  9435. type="0"
  9436. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9437. size="1150234" >
  9438. </productMenu>
  9439. <productMenu id="wa"
  9440. type="1" >
  9441. </productMenu>
  9442. <productMenu id="sip"
  9443. type="1" >
  9444. </productMenu>
  9445. <productMenu id="meshIntercom"
  9446. type="30" >
  9447. </productMenu>
  9448. <productMenu id="meshIntercom+"
  9449. type="3"
  9450. url="2" >
  9451. <productMenuType version="2.5"
  9452. type="2"
  9453. />
  9454. </productMenu>
  9455. <productMenu id="waveIntercom"
  9456. type="1" >
  9457. <productMenuType version="2.5"
  9458. type="0"
  9459. />
  9460. </productMenu>
  9461. <productMenu id="bluetoothIntercom"
  9462. type="1" >
  9463. </productMenu>
  9464. <productMenu id="phone"
  9465. type="1" >
  9466. </productMenu>
  9467. <productMenu id="music"
  9468. type="1" >
  9469. </productMenu>
  9470. <productMenu id="fmradio"
  9471. type="1" >
  9472. </productMenu>
  9473. <productMenu id="deviceSetting"
  9474. type="1"
  9475. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  9476. <productMenuURL version="2.5.9"
  9477. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  9478. />
  9479. </productMenu>
  9480. <productMenu id="quickGuide"
  9481. type="1"
  9482. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  9483. size="934KB" >
  9484. </productMenu>
  9485. <productMenu id="userGuide"
  9486. type="1"
  9487. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  9488. size="1.14MB" >
  9489. </productMenu>
  9490. <productMenu id="videoGuide"
  9491. type="0"
  9492. url=""
  9493. size="3.41MB" >
  9494. </productMenu>
  9495. <productMenu id="volume"
  9496. type="11" >
  9497. </productMenu>
  9498. <productMenu id="battery"
  9499. type="1" >
  9500. </productMenu>
  9501. <productID id="321C"
  9502. />
  9503. <productGroupable type="0"
  9504. />
  9505. </product>
  9506. <product id="BMW_HELMET_II_U1"
  9507. name="BMW HELMET II U1"
  9508. series="50"
  9509. latestVersion="1.0"
  9510. show = "0" >
  9511. <productMenu id="protocol"
  9512. type="2" >
  9513. </productMenu>
  9514. <productMenu id="alexa"
  9515. type="0" >
  9516. </productMenu>
  9517. <productMenu id="sip"
  9518. type="1" >
  9519. </productMenu>
  9520. <productMenu id="meshIntercom"
  9521. type="20" >
  9522. </productMenu>
  9523. <productMenu id="bluetoothIntercom"
  9524. type="1" >
  9525. </productMenu>
  9526. <productMenu id="bluetoothIntercom2"
  9527. type="1" >
  9528. </productMenu>
  9529. <productMenu id="phone"
  9530. type="1" >
  9531. </productMenu>
  9532. <productMenu id="music"
  9533. type="1" >
  9534. </productMenu>
  9535. <productMenu id="fmradio"
  9536. type="1" >
  9537. </productMenu>
  9538. <productMenu id="deviceSetting"
  9539. type="1"
  9540. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  9541. </productMenu>
  9542. <productMenu id="quickGuide"
  9543. type="1"
  9544. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  9545. size="934KB" >
  9546. </productMenu>
  9547. <productMenu id="userGuide"
  9548. type="1"
  9549. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  9550. size="1.14MB" >
  9551. </productMenu>
  9552. <productMenu id="volume"
  9553. type="11" >
  9554. </productMenu>
  9555. <productMenu id="battery"
  9556. type="1" >
  9557. </productMenu>
  9558. <productID id="3260"
  9559. />
  9560. <productGroupable type="0"
  9561. />
  9562. </product>
  9563. <product id="OUTRUSHR"
  9564. name="CX935"
  9565. series="Helmet"
  9566. latestVersion="2.1"
  9567. show = "-1" >
  9568. <productMenu id="protocol"
  9569. type="3">
  9570. </productMenu>
  9571. <productMenu id="sip"
  9572. type="1" >
  9573. </productMenu>
  9574. <productMenu id="bluetoothIntercom"
  9575. type="1" >
  9576. </productMenu>
  9577. <productMenu id="phone"
  9578. type="1" >
  9579. </productMenu>
  9580. <productMenu id="fmradio"
  9581. type="0" >
  9582. </productMenu>
  9583. <productMenu id="deviceSetting"
  9584. type="1"
  9585. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  9586. </productMenu>
  9587. <productMenu id="userGuide"
  9588. type="1"
  9589. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  9590. size="660KB" >
  9591. </productMenu>
  9592. <productID id="5446"
  9593. />
  9594. <productGroupable type="0"
  9595. />
  9596. </product>
  9597. <product id="LSE_01"
  9598. name="LSE-01"
  9599. series="SF"
  9600. latestVersion="1.2.3"
  9601. show = "0" >
  9602. <productMenu id="protocol"
  9603. type="1"
  9604. url="3">
  9605. </productMenu>
  9606. <productMenu id="sip"
  9607. type="1" >
  9608. </productMenu>
  9609. <productMenu id="bluetoothIntercom"
  9610. type="1" >
  9611. </productMenu>
  9612. <productMenu id="phone"
  9613. type="1" >
  9614. </productMenu>
  9615. <productMenu id="music"
  9616. type="1" >
  9617. </productMenu>
  9618. <productMenu id="fmradio"
  9619. type="1" >
  9620. </productMenu>
  9621. <productMenu id="deviceSetting"
  9622. type="1"
  9623. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9624. <productMenuURL version="1.1"
  9625. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  9626. />
  9627. <productMenuURL version="1.0"
  9628. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  9629. />
  9630. </productMenu>
  9631. <productMenu id="quickGuide"
  9632. type="1"
  9633. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  9634. size="607KB" >
  9635. </productMenu>
  9636. <productMenu id="userGuide"
  9637. type="1"
  9638. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  9639. size="1.91MB" >
  9640. </productMenu>
  9641. <productMenu id="volume"
  9642. type="4" >
  9643. </productMenu>
  9644. <productID id="5416"
  9645. />
  9646. <productGroupable type="0"
  9647. />
  9648. </product>
  9649. <product id="AGV_ARK"
  9650. name="AGV ARK"
  9651. series="SF"
  9652. latestVersion="1.0.3"
  9653. show = "0" >
  9654. <productMenu id="protocol"
  9655. type="1"
  9656. url="3">
  9657. </productMenu>
  9658. <productMenu id="sip"
  9659. type="1" >
  9660. </productMenu>
  9661. <productMenu id="bluetoothIntercom"
  9662. type="1" >
  9663. </productMenu>
  9664. <productMenu id="phone"
  9665. type="1" >
  9666. </productMenu>
  9667. <productMenu id="music"
  9668. type="1" >
  9669. </productMenu>
  9670. <productMenu id="fmradio"
  9671. type="1" >
  9672. </productMenu>
  9673. <productMenu id="deviceSetting"
  9674. type="1"
  9675. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  9676. </productMenu>
  9677. <productMenu id="quickGuide"
  9678. type="1"
  9679. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  9680. size="607KB" >
  9681. </productMenu>
  9682. <productMenu id="userGuide"
  9683. type="1"
  9684. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  9685. size="1.91MB" >
  9686. </productMenu>
  9687. <productMenu id="volume"
  9688. type="4" >
  9689. </productMenu>
  9690. <productID id="5420"
  9691. />
  9692. <productGroupable type="0"
  9693. />
  9694. </product>
  9695. <product id="KLIM_KRIOS"
  9696. name="KLIM Krios"
  9697. series="10"
  9698. latestVersion="1.1.2"
  9699. show = "0" >
  9700. <productMenu id="protocol"
  9701. type="0">
  9702. </productMenu>
  9703. <productMenu id="sip"
  9704. type="1" >
  9705. </productMenu>
  9706. <productMenu id="bluetoothIntercom"
  9707. type="1" >
  9708. </productMenu>
  9709. <productMenu id="phone"
  9710. type="2" >
  9711. </productMenu>
  9712. <productMenu id="fmradio"
  9713. type="3" >
  9714. </productMenu>
  9715. <productMenu id="deviceSetting"
  9716. type="1"
  9717. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  9718. <productMenuURL version="1.0"
  9719. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  9720. />
  9721. </productMenu>
  9722. <productMenu id="quickGuide"
  9723. type="1"
  9724. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  9725. size="649KB" >
  9726. </productMenu>
  9727. <productMenu id="userGuide"
  9728. type="1"
  9729. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  9730. size="1.43MB" >
  9731. </productMenu>
  9732. <productID id="5910"
  9733. />
  9734. <productGroupable type="0"
  9735. />
  9736. </product>
  9737. <product id="POLARIS_SLINGSHOT"
  9738. name="Polaris Slingshot"
  9739. series="10"
  9740. latestVersion="1.1.2"
  9741. show = "0" >
  9742. <productMenu id="protocol"
  9743. type="0">
  9744. </productMenu>
  9745. <productMenu id="sip"
  9746. type="1" >
  9747. </productMenu>
  9748. <productMenu id="bluetoothIntercom"
  9749. type="1" >
  9750. </productMenu>
  9751. <productMenu id="phone"
  9752. type="2" >
  9753. </productMenu>
  9754. <productMenu id="fmradio"
  9755. type="3" >
  9756. </productMenu>
  9757. <productMenu id="deviceSetting"
  9758. type="1"
  9759. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  9760. <productMenuURL version="1.0"
  9761. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  9762. />
  9763. </productMenu>
  9764. <productMenu id="quickGuide"
  9765. type="1"
  9766. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  9767. size="689KB" >
  9768. </productMenu>
  9769. <productMenu id="userGuide"
  9770. type="1"
  9771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  9772. size="1.43MB" >
  9773. </productMenu>
  9774. <productID id="5920"
  9775. />
  9776. <productGroupable type="0"
  9777. />
  9778. </product>
  9779. <product id="DWO6"
  9780. name="SEDICI DWO6-PRO"
  9781. series="10"
  9782. latestVersion="1.0.2"
  9783. show = "0" >
  9784. <productMenu id="protocol"
  9785. type="0">
  9786. </productMenu>
  9787. <productMenu id="sip"
  9788. type="1" >
  9789. </productMenu>
  9790. <productMenu id="bluetoothIntercom"
  9791. type="1" >
  9792. </productMenu>
  9793. <productMenu id="phone"
  9794. type="2" >
  9795. </productMenu>
  9796. <productMenu id="fmradio"
  9797. type="3" >
  9798. </productMenu>
  9799. <productMenu id="deviceSetting"
  9800. type="1"
  9801. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9802. </productMenu>
  9803. <productMenu id="quickGuide"
  9804. type="1"
  9805. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9806. size="529KB" >
  9807. </productMenu>
  9808. <productMenu id="userGuide"
  9809. type="1"
  9810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  9811. size="4.09MB" >
  9812. </productMenu>
  9813. <productID id="6112"
  9814. />
  9815. <productGroupable type="0"
  9816. />
  9817. </product>
  9818. <product id="DWO6A"
  9819. name="SEDICI DWO-6"
  9820. series="10"
  9821. latestVersion="1.0.2"
  9822. show = "0" >
  9823. <productMenu id="protocol"
  9824. type="0">
  9825. </productMenu>
  9826. <productMenu id="sip"
  9827. type="1" >
  9828. </productMenu>
  9829. <productMenu id="bluetoothIntercom"
  9830. type="1" >
  9831. </productMenu>
  9832. <productMenu id="phone"
  9833. type="2" >
  9834. </productMenu>
  9835. <productMenu id="fmradio"
  9836. type="3" >
  9837. </productMenu>
  9838. <productMenu id="deviceSetting"
  9839. type="1"
  9840. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  9841. </productMenu>
  9842. <productMenu id="quickGuide"
  9843. type="1"
  9844. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  9845. size="522KB" >
  9846. </productMenu>
  9847. <productMenu id="userGuide"
  9848. type="1"
  9849. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  9850. size="2.71MB" >
  9851. </productMenu>
  9852. <productID id="6114"
  9853. />
  9854. <productGroupable type="0"
  9855. />
  9856. </product>
  9857. <product id="3SPLUS"
  9858. name="ZILL"
  9859. series="3"
  9860. latestVersion="1.0.4"
  9861. show = "0" >
  9862. <productMenu id="protocol"
  9863. type="0">
  9864. </productMenu>
  9865. <productMenu id="sip"
  9866. type="1" >
  9867. </productMenu>
  9868. <productMenu id="bluetoothIntercom"
  9869. type="1" >
  9870. </productMenu>
  9871. <productMenu id="deviceSetting"
  9872. type="1"
  9873. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9874. </productMenu>
  9875. <productMenu id="quickGuide"
  9876. type="1"
  9877. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9878. size="842KB" >
  9879. </productMenu>
  9880. <productMenu id="userGuide"
  9881. type="1"
  9882. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  9883. size="1.02MB" >
  9884. </productMenu>
  9885. <productID id="6335"
  9886. />
  9887. <productGroupable type="0"
  9888. />
  9889. </product>
  9890. <product id="HD50S"
  9891. name="Boom! Audio 30K"
  9892. series="30"
  9893. latestVersion="3.4"
  9894. show = "0" >
  9895. <productMenu id="protocol"
  9896. type="1"
  9897. url="0">
  9898. </productMenu>
  9899. <productMenu id="wa"
  9900. type="0" >
  9901. </productMenu>
  9902. <productMenu id="sip"
  9903. type="1" >
  9904. </productMenu>
  9905. <productMenu id="meshIntercom"
  9906. type="20" >
  9907. <productMenuType version="2.9.9"
  9908. type="10"
  9909. />
  9910. </productMenu>
  9911. <productMenu id="bluetoothIntercom"
  9912. type="1" >
  9913. </productMenu>
  9914. <productMenu id="phone"
  9915. type="1" >
  9916. </productMenu>
  9917. <productMenu id="music"
  9918. type="1" >
  9919. </productMenu>
  9920. <productMenu id="fmradio"
  9921. type="1" >
  9922. </productMenu>
  9923. <productMenu id="deviceSetting"
  9924. type="1"
  9925. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  9926. <productMenuURL version="3.2"
  9927. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  9928. />
  9929. <productMenuURL version="3.0"
  9930. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  9931. />
  9932. <productMenuURL version="2.2"
  9933. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9934. />
  9935. </productMenu>
  9936. <productMenu id="quickGuide"
  9937. type="1"
  9938. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9939. size="1.06MB" >
  9940. </productMenu>
  9941. <productMenu id="userGuide"
  9942. type="1"
  9943. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  9944. size="3.15MB" >
  9945. </productMenu>
  9946. <productMenu id="volume"
  9947. type="1" >
  9948. </productMenu>
  9949. <productID id="3112"
  9950. />
  9951. <productGroupable type="0"
  9952. />
  9953. </product>
  9954. <product id="HD50S"
  9955. name="Boom! Audio N02"
  9956. series="30"
  9957. latestVersion="3.1"
  9958. show = "0" >
  9959. <productMenu id="protocol"
  9960. type="1"
  9961. url="0">
  9962. </productMenu>
  9963. <productMenu id="wa"
  9964. type="2" >
  9965. </productMenu>
  9966. <productMenu id="sip"
  9967. type="1" >
  9968. </productMenu>
  9969. <productMenu id="meshIntercom"
  9970. type="20" >
  9971. <productMenuType version="2.9.9"
  9972. type="10"
  9973. />
  9974. </productMenu>
  9975. <productMenu id="bluetoothIntercom"
  9976. type="1" >
  9977. </productMenu>
  9978. <productMenu id="phone"
  9979. type="1" >
  9980. </productMenu>
  9981. <productMenu id="music"
  9982. type="1" >
  9983. </productMenu>
  9984. <productMenu id="fmradio"
  9985. type="1" >
  9986. </productMenu>
  9987. <productMenu id="deviceSetting"
  9988. type="1"
  9989. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  9990. <productMenuURL version="2.2"
  9991. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  9992. />
  9993. </productMenu>
  9994. <productMenu id="quickGuide"
  9995. type="1"
  9996. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  9997. size="1.06MB" >
  9998. </productMenu>
  9999. <productMenu id="userGuide"
  10000. type="1"
  10001. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  10002. size="3.15MB" >
  10003. </productMenu>
  10004. <productMenu id="volume"
  10005. type="2" >
  10006. </productMenu>
  10007. <productID id="3114"
  10008. />
  10009. <productGroupable type="0"
  10010. />
  10011. </product>
  10012. <product id="HD50S"
  10013. name="Boom Audio 20S"
  10014. series="50"
  10015. latestVersion="2.5.2"
  10016. show = "0" >
  10017. <productMenu id="protocol"
  10018. type="0">
  10019. </productMenu>
  10020. <productMenu id="sip"
  10021. type="1" >
  10022. <productMenuType version="1.0"
  10023. type="0"
  10024. />
  10025. </productMenu>
  10026. <productMenu id="bluetoothIntercom"
  10027. type="1" >
  10028. <productMenuType version="1.0"
  10029. type="0"
  10030. />
  10031. </productMenu>
  10032. <productMenu id="intercomSetting"
  10033. type="1" >
  10034. </productMenu>
  10035. <productMenu id="phone"
  10036. type="2" >
  10037. </productMenu>
  10038. <productMenu id="fmradio"
  10039. type="3" >
  10040. </productMenu>
  10041. <productMenu id="deviceSetting"
  10042. type="1"
  10043. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  10044. <productMenuURL version="2.4"
  10045. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  10046. />
  10047. <productMenuURL version="1.5"
  10048. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  10049. />
  10050. <productMenuURL version="1.4.1"
  10051. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  10052. />
  10053. <productMenuURL version="1.1"
  10054. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  10055. />
  10056. <productMenuURL version="1.0"
  10057. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  10058. />
  10059. </productMenu>
  10060. <productMenu id="quickGuide"
  10061. type="1"
  10062. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  10063. size="264KB" >
  10064. </productMenu>
  10065. <productMenu id="userGuide"
  10066. type="1"
  10067. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  10068. size="3.09MB" >
  10069. </productMenu>
  10070. <productMenu id="connectGuide"
  10071. type="1"
  10072. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10073. size="1.12MB" >
  10074. </productMenu>
  10075. <productID id="4210"
  10076. />
  10077. <productProductKey key="11"
  10078. />
  10079. <productID id="4230"
  10080. />
  10081. <productProductKey key="11"
  10082. />
  10083. <productGroupable type="1"
  10084. />
  10085. </product>
  10086. <product id="HD50S"
  10087. name="Boom Audio 20S EVO"
  10088. series="50"
  10089. latestVersion="2.5.2"
  10090. show = "0" >
  10091. <productMenu id="protocol"
  10092. type="0">
  10093. </productMenu>
  10094. <productMenu id="sip"
  10095. type="1" >
  10096. <productMenuType version="1.0"
  10097. type="0"
  10098. />
  10099. </productMenu>
  10100. <productMenu id="bluetoothIntercom"
  10101. type="1" >
  10102. <productMenuType version="1.0"
  10103. type="0"
  10104. />
  10105. </productMenu>
  10106. <productMenu id="intercomSetting"
  10107. type="1" >
  10108. </productMenu>
  10109. <productMenu id="phone"
  10110. type="2" >
  10111. </productMenu>
  10112. <productMenu id="fmradio"
  10113. type="3" >
  10114. </productMenu>
  10115. <productMenu id="deviceSetting"
  10116. type="1"
  10117. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  10118. <productMenuURL version="2.4"
  10119. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  10120. />
  10121. <productMenuURL version="1.5"
  10122. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  10123. />
  10124. <productMenuURL version="1.4.1"
  10125. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  10126. />
  10127. <productMenuURL version="1.1"
  10128. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  10129. />
  10130. <productMenuURL version="1.0"
  10131. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  10132. />
  10133. </productMenu>
  10134. <productMenu id="quickGuide"
  10135. type="1"
  10136. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  10137. size="321KB" >
  10138. </productMenu>
  10139. <productMenu id="userGuide"
  10140. type="1"
  10141. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  10142. size="2.46MB" >
  10143. </productMenu>
  10144. <productID id="4230"
  10145. />
  10146. <productProductKey key="27"
  10147. />
  10148. <productGroupable type="1"
  10149. />
  10150. </product>
  10151. <product id="HD50S"
  10152. name="Boom! Audio 10S"
  10153. series="50"
  10154. latestVersion="1.1.3"
  10155. show = "0" >
  10156. <productMenu id="protocol"
  10157. type="0">
  10158. </productMenu>
  10159. <productMenu id="sip"
  10160. type="1" >
  10161. </productMenu>
  10162. <productMenu id="bluetoothIntercom"
  10163. type="1" >
  10164. </productMenu>
  10165. <productMenu id="phone"
  10166. type="2" >
  10167. </productMenu>
  10168. <productMenu id="fmradio"
  10169. type="3" >
  10170. </productMenu>
  10171. <productMenu id="deviceSetting"
  10172. type="1"
  10173. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  10174. </productMenu>
  10175. <productMenu id="quickGuide"
  10176. type="1"
  10177. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  10178. size="538KB" >
  10179. </productMenu>
  10180. <productMenu id="userGuide"
  10181. type="1"
  10182. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  10183. size="1.55MB" >
  10184. </productMenu>
  10185. <productID id="5532"
  10186. />
  10187. <productGroupable type="0"
  10188. />
  10189. </product>
  10190. <product id="HD50S"
  10191. name="Boom! Audio N01 10R"
  10192. series="50"
  10193. latestVersion="1.1.3"
  10194. show = "0" >
  10195. <productMenu id="protocol"
  10196. type="0">
  10197. </productMenu>
  10198. <productMenu id="sip"
  10199. type="1" >
  10200. </productMenu>
  10201. <productMenu id="bluetoothIntercom"
  10202. type="1" >
  10203. </productMenu>
  10204. <productMenu id="phone"
  10205. type="2" >
  10206. </productMenu>
  10207. <productMenu id="fmradio"
  10208. type="3" >
  10209. </productMenu>
  10210. <productMenu id="deviceSetting"
  10211. type="1"
  10212. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  10213. </productMenu>
  10214. <productMenu id="quickGuide"
  10215. type="1"
  10216. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  10217. size="766KB" >
  10218. </productMenu>
  10219. <productMenu id="userGuide"
  10220. type="1"
  10221. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  10222. size="1.45MB" >
  10223. </productMenu>
  10224. <productID id="5522"
  10225. />
  10226. <productGroupable type="0"
  10227. />
  10228. </product>
  10229. <product id="HD50S"
  10230. name="OUTRUSH-R N03"
  10231. series="50"
  10232. latestVersion="1.2.1"
  10233. show = "-1" >
  10234. <productMenu id="protocol"
  10235. type="0">
  10236. </productMenu>
  10237. <productMenu id="sip"
  10238. type="1" >
  10239. </productMenu>
  10240. <productMenu id="bluetoothIntercom"
  10241. type="1" >
  10242. </productMenu>
  10243. <productMenu id="phone"
  10244. type="2" >
  10245. </productMenu>
  10246. <productMenu id="fmradio"
  10247. type="3" >
  10248. </productMenu>
  10249. <productMenu id="deviceSetting"
  10250. type="1"
  10251. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  10252. </productMenu>
  10253. <productMenu id="userGuide"
  10254. type="1"
  10255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  10256. size="660KB" >
  10257. </productMenu>
  10258. <productID id="5434"
  10259. />
  10260. <productGroupable type="0"
  10261. />
  10262. </product>
  10263. <product id="HD50S"
  10264. name="OUTRUSH-R N03"
  10265. series="50"
  10266. latestVersion="2.0"
  10267. show = "0" >
  10268. <productMenu id="protocol"
  10269. type="3" >
  10270. </productMenu>
  10271. <productMenu id="sip"
  10272. type="1" >
  10273. </productMenu>
  10274. <productMenu id="bluetoothIntercom"
  10275. type="1" >
  10276. </productMenu>
  10277. <productMenu id="phone"
  10278. type="1" >
  10279. </productMenu>
  10280. <productMenu id="fmradio"
  10281. type="1" >
  10282. </productMenu>
  10283. <productMenu id="deviceSetting"
  10284. type="1"
  10285. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  10286. </productMenu>
  10287. <productMenu id="userGuide"
  10288. type="1"
  10289. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  10290. size="1.14MB" >
  10291. </productMenu>
  10292. <productID id="5441"
  10293. />
  10294. <productGroupable type="0"
  10295. />
  10296. </product>
  10297. <product id="5R"
  10298. name="5R"
  10299. series="5"
  10300. latestVersion="1.0.1"
  10301. show = "1" >
  10302. <productMenu id="protocol"
  10303. type="3" >
  10304. </productMenu>
  10305. <productMenu id="sip"
  10306. type="1" >
  10307. </productMenu>
  10308. <productMenu id="bluetoothIntercom"
  10309. type="1" >
  10310. </productMenu>
  10311. <productMenu id="phone"
  10312. type="1" >
  10313. </productMenu>
  10314. <productMenu id="fmradio"
  10315. type="1" >
  10316. </productMenu>
  10317. <productMenu id="deviceSetting"
  10318. type="1"
  10319. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10320. </productMenu>
  10321. <productMenu id="quickGuide"
  10322. type="0"
  10323. url=""
  10324. size="934KB" >
  10325. </productMenu>
  10326. <productMenu id="userGuide"
  10327. type="1"
  10328. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  10329. size="1.14MB" >
  10330. </productMenu>
  10331. <productMenu id="connectGuide"
  10332. type="1"
  10333. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  10334. size="1.12MB" >
  10335. </productMenu>
  10336. <productID id="5591"
  10337. />
  10338. <productGroupable type="0"
  10339. />
  10340. </product>
  10341. <product id="5R"
  10342. name="5R LITE"
  10343. series="5"
  10344. latestVersion="1.0.1"
  10345. show = "1" >
  10346. <productMenu id="protocol"
  10347. type="3" >
  10348. </productMenu>
  10349. <productMenu id="sip"
  10350. type="1" >
  10351. </productMenu>
  10352. <productMenu id="bluetoothIntercom"
  10353. type="1" >
  10354. </productMenu>
  10355. <productMenu id="phone"
  10356. type="1" >
  10357. </productMenu>
  10358. <productMenu id="fmradio"
  10359. type="1" >
  10360. </productMenu>
  10361. <productMenu id="deviceSetting"
  10362. type="1"
  10363. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  10364. </productMenu>
  10365. <productMenu id="quickGuide"
  10366. type="0"
  10367. url=""
  10368. size="934KB" >
  10369. </productMenu>
  10370. <productMenu id="userGuide"
  10371. type="1"
  10372. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  10373. size="1.14MB" >
  10374. </productMenu>
  10375. <productMenu id="connectGuide"
  10376. type="1"
  10377. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  10378. size="1.12MB" >
  10379. </productMenu>
  10380. <productID id="5592"
  10381. />
  10382. <productGroupable type="0"
  10383. />
  10384. </product>
  10385. <product id="50RLE"
  10386. name="50R LE"
  10387. series="50"
  10388. latestVersion="1.1"
  10389. show = "0" >
  10390. <productMenu id="protocol"
  10391. type="2" >
  10392. </productMenu>
  10393. <productMenu id="alexa"
  10394. type="0" >
  10395. </productMenu>
  10396. <productMenu id="sip"
  10397. type="1" >
  10398. </productMenu>
  10399. <productMenu id="meshIntercom"
  10400. type="30" >
  10401. </productMenu>
  10402. <productMenu id="meshIntercom+"
  10403. type="3"
  10404. url="2" >
  10405. <productMenuType version="1.0.9"
  10406. type="2"
  10407. />
  10408. </productMenu>
  10409. <productMenu id="waveIntercom"
  10410. type="1" >
  10411. <productMenuType version="1.0.9"
  10412. type="0"
  10413. />
  10414. </productMenu>
  10415. <productMenu id="bluetoothIntercom"
  10416. type="1" >
  10417. </productMenu>
  10418. <productMenu id="phone"
  10419. type="1" >
  10420. </productMenu>
  10421. <productMenu id="music"
  10422. type="1" >
  10423. </productMenu>
  10424. <productMenu id="fmradio"
  10425. type="0" >
  10426. </productMenu>
  10427. <productMenu id="deviceSetting"
  10428. type="1"
  10429. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  10430. <productMenuURL version="1.0.9"
  10431. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  10432. />
  10433. </productMenu>
  10434. <productMenu id="quickGuide"
  10435. type="0"
  10436. url=""
  10437. size="344KB" >
  10438. </productMenu>
  10439. <productMenu id="userGuide"
  10440. type="0"
  10441. url=""
  10442. size="3.41MB" >
  10443. </productMenu>
  10444. <productMenu id="volume"
  10445. type="11" >
  10446. </productMenu>
  10447. <productMenu id="battery"
  10448. type="1" >
  10449. </productMenu>
  10450. <productID id="3223"
  10451. />
  10452. <productGroupable type="0"
  10453. />
  10454. </product>
  10455. <product id="5RLOUIS"
  10456. name="5R LOUIS EDITION"
  10457. series="5"
  10458. latestVersion="1.0"
  10459. show = "-1" >
  10460. <productMenu id="protocol"
  10461. type="3" >
  10462. </productMenu>
  10463. <productMenu id="sip"
  10464. type="1" >
  10465. </productMenu>
  10466. <productMenu id="bluetoothIntercom"
  10467. type="1" >
  10468. </productMenu>
  10469. <productMenu id="phone"
  10470. type="1" >
  10471. </productMenu>
  10472. <productMenu id="fmradio"
  10473. type="1" >
  10474. </productMenu>
  10475. <productMenu id="deviceSetting"
  10476. type="1"
  10477. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10478. </productMenu>
  10479. <productMenu id="quickGuide"
  10480. type="0"
  10481. url=""
  10482. size="934KB" >
  10483. </productMenu>
  10484. <productMenu id="userGuide"
  10485. type="0"
  10486. url=""
  10487. size="1.14MB" >
  10488. </productMenu>
  10489. <productID id="5597"
  10490. />
  10491. <productGroupable type="0"
  10492. />
  10493. </product>
  10494. <product id="5S"
  10495. name="Ridekont 5S"
  10496. series="5"
  10497. latestVersion="2.3"
  10498. show = "-1" >
  10499. <productMenu id="protocol"
  10500. type="3" >
  10501. </productMenu>
  10502. <productMenu id="sip"
  10503. type="1" >
  10504. </productMenu>
  10505. <productMenu id="bluetoothIntercom"
  10506. type="1" >
  10507. </productMenu>
  10508. <productMenu id="phone"
  10509. type="1" >
  10510. </productMenu>
  10511. <productMenu id="fmradio"
  10512. type="0" >
  10513. </productMenu>
  10514. <productMenu id="deviceSetting"
  10515. type="1"
  10516. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10517. </productMenu>
  10518. <productMenu id="quickGuide"
  10519. type="0"
  10520. url=""
  10521. size="934KB" >
  10522. </productMenu>
  10523. <productMenu id="userGuide"
  10524. type="1"
  10525. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10526. size="1.14MB" >
  10527. </productMenu>
  10528. <productID id="5589"
  10529. />
  10530. <productGroupable type="0"
  10531. />
  10532. </product>
  10533. <product id="5R"
  10534. name="Ridekont 5R"
  10535. series="5"
  10536. latestVersion="1.0"
  10537. show = "0" >
  10538. <productMenu id="protocol"
  10539. type="3" >
  10540. </productMenu>
  10541. <productMenu id="sip"
  10542. type="1" >
  10543. </productMenu>
  10544. <productMenu id="bluetoothIntercom"
  10545. type="1" >
  10546. </productMenu>
  10547. <productMenu id="phone"
  10548. type="1" >
  10549. </productMenu>
  10550. <productMenu id="fmradio"
  10551. type="1" >
  10552. </productMenu>
  10553. <productMenu id="deviceSetting"
  10554. type="1"
  10555. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10556. </productMenu>
  10557. <productMenu id="quickGuide"
  10558. type="1"
  10559. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  10560. size="934KB" >
  10561. </productMenu>
  10562. <productMenu id="userGuide"
  10563. type="1"
  10564. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  10565. size="1.14MB" >
  10566. </productMenu>
  10567. <productID id="5593"
  10568. />
  10569. <productGroupable type="0"
  10570. />
  10571. </product>
  10572. <product id="5R"
  10573. name="Ridekont 5R LITE"
  10574. series="5"
  10575. latestVersion="1.0"
  10576. show = "0" >
  10577. <productMenu id="protocol"
  10578. type="3" >
  10579. </productMenu>
  10580. <productMenu id="sip"
  10581. type="1" >
  10582. </productMenu>
  10583. <productMenu id="bluetoothIntercom"
  10584. type="1" >
  10585. </productMenu>
  10586. <productMenu id="phone"
  10587. type="1" >
  10588. </productMenu>
  10589. <productMenu id="fmradio"
  10590. type="1" >
  10591. </productMenu>
  10592. <productMenu id="deviceSetting"
  10593. type="1"
  10594. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  10595. </productMenu>
  10596. <productMenu id="quickGuide"
  10597. type="0"
  10598. url=""
  10599. size="934KB" >
  10600. </productMenu>
  10601. <productMenu id="userGuide"
  10602. type="1"
  10603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  10604. size="1.14MB" >
  10605. </productMenu>
  10606. <productID id="5594"
  10607. />
  10608. <productGroupable type="0"
  10609. />
  10610. </product>
  10611. <product id="SA30"
  10612. name="SA30"
  10613. series="SA"
  10614. latestVersion="1.0"
  10615. latestVersionVoicePrompt="0.14"
  10616. show = "-1" >
  10617. <productMenu id="protocol"
  10618. type="2" >
  10619. </productMenu>
  10620. <productMenu id="ota"
  10621. type="2" >
  10622. <otaPackages>
  10623. <package
  10624. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0-build1.img"
  10625. size="3144148"
  10626. />
  10627. </otaPackages>
  10628. </productMenu>
  10629. <productMenu id="meshIntercom"
  10630. type="30" >
  10631. </productMenu>
  10632. <productMenu id="meshIntercom+"
  10633. type="3"
  10634. url="2" >
  10635. </productMenu>
  10636. <productMenu id="phone"
  10637. type="1" >
  10638. </productMenu>
  10639. <productMenu id="music"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="musicSharing"
  10643. type="0" >
  10644. </productMenu>
  10645. <productMenu id="deviceSetting"
  10646. type="1"
  10647. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  10648. </productMenu>
  10649. <productMenu id="quickGuide"
  10650. type="0"
  10651. url=""
  10652. size="1.12MB" >
  10653. </productMenu>
  10654. <productMenu id="userGuide"
  10655. type="1"
  10656. url=""
  10657. size="2.0MB" >
  10658. </productMenu>
  10659. <productMenu id="videoGuide"
  10660. type="0"
  10661. url=""
  10662. size="3.41MB" >
  10663. </productMenu>
  10664. <productMenu id="volume"
  10665. type="12" >
  10666. </productMenu>
  10667. <productMenu id="battery"
  10668. type="1" >
  10669. </productMenu>
  10670. <productID id="6852"
  10671. />
  10672. <productGroupable type="0"
  10673. />
  10674. </product>
  10675. <product id="I30"
  10676. name="I30"
  10677. series="I"
  10678. latestVersion="1.0"
  10679. latestVersionVoicePrompt="0.1"
  10680. show = "-1" >
  10681. <productMenu id="protocol"
  10682. type="2" >
  10683. </productMenu>
  10684. <productMenu id="ota"
  10685. type="2" >
  10686. <otaPackages>
  10687. <package
  10688. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0-build0.img"
  10689. size="3144148"
  10690. />
  10691. </otaPackages>
  10692. </productMenu>
  10693. <productMenu id="meshIntercom"
  10694. type="30" >
  10695. </productMenu>
  10696. <productMenu id="meshIntercom+"
  10697. type="3"
  10698. url="2" >
  10699. </productMenu>
  10700. <productMenu id="phone"
  10701. type="1" >
  10702. </productMenu>
  10703. <productMenu id="music"
  10704. type="1" >
  10705. </productMenu>
  10706. <productMenu id="musicSharing"
  10707. type="0" >
  10708. </productMenu>
  10709. <productMenu id="deviceSetting"
  10710. type="1"
  10711. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  10712. </productMenu>
  10713. <productMenu id="quickGuide"
  10714. type="0"
  10715. url=""
  10716. size="1.12MB" >
  10717. </productMenu>
  10718. <productMenu id="userGuide"
  10719. type="1"
  10720. url=""
  10721. size="2.10MB" >
  10722. </productMenu>
  10723. <productMenu id="videoGuide"
  10724. type="0"
  10725. url=""
  10726. size="3.11MB" >
  10727. </productMenu>
  10728. <productMenu id="volume"
  10729. type="12" >
  10730. </productMenu>
  10731. <productMenu id="battery"
  10732. type="1" >
  10733. </productMenu>
  10734. <productID id="6853"
  10735. />
  10736. <productGroupable type="0"
  10737. />
  10738. </product>
  10739. <product id="C30"
  10740. name="SENA C30"
  10741. series="C"
  10742. latestVersion="1.1.4"
  10743. latestVersionVoicePrompt="0.11"
  10744. show = "1" >
  10745. <productMenu id="protocol"
  10746. type="2" >
  10747. </productMenu>
  10748. <productMenu id="alexa"
  10749. type="0" >
  10750. </productMenu>
  10751. <productMenu id="ota"
  10752. type="2" >
  10753. <otaPackages>
  10754. <package
  10755. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.4-build0.img"
  10756. size="3144148"
  10757. />
  10758. </otaPackages>
  10759. </productMenu>
  10760. <productMenu id="wa"
  10761. type="0" >
  10762. </productMenu>
  10763. <productMenu id="meshIntercom"
  10764. type="30" >
  10765. </productMenu>
  10766. <productMenu id="meshIntercom+"
  10767. type="3"
  10768. url="2" >
  10769. <productMenuType version="1.0.9"
  10770. type="2"
  10771. />
  10772. </productMenu>
  10773. <productMenu id="phone"
  10774. type="1" >
  10775. </productMenu>
  10776. <productMenu id="music"
  10777. type="1" >
  10778. </productMenu>
  10779. <productMenu id="musicSharing"
  10780. type="0" >
  10781. </productMenu>
  10782. <productMenu id="deviceSetting"
  10783. type="1"
  10784. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml" >
  10785. <productMenuURL version="1.0.9"
  10786. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  10787. />
  10788. </productMenu>
  10789. <productMenu id="quickGuide"
  10790. type="1"
  10791. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  10792. size="1.12MB" >
  10793. </productMenu>
  10794. <productMenu id="userGuide"
  10795. type="0"
  10796. url=""
  10797. size="2.0MB" >
  10798. </productMenu>
  10799. <productMenu id="videoGuide"
  10800. type="0"
  10801. url=""
  10802. size="3.41MB" >
  10803. </productMenu>
  10804. <productMenu id="volume"
  10805. type="12" >
  10806. </productMenu>
  10807. <productMenu id="battery"
  10808. type="1" >
  10809. </productMenu>
  10810. <productID id="683A"
  10811. />
  10812. <productGroupable type="0"
  10813. />
  10814. </product>
  10815. <product id="C20"
  10816. name="C20"
  10817. series="C"
  10818. latestVersion="1.0"
  10819. show = "1" >
  10820. <productMenu id="protocol"
  10821. type="3" >
  10822. </productMenu>
  10823. <productMenu id="sip"
  10824. type="1" >
  10825. </productMenu>
  10826. <productMenu id="bluetoothIntercom"
  10827. type="1" >
  10828. </productMenu>
  10829. <productMenu id="phone"
  10830. type="1" >
  10831. </productMenu>
  10832. <productMenu id="deviceSetting"
  10833. type="1"
  10834. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  10835. </productMenu>
  10836. <productMenu id="quickGuide"
  10837. type="1"
  10838. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  10839. size="934KB" >
  10840. </productMenu>
  10841. <productMenu id="userGuide"
  10842. type="1"
  10843. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  10844. size="1.14MB" >
  10845. </productMenu>
  10846. <productID id="3701"
  10847. />
  10848. <productGroupable type="0"
  10849. />
  10850. </product>
  10851. <product id="C10"
  10852. name="C10"
  10853. series="C"
  10854. latestVersion="1.4.4"
  10855. show = "1" >
  10856. <productMenu id="protocol"
  10857. type="3" >
  10858. </productMenu>
  10859. <productMenu id="sip"
  10860. type="1" >
  10861. </productMenu>
  10862. <productMenu id="bluetoothIntercom"
  10863. type="1" >
  10864. </productMenu>
  10865. <productMenu id="phone"
  10866. type="1" >
  10867. </productMenu>
  10868. <productMenu id="fmradio"
  10869. type="0" >
  10870. </productMenu>
  10871. <productMenu id="deviceSetting"
  10872. type="1"
  10873. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10874. </productMenu>
  10875. <productMenu id="userGuide"
  10876. type="1"
  10877. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  10878. size="1.14MB" >
  10879. </productMenu>
  10880. <productID id="5595"
  10881. />
  10882. <productGroupable type="0"
  10883. />
  10884. </product>
  10885. <product id="J30"
  10886. name="J30"
  10887. series="J"
  10888. latestVersion="1.2.1"
  10889. latestVersionVoicePrompt="0.13"
  10890. show = "0" >
  10891. <productMenu id="protocol"
  10892. type="2" >
  10893. </productMenu>
  10894. <productMenu id="alexa"
  10895. type="0" >
  10896. </productMenu>
  10897. <productMenu id="ota"
  10898. type="2" >
  10899. <otaPackages>
  10900. <package
  10901. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  10902. size="3144148"
  10903. />
  10904. </otaPackages>
  10905. </productMenu>
  10906. <productMenu id="wa"
  10907. type="0" >
  10908. </productMenu>
  10909. <productMenu id="meshIntercom"
  10910. type="30" >
  10911. </productMenu>
  10912. <productMenu id="meshIntercom+"
  10913. type="3"
  10914. url="2" >
  10915. <productMenuType version="1.0.9"
  10916. type="2"
  10917. />
  10918. </productMenu>
  10919. <productMenu id="waveIntercom"
  10920. type="1" >
  10921. <productMenuType version="1.1.9"
  10922. type="0"
  10923. />
  10924. </productMenu>
  10925. <productMenu id="phone"
  10926. type="1" >
  10927. </productMenu>
  10928. <productMenu id="music"
  10929. type="1" >
  10930. </productMenu>
  10931. <productMenu id="musicSharing"
  10932. type="0" >
  10933. </productMenu>
  10934. <productMenu id="deviceSetting"
  10935. type="1"
  10936. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  10937. <productMenuURL version="1.0.9"
  10938. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  10939. />
  10940. </productMenu>
  10941. <productMenu id="quickGuide"
  10942. type="0"
  10943. url=""
  10944. size="1.12MB" >
  10945. </productMenu>
  10946. <productMenu id="userGuide"
  10947. type="1"
  10948. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  10949. size="2.0MB" >
  10950. </productMenu>
  10951. <productMenu id="videoGuide"
  10952. type="0"
  10953. url=""
  10954. size="3.41MB" >
  10955. </productMenu>
  10956. <productMenu id="volume"
  10957. type="12" >
  10958. </productMenu>
  10959. <productMenu id="battery"
  10960. type="1" >
  10961. </productMenu>
  10962. <productID id="6848"
  10963. />
  10964. <productGroupable type="0"
  10965. />
  10966. </product>
  10967. <product id="J10"
  10968. name="J10"
  10969. series="5"
  10970. latestVersion="1.1.4"
  10971. show = "0" >
  10972. <productMenu id="protocol"
  10973. type="3" >
  10974. </productMenu>
  10975. <productMenu id="sip"
  10976. type="1" >
  10977. </productMenu>
  10978. <productMenu id="bluetoothIntercom"
  10979. type="1" >
  10980. </productMenu>
  10981. <productMenu id="phone"
  10982. type="1" >
  10983. </productMenu>
  10984. <productMenu id="fmradio"
  10985. type="0" >
  10986. </productMenu>
  10987. <productMenu id="deviceSetting"
  10988. type="1"
  10989. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  10990. </productMenu>
  10991. <productMenu id="userGuide"
  10992. type="1"
  10993. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  10994. size="1.14MB" >
  10995. </productMenu>
  10996. <productID id="5598"
  10997. />
  10998. <productGroupable type="0"
  10999. />
  11000. </product>
  11001. <product id="B20"
  11002. name="B20"
  11003. series="B"
  11004. latestVersion="1.1.1"
  11005. latestVersionVoicePrompt="0.13"
  11006. show = "0" >
  11007. <productMenu id="protocol"
  11008. type="2" >
  11009. </productMenu>
  11010. <productMenu id="alexa"
  11011. type="0" >
  11012. </productMenu>
  11013. <productMenu id="ota"
  11014. type="2" >
  11015. <otaPackages>
  11016. <package
  11017. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  11018. size="3144148"
  11019. />
  11020. </otaPackages>
  11021. </productMenu>
  11022. <productMenu id="wa"
  11023. type="0" >
  11024. </productMenu>
  11025. <productMenu id="meshIntercom"
  11026. type="30" >
  11027. </productMenu>
  11028. <productMenu id="phone"
  11029. type="1" >
  11030. </productMenu>
  11031. <productMenu id="music"
  11032. type="1" >
  11033. </productMenu>
  11034. <productMenu id="musicSharing"
  11035. type="0" >
  11036. </productMenu>
  11037. <productMenu id="deviceSetting"
  11038. type="1"
  11039. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  11040. <productMenuURL version="1.0.9"
  11041. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  11042. />
  11043. </productMenu>
  11044. <productMenu id="quickGuide"
  11045. type="0"
  11046. url=""
  11047. size="1.12MB" >
  11048. </productMenu>
  11049. <productMenu id="userGuide"
  11050. type="1"
  11051. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  11052. size="2.0MB" >
  11053. </productMenu>
  11054. <productMenu id="videoGuide"
  11055. type="0"
  11056. url=""
  11057. size="3.41MB" >
  11058. </productMenu>
  11059. <productMenu id="volume"
  11060. type="12" >
  11061. </productMenu>
  11062. <productMenu id="battery"
  11063. type="1" >
  11064. </productMenu>
  11065. <productID id="6847"
  11066. />
  11067. <productGroupable type="0"
  11068. />
  11069. </product>
  11070. <product id="B10"
  11071. name="B10"
  11072. series="5"
  11073. latestVersion="1.2.4"
  11074. show = "0" >
  11075. <productMenu id="protocol"
  11076. type="3" >
  11077. </productMenu>
  11078. <productMenu id="sip"
  11079. type="1" >
  11080. </productMenu>
  11081. <productMenu id="bluetoothIntercom"
  11082. type="1" >
  11083. </productMenu>
  11084. <productMenu id="phone"
  11085. type="1" >
  11086. </productMenu>
  11087. <productMenu id="fmradio"
  11088. type="0" >
  11089. </productMenu>
  11090. <productMenu id="deviceSetting"
  11091. type="1"
  11092. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  11093. </productMenu>
  11094. <productMenu id="userGuide"
  11095. type="1"
  11096. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  11097. size="1.14MB" >
  11098. </productMenu>
  11099. <productID id="5596"
  11100. />
  11101. <productGroupable type="0"
  11102. />
  11103. </product>
  11104. <product id="E30"
  11105. name="E30"
  11106. series="E"
  11107. latestVersion="1.1.1"
  11108. latestVersionVoicePrompt="0.13"
  11109. show = "0" >
  11110. <productMenu id="protocol"
  11111. type="2" >
  11112. </productMenu>
  11113. <productMenu id="alexa"
  11114. type="0" >
  11115. </productMenu>
  11116. <productMenu id="ota"
  11117. type="2" >
  11118. <otaPackages>
  11119. <package
  11120. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  11121. size="3144148"
  11122. />
  11123. </otaPackages>
  11124. </productMenu>
  11125. <productMenu id="wa"
  11126. type="0" >
  11127. </productMenu>
  11128. <productMenu id="meshIntercom"
  11129. type="30" >
  11130. </productMenu>
  11131. <productMenu id="meshIntercom+"
  11132. type="3"
  11133. url="2" >
  11134. </productMenu>
  11135. <productMenu id="waveIntercom"
  11136. type="1" >
  11137. <productMenuType version="1.0.9"
  11138. type="0"
  11139. />
  11140. </productMenu>
  11141. <productMenu id="phone"
  11142. type="1" >
  11143. </productMenu>
  11144. <productMenu id="music"
  11145. type="1" >
  11146. </productMenu>
  11147. <productMenu id="musicSharing"
  11148. type="0" >
  11149. </productMenu>
  11150. <productMenu id="deviceSetting"
  11151. type="1"
  11152. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  11153. </productMenu>
  11154. <productMenu id="quickGuide"
  11155. type="0"
  11156. url=""
  11157. size="1.12MB" >
  11158. </productMenu>
  11159. <productMenu id="userGuide"
  11160. type="1"
  11161. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  11162. size="2.0MB" >
  11163. </productMenu>
  11164. <productMenu id="videoGuide"
  11165. type="0"
  11166. url=""
  11167. size="3.41MB" >
  11168. </productMenu>
  11169. <productMenu id="volume"
  11170. type="12" >
  11171. </productMenu>
  11172. <productMenu id="battery"
  11173. type="1" >
  11174. </productMenu>
  11175. <productID id="6846"
  11176. />
  11177. <productGroupable type="0"
  11178. />
  11179. </product>
  11180. <product id="ACSRAM"
  11181. name="ACS-RAM"
  11182. series="ACS"
  11183. latestVersion="1.0.5"
  11184. show = "1" >
  11185. <productMenu id="protocol"
  11186. type="3" >
  11187. </productMenu>
  11188. <productMenu id="sip"
  11189. type="1" >
  11190. </productMenu>
  11191. <productMenu id="bluetoothIntercom"
  11192. type="1" >
  11193. </productMenu>
  11194. <productMenu id="deviceSetting"
  11195. type="1"
  11196. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  11197. </productMenu>
  11198. <productMenu id="quickGuide"
  11199. type="1"
  11200. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  11201. size="344KB" >
  11202. </productMenu>
  11203. <productMenu id="userGuide"
  11204. type="1"
  11205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  11206. size="1.14MB" >
  11207. </productMenu>
  11208. <productMenu id="connectGuide"
  11209. type="1"
  11210. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  11211. size="1.12MB" >
  11212. </productMenu>
  11213. <productID id="3400"
  11214. />
  11215. <productGroupable type="0"
  11216. />
  11217. </product>
  11218. <product id="ACS10"
  11219. name="ACS10"
  11220. series="ACS"
  11221. latestVersion="1.0.2"
  11222. show = "1" >
  11223. <productMenu id="protocol"
  11224. type="0">
  11225. </productMenu>
  11226. <productMenu id="sip"
  11227. type="1" >
  11228. </productMenu>
  11229. <productMenu id="bluetoothIntercom"
  11230. type="1" >
  11231. </productMenu>
  11232. <productMenu id="phone"
  11233. type="2" >
  11234. </productMenu>
  11235. <productMenu id="deviceSetting"
  11236. type="1"
  11237. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  11238. </productMenu>
  11239. <productMenu id="quickGuide"
  11240. type="1"
  11241. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  11242. size="970KB" >
  11243. </productMenu>
  11244. <productMenu id="userGuide"
  11245. type="1"
  11246. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  11247. size="1.26MB" >
  11248. </productMenu>
  11249. <productMenu id="connectGuide"
  11250. type="1"
  11251. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  11252. size="1.12MB" >
  11253. </productMenu>
  11254. <productID id="3300"
  11255. />
  11256. <productGroupable type="0"
  11257. />
  11258. </product>
  11259. <product id="DWO7ProMesh"
  11260. name="DWO 7 Pro Mesh"
  11261. series="50"
  11262. latestVersion="1.1"
  11263. latestVersionVoicePrompt="0.9"
  11264. show = "0" >
  11265. <productMenu id="protocol"
  11266. type="2" >
  11267. </productMenu>
  11268. <productMenu id="alexa"
  11269. type="0" >
  11270. </productMenu>
  11271. <productMenu id="ota"
  11272. type="2" >
  11273. <otaPackages>
  11274. <package
  11275. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  11276. size="2945812"
  11277. />
  11278. </otaPackages>
  11279. </productMenu>
  11280. <productMenu id="wa"
  11281. type="0" >
  11282. </productMenu>
  11283. <productMenu id="meshIntercom"
  11284. type="20" >
  11285. </productMenu>
  11286. <productMenu id="meshIntercom+"
  11287. type="3"
  11288. url="2" >
  11289. <productMenuType version="1.0.9"
  11290. type="2"
  11291. />
  11292. <productMenuURL version="2.1.1"
  11293. url="0"
  11294. />
  11295. </productMenu>
  11296. <productMenu id="waveIntercom"
  11297. type="1" >
  11298. <productMenuType version="1.0.9"
  11299. type="0"
  11300. />
  11301. </productMenu>
  11302. <productMenu id="phone"
  11303. type="1" >
  11304. </productMenu>
  11305. <productMenu id="music"
  11306. type="1" >
  11307. </productMenu>
  11308. <productMenu id="fmradio"
  11309. type="1" >
  11310. </productMenu>
  11311. <productMenu id="musicSharing"
  11312. type="0" >
  11313. </productMenu>
  11314. <productMenu id="deviceSetting"
  11315. type="1"
  11316. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  11317. <productMenuURL version="1.0.9"
  11318. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  11319. />
  11320. </productMenu>
  11321. <productMenu id="quickGuide"
  11322. type="1"
  11323. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  11324. size="1.12MB" >
  11325. </productMenu>
  11326. <productMenu id="userGuide"
  11327. type="1"
  11328. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  11329. size="2.0MB" >
  11330. </productMenu>
  11331. <productMenu id="volume"
  11332. type="12" >
  11333. </productMenu>
  11334. <productMenu id="battery"
  11335. type="1" >
  11336. </productMenu>
  11337. <productID id="6806"
  11338. />
  11339. <productGroupable type="0"
  11340. />
  11341. </product>
  11342. <product id="ERA1X"
  11343. name="ERA 1 X"
  11344. series="UCOM"
  11345. latestVersion="0.1.14"
  11346. latestVersionMesh="0.19"
  11347. latestVersionVoicePrompt="1.2"
  11348. show = "-1" >
  11349. <productMenu id="protocol"
  11350. type="2" >
  11351. </productMenu>
  11352. <productMenu id="ota"
  11353. type="2" >
  11354. <otaLanguages>
  11355. <otaLanguage
  11356. id="0"
  11357. name="English"
  11358. package="0"
  11359. />
  11360. <otaLanguage
  11361. id="0"
  11362. name="French"
  11363. package="1"
  11364. />
  11365. <otaLanguage
  11366. id="0"
  11367. name="Spanish"
  11368. package="2"
  11369. />
  11370. <otaLanguage
  11371. id="0"
  11372. name="Italian"
  11373. package="3"
  11374. />
  11375. <otaLanguage
  11376. id="0"
  11377. name="German"
  11378. package="4"
  11379. />
  11380. <otaLanguage
  11381. id="0"
  11382. name="Dutch"
  11383. package="5"
  11384. />
  11385. <otaLanguage
  11386. id="0"
  11387. name="Russian"
  11388. package="6"
  11389. />
  11390. <otaLanguage
  11391. id="0"
  11392. name="Chinese"
  11393. package="7"
  11394. />
  11395. <otaLanguage
  11396. id="0"
  11397. name="Korean"
  11398. package="8"
  11399. />
  11400. <otaLanguage
  11401. id="0"
  11402. name="Japanese"
  11403. package="9"
  11404. />
  11405. <otaLanguage
  11406. id="0"
  11407. name="Finnish"
  11408. package="10"
  11409. />
  11410. </otaLanguages>
  11411. <otaPackages>
  11412. <package
  11413. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0.img"
  11414. size="5183988"
  11415. />
  11416. <package
  11417. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fr-FR.img"
  11418. size="5183988"
  11419. />
  11420. <package
  11421. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-es-ES.img"
  11422. size="5183988"
  11423. />
  11424. <package
  11425. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-it-IT.img"
  11426. size="5183988"
  11427. />
  11428. <package
  11429. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-de-DE.img"
  11430. size="5183988"
  11431. />
  11432. <package
  11433. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-nl-NL.img"
  11434. size="5183988"
  11435. />
  11436. <package
  11437. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ru-RU.img"
  11438. size="5183988"
  11439. />
  11440. <package
  11441. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-cmn-CN.img"
  11442. size="5183988"
  11443. />
  11444. <package
  11445. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ko-KR.img"
  11446. size="5183988"
  11447. />
  11448. <package
  11449. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-ja-JP.img"
  11450. size="5183988"
  11451. />
  11452. <package
  11453. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.1.14-build0-fi-FI.img"
  11454. size="5183988"
  11455. />
  11456. </otaPackages>
  11457. </productMenu>
  11458. <productMenu id="wa"
  11459. type="0" >
  11460. </productMenu>
  11461. <productMenu id="sip"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="led"
  11465. type="0" >
  11466. </productMenu>
  11467. <productMenu id="illusion"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="meshIntercom"
  11471. type="30" >
  11472. </productMenu>
  11473. <productMenu id="meshIntercom+"
  11474. type="3"
  11475. url="2" >
  11476. </productMenu>
  11477. <productMenu id="waveIntercom"
  11478. type="0" >
  11479. </productMenu>
  11480. <productMenu id="bluetoothIntercom"
  11481. type="1" >
  11482. </productMenu>
  11483. <productMenu id="bluetoothIntercomGrouping"
  11484. type="0" >
  11485. </productMenu>
  11486. <productMenu id="fmradio"
  11487. type="1"
  11488. url="1" >
  11489. </productMenu>
  11490. <productMenu id="phone"
  11491. type="1" >
  11492. </productMenu>
  11493. <productMenu id="music"
  11494. type="1" >
  11495. </productMenu>
  11496. <productMenu id="musicSharing"
  11497. type="0" >
  11498. </productMenu>
  11499. <productMenu id="deviceSetting"
  11500. type="1"
  11501. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  11502. </productMenu>
  11503. <productMenu id="quickGuide"
  11504. type="0"
  11505. url=""
  11506. size="1.12MB" >
  11507. </productMenu>
  11508. <productMenu id="userGuide"
  11509. type="1"
  11510. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  11511. size="2.0MB" >
  11512. </productMenu>
  11513. <productMenu id="videoGuide"
  11514. type="0"
  11515. url=""
  11516. size="3.41MB" >
  11517. </productMenu>
  11518. <productMenu id="volume"
  11519. type="16" >
  11520. </productMenu>
  11521. <productMenu id="soundMode"
  11522. type="1" >
  11523. </productMenu>
  11524. <productMenu id="battery"
  11525. type="1" >
  11526. </productMenu>
  11527. <productID id="6A83"
  11528. />
  11529. <productGroupable type="0"
  11530. />
  11531. </product>
  11532. <product id="MeshStation"
  11533. name="Mesh Station"
  11534. series="50"
  11535. latestVersion="0.9"
  11536. show = "-1" >
  11537. <productMenu id="protocol"
  11538. type="2" >
  11539. </productMenu>
  11540. <productMenu id="meshIntercom"
  11541. type="20"
  11542. url="99" >
  11543. </productMenu>
  11544. <productID id="3161"
  11545. />
  11546. <productGroupable type="0"
  11547. />
  11548. </product>
  11549. </products>
  11550. </sna>