snm.xml 216 KB

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