snm.xml 229 KB

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