snm.xml 253 KB

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