snm.xml 215 KB

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