snm.xml 278 KB

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