snm.xml 262 KB

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