snm.xml 237 KB

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