snm.xml 285 KB

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