snm.xml 272 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250178" 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=""
  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="60S"
  122. name="60S"
  123. series="60"
  124. latestVersion="1.2"
  125. latestVersionMesh="1.2"
  126. latestVersionVoicePrompt="1.1"
  127. show = "1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="2" >
  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/60S-v1.2-build2.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="wa"
  247. type="0" >
  248. </productMenu>
  249. <productMenu id="sip"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="led"
  253. type="0" >
  254. </productMenu>
  255. <productMenu id="illusion"
  256. type="1" >
  257. </productMenu>
  258. <productMenu id="meshIntercom"
  259. type="30" >
  260. </productMenu>
  261. <productMenu id="meshIntercom+"
  262. type="3"
  263. url="2" >
  264. <productMenuURL version="1.0.2"
  265. url="10"
  266. />
  267. </productMenu>
  268. <productMenu id="waveIntercom"
  269. type="1" >
  270. <productMenuType version="1.0.9"
  271. type="0"
  272. />
  273. </productMenu>
  274. <productMenu id="bluetoothIntercom"
  275. type="1"
  276. url="2" >
  277. </productMenu>
  278. <productMenu id="bluetoothIntercomGrouping"
  279. type="0" >
  280. </productMenu>
  281. <productMenu id="fmradio"
  282. type="1"
  283. url="1" >
  284. </productMenu>
  285. <productMenu id="phone"
  286. type="1" >
  287. </productMenu>
  288. <productMenu id="music"
  289. type="1" >
  290. </productMenu>
  291. <productMenu id="musicSharing"
  292. type="0" >
  293. </productMenu>
  294. <productMenu id="deviceSetting"
  295. type="1"
  296. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  297. <productMenuURL version="1.0.2"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  299. />
  300. <productMenuURL version="1.0"
  301. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  302. />
  303. <productMenuURL version="0.9.11"
  304. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  305. />
  306. </productMenu>
  307. <productMenu id="quickGuide"
  308. type="0"
  309. url=""
  310. size="1.12MB" >
  311. </productMenu>
  312. <productMenu id="userGuide"
  313. type="1"
  314. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.2_en_250514.pdf"
  315. size="2.0MB" >
  316. </productMenu>
  317. <productMenu id="videoGuide"
  318. type="0"
  319. url=""
  320. size="3.41MB" >
  321. </productMenu>
  322. <productMenu id="connectGuide"
  323. type="1"
  324. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  325. size="1.12MB" >
  326. </productMenu>
  327. <productMenu id="volume"
  328. type="16" >
  329. <productMenuType version="0.9.11"
  330. type="13"
  331. />
  332. </productMenu>
  333. <productMenu id="soundMode"
  334. type="1" >
  335. <productMenuType version="0.9.11"
  336. type="0"
  337. />
  338. </productMenu>
  339. <productMenu id="battery"
  340. type="1" >
  341. </productMenu>
  342. <productID id="6A02"
  343. />
  344. <productGroupable type="0"
  345. />
  346. </product>
  347. <product id="60R"
  348. name="60R"
  349. series="60"
  350. latestVersion="0.7"
  351. latestVersionMesh="0.8"
  352. latestVersionVoicePrompt="0.2"
  353. show = "-1" >
  354. <productMenu id="protocol"
  355. type="2" >
  356. </productMenu>
  357. <productMenu id="ota"
  358. type="0" >
  359. <otaLanguages>
  360. <otaLanguage
  361. id="0"
  362. name="English"
  363. package="0"
  364. />
  365. <otaLanguage
  366. id="0"
  367. name="Korean"
  368. package="1"
  369. />
  370. </otaLanguages>
  371. <otaPackages>
  372. <package
  373. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  374. size="5183988"
  375. />
  376. <package
  377. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  378. size="5183988"
  379. />
  380. </otaPackages>
  381. </productMenu>
  382. <productMenu id="wa"
  383. type="0" >
  384. </productMenu>
  385. <productMenu id="sip"
  386. type="1" >
  387. </productMenu>
  388. <productMenu id="led"
  389. type="1" >
  390. </productMenu>
  391. <productMenu id="illusion"
  392. type="1" >
  393. </productMenu>
  394. <productMenu id="meshIntercom"
  395. type="30" >
  396. </productMenu>
  397. <productMenu id="bluetoothIntercom"
  398. type="1" >
  399. </productMenu>
  400. <productMenu id="fmradio"
  401. type="1"
  402. url="1" >
  403. </productMenu>
  404. <productMenu id="phone"
  405. type="1" >
  406. </productMenu>
  407. <productMenu id="music"
  408. type="1" >
  409. </productMenu>
  410. <productMenu id="musicSharing"
  411. type="0" >
  412. </productMenu>
  413. <productMenu id="deviceSetting"
  414. type="1"
  415. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml" >
  416. </productMenu>
  417. <productMenu id="quickGuide"
  418. type="0"
  419. url=""
  420. size="1.12MB" >
  421. </productMenu>
  422. <productMenu id="userGuide"
  423. type="0"
  424. url=""
  425. size="2.0MB" >
  426. </productMenu>
  427. <productMenu id="videoGuide"
  428. type="0"
  429. url=""
  430. size="3.41MB" >
  431. </productMenu>
  432. <productMenu id="volume"
  433. type="13" >
  434. </productMenu>
  435. <productMenu id="battery"
  436. type="1" >
  437. </productMenu>
  438. <productID id="6A03"
  439. />
  440. <productGroupable type="0"
  441. />
  442. </product>
  443. <product id="COMP1"
  444. name="BMW COM P1"
  445. series="60"
  446. latestVersion="1.0.6"
  447. latestVersionMesh="0.19"
  448. latestVersionVoicePrompt="1.0"
  449. show = "-1" >
  450. <productMenu id="protocol"
  451. type="2" >
  452. </productMenu>
  453. <productMenu id="ota"
  454. type="2" >
  455. <otaLanguages>
  456. <otaLanguage
  457. id="0"
  458. name="English"
  459. package="0"
  460. />
  461. <otaLanguage
  462. id="0"
  463. name="French"
  464. package="1"
  465. />
  466. <otaLanguage
  467. id="0"
  468. name="Spanish"
  469. package="2"
  470. />
  471. <otaLanguage
  472. id="0"
  473. name="Italian"
  474. package="3"
  475. />
  476. <otaLanguage
  477. id="0"
  478. name="German"
  479. package="4"
  480. />
  481. <otaLanguage
  482. id="0"
  483. name="Dutch"
  484. package="5"
  485. />
  486. <otaLanguage
  487. id="0"
  488. name="Russian"
  489. package="6"
  490. />
  491. <otaLanguage
  492. id="0"
  493. name="Chinese"
  494. package="7"
  495. />
  496. <otaLanguage
  497. id="0"
  498. name="Korean"
  499. package="8"
  500. />
  501. <otaLanguage
  502. id="0"
  503. name="Japanese"
  504. package="9"
  505. />
  506. <otaLanguage
  507. id="0"
  508. name="Finnish"
  509. package="10"
  510. />
  511. </otaLanguages>
  512. <otaPackages>
  513. <package
  514. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  515. size="5183988"
  516. />
  517. <package
  518. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  519. size="5183988"
  520. />
  521. <package
  522. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  523. size="5183988"
  524. />
  525. <package
  526. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  527. size="5183988"
  528. />
  529. <package
  530. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  531. size="5183988"
  532. />
  533. <package
  534. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  535. size="5183988"
  536. />
  537. <package
  538. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  539. size="5183988"
  540. />
  541. <package
  542. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  543. size="5183988"
  544. />
  545. <package
  546. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  547. size="5183988"
  548. />
  549. <package
  550. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  551. size="5183988"
  552. />
  553. <package
  554. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  555. size="5183988"
  556. />
  557. </otaPackages>
  558. </productMenu>
  559. <productMenu id="wa"
  560. type="0" >
  561. </productMenu>
  562. <productMenu id="sip"
  563. type="1" >
  564. </productMenu>
  565. <productMenu id="led"
  566. type="0" >
  567. </productMenu>
  568. <productMenu id="illusion"
  569. type="0" >
  570. </productMenu>
  571. <productMenu id="meshIntercom"
  572. type="30" >
  573. </productMenu>
  574. <productMenu id="bluetoothIntercom"
  575. type="1" >
  576. </productMenu>
  577. <productMenu id="bluetoothIntercomGrouping"
  578. type="0" >
  579. </productMenu>
  580. <productMenu id="fmradio"
  581. type="0" >
  582. </productMenu>
  583. <productMenu id="phone"
  584. type="1" >
  585. </productMenu>
  586. <productMenu id="music"
  587. type="1" >
  588. </productMenu>
  589. <productMenu id="musicSharing"
  590. type="0" >
  591. </productMenu>
  592. <productMenu id="deviceSetting"
  593. type="1"
  594. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  595. </productMenu>
  596. <productMenu id="quickGuide"
  597. type="0"
  598. url=""
  599. size="1.12MB" >
  600. </productMenu>
  601. <productMenu id="userGuide"
  602. type="0"
  603. url=""
  604. size="2.0MB" >
  605. </productMenu>
  606. <productMenu id="videoGuide"
  607. type="0"
  608. url=""
  609. size="3.41MB" >
  610. </productMenu>
  611. <productMenu id="volume"
  612. type="16" >
  613. </productMenu>
  614. <productMenu id="battery"
  615. type="1" >
  616. </productMenu>
  617. <productID id="6A80"
  618. />
  619. <productGroupable type="0"
  620. />
  621. </product>
  622. <product id="50S"
  623. name="50S"
  624. series="50"
  625. latestVersion="2.7.1"
  626. show = "1" >
  627. <productMenu id="protocol"
  628. type="2" >
  629. </productMenu>
  630. <productMenu id="alexa"
  631. type="0" >
  632. </productMenu>
  633. <productMenu id="ota"
  634. type="0"
  635. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  636. size="1150234" >
  637. </productMenu>
  638. <productMenu id="wa"
  639. type="1" >
  640. </productMenu>
  641. <productMenu id="sip"
  642. type="1" >
  643. </productMenu>
  644. <productMenu id="meshIntercom"
  645. type="30" >
  646. <productMenuType version="2.1.1"
  647. type="20"
  648. />
  649. </productMenu>
  650. <productMenu id="meshIntercom+"
  651. type="3"
  652. url="2" >
  653. <productMenuType version="2.5"
  654. type="2"
  655. />
  656. <productMenuURL version="2.1.1"
  657. url="0"
  658. />
  659. </productMenu>
  660. <productMenu id="waveIntercom"
  661. type="1" >
  662. <productMenuType version="2.6"
  663. type="0"
  664. />
  665. </productMenu>
  666. <productMenu id="bluetoothIntercom"
  667. type="1" >
  668. </productMenu>
  669. <productMenu id="phone"
  670. type="1" >
  671. </productMenu>
  672. <productMenu id="music"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="fmradio"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="deviceSetting"
  679. type="1"
  680. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  681. <productMenuURL version="2.5"
  682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  683. />
  684. <productMenuURL version="2.1.1"
  685. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  686. />
  687. <productMenuURL version="2.0.3"
  688. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  689. />
  690. </productMenu>
  691. <productMenu id="quickGuide"
  692. type="0"
  693. url=""
  694. size="934KB" >
  695. </productMenu>
  696. <productMenu id="userGuide"
  697. type="1"
  698. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.0_en_250226.pdf"
  699. size="1.14MB" >
  700. </productMenu>
  701. <productMenu id="videoGuide"
  702. type="1"
  703. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  704. size="3.41MB" >
  705. </productMenu>
  706. <productMenu id="connectGuide"
  707. type="1"
  708. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="volume"
  712. type="11" >
  713. </productMenu>
  714. <productMenu id="battery"
  715. type="1" >
  716. </productMenu>
  717. <productID id="3210"
  718. />
  719. <productGroupable type="0"
  720. />
  721. </product>
  722. <product id="50S"
  723. name="50S"
  724. series="50"
  725. latestVersion="1.5"
  726. show = "-1" >
  727. <productMenu id="protocol"
  728. type="2" >
  729. </productMenu>
  730. <productMenu id="alexa"
  731. type="0" >
  732. </productMenu>
  733. <productMenu id="wa"
  734. type="1" >
  735. </productMenu>
  736. <productMenu id="sip"
  737. type="1" >
  738. </productMenu>
  739. <productMenu id="meshIntercom"
  740. type="30" >
  741. <productMenuType version="1.2.2"
  742. type="20"
  743. />
  744. </productMenu>
  745. <productMenu id="meshIntercom+"
  746. type="3"
  747. url="2" >
  748. <productMenuType version="1.4.9"
  749. type="2"
  750. />
  751. <productMenuURL version="1.2.2"
  752. url="0"
  753. />
  754. </productMenu>
  755. <productMenu id="waveIntercom"
  756. type="1" >
  757. <productMenuType version="1.3.9"
  758. type="0"
  759. />
  760. </productMenu>
  761. <productMenu id="bluetoothIntercom"
  762. type="1" >
  763. </productMenu>
  764. <productMenu id="phone"
  765. type="1" >
  766. </productMenu>
  767. <productMenu id="music"
  768. type="1" >
  769. </productMenu>
  770. <productMenu id="fmradio"
  771. type="1" >
  772. </productMenu>
  773. <productMenu id="deviceSetting"
  774. type="1"
  775. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  776. <productMenuURL version="1.4.9"
  777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  778. />
  779. <productMenuURL version="1.3.9"
  780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  781. />
  782. <productMenuURL version="1.2.2"
  783. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  784. />
  785. <productMenuURL version="1.1.1"
  786. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  787. />
  788. </productMenu>
  789. <productMenu id="quickGuide"
  790. type="0"
  791. url=""
  792. size="934KB" >
  793. </productMenu>
  794. <productMenu id="userGuide"
  795. type="1"
  796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.1_en_250401.pdf"
  797. size="1.14MB" >
  798. </productMenu>
  799. <productMenu id="videoGuide"
  800. type="1"
  801. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  802. size="3.41MB" >
  803. </productMenu>
  804. <productMenu id="volume"
  805. type="11" >
  806. </productMenu>
  807. <productMenu id="battery"
  808. type="1" >
  809. </productMenu>
  810. <productID id="3132"
  811. />
  812. <productGroupable type="0"
  813. />
  814. </product>
  815. <product id="50R"
  816. name="50R"
  817. series="50"
  818. latestVersion="2.7"
  819. show = "1" >
  820. <productMenu id="protocol"
  821. type="2" >
  822. </productMenu>
  823. <productMenu id="alexa"
  824. type="0" >
  825. </productMenu>
  826. <productMenu id="ota"
  827. type="0"
  828. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  829. size="1150234" >
  830. </productMenu>
  831. <productMenu id="wa"
  832. type="1" >
  833. </productMenu>
  834. <productMenu id="sip"
  835. type="1" >
  836. </productMenu>
  837. <productMenu id="meshIntercom"
  838. type="30" >
  839. <productMenuType version="2.1.1"
  840. type="20"
  841. />
  842. </productMenu>
  843. <productMenu id="meshIntercom+"
  844. type="3"
  845. url="2" >
  846. <productMenuType version="2.5"
  847. type="2"
  848. />
  849. <productMenuURL version="2.1.1"
  850. url="0"
  851. />
  852. </productMenu>
  853. <productMenu id="bluetoothIntercom"
  854. type="1" >
  855. </productMenu>
  856. <productMenu id="phone"
  857. type="1" >
  858. </productMenu>
  859. <productMenu id="music"
  860. type="1" >
  861. </productMenu>
  862. <productMenu id="fmradio"
  863. type="1" >
  864. </productMenu>
  865. <productMenu id="deviceSetting"
  866. type="1"
  867. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  868. <productMenuURL version="2.5"
  869. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  870. />
  871. <productMenuURL version="2.1.1"
  872. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  873. />
  874. <productMenuURL version="2.0"
  875. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  876. />
  877. </productMenu>
  878. <productMenu id="quickGuide"
  879. type="0"
  880. url=""
  881. size="344KB" >
  882. </productMenu>
  883. <productMenu id="userGuide"
  884. type="1"
  885. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.0_en_250305.pdf"
  886. size="3.41MB" >
  887. </productMenu>
  888. <productMenu id="videoGuide"
  889. type="1"
  890. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  891. size="3.41MB" >
  892. </productMenu>
  893. <productMenu id="connectGuide"
  894. type="1"
  895. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r.json"
  896. size="1.12MB" >
  897. </productMenu>
  898. <productMenu id="volume"
  899. type="11" >
  900. </productMenu>
  901. <productMenu id="battery"
  902. type="1" >
  903. </productMenu>
  904. <productID id="3218"
  905. />
  906. <productGroupable type="0"
  907. />
  908. </product>
  909. <product id="50R"
  910. name="50R"
  911. series="50"
  912. latestVersion="1.5"
  913. show = "-1" >
  914. <productMenu id="protocol"
  915. type="2" >
  916. </productMenu>
  917. <productMenu id="alexa"
  918. type="0" >
  919. </productMenu>
  920. <productMenu id="wa"
  921. type="1" >
  922. </productMenu>
  923. <productMenu id="sip"
  924. type="1" >
  925. </productMenu>
  926. <productMenu id="meshIntercom"
  927. type="30" >
  928. <productMenuType version="1.2.2"
  929. type="20"
  930. />
  931. </productMenu>
  932. <productMenu id="meshIntercom+"
  933. type="3"
  934. url="2" >
  935. <productMenuType version="1.4.9"
  936. type="2"
  937. />
  938. <productMenuURL version="1.2.2"
  939. url="0"
  940. />
  941. </productMenu>
  942. <productMenu id="waveIntercom"
  943. type="1" >
  944. <productMenuType version="1.3.9"
  945. type="0"
  946. />
  947. </productMenu>
  948. <productMenu id="bluetoothIntercom"
  949. type="1" >
  950. </productMenu>
  951. <productMenu id="phone"
  952. type="1" >
  953. </productMenu>
  954. <productMenu id="music"
  955. type="1" >
  956. </productMenu>
  957. <productMenu id="fmradio"
  958. type="1" >
  959. </productMenu>
  960. <productMenu id="deviceSetting"
  961. type="1"
  962. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  963. <productMenuURL version="1.4.9"
  964. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  965. />
  966. <productMenuURL version="1.3.9"
  967. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  968. />
  969. <productMenuURL version="1.2.2"
  970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  971. />
  972. <productMenuURL version="1.1.1"
  973. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  974. />
  975. </productMenu>
  976. <productMenu id="quickGuide"
  977. type="0"
  978. url=""
  979. size="344KB" >
  980. </productMenu>
  981. <productMenu id="userGuide"
  982. type="1"
  983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.1_en_250403.pdf"
  984. size="3.41MB" >
  985. </productMenu>
  986. <productMenu id="videoGuide"
  987. type="1"
  988. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  989. size="3.41MB" >
  990. </productMenu>
  991. <productMenu id="volume"
  992. type="11" >
  993. </productMenu>
  994. <productMenu id="battery"
  995. type="1" >
  996. </productMenu>
  997. <productID id="3134"
  998. />
  999. <productGroupable type="0"
  1000. />
  1001. </product>
  1002. <product id="50C"
  1003. name="50C"
  1004. series="50"
  1005. latestVersion="1.4.2"
  1006. show = "1" >
  1007. <productMenu id="protocol"
  1008. type="2" >
  1009. </productMenu>
  1010. <productMenu id="ota"
  1011. type="0" >
  1012. </productMenu>
  1013. <productMenu id="wa"
  1014. type="1" >
  1015. </productMenu>
  1016. <productMenu id="sip"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="meshIntercom"
  1020. type="30" >
  1021. <productMenuType version="1.1.1"
  1022. type="20"
  1023. />
  1024. </productMenu>
  1025. <productMenu id="meshIntercom+"
  1026. type="3"
  1027. url="2" >
  1028. <productMenuType version="1.3.9"
  1029. type="2"
  1030. />
  1031. <productMenuURL version="1.1.1"
  1032. url="0"
  1033. />
  1034. </productMenu>
  1035. <productMenu id="waveIntercom"
  1036. type="1" >
  1037. <productMenuType version="1.2.9"
  1038. type="0"
  1039. />
  1040. </productMenu>
  1041. <productMenu id="bluetoothIntercom"
  1042. type="1" >
  1043. </productMenu>
  1044. <productMenu id="phone"
  1045. type="1" >
  1046. </productMenu>
  1047. <productMenu id="music"
  1048. type="1" >
  1049. </productMenu>
  1050. <productMenu id="fmradio"
  1051. type="1" >
  1052. </productMenu>
  1053. <productMenu id="deviceSetting"
  1054. type="1"
  1055. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1056. <productMenuURL version="1.3.9"
  1057. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1058. />
  1059. <productMenuURL version="1.1.1"
  1060. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1061. />
  1062. <productMenuURL version="1.0.1"
  1063. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1064. />
  1065. </productMenu>
  1066. <productMenu id="quickGuide"
  1067. type="0"
  1068. url=""
  1069. size="344KB" >
  1070. </productMenu>
  1071. <productMenu id="userGuide"
  1072. type="1"
  1073. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1074. size="3.41MB" >
  1075. </productMenu>
  1076. <productMenu id="connectGuide"
  1077. type="1"
  1078. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1079. size="1.12MB" >
  1080. </productMenu>
  1081. <productMenu id="volume"
  1082. type="11" >
  1083. </productMenu>
  1084. <productMenu id="battery"
  1085. type="1" >
  1086. </productMenu>
  1087. <productID id="3232"
  1088. />
  1089. <productGroupable type="0"
  1090. />
  1091. </product>
  1092. <product id="PHANTOMXB"
  1093. name="PHANTOM XB"
  1094. series="Helmet"
  1095. latestVersion="0.1"
  1096. latestVersionVoicePrompt="1.0"
  1097. show = "-1" >
  1098. <productMenu id="protocol"
  1099. type="2" >
  1100. </productMenu>
  1101. <productMenu id="ota"
  1102. type="0" >
  1103. <otaLanguages>
  1104. <otaLanguage
  1105. id="0"
  1106. name="English"
  1107. package="0"
  1108. />
  1109. <otaLanguage
  1110. id="0"
  1111. name="French"
  1112. package="1"
  1113. />
  1114. <otaLanguage
  1115. id="0"
  1116. name="Spanish"
  1117. package="2"
  1118. />
  1119. <otaLanguage
  1120. id="0"
  1121. name="Italian"
  1122. package="3"
  1123. />
  1124. <otaLanguage
  1125. id="0"
  1126. name="German"
  1127. package="4"
  1128. />
  1129. <otaLanguage
  1130. id="0"
  1131. name="Dutch"
  1132. package="5"
  1133. />
  1134. <otaLanguage
  1135. id="0"
  1136. name="Russian"
  1137. package="6"
  1138. />
  1139. <otaLanguage
  1140. id="0"
  1141. name="Chinese"
  1142. package="7"
  1143. />
  1144. <otaLanguage
  1145. id="0"
  1146. name="Korean"
  1147. package="8"
  1148. />
  1149. <otaLanguage
  1150. id="0"
  1151. name="Japanese"
  1152. package="9"
  1153. />
  1154. <otaLanguage
  1155. id="0"
  1156. name="Finnish"
  1157. package="10"
  1158. />
  1159. <otaLanguage
  1160. id="0"
  1161. name="Polish"
  1162. package="11"
  1163. />
  1164. </otaLanguages>
  1165. <otaPackages>
  1166. <package
  1167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1168. size="5183988"
  1169. />
  1170. <package
  1171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1172. size="5183988"
  1173. />
  1174. <package
  1175. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1176. size="5183988"
  1177. />
  1178. <package
  1179. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1180. size="5183988"
  1181. />
  1182. <package
  1183. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1184. size="5183988"
  1185. />
  1186. <package
  1187. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1188. size="5183988"
  1189. />
  1190. <package
  1191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1192. size="5183988"
  1193. />
  1194. <package
  1195. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1196. size="5183988"
  1197. />
  1198. <package
  1199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1200. size="5183988"
  1201. />
  1202. <package
  1203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1204. size="5183988"
  1205. />
  1206. <package
  1207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1208. size="5183988"
  1209. />
  1210. <package
  1211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1212. size="5183988"
  1213. />
  1214. </otaPackages>
  1215. </productMenu>
  1216. <productMenu id="wa"
  1217. type="0" >
  1218. </productMenu>
  1219. <productMenu id="led"
  1220. type="5" >
  1221. </productMenu>
  1222. <productMenu id="led+"
  1223. type="2"
  1224. url="1" >
  1225. </productMenu>
  1226. <productMenu id="meshIntercom"
  1227. type="30" >
  1228. </productMenu>
  1229. <productMenu id="meshIntercom+"
  1230. type="3"
  1231. url="2" >
  1232. </productMenu>
  1233. <productMenu id="waveIntercom"
  1234. type="1" >
  1235. </productMenu>
  1236. <productMenu id="fmradio"
  1237. type="0" >
  1238. </productMenu>
  1239. <productMenu id="phone"
  1240. type="1" >
  1241. </productMenu>
  1242. <productMenu id="music"
  1243. type="1" >
  1244. </productMenu>
  1245. <productMenu id="musicSharing"
  1246. type="0" >
  1247. </productMenu>
  1248. <productMenu id="deviceSetting"
  1249. type="1"
  1250. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1251. </productMenu>
  1252. <productMenu id="quickGuide"
  1253. type="0"
  1254. url=""
  1255. size="1.12MB" >
  1256. </productMenu>
  1257. <productMenu id="userGuide"
  1258. type="1"
  1259. url=""
  1260. size="2.0MB" >
  1261. </productMenu>
  1262. <productMenu id="videoGuide"
  1263. type="0"
  1264. url=""
  1265. size="3.41MB" >
  1266. </productMenu>
  1267. <productMenu id="volume"
  1268. type="16" >
  1269. </productMenu>
  1270. <productMenu id="battery"
  1271. type="1" >
  1272. </productMenu>
  1273. <productID id="6A0C"
  1274. />
  1275. <productGroupable type="0"
  1276. />
  1277. </product>
  1278. <product id="PHANTOM"
  1279. name="PHANTOM ANC"
  1280. series="Helmet"
  1281. latestVersion="1.1.2"
  1282. latestVersionVoicePrompt="1.0"
  1283. show = "1" >
  1284. <productMenu id="protocol"
  1285. type="2" >
  1286. </productMenu>
  1287. <productMenu id="ota"
  1288. type="2" >
  1289. <productMenuType version="0.6.9"
  1290. type="0"
  1291. />
  1292. <otaLanguages>
  1293. <otaLanguage
  1294. id="0"
  1295. name="English"
  1296. package="0"
  1297. />
  1298. <otaLanguage
  1299. id="0"
  1300. name="French"
  1301. package="1"
  1302. />
  1303. <otaLanguage
  1304. id="0"
  1305. name="Spanish"
  1306. package="2"
  1307. />
  1308. <otaLanguage
  1309. id="0"
  1310. name="Italian"
  1311. package="3"
  1312. />
  1313. <otaLanguage
  1314. id="0"
  1315. name="German"
  1316. package="4"
  1317. />
  1318. <otaLanguage
  1319. id="0"
  1320. name="Dutch"
  1321. package="5"
  1322. />
  1323. <otaLanguage
  1324. id="0"
  1325. name="Russian"
  1326. package="6"
  1327. />
  1328. <otaLanguage
  1329. id="0"
  1330. name="Chinese"
  1331. package="7"
  1332. />
  1333. <otaLanguage
  1334. id="0"
  1335. name="Korean"
  1336. package="8"
  1337. />
  1338. <otaLanguage
  1339. id="0"
  1340. name="Japanese"
  1341. package="9"
  1342. />
  1343. <otaLanguage
  1344. id="0"
  1345. name="Finnish"
  1346. package="10"
  1347. />
  1348. </otaLanguages>
  1349. <otaPackages>
  1350. <package
  1351. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-fr-FR.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-es-ES.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-it-IT.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-de-DE.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-nl-NL.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ru-RU.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-cmn-CN.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ko-KR.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-ja-JP.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/PHANTOMANC/PHANTOM_ANC-v1.1.2-build1-fi-FI.img"
  1392. size="5183988"
  1393. />
  1394. </otaPackages>
  1395. </productMenu>
  1396. <productMenu id="wa"
  1397. type="0" >
  1398. </productMenu>
  1399. <productMenu id="led"
  1400. type="5" >
  1401. </productMenu>
  1402. <productMenu id="led+"
  1403. type="2"
  1404. url="1" >
  1405. </productMenu>
  1406. <productMenu id="meshIntercom"
  1407. type="30" >
  1408. </productMenu>
  1409. <productMenu id="meshIntercom+"
  1410. type="3"
  1411. url="2" >
  1412. <productMenuURL version="1.0.4"
  1413. url="10"
  1414. />
  1415. </productMenu>
  1416. <productMenu id="waveIntercom"
  1417. type="1" >
  1418. <productMenuType version="1.0.9"
  1419. type="0"
  1420. />
  1421. </productMenu>
  1422. <productMenu id="fmradio"
  1423. type="0" >
  1424. </productMenu>
  1425. <productMenu id="phone"
  1426. type="1" >
  1427. </productMenu>
  1428. <productMenu id="music"
  1429. type="1" >
  1430. </productMenu>
  1431. <productMenu id="musicSharing"
  1432. type="0" >
  1433. </productMenu>
  1434. <productMenu id="deviceSetting"
  1435. type="1"
  1436. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1437. <productMenuURL version="1.1.2"
  1438. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  1439. />
  1440. <productMenuURL version="1.0.4"
  1441. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  1442. />
  1443. </productMenu>
  1444. <productMenu id="quickGuide"
  1445. type="0"
  1446. url=""
  1447. size="1.12MB" >
  1448. </productMenu>
  1449. <productMenu id="userGuide"
  1450. type="1"
  1451. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1452. size="2.0MB" >
  1453. </productMenu>
  1454. <productMenu id="videoGuide"
  1455. type="0"
  1456. url=""
  1457. size="3.41MB" >
  1458. </productMenu>
  1459. <productMenu id="volume"
  1460. type="16" >
  1461. </productMenu>
  1462. <productMenu id="soundMode"
  1463. type="1" >
  1464. <productMenuType version="0.9.11"
  1465. type="0"
  1466. />
  1467. </productMenu>
  1468. <productMenu id="battery"
  1469. type="1" >
  1470. </productMenu>
  1471. <productID id="6A01"
  1472. />
  1473. <productGroupable type="0"
  1474. />
  1475. </product>
  1476. <product id="PHANTOM"
  1477. name="PHANTOM"
  1478. series="Helmet"
  1479. latestVersion="1.1.4"
  1480. latestVersionVoicePrompt="1.0"
  1481. show = "1" >
  1482. <productMenu id="protocol"
  1483. type="2" >
  1484. </productMenu>
  1485. <productMenu id="ota"
  1486. type="2" >
  1487. <otaLanguages>
  1488. <otaLanguage
  1489. id="0"
  1490. name="English"
  1491. package="0"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="French"
  1496. package="1"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Spanish"
  1501. package="2"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Italian"
  1506. package="3"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="German"
  1511. package="4"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Dutch"
  1516. package="5"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Russian"
  1521. package="6"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Chinese"
  1526. package="7"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Korean"
  1531. package="8"
  1532. />
  1533. <otaLanguage
  1534. id="0"
  1535. name="Japanese"
  1536. package="9"
  1537. />
  1538. <otaLanguage
  1539. id="0"
  1540. name="Finnish"
  1541. package="10"
  1542. />
  1543. <otaLanguage
  1544. id="0"
  1545. name="Polish"
  1546. package="11"
  1547. />
  1548. </otaLanguages>
  1549. <otaPackages>
  1550. <package
  1551. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0.img"
  1552. size="5183988"
  1553. />
  1554. <package
  1555. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fr-FR.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-es-ES.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-it-IT.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-de-DE.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-nl-NL.img"
  1572. size="5183988"
  1573. />
  1574. <package
  1575. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ru-RU.img"
  1576. size="5183988"
  1577. />
  1578. <package
  1579. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-cmn-CN.img"
  1580. size="5183988"
  1581. />
  1582. <package
  1583. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ko-KR.img"
  1584. size="5183988"
  1585. />
  1586. <package
  1587. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-ja-JP.img"
  1588. size="5183988"
  1589. />
  1590. <package
  1591. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-fi-FI.img"
  1592. size="5183988"
  1593. />
  1594. <package
  1595. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.1.4-build0-pl-PL.img"
  1596. size="5183988"
  1597. />
  1598. </otaPackages>
  1599. </productMenu>
  1600. <productMenu id="wa"
  1601. type="0" >
  1602. </productMenu>
  1603. <productMenu id="led"
  1604. type="5" >
  1605. <productMenuType version="1.0.1"
  1606. type="4"
  1607. />
  1608. </productMenu>
  1609. <productMenu id="led+"
  1610. type="2"
  1611. url="1" >
  1612. <productMenuType version="1.0.1"
  1613. type="-1"
  1614. />
  1615. </productMenu>
  1616. <productMenu id="meshIntercom"
  1617. type="30" >
  1618. </productMenu>
  1619. <productMenu id="meshIntercom+"
  1620. type="3"
  1621. url="2" >
  1622. <productMenuURL version="1.0.4"
  1623. url="10"
  1624. />
  1625. </productMenu>
  1626. <productMenu id="waveIntercom"
  1627. type="1" >
  1628. <productMenuType version="1.0.9"
  1629. type="0"
  1630. />
  1631. </productMenu>
  1632. <productMenu id="fmradio"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="phone"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="music"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="musicSharing"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="deviceSetting"
  1645. type="1"
  1646. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml" >
  1647. <productMenuURL version="1.0.4"
  1648. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  1649. />
  1650. <productMenuURL version="1.0.1"
  1651. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  1652. />
  1653. </productMenu>
  1654. <productMenu id="quickGuide"
  1655. type="0"
  1656. url=""
  1657. size="1.12MB" >
  1658. </productMenu>
  1659. <productMenu id="userGuide"
  1660. type="1"
  1661. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.0.1_en_250709.pdf"
  1662. size="2.0MB" >
  1663. </productMenu>
  1664. <productMenu id="videoGuide"
  1665. type="0"
  1666. url=""
  1667. size="3.41MB" >
  1668. </productMenu>
  1669. <productMenu id="connectGuide"
  1670. type="1"
  1671. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  1672. size="1.12MB" >
  1673. </productMenu>
  1674. <productMenu id="volume"
  1675. type="16" >
  1676. <productMenuType version="1.0"
  1677. type="13"
  1678. />
  1679. </productMenu>
  1680. <productMenu id="battery"
  1681. type="1" >
  1682. </productMenu>
  1683. <productID id="6A04"
  1684. />
  1685. <productGroupable type="0"
  1686. />
  1687. </product>
  1688. <product id="Impulse"
  1689. name="Impulse"
  1690. series="Helmet"
  1691. latestVersion="1.4"
  1692. show = "1" >
  1693. <productMenu id="protocol"
  1694. type="2" >
  1695. </productMenu>
  1696. <productMenu id="alexa"
  1697. type="0" >
  1698. </productMenu>
  1699. <productMenu id="ota"
  1700. type="0" >
  1701. </productMenu>
  1702. <productMenu id="wa"
  1703. type="24" >
  1704. </productMenu>
  1705. <productMenu id="manager"
  1706. type="0" >
  1707. </productMenu>
  1708. <productMenu id="sip"
  1709. type="1" >
  1710. </productMenu>
  1711. <productMenu id="led"
  1712. type="1" >
  1713. <productMenuType version="1.0.1"
  1714. type="2"
  1715. />
  1716. <productMenuType version="1.0"
  1717. type="1"
  1718. />
  1719. </productMenu>
  1720. <productMenu id="meshIntercom"
  1721. type="30" >
  1722. <productMenuType version="1.1.1"
  1723. type="20"
  1724. />
  1725. </productMenu>
  1726. <productMenu id="meshIntercom+"
  1727. type="3"
  1728. url="2" >
  1729. <productMenuType version="1.3.9"
  1730. type="2"
  1731. />
  1732. <productMenuURL version="1.1.1"
  1733. url="0"
  1734. />
  1735. </productMenu>
  1736. <productMenu id="waveIntercom"
  1737. type="1" >
  1738. <productMenuType version="1.3.9"
  1739. type="0"
  1740. />
  1741. </productMenu>
  1742. <productMenu id="bluetoothIntercom"
  1743. type="1" >
  1744. </productMenu>
  1745. <productMenu id="phone"
  1746. type="1" >
  1747. </productMenu>
  1748. <productMenu id="music"
  1749. type="1" >
  1750. </productMenu>
  1751. <productMenu id="fmradio"
  1752. type="1" >
  1753. </productMenu>
  1754. <productMenu id="deviceSetting"
  1755. type="1"
  1756. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  1757. <productMenuURL version="1.3.9"
  1758. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  1759. />
  1760. <productMenuURL version="1.1.1"
  1761. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1762. />
  1763. <productMenuURL version="1.0.4"
  1764. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1765. />
  1766. </productMenu>
  1767. <productMenu id="quickGuide"
  1768. type="0"
  1769. url=""
  1770. size="344KB" >
  1771. </productMenu>
  1772. <productMenu id="userGuide"
  1773. type="1"
  1774. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.0_en_250422.pdf"
  1775. size="3.41MB" >
  1776. </productMenu>
  1777. <productMenu id="volume"
  1778. type="11" >
  1779. </productMenu>
  1780. <productMenu id="battery"
  1781. type="1" >
  1782. </productMenu>
  1783. <productID id="3148"
  1784. />
  1785. <productGroupable type="0"
  1786. />
  1787. </product>
  1788. <product id="Impulse"
  1789. name="Impulse"
  1790. series="Helmet"
  1791. latestVersion="2.0"
  1792. show = "-1" >
  1793. <productMenu id="protocol"
  1794. type="2" >
  1795. </productMenu>
  1796. <productMenu id="alexa"
  1797. type="0" >
  1798. </productMenu>
  1799. <productMenu id="ota"
  1800. type="0" >
  1801. </productMenu>
  1802. <productMenu id="wa"
  1803. type="8" >
  1804. </productMenu>
  1805. <productMenu id="manager"
  1806. type="0" >
  1807. </productMenu>
  1808. <productMenu id="sip"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="led"
  1812. type="3" >
  1813. </productMenu>
  1814. <productMenu id="meshIntercom"
  1815. type="20" >
  1816. </productMenu>
  1817. <productMenu id="bluetoothIntercom"
  1818. type="1" >
  1819. </productMenu>
  1820. <productMenu id="phone"
  1821. type="1" >
  1822. </productMenu>
  1823. <productMenu id="music"
  1824. type="1" >
  1825. </productMenu>
  1826. <productMenu id="fmradio"
  1827. type="1" >
  1828. </productMenu>
  1829. <productMenu id="deviceSetting"
  1830. type="1"
  1831. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  1832. </productMenu>
  1833. <productMenu id="quickGuide"
  1834. type="1"
  1835. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  1836. size="344KB" >
  1837. </productMenu>
  1838. <productMenu id="userGuide"
  1839. type="1"
  1840. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  1841. size="3.41MB" >
  1842. </productMenu>
  1843. <productMenu id="volume"
  1844. type="11" >
  1845. </productMenu>
  1846. <productMenu id="battery"
  1847. type="1" >
  1848. </productMenu>
  1849. <productID id="3221"
  1850. />
  1851. <productGroupable type="0"
  1852. />
  1853. </product>
  1854. <product id="Stryker"
  1855. name="Stryker"
  1856. series="Helmet"
  1857. latestVersion="1.4"
  1858. show = "1" >
  1859. <productMenu id="protocol"
  1860. type="2" >
  1861. </productMenu>
  1862. <productMenu id="alexa"
  1863. type="0" >
  1864. </productMenu>
  1865. <productMenu id="ota"
  1866. type="0" >
  1867. </productMenu>
  1868. <productMenu id="wa"
  1869. type="40" >
  1870. </productMenu>
  1871. <productMenu id="manager"
  1872. type="0" >
  1873. </productMenu>
  1874. <productMenu id="sip"
  1875. type="1" >
  1876. </productMenu>
  1877. <productMenu id="led"
  1878. type="1" >
  1879. <productMenuType version="1.0.1"
  1880. type="2"
  1881. />
  1882. <productMenuType version="1.0"
  1883. type="1"
  1884. />
  1885. </productMenu>
  1886. <productMenu id="meshIntercom"
  1887. type="30" >
  1888. <productMenuType version="1.1.1"
  1889. type="20"
  1890. />
  1891. </productMenu>
  1892. <productMenu id="meshIntercom+"
  1893. type="3"
  1894. url="2" >
  1895. <productMenuType version="1.3.9"
  1896. type="2"
  1897. />
  1898. <productMenuURL version="1.1.1"
  1899. url="0"
  1900. />
  1901. </productMenu>
  1902. <productMenu id="waveIntercom"
  1903. type="1" >
  1904. <productMenuType version="1.2.9"
  1905. type="0"
  1906. />
  1907. </productMenu>
  1908. <productMenu id="bluetoothIntercom"
  1909. type="1" >
  1910. </productMenu>
  1911. <productMenu id="phone"
  1912. type="1" >
  1913. </productMenu>
  1914. <productMenu id="music"
  1915. type="1" >
  1916. </productMenu>
  1917. <productMenu id="fmradio"
  1918. type="1" >
  1919. </productMenu>
  1920. <productMenu id="deviceSetting"
  1921. type="1"
  1922. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  1923. <productMenuURL version="1.3.9"
  1924. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  1925. />
  1926. <productMenuURL version="1.1.1"
  1927. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  1928. />
  1929. <productMenuURL version="1.0.4"
  1930. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  1931. />
  1932. </productMenu>
  1933. <productMenu id="quickGuide"
  1934. type="0"
  1935. url=""
  1936. size="344KB" >
  1937. </productMenu>
  1938. <productMenu id="userGuide"
  1939. type="1"
  1940. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.0_en_250421.pdf"
  1941. size="3.41MB" >
  1942. </productMenu>
  1943. <productMenu id="volume"
  1944. type="11" >
  1945. </productMenu>
  1946. <productMenu id="battery"
  1947. type="1" >
  1948. </productMenu>
  1949. <productID id="3154"
  1950. />
  1951. <productGroupable type="0"
  1952. />
  1953. </product>
  1954. <product id="SRL3"
  1955. name="SRL3"
  1956. series="SRL"
  1957. latestVersion="1.4.1"
  1958. show = "1" >
  1959. <productMenu id="protocol"
  1960. type="2" >
  1961. </productMenu>
  1962. <productMenu id="alexa"
  1963. type="0" >
  1964. </productMenu>
  1965. <productMenu id="ota"
  1966. type="0" >
  1967. </productMenu>
  1968. <productMenu id="wa"
  1969. type="1" >
  1970. </productMenu>
  1971. <productMenu id="sip"
  1972. type="1" >
  1973. </productMenu>
  1974. <productMenu id="meshIntercom"
  1975. type="30" >
  1976. </productMenu>
  1977. <productMenu id="meshIntercom+"
  1978. type="3"
  1979. url="2" >
  1980. <productMenuType version="1.3.9"
  1981. type="2"
  1982. />
  1983. </productMenu>
  1984. <productMenu id="waveIntercom"
  1985. type="1" >
  1986. <productMenuType version="1.4.9"
  1987. type="0"
  1988. />
  1989. </productMenu>
  1990. <productMenu id="bluetoothIntercom"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="phone"
  1994. type="1" >
  1995. </productMenu>
  1996. <productMenu id="music"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="fmradio"
  2000. type="1" >
  2001. </productMenu>
  2002. <productMenu id="deviceSetting"
  2003. type="1"
  2004. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2005. <productMenuURL version="1.3"
  2006. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="quickGuide"
  2010. type="0"
  2011. url=""
  2012. size="344KB" >
  2013. </productMenu>
  2014. <productMenu id="userGuide"
  2015. type="1"
  2016. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.2.2_en_250319.pdf"
  2017. size="3.41MB" >
  2018. </productMenu>
  2019. <productMenu id="volume"
  2020. type="11" >
  2021. </productMenu>
  2022. <productMenu id="battery"
  2023. type="1" >
  2024. </productMenu>
  2025. <productID id="3219"
  2026. />
  2027. <productGroupable type="0"
  2028. />
  2029. </product>
  2030. <product id="SRL_Mesh"
  2031. name="SRL-Mesh"
  2032. series="SRL"
  2033. latestVersion="1.6.1"
  2034. show = "1" >
  2035. <productMenu id="protocol"
  2036. type="2" >
  2037. </productMenu>
  2038. <productMenu id="alexa"
  2039. type="0" >
  2040. </productMenu>
  2041. <productMenu id="ota"
  2042. type="0" >
  2043. </productMenu>
  2044. <productMenu id="wa"
  2045. type="1" >
  2046. </productMenu>
  2047. <productMenu id="sip"
  2048. type="1" >
  2049. </productMenu>
  2050. <productMenu id="meshIntercom"
  2051. type="30" >
  2052. <productMenuType version="1.1.1"
  2053. type="20"
  2054. />
  2055. </productMenu>
  2056. <productMenu id="meshIntercom+"
  2057. type="3"
  2058. url="2" >
  2059. <productMenuType version="1.5.9"
  2060. type="2"
  2061. />
  2062. <productMenuURL version="1.1.1"
  2063. url="0"
  2064. />
  2065. </productMenu>
  2066. <productMenu id="waveIntercom"
  2067. type="1" >
  2068. <productMenuType version="1.6.9"
  2069. type="0"
  2070. />
  2071. </productMenu>
  2072. <productMenu id="bluetoothIntercom"
  2073. type="1" >
  2074. </productMenu>
  2075. <productMenu id="phone"
  2076. type="1" >
  2077. </productMenu>
  2078. <productMenu id="music"
  2079. type="1" >
  2080. </productMenu>
  2081. <productMenu id="fmradio"
  2082. type="1" >
  2083. </productMenu>
  2084. <productMenu id="deviceSetting"
  2085. type="1"
  2086. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2087. <productMenuURL version="1.5"
  2088. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2089. />
  2090. <productMenuURL version="1.1.1"
  2091. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2092. />
  2093. <productMenuURL version="1.0.3"
  2094. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="quickGuide"
  2098. type="0"
  2099. url=""
  2100. size="344KB" >
  2101. </productMenu>
  2102. <productMenu id="userGuide"
  2103. type="1"
  2104. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.5.1_en_250213.pdf"
  2105. size="3.41MB" >
  2106. </productMenu>
  2107. <productMenu id="volume"
  2108. type="11" >
  2109. </productMenu>
  2110. <productMenu id="battery"
  2111. type="1" >
  2112. </productMenu>
  2113. <productID id="3216"
  2114. />
  2115. <productGroupable type="0"
  2116. />
  2117. </product>
  2118. <product id="SRL_EXT"
  2119. name="SRL-EXT"
  2120. series="SRL"
  2121. latestVersion="1.6.1"
  2122. show = "1" >
  2123. <productMenu id="protocol"
  2124. type="2" >
  2125. </productMenu>
  2126. <productMenu id="alexa"
  2127. type="0" >
  2128. </productMenu>
  2129. <productMenu id="ota"
  2130. type="0" >
  2131. </productMenu>
  2132. <productMenu id="wa"
  2133. type="0" >
  2134. </productMenu>
  2135. <productMenu id="sip"
  2136. type="1" >
  2137. </productMenu>
  2138. <productMenu id="meshIntercom"
  2139. type="30" >
  2140. <productMenuType version="1.1.1"
  2141. type="20"
  2142. />
  2143. </productMenu>
  2144. <productMenu id="meshIntercom+"
  2145. type="3"
  2146. url="2" >
  2147. <productMenuType version="1.5.9"
  2148. type="2"
  2149. />
  2150. <productMenuURL version="1.1.1"
  2151. url="0"
  2152. />
  2153. </productMenu>
  2154. <productMenu id="waveIntercom"
  2155. type="1" >
  2156. <productMenuType version="1.6.9"
  2157. type="0"
  2158. />
  2159. </productMenu>
  2160. <productMenu id="bluetoothIntercom"
  2161. type="1" >
  2162. </productMenu>
  2163. <productMenu id="phone"
  2164. type="1" >
  2165. </productMenu>
  2166. <productMenu id="music"
  2167. type="1" >
  2168. </productMenu>
  2169. <productMenu id="fmradio"
  2170. type="1" >
  2171. </productMenu>
  2172. <productMenu id="deviceSetting"
  2173. type="1"
  2174. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2175. <productMenuURL version="1.5"
  2176. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  2177. />
  2178. <productMenuURL version="1.1.1"
  2179. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2180. />
  2181. <productMenuURL version="1.0.3"
  2182. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2183. />
  2184. </productMenu>
  2185. <productMenu id="quickGuide"
  2186. type="0"
  2187. url=""
  2188. size="344KB" >
  2189. </productMenu>
  2190. <productMenu id="userGuide"
  2191. type="1"
  2192. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.pdf"
  2193. size="3.41MB" >
  2194. </productMenu>
  2195. <productMenu id="volume"
  2196. type="11" >
  2197. </productMenu>
  2198. <productMenu id="battery"
  2199. type="1" >
  2200. </productMenu>
  2201. <productID id="3212"
  2202. />
  2203. <productGroupable type="0"
  2204. />
  2205. </product>
  2206. <product id="SRL2"
  2207. name="SRL2"
  2208. series="SRL"
  2209. latestVersion="1.0.9"
  2210. show = "1" >
  2211. <productMenu id="protocol"
  2212. type="0">
  2213. </productMenu>
  2214. <productMenu id="sip"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="bluetoothIntercom"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="intercomSetting"
  2221. type="1" >
  2222. </productMenu>
  2223. <productMenu id="phone"
  2224. type="2" >
  2225. </productMenu>
  2226. <productMenu id="fmradio"
  2227. type="3" >
  2228. </productMenu>
  2229. <productMenu id="deviceSetting"
  2230. type="1"
  2231. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2232. </productMenu>
  2233. <productMenu id="quickGuide"
  2234. type="1"
  2235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  2236. size="846KB" >
  2237. </productMenu>
  2238. <productMenu id="userGuide"
  2239. type="1"
  2240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  2241. size="1.18MB" >
  2242. </productMenu>
  2243. <productID id="4530"
  2244. />
  2245. <productGroupable type="1"
  2246. />
  2247. </product>
  2248. <product id="Neotec2"
  2249. name="SRL Neotec2"
  2250. series="SRL"
  2251. latestVersion="1.1.5"
  2252. show = "1" >
  2253. <productMenu id="protocol"
  2254. type="0">
  2255. </productMenu>
  2256. <productMenu id="sip"
  2257. type="1" >
  2258. </productMenu>
  2259. <productMenu id="bluetoothIntercom"
  2260. type="1" >
  2261. </productMenu>
  2262. <productMenu id="intercomSetting"
  2263. type="1" >
  2264. </productMenu>
  2265. <productMenu id="phone"
  2266. type="2" >
  2267. </productMenu>
  2268. <productMenu id="fmradio"
  2269. type="3" >
  2270. </productMenu>
  2271. <productMenu id="deviceSetting"
  2272. type="1"
  2273. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2274. </productMenu>
  2275. <productMenu id="quickGuide"
  2276. type="0"
  2277. url=""
  2278. size="796KB" >
  2279. </productMenu>
  2280. <productMenu id="userGuide"
  2281. type="1"
  2282. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  2283. size="1.90MB" >
  2284. </productMenu>
  2285. <productID id="4510"
  2286. />
  2287. <productGroupable type="1"
  2288. />
  2289. </product>
  2290. <product id="SPIDERST2ANC"
  2291. name="SPIDER ST2 ANC"
  2292. series="SPIDER"
  2293. latestVersion="0.5.1"
  2294. latestVersionVoicePrompt="0.2"
  2295. latestVersionMesh="0.8"
  2296. show = "-1" >
  2297. <productMenu id="protocol"
  2298. type="2" >
  2299. </productMenu>
  2300. <productMenu id="ota"
  2301. type="0" >
  2302. <otaPackages>
  2303. <package
  2304. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  2305. size="2945812"
  2306. />
  2307. </otaPackages>
  2308. </productMenu>
  2309. <productMenu id="wa"
  2310. type="0" >
  2311. </productMenu>
  2312. <productMenu id="led"
  2313. type="1" >
  2314. </productMenu>
  2315. <productMenu id="meshIntercom"
  2316. type="30" >
  2317. </productMenu>
  2318. <productMenu id="fmradio"
  2319. type="1" >
  2320. </productMenu>
  2321. <productMenu id="phone"
  2322. type="1" >
  2323. </productMenu>
  2324. <productMenu id="music"
  2325. type="1" >
  2326. </productMenu>
  2327. <productMenu id="musicSharing"
  2328. type="0" >
  2329. </productMenu>
  2330. <productMenu id="deviceSetting"
  2331. type="1"
  2332. url="https://api.sena.com/support/test/xml/NS_60R_OTATest_02.xml" >
  2333. </productMenu>
  2334. <productMenu id="quickGuide"
  2335. type="1"
  2336. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  2337. size="1.12MB" >
  2338. </productMenu>
  2339. <productMenu id="userGuide"
  2340. type="1"
  2341. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  2342. size="2.0MB" >
  2343. </productMenu>
  2344. <productMenu id="videoGuide"
  2345. type="1"
  2346. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2347. size="3.41MB" >
  2348. </productMenu>
  2349. <productMenu id="volume"
  2350. type="12" >
  2351. </productMenu>
  2352. <productMenu id="battery"
  2353. type="1" >
  2354. </productMenu>
  2355. <productID id="6A00"
  2356. />
  2357. <productGroupable type="0"
  2358. />
  2359. </product>
  2360. <product id="SPIDER_ST1"
  2361. name="SPIDER ST1"
  2362. series="SPIDER"
  2363. latestVersion="2.5"
  2364. latestVersionVoicePrompt="1.1"
  2365. show = "1" >
  2366. <productMenu id="protocol"
  2367. type="2" >
  2368. </productMenu>
  2369. <productMenu id="alexa"
  2370. type="0" >
  2371. </productMenu>
  2372. <productMenu id="ota"
  2373. type="2" >
  2374. <productMenuType version="2.1.9"
  2375. type="0"
  2376. />
  2377. <otaPackages>
  2378. <package
  2379. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5-build1.img"
  2380. size="2945812"
  2381. />
  2382. </otaPackages>
  2383. </productMenu>
  2384. <productMenu id="wa"
  2385. type="0" >
  2386. </productMenu>
  2387. <productMenu id="meshIntercom"
  2388. type="30" >
  2389. <productMenuType version="2.1.1"
  2390. type="20"
  2391. />
  2392. </productMenu>
  2393. <productMenu id="meshIntercom+"
  2394. type="3"
  2395. url="2" >
  2396. <productMenuType version="2.2.9"
  2397. type="2"
  2398. />
  2399. <productMenuURL version="2.1.1"
  2400. url="0"
  2401. />
  2402. </productMenu>
  2403. <productMenu id="waveIntercom"
  2404. type="1" >
  2405. <productMenuType version="2.3.9"
  2406. type="0"
  2407. />
  2408. </productMenu>
  2409. <productMenu id="phone"
  2410. type="1" >
  2411. </productMenu>
  2412. <productMenu id="music"
  2413. type="1" >
  2414. </productMenu>
  2415. <productMenu id="musicSharing"
  2416. type="0" >
  2417. </productMenu>
  2418. <productMenu id="deviceSetting"
  2419. type="1"
  2420. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2421. <productMenuURL version="2.4.9"
  2422. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2423. />
  2424. <productMenuURL version="2.2.2"
  2425. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2426. />
  2427. <productMenuURL version="2.1.1"
  2428. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2429. />
  2430. </productMenu>
  2431. <productMenu id="quickGuide"
  2432. type="0"
  2433. url=""
  2434. size="1.12MB" >
  2435. </productMenu>
  2436. <productMenu id="userGuide"
  2437. type="1"
  2438. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  2439. size="2.0MB" >
  2440. </productMenu>
  2441. <productMenu id="videoGuide"
  2442. type="1"
  2443. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2444. size="3.41MB" >
  2445. </productMenu>
  2446. <productMenu id="volume"
  2447. type="12" >
  2448. </productMenu>
  2449. <productMenu id="battery"
  2450. type="1" >
  2451. </productMenu>
  2452. <productID id="6800"
  2453. />
  2454. <productGroupable type="0"
  2455. />
  2456. </product>
  2457. <product id="SPIDER_ST1"
  2458. name="SPIDER ST1"
  2459. series="SPIDER"
  2460. latestVersion="1.2.2"
  2461. show = "-1" >
  2462. <productMenu id="protocol"
  2463. type="2" >
  2464. </productMenu>
  2465. <productMenu id="alexa"
  2466. type="0" >
  2467. </productMenu>
  2468. <productMenu id="ota"
  2469. type="0" >
  2470. </productMenu>
  2471. <productMenu id="wa"
  2472. type="0" >
  2473. </productMenu>
  2474. <productMenu id="meshIntercom"
  2475. type="20" >
  2476. </productMenu>
  2477. <productMenu id="phone"
  2478. type="1" >
  2479. </productMenu>
  2480. <productMenu id="music"
  2481. type="1" >
  2482. </productMenu>
  2483. <productMenu id="deviceSetting"
  2484. type="1"
  2485. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2486. </productMenu>
  2487. <productMenu id="quickGuide"
  2488. type="0"
  2489. url=""
  2490. size="1.12MB" >
  2491. </productMenu>
  2492. <productMenu id="userGuide"
  2493. type="1"
  2494. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  2495. size="2.0MB" >
  2496. </productMenu>
  2497. <productMenu id="videoGuide"
  2498. type="1"
  2499. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2500. size="3.41MB" >
  2501. </productMenu>
  2502. <productMenu id="volume"
  2503. type="13" >
  2504. <productMenuType version="1.1.6"
  2505. type="14"/>
  2506. </productMenu>
  2507. <productMenu id="battery"
  2508. type="1" >
  2509. </productMenu>
  2510. <productID id="6510"
  2511. />
  2512. <productGroupable type="0"
  2513. />
  2514. </product>
  2515. <product id="SPIDER_RT1"
  2516. name="SPIDER RT1"
  2517. series="SPIDER"
  2518. latestVersion="2.5"
  2519. latestVersionVoicePrompt="1.1"
  2520. show = "1" >
  2521. <productMenu id="protocol"
  2522. type="2" >
  2523. </productMenu>
  2524. <productMenu id="alexa"
  2525. type="0" >
  2526. </productMenu>
  2527. <productMenu id="ota"
  2528. type="2" >
  2529. <productMenuType version="2.1.9"
  2530. type="0"
  2531. />
  2532. <otaPackages>
  2533. <package
  2534. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5-build1.img"
  2535. size="2945812"
  2536. />
  2537. </otaPackages>
  2538. </productMenu>
  2539. <productMenu id="wa"
  2540. type="0" >
  2541. </productMenu>
  2542. <productMenu id="meshIntercom"
  2543. type="30" >
  2544. <productMenuType version="2.1.1"
  2545. type="20"
  2546. />
  2547. </productMenu>
  2548. <productMenu id="meshIntercom+"
  2549. type="3"
  2550. url="2" >
  2551. <productMenuType version="2.2.9"
  2552. type="2"
  2553. />
  2554. <productMenuURL version="2.1.1"
  2555. url="0"
  2556. />
  2557. </productMenu>
  2558. <productMenu id="waveIntercom"
  2559. type="1" >
  2560. <productMenuType version="2.3.9"
  2561. type="0"
  2562. />
  2563. </productMenu>
  2564. <productMenu id="phone"
  2565. type="1" >
  2566. </productMenu>
  2567. <productMenu id="music"
  2568. type="1" >
  2569. </productMenu>
  2570. <productMenu id="musicSharing"
  2571. type="0" >
  2572. </productMenu>
  2573. <productMenu id="deviceSetting"
  2574. type="1"
  2575. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  2576. <productMenuURL version="2.4.9"
  2577. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  2578. />
  2579. <productMenuURL version="2.2.2"
  2580. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2581. />
  2582. <productMenuURL version="2.1.1"
  2583. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2584. />
  2585. </productMenu>
  2586. <productMenu id="quickGuide"
  2587. type="0"
  2588. url=""
  2589. size="1.12MB" >
  2590. </productMenu>
  2591. <productMenu id="userGuide"
  2592. type="1"
  2593. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  2594. size="2.0MB" >
  2595. </productMenu>
  2596. <productMenu id="videoGuide"
  2597. type="1"
  2598. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2599. size="3.41MB" >
  2600. </productMenu>
  2601. <productMenu id="connectGuide"
  2602. type="1"
  2603. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  2604. size="1.12MB" >
  2605. </productMenu>
  2606. <productMenu id="volume"
  2607. type="12" >
  2608. </productMenu>
  2609. <productMenu id="battery"
  2610. type="1" >
  2611. </productMenu>
  2612. <productID id="6810"
  2613. />
  2614. <productGroupable type="0"
  2615. />
  2616. </product>
  2617. <product id="SPIDER_RT1"
  2618. name="SPIDER RT1"
  2619. series="SPIDER"
  2620. latestVersion="1.2.2"
  2621. show = "-1" >
  2622. <productMenu id="protocol"
  2623. type="2" >
  2624. </productMenu>
  2625. <productMenu id="alexa"
  2626. type="0" >
  2627. </productMenu>
  2628. <productMenu id="ota"
  2629. type="0" >
  2630. </productMenu>
  2631. <productMenu id="wa"
  2632. type="0" >
  2633. </productMenu>
  2634. <productMenu id="meshIntercom"
  2635. type="20" >
  2636. </productMenu>
  2637. <productMenu id="phone"
  2638. type="1" >
  2639. </productMenu>
  2640. <productMenu id="music"
  2641. type="1" >
  2642. </productMenu>
  2643. <productMenu id="deviceSetting"
  2644. type="1"
  2645. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2646. </productMenu>
  2647. <productMenu id="quickGuide"
  2648. type="0"
  2649. url=""
  2650. size="1.32MB" >
  2651. </productMenu>
  2652. <productMenu id="userGuide"
  2653. type="1"
  2654. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  2655. size="1.79MB" >
  2656. </productMenu>
  2657. <productMenu id="videoGuide"
  2658. type="1"
  2659. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2660. size="3.41MB" >
  2661. </productMenu>
  2662. <productMenu id="volume"
  2663. type="13" >
  2664. <productMenuType version="1.1.6"
  2665. type="14"/>
  2666. </productMenu>
  2667. <productMenu id="battery"
  2668. type="1" >
  2669. </productMenu>
  2670. <productID id="6500"
  2671. />
  2672. <productGroupable type="0"
  2673. />
  2674. </product>
  2675. <product id="30K"
  2676. name="30K"
  2677. series="30"
  2678. latestVersion="4.4.1"
  2679. show = "1" >
  2680. <productMenu id="protocol"
  2681. type="2" >
  2682. </productMenu>
  2683. <productMenu id="alexa"
  2684. type="0" >
  2685. </productMenu>
  2686. <productMenu id="wa"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="sip"
  2690. type="1" >
  2691. </productMenu>
  2692. <productMenu id="meshIntercom"
  2693. type="30" >
  2694. <productMenuType version="4.0.4"
  2695. type="20"
  2696. />
  2697. </productMenu>
  2698. <productMenu id="meshIntercom+"
  2699. type="3"
  2700. url="2" >
  2701. <productMenuType version="4.3.9"
  2702. type="2"
  2703. />
  2704. <productMenuURL version="4.0.4"
  2705. url="0"
  2706. />
  2707. </productMenu>
  2708. <productMenu id="waveIntercom"
  2709. type="1" >
  2710. <productMenuType version="4.4.9"
  2711. type="0"
  2712. />
  2713. </productMenu>
  2714. <productMenu id="bluetoothIntercom"
  2715. type="1" >
  2716. </productMenu>
  2717. <productMenu id="phone"
  2718. type="1" >
  2719. </productMenu>
  2720. <productMenu id="music"
  2721. type="1" >
  2722. </productMenu>
  2723. <productMenu id="fmradio"
  2724. type="1" >
  2725. </productMenu>
  2726. <productMenu id="deviceSetting"
  2727. type="1"
  2728. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  2729. <productMenuURL version="4.3"
  2730. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  2731. />
  2732. <productMenuURL version="4.2"
  2733. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  2734. />
  2735. <productMenuURL version="4.0.4"
  2736. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  2737. />
  2738. </productMenu>
  2739. <productMenu id="quickGuide"
  2740. type="0"
  2741. url=""
  2742. size="934KB" >
  2743. </productMenu>
  2744. <productMenu id="userGuide"
  2745. type="1"
  2746. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  2747. size="1.14MB" >
  2748. </productMenu>
  2749. <productMenu id="volume"
  2750. type="11" >
  2751. </productMenu>
  2752. <productMenu id="battery"
  2753. type="1" >
  2754. </productMenu>
  2755. <productID id="3211"
  2756. />
  2757. <productGroupable type="0"
  2758. />
  2759. </product>
  2760. <product id="30K"
  2761. name="30K"
  2762. series="30"
  2763. latestVersion="3.5"
  2764. show = "-1" >
  2765. <productMenu id="protocol"
  2766. type="1"
  2767. url="0">
  2768. </productMenu>
  2769. <productMenu id="wa"
  2770. type="7" >
  2771. </productMenu>
  2772. <productMenu id="sip"
  2773. type="1" >
  2774. </productMenu>
  2775. <productMenu id="meshIntercom"
  2776. type="20" >
  2777. <productMenuType version="2.9.9"
  2778. type="10"
  2779. />
  2780. </productMenu>
  2781. <productMenu id="meshIntercom+"
  2782. type="3"
  2783. url="2" >
  2784. <productMenuType version="3.4.9"
  2785. type="2"
  2786. />
  2787. <productMenuType version="2.9.9"
  2788. type="1"
  2789. />
  2790. <productMenuURL version="3.3.1"
  2791. url="0"
  2792. />
  2793. </productMenu>
  2794. <productMenu id="bluetoothIntercom"
  2795. type="1" >
  2796. </productMenu>
  2797. <productMenu id="phone"
  2798. type="1" >
  2799. </productMenu>
  2800. <productMenu id="music"
  2801. type="1" >
  2802. </productMenu>
  2803. <productMenu id="fmradio"
  2804. type="1" >
  2805. </productMenu>
  2806. <productMenu id="deviceSetting"
  2807. type="1"
  2808. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  2809. <productMenuURL version="3.4.9"
  2810. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  2811. />
  2812. <productMenuURL version="3.3.1"
  2813. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  2814. />
  2815. <productMenuURL version="3.0.1"
  2816. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  2817. />
  2818. <productMenuURL version="2.3.1"
  2819. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  2820. />
  2821. <productMenuURL version="2.0"
  2822. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  2823. />
  2824. <productMenuURL version="1.0.3"
  2825. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  2826. />
  2827. </productMenu>
  2828. <productMenu id="quickGuide"
  2829. type="0"
  2830. url=""
  2831. size="1.06MB" >
  2832. </productMenu>
  2833. <productMenu id="userGuide"
  2834. type="1"
  2835. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  2836. size="3.15MB" >
  2837. </productMenu>
  2838. <productMenu id="volume"
  2839. type="1" >
  2840. </productMenu>
  2841. <productID id="3110"
  2842. />
  2843. <productGroupable type="0"
  2844. />
  2845. </product>
  2846. <product id="FURY"
  2847. name="FURY"
  2848. series="Helmet"
  2849. latestVersion="1.0"
  2850. show = "-1" >
  2851. <productMenu id="protocol"
  2852. type="2" >
  2853. </productMenu>
  2854. <productMenu id="alexa"
  2855. type="0" >
  2856. </productMenu>
  2857. <productMenu id="ota"
  2858. type="0" >
  2859. </productMenu>
  2860. <productMenu id="wa"
  2861. type="0" >
  2862. </productMenu>
  2863. <productMenu id="meshIntercom"
  2864. type="20" >
  2865. </productMenu>
  2866. <productMenu id="phone"
  2867. type="1" >
  2868. </productMenu>
  2869. <productMenu id="music"
  2870. type="1" >
  2871. </productMenu>
  2872. <productMenu id="fmradio"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="deviceSetting"
  2876. type="1"
  2877. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  2878. </productMenu>
  2879. <productMenu id="quickGuide"
  2880. type="1"
  2881. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2882. size="1.12MB" >
  2883. </productMenu>
  2884. <productMenu id="userGuide"
  2885. type="1"
  2886. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2887. size="2.0MB" >
  2888. </productMenu>
  2889. <productMenu id="volume"
  2890. type="13" >
  2891. </productMenu>
  2892. <productMenu id="battery"
  2893. type="1" >
  2894. </productMenu>
  2895. <productID id="5552"
  2896. />
  2897. <productGroupable type="0"
  2898. />
  2899. </product>
  2900. <product id="MomentumM"
  2901. name="Momentum EVO"
  2902. series="Helmet"
  2903. latestVersion="2.1.2"
  2904. show = "1" >
  2905. <productMenu id="protocol"
  2906. type="1"
  2907. url="0">
  2908. </productMenu>
  2909. <productMenu id="wa"
  2910. type="3" >
  2911. </productMenu>
  2912. <productMenu id="sip"
  2913. type="1" >
  2914. </productMenu>
  2915. <productMenu id="meshIntercom"
  2916. type="20" >
  2917. <productMenuType version="1.9.9"
  2918. type="10"
  2919. />
  2920. </productMenu>
  2921. <productMenu id="bluetoothIntercom"
  2922. type="1" >
  2923. </productMenu>
  2924. <productMenu id="phone"
  2925. type="1" >
  2926. </productMenu>
  2927. <productMenu id="music"
  2928. type="1" >
  2929. </productMenu>
  2930. <productMenu id="fmradio"
  2931. type="1" >
  2932. </productMenu>
  2933. <productMenu id="deviceSetting"
  2934. type="1"
  2935. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  2936. <productMenuURL version="1.0.1"
  2937. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  2938. />
  2939. </productMenu>
  2940. <productMenu id="quickGuide"
  2941. type="1"
  2942. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  2943. size="1.06MB" >
  2944. </productMenu>
  2945. <productMenu id="userGuide"
  2946. type="1"
  2947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  2948. size="3.15MB" >
  2949. </productMenu>
  2950. <productMenu id="volume"
  2951. type="2" >
  2952. </productMenu>
  2953. <productID id="3116"
  2954. />
  2955. <productGroupable type="0"
  2956. />
  2957. </product>
  2958. <product id="Momentum"
  2959. name="Momentum"
  2960. series="Helmet"
  2961. latestVersion="1.0.9"
  2962. show = "1" >
  2963. <productMenu id="protocol"
  2964. type="0">
  2965. </productMenu>
  2966. <productMenu id="sip"
  2967. type="1" >
  2968. </productMenu>
  2969. <productMenu id="bluetoothIntercom"
  2970. type="1" >
  2971. </productMenu>
  2972. <productMenu id="intercomSetting"
  2973. type="1" >
  2974. </productMenu>
  2975. <productMenu id="phone"
  2976. type="2" >
  2977. </productMenu>
  2978. <productMenu id="fmradio"
  2979. type="3" >
  2980. </productMenu>
  2981. <productMenu id="deviceSetting"
  2982. type="1"
  2983. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2984. </productMenu>
  2985. <productMenu id="quickGuide"
  2986. type="1"
  2987. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  2988. size="796KB" >
  2989. </productMenu>
  2990. <productMenu id="userGuide"
  2991. type="1"
  2992. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  2993. size="1.90MB" >
  2994. </productMenu>
  2995. <productID id="4310"
  2996. />
  2997. <productGroupable type="1"
  2998. />
  2999. </product>
  3000. <product id="Momentum_Pro"
  3001. name="Momentum Pro"
  3002. series="Helmet"
  3003. latestVersion="1.0.6"
  3004. show = "1" >
  3005. <productMenu id="protocol"
  3006. type="0">
  3007. </productMenu>
  3008. <productMenu id="sip"
  3009. type="1" >
  3010. </productMenu>
  3011. <productMenu id="bluetoothIntercom"
  3012. type="1" >
  3013. </productMenu>
  3014. <productMenu id="intercomSetting"
  3015. type="1" >
  3016. </productMenu>
  3017. <productMenu id="phone"
  3018. type="2" >
  3019. </productMenu>
  3020. <productMenu id="fmradio"
  3021. type="3" >
  3022. </productMenu>
  3023. <productMenu id="deviceSetting"
  3024. type="1"
  3025. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  3026. </productMenu>
  3027. <productMenu id="quickGuide"
  3028. type="1"
  3029. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  3030. size="796KB" >
  3031. </productMenu>
  3032. <productMenu id="userGuide"
  3033. type="1"
  3034. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  3035. size="1.90MB" >
  3036. </productMenu>
  3037. <productID id="4330"
  3038. />
  3039. <productGroupable type="1"
  3040. />
  3041. </product>
  3042. <product id="Momentum_INC"
  3043. name="Momentum INC"
  3044. series="Helmet"
  3045. latestVersion="1.0.7"
  3046. show = "1" >
  3047. <productMenu id="protocol"
  3048. type="0">
  3049. </productMenu>
  3050. <productMenu id="sip"
  3051. type="1" >
  3052. </productMenu>
  3053. <productMenu id="bluetoothIntercom"
  3054. type="1" >
  3055. </productMenu>
  3056. <productMenu id="intercomSetting"
  3057. type="1" >
  3058. </productMenu>
  3059. <productMenu id="phone"
  3060. type="2" >
  3061. </productMenu>
  3062. <productMenu id="fmradio"
  3063. type="3" >
  3064. </productMenu>
  3065. <productMenu id="deviceSetting"
  3066. type="1"
  3067. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3068. </productMenu>
  3069. <productMenu id="quickGuide"
  3070. type="1"
  3071. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  3072. size="794KB" >
  3073. </productMenu>
  3074. <productMenu id="userGuide"
  3075. type="1"
  3076. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  3077. size="1.53MB" >
  3078. </productMenu>
  3079. <productID id="4410"
  3080. />
  3081. <productGroupable type="1"
  3082. />
  3083. </product>
  3084. <product id="Momentum_INCP"
  3085. name="Momentum INC Pro"
  3086. series="Helmet"
  3087. latestVersion="1.0.4"
  3088. show = "1" >
  3089. <productMenu id="protocol"
  3090. type="0">
  3091. </productMenu>
  3092. <productMenu id="sip"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="bluetoothIntercom"
  3096. type="1" >
  3097. </productMenu>
  3098. <productMenu id="intercomSetting"
  3099. type="1" >
  3100. </productMenu>
  3101. <productMenu id="phone"
  3102. type="2" >
  3103. </productMenu>
  3104. <productMenu id="fmradio"
  3105. type="3" >
  3106. </productMenu>
  3107. <productMenu id="deviceSetting"
  3108. type="1"
  3109. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  3110. </productMenu>
  3111. <productMenu id="quickGuide"
  3112. type="1"
  3113. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  3114. size="794KB" >
  3115. </productMenu>
  3116. <productMenu id="userGuide"
  3117. type="1"
  3118. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  3119. size="1.53MB" >
  3120. </productMenu>
  3121. <productID id="4430"
  3122. />
  3123. <productGroupable type="1"
  3124. />
  3125. </product>
  3126. <product id="Momentum_Lite"
  3127. name="Momentum Lite"
  3128. series="Helmet"
  3129. latestVersion="2.0.3"
  3130. show = "1" >
  3131. <productMenu id="protocol"
  3132. type="0">
  3133. </productMenu>
  3134. <productMenu id="sip"
  3135. type="1" >
  3136. </productMenu>
  3137. <productMenu id="bluetoothIntercom"
  3138. type="1" >
  3139. </productMenu>
  3140. <productMenu id="phone"
  3141. type="2" >
  3142. </productMenu>
  3143. <productMenu id="fmradio"
  3144. type="3" >
  3145. </productMenu>
  3146. <productMenu id="deviceSetting"
  3147. type="1"
  3148. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3149. <productMenuURL version="1.1"
  3150. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  3151. />
  3152. </productMenu>
  3153. <productMenu id="quickGuide"
  3154. type="1"
  3155. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  3156. size="790KB" >
  3157. </productMenu>
  3158. <productMenu id="userGuide"
  3159. type="1"
  3160. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  3161. size="1.42MB" >
  3162. </productMenu>
  3163. <productID id="5526"
  3164. />
  3165. <productGroupable type="0"
  3166. />
  3167. </product>
  3168. <product id="OUTRUSHM"
  3169. name="OUTRUSH M"
  3170. series="Helmet"
  3171. latestVersion="1.0"
  3172. show = "-1" >
  3173. <productMenu id="protocol"
  3174. type="2" >
  3175. </productMenu>
  3176. <productMenu id="alexa"
  3177. type="0" >
  3178. </productMenu>
  3179. <productMenu id="ota"
  3180. type="0" >
  3181. </productMenu>
  3182. <productMenu id="wa"
  3183. type="0" >
  3184. </productMenu>
  3185. <productMenu id="meshIntercom"
  3186. type="30" >
  3187. </productMenu>
  3188. <productMenu id="phone"
  3189. type="1" >
  3190. </productMenu>
  3191. <productMenu id="music"
  3192. type="1" >
  3193. </productMenu>
  3194. <productMenu id="fmradio"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="deviceSetting"
  3198. type="1"
  3199. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  3200. </productMenu>
  3201. <productMenu id="quickGuide"
  3202. type="1"
  3203. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  3204. size="1.12MB" >
  3205. </productMenu>
  3206. <productMenu id="userGuide"
  3207. type="1"
  3208. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  3209. size="2.0MB" >
  3210. </productMenu>
  3211. <productMenu id="volume"
  3212. type="13" >
  3213. </productMenu>
  3214. <productMenu id="battery"
  3215. type="1" >
  3216. </productMenu>
  3217. <productID id="5600"
  3218. />
  3219. <productGroupable type="0"
  3220. />
  3221. </product>
  3222. <product id="ProRideEVO"
  3223. name="ProRide EVO"
  3224. series="Helmet"
  3225. latestVersion="1.1.2"
  3226. show = "1" >
  3227. <productMenu id="protocol"
  3228. type="0">
  3229. </productMenu>
  3230. <productMenu id="sip"
  3231. type="1" >
  3232. </productMenu>
  3233. <productMenu id="bluetoothIntercom"
  3234. type="1" >
  3235. </productMenu>
  3236. <productMenu id="phone"
  3237. type="2" >
  3238. </productMenu>
  3239. <productMenu id="fmradio"
  3240. type="3" >
  3241. </productMenu>
  3242. <productMenu id="deviceSetting"
  3243. type="1"
  3244. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  3245. </productMenu>
  3246. <productMenu id="userGuide"
  3247. type="1"
  3248. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  3249. size="778KB" >
  3250. </productMenu>
  3251. <productID id="5426"
  3252. />
  3253. <productGroupable type="0"
  3254. />
  3255. </product>
  3256. <product id="OUTRUSHR"
  3257. name="OUTRUSH R"
  3258. series="Helmet"
  3259. latestVersion="2.1"
  3260. show = "1" >
  3261. <productMenu id="protocol"
  3262. type="3" >
  3263. </productMenu>
  3264. <productMenu id="sip"
  3265. type="1" >
  3266. </productMenu>
  3267. <productMenu id="bluetoothIntercom"
  3268. type="1" >
  3269. </productMenu>
  3270. <productMenu id="phone"
  3271. type="1" >
  3272. </productMenu>
  3273. <productMenu id="fmradio"
  3274. type="0" >
  3275. </productMenu>
  3276. <productMenu id="deviceSetting"
  3277. type="1"
  3278. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3279. </productMenu>
  3280. <productMenu id="userGuide"
  3281. type="1"
  3282. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  3283. size="1.14MB" >
  3284. </productMenu>
  3285. <productID id="5440"
  3286. />
  3287. <productGroupable type="0"
  3288. />
  3289. </product>
  3290. <product id="OUTRUSHR"
  3291. name="OUTRUSH R"
  3292. series="Helmet"
  3293. latestVersion="1.1.3"
  3294. show = "-1" >
  3295. <productMenu id="protocol"
  3296. type="0">
  3297. </productMenu>
  3298. <productMenu id="sip"
  3299. type="1" >
  3300. </productMenu>
  3301. <productMenu id="bluetoothIntercom"
  3302. type="1" >
  3303. </productMenu>
  3304. <productMenu id="phone"
  3305. type="2" >
  3306. </productMenu>
  3307. <productMenu id="fmradio"
  3308. type="3" >
  3309. </productMenu>
  3310. <productMenu id="deviceSetting"
  3311. type="1"
  3312. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  3313. </productMenu>
  3314. <productMenu id="userGuide"
  3315. type="1"
  3316. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  3317. size="660KB" >
  3318. </productMenu>
  3319. <productID id="5424"
  3320. />
  3321. <productGroupable type="0"
  3322. />
  3323. </product>
  3324. <product id="OUTSTARS"
  3325. name="OUTSTAR S"
  3326. series="Helmet"
  3327. latestVersion="2.0.1"
  3328. show = "-1" >
  3329. <productMenu id="protocol"
  3330. type="3" >
  3331. </productMenu>
  3332. <productMenu id="sip"
  3333. type="1" >
  3334. </productMenu>
  3335. <productMenu id="bluetoothIntercom"
  3336. type="1" >
  3337. </productMenu>
  3338. <productMenu id="phone"
  3339. type="1" >
  3340. </productMenu>
  3341. <productMenu id="fmradio"
  3342. type="0" >
  3343. </productMenu>
  3344. <productMenu id="deviceSetting"
  3345. type="1"
  3346. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3347. </productMenu>
  3348. <productMenu id="userGuide"
  3349. type="0"
  3350. url=""
  3351. size="1.14MB" >
  3352. </productMenu>
  3353. <productID id="5443"
  3354. />
  3355. <productGroupable type="0"
  3356. />
  3357. </product>
  3358. <product id="OUTSTARS"
  3359. name="OUTSTAR S"
  3360. series="Helmet"
  3361. latestVersion="1.1.3"
  3362. show = "1" >
  3363. <productMenu id="protocol"
  3364. type="0">
  3365. </productMenu>
  3366. <productMenu id="sip"
  3367. type="1" >
  3368. </productMenu>
  3369. <productMenu id="bluetoothIntercom"
  3370. type="1" >
  3371. </productMenu>
  3372. <productMenu id="phone"
  3373. type="2" >
  3374. </productMenu>
  3375. <productMenu id="fmradio"
  3376. type="3" >
  3377. </productMenu>
  3378. <productMenu id="deviceSetting"
  3379. type="1"
  3380. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3381. </productMenu>
  3382. <productMenu id="quickGuide"
  3383. type="1"
  3384. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3385. size="643KB" >
  3386. </productMenu>
  3387. <productMenu id="userGuide"
  3388. type="1"
  3389. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3390. size="1.15MB" >
  3391. </productMenu>
  3392. <productID id="5428"
  3393. />
  3394. <productGroupable type="0"
  3395. />
  3396. </product>
  3397. <product id="OUTRIDE"
  3398. name="OUTRIDE"
  3399. series="Helmet"
  3400. latestVersion="1.0.1"
  3401. show = "1" >
  3402. <productMenu id="protocol"
  3403. type="0">
  3404. </productMenu>
  3405. <productMenu id="sip"
  3406. type="1" >
  3407. </productMenu>
  3408. <productMenu id="bluetoothIntercom"
  3409. type="1" >
  3410. </productMenu>
  3411. <productMenu id="phone"
  3412. type="2" >
  3413. </productMenu>
  3414. <productMenu id="fmradio"
  3415. type="3" >
  3416. </productMenu>
  3417. <productMenu id="deviceSetting"
  3418. type="1"
  3419. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3420. </productMenu>
  3421. <productMenu id="quickGuide"
  3422. type="1"
  3423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3424. size="643KB" >
  3425. </productMenu>
  3426. <productMenu id="userGuide"
  3427. type="1"
  3428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3429. size="660KB" >
  3430. </productMenu>
  3431. <productID id="5432"
  3432. />
  3433. <productGroupable type="0"
  3434. />
  3435. </product>
  3436. <product id="OUTFORCE"
  3437. name="OUTFORCE"
  3438. series="Helmet"
  3439. latestVersion="1.0.1"
  3440. show = "1" >
  3441. <productMenu id="protocol"
  3442. type="0">
  3443. </productMenu>
  3444. <productMenu id="sip"
  3445. type="1" >
  3446. </productMenu>
  3447. <productMenu id="bluetoothIntercom"
  3448. type="1" >
  3449. </productMenu>
  3450. <productMenu id="phone"
  3451. type="2" >
  3452. </productMenu>
  3453. <productMenu id="fmradio"
  3454. type="3" >
  3455. </productMenu>
  3456. <productMenu id="deviceSetting"
  3457. type="1"
  3458. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3459. </productMenu>
  3460. <productMenu id="quickGuide"
  3461. type="1"
  3462. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3463. size="643KB" >
  3464. </productMenu>
  3465. <productMenu id="userGuide"
  3466. type="1"
  3467. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3468. size="660KB" >
  3469. </productMenu>
  3470. <productID id="5430"
  3471. />
  3472. <productGroupable type="0"
  3473. />
  3474. </product>
  3475. <product id="Rumba"
  3476. name="Rumba"
  3477. series="30"
  3478. latestVersion="2.0"
  3479. show = "-1" >
  3480. <productMenu id="protocol"
  3481. type="3" >
  3482. </productMenu>
  3483. <productMenu id="sip"
  3484. type="1" >
  3485. </productMenu>
  3486. <productMenu id="bluetoothIntercom"
  3487. type="1" >
  3488. </productMenu>
  3489. <productMenu id="deviceSetting"
  3490. type="1"
  3491. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3492. </productMenu>
  3493. <productMenu id="quickGuide"
  3494. type="1"
  3495. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3496. size="344KB" >
  3497. </productMenu>
  3498. <productMenu id="userGuide"
  3499. type="1"
  3500. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3501. size="1.14MB" >
  3502. </productMenu>
  3503. <productID id="6322"
  3504. />
  3505. <productGroupable type="0"
  3506. />
  3507. </product>
  3508. <product id="Savage"
  3509. name="Savage"
  3510. series="Helmet"
  3511. latestVersion="1.2.2"
  3512. show = "1" >
  3513. <productMenu id="protocol"
  3514. type="0">
  3515. </productMenu>
  3516. <productMenu id="sip"
  3517. type="1" >
  3518. </productMenu>
  3519. <productMenu id="bluetoothIntercom"
  3520. type="1" >
  3521. </productMenu>
  3522. <productMenu id="phone"
  3523. type="2" >
  3524. </productMenu>
  3525. <productMenu id="fmradio"
  3526. type="3" >
  3527. </productMenu>
  3528. <productMenu id="deviceSetting"
  3529. type="1"
  3530. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3531. <productMenuURL version="1.9"
  3532. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3533. />
  3534. <productMenuURL version="1.1"
  3535. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3536. />
  3537. </productMenu>
  3538. <productMenu id="quickGuide"
  3539. type="1"
  3540. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3541. size="796KB" >
  3542. </productMenu>
  3543. <productMenu id="userGuide"
  3544. type="1"
  3545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3546. size="910KB" >
  3547. </productMenu>
  3548. <productID id="5550"
  3549. />
  3550. <productGroupable type="0"
  3551. />
  3552. </product>
  3553. <product id="OUTLANDER"
  3554. name="OUTLANDER"
  3555. series="Helmet"
  3556. latestVersion="1.0"
  3557. latestVersionVoicePrompt="1.0"
  3558. show = "-1" >
  3559. <productMenu id="protocol"
  3560. type="2" >
  3561. </productMenu>
  3562. <productMenu id="ota"
  3563. type="2" >
  3564. <otaLanguages>
  3565. <otaLanguage
  3566. id="0"
  3567. name="English"
  3568. package="0"
  3569. />
  3570. <otaLanguage
  3571. id="0"
  3572. name="French"
  3573. package="1"
  3574. />
  3575. <otaLanguage
  3576. id="0"
  3577. name="Spanish"
  3578. package="2"
  3579. />
  3580. <otaLanguage
  3581. id="0"
  3582. name="Italian"
  3583. package="3"
  3584. />
  3585. <otaLanguage
  3586. id="0"
  3587. name="German"
  3588. package="4"
  3589. />
  3590. <otaLanguage
  3591. id="0"
  3592. name="Dutch"
  3593. package="5"
  3594. />
  3595. <otaLanguage
  3596. id="0"
  3597. name="Russian"
  3598. package="6"
  3599. />
  3600. <otaLanguage
  3601. id="0"
  3602. name="Chinese"
  3603. package="7"
  3604. />
  3605. <otaLanguage
  3606. id="0"
  3607. name="Korean"
  3608. package="8"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="Japanese"
  3613. package="9"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Finnish"
  3618. package="10"
  3619. />
  3620. <otaLanguage
  3621. id="0"
  3622. name="Polish"
  3623. package="11"
  3624. />
  3625. </otaLanguages>
  3626. <otaPackages>
  3627. <package
  3628. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1.img"
  3629. size="5183988"
  3630. />
  3631. <package
  3632. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fr-FR.img"
  3633. size="5183988"
  3634. />
  3635. <package
  3636. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-es-ES.img"
  3637. size="5183988"
  3638. />
  3639. <package
  3640. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-it-IT.img"
  3641. size="5183988"
  3642. />
  3643. <package
  3644. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-de-DE.img"
  3645. size="5183988"
  3646. />
  3647. <package
  3648. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-nl-NL.img"
  3649. size="5183988"
  3650. />
  3651. <package
  3652. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ru-RU.img"
  3653. size="5183988"
  3654. />
  3655. <package
  3656. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-cmn-CN.img"
  3657. size="5183988"
  3658. />
  3659. <package
  3660. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ko-KR.img"
  3661. size="5183988"
  3662. />
  3663. <package
  3664. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-ja-JP.img"
  3665. size="5183988"
  3666. />
  3667. <package
  3668. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-fi-FI.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/test/OTATest/OUTLANDER/OUTLANDER-v1.0-build1-pl-PL.img"
  3673. size="5183988"
  3674. />
  3675. </otaPackages>
  3676. </productMenu>
  3677. <productMenu id="wa"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="led"
  3681. type="5" >
  3682. </productMenu>
  3683. <productMenu id="led+"
  3684. type="2"
  3685. url="1" >
  3686. </productMenu>
  3687. <productMenu id="meshIntercom+"
  3688. type="3"
  3689. url="2" >
  3690. </productMenu>
  3691. <productMenu id="waveIntercom"
  3692. type="1" >
  3693. </productMenu>
  3694. <productMenu id="fmradio"
  3695. type="0" >
  3696. </productMenu>
  3697. <productMenu id="phone"
  3698. type="1" >
  3699. </productMenu>
  3700. <productMenu id="music"
  3701. type="1" >
  3702. </productMenu>
  3703. <productMenu id="musicSharing"
  3704. type="0" >
  3705. </productMenu>
  3706. <productMenu id="deviceSetting"
  3707. type="1"
  3708. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  3709. </productMenu>
  3710. <productMenu id="quickGuide"
  3711. type="0"
  3712. url=""
  3713. size="1.12MB" >
  3714. </productMenu>
  3715. <productMenu id="userGuide"
  3716. type="0"
  3717. url=""
  3718. size="2.0MB" >
  3719. </productMenu>
  3720. <productMenu id="videoGuide"
  3721. type="0"
  3722. url=""
  3723. size="3.41MB" >
  3724. </productMenu>
  3725. <productMenu id="volume"
  3726. type="16" >
  3727. </productMenu>
  3728. <productMenu id="battery"
  3729. type="1" >
  3730. </productMenu>
  3731. <productID id="6A05"
  3732. />
  3733. <productGroupable type="0"
  3734. />
  3735. </product>
  3736. <product id="OUTRUSH2"
  3737. name="OUTRUSH 2"
  3738. series="Helmet"
  3739. latestVersion="1.0.2"
  3740. latestVersionVoicePrompt="1.1"
  3741. show = "-1" >
  3742. <productMenu id="protocol"
  3743. type="2" >
  3744. </productMenu>
  3745. <productMenu id="alexa"
  3746. type="0" >
  3747. </productMenu>
  3748. <productMenu id="ota"
  3749. type="2" >
  3750. <otaPackages>
  3751. <package
  3752. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  3753. size="2945812"
  3754. />
  3755. </otaPackages>
  3756. </productMenu>
  3757. <productMenu id="meshIntercom+"
  3758. type="3"
  3759. url="2" >
  3760. </productMenu>
  3761. <productMenu id="waveIntercom"
  3762. type="1" >
  3763. </productMenu>
  3764. <productMenu id="phone"
  3765. type="1" >
  3766. </productMenu>
  3767. <productMenu id="music"
  3768. type="1" >
  3769. </productMenu>
  3770. <productMenu id="musicSharing"
  3771. type="0" >
  3772. </productMenu>
  3773. <productMenu id="deviceSetting"
  3774. type="1"
  3775. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  3776. <productMenuURL version="1.0"
  3777. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  3778. />
  3779. </productMenu>
  3780. <productMenu id="quickGuide"
  3781. type="0"
  3782. url=""
  3783. size="1.12MB" >
  3784. </productMenu>
  3785. <productMenu id="userGuide"
  3786. type="1"
  3787. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  3788. size="2.0MB" >
  3789. </productMenu>
  3790. <productMenu id="volume"
  3791. type="12" >
  3792. </productMenu>
  3793. <productMenu id="battery"
  3794. type="1" >
  3795. </productMenu>
  3796. <productID id="684A"
  3797. />
  3798. <productGroupable type="0"
  3799. />
  3800. </product>
  3801. <product id="OUTSTAR2"
  3802. name="OUTSTAR 2"
  3803. series="Helmet"
  3804. latestVersion="1.0.1"
  3805. latestVersionVoicePrompt="1.1"
  3806. show = "-1" >
  3807. <productMenu id="protocol"
  3808. type="2" >
  3809. </productMenu>
  3810. <productMenu id="alexa"
  3811. type="0" >
  3812. </productMenu>
  3813. <productMenu id="ota"
  3814. type="2" >
  3815. <otaPackages>
  3816. <package
  3817. url="https://api.sena.com/support/test/OUTSTAR_2-v1.0.1-build0.img"
  3818. size="2945812"
  3819. />
  3820. </otaPackages>
  3821. </productMenu>
  3822. <productMenu id="meshIntercom+"
  3823. type="3"
  3824. url="2" >
  3825. </productMenu>
  3826. <productMenu id="waveIntercom"
  3827. type="1" >
  3828. </productMenu>
  3829. <productMenu id="phone"
  3830. type="1" >
  3831. </productMenu>
  3832. <productMenu id="music"
  3833. type="1" >
  3834. </productMenu>
  3835. <productMenu id="musicSharing"
  3836. type="0" >
  3837. </productMenu>
  3838. <productMenu id="deviceSetting"
  3839. type="1"
  3840. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  3841. </productMenu>
  3842. <productMenu id="quickGuide"
  3843. type="0"
  3844. url=""
  3845. size="1.12MB" >
  3846. </productMenu>
  3847. <productMenu id="userGuide"
  3848. type="1"
  3849. url=""
  3850. size="2.0MB" >
  3851. </productMenu>
  3852. <productMenu id="volume"
  3853. type="12" >
  3854. </productMenu>
  3855. <productMenu id="battery"
  3856. type="1" >
  3857. </productMenu>
  3858. <productID id="684B"
  3859. />
  3860. <productGroupable type="0"
  3861. />
  3862. </product>
  3863. <product id="SURGE"
  3864. name="SURGE"
  3865. series="Helmet"
  3866. latestVersion="1.1.1"
  3867. latestVersionVoicePrompt="0.9"
  3868. show = "1" >
  3869. <productMenu id="protocol"
  3870. type="2" >
  3871. </productMenu>
  3872. <productMenu id="alexa"
  3873. type="0" >
  3874. </productMenu>
  3875. <productMenu id="ota"
  3876. type="2" >
  3877. <otaPackages>
  3878. <package
  3879. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.1.1-build0.img"
  3880. size="2945812"
  3881. />
  3882. </otaPackages>
  3883. </productMenu>
  3884. <productMenu id="meshIntercom"
  3885. type="30" >
  3886. </productMenu>
  3887. <productMenu id="meshIntercom+"
  3888. type="3"
  3889. url="2" >
  3890. <productMenuType version="1.0.1"
  3891. type="2"
  3892. />
  3893. </productMenu>
  3894. <productMenu id="waveIntercom"
  3895. type="1" >
  3896. <productMenuType version="1.0.9"
  3897. type="0"
  3898. />
  3899. </productMenu>
  3900. <productMenu id="phone"
  3901. type="1" >
  3902. </productMenu>
  3903. <productMenu id="music"
  3904. type="1" >
  3905. </productMenu>
  3906. <productMenu id="musicSharing"
  3907. type="0" >
  3908. </productMenu>
  3909. <productMenu id="deviceSetting"
  3910. type="1"
  3911. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  3912. <productMenuURL version="1.0.1"
  3913. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3914. />
  3915. </productMenu>
  3916. <productMenu id="quickGuide"
  3917. type="0"
  3918. url=""
  3919. size="1.12MB" >
  3920. </productMenu>
  3921. <productMenu id="userGuide"
  3922. type="1"
  3923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.0_en_250408.pdf"
  3924. size="2.0MB" >
  3925. </productMenu>
  3926. <productMenu id="volume"
  3927. type="12" >
  3928. </productMenu>
  3929. <productMenu id="battery"
  3930. type="1" >
  3931. </productMenu>
  3932. <productID id="6840"
  3933. />
  3934. <productGroupable type="0"
  3935. />
  3936. </product>
  3937. <product id="Cavalry2"
  3938. name="Cavalry 2"
  3939. series="Helmet"
  3940. latestVersion="1.1.1"
  3941. latestVersionVoicePrompt="0.9"
  3942. show = "1" >
  3943. <productMenu id="protocol"
  3944. type="2" >
  3945. </productMenu>
  3946. <productMenu id="alexa"
  3947. type="0" >
  3948. </productMenu>
  3949. <productMenu id="ota"
  3950. type="2" >
  3951. <otaPackages>
  3952. <package
  3953. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.1.1-build0.img"
  3954. size="3144148"
  3955. />
  3956. </otaPackages>
  3957. </productMenu>
  3958. <productMenu id="wa"
  3959. type="0" >
  3960. </productMenu>
  3961. <productMenu id="meshIntercom"
  3962. type="30" >
  3963. </productMenu>
  3964. <productMenu id="meshIntercom+"
  3965. type="3"
  3966. url="2" >
  3967. <productMenuType version="1.0"
  3968. type="2"
  3969. />
  3970. </productMenu>
  3971. <productMenu id="waveIntercom"
  3972. type="1" >
  3973. <productMenuType version="1.0.9"
  3974. type="0"
  3975. />
  3976. </productMenu>
  3977. <productMenu id="phone"
  3978. type="1" >
  3979. </productMenu>
  3980. <productMenu id="music"
  3981. type="1" >
  3982. </productMenu>
  3983. <productMenu id="musicSharing"
  3984. type="0" >
  3985. </productMenu>
  3986. <productMenu id="deviceSetting"
  3987. type="1"
  3988. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  3989. <productMenuURL version="1.0"
  3990. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  3991. />
  3992. </productMenu>
  3993. <productMenu id="quickGuide"
  3994. type="0"
  3995. url=""
  3996. size="1.12MB" >
  3997. </productMenu>
  3998. <productMenu id="userGuide"
  3999. type="1"
  4000. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.0_en_250415.pdf"
  4001. size="2.0MB" >
  4002. </productMenu>
  4003. <productMenu id="connectGuide"
  4004. type="1"
  4005. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  4006. size="1.12MB" >
  4007. </productMenu>
  4008. <productMenu id="volume"
  4009. type="12" >
  4010. </productMenu>
  4011. <productMenu id="battery"
  4012. type="1" >
  4013. </productMenu>
  4014. <productID id="6839"
  4015. />
  4016. <productGroupable type="0"
  4017. />
  4018. </product>
  4019. <product id="Cavalry"
  4020. name="Cavalry"
  4021. series="Helmet"
  4022. latestVersion="1.2.2"
  4023. show = "1" >
  4024. <productMenu id="protocol"
  4025. type="0">
  4026. </productMenu>
  4027. <productMenu id="sip"
  4028. type="1" >
  4029. </productMenu>
  4030. <productMenu id="bluetoothIntercom"
  4031. type="1" >
  4032. </productMenu>
  4033. <productMenu id="phone"
  4034. type="2" >
  4035. </productMenu>
  4036. <productMenu id="fmradio"
  4037. type="3" >
  4038. </productMenu>
  4039. <productMenu id="deviceSetting"
  4040. type="1"
  4041. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  4042. <productMenuURL version="1.9"
  4043. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  4044. />
  4045. <productMenuURL version="1.0.1"
  4046. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  4047. />
  4048. </productMenu>
  4049. <productMenu id="quickGuide"
  4050. type="1"
  4051. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  4052. size="795KB" >
  4053. </productMenu>
  4054. <productMenu id="userGuide"
  4055. type="1"
  4056. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  4057. size="1.87MB" >
  4058. </productMenu>
  4059. <productID id="5524"
  4060. />
  4061. <productGroupable type="0"
  4062. />
  4063. </product>
  4064. <product id="Cavalry_Lite"
  4065. name="Cavalry Lite"
  4066. series="Helmet"
  4067. latestVersion="1.0.2"
  4068. show = "1" >
  4069. <productMenu id="protocol"
  4070. type="0">
  4071. </productMenu>
  4072. <productMenu id="sip"
  4073. type="1" >
  4074. </productMenu>
  4075. <productMenu id="bluetoothIntercom"
  4076. type="1" >
  4077. </productMenu>
  4078. <productMenu id="phone"
  4079. type="2" >
  4080. </productMenu>
  4081. <productMenu id="fmradio"
  4082. type="3" >
  4083. </productMenu>
  4084. <productMenu id="deviceSetting"
  4085. type="1"
  4086. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  4087. </productMenu>
  4088. <productMenu id="userGuide"
  4089. type="1"
  4090. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  4091. size="1.74MB" >
  4092. </productMenu>
  4093. <productID id="5536"
  4094. />
  4095. <productGroupable type="0"
  4096. />
  4097. </product>
  4098. <product id="SF4"
  4099. name="SF4"
  4100. series="SF"
  4101. latestVersion="1.1.5"
  4102. show = "-1" >
  4103. <productMenu id="protocol"
  4104. type="1"
  4105. url="3">
  4106. </productMenu>
  4107. <productMenu id="sip"
  4108. type="1" >
  4109. </productMenu>
  4110. <productMenu id="bluetoothIntercom"
  4111. type="1" >
  4112. </productMenu>
  4113. <productMenu id="phone"
  4114. type="1" >
  4115. </productMenu>
  4116. <productMenu id="music"
  4117. type="1" >
  4118. </productMenu>
  4119. <productMenu id="fmradio"
  4120. type="1" >
  4121. </productMenu>
  4122. <productMenu id="deviceSetting"
  4123. type="1"
  4124. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4125. <productMenuURL version="1.0.1"
  4126. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4127. />
  4128. </productMenu>
  4129. <productMenu id="quickGuide"
  4130. type="1"
  4131. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  4132. size="607KB" >
  4133. </productMenu>
  4134. <productMenu id="userGuide"
  4135. type="1"
  4136. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4137. size="1.91MB" >
  4138. </productMenu>
  4139. <productMenu id="volume"
  4140. type="4" >
  4141. </productMenu>
  4142. <productID id="5414"
  4143. />
  4144. <productGroupable type="0"
  4145. />
  4146. </product>
  4147. <product id="SF4"
  4148. name="SF4"
  4149. series="SF"
  4150. latestVersion="3.4.1"
  4151. show = "1" >
  4152. <productMenu id="protocol"
  4153. type="2" >
  4154. </productMenu>
  4155. <productMenu id="sip"
  4156. type="1" >
  4157. </productMenu>
  4158. <productMenu id="bluetoothIntercom"
  4159. type="1" >
  4160. </productMenu>
  4161. <productMenu id="phone"
  4162. type="1" >
  4163. </productMenu>
  4164. <productMenu id="music"
  4165. type="1" >
  4166. </productMenu>
  4167. <productMenu id="fmradio"
  4168. type="1" >
  4169. </productMenu>
  4170. <productMenu id="deviceSetting"
  4171. type="1"
  4172. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  4173. <productMenuURL version="3.0"
  4174. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  4175. />
  4176. </productMenu>
  4177. <productMenu id="quickGuide"
  4178. type="0"
  4179. url=""
  4180. size="934KB" >
  4181. </productMenu>
  4182. <productMenu id="userGuide"
  4183. type="1"
  4184. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4185. size="1.14MB" >
  4186. </productMenu>
  4187. <productMenu id="volume"
  4188. type="15" >
  4189. </productMenu>
  4190. <productID id="3370"
  4191. />
  4192. <productGroupable type="0"
  4193. />
  4194. </product>
  4195. <product id="SF2"
  4196. name="SF2"
  4197. series="SF"
  4198. latestVersion="1.2.1"
  4199. show = "-1" >
  4200. <productMenu id="protocol"
  4201. type="1"
  4202. url="2">
  4203. </productMenu>
  4204. <productMenu id="sip"
  4205. type="1" >
  4206. </productMenu>
  4207. <productMenu id="bluetoothIntercom"
  4208. type="1" >
  4209. </productMenu>
  4210. <productMenu id="phone"
  4211. type="1" >
  4212. </productMenu>
  4213. <productMenu id="music"
  4214. type="1" >
  4215. </productMenu>
  4216. <productMenu id="fmradio"
  4217. type="1" >
  4218. </productMenu>
  4219. <productMenu id="deviceSetting"
  4220. type="1"
  4221. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4222. <productMenuURL version="1.0.1"
  4223. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  4224. />
  4225. </productMenu>
  4226. <productMenu id="quickGuide"
  4227. type="1"
  4228. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  4229. size="607KB" >
  4230. </productMenu>
  4231. <productMenu id="userGuide"
  4232. type="1"
  4233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4234. size="1.91MB" >
  4235. </productMenu>
  4236. <productMenu id="volume"
  4237. type="4" >
  4238. </productMenu>
  4239. <productID id="5412"
  4240. />
  4241. <productGroupable type="0"
  4242. />
  4243. </product>
  4244. <product id="SF2"
  4245. name="SF2"
  4246. series="SF"
  4247. latestVersion="3.3.1"
  4248. show = "1" >
  4249. <productMenu id="protocol"
  4250. type="2" >
  4251. </productMenu>
  4252. <productMenu id="sip"
  4253. type="1" >
  4254. </productMenu>
  4255. <productMenu id="bluetoothIntercom"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="phone"
  4259. type="1" >
  4260. </productMenu>
  4261. <productMenu id="music"
  4262. type="1" >
  4263. </productMenu>
  4264. <productMenu id="fmradio"
  4265. type="0" >
  4266. </productMenu>
  4267. <productMenu id="deviceSetting"
  4268. type="1"
  4269. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4270. <productMenuURL version="3.0"
  4271. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4272. />
  4273. </productMenu>
  4274. <productMenu id="quickGuide"
  4275. type="0"
  4276. url=""
  4277. size="934KB" >
  4278. </productMenu>
  4279. <productMenu id="userGuide"
  4280. type="1"
  4281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4282. size="1.14MB" >
  4283. </productMenu>
  4284. <productMenu id="volume"
  4285. type="15" >
  4286. </productMenu>
  4287. <productID id="3360"
  4288. />
  4289. <productGroupable type="0"
  4290. />
  4291. </product>
  4292. <product id="SF1"
  4293. name="SF1"
  4294. series="SF"
  4295. latestVersion="2.0.5"
  4296. show = "-1" >
  4297. <productMenu id="protocol"
  4298. type="1"
  4299. url="1">
  4300. </productMenu>
  4301. <productMenu id="sip"
  4302. type="1" >
  4303. </productMenu>
  4304. <productMenu id="bluetoothIntercom"
  4305. type="1" >
  4306. <productMenuType version="1.1"
  4307. type="0"
  4308. />
  4309. </productMenu>
  4310. <productMenu id="phone"
  4311. type="1" >
  4312. </productMenu>
  4313. <productMenu id="music"
  4314. type="1" >
  4315. </productMenu>
  4316. <productMenu id="deviceSetting"
  4317. type="1"
  4318. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  4319. <productMenuURL version="1.1"
  4320. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  4321. />
  4322. <productMenuURL version="1.0"
  4323. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  4324. />
  4325. </productMenu>
  4326. <productMenu id="quickGuide"
  4327. type="1"
  4328. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  4329. size="401KB" >
  4330. </productMenu>
  4331. <productMenu id="userGuide"
  4332. type="1"
  4333. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  4334. size="1.91MB" >
  4335. </productMenu>
  4336. <productMenu id="volume"
  4337. type="3" >
  4338. </productMenu>
  4339. <productID id="5410"
  4340. />
  4341. <productGroupable type="0"
  4342. />
  4343. </product>
  4344. <product id="SF1"
  4345. name="SF1"
  4346. series="SF"
  4347. latestVersion="3.3.1"
  4348. show = "1" >
  4349. <productMenu id="protocol"
  4350. type="2" >
  4351. </productMenu>
  4352. <productMenu id="sip"
  4353. type="1" >
  4354. </productMenu>
  4355. <productMenu id="bluetoothIntercom"
  4356. type="1" >
  4357. </productMenu>
  4358. <productMenu id="phone"
  4359. type="1" >
  4360. </productMenu>
  4361. <productMenu id="music"
  4362. type="1" >
  4363. </productMenu>
  4364. <productMenu id="fmradio"
  4365. type="0" >
  4366. </productMenu>
  4367. <productMenu id="deviceSetting"
  4368. type="1"
  4369. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  4370. <productMenuURL version="3.0"
  4371. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  4372. />
  4373. </productMenu>
  4374. <productMenu id="quickGuide"
  4375. type="0"
  4376. url=""
  4377. size="934KB" >
  4378. </productMenu>
  4379. <productMenu id="userGuide"
  4380. type="1"
  4381. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  4382. size="1.14MB" >
  4383. </productMenu>
  4384. <productMenu id="volume"
  4385. type="15" >
  4386. </productMenu>
  4387. <productID id="3350"
  4388. />
  4389. <productGroupable type="0"
  4390. />
  4391. </product>
  4392. <product id="SFR"
  4393. name="SFR"
  4394. series="SF"
  4395. latestVersion="1.1.1"
  4396. show = "1" >
  4397. <productMenu id="protocol"
  4398. type="1"
  4399. url="3">
  4400. </productMenu>
  4401. <productMenu id="sip"
  4402. type="1" >
  4403. </productMenu>
  4404. <productMenu id="bluetoothIntercom"
  4405. type="1" >
  4406. </productMenu>
  4407. <productMenu id="phone"
  4408. type="1" >
  4409. </productMenu>
  4410. <productMenu id="music"
  4411. type="1" >
  4412. </productMenu>
  4413. <productMenu id="fmradio"
  4414. type="1" >
  4415. </productMenu>
  4416. <productMenu id="deviceSetting"
  4417. type="1"
  4418. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  4419. </productMenu>
  4420. <productMenu id="quickGuide"
  4421. type="1"
  4422. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  4423. size="607KB" >
  4424. </productMenu>
  4425. <productMenu id="userGuide"
  4426. type="1"
  4427. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  4428. size="1.91MB" >
  4429. </productMenu>
  4430. <productMenu id="volume"
  4431. type="4" >
  4432. </productMenu>
  4433. <productID id="5418"
  4434. />
  4435. <productGroupable type="0"
  4436. />
  4437. </product>
  4438. <product id="20S"
  4439. name="20S"
  4440. series="20"
  4441. latestVersion="2.2.3"
  4442. show = "1" >
  4443. <productMenu id="protocol"
  4444. type="0">
  4445. </productMenu>
  4446. <productMenu id="wa"
  4447. type="5" >
  4448. </productMenu>
  4449. <productMenu id="sip"
  4450. type="1" >
  4451. <productMenuType version="1.0"
  4452. type="0"
  4453. />
  4454. </productMenu>
  4455. <productMenu id="bluetoothIntercom"
  4456. type="1" >
  4457. <productMenuType version="1.0"
  4458. type="0"
  4459. />
  4460. </productMenu>
  4461. <productMenu id="intercomSetting"
  4462. type="1" >
  4463. </productMenu>
  4464. <productMenu id="phone"
  4465. type="2" >
  4466. </productMenu>
  4467. <productMenu id="fmradio"
  4468. type="3" >
  4469. </productMenu>
  4470. <productMenu id="deviceSetting"
  4471. type="1"
  4472. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4473. <productMenuURL version="2.0.2"
  4474. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4475. />
  4476. <productMenuURL version="1.5"
  4477. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4478. />
  4479. <productMenuURL version="1.4.1"
  4480. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4481. />
  4482. <productMenuURL version="1.1"
  4483. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4484. />
  4485. <productMenuURL version="1.0"
  4486. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4487. />
  4488. </productMenu>
  4489. <productMenu id="quickGuide"
  4490. type="0"
  4491. url=""
  4492. size="264KB" >
  4493. </productMenu>
  4494. <productMenu id="userGuide"
  4495. type="1"
  4496. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4497. size="3.09MB" >
  4498. </productMenu>
  4499. <productID id="4210"
  4500. />
  4501. <productGroupable type="1"
  4502. />
  4503. </product>
  4504. <product id="20S_EVO"
  4505. name="20S EVO"
  4506. series="20"
  4507. latestVersion="2.2.3"
  4508. show = "1" >
  4509. <productMenu id="protocol"
  4510. type="0">
  4511. </productMenu>
  4512. <productMenu id="wa"
  4513. type="5" >
  4514. </productMenu>
  4515. <productMenu id="sip"
  4516. type="1" >
  4517. <productMenuType version="1.0"
  4518. type="0"
  4519. />
  4520. </productMenu>
  4521. <productMenu id="bluetoothIntercom"
  4522. type="1" >
  4523. <productMenuType version="1.0"
  4524. type="0"
  4525. />
  4526. </productMenu>
  4527. <productMenu id="intercomSetting"
  4528. type="1" >
  4529. </productMenu>
  4530. <productMenu id="phone"
  4531. type="2" >
  4532. </productMenu>
  4533. <productMenu id="fmradio"
  4534. type="3" >
  4535. </productMenu>
  4536. <productMenu id="deviceSetting"
  4537. type="1"
  4538. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  4539. <productMenuURL version="2.0.2"
  4540. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  4541. />
  4542. <productMenuURL version="1.5"
  4543. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  4544. />
  4545. <productMenuURL version="1.4.1"
  4546. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  4547. />
  4548. <productMenuURL version="1.1"
  4549. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  4550. />
  4551. <productMenuURL version="1.0"
  4552. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  4553. />
  4554. </productMenu>
  4555. <productMenu id="quickGuide"
  4556. type="0"
  4557. url=""
  4558. size="264KB" >
  4559. </productMenu>
  4560. <productMenu id="userGuide"
  4561. type="1"
  4562. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  4563. size="3.09MB" >
  4564. </productMenu>
  4565. <productID id="4210"
  4566. />
  4567. <productProductKey key="16"
  4568. />
  4569. <productGroupable type="1"
  4570. />
  4571. </product>
  4572. <product id="10S"
  4573. name="10S"
  4574. series="10"
  4575. latestVersion="3.0.1"
  4576. show = "1" >
  4577. <productMenu id="protocol"
  4578. type="3" >
  4579. </productMenu>
  4580. <productMenu id="sip"
  4581. type="1" >
  4582. </productMenu>
  4583. <productMenu id="bluetoothIntercom"
  4584. type="1" >
  4585. </productMenu>
  4586. <productMenu id="phone"
  4587. type="1" >
  4588. </productMenu>
  4589. <productMenu id="deviceSetting"
  4590. type="1"
  4591. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  4592. </productMenu>
  4593. <productMenu id="quickGuide"
  4594. type="1"
  4595. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  4596. size="934KB" >
  4597. </productMenu>
  4598. <productMenu id="userGuide"
  4599. type="1"
  4600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  4601. size="1.14MB" >
  4602. </productMenu>
  4603. <productID id="3380"
  4604. />
  4605. <productGroupable type="0"
  4606. />
  4607. </product>
  4608. <product id="10S"
  4609. name="10S"
  4610. series="10"
  4611. latestVersion="2.1.1"
  4612. show = "-1" >
  4613. <productMenu id="protocol"
  4614. type="0">
  4615. </productMenu>
  4616. <productMenu id="sip"
  4617. type="1" >
  4618. </productMenu>
  4619. <productMenu id="bluetoothIntercom"
  4620. type="1" >
  4621. </productMenu>
  4622. <productMenu id="phone"
  4623. type="2" >
  4624. </productMenu>
  4625. <productMenu id="fmradio"
  4626. type="3" >
  4627. </productMenu>
  4628. <productMenu id="deviceSetting"
  4629. type="1"
  4630. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  4631. <productMenuURL version="1.5"
  4632. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  4633. />
  4634. <productMenuURL version="1.3.1"
  4635. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  4636. />
  4637. </productMenu>
  4638. <productMenu id="quickGuide"
  4639. type="1"
  4640. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  4641. size="310KB" >
  4642. </productMenu>
  4643. <productMenu id="userGuide"
  4644. type="1"
  4645. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  4646. size="1.57MB" >
  4647. </productMenu>
  4648. <productID id="5530"
  4649. />
  4650. <productGroupable type="0"
  4651. />
  4652. </product>
  4653. <product id="10R"
  4654. name="10R"
  4655. series="10"
  4656. latestVersion="2.1.1"
  4657. show = "1" >
  4658. <productMenu id="protocol"
  4659. type="0">
  4660. </productMenu>
  4661. <productMenu id="sip"
  4662. type="1" >
  4663. <productMenuType version="1.0.2"
  4664. type="0"
  4665. />
  4666. </productMenu>
  4667. <productMenu id="bluetoothIntercom"
  4668. type="1" >
  4669. <productMenuType version="1.0.2"
  4670. type="0"
  4671. />
  4672. </productMenu>
  4673. <productMenu id="phone"
  4674. type="2" >
  4675. </productMenu>
  4676. <productMenu id="fmradio"
  4677. type="3" >
  4678. </productMenu>
  4679. <productMenu id="deviceSetting"
  4680. type="1"
  4681. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4682. <productMenuURL version="1.4"
  4683. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  4684. />
  4685. <productMenuURL version="1.2.1"
  4686. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  4687. />
  4688. <productMenuURL version="1.0.2"
  4689. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  4690. />
  4691. <productMenuURL version="1.0"
  4692. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  4693. />
  4694. </productMenu>
  4695. <productMenu id="quickGuide"
  4696. type="1"
  4697. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  4698. size="400KB" >
  4699. </productMenu>
  4700. <productMenu id="userGuide"
  4701. type="1"
  4702. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  4703. size="2.75MB" >
  4704. </productMenu>
  4705. <productID id="5520"
  4706. />
  4707. <productGroupable type="0"
  4708. />
  4709. </product>
  4710. <product id="10C_EVO"
  4711. name="10C EVO"
  4712. series="10"
  4713. latestVersion="1.7"
  4714. show = "1" >
  4715. <productMenu id="protocol"
  4716. type="0">
  4717. </productMenu>
  4718. <productMenu id="sip"
  4719. type="1" >
  4720. </productMenu>
  4721. <productMenu id="bluetoothIntercom"
  4722. type="1" >
  4723. </productMenu>
  4724. <productMenu id="phone"
  4725. type="2" >
  4726. </productMenu>
  4727. <productMenu id="fmradio"
  4728. type="3" >
  4729. </productMenu>
  4730. <productMenu id="deviceSetting"
  4731. type="1"
  4732. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  4733. <productMenuURL version="1.3.1"
  4734. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4735. />
  4736. </productMenu>
  4737. <productMenu id="quickGuide"
  4738. type="1"
  4739. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  4740. size="1.32MB" >
  4741. </productMenu>
  4742. <productMenu id="userGuide"
  4743. type="1"
  4744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  4745. size="1.68MB" >
  4746. </productMenu>
  4747. <productID id="5570"
  4748. />
  4749. <productGroupable type="0"
  4750. />
  4751. </product>
  4752. <product id="10C_Pro"
  4753. name="10C Pro"
  4754. series="10"
  4755. latestVersion="2.7.1"
  4756. show = "1" >
  4757. <productMenu id="protocol"
  4758. type="0">
  4759. </productMenu>
  4760. <productMenu id="sip"
  4761. type="1" >
  4762. </productMenu>
  4763. <productMenu id="bluetoothIntercom"
  4764. type="1" >
  4765. </productMenu>
  4766. <productMenu id="phone"
  4767. type="2" >
  4768. </productMenu>
  4769. <productMenu id="fmradio"
  4770. type="3" >
  4771. </productMenu>
  4772. <productMenu id="deviceSetting"
  4773. type="1"
  4774. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4775. <productMenuURL version="2.5.1"
  4776. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4777. />
  4778. <productMenuURL version="1.0"
  4779. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4780. />
  4781. </productMenu>
  4782. <productMenu id="quickGuide"
  4783. type="1"
  4784. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4785. size="651KB" >
  4786. </productMenu>
  4787. <productMenu id="userGuide"
  4788. type="1"
  4789. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4790. size="2.34MB" >
  4791. </productMenu>
  4792. <productID id="5580"
  4793. />
  4794. <productGroupable type="0"
  4795. />
  4796. </product>
  4797. <product id="10C"
  4798. name="10C"
  4799. series="10"
  4800. latestVersion="3.0.4"
  4801. show = "1" >
  4802. <productMenu id="protocol"
  4803. type="0">
  4804. </productMenu>
  4805. <productMenu id="sip"
  4806. type="1" >
  4807. <productMenuType version="1.0.4"
  4808. type="0"
  4809. />
  4810. </productMenu>
  4811. <productMenu id="bluetoothIntercom"
  4812. type="1" >
  4813. <productMenuType version="1.0.4"
  4814. type="0"
  4815. />
  4816. </productMenu>
  4817. <productMenu id="phone"
  4818. type="2" >
  4819. </productMenu>
  4820. <productMenu id="fmradio"
  4821. type="3" >
  4822. </productMenu>
  4823. <productMenu id="deviceSetting"
  4824. type="1"
  4825. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  4826. <productMenuURL version="2.3"
  4827. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  4828. />
  4829. <productMenuURL version="2.1.1"
  4830. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  4831. />
  4832. <productMenuURL version="1.0.4"
  4833. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  4834. />
  4835. <productMenuURL version="1.0.2"
  4836. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  4837. />
  4838. </productMenu>
  4839. <productMenu id="quickGuide"
  4840. type="1"
  4841. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  4842. size="935KB" >
  4843. </productMenu>
  4844. <productMenu id="userGuide"
  4845. type="1"
  4846. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  4847. size="2.82MB" >
  4848. </productMenu>
  4849. <productID id="5510"
  4850. />
  4851. <productGroupable type="0"
  4852. />
  4853. </product>
  4854. <product id="10U_GT_AIR"
  4855. name="10U GT-Air"
  4856. series="10"
  4857. latestVersion="2.0.4"
  4858. show = "1" >
  4859. <productMenu id="protocol"
  4860. type="0">
  4861. </productMenu>
  4862. <productMenu id="sip"
  4863. type="1" >
  4864. <productMenuType version="1.0.2"
  4865. type="0"
  4866. />
  4867. </productMenu>
  4868. <productMenu id="bluetoothIntercom"
  4869. type="1" >
  4870. <productMenuType version="1.0.2"
  4871. type="0"
  4872. />
  4873. </productMenu>
  4874. <productMenu id="phone"
  4875. type="2" >
  4876. </productMenu>
  4877. <productMenu id="fmradio"
  4878. type="3" >
  4879. </productMenu>
  4880. <productMenu id="deviceSetting"
  4881. type="1"
  4882. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4883. <productMenuURL version="1.3.2"
  4884. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4885. />
  4886. <productMenuURL version="1.0.2"
  4887. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4888. />
  4889. </productMenu>
  4890. <productMenu id="quickGuide"
  4891. type="1"
  4892. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4893. size="685KB" >
  4894. </productMenu>
  4895. <productMenu id="userGuide"
  4896. type="1"
  4897. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4898. size="684KB" >
  4899. </productMenu>
  4900. <productMenu id="connectGuide"
  4901. type="1"
  4902. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  4903. size="1.12MB" >
  4904. </productMenu>
  4905. <productID id="5610"
  4906. />
  4907. <productGroupable type="0"
  4908. />
  4909. </product>
  4910. <product id="10U_NEOTEC"
  4911. name="10U Neotec"
  4912. series="10"
  4913. latestVersion="2.0.4"
  4914. show = "1" >
  4915. <productMenu id="protocol"
  4916. type="0">
  4917. </productMenu>
  4918. <productMenu id="sip"
  4919. type="1" >
  4920. <productMenuType version="1.0.2"
  4921. type="0"
  4922. />
  4923. </productMenu>
  4924. <productMenu id="bluetoothIntercom"
  4925. type="1" >
  4926. <productMenuType version="1.0.2"
  4927. type="0"
  4928. />
  4929. </productMenu>
  4930. <productMenu id="phone"
  4931. type="2" >
  4932. </productMenu>
  4933. <productMenu id="fmradio"
  4934. type="3" >
  4935. </productMenu>
  4936. <productMenu id="deviceSetting"
  4937. type="1"
  4938. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4939. <productMenuURL version="1.3.2"
  4940. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4941. />
  4942. <productMenuURL version="1.0.2"
  4943. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4944. />
  4945. </productMenu>
  4946. <productMenu id="quickGuide"
  4947. type="1"
  4948. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4949. size="689KB" >
  4950. </productMenu>
  4951. <productMenu id="userGuide"
  4952. type="1"
  4953. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4954. size="684KB" >
  4955. </productMenu>
  4956. <productMenu id="connectGuide"
  4957. type="1"
  4958. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  4959. size="1.12MB" >
  4960. </productMenu>
  4961. <productID id="5611"
  4962. />
  4963. <productGroupable type="0"
  4964. />
  4965. </product>
  4966. <product id="10U_J_CRUISE"
  4967. name="10U J-Cruise"
  4968. series="10"
  4969. latestVersion="2.0.4"
  4970. show = "1" >
  4971. <productMenu id="protocol"
  4972. type="0">
  4973. </productMenu>
  4974. <productMenu id="sip"
  4975. type="1" >
  4976. <productMenuType version="1.0.2"
  4977. type="0"
  4978. />
  4979. </productMenu>
  4980. <productMenu id="bluetoothIntercom"
  4981. type="1" >
  4982. <productMenuType version="1.0.2"
  4983. type="0"
  4984. />
  4985. </productMenu>
  4986. <productMenu id="phone"
  4987. type="2" >
  4988. </productMenu>
  4989. <productMenu id="fmradio"
  4990. type="3" >
  4991. </productMenu>
  4992. <productMenu id="deviceSetting"
  4993. type="1"
  4994. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4995. <productMenuURL version="1.3.2"
  4996. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4997. />
  4998. <productMenuURL version="1.0.2"
  4999. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5000. />
  5001. </productMenu>
  5002. <productMenu id="quickGuide"
  5003. type="1"
  5004. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  5005. size="686KB" >
  5006. </productMenu>
  5007. <productMenu id="userGuide"
  5008. type="1"
  5009. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5010. size="684KB" >
  5011. </productMenu>
  5012. <productMenu id="connectGuide"
  5013. type="1"
  5014. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5015. size="1.12MB" >
  5016. </productMenu>
  5017. <productID id="5612"
  5018. />
  5019. <productGroupable type="0"
  5020. />
  5021. </product>
  5022. <product id="10U_C3"
  5023. name="10U C3/C3Pro"
  5024. series="10"
  5025. latestVersion="2.0.4"
  5026. show = "1" >
  5027. <productMenu id="protocol"
  5028. type="0">
  5029. </productMenu>
  5030. <productMenu id="sip"
  5031. type="1" >
  5032. <productMenuType version="1.0.2"
  5033. type="0"
  5034. />
  5035. </productMenu>
  5036. <productMenu id="bluetoothIntercom"
  5037. type="1" >
  5038. <productMenuType version="1.0.2"
  5039. type="0"
  5040. />
  5041. </productMenu>
  5042. <productMenu id="phone"
  5043. type="2" >
  5044. </productMenu>
  5045. <productMenu id="fmradio"
  5046. type="3" >
  5047. </productMenu>
  5048. <productMenu id="deviceSetting"
  5049. type="1"
  5050. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5051. <productMenuURL version="1.3.2"
  5052. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5053. />
  5054. <productMenuURL version="1.0.2"
  5055. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5056. />
  5057. </productMenu>
  5058. <productMenu id="quickGuide"
  5059. type="1"
  5060. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  5061. size="199KB" >
  5062. </productMenu>
  5063. <productMenu id="userGuide"
  5064. type="1"
  5065. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5066. size="684KB" >
  5067. </productMenu>
  5068. <productMenu id="connectGuide"
  5069. type="1"
  5070. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5071. size="1.12MB" >
  5072. </productMenu>
  5073. <productID id="5620"
  5074. />
  5075. <productGroupable type="0"
  5076. />
  5077. </product>
  5078. <product id="10U_ARAI"
  5079. name="10U Arai"
  5080. series="10"
  5081. latestVersion="2.0.4"
  5082. show = "1" >
  5083. <productMenu id="protocol"
  5084. type="0">
  5085. </productMenu>
  5086. <productMenu id="sip"
  5087. type="1" >
  5088. <productMenuType version="1.0.2"
  5089. type="0"
  5090. />
  5091. </productMenu>
  5092. <productMenu id="bluetoothIntercom"
  5093. type="1" >
  5094. <productMenuType version="1.0.2"
  5095. type="0"
  5096. />
  5097. </productMenu>
  5098. <productMenu id="phone"
  5099. type="2" >
  5100. </productMenu>
  5101. <productMenu id="fmradio"
  5102. type="3" >
  5103. </productMenu>
  5104. <productMenu id="deviceSetting"
  5105. type="1"
  5106. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  5107. <productMenuURL version="1.3.2"
  5108. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  5109. />
  5110. <productMenuURL version="1.0.2"
  5111. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  5112. />
  5113. </productMenu>
  5114. <productMenu id="quickGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  5117. size="689KB" >
  5118. </productMenu>
  5119. <productMenu id="userGuide"
  5120. type="1"
  5121. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  5122. size="684KB" >
  5123. </productMenu>
  5124. <productMenu id="connectGuide"
  5125. type="1"
  5126. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  5127. size="1.12MB" >
  5128. </productMenu>
  5129. <productID id="5621"
  5130. />
  5131. <productGroupable type="0"
  5132. />
  5133. </product>
  5134. <product id="10Upad"
  5135. name="10Upad"
  5136. series="10"
  5137. latestVersion="2.0.3"
  5138. show = "1" >
  5139. <productMenu id="protocol"
  5140. type="0">
  5141. </productMenu>
  5142. <productMenu id="sip"
  5143. type="1" >
  5144. </productMenu>
  5145. <productMenu id="bluetoothIntercom"
  5146. type="1" >
  5147. </productMenu>
  5148. <productMenu id="phone"
  5149. type="2" >
  5150. </productMenu>
  5151. <productMenu id="fmradio"
  5152. type="3" >
  5153. </productMenu>
  5154. <productMenu id="deviceSetting"
  5155. type="1"
  5156. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  5157. <productMenuURL version="1.0.3"
  5158. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  5159. />
  5160. </productMenu>
  5161. <productMenu id="quickGuide"
  5162. type="1"
  5163. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  5164. size="615KB" >
  5165. </productMenu>
  5166. <productMenu id="userGuide"
  5167. type="1"
  5168. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  5169. size="0.99MB" >
  5170. </productMenu>
  5171. <productID id="6210"
  5172. />
  5173. <productGroupable type="0"
  5174. />
  5175. </product>
  5176. <product id="5S"
  5177. name="5S"
  5178. series="5"
  5179. latestVersion="2.2.1"
  5180. show = "1" >
  5181. <productMenu id="protocol"
  5182. type="3" >
  5183. </productMenu>
  5184. <productMenu id="sip"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="bluetoothIntercom"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="phone"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="fmradio"
  5194. type="0" >
  5195. </productMenu>
  5196. <productMenu id="deviceSetting"
  5197. type="1"
  5198. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5199. </productMenu>
  5200. <productMenu id="quickGuide"
  5201. type="0"
  5202. url=""
  5203. size="934KB" >
  5204. </productMenu>
  5205. <productMenu id="userGuide"
  5206. type="1"
  5207. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  5208. size="1.14MB" >
  5209. </productMenu>
  5210. <productID id="5590"
  5211. />
  5212. <productGroupable type="0"
  5213. />
  5214. </product>
  5215. <product id="5S"
  5216. name="5S"
  5217. series="5"
  5218. latestVersion="1.2"
  5219. show = "-1" >
  5220. <productMenu id="protocol"
  5221. type="0">
  5222. </productMenu>
  5223. <productMenu id="sip"
  5224. type="1" >
  5225. </productMenu>
  5226. <productMenu id="bluetoothIntercom"
  5227. type="1" >
  5228. </productMenu>
  5229. <productMenu id="phone"
  5230. type="2" >
  5231. </productMenu>
  5232. <productMenu id="fmradio"
  5233. type="0" >
  5234. </productMenu>
  5235. <productMenu id="deviceSetting"
  5236. type="1"
  5237. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  5238. </productMenu>
  5239. <productMenu id="quickGuide"
  5240. type="0"
  5241. url=""
  5242. size="970KB" >
  5243. </productMenu>
  5244. <productMenu id="userGuide"
  5245. type="1"
  5246. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  5247. size="1.26MB" >
  5248. </productMenu>
  5249. <productID id="5534"
  5250. />
  5251. <productGroupable type="0"
  5252. />
  5253. </product>
  5254. <product id="5S"
  5255. name="5S"
  5256. series="5"
  5257. latestVersion="3.0.1"
  5258. show = "-1" >
  5259. <productMenu id="protocol"
  5260. type="0">
  5261. </productMenu>
  5262. <productMenu id="sip"
  5263. type="1" >
  5264. </productMenu>
  5265. <productMenu id="bluetoothIntercom"
  5266. type="1" >
  5267. </productMenu>
  5268. <productMenu id="phone"
  5269. type="2" >
  5270. </productMenu>
  5271. <productMenu id="fmradio"
  5272. type="0" >
  5273. </productMenu>
  5274. <productMenu id="deviceSetting"
  5275. type="1"
  5276. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  5277. </productMenu>
  5278. <productMenu id="quickGuide"
  5279. type="0"
  5280. url=""
  5281. size="970KB" >
  5282. </productMenu>
  5283. <productMenu id="userGuide"
  5284. type="1"
  5285. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  5286. size="1.26MB" >
  5287. </productMenu>
  5288. <productID id="5538"
  5289. />
  5290. <productGroupable type="0"
  5291. />
  5292. </product>
  5293. <product id="3SPLUS"
  5294. name="3S PLUS"
  5295. series="3"
  5296. latestVersion="2.2"
  5297. show = "1" >
  5298. <productMenu id="protocol"
  5299. type="3" >
  5300. </productMenu>
  5301. <productMenu id="sip"
  5302. type="1" >
  5303. </productMenu>
  5304. <productMenu id="bluetoothIntercom"
  5305. type="1" >
  5306. </productMenu>
  5307. <productMenu id="deviceSetting"
  5308. type="1"
  5309. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  5310. <productMenuURL version="2.2.1"
  5311. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  5312. />
  5313. </productMenu>
  5314. <productMenu id="quickGuide"
  5315. type="1"
  5316. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5317. size="344KB" >
  5318. </productMenu>
  5319. <productMenu id="userGuide"
  5320. type="1"
  5321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  5322. size="1.14MB" >
  5323. </productMenu>
  5324. <productMenu id="connectGuide"
  5325. type="1"
  5326. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  5327. size="1.12MB" >
  5328. </productMenu>
  5329. <productID id="4023"
  5330. />
  5331. <productGroupable type="0"
  5332. />
  5333. </product>
  5334. <product id="3SPLUS"
  5335. name="3S PLUS"
  5336. series="3"
  5337. latestVersion="1.1"
  5338. show = "-1" >
  5339. <productMenu id="protocol"
  5340. type="0">
  5341. </productMenu>
  5342. <productMenu id="sip"
  5343. type="1" >
  5344. </productMenu>
  5345. <productMenu id="bluetoothIntercom"
  5346. type="1" >
  5347. </productMenu>
  5348. <productMenu id="deviceSetting"
  5349. type="1"
  5350. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5351. </productMenu>
  5352. <productMenu id="quickGuide"
  5353. type="1"
  5354. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5355. size="842KB" >
  5356. </productMenu>
  5357. <productMenu id="userGuide"
  5358. type="1"
  5359. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  5360. size="1.02MB" >
  5361. </productMenu>
  5362. <productID id="6320"
  5363. />
  5364. <productGroupable type="0"
  5365. />
  5366. </product>
  5367. <product id="iCon"
  5368. name="iCon"
  5369. series="50"
  5370. latestVersion="1.0.1"
  5371. show = "0" >
  5372. <productMenu id="protocol"
  5373. type="2" >
  5374. </productMenu>
  5375. <productMenu id="alexa"
  5376. type="0" >
  5377. </productMenu>
  5378. <productMenu id="wa"
  5379. type="0" >
  5380. </productMenu>
  5381. <productMenu id="sip"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="led"
  5385. type="3" >
  5386. </productMenu>
  5387. <productMenu id="meshIntercom"
  5388. type="20" >
  5389. </productMenu>
  5390. <productMenu id="meshIntercom+"
  5391. type="3"
  5392. url="0" >
  5393. <productMenuType version="1.0.9"
  5394. type="2"
  5395. />
  5396. </productMenu>
  5397. <productMenu id="bluetoothIntercom"
  5398. type="1" >
  5399. </productMenu>
  5400. <productMenu id="phone"
  5401. type="1" >
  5402. </productMenu>
  5403. <productMenu id="music"
  5404. type="1" >
  5405. </productMenu>
  5406. <productMenu id="fmradio"
  5407. type="1" >
  5408. </productMenu>
  5409. <productMenu id="deviceSetting"
  5410. type="1"
  5411. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  5412. <productMenuURL version="1.0.9"
  5413. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5414. />
  5415. </productMenu>
  5416. <productMenu id="quickGuide"
  5417. type="1"
  5418. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  5419. size="344KB" >
  5420. </productMenu>
  5421. <productMenu id="userGuide"
  5422. type="1"
  5423. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  5424. size="3.41MB" >
  5425. </productMenu>
  5426. <productMenu id="volume"
  5427. type="11" >
  5428. </productMenu>
  5429. <productMenu id="battery"
  5430. type="1" >
  5431. </productMenu>
  5432. <productID id="3900"
  5433. />
  5434. <productGroupable type="0"
  5435. />
  5436. </product>
  5437. <product id="HD50S"
  5438. name="H-D Audio 50S"
  5439. series="50"
  5440. latestVersion="1.0.1"
  5441. show = "-1" >
  5442. <productMenu id="protocol"
  5443. type="2" >
  5444. </productMenu>
  5445. <productMenu id="alexa"
  5446. type="0" >
  5447. </productMenu>
  5448. <productMenu id="ota"
  5449. type="0"
  5450. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5451. size="1150234" >
  5452. </productMenu>
  5453. <productMenu id="wa"
  5454. type="1" >
  5455. </productMenu>
  5456. <productMenu id="sip"
  5457. type="1" >
  5458. </productMenu>
  5459. <productMenu id="meshIntercom"
  5460. type="20" >
  5461. </productMenu>
  5462. <productMenu id="bluetoothIntercom"
  5463. type="1" >
  5464. </productMenu>
  5465. <productMenu id="phone"
  5466. type="1" >
  5467. </productMenu>
  5468. <productMenu id="music"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="fmradio"
  5472. type="1" >
  5473. </productMenu>
  5474. <productMenu id="deviceSetting"
  5475. type="1"
  5476. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5477. </productMenu>
  5478. <productMenu id="quickGuide"
  5479. type="1"
  5480. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5481. size="934KB" >
  5482. </productMenu>
  5483. <productMenu id="userGuide"
  5484. type="1"
  5485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  5486. size="1.14MB" >
  5487. </productMenu>
  5488. <productMenu id="volume"
  5489. type="11" >
  5490. </productMenu>
  5491. <productMenu id="battery"
  5492. type="1" >
  5493. </productMenu>
  5494. <productID id="3156"
  5495. />
  5496. <productGroupable type="0"
  5497. />
  5498. </product>
  5499. <product id="HD50S"
  5500. name="H-D Audio 50S"
  5501. series="50"
  5502. latestVersion="2.0.2"
  5503. show = "0" >
  5504. <productMenu id="protocol"
  5505. type="2" >
  5506. </productMenu>
  5507. <productMenu id="alexa"
  5508. type="0" >
  5509. </productMenu>
  5510. <productMenu id="ota"
  5511. type="0"
  5512. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5513. size="1150234" >
  5514. </productMenu>
  5515. <productMenu id="wa"
  5516. type="1" >
  5517. </productMenu>
  5518. <productMenu id="sip"
  5519. type="1" >
  5520. </productMenu>
  5521. <productMenu id="meshIntercom"
  5522. type="20" >
  5523. </productMenu>
  5524. <productMenu id="bluetoothIntercom"
  5525. type="1" >
  5526. </productMenu>
  5527. <productMenu id="phone"
  5528. type="1" >
  5529. </productMenu>
  5530. <productMenu id="music"
  5531. type="1" >
  5532. </productMenu>
  5533. <productMenu id="fmradio"
  5534. type="1" >
  5535. </productMenu>
  5536. <productMenu id="deviceSetting"
  5537. type="1"
  5538. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5539. </productMenu>
  5540. <productMenu id="quickGuide"
  5541. type="1"
  5542. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5543. size="934KB" >
  5544. </productMenu>
  5545. <productMenu id="userGuide"
  5546. type="1"
  5547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  5548. size="1.14MB" >
  5549. </productMenu>
  5550. <productMenu id="volume"
  5551. type="11" >
  5552. </productMenu>
  5553. <productMenu id="battery"
  5554. type="1" >
  5555. </productMenu>
  5556. <productID id="3213"
  5557. />
  5558. <productGroupable type="0"
  5559. />
  5560. </product>
  5561. <product id="HD50C"
  5562. name="H-D Audio 50C"
  5563. series="50"
  5564. latestVersion="1.0.1"
  5565. show = "0" >
  5566. <productMenu id="protocol"
  5567. type="2" >
  5568. </productMenu>
  5569. <productMenu id="ota"
  5570. type="0" >
  5571. </productMenu>
  5572. <productMenu id="wa"
  5573. type="1" >
  5574. </productMenu>
  5575. <productMenu id="sip"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="meshIntercom"
  5579. type="20" >
  5580. </productMenu>
  5581. <productMenu id="bluetoothIntercom"
  5582. type="1" >
  5583. </productMenu>
  5584. <productMenu id="phone"
  5585. type="1" >
  5586. </productMenu>
  5587. <productMenu id="music"
  5588. type="1" >
  5589. </productMenu>
  5590. <productMenu id="fmradio"
  5591. type="1" >
  5592. </productMenu>
  5593. <productMenu id="deviceSetting"
  5594. type="1"
  5595. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  5596. </productMenu>
  5597. <productMenu id="quickGuide"
  5598. type="1"
  5599. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5600. size="344KB" >
  5601. </productMenu>
  5602. <productMenu id="userGuide"
  5603. type="1"
  5604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  5605. size="3.41MB" >
  5606. </productMenu>
  5607. <productMenu id="volume"
  5608. type="11" >
  5609. </productMenu>
  5610. <productMenu id="battery"
  5611. type="1" >
  5612. </productMenu>
  5613. <productID id="3240"
  5614. />
  5615. <productGroupable type="0"
  5616. />
  5617. </product>
  5618. <product id="HD50S"
  5619. name="FURY N04"
  5620. series="Helmet"
  5621. latestVersion="1.0"
  5622. show = "0" >
  5623. <productMenu id="protocol"
  5624. type="2" >
  5625. </productMenu>
  5626. <productMenu id="alexa"
  5627. type="0" >
  5628. </productMenu>
  5629. <productMenu id="ota"
  5630. type="0" >
  5631. </productMenu>
  5632. <productMenu id="wa"
  5633. type="0" >
  5634. </productMenu>
  5635. <productMenu id="meshIntercom"
  5636. type="20" >
  5637. </productMenu>
  5638. <productMenu id="meshIntercom+"
  5639. type="3"
  5640. url="0" >
  5641. <productMenuType version="1.0.9"
  5642. type="2"
  5643. />
  5644. </productMenu>
  5645. <productMenu id="phone"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="music"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="fmradio"
  5652. type="1" >
  5653. </productMenu>
  5654. <productMenu id="deviceSetting"
  5655. type="1"
  5656. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  5657. <productMenuURL version="1.0.9"
  5658. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  5659. />
  5660. </productMenu>
  5661. <productMenu id="quickGuide"
  5662. type="1"
  5663. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  5664. size="1.12MB" >
  5665. </productMenu>
  5666. <productMenu id="userGuide"
  5667. type="1"
  5668. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  5669. size="2.0MB" >
  5670. </productMenu>
  5671. <productMenu id="volume"
  5672. type="13" >
  5673. </productMenu>
  5674. <productMenu id="battery"
  5675. type="1" >
  5676. </productMenu>
  5677. <productID id="5553"
  5678. />
  5679. <productGroupable type="0"
  5680. />
  5681. </product>
  5682. <product id="XCOM3Pro"
  5683. name="X-COM3 Pro"
  5684. series="50"
  5685. latestVersion="1.1"
  5686. show = "0" >
  5687. <productMenu id="protocol"
  5688. type="2" >
  5689. </productMenu>
  5690. <productMenu id="alexa"
  5691. type="0" >
  5692. </productMenu>
  5693. <productMenu id="ota"
  5694. type="0" >
  5695. </productMenu>
  5696. <productMenu id="wa"
  5697. type="0" >
  5698. </productMenu>
  5699. <productMenu id="sip"
  5700. type="1" >
  5701. </productMenu>
  5702. <productMenu id="meshIntercom"
  5703. type="30" >
  5704. </productMenu>
  5705. <productMenu id="meshIntercom+"
  5706. type="3"
  5707. url="2" >
  5708. <productMenuType version="1.1"
  5709. type="2"
  5710. />
  5711. </productMenu>
  5712. <productMenu id="waveIntercom"
  5713. type="1" >
  5714. <productMenuType version="1.1"
  5715. type="0"
  5716. />
  5717. </productMenu>
  5718. <productMenu id="bluetoothIntercom"
  5719. type="1" >
  5720. </productMenu>
  5721. <productMenu id="phone"
  5722. type="1" >
  5723. </productMenu>
  5724. <productMenu id="music"
  5725. type="1" >
  5726. </productMenu>
  5727. <productMenu id="fmradio"
  5728. type="1" >
  5729. </productMenu>
  5730. <productMenu id="deviceSetting"
  5731. type="1"
  5732. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  5733. <productMenuURL version="1.1"
  5734. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  5735. />
  5736. </productMenu>
  5737. <productMenu id="quickGuide"
  5738. type="0"
  5739. url=""
  5740. size="344KB" >
  5741. </productMenu>
  5742. <productMenu id="userGuide"
  5743. type="1"
  5744. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  5745. size="3.41MB" >
  5746. </productMenu>
  5747. <productMenu id="volume"
  5748. type="11" >
  5749. </productMenu>
  5750. <productMenu id="battery"
  5751. type="1" >
  5752. </productMenu>
  5753. <productID id="321A"
  5754. />
  5755. <productGroupable type="0"
  5756. />
  5757. </product>
  5758. <product id="XCOM3"
  5759. name="X-COM3"
  5760. series="20"
  5761. latestVersion="1.0"
  5762. show = "0" >
  5763. <productMenu id="protocol"
  5764. type="2" >
  5765. </productMenu>
  5766. <productMenu id="sip"
  5767. type="1" >
  5768. </productMenu>
  5769. <productMenu id="bluetoothIntercom"
  5770. type="1" >
  5771. </productMenu>
  5772. <productMenu id="phone"
  5773. type="1" >
  5774. </productMenu>
  5775. <productMenu id="music"
  5776. type="1" >
  5777. </productMenu>
  5778. <productMenu id="fmradio"
  5779. type="1" >
  5780. </productMenu>
  5781. <productMenu id="deviceSetting"
  5782. type="1"
  5783. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  5784. </productMenu>
  5785. <productMenu id="quickGuide"
  5786. type="0"
  5787. url=""
  5788. size="934KB" >
  5789. </productMenu>
  5790. <productMenu id="userGuide"
  5791. type="1"
  5792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  5793. size="1.14MB" >
  5794. </productMenu>
  5795. <productMenu id="volume"
  5796. type="15" >
  5797. </productMenu>
  5798. <productID id="3410"
  5799. />
  5800. <productGroupable type="0"
  5801. />
  5802. </product>
  5803. <product id="X-COM2"
  5804. name="X-COM2"
  5805. series="20"
  5806. latestVersion="1.0.5"
  5807. show = "0" >
  5808. <productMenu id="protocol"
  5809. type="0">
  5810. </productMenu>
  5811. <productMenu id="sip"
  5812. type="1" >
  5813. </productMenu>
  5814. <productMenu id="bluetoothIntercom"
  5815. type="1" >
  5816. </productMenu>
  5817. <productMenu id="intercomSetting"
  5818. type="1" >
  5819. </productMenu>
  5820. <productMenu id="phone"
  5821. type="2" >
  5822. </productMenu>
  5823. <productMenu id="fmradio"
  5824. type="3" >
  5825. </productMenu>
  5826. <productMenu id="deviceSetting"
  5827. type="1"
  5828. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5829. </productMenu>
  5830. <productMenu id="quickGuide"
  5831. type="1"
  5832. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  5833. size="796KB" >
  5834. </productMenu>
  5835. <productMenu id="userGuide"
  5836. type="1"
  5837. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  5838. size="1.90MB" >
  5839. </productMenu>
  5840. <productID id="2030"
  5841. />
  5842. <productGroupable type="1"
  5843. />
  5844. </product>
  5845. <product id="AVAABC"
  5846. name="AVA ABC"
  5847. series="SPIDER"
  5848. latestVersion="1.0"
  5849. show = "0" >
  5850. <productMenu id="protocol"
  5851. type="2" >
  5852. </productMenu>
  5853. <productMenu id="alexa"
  5854. type="0" >
  5855. </productMenu>
  5856. <productMenu id="ota"
  5857. type="0" >
  5858. </productMenu>
  5859. <productMenu id="wa"
  5860. type="0" >
  5861. </productMenu>
  5862. <productMenu id="meshIntercom"
  5863. type="20" >
  5864. </productMenu>
  5865. <productMenu id="phone"
  5866. type="1" >
  5867. </productMenu>
  5868. <productMenu id="music"
  5869. type="1" >
  5870. </productMenu>
  5871. <productMenu id="musicSharing"
  5872. type="0" >
  5873. </productMenu>
  5874. <productMenu id="deviceSetting"
  5875. type="1"
  5876. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  5877. </productMenu>
  5878. <productMenu id="quickGuide"
  5879. type="1"
  5880. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  5881. size="1.12MB" >
  5882. </productMenu>
  5883. <productMenu id="userGuide"
  5884. type="1"
  5885. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  5886. size="2.0MB" >
  5887. </productMenu>
  5888. <productMenu id="volume"
  5889. type="12" >
  5890. </productMenu>
  5891. <productMenu id="battery"
  5892. type="1" >
  5893. </productMenu>
  5894. <productID id="6808"
  5895. />
  5896. <productGroupable type="0"
  5897. />
  5898. </product>
  5899. <product id="Triumph_50S"
  5900. name="Triumph 50S"
  5901. series="50"
  5902. latestVersion="1.5"
  5903. show = "0" >
  5904. <productMenu id="protocol"
  5905. type="2" >
  5906. </productMenu>
  5907. <productMenu id="alexa"
  5908. type="0" >
  5909. </productMenu>
  5910. <productMenu id="ota"
  5911. type="0"
  5912. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5913. size="1150234" >
  5914. </productMenu>
  5915. <productMenu id="wa"
  5916. type="1" >
  5917. </productMenu>
  5918. <productMenu id="sip"
  5919. type="1" >
  5920. </productMenu>
  5921. <productMenu id="meshIntercom"
  5922. type="20" >
  5923. </productMenu>
  5924. <productMenu id="bluetoothIntercom"
  5925. type="1" >
  5926. </productMenu>
  5927. <productMenu id="meshIntercom+"
  5928. type="3"
  5929. url="2" >
  5930. <productMenuType version="1.2.9"
  5931. type="2"
  5932. />
  5933. <productMenuURL version="1.2.9"
  5934. url="0"
  5935. />
  5936. </productMenu>
  5937. <productMenu id="waveIntercom"
  5938. type="1" >
  5939. <productMenuType version="1.2.9"
  5940. type="0"
  5941. />
  5942. </productMenu>
  5943. <productMenu id="phone"
  5944. type="1" >
  5945. </productMenu>
  5946. <productMenu id="music"
  5947. type="1" >
  5948. </productMenu>
  5949. <productMenu id="fmradio"
  5950. type="1" >
  5951. </productMenu>
  5952. <productMenu id="deviceSetting"
  5953. type="1"
  5954. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5955. <productMenuURL version="1.2.9"
  5956. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5957. />
  5958. <productMenuURL version="1.0"
  5959. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5960. />
  5961. </productMenu>
  5962. <productMenu id="quickGuide"
  5963. type="1"
  5964. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  5965. size="934KB" >
  5966. </productMenu>
  5967. <productMenu id="userGuide"
  5968. type="1"
  5969. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  5970. size="1.14MB" >
  5971. </productMenu>
  5972. <productMenu id="volume"
  5973. type="11" >
  5974. </productMenu>
  5975. <productMenu id="battery"
  5976. type="1" >
  5977. </productMenu>
  5978. <productID id="3264"
  5979. />
  5980. <productGroupable type="0"
  5981. />
  5982. </product>
  5983. <product id="RE50S"
  5984. name="RE 50S"
  5985. series="50"
  5986. latestVersion="2.7"
  5987. show = "0" >
  5988. <productMenu id="protocol"
  5989. type="2" >
  5990. </productMenu>
  5991. <productMenu id="alexa"
  5992. type="0" >
  5993. </productMenu>
  5994. <productMenu id="ota"
  5995. type="0"
  5996. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5997. size="1150234" >
  5998. </productMenu>
  5999. <productMenu id="wa"
  6000. type="1" >
  6001. </productMenu>
  6002. <productMenu id="sip"
  6003. type="1" >
  6004. </productMenu>
  6005. <productMenu id="meshIntercom"
  6006. type="30" >
  6007. </productMenu>
  6008. <productMenu id="meshIntercom+"
  6009. type="3"
  6010. url="2" >
  6011. <productMenuType version="2.5"
  6012. type="2"
  6013. />
  6014. </productMenu>
  6015. <productMenu id="waveIntercom"
  6016. type="1" >
  6017. <productMenuType version="2.5"
  6018. type="0"
  6019. />
  6020. </productMenu>
  6021. <productMenu id="bluetoothIntercom"
  6022. type="1" >
  6023. </productMenu>
  6024. <productMenu id="phone"
  6025. type="1" >
  6026. </productMenu>
  6027. <productMenu id="music"
  6028. type="1" >
  6029. </productMenu>
  6030. <productMenu id="fmradio"
  6031. type="1" >
  6032. </productMenu>
  6033. <productMenu id="deviceSetting"
  6034. type="1"
  6035. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  6036. <productMenuURL version="2.5"
  6037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  6038. />
  6039. </productMenu>
  6040. <productMenu id="quickGuide"
  6041. type="1"
  6042. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  6043. size="934KB" >
  6044. </productMenu>
  6045. <productMenu id="userGuide"
  6046. type="1"
  6047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  6048. size="1.14MB" >
  6049. </productMenu>
  6050. <productMenu id="videoGuide"
  6051. type="0"
  6052. url=""
  6053. size="3.41MB" >
  6054. </productMenu>
  6055. <productMenu id="volume"
  6056. type="11" >
  6057. </productMenu>
  6058. <productMenu id="battery"
  6059. type="1" >
  6060. </productMenu>
  6061. <productID id="321C"
  6062. />
  6063. <productGroupable type="0"
  6064. />
  6065. </product>
  6066. <product id="BMW_HELMET_II_U1"
  6067. name="BMW HELMET II U1"
  6068. series="50"
  6069. latestVersion="1.0"
  6070. show = "0" >
  6071. <productMenu id="protocol"
  6072. type="2" >
  6073. </productMenu>
  6074. <productMenu id="alexa"
  6075. type="0" >
  6076. </productMenu>
  6077. <productMenu id="sip"
  6078. type="1" >
  6079. </productMenu>
  6080. <productMenu id="meshIntercom"
  6081. type="20" >
  6082. </productMenu>
  6083. <productMenu id="bluetoothIntercom"
  6084. type="1" >
  6085. </productMenu>
  6086. <productMenu id="bluetoothIntercom2"
  6087. type="1" >
  6088. </productMenu>
  6089. <productMenu id="phone"
  6090. type="1" >
  6091. </productMenu>
  6092. <productMenu id="music"
  6093. type="1" >
  6094. </productMenu>
  6095. <productMenu id="fmradio"
  6096. type="1" >
  6097. </productMenu>
  6098. <productMenu id="deviceSetting"
  6099. type="1"
  6100. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  6101. </productMenu>
  6102. <productMenu id="quickGuide"
  6103. type="1"
  6104. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  6105. size="934KB" >
  6106. </productMenu>
  6107. <productMenu id="userGuide"
  6108. type="1"
  6109. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  6110. size="1.14MB" >
  6111. </productMenu>
  6112. <productMenu id="volume"
  6113. type="11" >
  6114. </productMenu>
  6115. <productMenu id="battery"
  6116. type="1" >
  6117. </productMenu>
  6118. <productID id="3260"
  6119. />
  6120. <productGroupable type="0"
  6121. />
  6122. </product>
  6123. <product id="LSE_01"
  6124. name="LSE-01"
  6125. series="SF"
  6126. latestVersion="1.2.3"
  6127. show = "0" >
  6128. <productMenu id="protocol"
  6129. type="1"
  6130. url="3">
  6131. </productMenu>
  6132. <productMenu id="sip"
  6133. type="1" >
  6134. </productMenu>
  6135. <productMenu id="bluetoothIntercom"
  6136. type="1" >
  6137. </productMenu>
  6138. <productMenu id="phone"
  6139. type="1" >
  6140. </productMenu>
  6141. <productMenu id="music"
  6142. type="1" >
  6143. </productMenu>
  6144. <productMenu id="fmradio"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="deviceSetting"
  6148. type="1"
  6149. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6150. <productMenuURL version="1.1"
  6151. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  6152. />
  6153. <productMenuURL version="1.0"
  6154. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  6155. />
  6156. </productMenu>
  6157. <productMenu id="quickGuide"
  6158. type="1"
  6159. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  6160. size="607KB" >
  6161. </productMenu>
  6162. <productMenu id="userGuide"
  6163. type="1"
  6164. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  6165. size="1.91MB" >
  6166. </productMenu>
  6167. <productMenu id="volume"
  6168. type="4" >
  6169. </productMenu>
  6170. <productID id="5416"
  6171. />
  6172. <productGroupable type="0"
  6173. />
  6174. </product>
  6175. <product id="AGV_ARK"
  6176. name="AGV ARK"
  6177. series="SF"
  6178. latestVersion="1.0.3"
  6179. show = "0" >
  6180. <productMenu id="protocol"
  6181. type="1"
  6182. url="3">
  6183. </productMenu>
  6184. <productMenu id="sip"
  6185. type="1" >
  6186. </productMenu>
  6187. <productMenu id="bluetoothIntercom"
  6188. type="1" >
  6189. </productMenu>
  6190. <productMenu id="phone"
  6191. type="1" >
  6192. </productMenu>
  6193. <productMenu id="music"
  6194. type="1" >
  6195. </productMenu>
  6196. <productMenu id="fmradio"
  6197. type="1" >
  6198. </productMenu>
  6199. <productMenu id="deviceSetting"
  6200. type="1"
  6201. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  6202. </productMenu>
  6203. <productMenu id="quickGuide"
  6204. type="1"
  6205. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  6206. size="607KB" >
  6207. </productMenu>
  6208. <productMenu id="userGuide"
  6209. type="1"
  6210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  6211. size="1.91MB" >
  6212. </productMenu>
  6213. <productMenu id="volume"
  6214. type="4" >
  6215. </productMenu>
  6216. <productID id="5420"
  6217. />
  6218. <productGroupable type="0"
  6219. />
  6220. </product>
  6221. <product id="KLIM_KRIOS"
  6222. name="KLIM Krios"
  6223. series="10"
  6224. latestVersion="1.1.2"
  6225. show = "0" >
  6226. <productMenu id="protocol"
  6227. type="0">
  6228. </productMenu>
  6229. <productMenu id="sip"
  6230. type="1" >
  6231. </productMenu>
  6232. <productMenu id="bluetoothIntercom"
  6233. type="1" >
  6234. </productMenu>
  6235. <productMenu id="phone"
  6236. type="2" >
  6237. </productMenu>
  6238. <productMenu id="fmradio"
  6239. type="3" >
  6240. </productMenu>
  6241. <productMenu id="deviceSetting"
  6242. type="1"
  6243. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  6244. <productMenuURL version="1.0"
  6245. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  6246. />
  6247. </productMenu>
  6248. <productMenu id="quickGuide"
  6249. type="1"
  6250. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  6251. size="649KB" >
  6252. </productMenu>
  6253. <productMenu id="userGuide"
  6254. type="1"
  6255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  6256. size="1.43MB" >
  6257. </productMenu>
  6258. <productID id="5910"
  6259. />
  6260. <productGroupable type="0"
  6261. />
  6262. </product>
  6263. <product id="POLARIS_SLINGSHOT"
  6264. name="Polaris Slingshot"
  6265. series="10"
  6266. latestVersion="1.1.2"
  6267. show = "0" >
  6268. <productMenu id="protocol"
  6269. type="0">
  6270. </productMenu>
  6271. <productMenu id="sip"
  6272. type="1" >
  6273. </productMenu>
  6274. <productMenu id="bluetoothIntercom"
  6275. type="1" >
  6276. </productMenu>
  6277. <productMenu id="phone"
  6278. type="2" >
  6279. </productMenu>
  6280. <productMenu id="fmradio"
  6281. type="3" >
  6282. </productMenu>
  6283. <productMenu id="deviceSetting"
  6284. type="1"
  6285. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  6286. <productMenuURL version="1.0"
  6287. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  6288. />
  6289. </productMenu>
  6290. <productMenu id="quickGuide"
  6291. type="1"
  6292. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  6293. size="689KB" >
  6294. </productMenu>
  6295. <productMenu id="userGuide"
  6296. type="1"
  6297. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  6298. size="1.43MB" >
  6299. </productMenu>
  6300. <productID id="5920"
  6301. />
  6302. <productGroupable type="0"
  6303. />
  6304. </product>
  6305. <product id="DWO6"
  6306. name="SEDICI DWO6-PRO"
  6307. series="10"
  6308. latestVersion="1.0.2"
  6309. show = "0" >
  6310. <productMenu id="protocol"
  6311. type="0">
  6312. </productMenu>
  6313. <productMenu id="sip"
  6314. type="1" >
  6315. </productMenu>
  6316. <productMenu id="bluetoothIntercom"
  6317. type="1" >
  6318. </productMenu>
  6319. <productMenu id="phone"
  6320. type="2" >
  6321. </productMenu>
  6322. <productMenu id="fmradio"
  6323. type="3" >
  6324. </productMenu>
  6325. <productMenu id="deviceSetting"
  6326. type="1"
  6327. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6328. </productMenu>
  6329. <productMenu id="quickGuide"
  6330. type="1"
  6331. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6332. size="529KB" >
  6333. </productMenu>
  6334. <productMenu id="userGuide"
  6335. type="1"
  6336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  6337. size="4.09MB" >
  6338. </productMenu>
  6339. <productID id="6112"
  6340. />
  6341. <productGroupable type="0"
  6342. />
  6343. </product>
  6344. <product id="DWO6A"
  6345. name="SEDICI DWO-6"
  6346. series="10"
  6347. latestVersion="1.0.2"
  6348. show = "0" >
  6349. <productMenu id="protocol"
  6350. type="0">
  6351. </productMenu>
  6352. <productMenu id="sip"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="bluetoothIntercom"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="phone"
  6359. type="2" >
  6360. </productMenu>
  6361. <productMenu id="fmradio"
  6362. type="3" >
  6363. </productMenu>
  6364. <productMenu id="deviceSetting"
  6365. type="1"
  6366. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  6367. </productMenu>
  6368. <productMenu id="quickGuide"
  6369. type="1"
  6370. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  6371. size="522KB" >
  6372. </productMenu>
  6373. <productMenu id="userGuide"
  6374. type="1"
  6375. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  6376. size="2.71MB" >
  6377. </productMenu>
  6378. <productID id="6114"
  6379. />
  6380. <productGroupable type="0"
  6381. />
  6382. </product>
  6383. <product id="3SPLUS"
  6384. name="ZILL"
  6385. series="3"
  6386. latestVersion="1.0.4"
  6387. show = "0" >
  6388. <productMenu id="protocol"
  6389. type="0">
  6390. </productMenu>
  6391. <productMenu id="sip"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="bluetoothIntercom"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="deviceSetting"
  6398. type="1"
  6399. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  6400. </productMenu>
  6401. <productMenu id="quickGuide"
  6402. type="1"
  6403. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  6404. size="842KB" >
  6405. </productMenu>
  6406. <productMenu id="userGuide"
  6407. type="1"
  6408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  6409. size="1.02MB" >
  6410. </productMenu>
  6411. <productID id="6335"
  6412. />
  6413. <productGroupable type="0"
  6414. />
  6415. </product>
  6416. <product id="HD50S"
  6417. name="Boom! Audio 30K"
  6418. series="30"
  6419. latestVersion="3.4"
  6420. show = "0" >
  6421. <productMenu id="protocol"
  6422. type="1"
  6423. url="0">
  6424. </productMenu>
  6425. <productMenu id="wa"
  6426. type="0" >
  6427. </productMenu>
  6428. <productMenu id="sip"
  6429. type="1" >
  6430. </productMenu>
  6431. <productMenu id="meshIntercom"
  6432. type="20" >
  6433. <productMenuType version="2.9.9"
  6434. type="10"
  6435. />
  6436. </productMenu>
  6437. <productMenu id="bluetoothIntercom"
  6438. type="1" >
  6439. </productMenu>
  6440. <productMenu id="phone"
  6441. type="1" >
  6442. </productMenu>
  6443. <productMenu id="music"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="fmradio"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="deviceSetting"
  6450. type="1"
  6451. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  6452. <productMenuURL version="3.2"
  6453. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  6454. />
  6455. <productMenuURL version="3.0"
  6456. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  6457. />
  6458. <productMenuURL version="2.2"
  6459. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6460. />
  6461. </productMenu>
  6462. <productMenu id="quickGuide"
  6463. type="1"
  6464. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6465. size="1.06MB" >
  6466. </productMenu>
  6467. <productMenu id="userGuide"
  6468. type="1"
  6469. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  6470. size="3.15MB" >
  6471. </productMenu>
  6472. <productMenu id="volume"
  6473. type="1" >
  6474. </productMenu>
  6475. <productID id="3112"
  6476. />
  6477. <productGroupable type="0"
  6478. />
  6479. </product>
  6480. <product id="HD50S"
  6481. name="Boom! Audio N02"
  6482. series="30"
  6483. latestVersion="3.1"
  6484. show = "0" >
  6485. <productMenu id="protocol"
  6486. type="1"
  6487. url="0">
  6488. </productMenu>
  6489. <productMenu id="wa"
  6490. type="2" >
  6491. </productMenu>
  6492. <productMenu id="sip"
  6493. type="1" >
  6494. </productMenu>
  6495. <productMenu id="meshIntercom"
  6496. type="20" >
  6497. <productMenuType version="2.9.9"
  6498. type="10"
  6499. />
  6500. </productMenu>
  6501. <productMenu id="bluetoothIntercom"
  6502. type="1" >
  6503. </productMenu>
  6504. <productMenu id="phone"
  6505. type="1" >
  6506. </productMenu>
  6507. <productMenu id="music"
  6508. type="1" >
  6509. </productMenu>
  6510. <productMenu id="fmradio"
  6511. type="1" >
  6512. </productMenu>
  6513. <productMenu id="deviceSetting"
  6514. type="1"
  6515. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  6516. <productMenuURL version="2.2"
  6517. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6518. />
  6519. </productMenu>
  6520. <productMenu id="quickGuide"
  6521. type="1"
  6522. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  6523. size="1.06MB" >
  6524. </productMenu>
  6525. <productMenu id="userGuide"
  6526. type="1"
  6527. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  6528. size="3.15MB" >
  6529. </productMenu>
  6530. <productMenu id="volume"
  6531. type="2" >
  6532. </productMenu>
  6533. <productID id="3114"
  6534. />
  6535. <productGroupable type="0"
  6536. />
  6537. </product>
  6538. <product id="HD50S"
  6539. name="Boom Audio 20S"
  6540. series="50"
  6541. latestVersion="2.5.2"
  6542. show = "0" >
  6543. <productMenu id="protocol"
  6544. type="0">
  6545. </productMenu>
  6546. <productMenu id="sip"
  6547. type="1" >
  6548. <productMenuType version="1.0"
  6549. type="0"
  6550. />
  6551. </productMenu>
  6552. <productMenu id="bluetoothIntercom"
  6553. type="1" >
  6554. <productMenuType version="1.0"
  6555. type="0"
  6556. />
  6557. </productMenu>
  6558. <productMenu id="intercomSetting"
  6559. type="1" >
  6560. </productMenu>
  6561. <productMenu id="phone"
  6562. type="2" >
  6563. </productMenu>
  6564. <productMenu id="fmradio"
  6565. type="3" >
  6566. </productMenu>
  6567. <productMenu id="deviceSetting"
  6568. type="1"
  6569. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6570. <productMenuURL version="2.4"
  6571. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6572. />
  6573. <productMenuURL version="1.5"
  6574. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6575. />
  6576. <productMenuURL version="1.4.1"
  6577. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6578. />
  6579. <productMenuURL version="1.1"
  6580. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6581. />
  6582. <productMenuURL version="1.0"
  6583. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6584. />
  6585. </productMenu>
  6586. <productMenu id="quickGuide"
  6587. type="1"
  6588. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  6589. size="264KB" >
  6590. </productMenu>
  6591. <productMenu id="userGuide"
  6592. type="1"
  6593. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  6594. size="3.09MB" >
  6595. </productMenu>
  6596. <productID id="4210"
  6597. />
  6598. <productProductKey key="11"
  6599. />
  6600. <productID id="4230"
  6601. />
  6602. <productProductKey key="11"
  6603. />
  6604. <productGroupable type="1"
  6605. />
  6606. </product>
  6607. <product id="HD50S"
  6608. name="Boom Audio 20S EVO"
  6609. series="50"
  6610. latestVersion="2.5.2"
  6611. show = "0" >
  6612. <productMenu id="protocol"
  6613. type="0">
  6614. </productMenu>
  6615. <productMenu id="sip"
  6616. type="1" >
  6617. <productMenuType version="1.0"
  6618. type="0"
  6619. />
  6620. </productMenu>
  6621. <productMenu id="bluetoothIntercom"
  6622. type="1" >
  6623. <productMenuType version="1.0"
  6624. type="0"
  6625. />
  6626. </productMenu>
  6627. <productMenu id="intercomSetting"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="phone"
  6631. type="2" >
  6632. </productMenu>
  6633. <productMenu id="fmradio"
  6634. type="3" >
  6635. </productMenu>
  6636. <productMenu id="deviceSetting"
  6637. type="1"
  6638. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  6639. <productMenuURL version="2.4"
  6640. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  6641. />
  6642. <productMenuURL version="1.5"
  6643. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  6644. />
  6645. <productMenuURL version="1.4.1"
  6646. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  6647. />
  6648. <productMenuURL version="1.1"
  6649. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  6650. />
  6651. <productMenuURL version="1.0"
  6652. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  6653. />
  6654. </productMenu>
  6655. <productMenu id="quickGuide"
  6656. type="1"
  6657. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  6658. size="321KB" >
  6659. </productMenu>
  6660. <productMenu id="userGuide"
  6661. type="1"
  6662. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  6663. size="2.46MB" >
  6664. </productMenu>
  6665. <productID id="4230"
  6666. />
  6667. <productProductKey key="27"
  6668. />
  6669. <productGroupable type="1"
  6670. />
  6671. </product>
  6672. <product id="HD50S"
  6673. name="Boom! Audio 10S"
  6674. series="50"
  6675. latestVersion="1.1.3"
  6676. show = "0" >
  6677. <productMenu id="protocol"
  6678. type="0">
  6679. </productMenu>
  6680. <productMenu id="sip"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="bluetoothIntercom"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="phone"
  6687. type="2" >
  6688. </productMenu>
  6689. <productMenu id="fmradio"
  6690. type="3" >
  6691. </productMenu>
  6692. <productMenu id="deviceSetting"
  6693. type="1"
  6694. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  6695. </productMenu>
  6696. <productMenu id="quickGuide"
  6697. type="1"
  6698. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  6699. size="538KB" >
  6700. </productMenu>
  6701. <productMenu id="userGuide"
  6702. type="1"
  6703. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  6704. size="1.55MB" >
  6705. </productMenu>
  6706. <productID id="5532"
  6707. />
  6708. <productGroupable type="0"
  6709. />
  6710. </product>
  6711. <product id="HD50S"
  6712. name="Boom! Audio N01 10R"
  6713. series="50"
  6714. latestVersion="1.1.3"
  6715. show = "0" >
  6716. <productMenu id="protocol"
  6717. type="0">
  6718. </productMenu>
  6719. <productMenu id="sip"
  6720. type="1" >
  6721. </productMenu>
  6722. <productMenu id="bluetoothIntercom"
  6723. type="1" >
  6724. </productMenu>
  6725. <productMenu id="phone"
  6726. type="2" >
  6727. </productMenu>
  6728. <productMenu id="fmradio"
  6729. type="3" >
  6730. </productMenu>
  6731. <productMenu id="deviceSetting"
  6732. type="1"
  6733. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  6734. </productMenu>
  6735. <productMenu id="quickGuide"
  6736. type="1"
  6737. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  6738. size="766KB" >
  6739. </productMenu>
  6740. <productMenu id="userGuide"
  6741. type="1"
  6742. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  6743. size="1.45MB" >
  6744. </productMenu>
  6745. <productID id="5522"
  6746. />
  6747. <productGroupable type="0"
  6748. />
  6749. </product>
  6750. <product id="HD50S"
  6751. name="OUTRUSH-R N03"
  6752. series="50"
  6753. latestVersion="1.2.1"
  6754. show = "-1" >
  6755. <productMenu id="protocol"
  6756. type="0">
  6757. </productMenu>
  6758. <productMenu id="sip"
  6759. type="1" >
  6760. </productMenu>
  6761. <productMenu id="bluetoothIntercom"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="phone"
  6765. type="2" >
  6766. </productMenu>
  6767. <productMenu id="fmradio"
  6768. type="3" >
  6769. </productMenu>
  6770. <productMenu id="deviceSetting"
  6771. type="1"
  6772. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6773. </productMenu>
  6774. <productMenu id="userGuide"
  6775. type="1"
  6776. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  6777. size="660KB" >
  6778. </productMenu>
  6779. <productID id="5434"
  6780. />
  6781. <productGroupable type="0"
  6782. />
  6783. </product>
  6784. <product id="HD50S"
  6785. name="OUTRUSH-R N03"
  6786. series="50"
  6787. latestVersion="2.0"
  6788. show = "0" >
  6789. <productMenu id="protocol"
  6790. type="3" >
  6791. </productMenu>
  6792. <productMenu id="sip"
  6793. type="1" >
  6794. </productMenu>
  6795. <productMenu id="bluetoothIntercom"
  6796. type="1" >
  6797. </productMenu>
  6798. <productMenu id="phone"
  6799. type="1" >
  6800. </productMenu>
  6801. <productMenu id="fmradio"
  6802. type="1" >
  6803. </productMenu>
  6804. <productMenu id="deviceSetting"
  6805. type="1"
  6806. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  6807. </productMenu>
  6808. <productMenu id="userGuide"
  6809. type="1"
  6810. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  6811. size="1.14MB" >
  6812. </productMenu>
  6813. <productID id="5441"
  6814. />
  6815. <productGroupable type="0"
  6816. />
  6817. </product>
  6818. <product id="5R"
  6819. name="5R"
  6820. series="5"
  6821. latestVersion="1.0.1"
  6822. show = "1" >
  6823. <productMenu id="protocol"
  6824. type="3" >
  6825. </productMenu>
  6826. <productMenu id="sip"
  6827. type="1" >
  6828. </productMenu>
  6829. <productMenu id="bluetoothIntercom"
  6830. type="1" >
  6831. </productMenu>
  6832. <productMenu id="phone"
  6833. type="1" >
  6834. </productMenu>
  6835. <productMenu id="fmradio"
  6836. type="1" >
  6837. </productMenu>
  6838. <productMenu id="deviceSetting"
  6839. type="1"
  6840. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6841. </productMenu>
  6842. <productMenu id="quickGuide"
  6843. type="0"
  6844. url=""
  6845. size="934KB" >
  6846. </productMenu>
  6847. <productMenu id="userGuide"
  6848. type="1"
  6849. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_nl_250707.pdf"
  6850. size="1.14MB" >
  6851. </productMenu>
  6852. <productMenu id="connectGuide"
  6853. type="1"
  6854. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  6855. size="1.12MB" >
  6856. </productMenu>
  6857. <productID id="5591"
  6858. />
  6859. <productGroupable type="0"
  6860. />
  6861. </product>
  6862. <product id="5R"
  6863. name="5R LITE"
  6864. series="5"
  6865. latestVersion="1.0.1"
  6866. show = "1" >
  6867. <productMenu id="protocol"
  6868. type="3" >
  6869. </productMenu>
  6870. <productMenu id="sip"
  6871. type="1" >
  6872. </productMenu>
  6873. <productMenu id="bluetoothIntercom"
  6874. type="1" >
  6875. </productMenu>
  6876. <productMenu id="phone"
  6877. type="1" >
  6878. </productMenu>
  6879. <productMenu id="fmradio"
  6880. type="1" >
  6881. </productMenu>
  6882. <productMenu id="deviceSetting"
  6883. type="1"
  6884. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6885. </productMenu>
  6886. <productMenu id="quickGuide"
  6887. type="0"
  6888. url=""
  6889. size="934KB" >
  6890. </productMenu>
  6891. <productMenu id="userGuide"
  6892. type="1"
  6893. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  6894. size="1.14MB" >
  6895. </productMenu>
  6896. <productMenu id="connectGuide"
  6897. type="1"
  6898. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  6899. size="1.12MB" >
  6900. </productMenu>
  6901. <productID id="5592"
  6902. />
  6903. <productGroupable type="0"
  6904. />
  6905. </product>
  6906. <product id="50RLE"
  6907. name="50R LE"
  6908. series="50"
  6909. latestVersion="1.1"
  6910. show = "0" >
  6911. <productMenu id="protocol"
  6912. type="2" >
  6913. </productMenu>
  6914. <productMenu id="alexa"
  6915. type="0" >
  6916. </productMenu>
  6917. <productMenu id="sip"
  6918. type="1" >
  6919. </productMenu>
  6920. <productMenu id="meshIntercom"
  6921. type="30" >
  6922. </productMenu>
  6923. <productMenu id="meshIntercom+"
  6924. type="3"
  6925. url="2" >
  6926. <productMenuType version="1.0.9"
  6927. type="2"
  6928. />
  6929. </productMenu>
  6930. <productMenu id="waveIntercom"
  6931. type="1" >
  6932. <productMenuType version="1.0.9"
  6933. type="0"
  6934. />
  6935. </productMenu>
  6936. <productMenu id="bluetoothIntercom"
  6937. type="1" >
  6938. </productMenu>
  6939. <productMenu id="phone"
  6940. type="1" >
  6941. </productMenu>
  6942. <productMenu id="music"
  6943. type="1" >
  6944. </productMenu>
  6945. <productMenu id="fmradio"
  6946. type="0" >
  6947. </productMenu>
  6948. <productMenu id="deviceSetting"
  6949. type="1"
  6950. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  6951. <productMenuURL version="1.0.9"
  6952. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  6953. />
  6954. </productMenu>
  6955. <productMenu id="quickGuide"
  6956. type="0"
  6957. url=""
  6958. size="344KB" >
  6959. </productMenu>
  6960. <productMenu id="userGuide"
  6961. type="0"
  6962. url=""
  6963. size="3.41MB" >
  6964. </productMenu>
  6965. <productMenu id="volume"
  6966. type="11" >
  6967. </productMenu>
  6968. <productMenu id="battery"
  6969. type="1" >
  6970. </productMenu>
  6971. <productID id="3223"
  6972. />
  6973. <productGroupable type="0"
  6974. />
  6975. </product>
  6976. <product id="5RLOUIS"
  6977. name="5R LOUIS EDITION"
  6978. series="5"
  6979. latestVersion="1.0"
  6980. show = "-1" >
  6981. <productMenu id="protocol"
  6982. type="3" >
  6983. </productMenu>
  6984. <productMenu id="sip"
  6985. type="1" >
  6986. </productMenu>
  6987. <productMenu id="bluetoothIntercom"
  6988. type="1" >
  6989. </productMenu>
  6990. <productMenu id="phone"
  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/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6999. </productMenu>
  7000. <productMenu id="quickGuide"
  7001. type="0"
  7002. url=""
  7003. size="934KB" >
  7004. </productMenu>
  7005. <productMenu id="userGuide"
  7006. type="0"
  7007. url=""
  7008. size="1.14MB" >
  7009. </productMenu>
  7010. <productID id="5597"
  7011. />
  7012. <productGroupable type="0"
  7013. />
  7014. </product>
  7015. <product id="5S"
  7016. name="Ridekont 5S"
  7017. series="5"
  7018. latestVersion="2.3"
  7019. show = "-1" >
  7020. <productMenu id="protocol"
  7021. type="3" >
  7022. </productMenu>
  7023. <productMenu id="sip"
  7024. type="1" >
  7025. </productMenu>
  7026. <productMenu id="bluetoothIntercom"
  7027. type="1" >
  7028. </productMenu>
  7029. <productMenu id="phone"
  7030. type="1" >
  7031. </productMenu>
  7032. <productMenu id="fmradio"
  7033. type="0" >
  7034. </productMenu>
  7035. <productMenu id="deviceSetting"
  7036. type="1"
  7037. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7038. </productMenu>
  7039. <productMenu id="quickGuide"
  7040. type="0"
  7041. url=""
  7042. size="934KB" >
  7043. </productMenu>
  7044. <productMenu id="userGuide"
  7045. type="1"
  7046. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  7047. size="1.14MB" >
  7048. </productMenu>
  7049. <productID id="5589"
  7050. />
  7051. <productGroupable type="0"
  7052. />
  7053. </product>
  7054. <product id="5R"
  7055. name="Ridekont 5R"
  7056. series="5"
  7057. latestVersion="1.0"
  7058. show = "0" >
  7059. <productMenu id="protocol"
  7060. type="3" >
  7061. </productMenu>
  7062. <productMenu id="sip"
  7063. type="1" >
  7064. </productMenu>
  7065. <productMenu id="bluetoothIntercom"
  7066. type="1" >
  7067. </productMenu>
  7068. <productMenu id="phone"
  7069. type="1" >
  7070. </productMenu>
  7071. <productMenu id="fmradio"
  7072. type="1" >
  7073. </productMenu>
  7074. <productMenu id="deviceSetting"
  7075. type="1"
  7076. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  7077. </productMenu>
  7078. <productMenu id="quickGuide"
  7079. type="1"
  7080. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  7081. size="934KB" >
  7082. </productMenu>
  7083. <productMenu id="userGuide"
  7084. type="1"
  7085. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  7086. size="1.14MB" >
  7087. </productMenu>
  7088. <productID id="5593"
  7089. />
  7090. <productGroupable type="0"
  7091. />
  7092. </product>
  7093. <product id="5R"
  7094. name="Ridekont 5R LITE"
  7095. series="5"
  7096. latestVersion="1.0"
  7097. show = "0" >
  7098. <productMenu id="protocol"
  7099. type="3" >
  7100. </productMenu>
  7101. <productMenu id="sip"
  7102. type="1" >
  7103. </productMenu>
  7104. <productMenu id="bluetoothIntercom"
  7105. type="1" >
  7106. </productMenu>
  7107. <productMenu id="phone"
  7108. type="1" >
  7109. </productMenu>
  7110. <productMenu id="fmradio"
  7111. type="1" >
  7112. </productMenu>
  7113. <productMenu id="deviceSetting"
  7114. type="1"
  7115. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  7116. </productMenu>
  7117. <productMenu id="quickGuide"
  7118. type="0"
  7119. url=""
  7120. size="934KB" >
  7121. </productMenu>
  7122. <productMenu id="userGuide"
  7123. type="1"
  7124. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  7125. size="1.14MB" >
  7126. </productMenu>
  7127. <productID id="5594"
  7128. />
  7129. <productGroupable type="0"
  7130. />
  7131. </product>
  7132. <product id="C30"
  7133. name="SENA C30"
  7134. series="C"
  7135. latestVersion="1.1.3"
  7136. latestVersionVoicePrompt="0.11"
  7137. show = "1" >
  7138. <productMenu id="protocol"
  7139. type="2" >
  7140. </productMenu>
  7141. <productMenu id="alexa"
  7142. type="0" >
  7143. </productMenu>
  7144. <productMenu id="ota"
  7145. type="2" >
  7146. <otaPackages>
  7147. <package
  7148. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.3-build2.img"
  7149. size="3144148"
  7150. />
  7151. </otaPackages>
  7152. </productMenu>
  7153. <productMenu id="wa"
  7154. type="0" >
  7155. </productMenu>
  7156. <productMenu id="meshIntercom"
  7157. type="30" >
  7158. </productMenu>
  7159. <productMenu id="meshIntercom+"
  7160. type="3"
  7161. url="2" >
  7162. <productMenuType version="1.0.9"
  7163. type="2"
  7164. />
  7165. </productMenu>
  7166. <productMenu id="phone"
  7167. type="1" >
  7168. </productMenu>
  7169. <productMenu id="music"
  7170. type="1" >
  7171. </productMenu>
  7172. <productMenu id="musicSharing"
  7173. type="0" >
  7174. </productMenu>
  7175. <productMenu id="deviceSetting"
  7176. type="1"
  7177. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  7178. <productMenuURL version="1.0.9"
  7179. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  7180. />
  7181. </productMenu>
  7182. <productMenu id="quickGuide"
  7183. type="1"
  7184. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  7185. size="1.12MB" >
  7186. </productMenu>
  7187. <productMenu id="userGuide"
  7188. type="0"
  7189. url=""
  7190. size="2.0MB" >
  7191. </productMenu>
  7192. <productMenu id="videoGuide"
  7193. type="0"
  7194. url=""
  7195. size="3.41MB" >
  7196. </productMenu>
  7197. <productMenu id="volume"
  7198. type="12" >
  7199. </productMenu>
  7200. <productMenu id="battery"
  7201. type="1" >
  7202. </productMenu>
  7203. <productID id="683A"
  7204. />
  7205. <productGroupable type="0"
  7206. />
  7207. </product>
  7208. <product id="C20"
  7209. name="C20"
  7210. series="5"
  7211. latestVersion="1.0"
  7212. show = "0" >
  7213. <productMenu id="protocol"
  7214. type="3" >
  7215. </productMenu>
  7216. <productMenu id="sip"
  7217. type="1" >
  7218. </productMenu>
  7219. <productMenu id="bluetoothIntercom"
  7220. type="1" >
  7221. </productMenu>
  7222. <productMenu id="phone"
  7223. type="1" >
  7224. </productMenu>
  7225. <productMenu id="deviceSetting"
  7226. type="1"
  7227. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  7228. </productMenu>
  7229. <productMenu id="quickGuide"
  7230. type="1"
  7231. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  7232. size="934KB" >
  7233. </productMenu>
  7234. <productMenu id="userGuide"
  7235. type="1"
  7236. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  7237. size="1.14MB" >
  7238. </productMenu>
  7239. <productID id="3701"
  7240. />
  7241. <productGroupable type="0"
  7242. />
  7243. </product>
  7244. <product id="C10"
  7245. name="C10"
  7246. series="5"
  7247. latestVersion="1.4.1"
  7248. show = "0" >
  7249. <productMenu id="protocol"
  7250. type="3" >
  7251. </productMenu>
  7252. <productMenu id="sip"
  7253. type="1" >
  7254. </productMenu>
  7255. <productMenu id="bluetoothIntercom"
  7256. type="1" >
  7257. </productMenu>
  7258. <productMenu id="phone"
  7259. type="1" >
  7260. </productMenu>
  7261. <productMenu id="fmradio"
  7262. type="0" >
  7263. </productMenu>
  7264. <productMenu id="deviceSetting"
  7265. type="1"
  7266. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7267. </productMenu>
  7268. <productMenu id="userGuide"
  7269. type="1"
  7270. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  7271. size="1.14MB" >
  7272. </productMenu>
  7273. <productID id="5595"
  7274. />
  7275. <productGroupable type="0"
  7276. />
  7277. </product>
  7278. <product id="J30"
  7279. name="J30"
  7280. series="J"
  7281. latestVersion="1.2"
  7282. latestVersionVoicePrompt="0.13"
  7283. show = "0" >
  7284. <productMenu id="protocol"
  7285. type="2" >
  7286. </productMenu>
  7287. <productMenu id="alexa"
  7288. type="0" >
  7289. </productMenu>
  7290. <productMenu id="ota"
  7291. type="2" >
  7292. <otaPackages>
  7293. <package
  7294. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2-build1.img"
  7295. size="3144148"
  7296. />
  7297. </otaPackages>
  7298. </productMenu>
  7299. <productMenu id="wa"
  7300. type="0" >
  7301. </productMenu>
  7302. <productMenu id="meshIntercom"
  7303. type="30" >
  7304. </productMenu>
  7305. <productMenu id="meshIntercom+"
  7306. type="3"
  7307. url="2" >
  7308. <productMenuType version="1.0.9"
  7309. type="2"
  7310. />
  7311. </productMenu>
  7312. <productMenu id="waveIntercom"
  7313. type="1" >
  7314. <productMenuType version="1.1.9"
  7315. type="0"
  7316. />
  7317. </productMenu>
  7318. <productMenu id="phone"
  7319. type="1" >
  7320. </productMenu>
  7321. <productMenu id="music"
  7322. type="1" >
  7323. </productMenu>
  7324. <productMenu id="musicSharing"
  7325. type="0" >
  7326. </productMenu>
  7327. <productMenu id="deviceSetting"
  7328. type="1"
  7329. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  7330. <productMenuURL version="1.0.9"
  7331. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  7332. />
  7333. </productMenu>
  7334. <productMenu id="quickGuide"
  7335. type="0"
  7336. url=""
  7337. size="1.12MB" >
  7338. </productMenu>
  7339. <productMenu id="userGuide"
  7340. type="1"
  7341. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  7342. size="2.0MB" >
  7343. </productMenu>
  7344. <productMenu id="videoGuide"
  7345. type="0"
  7346. url=""
  7347. size="3.41MB" >
  7348. </productMenu>
  7349. <productMenu id="volume"
  7350. type="12" >
  7351. </productMenu>
  7352. <productMenu id="battery"
  7353. type="1" >
  7354. </productMenu>
  7355. <productID id="6848"
  7356. />
  7357. <productGroupable type="0"
  7358. />
  7359. </product>
  7360. <product id="J10"
  7361. name="J10"
  7362. series="5"
  7363. latestVersion="1.1.1"
  7364. show = "0" >
  7365. <productMenu id="protocol"
  7366. type="3" >
  7367. </productMenu>
  7368. <productMenu id="sip"
  7369. type="1" >
  7370. </productMenu>
  7371. <productMenu id="bluetoothIntercom"
  7372. type="1" >
  7373. </productMenu>
  7374. <productMenu id="phone"
  7375. type="1" >
  7376. </productMenu>
  7377. <productMenu id="fmradio"
  7378. type="0" >
  7379. </productMenu>
  7380. <productMenu id="deviceSetting"
  7381. type="1"
  7382. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  7383. </productMenu>
  7384. <productMenu id="userGuide"
  7385. type="1"
  7386. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  7387. size="1.14MB" >
  7388. </productMenu>
  7389. <productID id="5598"
  7390. />
  7391. <productGroupable type="0"
  7392. />
  7393. </product>
  7394. <product id="B20"
  7395. name="B20"
  7396. series="B"
  7397. latestVersion="1.1"
  7398. latestVersionVoicePrompt="0.13"
  7399. show = "0" >
  7400. <productMenu id="protocol"
  7401. type="2" >
  7402. </productMenu>
  7403. <productMenu id="alexa"
  7404. type="0" >
  7405. </productMenu>
  7406. <productMenu id="ota"
  7407. type="2" >
  7408. <otaPackages>
  7409. <package
  7410. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1-build0.img"
  7411. size="3144148"
  7412. />
  7413. </otaPackages>
  7414. </productMenu>
  7415. <productMenu id="wa"
  7416. type="0" >
  7417. </productMenu>
  7418. <productMenu id="meshIntercom"
  7419. type="30" >
  7420. </productMenu>
  7421. <productMenu id="phone"
  7422. type="1" >
  7423. </productMenu>
  7424. <productMenu id="music"
  7425. type="1" >
  7426. </productMenu>
  7427. <productMenu id="musicSharing"
  7428. type="0" >
  7429. </productMenu>
  7430. <productMenu id="deviceSetting"
  7431. type="1"
  7432. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  7433. <productMenuURL version="1.0.9"
  7434. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  7435. />
  7436. </productMenu>
  7437. <productMenu id="quickGuide"
  7438. type="0"
  7439. url=""
  7440. size="1.12MB" >
  7441. </productMenu>
  7442. <productMenu id="userGuide"
  7443. type="1"
  7444. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  7445. size="2.0MB" >
  7446. </productMenu>
  7447. <productMenu id="videoGuide"
  7448. type="0"
  7449. url=""
  7450. size="3.41MB" >
  7451. </productMenu>
  7452. <productMenu id="volume"
  7453. type="12" >
  7454. </productMenu>
  7455. <productMenu id="battery"
  7456. type="1" >
  7457. </productMenu>
  7458. <productID id="6847"
  7459. />
  7460. <productGroupable type="0"
  7461. />
  7462. </product>
  7463. <product id="B10"
  7464. name="B10"
  7465. series="5"
  7466. latestVersion="1.2.1"
  7467. show = "0" >
  7468. <productMenu id="protocol"
  7469. type="3" >
  7470. </productMenu>
  7471. <productMenu id="sip"
  7472. type="1" >
  7473. </productMenu>
  7474. <productMenu id="bluetoothIntercom"
  7475. type="1" >
  7476. </productMenu>
  7477. <productMenu id="phone"
  7478. type="1" >
  7479. </productMenu>
  7480. <productMenu id="fmradio"
  7481. type="0" >
  7482. </productMenu>
  7483. <productMenu id="deviceSetting"
  7484. type="1"
  7485. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  7486. </productMenu>
  7487. <productMenu id="userGuide"
  7488. type="1"
  7489. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  7490. size="1.14MB" >
  7491. </productMenu>
  7492. <productID id="5596"
  7493. />
  7494. <productGroupable type="0"
  7495. />
  7496. </product>
  7497. <product id="E30"
  7498. name="E30"
  7499. series="E"
  7500. latestVersion="1.0.1"
  7501. latestVersionVoicePrompt="0.12"
  7502. show = "0" >
  7503. <productMenu id="protocol"
  7504. type="2" >
  7505. </productMenu>
  7506. <productMenu id="alexa"
  7507. type="0" >
  7508. </productMenu>
  7509. <productMenu id="ota"
  7510. type="2" >
  7511. <otaPackages>
  7512. <package
  7513. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.0.1-build0.img"
  7514. size="3144148"
  7515. />
  7516. </otaPackages>
  7517. </productMenu>
  7518. <productMenu id="wa"
  7519. type="0" >
  7520. </productMenu>
  7521. <productMenu id="meshIntercom"
  7522. type="30" >
  7523. </productMenu>
  7524. <productMenu id="meshIntercom+"
  7525. type="3"
  7526. url="2" >
  7527. </productMenu>
  7528. <productMenu id="waveIntercom"
  7529. type="1" >
  7530. <productMenuType version="1.0.9"
  7531. type="0"
  7532. />
  7533. </productMenu>
  7534. <productMenu id="phone"
  7535. type="1" >
  7536. </productMenu>
  7537. <productMenu id="music"
  7538. type="1" >
  7539. </productMenu>
  7540. <productMenu id="musicSharing"
  7541. type="0" >
  7542. </productMenu>
  7543. <productMenu id="deviceSetting"
  7544. type="1"
  7545. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  7546. </productMenu>
  7547. <productMenu id="quickGuide"
  7548. type="0"
  7549. url=""
  7550. size="1.12MB" >
  7551. </productMenu>
  7552. <productMenu id="userGuide"
  7553. type="1"
  7554. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  7555. size="2.0MB" >
  7556. </productMenu>
  7557. <productMenu id="videoGuide"
  7558. type="0"
  7559. url=""
  7560. size="3.41MB" >
  7561. </productMenu>
  7562. <productMenu id="volume"
  7563. type="12" >
  7564. </productMenu>
  7565. <productMenu id="battery"
  7566. type="1" >
  7567. </productMenu>
  7568. <productID id="6846"
  7569. />
  7570. <productGroupable type="0"
  7571. />
  7572. </product>
  7573. <product id="ACSRAM"
  7574. name="ACS-RAM"
  7575. series="ACS"
  7576. latestVersion="1.0.5"
  7577. show = "1" >
  7578. <productMenu id="protocol"
  7579. type="3" >
  7580. </productMenu>
  7581. <productMenu id="sip"
  7582. type="1" >
  7583. </productMenu>
  7584. <productMenu id="bluetoothIntercom"
  7585. type="1" >
  7586. </productMenu>
  7587. <productMenu id="deviceSetting"
  7588. type="1"
  7589. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  7590. </productMenu>
  7591. <productMenu id="quickGuide"
  7592. type="1"
  7593. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  7594. size="344KB" >
  7595. </productMenu>
  7596. <productMenu id="userGuide"
  7597. type="1"
  7598. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  7599. size="1.14MB" >
  7600. </productMenu>
  7601. <productMenu id="connectGuide"
  7602. type="1"
  7603. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  7604. size="1.12MB" >
  7605. </productMenu>
  7606. <productID id="3400"
  7607. />
  7608. <productGroupable type="0"
  7609. />
  7610. </product>
  7611. <product id="ACS10"
  7612. name="ACS10"
  7613. series="ACS"
  7614. latestVersion="1.0.2"
  7615. show = "1" >
  7616. <productMenu id="protocol"
  7617. type="0">
  7618. </productMenu>
  7619. <productMenu id="sip"
  7620. type="1" >
  7621. </productMenu>
  7622. <productMenu id="bluetoothIntercom"
  7623. type="1" >
  7624. </productMenu>
  7625. <productMenu id="phone"
  7626. type="2" >
  7627. </productMenu>
  7628. <productMenu id="deviceSetting"
  7629. type="1"
  7630. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  7631. </productMenu>
  7632. <productMenu id="quickGuide"
  7633. type="1"
  7634. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  7635. size="970KB" >
  7636. </productMenu>
  7637. <productMenu id="userGuide"
  7638. type="1"
  7639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  7640. size="1.26MB" >
  7641. </productMenu>
  7642. <productID id="3300"
  7643. />
  7644. <productGroupable type="0"
  7645. />
  7646. </product>
  7647. <product id="DWO7ProMesh"
  7648. name="DWO 7 Pro Mesh"
  7649. series="50"
  7650. latestVersion="1.1"
  7651. latestVersionVoicePrompt="0.9"
  7652. show = "0" >
  7653. <productMenu id="protocol"
  7654. type="2" >
  7655. </productMenu>
  7656. <productMenu id="alexa"
  7657. type="0" >
  7658. </productMenu>
  7659. <productMenu id="ota"
  7660. type="2" >
  7661. <otaPackages>
  7662. <package
  7663. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  7664. size="2945812"
  7665. />
  7666. </otaPackages>
  7667. </productMenu>
  7668. <productMenu id="wa"
  7669. type="0" >
  7670. </productMenu>
  7671. <productMenu id="meshIntercom"
  7672. type="20" >
  7673. </productMenu>
  7674. <productMenu id="meshIntercom+"
  7675. type="3"
  7676. url="2" >
  7677. <productMenuType version="1.0.9"
  7678. type="2"
  7679. />
  7680. <productMenuURL version="2.1.1"
  7681. url="0"
  7682. />
  7683. </productMenu>
  7684. <productMenu id="waveIntercom"
  7685. type="1" >
  7686. <productMenuType version="1.0.9"
  7687. type="0"
  7688. />
  7689. </productMenu>
  7690. <productMenu id="phone"
  7691. type="1" >
  7692. </productMenu>
  7693. <productMenu id="music"
  7694. type="1" >
  7695. </productMenu>
  7696. <productMenu id="fmradio"
  7697. type="1" >
  7698. </productMenu>
  7699. <productMenu id="musicSharing"
  7700. type="0" >
  7701. </productMenu>
  7702. <productMenu id="deviceSetting"
  7703. type="1"
  7704. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  7705. <productMenuURL version="1.0.9"
  7706. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  7707. />
  7708. </productMenu>
  7709. <productMenu id="quickGuide"
  7710. type="1"
  7711. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  7712. size="1.12MB" >
  7713. </productMenu>
  7714. <productMenu id="userGuide"
  7715. type="1"
  7716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  7717. size="2.0MB" >
  7718. </productMenu>
  7719. <productMenu id="volume"
  7720. type="12" >
  7721. </productMenu>
  7722. <productMenu id="battery"
  7723. type="1" >
  7724. </productMenu>
  7725. <productID id="6806"
  7726. />
  7727. <productGroupable type="0"
  7728. />
  7729. </product>
  7730. <product id="UCOM16R"
  7731. name="U-COM 16R"
  7732. series="UCOM"
  7733. latestVersion="1.0"
  7734. latestVersionMesh="1.0"
  7735. latestVersionVoicePrompt="1.0"
  7736. show = "-1" >
  7737. <productMenu id="protocol"
  7738. type="2" >
  7739. </productMenu>
  7740. <productMenu id="ota"
  7741. type="0" >
  7742. <otaLanguages>
  7743. <otaLanguage
  7744. id="0"
  7745. name="English"
  7746. package="0"
  7747. />
  7748. <otaLanguage
  7749. id="0"
  7750. name="French"
  7751. package="1"
  7752. />
  7753. <otaLanguage
  7754. id="0"
  7755. name="Spanish"
  7756. package="2"
  7757. />
  7758. <otaLanguage
  7759. id="0"
  7760. name="Italian"
  7761. package="3"
  7762. />
  7763. <otaLanguage
  7764. id="0"
  7765. name="German"
  7766. package="4"
  7767. />
  7768. <otaLanguage
  7769. id="0"
  7770. name="Dutch"
  7771. package="5"
  7772. />
  7773. <otaLanguage
  7774. id="0"
  7775. name="Russian"
  7776. package="6"
  7777. />
  7778. <otaLanguage
  7779. id="0"
  7780. name="Chinese"
  7781. package="7"
  7782. />
  7783. <otaLanguage
  7784. id="0"
  7785. name="Korean"
  7786. package="8"
  7787. />
  7788. <otaLanguage
  7789. id="0"
  7790. name="Japanese"
  7791. package="9"
  7792. />
  7793. <otaLanguage
  7794. id="0"
  7795. name="Finnish"
  7796. package="10"
  7797. />
  7798. </otaLanguages>
  7799. <otaPackages>
  7800. <package
  7801. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2.img"
  7802. size="5183988"
  7803. />
  7804. <package
  7805. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fr-FR.img"
  7806. size="5183988"
  7807. />
  7808. <package
  7809. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-es-ES.img"
  7810. size="5183988"
  7811. />
  7812. <package
  7813. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-it-IT.img"
  7814. size="5183988"
  7815. />
  7816. <package
  7817. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-de-DE.img"
  7818. size="5183988"
  7819. />
  7820. <package
  7821. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-nl-NL.img"
  7822. size="5183988"
  7823. />
  7824. <package
  7825. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ru-RU.img"
  7826. size="5183988"
  7827. />
  7828. <package
  7829. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-cmn-CN.img"
  7830. size="5183988"
  7831. />
  7832. <package
  7833. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ko-KR.img"
  7834. size="5183988"
  7835. />
  7836. <package
  7837. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-ja-JP.img"
  7838. size="5183988"
  7839. />
  7840. <package
  7841. url="https://api.sena.com/support/OTA/60S/60S-v1.2-build2-fi-FI.img"
  7842. size="5183988"
  7843. />
  7844. </otaPackages>
  7845. </productMenu>
  7846. <productMenu id="wa"
  7847. type="0" >
  7848. </productMenu>
  7849. <productMenu id="sip"
  7850. type="1" >
  7851. </productMenu>
  7852. <productMenu id="led"
  7853. type="0" >
  7854. </productMenu>
  7855. <productMenu id="illusion"
  7856. type="1" >
  7857. </productMenu>
  7858. <productMenu id="meshIntercom"
  7859. type="30" >
  7860. </productMenu>
  7861. <productMenu id="meshIntercom+"
  7862. type="3"
  7863. url="2" >
  7864. </productMenu>
  7865. <productMenu id="waveIntercom"
  7866. type="0" >
  7867. </productMenu>
  7868. <productMenu id="bluetoothIntercom"
  7869. type="1" >
  7870. </productMenu>
  7871. <productMenu id="bluetoothIntercomGrouping"
  7872. type="0" >
  7873. </productMenu>
  7874. <productMenu id="fmradio"
  7875. type="1"
  7876. url="1" >
  7877. </productMenu>
  7878. <productMenu id="phone"
  7879. type="1" >
  7880. </productMenu>
  7881. <productMenu id="music"
  7882. type="1" >
  7883. </productMenu>
  7884. <productMenu id="musicSharing"
  7885. type="0" >
  7886. </productMenu>
  7887. <productMenu id="deviceSetting"
  7888. type="1"
  7889. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  7890. </productMenu>
  7891. <productMenu id="quickGuide"
  7892. type="0"
  7893. url=""
  7894. size="1.12MB" >
  7895. </productMenu>
  7896. <productMenu id="userGuide"
  7897. type="1"
  7898. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  7899. size="2.0MB" >
  7900. </productMenu>
  7901. <productMenu id="videoGuide"
  7902. type="0"
  7903. url=""
  7904. size="3.41MB" >
  7905. </productMenu>
  7906. <productMenu id="volume"
  7907. type="16" >
  7908. </productMenu>
  7909. <productMenu id="soundMode"
  7910. type="1" >
  7911. </productMenu>
  7912. <productMenu id="battery"
  7913. type="1" >
  7914. </productMenu>
  7915. <productID id="6A83"
  7916. />
  7917. <productGroupable type="0"
  7918. />
  7919. </product>
  7920. <product id="MeshStation"
  7921. name="Mesh Station"
  7922. series="50"
  7923. latestVersion="0.9"
  7924. show = "-1" >
  7925. <productMenu id="protocol"
  7926. type="2" >
  7927. </productMenu>
  7928. <productMenu id="meshIntercom"
  7929. type="20"
  7930. url="99" >
  7931. </productMenu>
  7932. <productID id="3161"
  7933. />
  7934. <productGroupable type="0"
  7935. />
  7936. </product>
  7937. </products>
  7938. </sna>