snm.xml 249 KB

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