snm.xml 247 KB

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