snm.xml 384 KB

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