snm.xml 401 KB

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