snm.xml 227 KB

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