snm.xml 227 KB

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