snm.xml 228 KB

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