snm.xml 227 KB

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