snm.xml 232 KB

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