snm.xml 235 KB

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