snm.xml 235 KB

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