snm.xml 247 KB

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