snm.xml 228 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20241102" 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_04.xml" >
  1947. <productMenuURL version="2.2.2"
  1948. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  1949. />
  1950. <productMenuURL version="2.1.1"
  1951. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  1952. />
  1953. </productMenu>
  1954. <productMenu id="quickGuide"
  1955. type="1"
  1956. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  1957. size="1.12MB" >
  1958. </productMenu>
  1959. <productMenu id="userGuide"
  1960. type="1"
  1961. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  1962. size="2.0MB" >
  1963. </productMenu>
  1964. <productMenu id="videoGuide"
  1965. type="1"
  1966. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  1967. size="3.41MB" >
  1968. </productMenu>
  1969. <productMenu id="volume"
  1970. type="12" >
  1971. </productMenu>
  1972. <productMenu id="battery"
  1973. type="1" >
  1974. </productMenu>
  1975. <productID id="6800"
  1976. />
  1977. <productGroupable type="0"
  1978. />
  1979. </product>
  1980. <product id="SPIDER_ST1"
  1981. name="SPIDER ST1"
  1982. series="SPIDER"
  1983. latestVersion="1.2.2"
  1984. show = "0" >
  1985. <productMenu id="protocol"
  1986. type="2" >
  1987. </productMenu>
  1988. <productMenu id="alexa"
  1989. type="0" >
  1990. </productMenu>
  1991. <productMenu id="ota"
  1992. type="0" >
  1993. </productMenu>
  1994. <productMenu id="wa"
  1995. type="0" >
  1996. </productMenu>
  1997. <productMenu id="meshIntercom"
  1998. type="20" >
  1999. </productMenu>
  2000. <productMenu id="phone"
  2001. type="1" >
  2002. </productMenu>
  2003. <productMenu id="music"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="deviceSetting"
  2007. type="1"
  2008. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2009. </productMenu>
  2010. <productMenu id="quickGuide"
  2011. type="1"
  2012. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  2013. size="1.12MB" >
  2014. </productMenu>
  2015. <productMenu id="userGuide"
  2016. type="1"
  2017. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.2.0_en_230717.pdf"
  2018. size="2.0MB" >
  2019. </productMenu>
  2020. <productMenu id="videoGuide"
  2021. type="1"
  2022. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2023. size="3.41MB" >
  2024. </productMenu>
  2025. <productMenu id="volume"
  2026. type="13" >
  2027. <productMenuType version="1.1.6"
  2028. type="14"/>
  2029. </productMenu>
  2030. <productMenu id="battery"
  2031. type="1" >
  2032. </productMenu>
  2033. <productID id="6510"
  2034. />
  2035. <productGroupable type="0"
  2036. />
  2037. </product>
  2038. <product id="SPIDER_RT1"
  2039. name="SPIDER RT1"
  2040. series="SPIDER"
  2041. latestVersion="2.2.2"
  2042. latestVersionVoicePrompt="0.8"
  2043. show = "1" >
  2044. <productMenu id="protocol"
  2045. type="2" >
  2046. </productMenu>
  2047. <productMenu id="alexa"
  2048. type="0" >
  2049. </productMenu>
  2050. <productMenu id="ota"
  2051. type="2" >
  2052. <productMenuType version="2.1.9"
  2053. type="0"
  2054. />
  2055. <otaPackages>
  2056. <package
  2057. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.2.2-build1.img"
  2058. size="2945812"
  2059. />
  2060. </otaPackages>
  2061. </productMenu>
  2062. <productMenu id="wa"
  2063. type="0" >
  2064. </productMenu>
  2065. <productMenu id="meshIntercom"
  2066. type="30" >
  2067. <productMenuType version="2.1.1"
  2068. type="20"
  2069. />
  2070. </productMenu>
  2071. <productMenu id="phone"
  2072. type="1" >
  2073. </productMenu>
  2074. <productMenu id="music"
  2075. type="1" >
  2076. </productMenu>
  2077. <productMenu id="musicSharing"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="deviceSetting"
  2081. type="1"
  2082. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml" >
  2083. <productMenuURL version="2.2.2"
  2084. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  2085. />
  2086. <productMenuURL version="2.1.1"
  2087. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  2088. />
  2089. </productMenu>
  2090. <productMenu id="quickGuide"
  2091. type="1"
  2092. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_2.3.0_en_231205.pdf"
  2093. size="1.12MB" >
  2094. </productMenu>
  2095. <productMenu id="userGuide"
  2096. type="1"
  2097. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_2.4.0_en_231204.pdf"
  2098. size="2.0MB" >
  2099. </productMenu>
  2100. <productMenu id="videoGuide"
  2101. type="1"
  2102. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2103. size="3.41MB" >
  2104. </productMenu>
  2105. <productMenu id="volume"
  2106. type="12" >
  2107. </productMenu>
  2108. <productMenu id="battery"
  2109. type="1" >
  2110. </productMenu>
  2111. <productID id="6810"
  2112. />
  2113. <productGroupable type="0"
  2114. />
  2115. </product>
  2116. <product id="SPIDER_RT1"
  2117. name="SPIDER RT1"
  2118. series="SPIDER"
  2119. latestVersion="1.2.2"
  2120. show = "0" >
  2121. <productMenu id="protocol"
  2122. type="2" >
  2123. </productMenu>
  2124. <productMenu id="alexa"
  2125. type="0" >
  2126. </productMenu>
  2127. <productMenu id="ota"
  2128. type="0" >
  2129. </productMenu>
  2130. <productMenu id="wa"
  2131. type="0" >
  2132. </productMenu>
  2133. <productMenu id="meshIntercom"
  2134. type="20" >
  2135. </productMenu>
  2136. <productMenu id="phone"
  2137. type="1" >
  2138. </productMenu>
  2139. <productMenu id="music"
  2140. type="1" >
  2141. </productMenu>
  2142. <productMenu id="deviceSetting"
  2143. type="1"
  2144. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  2145. </productMenu>
  2146. <productMenu id="quickGuide"
  2147. type="1"
  2148. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  2149. size="1.32MB" >
  2150. </productMenu>
  2151. <productMenu id="userGuide"
  2152. type="1"
  2153. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.2.0_en_230717.pdf"
  2154. size="1.79MB" >
  2155. </productMenu>
  2156. <productMenu id="videoGuide"
  2157. type="1"
  2158. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  2159. size="3.41MB" >
  2160. </productMenu>
  2161. <productMenu id="volume"
  2162. type="13" >
  2163. <productMenuType version="1.1.6"
  2164. type="14"/>
  2165. </productMenu>
  2166. <productMenu id="battery"
  2167. type="1" >
  2168. </productMenu>
  2169. <productID id="6500"
  2170. />
  2171. <productGroupable type="0"
  2172. />
  2173. </product>
  2174. <product id="30K"
  2175. name="30K"
  2176. series="30"
  2177. latestVersion="4.2"
  2178. show = "1" >
  2179. <productMenu id="protocol"
  2180. type="2" >
  2181. </productMenu>
  2182. <productMenu id="alexa"
  2183. type="0" >
  2184. </productMenu>
  2185. <productMenu id="wa"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="sip"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="meshIntercom"
  2192. type="30" >
  2193. <productMenuType version="4.0.4"
  2194. type="20"
  2195. />
  2196. </productMenu>
  2197. <productMenu id="bluetoothIntercom"
  2198. type="1" >
  2199. </productMenu>
  2200. <productMenu id="phone"
  2201. type="1" >
  2202. </productMenu>
  2203. <productMenu id="music"
  2204. type="1" >
  2205. </productMenu>
  2206. <productMenu id="fmradio"
  2207. type="1" >
  2208. </productMenu>
  2209. <productMenu id="deviceSetting"
  2210. type="1"
  2211. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  2212. <productMenuURL version="4.3"
  2213. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  2214. />
  2215. <productMenuURL version="4.2"
  2216. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  2217. />
  2218. <productMenuURL version="4.0.4"
  2219. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  2220. />
  2221. </productMenu>
  2222. <productMenu id="quickGuide"
  2223. type="1"
  2224. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_3.2.0_en_230714.pdf"
  2225. size="934KB" >
  2226. </productMenu>
  2227. <productMenu id="userGuide"
  2228. type="1"
  2229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_4.3.0_en_230714.pdf"
  2230. size="1.14MB" >
  2231. </productMenu>
  2232. <productMenu id="volume"
  2233. type="11" >
  2234. </productMenu>
  2235. <productMenu id="battery"
  2236. type="1" >
  2237. </productMenu>
  2238. <productID id="3211"
  2239. />
  2240. <productGroupable type="0"
  2241. />
  2242. </product>
  2243. <product id="30K"
  2244. name="30K"
  2245. series="30"
  2246. latestVersion="3.4"
  2247. show = "0" >
  2248. <productMenu id="protocol"
  2249. type="1"
  2250. url="0">
  2251. </productMenu>
  2252. <productMenu id="wa"
  2253. type="7" >
  2254. </productMenu>
  2255. <productMenu id="sip"
  2256. type="1" >
  2257. </productMenu>
  2258. <productMenu id="meshIntercom"
  2259. type="20" >
  2260. <productMenuType version="2.9.9"
  2261. type="10"
  2262. />
  2263. </productMenu>
  2264. <productMenu id="bluetoothIntercom"
  2265. type="1" >
  2266. </productMenu>
  2267. <productMenu id="phone"
  2268. type="1" >
  2269. </productMenu>
  2270. <productMenu id="music"
  2271. type="1" >
  2272. </productMenu>
  2273. <productMenu id="fmradio"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="deviceSetting"
  2277. type="1"
  2278. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml">
  2279. <productMenuURL version="3.3.1"
  2280. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  2281. />
  2282. <productMenuURL version="3.0.1"
  2283. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  2284. />
  2285. <productMenuURL version="2.3.1"
  2286. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  2287. />
  2288. <productMenuURL version="2.0"
  2289. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  2290. />
  2291. <productMenuURL version="1.0.3"
  2292. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="quickGuide"
  2296. type="1"
  2297. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_2.4.0_en_230714.pdf"
  2298. size="1.06MB" >
  2299. </productMenu>
  2300. <productMenu id="userGuide"
  2301. type="1"
  2302. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.0_en_230714.pdf"
  2303. size="3.15MB" >
  2304. </productMenu>
  2305. <productMenu id="volume"
  2306. type="1" >
  2307. </productMenu>
  2308. <productID id="3110"
  2309. />
  2310. <productGroupable type="0"
  2311. />
  2312. </product>
  2313. <product id="FURY"
  2314. name="FURY"
  2315. series="Helmet"
  2316. latestVersion="1.0"
  2317. show = "0" >
  2318. <productMenu id="protocol"
  2319. type="2" >
  2320. </productMenu>
  2321. <productMenu id="alexa"
  2322. type="0" >
  2323. </productMenu>
  2324. <productMenu id="ota"
  2325. type="0" >
  2326. </productMenu>
  2327. <productMenu id="wa"
  2328. type="0" >
  2329. </productMenu>
  2330. <productMenu id="meshIntercom"
  2331. type="20" >
  2332. </productMenu>
  2333. <productMenu id="phone"
  2334. type="1" >
  2335. </productMenu>
  2336. <productMenu id="music"
  2337. type="1" >
  2338. </productMenu>
  2339. <productMenu id="fmradio"
  2340. type="1" >
  2341. </productMenu>
  2342. <productMenu id="deviceSetting"
  2343. type="1"
  2344. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  2345. </productMenu>
  2346. <productMenu id="quickGuide"
  2347. type="1"
  2348. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2349. size="1.12MB" >
  2350. </productMenu>
  2351. <productMenu id="userGuide"
  2352. type="1"
  2353. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2354. size="2.0MB" >
  2355. </productMenu>
  2356. <productMenu id="volume"
  2357. type="13" >
  2358. </productMenu>
  2359. <productMenu id="battery"
  2360. type="1" >
  2361. </productMenu>
  2362. <productID id="5552"
  2363. />
  2364. <productGroupable type="0"
  2365. />
  2366. </product>
  2367. <product id="MomentumM"
  2368. name="Momentum EVO"
  2369. series="Helmet"
  2370. latestVersion="2.1.2"
  2371. show = "1" >
  2372. <productMenu id="protocol"
  2373. type="1"
  2374. url="0">
  2375. </productMenu>
  2376. <productMenu id="wa"
  2377. type="3" >
  2378. </productMenu>
  2379. <productMenu id="sip"
  2380. type="1" >
  2381. </productMenu>
  2382. <productMenu id="meshIntercom"
  2383. type="20" >
  2384. <productMenuType version="1.9.9"
  2385. type="10"
  2386. />
  2387. </productMenu>
  2388. <productMenu id="bluetoothIntercom"
  2389. type="1" >
  2390. </productMenu>
  2391. <productMenu id="phone"
  2392. type="1" >
  2393. </productMenu>
  2394. <productMenu id="music"
  2395. type="1" >
  2396. </productMenu>
  2397. <productMenu id="fmradio"
  2398. type="1" >
  2399. </productMenu>
  2400. <productMenu id="deviceSetting"
  2401. type="1"
  2402. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  2403. <productMenuURL version="1.0.1"
  2404. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  2405. />
  2406. </productMenu>
  2407. <productMenu id="quickGuide"
  2408. type="1"
  2409. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  2410. size="1.06MB" >
  2411. </productMenu>
  2412. <productMenu id="userGuide"
  2413. type="1"
  2414. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  2415. size="3.15MB" >
  2416. </productMenu>
  2417. <productMenu id="volume"
  2418. type="2" >
  2419. </productMenu>
  2420. <productID id="3116"
  2421. />
  2422. <productGroupable type="0"
  2423. />
  2424. </product>
  2425. <product id="Momentum"
  2426. name="Momentum"
  2427. series="Helmet"
  2428. latestVersion="1.0.9"
  2429. show = "1" >
  2430. <productMenu id="protocol"
  2431. type="0">
  2432. </productMenu>
  2433. <productMenu id="sip"
  2434. type="1" >
  2435. </productMenu>
  2436. <productMenu id="bluetoothIntercom"
  2437. type="1" >
  2438. </productMenu>
  2439. <productMenu id="intercomSetting"
  2440. type="1" >
  2441. </productMenu>
  2442. <productMenu id="phone"
  2443. type="2" >
  2444. </productMenu>
  2445. <productMenu id="fmradio"
  2446. type="3" >
  2447. </productMenu>
  2448. <productMenu id="deviceSetting"
  2449. type="1"
  2450. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2451. </productMenu>
  2452. <productMenu id="quickGuide"
  2453. type="1"
  2454. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  2455. size="796KB" >
  2456. </productMenu>
  2457. <productMenu id="userGuide"
  2458. type="1"
  2459. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  2460. size="1.90MB" >
  2461. </productMenu>
  2462. <productID id="4310"
  2463. />
  2464. <productGroupable type="1"
  2465. />
  2466. </product>
  2467. <product id="Momentum_Pro"
  2468. name="Momentum Pro"
  2469. series="Helmet"
  2470. latestVersion="1.0.6"
  2471. show = "1" >
  2472. <productMenu id="protocol"
  2473. type="0">
  2474. </productMenu>
  2475. <productMenu id="sip"
  2476. type="1" >
  2477. </productMenu>
  2478. <productMenu id="bluetoothIntercom"
  2479. type="1" >
  2480. </productMenu>
  2481. <productMenu id="intercomSetting"
  2482. type="1" >
  2483. </productMenu>
  2484. <productMenu id="phone"
  2485. type="2" >
  2486. </productMenu>
  2487. <productMenu id="fmradio"
  2488. type="3" >
  2489. </productMenu>
  2490. <productMenu id="deviceSetting"
  2491. type="1"
  2492. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2493. </productMenu>
  2494. <productMenu id="quickGuide"
  2495. type="1"
  2496. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  2497. size="796KB" >
  2498. </productMenu>
  2499. <productMenu id="userGuide"
  2500. type="1"
  2501. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  2502. size="1.90MB" >
  2503. </productMenu>
  2504. <productID id="4330"
  2505. />
  2506. <productGroupable type="1"
  2507. />
  2508. </product>
  2509. <product id="Momentum_INC"
  2510. name="Momentum INC"
  2511. series="Helmet"
  2512. latestVersion="1.0.7"
  2513. show = "1" >
  2514. <productMenu id="protocol"
  2515. type="0">
  2516. </productMenu>
  2517. <productMenu id="sip"
  2518. type="1" >
  2519. </productMenu>
  2520. <productMenu id="bluetoothIntercom"
  2521. type="1" >
  2522. </productMenu>
  2523. <productMenu id="intercomSetting"
  2524. type="1" >
  2525. </productMenu>
  2526. <productMenu id="phone"
  2527. type="2" >
  2528. </productMenu>
  2529. <productMenu id="fmradio"
  2530. type="3" >
  2531. </productMenu>
  2532. <productMenu id="deviceSetting"
  2533. type="1"
  2534. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2535. </productMenu>
  2536. <productMenu id="quickGuide"
  2537. type="1"
  2538. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  2539. size="794KB" >
  2540. </productMenu>
  2541. <productMenu id="userGuide"
  2542. type="1"
  2543. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  2544. size="1.53MB" >
  2545. </productMenu>
  2546. <productID id="4410"
  2547. />
  2548. <productGroupable type="1"
  2549. />
  2550. </product>
  2551. <product id="Momentum_INCP"
  2552. name="Momentum INC Pro"
  2553. series="Helmet"
  2554. latestVersion="1.0.4"
  2555. show = "1" >
  2556. <productMenu id="protocol"
  2557. type="0">
  2558. </productMenu>
  2559. <productMenu id="sip"
  2560. type="1" >
  2561. </productMenu>
  2562. <productMenu id="bluetoothIntercom"
  2563. type="1" >
  2564. </productMenu>
  2565. <productMenu id="intercomSetting"
  2566. type="1" >
  2567. </productMenu>
  2568. <productMenu id="phone"
  2569. type="2" >
  2570. </productMenu>
  2571. <productMenu id="fmradio"
  2572. type="3" >
  2573. </productMenu>
  2574. <productMenu id="deviceSetting"
  2575. type="1"
  2576. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2577. </productMenu>
  2578. <productMenu id="quickGuide"
  2579. type="1"
  2580. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  2581. size="794KB" >
  2582. </productMenu>
  2583. <productMenu id="userGuide"
  2584. type="1"
  2585. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  2586. size="1.53MB" >
  2587. </productMenu>
  2588. <productID id="4430"
  2589. />
  2590. <productGroupable type="1"
  2591. />
  2592. </product>
  2593. <product id="Momentum_Lite"
  2594. name="Momentum Lite"
  2595. series="Helmet"
  2596. latestVersion="2.0.3"
  2597. show = "1" >
  2598. <productMenu id="protocol"
  2599. type="0">
  2600. </productMenu>
  2601. <productMenu id="sip"
  2602. type="1" >
  2603. </productMenu>
  2604. <productMenu id="bluetoothIntercom"
  2605. type="1" >
  2606. </productMenu>
  2607. <productMenu id="phone"
  2608. type="2" >
  2609. </productMenu>
  2610. <productMenu id="fmradio"
  2611. type="3" >
  2612. </productMenu>
  2613. <productMenu id="deviceSetting"
  2614. type="1"
  2615. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2616. <productMenuURL version="1.1"
  2617. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  2618. />
  2619. </productMenu>
  2620. <productMenu id="quickGuide"
  2621. type="1"
  2622. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  2623. size="790KB" >
  2624. </productMenu>
  2625. <productMenu id="userGuide"
  2626. type="1"
  2627. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  2628. size="1.42MB" >
  2629. </productMenu>
  2630. <productID id="5526"
  2631. />
  2632. <productGroupable type="0"
  2633. />
  2634. </product>
  2635. <product id="OUTRUSHM"
  2636. name="OUTRUSH M"
  2637. series="Helmet"
  2638. latestVersion="1.0"
  2639. show = "0" >
  2640. <productMenu id="protocol"
  2641. type="2" >
  2642. </productMenu>
  2643. <productMenu id="alexa"
  2644. type="0" >
  2645. </productMenu>
  2646. <productMenu id="ota"
  2647. type="0" >
  2648. </productMenu>
  2649. <productMenu id="wa"
  2650. type="0" >
  2651. </productMenu>
  2652. <productMenu id="meshIntercom"
  2653. type="30" >
  2654. </productMenu>
  2655. <productMenu id="phone"
  2656. type="1" >
  2657. </productMenu>
  2658. <productMenu id="music"
  2659. type="1" >
  2660. </productMenu>
  2661. <productMenu id="fmradio"
  2662. type="1" >
  2663. </productMenu>
  2664. <productMenu id="deviceSetting"
  2665. type="1"
  2666. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  2667. </productMenu>
  2668. <productMenu id="quickGuide"
  2669. type="1"
  2670. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2671. size="1.12MB" >
  2672. </productMenu>
  2673. <productMenu id="userGuide"
  2674. type="1"
  2675. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2676. size="2.0MB" >
  2677. </productMenu>
  2678. <productMenu id="volume"
  2679. type="13" >
  2680. </productMenu>
  2681. <productMenu id="battery"
  2682. type="1" >
  2683. </productMenu>
  2684. <productID id="5600"
  2685. />
  2686. <productGroupable type="0"
  2687. />
  2688. </product>
  2689. <product id="ProRideEVO"
  2690. name="ProRide EVO"
  2691. series="Helmet"
  2692. latestVersion="1.1.2"
  2693. show = "1" >
  2694. <productMenu id="protocol"
  2695. type="0">
  2696. </productMenu>
  2697. <productMenu id="sip"
  2698. type="1" >
  2699. </productMenu>
  2700. <productMenu id="bluetoothIntercom"
  2701. type="1" >
  2702. </productMenu>
  2703. <productMenu id="phone"
  2704. type="2" >
  2705. </productMenu>
  2706. <productMenu id="fmradio"
  2707. type="3" >
  2708. </productMenu>
  2709. <productMenu id="deviceSetting"
  2710. type="1"
  2711. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  2712. </productMenu>
  2713. <productMenu id="userGuide"
  2714. type="1"
  2715. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  2716. size="778KB" >
  2717. </productMenu>
  2718. <productID id="5426"
  2719. />
  2720. <productGroupable type="0"
  2721. />
  2722. </product>
  2723. <product id="OUTRUSHR"
  2724. name="OUTRUSH R"
  2725. series="Helmet"
  2726. latestVersion="2.0"
  2727. show = "0" >
  2728. <productMenu id="protocol"
  2729. type="3" >
  2730. </productMenu>
  2731. <productMenu id="sip"
  2732. type="1" >
  2733. </productMenu>
  2734. <productMenu id="bluetoothIntercom"
  2735. type="1" >
  2736. </productMenu>
  2737. <productMenu id="phone"
  2738. type="1" >
  2739. </productMenu>
  2740. <productMenu id="fmradio"
  2741. type="0" >
  2742. </productMenu>
  2743. <productMenu id="deviceSetting"
  2744. type="1"
  2745. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  2746. </productMenu>
  2747. <productMenu id="userGuide"
  2748. type="1"
  2749. url=""
  2750. size="1.14MB" >
  2751. </productMenu>
  2752. <productID id="5440"
  2753. />
  2754. <productGroupable type="0"
  2755. />
  2756. </product>
  2757. <product id="OUTRUSHR"
  2758. name="OUTRUSH R"
  2759. series="Helmet"
  2760. latestVersion="1.1.3"
  2761. show = "1" >
  2762. <productMenu id="protocol"
  2763. type="0">
  2764. </productMenu>
  2765. <productMenu id="sip"
  2766. type="1" >
  2767. </productMenu>
  2768. <productMenu id="bluetoothIntercom"
  2769. type="1" >
  2770. </productMenu>
  2771. <productMenu id="phone"
  2772. type="2" >
  2773. </productMenu>
  2774. <productMenu id="fmradio"
  2775. type="3" >
  2776. </productMenu>
  2777. <productMenu id="deviceSetting"
  2778. type="1"
  2779. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  2780. </productMenu>
  2781. <productMenu id="userGuide"
  2782. type="1"
  2783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH_R_1.2.0_en_230705.pdf"
  2784. size="660KB" >
  2785. </productMenu>
  2786. <productID id="5424"
  2787. />
  2788. <productGroupable type="0"
  2789. />
  2790. </product>
  2791. <product id="OUTSTARS"
  2792. name="OUTSTAR S"
  2793. series="Helmet"
  2794. latestVersion="2.0"
  2795. show = "0" >
  2796. <productMenu id="protocol"
  2797. type="3" >
  2798. </productMenu>
  2799. <productMenu id="sip"
  2800. type="1" >
  2801. </productMenu>
  2802. <productMenu id="bluetoothIntercom"
  2803. type="1" >
  2804. </productMenu>
  2805. <productMenu id="phone"
  2806. type="1" >
  2807. </productMenu>
  2808. <productMenu id="fmradio"
  2809. type="0" >
  2810. </productMenu>
  2811. <productMenu id="deviceSetting"
  2812. type="1"
  2813. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  2814. </productMenu>
  2815. <productMenu id="userGuide"
  2816. type="1"
  2817. url=""
  2818. size="1.14MB" >
  2819. </productMenu>
  2820. <productID id="5443"
  2821. />
  2822. <productGroupable type="0"
  2823. />
  2824. </product>
  2825. <product id="OUTSTARS"
  2826. name="OUTSTAR S"
  2827. series="Helmet"
  2828. latestVersion="1.1.3"
  2829. show = "1" >
  2830. <productMenu id="protocol"
  2831. type="0">
  2832. </productMenu>
  2833. <productMenu id="sip"
  2834. type="1" >
  2835. </productMenu>
  2836. <productMenu id="bluetoothIntercom"
  2837. type="1" >
  2838. </productMenu>
  2839. <productMenu id="phone"
  2840. type="2" >
  2841. </productMenu>
  2842. <productMenu id="fmradio"
  2843. type="3" >
  2844. </productMenu>
  2845. <productMenu id="deviceSetting"
  2846. type="1"
  2847. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2848. </productMenu>
  2849. <productMenu id="quickGuide"
  2850. type="1"
  2851. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2852. size="643KB" >
  2853. </productMenu>
  2854. <productMenu id="userGuide"
  2855. type="1"
  2856. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  2857. size="1.15MB" >
  2858. </productMenu>
  2859. <productID id="5428"
  2860. />
  2861. <productGroupable type="0"
  2862. />
  2863. </product>
  2864. <product id="OUTRIDE"
  2865. name="OUTRIDE"
  2866. series="Helmet"
  2867. latestVersion="1.0.1"
  2868. show = "1" >
  2869. <productMenu id="protocol"
  2870. type="0">
  2871. </productMenu>
  2872. <productMenu id="sip"
  2873. type="1" >
  2874. </productMenu>
  2875. <productMenu id="bluetoothIntercom"
  2876. type="1" >
  2877. </productMenu>
  2878. <productMenu id="phone"
  2879. type="2" >
  2880. </productMenu>
  2881. <productMenu id="fmradio"
  2882. type="3" >
  2883. </productMenu>
  2884. <productMenu id="deviceSetting"
  2885. type="1"
  2886. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2887. </productMenu>
  2888. <productMenu id="quickGuide"
  2889. type="1"
  2890. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  2891. size="643KB" >
  2892. </productMenu>
  2893. <productMenu id="userGuide"
  2894. type="1"
  2895. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  2896. size="660KB" >
  2897. </productMenu>
  2898. <productID id="5432"
  2899. />
  2900. <productGroupable type="0"
  2901. />
  2902. </product>
  2903. <product id="OUTFORCE"
  2904. name="OUTFORCE"
  2905. series="Helmet"
  2906. latestVersion="1.0.1"
  2907. show = "1" >
  2908. <productMenu id="protocol"
  2909. type="0">
  2910. </productMenu>
  2911. <productMenu id="sip"
  2912. type="1" >
  2913. </productMenu>
  2914. <productMenu id="bluetoothIntercom"
  2915. type="1" >
  2916. </productMenu>
  2917. <productMenu id="phone"
  2918. type="2" >
  2919. </productMenu>
  2920. <productMenu id="fmradio"
  2921. type="3" >
  2922. </productMenu>
  2923. <productMenu id="deviceSetting"
  2924. type="1"
  2925. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  2926. </productMenu>
  2927. <productMenu id="quickGuide"
  2928. type="1"
  2929. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  2930. size="643KB" >
  2931. </productMenu>
  2932. <productMenu id="userGuide"
  2933. type="1"
  2934. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  2935. size="660KB" >
  2936. </productMenu>
  2937. <productID id="5430"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="Rumba"
  2943. name="Rumba"
  2944. series="30"
  2945. latestVersion="2.0"
  2946. show = "0" >
  2947. <productMenu id="protocol"
  2948. type="3" >
  2949. </productMenu>
  2950. <productMenu id="sip"
  2951. type="1" >
  2952. </productMenu>
  2953. <productMenu id="bluetoothIntercom"
  2954. type="1" >
  2955. </productMenu>
  2956. <productMenu id="deviceSetting"
  2957. type="1"
  2958. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  2959. </productMenu>
  2960. <productMenu id="quickGuide"
  2961. type="1"
  2962. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  2963. size="344KB" >
  2964. </productMenu>
  2965. <productMenu id="userGuide"
  2966. type="1"
  2967. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  2968. size="1.14MB" >
  2969. </productMenu>
  2970. <productID id="6322"
  2971. />
  2972. <productGroupable type="0"
  2973. />
  2974. </product>
  2975. <product id="Savage"
  2976. name="Savage"
  2977. series="Helmet"
  2978. latestVersion="1.2.2"
  2979. show = "1" >
  2980. <productMenu id="protocol"
  2981. type="0">
  2982. </productMenu>
  2983. <productMenu id="sip"
  2984. type="1" >
  2985. </productMenu>
  2986. <productMenu id="bluetoothIntercom"
  2987. type="1" >
  2988. </productMenu>
  2989. <productMenu id="phone"
  2990. type="2" >
  2991. </productMenu>
  2992. <productMenu id="fmradio"
  2993. type="3" >
  2994. </productMenu>
  2995. <productMenu id="deviceSetting"
  2996. type="1"
  2997. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  2998. <productMenuURL version="1.9"
  2999. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3000. />
  3001. <productMenuURL version="1.1"
  3002. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3003. />
  3004. </productMenu>
  3005. <productMenu id="quickGuide"
  3006. type="1"
  3007. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3008. size="796KB" >
  3009. </productMenu>
  3010. <productMenu id="userGuide"
  3011. type="1"
  3012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3013. size="910KB" >
  3014. </productMenu>
  3015. <productID id="5550"
  3016. />
  3017. <productGroupable type="0"
  3018. />
  3019. </product>
  3020. <product id="SURGE"
  3021. name="SURGE"
  3022. series="Helmet"
  3023. latestVersion="1.0.1"
  3024. latestVersionVoicePrompt="0.8"
  3025. show = "-1" >
  3026. <productMenu id="protocol"
  3027. type="2" >
  3028. </productMenu>
  3029. <productMenu id="alexa"
  3030. type="0" >
  3031. </productMenu>
  3032. <productMenu id="ota"
  3033. type="2" >
  3034. <otaPackages>
  3035. <package
  3036. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.0.1-build0.img"
  3037. size="2945812"
  3038. />
  3039. </otaPackages>
  3040. </productMenu>
  3041. <productMenu id="meshIntercom"
  3042. type="30" >
  3043. </productMenu>
  3044. <productMenu id="phone"
  3045. type="1" >
  3046. </productMenu>
  3047. <productMenu id="music"
  3048. type="1" >
  3049. </productMenu>
  3050. <productMenu id="musicSharing"
  3051. type="0" >
  3052. </productMenu>
  3053. <productMenu id="deviceSetting"
  3054. type="1"
  3055. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml" >
  3056. </productMenu>
  3057. <productMenu id="quickGuide"
  3058. type="1"
  3059. url=""
  3060. size="1.12MB" >
  3061. </productMenu>
  3062. <productMenu id="userGuide"
  3063. type="1"
  3064. url=""
  3065. size="2.0MB" >
  3066. </productMenu>
  3067. <productMenu id="volume"
  3068. type="12" >
  3069. </productMenu>
  3070. <productMenu id="battery"
  3071. type="1" >
  3072. </productMenu>
  3073. <productID id="6840"
  3074. />
  3075. <productGroupable type="0"
  3076. />
  3077. </product>
  3078. <product id="Cavalry2"
  3079. name="Cavalry 2"
  3080. series="Helmet"
  3081. latestVersion="1.0.1"
  3082. latestVersionVoicePrompt="0.8"
  3083. show = "1" >
  3084. <productMenu id="protocol"
  3085. type="2" >
  3086. </productMenu>
  3087. <productMenu id="alexa"
  3088. type="0" >
  3089. </productMenu>
  3090. <productMenu id="ota"
  3091. type="2" >
  3092. <otaPackages>
  3093. <package
  3094. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.0.1-build0.img"
  3095. size="3144148"
  3096. />
  3097. </otaPackages>
  3098. </productMenu>
  3099. <productMenu id="wa"
  3100. type="0" >
  3101. </productMenu>
  3102. <productMenu id="meshIntercom"
  3103. type="30" >
  3104. </productMenu>
  3105. <productMenu id="phone"
  3106. type="1" >
  3107. </productMenu>
  3108. <productMenu id="music"
  3109. type="1" >
  3110. </productMenu>
  3111. <productMenu id="musicSharing"
  3112. type="0" >
  3113. </productMenu>
  3114. <productMenu id="deviceSetting"
  3115. type="1"
  3116. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  3117. <productMenuURL version="1.0"
  3118. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  3119. />
  3120. </productMenu>
  3121. <productMenu id="quickGuide"
  3122. type="0"
  3123. url=""
  3124. size="1.12MB" >
  3125. </productMenu>
  3126. <productMenu id="userGuide"
  3127. type="1"
  3128. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.0.0_en_240827.pdf"
  3129. size="2.0MB" >
  3130. </productMenu>
  3131. <productMenu id="volume"
  3132. type="12" >
  3133. </productMenu>
  3134. <productMenu id="battery"
  3135. type="1" >
  3136. </productMenu>
  3137. <productID id="6839"
  3138. />
  3139. <productGroupable type="0"
  3140. />
  3141. </product>
  3142. <product id="Cavalry"
  3143. name="Cavalry"
  3144. series="Helmet"
  3145. latestVersion="1.2.2"
  3146. show = "1" >
  3147. <productMenu id="protocol"
  3148. type="0">
  3149. </productMenu>
  3150. <productMenu id="sip"
  3151. type="1" >
  3152. </productMenu>
  3153. <productMenu id="bluetoothIntercom"
  3154. type="1" >
  3155. </productMenu>
  3156. <productMenu id="phone"
  3157. type="2" >
  3158. </productMenu>
  3159. <productMenu id="fmradio"
  3160. type="3" >
  3161. </productMenu>
  3162. <productMenu id="deviceSetting"
  3163. type="1"
  3164. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  3165. <productMenuURL version="1.9"
  3166. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  3167. />
  3168. <productMenuURL version="1.0.1"
  3169. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  3170. />
  3171. </productMenu>
  3172. <productMenu id="quickGuide"
  3173. type="1"
  3174. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  3175. size="795KB" >
  3176. </productMenu>
  3177. <productMenu id="userGuide"
  3178. type="1"
  3179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  3180. size="1.87MB" >
  3181. </productMenu>
  3182. <productID id="5524"
  3183. />
  3184. <productGroupable type="0"
  3185. />
  3186. </product>
  3187. <product id="Cavalry_Lite"
  3188. name="Cavalry Lite"
  3189. series="Helmet"
  3190. latestVersion="1.0.2"
  3191. show = "1" >
  3192. <productMenu id="protocol"
  3193. type="0">
  3194. </productMenu>
  3195. <productMenu id="sip"
  3196. type="1" >
  3197. </productMenu>
  3198. <productMenu id="bluetoothIntercom"
  3199. type="1" >
  3200. </productMenu>
  3201. <productMenu id="phone"
  3202. type="2" >
  3203. </productMenu>
  3204. <productMenu id="fmradio"
  3205. type="3" >
  3206. </productMenu>
  3207. <productMenu id="deviceSetting"
  3208. type="1"
  3209. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  3210. </productMenu>
  3211. <productMenu id="userGuide"
  3212. type="1"
  3213. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  3214. size="1.74MB" >
  3215. </productMenu>
  3216. <productID id="5536"
  3217. />
  3218. <productGroupable type="0"
  3219. />
  3220. </product>
  3221. <product id="SF4"
  3222. name="SF4"
  3223. series="SF"
  3224. latestVersion="1.1.5"
  3225. show = "1" >
  3226. <productMenu id="protocol"
  3227. type="1"
  3228. url="3">
  3229. </productMenu>
  3230. <productMenu id="sip"
  3231. type="1" >
  3232. </productMenu>
  3233. <productMenu id="bluetoothIntercom"
  3234. type="1" >
  3235. </productMenu>
  3236. <productMenu id="phone"
  3237. type="1" >
  3238. </productMenu>
  3239. <productMenu id="music"
  3240. type="1" >
  3241. </productMenu>
  3242. <productMenu id="fmradio"
  3243. type="1" >
  3244. </productMenu>
  3245. <productMenu id="deviceSetting"
  3246. type="1"
  3247. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3248. <productMenuURL version="1.0.1"
  3249. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3250. />
  3251. </productMenu>
  3252. <productMenu id="quickGuide"
  3253. type="1"
  3254. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  3255. size="607KB" >
  3256. </productMenu>
  3257. <productMenu id="userGuide"
  3258. type="1"
  3259. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  3260. size="1.91MB" >
  3261. </productMenu>
  3262. <productMenu id="volume"
  3263. type="4" >
  3264. </productMenu>
  3265. <productID id="5414"
  3266. />
  3267. <productGroupable type="0"
  3268. />
  3269. </product>
  3270. <product id="SF4"
  3271. name="SF4"
  3272. series="SF"
  3273. latestVersion="3.2"
  3274. show = "0" >
  3275. <productMenu id="protocol"
  3276. type="2" >
  3277. </productMenu>
  3278. <productMenu id="sip"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="bluetoothIntercom"
  3282. type="1" >
  3283. </productMenu>
  3284. <productMenu id="phone"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="music"
  3288. type="1" >
  3289. </productMenu>
  3290. <productMenu id="fmradio"
  3291. type="1" >
  3292. </productMenu>
  3293. <productMenu id="deviceSetting"
  3294. type="1"
  3295. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  3296. <productMenuURL version="3.0"
  3297. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  3298. />
  3299. </productMenu>
  3300. <productMenu id="quickGuide"
  3301. type="1"
  3302. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_2.1.0_en_230704.pdf"
  3303. size="934KB" >
  3304. </productMenu>
  3305. <productMenu id="userGuide"
  3306. type="1"
  3307. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  3308. size="1.14MB" >
  3309. </productMenu>
  3310. <productMenu id="volume"
  3311. type="15" >
  3312. </productMenu>
  3313. <productID id="3370"
  3314. />
  3315. <productGroupable type="0"
  3316. />
  3317. </product>
  3318. <product id="SF2"
  3319. name="SF2"
  3320. series="SF"
  3321. latestVersion="1.2.1"
  3322. show = "1" >
  3323. <productMenu id="protocol"
  3324. type="1"
  3325. url="2">
  3326. </productMenu>
  3327. <productMenu id="sip"
  3328. type="1" >
  3329. </productMenu>
  3330. <productMenu id="bluetoothIntercom"
  3331. type="1" >
  3332. </productMenu>
  3333. <productMenu id="phone"
  3334. type="1" >
  3335. </productMenu>
  3336. <productMenu id="music"
  3337. type="1" >
  3338. </productMenu>
  3339. <productMenu id="fmradio"
  3340. type="1" >
  3341. </productMenu>
  3342. <productMenu id="deviceSetting"
  3343. type="1"
  3344. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3345. <productMenuURL version="1.0.1"
  3346. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3347. />
  3348. </productMenu>
  3349. <productMenu id="quickGuide"
  3350. type="1"
  3351. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  3352. size="607KB" >
  3353. </productMenu>
  3354. <productMenu id="userGuide"
  3355. type="1"
  3356. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  3357. size="1.91MB" >
  3358. </productMenu>
  3359. <productMenu id="volume"
  3360. type="4" >
  3361. </productMenu>
  3362. <productID id="5412"
  3363. />
  3364. <productGroupable type="0"
  3365. />
  3366. </product>
  3367. <product id="SF2"
  3368. name="SF2"
  3369. series="SF"
  3370. latestVersion="3.2"
  3371. show = "0" >
  3372. <productMenu id="protocol"
  3373. type="2" >
  3374. </productMenu>
  3375. <productMenu id="sip"
  3376. type="1" >
  3377. </productMenu>
  3378. <productMenu id="bluetoothIntercom"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="phone"
  3382. type="1" >
  3383. </productMenu>
  3384. <productMenu id="music"
  3385. type="1" >
  3386. </productMenu>
  3387. <productMenu id="fmradio"
  3388. type="0" >
  3389. </productMenu>
  3390. <productMenu id="deviceSetting"
  3391. type="1"
  3392. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  3393. <productMenuURL version="3.0"
  3394. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  3395. />
  3396. </productMenu>
  3397. <productMenu id="quickGuide"
  3398. type="1"
  3399. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_2.1.0_en_230704.pdf"
  3400. size="934KB" >
  3401. </productMenu>
  3402. <productMenu id="userGuide"
  3403. type="1"
  3404. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  3405. size="1.14MB" >
  3406. </productMenu>
  3407. <productMenu id="volume"
  3408. type="15" >
  3409. </productMenu>
  3410. <productID id="3360"
  3411. />
  3412. <productGroupable type="0"
  3413. />
  3414. </product>
  3415. <product id="SF1"
  3416. name="SF1"
  3417. series="SF"
  3418. latestVersion="2.0.5"
  3419. show = "1" >
  3420. <productMenu id="protocol"
  3421. type="1"
  3422. url="1">
  3423. </productMenu>
  3424. <productMenu id="sip"
  3425. type="1" >
  3426. </productMenu>
  3427. <productMenu id="bluetoothIntercom"
  3428. type="1" >
  3429. <productMenuType version="1.1"
  3430. type="0"
  3431. />
  3432. </productMenu>
  3433. <productMenu id="phone"
  3434. type="1" >
  3435. </productMenu>
  3436. <productMenu id="music"
  3437. type="1" >
  3438. </productMenu>
  3439. <productMenu id="deviceSetting"
  3440. type="1"
  3441. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  3442. <productMenuURL version="1.1"
  3443. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  3444. />
  3445. <productMenuURL version="1.0"
  3446. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  3447. />
  3448. </productMenu>
  3449. <productMenu id="quickGuide"
  3450. type="1"
  3451. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  3452. size="401KB" >
  3453. </productMenu>
  3454. <productMenu id="userGuide"
  3455. type="1"
  3456. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.3.0_en_230704.pdf"
  3457. size="1.91MB" >
  3458. </productMenu>
  3459. <productMenu id="volume"
  3460. type="3" >
  3461. </productMenu>
  3462. <productID id="5410"
  3463. />
  3464. <productGroupable type="0"
  3465. />
  3466. </product>
  3467. <product id="SF1"
  3468. name="SF1"
  3469. series="SF"
  3470. latestVersion="3.2"
  3471. show = "0" >
  3472. <productMenu id="protocol"
  3473. type="2" >
  3474. </productMenu>
  3475. <productMenu id="sip"
  3476. type="1" >
  3477. </productMenu>
  3478. <productMenu id="bluetoothIntercom"
  3479. type="1" >
  3480. </productMenu>
  3481. <productMenu id="phone"
  3482. type="1" >
  3483. </productMenu>
  3484. <productMenu id="music"
  3485. type="1" >
  3486. </productMenu>
  3487. <productMenu id="fmradio"
  3488. type="0" >
  3489. </productMenu>
  3490. <productMenu id="deviceSetting"
  3491. type="1"
  3492. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  3493. <productMenuURL version="3.0"
  3494. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  3495. />
  3496. </productMenu>
  3497. <productMenu id="quickGuide"
  3498. type="1"
  3499. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_3.1.0_en_230704.pdf"
  3500. size="934KB" >
  3501. </productMenu>
  3502. <productMenu id="userGuide"
  3503. type="1"
  3504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.2.0_en_230704.pdf"
  3505. size="1.14MB" >
  3506. </productMenu>
  3507. <productMenu id="volume"
  3508. type="15" >
  3509. </productMenu>
  3510. <productID id="3350"
  3511. />
  3512. <productGroupable type="0"
  3513. />
  3514. </product>
  3515. <product id="SFR"
  3516. name="SFR"
  3517. series="SF"
  3518. latestVersion="1.1.1"
  3519. show = "1" >
  3520. <productMenu id="protocol"
  3521. type="1"
  3522. url="3">
  3523. </productMenu>
  3524. <productMenu id="sip"
  3525. type="1" >
  3526. </productMenu>
  3527. <productMenu id="bluetoothIntercom"
  3528. type="1" >
  3529. </productMenu>
  3530. <productMenu id="phone"
  3531. type="1" >
  3532. </productMenu>
  3533. <productMenu id="music"
  3534. type="1" >
  3535. </productMenu>
  3536. <productMenu id="fmradio"
  3537. type="1" >
  3538. </productMenu>
  3539. <productMenu id="deviceSetting"
  3540. type="1"
  3541. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3542. </productMenu>
  3543. <productMenu id="quickGuide"
  3544. type="1"
  3545. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  3546. size="607KB" >
  3547. </productMenu>
  3548. <productMenu id="userGuide"
  3549. type="1"
  3550. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  3551. size="1.91MB" >
  3552. </productMenu>
  3553. <productMenu id="volume"
  3554. type="4" >
  3555. </productMenu>
  3556. <productID id="5418"
  3557. />
  3558. <productGroupable type="0"
  3559. />
  3560. </product>
  3561. <product id="20S"
  3562. name="20S"
  3563. series="20"
  3564. latestVersion="2.2.2"
  3565. show = "1" >
  3566. <productMenu id="protocol"
  3567. type="0">
  3568. </productMenu>
  3569. <productMenu id="wa"
  3570. type="5" >
  3571. </productMenu>
  3572. <productMenu id="sip"
  3573. type="1" >
  3574. <productMenuType version="1.0"
  3575. type="0"
  3576. />
  3577. </productMenu>
  3578. <productMenu id="bluetoothIntercom"
  3579. type="1" >
  3580. <productMenuType version="1.0"
  3581. type="0"
  3582. />
  3583. </productMenu>
  3584. <productMenu id="intercomSetting"
  3585. type="1" >
  3586. </productMenu>
  3587. <productMenu id="phone"
  3588. type="2" >
  3589. </productMenu>
  3590. <productMenu id="fmradio"
  3591. type="3" >
  3592. </productMenu>
  3593. <productMenu id="deviceSetting"
  3594. type="1"
  3595. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3596. <productMenuURL version="2.0.2"
  3597. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3598. />
  3599. <productMenuURL version="1.5"
  3600. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3601. />
  3602. <productMenuURL version="1.4.1"
  3603. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3604. />
  3605. <productMenuURL version="1.1"
  3606. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3607. />
  3608. <productMenuURL version="1.0"
  3609. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3610. />
  3611. </productMenu>
  3612. <productMenu id="quickGuide"
  3613. type="1"
  3614. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3615. size="264KB" >
  3616. </productMenu>
  3617. <productMenu id="userGuide"
  3618. type="1"
  3619. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3620. size="3.09MB" >
  3621. </productMenu>
  3622. <productID id="4210"
  3623. />
  3624. <productGroupable type="1"
  3625. />
  3626. </product>
  3627. <product id="20S_EVO"
  3628. name="20S EVO"
  3629. series="20"
  3630. latestVersion="2.2.2"
  3631. show = "1" >
  3632. <productMenu id="protocol"
  3633. type="0">
  3634. </productMenu>
  3635. <productMenu id="wa"
  3636. type="5" >
  3637. </productMenu>
  3638. <productMenu id="sip"
  3639. type="1" >
  3640. <productMenuType version="1.0"
  3641. type="0"
  3642. />
  3643. </productMenu>
  3644. <productMenu id="bluetoothIntercom"
  3645. type="1" >
  3646. <productMenuType version="1.0"
  3647. type="0"
  3648. />
  3649. </productMenu>
  3650. <productMenu id="intercomSetting"
  3651. type="1" >
  3652. </productMenu>
  3653. <productMenu id="phone"
  3654. type="2" >
  3655. </productMenu>
  3656. <productMenu id="fmradio"
  3657. type="3" >
  3658. </productMenu>
  3659. <productMenu id="deviceSetting"
  3660. type="1"
  3661. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3662. <productMenuURL version="2.0.2"
  3663. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3664. />
  3665. <productMenuURL version="1.5"
  3666. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3667. />
  3668. <productMenuURL version="1.4.1"
  3669. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3670. />
  3671. <productMenuURL version="1.1"
  3672. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3673. />
  3674. <productMenuURL version="1.0"
  3675. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3676. />
  3677. </productMenu>
  3678. <productMenu id="quickGuide"
  3679. type="1"
  3680. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3681. size="264KB" >
  3682. </productMenu>
  3683. <productMenu id="userGuide"
  3684. type="1"
  3685. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3686. size="3.09MB" >
  3687. </productMenu>
  3688. <productID id="4210"
  3689. />
  3690. <productProductKey key="16"
  3691. />
  3692. <productGroupable type="1"
  3693. />
  3694. </product>
  3695. <product id="10S"
  3696. name="10S"
  3697. series="10"
  3698. latestVersion="3.0.1"
  3699. show = "0" >
  3700. <productMenu id="protocol"
  3701. type="3" >
  3702. </productMenu>
  3703. <productMenu id="sip"
  3704. type="1" >
  3705. </productMenu>
  3706. <productMenu id="bluetoothIntercom"
  3707. type="1" >
  3708. </productMenu>
  3709. <productMenu id="phone"
  3710. type="1" >
  3711. </productMenu>
  3712. <productMenu id="deviceSetting"
  3713. type="1"
  3714. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  3715. </productMenu>
  3716. <productMenu id="quickGuide"
  3717. type="1"
  3718. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  3719. size="934KB" >
  3720. </productMenu>
  3721. <productMenu id="userGuide"
  3722. type="1"
  3723. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.0.2_en_240719.pdf"
  3724. size="1.14MB" >
  3725. </productMenu>
  3726. <productID id="3380"
  3727. />
  3728. <productGroupable type="0"
  3729. />
  3730. </product>
  3731. <product id="10S"
  3732. name="10S"
  3733. series="10"
  3734. latestVersion="2.1.1"
  3735. show = "1" >
  3736. <productMenu id="protocol"
  3737. type="0">
  3738. </productMenu>
  3739. <productMenu id="sip"
  3740. type="1" >
  3741. </productMenu>
  3742. <productMenu id="bluetoothIntercom"
  3743. type="1" >
  3744. </productMenu>
  3745. <productMenu id="phone"
  3746. type="2" >
  3747. </productMenu>
  3748. <productMenu id="fmradio"
  3749. type="3" >
  3750. </productMenu>
  3751. <productMenu id="deviceSetting"
  3752. type="1"
  3753. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  3754. <productMenuURL version="1.5"
  3755. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  3756. />
  3757. <productMenuURL version="1.3.1"
  3758. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  3759. />
  3760. </productMenu>
  3761. <productMenu id="quickGuide"
  3762. type="1"
  3763. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  3764. size="310KB" >
  3765. </productMenu>
  3766. <productMenu id="userGuide"
  3767. type="1"
  3768. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.3.0_en_230623.pdf"
  3769. size="1.57MB" >
  3770. </productMenu>
  3771. <productID id="5530"
  3772. />
  3773. <productGroupable type="0"
  3774. />
  3775. </product>
  3776. <product id="10R"
  3777. name="10R"
  3778. series="10"
  3779. latestVersion="2.1.1"
  3780. show = "1" >
  3781. <productMenu id="protocol"
  3782. type="0">
  3783. </productMenu>
  3784. <productMenu id="sip"
  3785. type="1" >
  3786. <productMenuType version="1.0.2"
  3787. type="0"
  3788. />
  3789. </productMenu>
  3790. <productMenu id="bluetoothIntercom"
  3791. type="1" >
  3792. <productMenuType version="1.0.2"
  3793. type="0"
  3794. />
  3795. </productMenu>
  3796. <productMenu id="phone"
  3797. type="2" >
  3798. </productMenu>
  3799. <productMenu id="fmradio"
  3800. type="3" >
  3801. </productMenu>
  3802. <productMenu id="deviceSetting"
  3803. type="1"
  3804. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  3805. <productMenuURL version="1.4"
  3806. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  3807. />
  3808. <productMenuURL version="1.2.1"
  3809. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  3810. />
  3811. <productMenuURL version="1.0.2"
  3812. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  3813. />
  3814. <productMenuURL version="1.0"
  3815. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  3816. />
  3817. </productMenu>
  3818. <productMenu id="quickGuide"
  3819. type="1"
  3820. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  3821. size="400KB" >
  3822. </productMenu>
  3823. <productMenu id="userGuide"
  3824. type="1"
  3825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  3826. size="2.75MB" >
  3827. </productMenu>
  3828. <productID id="5520"
  3829. />
  3830. <productGroupable type="0"
  3831. />
  3832. </product>
  3833. <product id="10C_EVO"
  3834. name="10C EVO"
  3835. series="10"
  3836. latestVersion="1.7"
  3837. show = "1" >
  3838. <productMenu id="protocol"
  3839. type="0">
  3840. </productMenu>
  3841. <productMenu id="sip"
  3842. type="1" >
  3843. </productMenu>
  3844. <productMenu id="bluetoothIntercom"
  3845. type="1" >
  3846. </productMenu>
  3847. <productMenu id="phone"
  3848. type="2" >
  3849. </productMenu>
  3850. <productMenu id="fmradio"
  3851. type="3" >
  3852. </productMenu>
  3853. <productMenu id="deviceSetting"
  3854. type="1"
  3855. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  3856. <productMenuURL version="1.3.1"
  3857. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3858. />
  3859. </productMenu>
  3860. <productMenu id="quickGuide"
  3861. type="1"
  3862. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  3863. size="1.32MB" >
  3864. </productMenu>
  3865. <productMenu id="userGuide"
  3866. type="1"
  3867. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  3868. size="1.68MB" >
  3869. </productMenu>
  3870. <productID id="5570"
  3871. />
  3872. <productGroupable type="0"
  3873. />
  3874. </product>
  3875. <product id="10C_Pro"
  3876. name="10C Pro"
  3877. series="10"
  3878. latestVersion="2.7.1"
  3879. show = "1" >
  3880. <productMenu id="protocol"
  3881. type="0">
  3882. </productMenu>
  3883. <productMenu id="sip"
  3884. type="1" >
  3885. </productMenu>
  3886. <productMenu id="bluetoothIntercom"
  3887. type="1" >
  3888. </productMenu>
  3889. <productMenu id="phone"
  3890. type="2" >
  3891. </productMenu>
  3892. <productMenu id="fmradio"
  3893. type="3" >
  3894. </productMenu>
  3895. <productMenu id="deviceSetting"
  3896. type="1"
  3897. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  3898. <productMenuURL version="2.5.1"
  3899. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  3900. />
  3901. <productMenuURL version="1.0"
  3902. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  3903. />
  3904. </productMenu>
  3905. <productMenu id="quickGuide"
  3906. type="1"
  3907. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  3908. size="651KB" >
  3909. </productMenu>
  3910. <productMenu id="userGuide"
  3911. type="1"
  3912. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  3913. size="2.34MB" >
  3914. </productMenu>
  3915. <productID id="5580"
  3916. />
  3917. <productGroupable type="0"
  3918. />
  3919. </product>
  3920. <product id="10C"
  3921. name="10C"
  3922. series="10"
  3923. latestVersion="3.0.4"
  3924. show = "1" >
  3925. <productMenu id="protocol"
  3926. type="0">
  3927. </productMenu>
  3928. <productMenu id="sip"
  3929. type="1" >
  3930. <productMenuType version="1.0.4"
  3931. type="0"
  3932. />
  3933. </productMenu>
  3934. <productMenu id="bluetoothIntercom"
  3935. type="1" >
  3936. <productMenuType version="1.0.4"
  3937. type="0"
  3938. />
  3939. </productMenu>
  3940. <productMenu id="phone"
  3941. type="2" >
  3942. </productMenu>
  3943. <productMenu id="fmradio"
  3944. type="3" >
  3945. </productMenu>
  3946. <productMenu id="deviceSetting"
  3947. type="1"
  3948. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  3949. <productMenuURL version="2.3"
  3950. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  3951. />
  3952. <productMenuURL version="2.1.1"
  3953. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  3954. />
  3955. <productMenuURL version="1.0.4"
  3956. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  3957. />
  3958. <productMenuURL version="1.0.2"
  3959. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  3960. />
  3961. </productMenu>
  3962. <productMenu id="quickGuide"
  3963. type="1"
  3964. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  3965. size="935KB" >
  3966. </productMenu>
  3967. <productMenu id="userGuide"
  3968. type="1"
  3969. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  3970. size="2.82MB" >
  3971. </productMenu>
  3972. <productID id="5510"
  3973. />
  3974. <productGroupable type="0"
  3975. />
  3976. </product>
  3977. <product id="10U_GT_AIR"
  3978. name="10U GT-Air"
  3979. series="10"
  3980. latestVersion="2.0.4"
  3981. show = "1" >
  3982. <productMenu id="protocol"
  3983. type="0">
  3984. </productMenu>
  3985. <productMenu id="sip"
  3986. type="1" >
  3987. <productMenuType version="1.0.2"
  3988. type="0"
  3989. />
  3990. </productMenu>
  3991. <productMenu id="bluetoothIntercom"
  3992. type="1" >
  3993. <productMenuType version="1.0.2"
  3994. type="0"
  3995. />
  3996. </productMenu>
  3997. <productMenu id="phone"
  3998. type="2" >
  3999. </productMenu>
  4000. <productMenu id="fmradio"
  4001. type="3" >
  4002. </productMenu>
  4003. <productMenu id="deviceSetting"
  4004. type="1"
  4005. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4006. <productMenuURL version="1.3.2"
  4007. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4008. />
  4009. <productMenuURL version="1.0.2"
  4010. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4011. />
  4012. </productMenu>
  4013. <productMenu id="quickGuide"
  4014. type="1"
  4015. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4016. size="685KB" >
  4017. </productMenu>
  4018. <productMenu id="userGuide"
  4019. type="1"
  4020. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4021. size="684KB" >
  4022. </productMenu>
  4023. <productID id="5610"
  4024. />
  4025. <productGroupable type="0"
  4026. />
  4027. </product>
  4028. <product id="10U_NEOTEC"
  4029. name="10U Neotec"
  4030. series="10"
  4031. latestVersion="2.0.4"
  4032. show = "1" >
  4033. <productMenu id="protocol"
  4034. type="0">
  4035. </productMenu>
  4036. <productMenu id="sip"
  4037. type="1" >
  4038. <productMenuType version="1.0.2"
  4039. type="0"
  4040. />
  4041. </productMenu>
  4042. <productMenu id="bluetoothIntercom"
  4043. type="1" >
  4044. <productMenuType version="1.0.2"
  4045. type="0"
  4046. />
  4047. </productMenu>
  4048. <productMenu id="phone"
  4049. type="2" >
  4050. </productMenu>
  4051. <productMenu id="fmradio"
  4052. type="3" >
  4053. </productMenu>
  4054. <productMenu id="deviceSetting"
  4055. type="1"
  4056. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4057. <productMenuURL version="1.3.2"
  4058. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4059. />
  4060. <productMenuURL version="1.0.2"
  4061. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4062. />
  4063. </productMenu>
  4064. <productMenu id="quickGuide"
  4065. type="1"
  4066. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4067. size="689KB" >
  4068. </productMenu>
  4069. <productMenu id="userGuide"
  4070. type="1"
  4071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4072. size="684KB" >
  4073. </productMenu>
  4074. <productID id="5611"
  4075. />
  4076. <productGroupable type="0"
  4077. />
  4078. </product>
  4079. <product id="10U_J_CRUISE"
  4080. name="10U J-Cruise"
  4081. series="10"
  4082. latestVersion="2.0.4"
  4083. show = "1" >
  4084. <productMenu id="protocol"
  4085. type="0">
  4086. </productMenu>
  4087. <productMenu id="sip"
  4088. type="1" >
  4089. <productMenuType version="1.0.2"
  4090. type="0"
  4091. />
  4092. </productMenu>
  4093. <productMenu id="bluetoothIntercom"
  4094. type="1" >
  4095. <productMenuType version="1.0.2"
  4096. type="0"
  4097. />
  4098. </productMenu>
  4099. <productMenu id="phone"
  4100. type="2" >
  4101. </productMenu>
  4102. <productMenu id="fmradio"
  4103. type="3" >
  4104. </productMenu>
  4105. <productMenu id="deviceSetting"
  4106. type="1"
  4107. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4108. <productMenuURL version="1.3.2"
  4109. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4110. />
  4111. <productMenuURL version="1.0.2"
  4112. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4113. />
  4114. </productMenu>
  4115. <productMenu id="quickGuide"
  4116. type="1"
  4117. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4118. size="686KB" >
  4119. </productMenu>
  4120. <productMenu id="userGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4123. size="684KB" >
  4124. </productMenu>
  4125. <productID id="5612"
  4126. />
  4127. <productGroupable type="0"
  4128. />
  4129. </product>
  4130. <product id="10U_C3"
  4131. name="10U C3/C3Pro"
  4132. series="10"
  4133. latestVersion="2.0.4"
  4134. show = "1" >
  4135. <productMenu id="protocol"
  4136. type="0">
  4137. </productMenu>
  4138. <productMenu id="sip"
  4139. type="1" >
  4140. <productMenuType version="1.0.2"
  4141. type="0"
  4142. />
  4143. </productMenu>
  4144. <productMenu id="bluetoothIntercom"
  4145. type="1" >
  4146. <productMenuType version="1.0.2"
  4147. type="0"
  4148. />
  4149. </productMenu>
  4150. <productMenu id="phone"
  4151. type="2" >
  4152. </productMenu>
  4153. <productMenu id="fmradio"
  4154. type="3" >
  4155. </productMenu>
  4156. <productMenu id="deviceSetting"
  4157. type="1"
  4158. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4159. <productMenuURL version="1.3.2"
  4160. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4161. />
  4162. <productMenuURL version="1.0.2"
  4163. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4164. />
  4165. </productMenu>
  4166. <productMenu id="quickGuide"
  4167. type="1"
  4168. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4169. size="199KB" >
  4170. </productMenu>
  4171. <productMenu id="userGuide"
  4172. type="1"
  4173. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4174. size="684KB" >
  4175. </productMenu>
  4176. <productID id="5620"
  4177. />
  4178. <productGroupable type="0"
  4179. />
  4180. </product>
  4181. <product id="10U_ARAI"
  4182. name="10U Arai"
  4183. series="10"
  4184. latestVersion="2.0.4"
  4185. show = "1" >
  4186. <productMenu id="protocol"
  4187. type="0">
  4188. </productMenu>
  4189. <productMenu id="sip"
  4190. type="1" >
  4191. <productMenuType version="1.0.2"
  4192. type="0"
  4193. />
  4194. </productMenu>
  4195. <productMenu id="bluetoothIntercom"
  4196. type="1" >
  4197. <productMenuType version="1.0.2"
  4198. type="0"
  4199. />
  4200. </productMenu>
  4201. <productMenu id="phone"
  4202. type="2" >
  4203. </productMenu>
  4204. <productMenu id="fmradio"
  4205. type="3" >
  4206. </productMenu>
  4207. <productMenu id="deviceSetting"
  4208. type="1"
  4209. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4210. <productMenuURL version="1.3.2"
  4211. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4212. />
  4213. <productMenuURL version="1.0.2"
  4214. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4215. />
  4216. </productMenu>
  4217. <productMenu id="quickGuide"
  4218. type="1"
  4219. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  4220. size="689KB" >
  4221. </productMenu>
  4222. <productMenu id="userGuide"
  4223. type="1"
  4224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4225. size="684KB" >
  4226. </productMenu>
  4227. <productID id="5621"
  4228. />
  4229. <productGroupable type="0"
  4230. />
  4231. </product>
  4232. <product id="10Upad"
  4233. name="10Upad"
  4234. series="10"
  4235. latestVersion="2.0.3"
  4236. show = "1" >
  4237. <productMenu id="protocol"
  4238. type="0">
  4239. </productMenu>
  4240. <productMenu id="sip"
  4241. type="1" >
  4242. </productMenu>
  4243. <productMenu id="bluetoothIntercom"
  4244. type="1" >
  4245. </productMenu>
  4246. <productMenu id="phone"
  4247. type="2" >
  4248. </productMenu>
  4249. <productMenu id="fmradio"
  4250. type="3" >
  4251. </productMenu>
  4252. <productMenu id="deviceSetting"
  4253. type="1"
  4254. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  4255. <productMenuURL version="1.0.3"
  4256. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4257. />
  4258. </productMenu>
  4259. <productMenu id="quickGuide"
  4260. type="1"
  4261. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4262. size="615KB" >
  4263. </productMenu>
  4264. <productMenu id="userGuide"
  4265. type="1"
  4266. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4267. size="0.99MB" >
  4268. </productMenu>
  4269. <productID id="6210"
  4270. />
  4271. <productGroupable type="0"
  4272. />
  4273. </product>
  4274. <product id="5S"
  4275. name="5S"
  4276. series="5"
  4277. latestVersion="2.2.1"
  4278. show = "1" >
  4279. <productMenu id="protocol"
  4280. type="3" >
  4281. </productMenu>
  4282. <productMenu id="sip"
  4283. type="1" >
  4284. </productMenu>
  4285. <productMenu id="bluetoothIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="phone"
  4289. type="1" >
  4290. </productMenu>
  4291. <productMenu id="fmradio"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="deviceSetting"
  4295. type="1"
  4296. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4297. </productMenu>
  4298. <productMenu id="quickGuide"
  4299. type="1"
  4300. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4301. size="934KB" >
  4302. </productMenu>
  4303. <productMenu id="userGuide"
  4304. type="1"
  4305. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_2.2.0_en_230703.pdf"
  4306. size="1.14MB" >
  4307. </productMenu>
  4308. <productID id="5590"
  4309. />
  4310. <productGroupable type="0"
  4311. />
  4312. </product>
  4313. <product id="5S"
  4314. name="5S"
  4315. series="5"
  4316. latestVersion="1.2"
  4317. show = "0" >
  4318. <productMenu id="protocol"
  4319. type="0">
  4320. </productMenu>
  4321. <productMenu id="sip"
  4322. type="1" >
  4323. </productMenu>
  4324. <productMenu id="bluetoothIntercom"
  4325. type="1" >
  4326. </productMenu>
  4327. <productMenu id="phone"
  4328. type="2" >
  4329. </productMenu>
  4330. <productMenu id="fmradio"
  4331. type="3" >
  4332. </productMenu>
  4333. <productMenu id="deviceSetting"
  4334. type="1"
  4335. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  4336. </productMenu>
  4337. <productMenu id="quickGuide"
  4338. type="1"
  4339. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4340. size="970KB" >
  4341. </productMenu>
  4342. <productMenu id="userGuide"
  4343. type="1"
  4344. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_1.2.0_en_230703.pdf"
  4345. size="1.26MB" >
  4346. </productMenu>
  4347. <productID id="5534"
  4348. />
  4349. <productGroupable type="0"
  4350. />
  4351. </product>
  4352. <product id="5S"
  4353. name="5S"
  4354. series="5"
  4355. latestVersion="3.0.1"
  4356. show = "0" >
  4357. <productMenu id="protocol"
  4358. type="0">
  4359. </productMenu>
  4360. <productMenu id="sip"
  4361. type="1" >
  4362. </productMenu>
  4363. <productMenu id="bluetoothIntercom"
  4364. type="1" >
  4365. </productMenu>
  4366. <productMenu id="phone"
  4367. type="2" >
  4368. </productMenu>
  4369. <productMenu id="fmradio"
  4370. type="3" >
  4371. </productMenu>
  4372. <productMenu id="deviceSetting"
  4373. type="1"
  4374. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  4375. </productMenu>
  4376. <productMenu id="quickGuide"
  4377. type="1"
  4378. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4379. size="970KB" >
  4380. </productMenu>
  4381. <productMenu id="userGuide"
  4382. type="1"
  4383. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_3.0.0_en_230703.pdf"
  4384. size="1.26MB" >
  4385. </productMenu>
  4386. <productID id="5538"
  4387. />
  4388. <productGroupable type="0"
  4389. />
  4390. </product>
  4391. <product id="3SPLUS"
  4392. name="3S PLUS"
  4393. series="3"
  4394. latestVersion="2.2"
  4395. show = "0" >
  4396. <productMenu id="protocol"
  4397. type="3" >
  4398. </productMenu>
  4399. <productMenu id="sip"
  4400. type="1" >
  4401. </productMenu>
  4402. <productMenu id="bluetoothIntercom"
  4403. type="1" >
  4404. </productMenu>
  4405. <productMenu id="deviceSetting"
  4406. type="1"
  4407. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  4408. <productMenuURL version="2.2.1"
  4409. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  4410. />
  4411. </productMenu>
  4412. <productMenu id="quickGuide"
  4413. type="1"
  4414. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4415. size="344KB" >
  4416. </productMenu>
  4417. <productMenu id="userGuide"
  4418. type="1"
  4419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.3.0_en_240924.pdf"
  4420. size="1.14MB" >
  4421. </productMenu>
  4422. <productID id="4023"
  4423. />
  4424. <productGroupable type="0"
  4425. />
  4426. </product>
  4427. <product id="3SPLUS"
  4428. name="3S PLUS"
  4429. series="3"
  4430. latestVersion="1.1"
  4431. show = "1" >
  4432. <productMenu id="protocol"
  4433. type="0">
  4434. </productMenu>
  4435. <productMenu id="sip"
  4436. type="1" >
  4437. </productMenu>
  4438. <productMenu id="bluetoothIntercom"
  4439. type="1" >
  4440. </productMenu>
  4441. <productMenu id="deviceSetting"
  4442. type="1"
  4443. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4444. </productMenu>
  4445. <productMenu id="quickGuide"
  4446. type="1"
  4447. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4448. size="842KB" >
  4449. </productMenu>
  4450. <productMenu id="userGuide"
  4451. type="1"
  4452. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  4453. size="1.02MB" >
  4454. </productMenu>
  4455. <productID id="6320"
  4456. />
  4457. <productGroupable type="0"
  4458. />
  4459. </product>
  4460. <product id="iCon"
  4461. name="iCon"
  4462. series="50"
  4463. latestVersion="1.0.1"
  4464. show = "0" >
  4465. <productMenu id="protocol"
  4466. type="2" >
  4467. </productMenu>
  4468. <productMenu id="alexa"
  4469. type="0" >
  4470. </productMenu>
  4471. <productMenu id="wa"
  4472. type="0" >
  4473. </productMenu>
  4474. <productMenu id="sip"
  4475. type="1" >
  4476. </productMenu>
  4477. <productMenu id="led"
  4478. type="3" >
  4479. </productMenu>
  4480. <productMenu id="meshIntercom"
  4481. type="20" >
  4482. </productMenu>
  4483. <productMenu id="bluetoothIntercom"
  4484. type="1" >
  4485. </productMenu>
  4486. <productMenu id="phone"
  4487. type="1" >
  4488. </productMenu>
  4489. <productMenu id="music"
  4490. type="1" >
  4491. </productMenu>
  4492. <productMenu id="fmradio"
  4493. type="1" >
  4494. </productMenu>
  4495. <productMenu id="deviceSetting"
  4496. type="1"
  4497. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4498. </productMenu>
  4499. <productMenu id="quickGuide"
  4500. type="1"
  4501. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  4502. size="344KB" >
  4503. </productMenu>
  4504. <productMenu id="userGuide"
  4505. type="1"
  4506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  4507. size="3.41MB" >
  4508. </productMenu>
  4509. <productMenu id="volume"
  4510. type="11" >
  4511. </productMenu>
  4512. <productMenu id="battery"
  4513. type="1" >
  4514. </productMenu>
  4515. <productID id="3900"
  4516. />
  4517. <productGroupable type="0"
  4518. />
  4519. </product>
  4520. <product id="HD50S"
  4521. name="H-D Audio 50S"
  4522. series="50"
  4523. latestVersion="1.0.1"
  4524. show = "0" >
  4525. <productMenu id="protocol"
  4526. type="2" >
  4527. </productMenu>
  4528. <productMenu id="alexa"
  4529. type="0" >
  4530. </productMenu>
  4531. <productMenu id="ota"
  4532. type="0"
  4533. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4534. size="1150234" >
  4535. </productMenu>
  4536. <productMenu id="wa"
  4537. type="1" >
  4538. </productMenu>
  4539. <productMenu id="sip"
  4540. type="1" >
  4541. </productMenu>
  4542. <productMenu id="meshIntercom"
  4543. type="20" >
  4544. </productMenu>
  4545. <productMenu id="bluetoothIntercom"
  4546. type="1" >
  4547. </productMenu>
  4548. <productMenu id="phone"
  4549. type="1" >
  4550. </productMenu>
  4551. <productMenu id="music"
  4552. type="1" >
  4553. </productMenu>
  4554. <productMenu id="fmradio"
  4555. type="1" >
  4556. </productMenu>
  4557. <productMenu id="deviceSetting"
  4558. type="1"
  4559. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4560. </productMenu>
  4561. <productMenu id="quickGuide"
  4562. type="1"
  4563. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4564. size="934KB" >
  4565. </productMenu>
  4566. <productMenu id="userGuide"
  4567. type="1"
  4568. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4569. size="1.14MB" >
  4570. </productMenu>
  4571. <productMenu id="volume"
  4572. type="11" >
  4573. </productMenu>
  4574. <productMenu id="battery"
  4575. type="1" >
  4576. </productMenu>
  4577. <productID id="3156"
  4578. />
  4579. <productGroupable type="0"
  4580. />
  4581. </product>
  4582. <product id="HD50S"
  4583. name="H-D Audio 50S"
  4584. series="50"
  4585. latestVersion="2.0.2"
  4586. show = "0" >
  4587. <productMenu id="protocol"
  4588. type="2" >
  4589. </productMenu>
  4590. <productMenu id="alexa"
  4591. type="0" >
  4592. </productMenu>
  4593. <productMenu id="ota"
  4594. type="0"
  4595. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4596. size="1150234" >
  4597. </productMenu>
  4598. <productMenu id="wa"
  4599. type="1" >
  4600. </productMenu>
  4601. <productMenu id="sip"
  4602. type="1" >
  4603. </productMenu>
  4604. <productMenu id="meshIntercom"
  4605. type="20" >
  4606. </productMenu>
  4607. <productMenu id="bluetoothIntercom"
  4608. type="1" >
  4609. </productMenu>
  4610. <productMenu id="phone"
  4611. type="1" >
  4612. </productMenu>
  4613. <productMenu id="music"
  4614. type="1" >
  4615. </productMenu>
  4616. <productMenu id="fmradio"
  4617. type="1" >
  4618. </productMenu>
  4619. <productMenu id="deviceSetting"
  4620. type="1"
  4621. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4622. </productMenu>
  4623. <productMenu id="quickGuide"
  4624. type="1"
  4625. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4626. size="934KB" >
  4627. </productMenu>
  4628. <productMenu id="userGuide"
  4629. type="1"
  4630. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4631. size="1.14MB" >
  4632. </productMenu>
  4633. <productMenu id="volume"
  4634. type="11" >
  4635. </productMenu>
  4636. <productMenu id="battery"
  4637. type="1" >
  4638. </productMenu>
  4639. <productID id="3213"
  4640. />
  4641. <productGroupable type="0"
  4642. />
  4643. </product>
  4644. <product id="HD50C"
  4645. name="H-D Audio 50C"
  4646. series="50"
  4647. latestVersion="1.0.1"
  4648. show = "0" >
  4649. <productMenu id="protocol"
  4650. type="2" >
  4651. </productMenu>
  4652. <productMenu id="ota"
  4653. type="0" >
  4654. </productMenu>
  4655. <productMenu id="wa"
  4656. type="1" >
  4657. </productMenu>
  4658. <productMenu id="sip"
  4659. type="1" >
  4660. </productMenu>
  4661. <productMenu id="meshIntercom"
  4662. type="20" >
  4663. </productMenu>
  4664. <productMenu id="bluetoothIntercom"
  4665. type="1" >
  4666. </productMenu>
  4667. <productMenu id="phone"
  4668. type="1" >
  4669. </productMenu>
  4670. <productMenu id="music"
  4671. type="1" >
  4672. </productMenu>
  4673. <productMenu id="fmradio"
  4674. type="1" >
  4675. </productMenu>
  4676. <productMenu id="deviceSetting"
  4677. type="1"
  4678. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4679. </productMenu>
  4680. <productMenu id="quickGuide"
  4681. type="1"
  4682. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4683. size="344KB" >
  4684. </productMenu>
  4685. <productMenu id="userGuide"
  4686. type="1"
  4687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4688. size="3.41MB" >
  4689. </productMenu>
  4690. <productMenu id="volume"
  4691. type="11" >
  4692. </productMenu>
  4693. <productMenu id="battery"
  4694. type="1" >
  4695. </productMenu>
  4696. <productID id="3240"
  4697. />
  4698. <productGroupable type="0"
  4699. />
  4700. </product>
  4701. <product id="HD50S"
  4702. name="FURY N04"
  4703. series="Helmet"
  4704. latestVersion="1.0"
  4705. show = "0" >
  4706. <productMenu id="protocol"
  4707. type="2" >
  4708. </productMenu>
  4709. <productMenu id="alexa"
  4710. type="0" >
  4711. </productMenu>
  4712. <productMenu id="ota"
  4713. type="0" >
  4714. </productMenu>
  4715. <productMenu id="wa"
  4716. type="0" >
  4717. </productMenu>
  4718. <productMenu id="meshIntercom"
  4719. type="20" >
  4720. </productMenu>
  4721. <productMenu id="phone"
  4722. type="1" >
  4723. </productMenu>
  4724. <productMenu id="music"
  4725. type="1" >
  4726. </productMenu>
  4727. <productMenu id="fmradio"
  4728. type="1" >
  4729. </productMenu>
  4730. <productMenu id="deviceSetting"
  4731. type="1"
  4732. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  4733. </productMenu>
  4734. <productMenu id="quickGuide"
  4735. type="1"
  4736. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  4737. size="1.12MB" >
  4738. </productMenu>
  4739. <productMenu id="userGuide"
  4740. type="1"
  4741. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  4742. size="2.0MB" >
  4743. </productMenu>
  4744. <productMenu id="volume"
  4745. type="13" >
  4746. </productMenu>
  4747. <productMenu id="battery"
  4748. type="1" >
  4749. </productMenu>
  4750. <productID id="5553"
  4751. />
  4752. <productGroupable type="0"
  4753. />
  4754. </product>
  4755. <product id="XCOM3Pro"
  4756. name="X-COM3 Pro"
  4757. series="50"
  4758. latestVersion="1.0.1"
  4759. show = "0" >
  4760. <productMenu id="protocol"
  4761. type="2" >
  4762. </productMenu>
  4763. <productMenu id="alexa"
  4764. type="0" >
  4765. </productMenu>
  4766. <productMenu id="ota"
  4767. type="0" >
  4768. </productMenu>
  4769. <productMenu id="wa"
  4770. type="0" >
  4771. </productMenu>
  4772. <productMenu id="sip"
  4773. type="1" >
  4774. </productMenu>
  4775. <productMenu id="meshIntercom"
  4776. type="30" >
  4777. </productMenu>
  4778. <productMenu id="bluetoothIntercom"
  4779. type="1" >
  4780. </productMenu>
  4781. <productMenu id="phone"
  4782. type="1" >
  4783. </productMenu>
  4784. <productMenu id="music"
  4785. type="1" >
  4786. </productMenu>
  4787. <productMenu id="fmradio"
  4788. type="1" >
  4789. </productMenu>
  4790. <productMenu id="deviceSetting"
  4791. type="1"
  4792. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_01.xml" >
  4793. </productMenu>
  4794. <productMenu id="quickGuide"
  4795. type="1"
  4796. url=""
  4797. size="344KB" >
  4798. </productMenu>
  4799. <productMenu id="userGuide"
  4800. type="1"
  4801. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  4802. size="3.41MB" >
  4803. </productMenu>
  4804. <productMenu id="volume"
  4805. type="11" >
  4806. </productMenu>
  4807. <productMenu id="battery"
  4808. type="1" >
  4809. </productMenu>
  4810. <productID id="321A"
  4811. />
  4812. <productGroupable type="0"
  4813. />
  4814. </product>
  4815. <product id="XCOM3"
  4816. name="X-COM3"
  4817. series="20"
  4818. latestVersion="1.0"
  4819. show = "0" >
  4820. <productMenu id="protocol"
  4821. type="2" >
  4822. </productMenu>
  4823. <productMenu id="sip"
  4824. type="1" >
  4825. </productMenu>
  4826. <productMenu id="bluetoothIntercom"
  4827. type="1" >
  4828. </productMenu>
  4829. <productMenu id="phone"
  4830. type="1" >
  4831. </productMenu>
  4832. <productMenu id="music"
  4833. type="1" >
  4834. </productMenu>
  4835. <productMenu id="fmradio"
  4836. type="1" >
  4837. </productMenu>
  4838. <productMenu id="deviceSetting"
  4839. type="1"
  4840. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  4841. </productMenu>
  4842. <productMenu id="quickGuide"
  4843. type="1"
  4844. url=""
  4845. size="934KB" >
  4846. </productMenu>
  4847. <productMenu id="userGuide"
  4848. type="1"
  4849. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  4850. size="1.14MB" >
  4851. </productMenu>
  4852. <productMenu id="volume"
  4853. type="15" >
  4854. </productMenu>
  4855. <productID id="3410"
  4856. />
  4857. <productGroupable type="0"
  4858. />
  4859. </product>
  4860. <product id="X-COM2"
  4861. name="X-COM2"
  4862. series="20"
  4863. latestVersion="1.0.5"
  4864. show = "0" >
  4865. <productMenu id="protocol"
  4866. type="0">
  4867. </productMenu>
  4868. <productMenu id="sip"
  4869. type="1" >
  4870. </productMenu>
  4871. <productMenu id="bluetoothIntercom"
  4872. type="1" >
  4873. </productMenu>
  4874. <productMenu id="intercomSetting"
  4875. type="1" >
  4876. </productMenu>
  4877. <productMenu id="phone"
  4878. type="2" >
  4879. </productMenu>
  4880. <productMenu id="fmradio"
  4881. type="3" >
  4882. </productMenu>
  4883. <productMenu id="deviceSetting"
  4884. type="1"
  4885. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  4886. </productMenu>
  4887. <productMenu id="quickGuide"
  4888. type="1"
  4889. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  4890. size="796KB" >
  4891. </productMenu>
  4892. <productMenu id="userGuide"
  4893. type="1"
  4894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  4895. size="1.90MB" >
  4896. </productMenu>
  4897. <productID id="2030"
  4898. />
  4899. <productGroupable type="1"
  4900. />
  4901. </product>
  4902. <product id="AVAABC"
  4903. name="AVA ABC"
  4904. series="SPIDER"
  4905. latestVersion="1.0"
  4906. show = "0" >
  4907. <productMenu id="protocol"
  4908. type="2" >
  4909. </productMenu>
  4910. <productMenu id="alexa"
  4911. type="0" >
  4912. </productMenu>
  4913. <productMenu id="ota"
  4914. type="0" >
  4915. </productMenu>
  4916. <productMenu id="wa"
  4917. type="0" >
  4918. </productMenu>
  4919. <productMenu id="meshIntercom"
  4920. type="20" >
  4921. </productMenu>
  4922. <productMenu id="phone"
  4923. type="1" >
  4924. </productMenu>
  4925. <productMenu id="music"
  4926. type="1" >
  4927. </productMenu>
  4928. <productMenu id="musicSharing"
  4929. type="0" >
  4930. </productMenu>
  4931. <productMenu id="deviceSetting"
  4932. type="1"
  4933. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  4934. </productMenu>
  4935. <productMenu id="quickGuide"
  4936. type="1"
  4937. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  4938. size="1.12MB" >
  4939. </productMenu>
  4940. <productMenu id="userGuide"
  4941. type="1"
  4942. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  4943. size="2.0MB" >
  4944. </productMenu>
  4945. <productMenu id="volume"
  4946. type="12" >
  4947. </productMenu>
  4948. <productMenu id="battery"
  4949. type="1" >
  4950. </productMenu>
  4951. <productID id="6808"
  4952. />
  4953. <productGroupable type="0"
  4954. />
  4955. </product>
  4956. <product id="Triumph_50S"
  4957. name="Triumph 50S"
  4958. series="50"
  4959. latestVersion="1.2.2"
  4960. show = "0" >
  4961. <productMenu id="protocol"
  4962. type="2" >
  4963. </productMenu>
  4964. <productMenu id="alexa"
  4965. type="0" >
  4966. </productMenu>
  4967. <productMenu id="ota"
  4968. type="0"
  4969. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4970. size="1150234" >
  4971. </productMenu>
  4972. <productMenu id="wa"
  4973. type="1" >
  4974. </productMenu>
  4975. <productMenu id="sip"
  4976. type="1" >
  4977. </productMenu>
  4978. <productMenu id="meshIntercom"
  4979. type="20" >
  4980. </productMenu>
  4981. <productMenu id="bluetoothIntercom"
  4982. type="1" >
  4983. </productMenu>
  4984. <productMenu id="phone"
  4985. type="1" >
  4986. </productMenu>
  4987. <productMenu id="music"
  4988. type="1" >
  4989. </productMenu>
  4990. <productMenu id="fmradio"
  4991. type="1" >
  4992. </productMenu>
  4993. <productMenu id="deviceSetting"
  4994. type="1"
  4995. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml" >
  4996. <productMenuURL version="1.0"
  4997. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  4998. />
  4999. </productMenu>
  5000. <productMenu id="quickGuide"
  5001. type="1"
  5002. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  5003. size="934KB" >
  5004. </productMenu>
  5005. <productMenu id="userGuide"
  5006. type="1"
  5007. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  5008. size="1.14MB" >
  5009. </productMenu>
  5010. <productMenu id="volume"
  5011. type="11" >
  5012. </productMenu>
  5013. <productMenu id="battery"
  5014. type="1" >
  5015. </productMenu>
  5016. <productID id="3264"
  5017. />
  5018. <productGroupable type="0"
  5019. />
  5020. </product>
  5021. <product id="RE50S"
  5022. name="RE 50S"
  5023. series="50"
  5024. latestVersion="2.5"
  5025. show = "-1" >
  5026. <productMenu id="protocol"
  5027. type="2" >
  5028. </productMenu>
  5029. <productMenu id="alexa"
  5030. type="0" >
  5031. </productMenu>
  5032. <productMenu id="ota"
  5033. type="0"
  5034. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5035. size="1150234" >
  5036. </productMenu>
  5037. <productMenu id="wa"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="sip"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="meshIntercom"
  5044. type="30" >
  5045. </productMenu>
  5046. <productMenu id="bluetoothIntercom"
  5047. type="1" >
  5048. </productMenu>
  5049. <productMenu id="phone"
  5050. type="1" >
  5051. </productMenu>
  5052. <productMenu id="music"
  5053. type="1" >
  5054. </productMenu>
  5055. <productMenu id="fmradio"
  5056. type="1" >
  5057. </productMenu>
  5058. <productMenu id="deviceSetting"
  5059. type="1"
  5060. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  5061. </productMenu>
  5062. <productMenu id="quickGuide"
  5063. type="1"
  5064. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  5065. size="934KB" >
  5066. </productMenu>
  5067. <productMenu id="userGuide"
  5068. type="1"
  5069. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.5.0_en_240625.pdf"
  5070. size="1.14MB" >
  5071. </productMenu>
  5072. <productMenu id="videoGuide"
  5073. type="1"
  5074. url=""
  5075. size="3.41MB" >
  5076. </productMenu>
  5077. <productMenu id="volume"
  5078. type="11" >
  5079. </productMenu>
  5080. <productMenu id="battery"
  5081. type="1" >
  5082. </productMenu>
  5083. <productID id="321C"
  5084. />
  5085. <productGroupable type="0"
  5086. />
  5087. </product>
  5088. <product id="BMW_HELMET_II_U1"
  5089. name="BMW HELMET II U1"
  5090. series="50"
  5091. latestVersion="1.0"
  5092. show = "0" >
  5093. <productMenu id="protocol"
  5094. type="2" >
  5095. </productMenu>
  5096. <productMenu id="alexa"
  5097. type="0" >
  5098. </productMenu>
  5099. <productMenu id="sip"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="meshIntercom"
  5103. type="20" >
  5104. </productMenu>
  5105. <productMenu id="bluetoothIntercom"
  5106. type="1" >
  5107. </productMenu>
  5108. <productMenu id="bluetoothIntercom2"
  5109. type="1" >
  5110. </productMenu>
  5111. <productMenu id="phone"
  5112. type="1" >
  5113. </productMenu>
  5114. <productMenu id="music"
  5115. type="1" >
  5116. </productMenu>
  5117. <productMenu id="fmradio"
  5118. type="1" >
  5119. </productMenu>
  5120. <productMenu id="deviceSetting"
  5121. type="1"
  5122. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  5123. </productMenu>
  5124. <productMenu id="quickGuide"
  5125. type="1"
  5126. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  5127. size="934KB" >
  5128. </productMenu>
  5129. <productMenu id="userGuide"
  5130. type="1"
  5131. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  5132. size="1.14MB" >
  5133. </productMenu>
  5134. <productMenu id="volume"
  5135. type="11" >
  5136. </productMenu>
  5137. <productMenu id="battery"
  5138. type="1" >
  5139. </productMenu>
  5140. <productID id="3260"
  5141. />
  5142. <productGroupable type="0"
  5143. />
  5144. </product>
  5145. <product id="LSE_01"
  5146. name="LSE-01"
  5147. series="SF"
  5148. latestVersion="1.2.3"
  5149. show = "0" >
  5150. <productMenu id="protocol"
  5151. type="1"
  5152. url="3">
  5153. </productMenu>
  5154. <productMenu id="sip"
  5155. type="1" >
  5156. </productMenu>
  5157. <productMenu id="bluetoothIntercom"
  5158. type="1" >
  5159. </productMenu>
  5160. <productMenu id="phone"
  5161. type="1" >
  5162. </productMenu>
  5163. <productMenu id="music"
  5164. type="1" >
  5165. </productMenu>
  5166. <productMenu id="fmradio"
  5167. type="1" >
  5168. </productMenu>
  5169. <productMenu id="deviceSetting"
  5170. type="1"
  5171. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5172. <productMenuURL version="1.1"
  5173. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  5174. />
  5175. <productMenuURL version="1.0"
  5176. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  5177. />
  5178. </productMenu>
  5179. <productMenu id="quickGuide"
  5180. type="1"
  5181. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  5182. size="607KB" >
  5183. </productMenu>
  5184. <productMenu id="userGuide"
  5185. type="1"
  5186. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  5187. size="1.91MB" >
  5188. </productMenu>
  5189. <productMenu id="volume"
  5190. type="4" >
  5191. </productMenu>
  5192. <productID id="5416"
  5193. />
  5194. <productGroupable type="0"
  5195. />
  5196. </product>
  5197. <product id="AGV_ARK"
  5198. name="AGV ARK"
  5199. series="SF"
  5200. latestVersion="1.0.3"
  5201. show = "0" >
  5202. <productMenu id="protocol"
  5203. type="1"
  5204. url="3">
  5205. </productMenu>
  5206. <productMenu id="sip"
  5207. type="1" >
  5208. </productMenu>
  5209. <productMenu id="bluetoothIntercom"
  5210. type="1" >
  5211. </productMenu>
  5212. <productMenu id="phone"
  5213. type="1" >
  5214. </productMenu>
  5215. <productMenu id="music"
  5216. type="1" >
  5217. </productMenu>
  5218. <productMenu id="fmradio"
  5219. type="1" >
  5220. </productMenu>
  5221. <productMenu id="deviceSetting"
  5222. type="1"
  5223. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5224. </productMenu>
  5225. <productMenu id="quickGuide"
  5226. type="1"
  5227. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  5228. size="607KB" >
  5229. </productMenu>
  5230. <productMenu id="userGuide"
  5231. type="1"
  5232. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  5233. size="1.91MB" >
  5234. </productMenu>
  5235. <productMenu id="volume"
  5236. type="4" >
  5237. </productMenu>
  5238. <productID id="5420"
  5239. />
  5240. <productGroupable type="0"
  5241. />
  5242. </product>
  5243. <product id="KLIM_KRIOS"
  5244. name="KLIM Krios"
  5245. series="10"
  5246. latestVersion="1.1.2"
  5247. show = "0" >
  5248. <productMenu id="protocol"
  5249. type="0">
  5250. </productMenu>
  5251. <productMenu id="sip"
  5252. type="1" >
  5253. </productMenu>
  5254. <productMenu id="bluetoothIntercom"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="phone"
  5258. type="2" >
  5259. </productMenu>
  5260. <productMenu id="fmradio"
  5261. type="3" >
  5262. </productMenu>
  5263. <productMenu id="deviceSetting"
  5264. type="1"
  5265. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  5266. <productMenuURL version="1.0"
  5267. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  5268. />
  5269. </productMenu>
  5270. <productMenu id="quickGuide"
  5271. type="1"
  5272. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  5273. size="649KB" >
  5274. </productMenu>
  5275. <productMenu id="userGuide"
  5276. type="1"
  5277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  5278. size="1.43MB" >
  5279. </productMenu>
  5280. <productID id="5910"
  5281. />
  5282. <productGroupable type="0"
  5283. />
  5284. </product>
  5285. <product id="POLARIS_SLINGSHOT"
  5286. name="Polaris Slingshot"
  5287. series="10"
  5288. latestVersion="1.1.2"
  5289. show = "0" >
  5290. <productMenu id="protocol"
  5291. type="0">
  5292. </productMenu>
  5293. <productMenu id="sip"
  5294. type="1" >
  5295. </productMenu>
  5296. <productMenu id="bluetoothIntercom"
  5297. type="1" >
  5298. </productMenu>
  5299. <productMenu id="phone"
  5300. type="2" >
  5301. </productMenu>
  5302. <productMenu id="fmradio"
  5303. type="3" >
  5304. </productMenu>
  5305. <productMenu id="deviceSetting"
  5306. type="1"
  5307. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  5308. <productMenuURL version="1.0"
  5309. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  5310. />
  5311. </productMenu>
  5312. <productMenu id="quickGuide"
  5313. type="1"
  5314. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  5315. size="689KB" >
  5316. </productMenu>
  5317. <productMenu id="userGuide"
  5318. type="1"
  5319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  5320. size="1.43MB" >
  5321. </productMenu>
  5322. <productID id="5920"
  5323. />
  5324. <productGroupable type="0"
  5325. />
  5326. </product>
  5327. <product id="DWO6"
  5328. name="SEDICI DWO6-PRO"
  5329. series="10"
  5330. latestVersion="1.0.2"
  5331. show = "0" >
  5332. <productMenu id="protocol"
  5333. type="0">
  5334. </productMenu>
  5335. <productMenu id="sip"
  5336. type="1" >
  5337. </productMenu>
  5338. <productMenu id="bluetoothIntercom"
  5339. type="1" >
  5340. </productMenu>
  5341. <productMenu id="phone"
  5342. type="2" >
  5343. </productMenu>
  5344. <productMenu id="fmradio"
  5345. type="3" >
  5346. </productMenu>
  5347. <productMenu id="deviceSetting"
  5348. type="1"
  5349. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5350. </productMenu>
  5351. <productMenu id="quickGuide"
  5352. type="1"
  5353. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  5354. size="529KB" >
  5355. </productMenu>
  5356. <productMenu id="userGuide"
  5357. type="1"
  5358. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  5359. size="4.09MB" >
  5360. </productMenu>
  5361. <productID id="6112"
  5362. />
  5363. <productGroupable type="0"
  5364. />
  5365. </product>
  5366. <product id="DWO6A"
  5367. name="SEDICI DWO-6"
  5368. series="10"
  5369. latestVersion="1.0.2"
  5370. show = "0" >
  5371. <productMenu id="protocol"
  5372. type="0">
  5373. </productMenu>
  5374. <productMenu id="sip"
  5375. type="1" >
  5376. </productMenu>
  5377. <productMenu id="bluetoothIntercom"
  5378. type="1" >
  5379. </productMenu>
  5380. <productMenu id="phone"
  5381. type="2" >
  5382. </productMenu>
  5383. <productMenu id="fmradio"
  5384. type="3" >
  5385. </productMenu>
  5386. <productMenu id="deviceSetting"
  5387. type="1"
  5388. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  5389. </productMenu>
  5390. <productMenu id="quickGuide"
  5391. type="1"
  5392. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  5393. size="522KB" >
  5394. </productMenu>
  5395. <productMenu id="userGuide"
  5396. type="1"
  5397. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  5398. size="2.71MB" >
  5399. </productMenu>
  5400. <productID id="6114"
  5401. />
  5402. <productGroupable type="0"
  5403. />
  5404. </product>
  5405. <product id="3SPLUS"
  5406. name="ZILL"
  5407. series="3"
  5408. latestVersion="1.0.4"
  5409. show = "0" >
  5410. <productMenu id="protocol"
  5411. type="0">
  5412. </productMenu>
  5413. <productMenu id="sip"
  5414. type="1" >
  5415. </productMenu>
  5416. <productMenu id="bluetoothIntercom"
  5417. type="1" >
  5418. </productMenu>
  5419. <productMenu id="deviceSetting"
  5420. type="1"
  5421. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5422. </productMenu>
  5423. <productMenu id="quickGuide"
  5424. type="1"
  5425. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5426. size="842KB" >
  5427. </productMenu>
  5428. <productMenu id="userGuide"
  5429. type="1"
  5430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  5431. size="1.02MB" >
  5432. </productMenu>
  5433. <productID id="6335"
  5434. />
  5435. <productGroupable type="0"
  5436. />
  5437. </product>
  5438. <product id="HD50S"
  5439. name="Boom! Audio 30K"
  5440. series="30"
  5441. latestVersion="3.4"
  5442. show = "0" >
  5443. <productMenu id="protocol"
  5444. type="1"
  5445. url="0">
  5446. </productMenu>
  5447. <productMenu id="wa"
  5448. type="0" >
  5449. </productMenu>
  5450. <productMenu id="sip"
  5451. type="1" >
  5452. </productMenu>
  5453. <productMenu id="meshIntercom"
  5454. type="20" >
  5455. <productMenuType version="2.9.9"
  5456. type="10"
  5457. />
  5458. </productMenu>
  5459. <productMenu id="bluetoothIntercom"
  5460. type="1" >
  5461. </productMenu>
  5462. <productMenu id="phone"
  5463. type="1" >
  5464. </productMenu>
  5465. <productMenu id="music"
  5466. type="1" >
  5467. </productMenu>
  5468. <productMenu id="fmradio"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="deviceSetting"
  5472. type="1"
  5473. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  5474. <productMenuURL version="3.2"
  5475. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  5476. />
  5477. <productMenuURL version="3.0"
  5478. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  5479. />
  5480. <productMenuURL version="2.2"
  5481. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5482. />
  5483. </productMenu>
  5484. <productMenu id="quickGuide"
  5485. type="1"
  5486. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5487. size="1.06MB" >
  5488. </productMenu>
  5489. <productMenu id="userGuide"
  5490. type="1"
  5491. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5492. size="3.15MB" >
  5493. </productMenu>
  5494. <productMenu id="volume"
  5495. type="1" >
  5496. </productMenu>
  5497. <productID id="3112"
  5498. />
  5499. <productGroupable type="0"
  5500. />
  5501. </product>
  5502. <product id="HD50S"
  5503. name="Boom! Audio N02"
  5504. series="30"
  5505. latestVersion="3.1"
  5506. show = "0" >
  5507. <productMenu id="protocol"
  5508. type="1"
  5509. url="0">
  5510. </productMenu>
  5511. <productMenu id="wa"
  5512. type="2" >
  5513. </productMenu>
  5514. <productMenu id="sip"
  5515. type="1" >
  5516. </productMenu>
  5517. <productMenu id="meshIntercom"
  5518. type="20" >
  5519. <productMenuType version="2.9.9"
  5520. type="10"
  5521. />
  5522. </productMenu>
  5523. <productMenu id="bluetoothIntercom"
  5524. type="1" >
  5525. </productMenu>
  5526. <productMenu id="phone"
  5527. type="1" >
  5528. </productMenu>
  5529. <productMenu id="music"
  5530. type="1" >
  5531. </productMenu>
  5532. <productMenu id="fmradio"
  5533. type="1" >
  5534. </productMenu>
  5535. <productMenu id="deviceSetting"
  5536. type="1"
  5537. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  5538. <productMenuURL version="2.2"
  5539. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5540. />
  5541. </productMenu>
  5542. <productMenu id="quickGuide"
  5543. type="1"
  5544. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  5545. size="1.06MB" >
  5546. </productMenu>
  5547. <productMenu id="userGuide"
  5548. type="1"
  5549. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  5550. size="3.15MB" >
  5551. </productMenu>
  5552. <productMenu id="volume"
  5553. type="2" >
  5554. </productMenu>
  5555. <productID id="3114"
  5556. />
  5557. <productGroupable type="0"
  5558. />
  5559. </product>
  5560. <product id="HD50S"
  5561. name="Boom Audio 20S"
  5562. series="50"
  5563. latestVersion="2.5.2"
  5564. show = "0" >
  5565. <productMenu id="protocol"
  5566. type="0">
  5567. </productMenu>
  5568. <productMenu id="sip"
  5569. type="1" >
  5570. <productMenuType version="1.0"
  5571. type="0"
  5572. />
  5573. </productMenu>
  5574. <productMenu id="bluetoothIntercom"
  5575. type="1" >
  5576. <productMenuType version="1.0"
  5577. type="0"
  5578. />
  5579. </productMenu>
  5580. <productMenu id="intercomSetting"
  5581. type="1" >
  5582. </productMenu>
  5583. <productMenu id="phone"
  5584. type="2" >
  5585. </productMenu>
  5586. <productMenu id="fmradio"
  5587. type="3" >
  5588. </productMenu>
  5589. <productMenu id="deviceSetting"
  5590. type="1"
  5591. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5592. <productMenuURL version="2.4"
  5593. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5594. />
  5595. <productMenuURL version="1.5"
  5596. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5597. />
  5598. <productMenuURL version="1.4.1"
  5599. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5600. />
  5601. <productMenuURL version="1.1"
  5602. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5603. />
  5604. <productMenuURL version="1.0"
  5605. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5606. />
  5607. </productMenu>
  5608. <productMenu id="quickGuide"
  5609. type="1"
  5610. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5611. size="264KB" >
  5612. </productMenu>
  5613. <productMenu id="userGuide"
  5614. type="1"
  5615. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5616. size="3.09MB" >
  5617. </productMenu>
  5618. <productID id="4210"
  5619. />
  5620. <productProductKey key="11"
  5621. />
  5622. <productID id="4230"
  5623. />
  5624. <productProductKey key="11"
  5625. />
  5626. <productGroupable type="1"
  5627. />
  5628. </product>
  5629. <product id="HD50S"
  5630. name="Boom Audio 20S EVO"
  5631. series="50"
  5632. latestVersion="2.5.2"
  5633. show = "0" >
  5634. <productMenu id="protocol"
  5635. type="0">
  5636. </productMenu>
  5637. <productMenu id="sip"
  5638. type="1" >
  5639. <productMenuType version="1.0"
  5640. type="0"
  5641. />
  5642. </productMenu>
  5643. <productMenu id="bluetoothIntercom"
  5644. type="1" >
  5645. <productMenuType version="1.0"
  5646. type="0"
  5647. />
  5648. </productMenu>
  5649. <productMenu id="intercomSetting"
  5650. type="1" >
  5651. </productMenu>
  5652. <productMenu id="phone"
  5653. type="2" >
  5654. </productMenu>
  5655. <productMenu id="fmradio"
  5656. type="3" >
  5657. </productMenu>
  5658. <productMenu id="deviceSetting"
  5659. type="1"
  5660. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5661. <productMenuURL version="2.4"
  5662. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5663. />
  5664. <productMenuURL version="1.5"
  5665. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5666. />
  5667. <productMenuURL version="1.4.1"
  5668. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5669. />
  5670. <productMenuURL version="1.1"
  5671. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5672. />
  5673. <productMenuURL version="1.0"
  5674. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5675. />
  5676. </productMenu>
  5677. <productMenu id="quickGuide"
  5678. type="1"
  5679. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5680. size="321KB" >
  5681. </productMenu>
  5682. <productMenu id="userGuide"
  5683. type="1"
  5684. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5685. size="2.46MB" >
  5686. </productMenu>
  5687. <productID id="4230"
  5688. />
  5689. <productProductKey key="27"
  5690. />
  5691. <productGroupable type="1"
  5692. />
  5693. </product>
  5694. <product id="HD50S"
  5695. name="Boom! Audio 10S"
  5696. series="50"
  5697. latestVersion="1.1.3"
  5698. show = "0" >
  5699. <productMenu id="protocol"
  5700. type="0">
  5701. </productMenu>
  5702. <productMenu id="sip"
  5703. type="1" >
  5704. </productMenu>
  5705. <productMenu id="bluetoothIntercom"
  5706. type="1" >
  5707. </productMenu>
  5708. <productMenu id="phone"
  5709. type="2" >
  5710. </productMenu>
  5711. <productMenu id="fmradio"
  5712. type="3" >
  5713. </productMenu>
  5714. <productMenu id="deviceSetting"
  5715. type="1"
  5716. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  5717. </productMenu>
  5718. <productMenu id="quickGuide"
  5719. type="1"
  5720. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5721. size="538KB" >
  5722. </productMenu>
  5723. <productMenu id="userGuide"
  5724. type="1"
  5725. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5726. size="1.55MB" >
  5727. </productMenu>
  5728. <productID id="5532"
  5729. />
  5730. <productGroupable type="0"
  5731. />
  5732. </product>
  5733. <product id="HD50S"
  5734. name="Boom! Audio N01 10R"
  5735. series="50"
  5736. latestVersion="1.1.3"
  5737. show = "0" >
  5738. <productMenu id="protocol"
  5739. type="0">
  5740. </productMenu>
  5741. <productMenu id="sip"
  5742. type="1" >
  5743. </productMenu>
  5744. <productMenu id="bluetoothIntercom"
  5745. type="1" >
  5746. </productMenu>
  5747. <productMenu id="phone"
  5748. type="2" >
  5749. </productMenu>
  5750. <productMenu id="fmradio"
  5751. type="3" >
  5752. </productMenu>
  5753. <productMenu id="deviceSetting"
  5754. type="1"
  5755. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  5756. </productMenu>
  5757. <productMenu id="quickGuide"
  5758. type="1"
  5759. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5760. size="766KB" >
  5761. </productMenu>
  5762. <productMenu id="userGuide"
  5763. type="1"
  5764. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5765. size="1.45MB" >
  5766. </productMenu>
  5767. <productID id="5522"
  5768. />
  5769. <productGroupable type="0"
  5770. />
  5771. </product>
  5772. <product id="HD50S"
  5773. name="OUTRUSH-R N03"
  5774. series="50"
  5775. latestVersion="1.2.1"
  5776. show = "0" >
  5777. <productMenu id="protocol"
  5778. type="0">
  5779. </productMenu>
  5780. <productMenu id="sip"
  5781. type="1" >
  5782. </productMenu>
  5783. <productMenu id="bluetoothIntercom"
  5784. type="1" >
  5785. </productMenu>
  5786. <productMenu id="phone"
  5787. type="2" >
  5788. </productMenu>
  5789. <productMenu id="fmradio"
  5790. type="3" >
  5791. </productMenu>
  5792. <productMenu id="deviceSetting"
  5793. type="1"
  5794. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  5795. </productMenu>
  5796. <productMenu id="userGuide"
  5797. type="1"
  5798. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  5799. size="660KB" >
  5800. </productMenu>
  5801. <productID id="5434"
  5802. />
  5803. <productGroupable type="0"
  5804. />
  5805. </product>
  5806. <product id="HD50S"
  5807. name="OUTRUSH-R N03"
  5808. series="50"
  5809. latestVersion="2.0"
  5810. show = "0" >
  5811. <productMenu id="protocol"
  5812. type="3" >
  5813. </productMenu>
  5814. <productMenu id="sip"
  5815. type="1" >
  5816. </productMenu>
  5817. <productMenu id="bluetoothIntercom"
  5818. type="1" >
  5819. </productMenu>
  5820. <productMenu id="phone"
  5821. type="1" >
  5822. </productMenu>
  5823. <productMenu id="fmradio"
  5824. type="1" >
  5825. </productMenu>
  5826. <productMenu id="deviceSetting"
  5827. type="1"
  5828. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  5829. </productMenu>
  5830. <productMenu id="userGuide"
  5831. type="1"
  5832. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  5833. size="1.14MB" >
  5834. </productMenu>
  5835. <productID id="5441"
  5836. />
  5837. <productGroupable type="0"
  5838. />
  5839. </product>
  5840. <product id="5R"
  5841. name="5R"
  5842. series="5"
  5843. latestVersion="1.0.1"
  5844. show = "1" >
  5845. <productMenu id="protocol"
  5846. type="3" >
  5847. </productMenu>
  5848. <productMenu id="sip"
  5849. type="1" >
  5850. </productMenu>
  5851. <productMenu id="bluetoothIntercom"
  5852. type="1" >
  5853. </productMenu>
  5854. <productMenu id="phone"
  5855. type="1" >
  5856. </productMenu>
  5857. <productMenu id="fmradio"
  5858. type="1" >
  5859. </productMenu>
  5860. <productMenu id="deviceSetting"
  5861. type="1"
  5862. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5863. </productMenu>
  5864. <productMenu id="quickGuide"
  5865. type="1"
  5866. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  5867. size="934KB" >
  5868. </productMenu>
  5869. <productMenu id="userGuide"
  5870. type="1"
  5871. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  5872. size="1.14MB" >
  5873. </productMenu>
  5874. <productID id="5591"
  5875. />
  5876. <productGroupable type="0"
  5877. />
  5878. </product>
  5879. <product id="5R"
  5880. name="5R LITE"
  5881. series="5"
  5882. latestVersion="1.0.1"
  5883. show = "1" >
  5884. <productMenu id="protocol"
  5885. type="3" >
  5886. </productMenu>
  5887. <productMenu id="sip"
  5888. type="1" >
  5889. </productMenu>
  5890. <productMenu id="bluetoothIntercom"
  5891. type="1" >
  5892. </productMenu>
  5893. <productMenu id="phone"
  5894. type="1" >
  5895. </productMenu>
  5896. <productMenu id="fmradio"
  5897. type="1" >
  5898. </productMenu>
  5899. <productMenu id="deviceSetting"
  5900. type="1"
  5901. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  5902. </productMenu>
  5903. <productMenu id="quickGuide"
  5904. type="1"
  5905. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  5906. size="934KB" >
  5907. </productMenu>
  5908. <productMenu id="userGuide"
  5909. type="1"
  5910. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  5911. size="1.14MB" >
  5912. </productMenu>
  5913. <productID id="5592"
  5914. />
  5915. <productGroupable type="0"
  5916. />
  5917. </product>
  5918. <product id="50RLE"
  5919. name="50R LE"
  5920. series="50"
  5921. latestVersion="1.0"
  5922. show = "0" >
  5923. <productMenu id="protocol"
  5924. type="2" >
  5925. </productMenu>
  5926. <productMenu id="alexa"
  5927. type="0" >
  5928. </productMenu>
  5929. <productMenu id="sip"
  5930. type="1" >
  5931. </productMenu>
  5932. <productMenu id="meshIntercom"
  5933. type="30" >
  5934. </productMenu>
  5935. <productMenu id="bluetoothIntercom"
  5936. type="1" >
  5937. </productMenu>
  5938. <productMenu id="phone"
  5939. type="1" >
  5940. </productMenu>
  5941. <productMenu id="music"
  5942. type="1" >
  5943. </productMenu>
  5944. <productMenu id="fmradio"
  5945. type="0" >
  5946. </productMenu>
  5947. <productMenu id="deviceSetting"
  5948. type="1"
  5949. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml" >
  5950. </productMenu>
  5951. <productMenu id="quickGuide"
  5952. type="1"
  5953. url=""
  5954. size="344KB" >
  5955. </productMenu>
  5956. <productMenu id="userGuide"
  5957. type="1"
  5958. url=""
  5959. size="3.41MB" >
  5960. </productMenu>
  5961. <productMenu id="volume"
  5962. type="11" >
  5963. </productMenu>
  5964. <productMenu id="battery"
  5965. type="1" >
  5966. </productMenu>
  5967. <productID id="3223"
  5968. />
  5969. <productGroupable type="0"
  5970. />
  5971. </product>
  5972. <product id="5RLOUIS"
  5973. name="5R LOUIS EDITION"
  5974. series="5"
  5975. latestVersion="1.0"
  5976. show = "-1" >
  5977. <productMenu id="protocol"
  5978. type="3" >
  5979. </productMenu>
  5980. <productMenu id="sip"
  5981. type="1" >
  5982. </productMenu>
  5983. <productMenu id="bluetoothIntercom"
  5984. type="1" >
  5985. </productMenu>
  5986. <productMenu id="phone"
  5987. type="1" >
  5988. </productMenu>
  5989. <productMenu id="fmradio"
  5990. type="1" >
  5991. </productMenu>
  5992. <productMenu id="deviceSetting"
  5993. type="1"
  5994. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  5995. </productMenu>
  5996. <productMenu id="quickGuide"
  5997. type="1"
  5998. url=""
  5999. size="934KB" >
  6000. </productMenu>
  6001. <productMenu id="userGuide"
  6002. type="1"
  6003. url=""
  6004. size="1.14MB" >
  6005. </productMenu>
  6006. <productID id="5597"
  6007. />
  6008. <productGroupable type="0"
  6009. />
  6010. </product>
  6011. <product id="5R"
  6012. name="Ridekont 5R"
  6013. series="5"
  6014. latestVersion="1.0"
  6015. show = "0" >
  6016. <productMenu id="protocol"
  6017. type="3" >
  6018. </productMenu>
  6019. <productMenu id="sip"
  6020. type="1" >
  6021. </productMenu>
  6022. <productMenu id="bluetoothIntercom"
  6023. type="1" >
  6024. </productMenu>
  6025. <productMenu id="phone"
  6026. type="1" >
  6027. </productMenu>
  6028. <productMenu id="fmradio"
  6029. type="1" >
  6030. </productMenu>
  6031. <productMenu id="deviceSetting"
  6032. type="1"
  6033. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6034. </productMenu>
  6035. <productMenu id="quickGuide"
  6036. type="1"
  6037. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  6038. size="934KB" >
  6039. </productMenu>
  6040. <productMenu id="userGuide"
  6041. type="1"
  6042. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  6043. size="1.14MB" >
  6044. </productMenu>
  6045. <productID id="5593"
  6046. />
  6047. <productGroupable type="0"
  6048. />
  6049. </product>
  6050. <product id="5R"
  6051. name="Ridekont 5R LITE"
  6052. series="5"
  6053. latestVersion="1.0"
  6054. show = "0" >
  6055. <productMenu id="protocol"
  6056. type="3" >
  6057. </productMenu>
  6058. <productMenu id="sip"
  6059. type="1" >
  6060. </productMenu>
  6061. <productMenu id="bluetoothIntercom"
  6062. type="1" >
  6063. </productMenu>
  6064. <productMenu id="phone"
  6065. type="1" >
  6066. </productMenu>
  6067. <productMenu id="fmradio"
  6068. type="1" >
  6069. </productMenu>
  6070. <productMenu id="deviceSetting"
  6071. type="1"
  6072. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6073. </productMenu>
  6074. <productMenu id="quickGuide"
  6075. type="1"
  6076. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  6077. size="934KB" >
  6078. </productMenu>
  6079. <productMenu id="userGuide"
  6080. type="1"
  6081. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  6082. size="1.14MB" >
  6083. </productMenu>
  6084. <productID id="5594"
  6085. />
  6086. <productGroupable type="0"
  6087. />
  6088. </product>
  6089. <product id="C30"
  6090. name="SENA C30"
  6091. series="C"
  6092. latestVersion="1.0.5"
  6093. latestVersionVoicePrompt="0.10"
  6094. show = "1" >
  6095. <productMenu id="protocol"
  6096. type="2" >
  6097. </productMenu>
  6098. <productMenu id="alexa"
  6099. type="0" >
  6100. </productMenu>
  6101. <productMenu id="ota"
  6102. type="2" >
  6103. <otaPackages>
  6104. <package
  6105. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.0.5.img"
  6106. size="3144148"
  6107. />
  6108. </otaPackages>
  6109. </productMenu>
  6110. <productMenu id="wa"
  6111. type="0" >
  6112. </productMenu>
  6113. <productMenu id="meshIntercom"
  6114. type="30" >
  6115. </productMenu>
  6116. <productMenu id="phone"
  6117. type="1" >
  6118. </productMenu>
  6119. <productMenu id="music"
  6120. type="1" >
  6121. </productMenu>
  6122. <productMenu id="musicSharing"
  6123. type="0" >
  6124. </productMenu>
  6125. <productMenu id="deviceSetting"
  6126. type="1"
  6127. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml" >
  6128. </productMenu>
  6129. <productMenu id="quickGuide"
  6130. type="1"
  6131. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  6132. size="1.12MB" >
  6133. </productMenu>
  6134. <productMenu id="userGuide"
  6135. type="0"
  6136. url=""
  6137. size="2.0MB" >
  6138. </productMenu>
  6139. <productMenu id="videoGuide"
  6140. type="1"
  6141. url=""
  6142. size="3.41MB" >
  6143. </productMenu>
  6144. <productMenu id="volume"
  6145. type="12" >
  6146. </productMenu>
  6147. <productMenu id="battery"
  6148. type="1" >
  6149. </productMenu>
  6150. <productID id="683A"
  6151. />
  6152. <productGroupable type="0"
  6153. />
  6154. </product>
  6155. <product id="C20"
  6156. name="C20"
  6157. series="5"
  6158. latestVersion="1.0"
  6159. show = "0" >
  6160. <productMenu id="protocol"
  6161. type="3" >
  6162. </productMenu>
  6163. <productMenu id="sip"
  6164. type="1" >
  6165. </productMenu>
  6166. <productMenu id="bluetoothIntercom"
  6167. type="1" >
  6168. </productMenu>
  6169. <productMenu id="phone"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="deviceSetting"
  6173. type="1"
  6174. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  6175. </productMenu>
  6176. <productMenu id="quickGuide"
  6177. type="1"
  6178. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  6179. size="934KB" >
  6180. </productMenu>
  6181. <productMenu id="userGuide"
  6182. type="1"
  6183. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  6184. size="1.14MB" >
  6185. </productMenu>
  6186. <productID id="3701"
  6187. />
  6188. <productGroupable type="0"
  6189. />
  6190. </product>
  6191. <product id="C10"
  6192. name="C10"
  6193. series="5"
  6194. latestVersion="1.3"
  6195. show = "0" >
  6196. <productMenu id="protocol"
  6197. type="3" >
  6198. </productMenu>
  6199. <productMenu id="sip"
  6200. type="1" >
  6201. </productMenu>
  6202. <productMenu id="bluetoothIntercom"
  6203. type="1" >
  6204. </productMenu>
  6205. <productMenu id="phone"
  6206. type="1" >
  6207. </productMenu>
  6208. <productMenu id="fmradio"
  6209. type="0" >
  6210. </productMenu>
  6211. <productMenu id="deviceSetting"
  6212. type="1"
  6213. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  6214. </productMenu>
  6215. <productMenu id="userGuide"
  6216. type="1"
  6217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C10_1.0.0_sc_221228.pdf"
  6218. size="1.14MB" >
  6219. </productMenu>
  6220. <productID id="5595"
  6221. />
  6222. <productGroupable type="0"
  6223. />
  6224. </product>
  6225. <product id="J30"
  6226. name="J30"
  6227. series="J"
  6228. latestVersion="1.0"
  6229. latestVersionVoicePrompt="0.11"
  6230. show = "0" >
  6231. <productMenu id="protocol"
  6232. type="2" >
  6233. </productMenu>
  6234. <productMenu id="alexa"
  6235. type="0" >
  6236. </productMenu>
  6237. <productMenu id="ota"
  6238. type="0" >
  6239. <otaPackages>
  6240. <package
  6241. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.0-build2.img"
  6242. size="3144148"
  6243. />
  6244. </otaPackages>
  6245. </productMenu>
  6246. <productMenu id="wa"
  6247. type="0" >
  6248. </productMenu>
  6249. <productMenu id="meshIntercom"
  6250. type="30" >
  6251. </productMenu>
  6252. <productMenu id="phone"
  6253. type="1" >
  6254. </productMenu>
  6255. <productMenu id="music"
  6256. type="1" >
  6257. </productMenu>
  6258. <productMenu id="musicSharing"
  6259. type="0" >
  6260. </productMenu>
  6261. <productMenu id="deviceSetting"
  6262. type="1"
  6263. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml" >
  6264. </productMenu>
  6265. <productMenu id="quickGuide"
  6266. type="1"
  6267. url=""
  6268. size="1.12MB" >
  6269. </productMenu>
  6270. <productMenu id="userGuide"
  6271. type="0"
  6272. url=""
  6273. size="2.0MB" >
  6274. </productMenu>
  6275. <productMenu id="videoGuide"
  6276. type="1"
  6277. url=""
  6278. size="3.41MB" >
  6279. </productMenu>
  6280. <productMenu id="volume"
  6281. type="12" >
  6282. </productMenu>
  6283. <productMenu id="battery"
  6284. type="1" >
  6285. </productMenu>
  6286. <productID id="6848"
  6287. />
  6288. <productGroupable type="0"
  6289. />
  6290. </product>
  6291. <product id="J10"
  6292. name="J10"
  6293. series="5"
  6294. latestVersion="1.0"
  6295. show = "0" >
  6296. <productMenu id="protocol"
  6297. type="3" >
  6298. </productMenu>
  6299. <productMenu id="sip"
  6300. type="1" >
  6301. </productMenu>
  6302. <productMenu id="bluetoothIntercom"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="phone"
  6306. type="1" >
  6307. </productMenu>
  6308. <productMenu id="fmradio"
  6309. type="0" >
  6310. </productMenu>
  6311. <productMenu id="deviceSetting"
  6312. type="1"
  6313. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  6314. </productMenu>
  6315. <productMenu id="userGuide"
  6316. type="1"
  6317. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_J10_1.0.0_jp_241122.pdf"
  6318. size="1.14MB" >
  6319. </productMenu>
  6320. <productID id="5598"
  6321. />
  6322. <productGroupable type="0"
  6323. />
  6324. </product>
  6325. <product id="B20"
  6326. name="B20"
  6327. series="B"
  6328. latestVersion="1.0"
  6329. latestVersionVoicePrompt="0.10"
  6330. show = "-1" >
  6331. <productMenu id="protocol"
  6332. type="2" >
  6333. </productMenu>
  6334. <productMenu id="alexa"
  6335. type="0" >
  6336. </productMenu>
  6337. <productMenu id="ota"
  6338. type="0" >
  6339. <otaPackages>
  6340. <package
  6341. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.0.3.img"
  6342. size="3144148"
  6343. />
  6344. </otaPackages>
  6345. </productMenu>
  6346. <productMenu id="wa"
  6347. type="0" >
  6348. </productMenu>
  6349. <productMenu id="meshIntercom"
  6350. type="30" >
  6351. </productMenu>
  6352. <productMenu id="phone"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="music"
  6356. type="1" >
  6357. </productMenu>
  6358. <productMenu id="musicSharing"
  6359. type="0" >
  6360. </productMenu>
  6361. <productMenu id="deviceSetting"
  6362. type="1"
  6363. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA.xml" >
  6364. </productMenu>
  6365. <productMenu id="quickGuide"
  6366. type="1"
  6367. url=""
  6368. size="1.12MB" >
  6369. </productMenu>
  6370. <productMenu id="userGuide"
  6371. type="0"
  6372. url=""
  6373. size="2.0MB" >
  6374. </productMenu>
  6375. <productMenu id="videoGuide"
  6376. type="1"
  6377. url=""
  6378. size="3.41MB" >
  6379. </productMenu>
  6380. <productMenu id="volume"
  6381. type="12" >
  6382. </productMenu>
  6383. <productMenu id="battery"
  6384. type="1" >
  6385. </productMenu>
  6386. <productID id="6847"
  6387. />
  6388. <productGroupable type="0"
  6389. />
  6390. </product>
  6391. <product id="B10"
  6392. name="B10"
  6393. series="5"
  6394. latestVersion="1.1"
  6395. show = "0" >
  6396. <productMenu id="protocol"
  6397. type="3" >
  6398. </productMenu>
  6399. <productMenu id="sip"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="bluetoothIntercom"
  6403. type="1" >
  6404. </productMenu>
  6405. <productMenu id="phone"
  6406. type="1" >
  6407. </productMenu>
  6408. <productMenu id="fmradio"
  6409. type="0" >
  6410. </productMenu>
  6411. <productMenu id="deviceSetting"
  6412. type="1"
  6413. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  6414. </productMenu>
  6415. <productMenu id="userGuide"
  6416. type="1"
  6417. url="https://firmware.sena.com/senabluetoothmanager/Indian_UsersGuide_B10_1.0.0_en_240405.pdf"
  6418. size="1.14MB" >
  6419. </productMenu>
  6420. <productID id="5596"
  6421. />
  6422. <productGroupable type="0"
  6423. />
  6424. </product>
  6425. <product id="E30"
  6426. name="E30"
  6427. series="E"
  6428. latestVersion="1.0"
  6429. latestVersionVoicePrompt="0.10"
  6430. show = "-1" >
  6431. <productMenu id="protocol"
  6432. type="2" >
  6433. </productMenu>
  6434. <productMenu id="alexa"
  6435. type="0" >
  6436. </productMenu>
  6437. <productMenu id="ota"
  6438. type="0" >
  6439. <otaPackages>
  6440. <package
  6441. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.0.3.img"
  6442. size="3144148"
  6443. />
  6444. </otaPackages>
  6445. </productMenu>
  6446. <productMenu id="wa"
  6447. type="0" >
  6448. </productMenu>
  6449. <productMenu id="meshIntercom"
  6450. type="30" >
  6451. </productMenu>
  6452. <productMenu id="phone"
  6453. type="1" >
  6454. </productMenu>
  6455. <productMenu id="music"
  6456. type="1" >
  6457. </productMenu>
  6458. <productMenu id="musicSharing"
  6459. type="0" >
  6460. </productMenu>
  6461. <productMenu id="deviceSetting"
  6462. type="1"
  6463. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_01.xml" >
  6464. </productMenu>
  6465. <productMenu id="quickGuide"
  6466. type="1"
  6467. url=""
  6468. size="1.12MB" >
  6469. </productMenu>
  6470. <productMenu id="userGuide"
  6471. type="0"
  6472. url=""
  6473. size="2.0MB" >
  6474. </productMenu>
  6475. <productMenu id="videoGuide"
  6476. type="1"
  6477. url=""
  6478. size="3.41MB" >
  6479. </productMenu>
  6480. <productMenu id="volume"
  6481. type="12" >
  6482. </productMenu>
  6483. <productMenu id="battery"
  6484. type="1" >
  6485. </productMenu>
  6486. <productID id="6846"
  6487. />
  6488. <productGroupable type="0"
  6489. />
  6490. </product>
  6491. <product id="ACSRAM"
  6492. name="ACS-RAM"
  6493. series="ACS"
  6494. latestVersion="1.0.3"
  6495. show = "1" >
  6496. <productMenu id="protocol"
  6497. type="3" >
  6498. </productMenu>
  6499. <productMenu id="sip"
  6500. type="1" >
  6501. </productMenu>
  6502. <productMenu id="bluetoothIntercom"
  6503. type="1" >
  6504. </productMenu>
  6505. <productMenu id="deviceSetting"
  6506. type="1"
  6507. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  6508. </productMenu>
  6509. <productMenu id="quickGuide"
  6510. type="1"
  6511. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  6512. size="344KB" >
  6513. </productMenu>
  6514. <productMenu id="userGuide"
  6515. type="1"
  6516. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  6517. size="1.14MB" >
  6518. </productMenu>
  6519. <productID id="3400"
  6520. />
  6521. <productGroupable type="0"
  6522. />
  6523. </product>
  6524. <product id="ACS10"
  6525. name="ACS10"
  6526. series="ACS"
  6527. latestVersion="1.0.2"
  6528. show = "1" >
  6529. <productMenu id="protocol"
  6530. type="0">
  6531. </productMenu>
  6532. <productMenu id="sip"
  6533. type="1" >
  6534. </productMenu>
  6535. <productMenu id="bluetoothIntercom"
  6536. type="1" >
  6537. </productMenu>
  6538. <productMenu id="phone"
  6539. type="2" >
  6540. </productMenu>
  6541. <productMenu id="deviceSetting"
  6542. type="1"
  6543. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  6544. </productMenu>
  6545. <productMenu id="quickGuide"
  6546. type="1"
  6547. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  6548. size="970KB" >
  6549. </productMenu>
  6550. <productMenu id="userGuide"
  6551. type="1"
  6552. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  6553. size="1.26MB" >
  6554. </productMenu>
  6555. <productID id="3300"
  6556. />
  6557. <productGroupable type="0"
  6558. />
  6559. </product>
  6560. <product id="DWO7ProMesh"
  6561. name="DWO 7 Pro Mesh"
  6562. series="50"
  6563. latestVersion="1.0"
  6564. latestVersionVoicePrompt="0.8"
  6565. show = "0" >
  6566. <productMenu id="protocol"
  6567. type="2" >
  6568. </productMenu>
  6569. <productMenu id="alexa"
  6570. type="0" >
  6571. </productMenu>
  6572. <productMenu id="ota"
  6573. type="2" >
  6574. <otaPackages>
  6575. <package
  6576. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.0-build7.img"
  6577. size="2945812"
  6578. />
  6579. </otaPackages>
  6580. </productMenu>
  6581. <productMenu id="wa"
  6582. type="0" >
  6583. </productMenu>
  6584. <productMenu id="meshIntercom"
  6585. type="20" >
  6586. </productMenu>
  6587. <productMenu id="phone"
  6588. type="1" >
  6589. </productMenu>
  6590. <productMenu id="music"
  6591. type="1" >
  6592. </productMenu>
  6593. <productMenu id="fmradio"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="musicSharing"
  6597. type="0" >
  6598. </productMenu>
  6599. <productMenu id="deviceSetting"
  6600. type="1"
  6601. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml" >
  6602. </productMenu>
  6603. <productMenu id="quickGuide"
  6604. type="1"
  6605. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.0.0_en_230911.pdf"
  6606. size="1.12MB" >
  6607. </productMenu>
  6608. <productMenu id="userGuide"
  6609. type="1"
  6610. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.0.0_en_230908.pdf"
  6611. size="2.0MB" >
  6612. </productMenu>
  6613. <productMenu id="volume"
  6614. type="12" >
  6615. </productMenu>
  6616. <productMenu id="battery"
  6617. type="1" >
  6618. </productMenu>
  6619. <productID id="6806"
  6620. />
  6621. <productGroupable type="0"
  6622. />
  6623. </product>
  6624. <product id="MeshStation"
  6625. name="Mesh Station"
  6626. series="50"
  6627. latestVersion="0.9"
  6628. show = "0" >
  6629. <productMenu id="protocol"
  6630. type="2" >
  6631. </productMenu>
  6632. <productMenu id="meshIntercom"
  6633. type="20"
  6634. url="99" >
  6635. </productMenu>
  6636. <productID id="3161"
  6637. />
  6638. <productGroupable type="0"
  6639. />
  6640. </product>
  6641. </products>
  6642. </sna>