snm.xml 219 KB

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