snm.xml 236 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20250049" 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.30"
  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.30-build0.img"
  500. size="5183988"
  501. />
  502. <package
  503. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-fr-FR.img"
  504. size="5183988"
  505. />
  506. <package
  507. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-es-ES.img"
  508. size="5183988"
  509. />
  510. <package
  511. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-it-IT.img"
  512. size="5183988"
  513. />
  514. <package
  515. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-de-DE.img"
  516. size="5183988"
  517. />
  518. <package
  519. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-nl-NL.img"
  520. size="5183988"
  521. />
  522. <package
  523. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-ru-RU.img"
  524. size="5183988"
  525. />
  526. <package
  527. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-cmn-CN.img"
  528. size="5183988"
  529. />
  530. <package
  531. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-ko-KR.img"
  532. size="5183988"
  533. />
  534. <package
  535. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-ja-JP.img"
  536. size="5183988"
  537. />
  538. <package
  539. url="https://api.sena.com/support/test/OTATest/BMW_COM_P1-v0.9.30-build0-fi-FI.img"
  540. size="5183988"
  541. />
  542. </otaPackages>
  543. </productMenu>
  544. <productMenu id="wa"
  545. type="0" >
  546. </productMenu>
  547. <productMenu id="sip"
  548. type="1" >
  549. </productMenu>
  550. <productMenu id="led"
  551. type="0" >
  552. </productMenu>
  553. <productMenu id="illusion"
  554. type="0" >
  555. </productMenu>
  556. <productMenu id="meshIntercom"
  557. type="30" >
  558. </productMenu>
  559. <productMenu id="bluetoothIntercom"
  560. type="1" >
  561. </productMenu>
  562. <productMenu id="bluetoothIntercomGrouping"
  563. type="0" >
  564. </productMenu>
  565. <productMenu id="fmradio"
  566. type="0" >
  567. </productMenu>
  568. <productMenu id="phone"
  569. type="1" >
  570. </productMenu>
  571. <productMenu id="music"
  572. type="1" >
  573. </productMenu>
  574. <productMenu id="musicSharing"
  575. type="0" >
  576. </productMenu>
  577. <productMenu id="deviceSetting"
  578. type="1"
  579. url="https://api.sena.com/support/test/xml/NS_COMP1_Test_13.xml" >
  580. </productMenu>
  581. <productMenu id="quickGuide"
  582. type="0"
  583. url=""
  584. size="1.12MB" >
  585. </productMenu>
  586. <productMenu id="userGuide"
  587. type="0"
  588. url=""
  589. size="2.0MB" >
  590. </productMenu>
  591. <productMenu id="videoGuide"
  592. type="0"
  593. url=""
  594. size="3.41MB" >
  595. </productMenu>
  596. <productMenu id="volume"
  597. type="16" >
  598. </productMenu>
  599. <productMenu id="battery"
  600. type="1" >
  601. </productMenu>
  602. <productID id="6A80"
  603. />
  604. <productGroupable type="0"
  605. />
  606. </product>
  607. <product id="50S"
  608. name="50S"
  609. series="50"
  610. latestVersion="2.7"
  611. show = "1" >
  612. <productMenu id="protocol"
  613. type="2" >
  614. </productMenu>
  615. <productMenu id="alexa"
  616. type="0" >
  617. </productMenu>
  618. <productMenu id="ota"
  619. type="0"
  620. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  621. size="1150234" >
  622. </productMenu>
  623. <productMenu id="wa"
  624. type="1" >
  625. </productMenu>
  626. <productMenu id="sip"
  627. type="1" >
  628. </productMenu>
  629. <productMenu id="meshIntercom"
  630. type="30" >
  631. <productMenuType version="2.1.1"
  632. type="20"
  633. />
  634. </productMenu>
  635. <productMenu id="meshIntercom+"
  636. type="3"
  637. url="2" >
  638. <productMenuType version="2.5"
  639. type="2"
  640. />
  641. <productMenuURL version="2.1.1"
  642. url="0"
  643. />
  644. </productMenu>
  645. <productMenu id="waveIntercom"
  646. type="1" >
  647. <productMenuType version="2.6"
  648. type="0"
  649. />
  650. </productMenu>
  651. <productMenu id="bluetoothIntercom"
  652. type="1" >
  653. </productMenu>
  654. <productMenu id="phone"
  655. type="1" >
  656. </productMenu>
  657. <productMenu id="music"
  658. type="1" >
  659. </productMenu>
  660. <productMenu id="fmradio"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="deviceSetting"
  664. type="1"
  665. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  666. <productMenuURL version="2.5"
  667. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  668. />
  669. <productMenuURL version="2.1.1"
  670. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  671. />
  672. <productMenuURL version="2.0.3"
  673. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  674. />
  675. </productMenu>
  676. <productMenu id="quickGuide"
  677. type="0"
  678. url=""
  679. size="934KB" >
  680. </productMenu>
  681. <productMenu id="userGuide"
  682. type="1"
  683. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.0_en_250226.pdf"
  684. size="1.14MB" >
  685. </productMenu>
  686. <productMenu id="videoGuide"
  687. type="1"
  688. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  689. size="3.41MB" >
  690. </productMenu>
  691. <productMenu id="volume"
  692. type="11" >
  693. </productMenu>
  694. <productMenu id="battery"
  695. type="1" >
  696. </productMenu>
  697. <productID id="3210"
  698. />
  699. <productGroupable type="0"
  700. />
  701. </product>
  702. <product id="50S"
  703. name="50S"
  704. series="50"
  705. latestVersion="1.3.1"
  706. show = "0" >
  707. <productMenu id="protocol"
  708. type="2" >
  709. </productMenu>
  710. <productMenu id="alexa"
  711. type="0" >
  712. </productMenu>
  713. <productMenu id="wa"
  714. type="1" >
  715. </productMenu>
  716. <productMenu id="sip"
  717. type="1" >
  718. </productMenu>
  719. <productMenu id="meshIntercom"
  720. type="30" >
  721. <productMenuType version="1.2.2"
  722. type="20"
  723. />
  724. </productMenu>
  725. <productMenu id="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.7"
  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.7.0_en_250305.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="0"
  1841. url=""
  1842. size="344KB" >
  1843. </productMenu>
  1844. <productMenu id="userGuide"
  1845. type="1"
  1846. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.5.1_en_250226.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="0"
  1931. url=""
  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.1_en_250227.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="meshIntercom+"
  2342. type="3"
  2343. url="2" >
  2344. <productMenuType version="4.3.9"
  2345. type="2"
  2346. />
  2347. <productMenuURL version="4.0.4"
  2348. url="0"
  2349. />
  2350. </productMenu>
  2351. <productMenu id="bluetoothIntercom"
  2352. type="1" >
  2353. </productMenu>
  2354. <productMenu id="phone"
  2355. type="1" >
  2356. </productMenu>
  2357. <productMenu id="music"
  2358. type="1" >
  2359. </productMenu>
  2360. <productMenu id="fmradio"
  2361. type="1" >
  2362. </productMenu>
  2363. <productMenu id="deviceSetting"
  2364. type="1"
  2365. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  2366. <productMenuURL version="4.3"
  2367. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  2368. />
  2369. <productMenuURL version="4.2"
  2370. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  2371. />
  2372. <productMenuURL version="4.0.4"
  2373. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  2374. />
  2375. </productMenu>
  2376. <productMenu id="quickGuide"
  2377. type="1"
  2378. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_3.3.0_en_241210.pdf"
  2379. size="934KB" >
  2380. </productMenu>
  2381. <productMenu id="userGuide"
  2382. type="1"
  2383. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.0_en_241212.pdf"
  2384. size="1.14MB" >
  2385. </productMenu>
  2386. <productMenu id="volume"
  2387. type="11" >
  2388. </productMenu>
  2389. <productMenu id="battery"
  2390. type="1" >
  2391. </productMenu>
  2392. <productID id="3211"
  2393. />
  2394. <productGroupable type="0"
  2395. />
  2396. </product>
  2397. <product id="30K"
  2398. name="30K"
  2399. series="30"
  2400. latestVersion="3.4"
  2401. show = "0" >
  2402. <productMenu id="protocol"
  2403. type="1"
  2404. url="0">
  2405. </productMenu>
  2406. <productMenu id="wa"
  2407. type="7" >
  2408. </productMenu>
  2409. <productMenu id="sip"
  2410. type="1" >
  2411. </productMenu>
  2412. <productMenu id="meshIntercom"
  2413. type="20" >
  2414. <productMenuType version="2.9.9"
  2415. type="10"
  2416. />
  2417. </productMenu>
  2418. <productMenu id="bluetoothIntercom"
  2419. type="1" >
  2420. </productMenu>
  2421. <productMenu id="phone"
  2422. type="1" >
  2423. </productMenu>
  2424. <productMenu id="music"
  2425. type="1" >
  2426. </productMenu>
  2427. <productMenu id="fmradio"
  2428. type="1" >
  2429. </productMenu>
  2430. <productMenu id="deviceSetting"
  2431. type="1"
  2432. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml">
  2433. <productMenuURL version="3.3.1"
  2434. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  2435. />
  2436. <productMenuURL version="3.0.1"
  2437. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  2438. />
  2439. <productMenuURL version="2.3.1"
  2440. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  2441. />
  2442. <productMenuURL version="2.0"
  2443. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  2444. />
  2445. <productMenuURL version="1.0.3"
  2446. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  2447. />
  2448. </productMenu>
  2449. <productMenu id="quickGuide"
  2450. type="1"
  2451. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_30K_2.4.0_en_230714.pdf"
  2452. size="1.06MB" >
  2453. </productMenu>
  2454. <productMenu id="userGuide"
  2455. type="1"
  2456. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.0_en_230714.pdf"
  2457. size="3.15MB" >
  2458. </productMenu>
  2459. <productMenu id="volume"
  2460. type="1" >
  2461. </productMenu>
  2462. <productID id="3110"
  2463. />
  2464. <productGroupable type="0"
  2465. />
  2466. </product>
  2467. <product id="OUTRUSH2"
  2468. name="OUTRUSH 2"
  2469. series="Helmet"
  2470. latestVersion="1.0"
  2471. latestVersionVoicePrompt="0.8"
  2472. show = "-1" >
  2473. <productMenu id="protocol"
  2474. type="2" >
  2475. </productMenu>
  2476. <productMenu id="alexa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="ota"
  2480. type="0" >
  2481. <otaPackages>
  2482. <package
  2483. url="https://api.sena.com/support/OTA/"
  2484. size="2945812"
  2485. />
  2486. </otaPackages>
  2487. </productMenu>
  2488. <productMenu id="meshIntercom"
  2489. type="30" >
  2490. </productMenu>
  2491. <productMenu id="phone"
  2492. type="1" >
  2493. </productMenu>
  2494. <productMenu id="music"
  2495. type="1" >
  2496. </productMenu>
  2497. <productMenu id="musicSharing"
  2498. type="0" >
  2499. </productMenu>
  2500. <productMenu id="deviceSetting"
  2501. type="1"
  2502. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  2503. </productMenu>
  2504. <productMenu id="quickGuide"
  2505. type="0"
  2506. url=""
  2507. size="1.12MB" >
  2508. </productMenu>
  2509. <productMenu id="userGuide"
  2510. type="0"
  2511. url=""
  2512. size="2.0MB" >
  2513. </productMenu>
  2514. <productMenu id="volume"
  2515. type="12" >
  2516. </productMenu>
  2517. <productMenu id="battery"
  2518. type="1" >
  2519. </productMenu>
  2520. <productID id="684A"
  2521. />
  2522. <productGroupable type="0"
  2523. />
  2524. </product>
  2525. <product id="FURY"
  2526. name="FURY"
  2527. series="Helmet"
  2528. latestVersion="1.0"
  2529. show = "0" >
  2530. <productMenu id="protocol"
  2531. type="2" >
  2532. </productMenu>
  2533. <productMenu id="alexa"
  2534. type="0" >
  2535. </productMenu>
  2536. <productMenu id="ota"
  2537. type="0" >
  2538. </productMenu>
  2539. <productMenu id="wa"
  2540. type="0" >
  2541. </productMenu>
  2542. <productMenu id="meshIntercom"
  2543. type="20" >
  2544. </productMenu>
  2545. <productMenu id="phone"
  2546. type="1" >
  2547. </productMenu>
  2548. <productMenu id="music"
  2549. type="1" >
  2550. </productMenu>
  2551. <productMenu id="fmradio"
  2552. type="1" >
  2553. </productMenu>
  2554. <productMenu id="deviceSetting"
  2555. type="1"
  2556. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  2557. </productMenu>
  2558. <productMenu id="quickGuide"
  2559. type="1"
  2560. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2561. size="1.12MB" >
  2562. </productMenu>
  2563. <productMenu id="userGuide"
  2564. type="1"
  2565. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2566. size="2.0MB" >
  2567. </productMenu>
  2568. <productMenu id="volume"
  2569. type="13" >
  2570. </productMenu>
  2571. <productMenu id="battery"
  2572. type="1" >
  2573. </productMenu>
  2574. <productID id="5552"
  2575. />
  2576. <productGroupable type="0"
  2577. />
  2578. </product>
  2579. <product id="MomentumM"
  2580. name="Momentum EVO"
  2581. series="Helmet"
  2582. latestVersion="2.1.2"
  2583. show = "1" >
  2584. <productMenu id="protocol"
  2585. type="1"
  2586. url="0">
  2587. </productMenu>
  2588. <productMenu id="wa"
  2589. type="3" >
  2590. </productMenu>
  2591. <productMenu id="sip"
  2592. type="1" >
  2593. </productMenu>
  2594. <productMenu id="meshIntercom"
  2595. type="20" >
  2596. <productMenuType version="1.9.9"
  2597. type="10"
  2598. />
  2599. </productMenu>
  2600. <productMenu id="bluetoothIntercom"
  2601. type="1" >
  2602. </productMenu>
  2603. <productMenu id="phone"
  2604. type="1" >
  2605. </productMenu>
  2606. <productMenu id="music"
  2607. type="1" >
  2608. </productMenu>
  2609. <productMenu id="fmradio"
  2610. type="1" >
  2611. </productMenu>
  2612. <productMenu id="deviceSetting"
  2613. type="1"
  2614. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  2615. <productMenuURL version="1.0.1"
  2616. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  2617. />
  2618. </productMenu>
  2619. <productMenu id="quickGuide"
  2620. type="1"
  2621. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  2622. size="1.06MB" >
  2623. </productMenu>
  2624. <productMenu id="userGuide"
  2625. type="1"
  2626. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  2627. size="3.15MB" >
  2628. </productMenu>
  2629. <productMenu id="volume"
  2630. type="2" >
  2631. </productMenu>
  2632. <productID id="3116"
  2633. />
  2634. <productGroupable type="0"
  2635. />
  2636. </product>
  2637. <product id="Momentum"
  2638. name="Momentum"
  2639. series="Helmet"
  2640. latestVersion="1.0.9"
  2641. show = "1" >
  2642. <productMenu id="protocol"
  2643. type="0">
  2644. </productMenu>
  2645. <productMenu id="sip"
  2646. type="1" >
  2647. </productMenu>
  2648. <productMenu id="bluetoothIntercom"
  2649. type="1" >
  2650. </productMenu>
  2651. <productMenu id="intercomSetting"
  2652. type="1" >
  2653. </productMenu>
  2654. <productMenu id="phone"
  2655. type="2" >
  2656. </productMenu>
  2657. <productMenu id="fmradio"
  2658. type="3" >
  2659. </productMenu>
  2660. <productMenu id="deviceSetting"
  2661. type="1"
  2662. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2663. </productMenu>
  2664. <productMenu id="quickGuide"
  2665. type="1"
  2666. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  2667. size="796KB" >
  2668. </productMenu>
  2669. <productMenu id="userGuide"
  2670. type="1"
  2671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  2672. size="1.90MB" >
  2673. </productMenu>
  2674. <productID id="4310"
  2675. />
  2676. <productGroupable type="1"
  2677. />
  2678. </product>
  2679. <product id="Momentum_Pro"
  2680. name="Momentum Pro"
  2681. series="Helmet"
  2682. latestVersion="1.0.6"
  2683. show = "1" >
  2684. <productMenu id="protocol"
  2685. type="0">
  2686. </productMenu>
  2687. <productMenu id="sip"
  2688. type="1" >
  2689. </productMenu>
  2690. <productMenu id="bluetoothIntercom"
  2691. type="1" >
  2692. </productMenu>
  2693. <productMenu id="intercomSetting"
  2694. type="1" >
  2695. </productMenu>
  2696. <productMenu id="phone"
  2697. type="2" >
  2698. </productMenu>
  2699. <productMenu id="fmradio"
  2700. type="3" >
  2701. </productMenu>
  2702. <productMenu id="deviceSetting"
  2703. type="1"
  2704. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  2705. </productMenu>
  2706. <productMenu id="quickGuide"
  2707. type="1"
  2708. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  2709. size="796KB" >
  2710. </productMenu>
  2711. <productMenu id="userGuide"
  2712. type="1"
  2713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  2714. size="1.90MB" >
  2715. </productMenu>
  2716. <productID id="4330"
  2717. />
  2718. <productGroupable type="1"
  2719. />
  2720. </product>
  2721. <product id="Momentum_INC"
  2722. name="Momentum INC"
  2723. series="Helmet"
  2724. latestVersion="1.0.7"
  2725. show = "1" >
  2726. <productMenu id="protocol"
  2727. type="0">
  2728. </productMenu>
  2729. <productMenu id="sip"
  2730. type="1" >
  2731. </productMenu>
  2732. <productMenu id="bluetoothIntercom"
  2733. type="1" >
  2734. </productMenu>
  2735. <productMenu id="intercomSetting"
  2736. type="1" >
  2737. </productMenu>
  2738. <productMenu id="phone"
  2739. type="2" >
  2740. </productMenu>
  2741. <productMenu id="fmradio"
  2742. type="3" >
  2743. </productMenu>
  2744. <productMenu id="deviceSetting"
  2745. type="1"
  2746. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2747. </productMenu>
  2748. <productMenu id="quickGuide"
  2749. type="1"
  2750. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  2751. size="794KB" >
  2752. </productMenu>
  2753. <productMenu id="userGuide"
  2754. type="1"
  2755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  2756. size="1.53MB" >
  2757. </productMenu>
  2758. <productID id="4410"
  2759. />
  2760. <productGroupable type="1"
  2761. />
  2762. </product>
  2763. <product id="Momentum_INCP"
  2764. name="Momentum INC Pro"
  2765. series="Helmet"
  2766. latestVersion="1.0.4"
  2767. show = "1" >
  2768. <productMenu id="protocol"
  2769. type="0">
  2770. </productMenu>
  2771. <productMenu id="sip"
  2772. type="1" >
  2773. </productMenu>
  2774. <productMenu id="bluetoothIntercom"
  2775. type="1" >
  2776. </productMenu>
  2777. <productMenu id="intercomSetting"
  2778. type="1" >
  2779. </productMenu>
  2780. <productMenu id="phone"
  2781. type="2" >
  2782. </productMenu>
  2783. <productMenu id="fmradio"
  2784. type="3" >
  2785. </productMenu>
  2786. <productMenu id="deviceSetting"
  2787. type="1"
  2788. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  2789. </productMenu>
  2790. <productMenu id="quickGuide"
  2791. type="1"
  2792. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  2793. size="794KB" >
  2794. </productMenu>
  2795. <productMenu id="userGuide"
  2796. type="1"
  2797. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  2798. size="1.53MB" >
  2799. </productMenu>
  2800. <productID id="4430"
  2801. />
  2802. <productGroupable type="1"
  2803. />
  2804. </product>
  2805. <product id="Momentum_Lite"
  2806. name="Momentum Lite"
  2807. series="Helmet"
  2808. latestVersion="2.0.3"
  2809. show = "1" >
  2810. <productMenu id="protocol"
  2811. type="0">
  2812. </productMenu>
  2813. <productMenu id="sip"
  2814. type="1" >
  2815. </productMenu>
  2816. <productMenu id="bluetoothIntercom"
  2817. type="1" >
  2818. </productMenu>
  2819. <productMenu id="phone"
  2820. type="2" >
  2821. </productMenu>
  2822. <productMenu id="fmradio"
  2823. type="3" >
  2824. </productMenu>
  2825. <productMenu id="deviceSetting"
  2826. type="1"
  2827. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  2828. <productMenuURL version="1.1"
  2829. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  2830. />
  2831. </productMenu>
  2832. <productMenu id="quickGuide"
  2833. type="1"
  2834. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  2835. size="790KB" >
  2836. </productMenu>
  2837. <productMenu id="userGuide"
  2838. type="1"
  2839. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  2840. size="1.42MB" >
  2841. </productMenu>
  2842. <productID id="5526"
  2843. />
  2844. <productGroupable type="0"
  2845. />
  2846. </product>
  2847. <product id="OUTRUSHM"
  2848. name="OUTRUSH M"
  2849. series="Helmet"
  2850. latestVersion="1.0"
  2851. show = "0" >
  2852. <productMenu id="protocol"
  2853. type="2" >
  2854. </productMenu>
  2855. <productMenu id="alexa"
  2856. type="0" >
  2857. </productMenu>
  2858. <productMenu id="ota"
  2859. type="0" >
  2860. </productMenu>
  2861. <productMenu id="wa"
  2862. type="0" >
  2863. </productMenu>
  2864. <productMenu id="meshIntercom"
  2865. type="30" >
  2866. </productMenu>
  2867. <productMenu id="phone"
  2868. type="1" >
  2869. </productMenu>
  2870. <productMenu id="music"
  2871. type="1" >
  2872. </productMenu>
  2873. <productMenu id="fmradio"
  2874. type="1" >
  2875. </productMenu>
  2876. <productMenu id="deviceSetting"
  2877. type="1"
  2878. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  2879. </productMenu>
  2880. <productMenu id="quickGuide"
  2881. type="1"
  2882. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  2883. size="1.12MB" >
  2884. </productMenu>
  2885. <productMenu id="userGuide"
  2886. type="1"
  2887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  2888. size="2.0MB" >
  2889. </productMenu>
  2890. <productMenu id="volume"
  2891. type="13" >
  2892. </productMenu>
  2893. <productMenu id="battery"
  2894. type="1" >
  2895. </productMenu>
  2896. <productID id="5600"
  2897. />
  2898. <productGroupable type="0"
  2899. />
  2900. </product>
  2901. <product id="ProRideEVO"
  2902. name="ProRide EVO"
  2903. series="Helmet"
  2904. latestVersion="1.1.2"
  2905. show = "1" >
  2906. <productMenu id="protocol"
  2907. type="0">
  2908. </productMenu>
  2909. <productMenu id="sip"
  2910. type="1" >
  2911. </productMenu>
  2912. <productMenu id="bluetoothIntercom"
  2913. type="1" >
  2914. </productMenu>
  2915. <productMenu id="phone"
  2916. type="2" >
  2917. </productMenu>
  2918. <productMenu id="fmradio"
  2919. type="3" >
  2920. </productMenu>
  2921. <productMenu id="deviceSetting"
  2922. type="1"
  2923. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  2924. </productMenu>
  2925. <productMenu id="userGuide"
  2926. type="1"
  2927. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  2928. size="778KB" >
  2929. </productMenu>
  2930. <productID id="5426"
  2931. />
  2932. <productGroupable type="0"
  2933. />
  2934. </product>
  2935. <product id="OUTRUSHR"
  2936. name="OUTRUSH R"
  2937. series="Helmet"
  2938. latestVersion="2.1"
  2939. show = "0" >
  2940. <productMenu id="protocol"
  2941. type="3" >
  2942. </productMenu>
  2943. <productMenu id="sip"
  2944. type="1" >
  2945. </productMenu>
  2946. <productMenu id="bluetoothIntercom"
  2947. type="1" >
  2948. </productMenu>
  2949. <productMenu id="phone"
  2950. type="1" >
  2951. </productMenu>
  2952. <productMenu id="fmradio"
  2953. type="0" >
  2954. </productMenu>
  2955. <productMenu id="deviceSetting"
  2956. type="1"
  2957. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  2958. </productMenu>
  2959. <productMenu id="userGuide"
  2960. type="1"
  2961. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  2962. size="1.14MB" >
  2963. </productMenu>
  2964. <productID id="5440"
  2965. />
  2966. <productGroupable type="0"
  2967. />
  2968. </product>
  2969. <product id="OUTRUSHR"
  2970. name="OUTRUSH R"
  2971. series="Helmet"
  2972. latestVersion="1.1.3"
  2973. show = "1" >
  2974. <productMenu id="protocol"
  2975. type="0">
  2976. </productMenu>
  2977. <productMenu id="sip"
  2978. type="1" >
  2979. </productMenu>
  2980. <productMenu id="bluetoothIntercom"
  2981. type="1" >
  2982. </productMenu>
  2983. <productMenu id="phone"
  2984. type="2" >
  2985. </productMenu>
  2986. <productMenu id="fmradio"
  2987. type="3" >
  2988. </productMenu>
  2989. <productMenu id="deviceSetting"
  2990. type="1"
  2991. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  2992. </productMenu>
  2993. <productMenu id="userGuide"
  2994. type="1"
  2995. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  2996. size="660KB" >
  2997. </productMenu>
  2998. <productID id="5424"
  2999. />
  3000. <productGroupable type="0"
  3001. />
  3002. </product>
  3003. <product id="OUTSTARS"
  3004. name="OUTSTAR S"
  3005. series="Helmet"
  3006. latestVersion="2.0.1"
  3007. show = "0" >
  3008. <productMenu id="protocol"
  3009. type="3" >
  3010. </productMenu>
  3011. <productMenu id="sip"
  3012. type="1" >
  3013. </productMenu>
  3014. <productMenu id="bluetoothIntercom"
  3015. type="1" >
  3016. </productMenu>
  3017. <productMenu id="phone"
  3018. type="1" >
  3019. </productMenu>
  3020. <productMenu id="fmradio"
  3021. type="0" >
  3022. </productMenu>
  3023. <productMenu id="deviceSetting"
  3024. type="1"
  3025. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  3026. </productMenu>
  3027. <productMenu id="userGuide"
  3028. type="0"
  3029. url=""
  3030. size="1.14MB" >
  3031. </productMenu>
  3032. <productID id="5443"
  3033. />
  3034. <productGroupable type="0"
  3035. />
  3036. </product>
  3037. <product id="OUTSTARS"
  3038. name="OUTSTAR S"
  3039. series="Helmet"
  3040. latestVersion="1.1.3"
  3041. show = "1" >
  3042. <productMenu id="protocol"
  3043. type="0">
  3044. </productMenu>
  3045. <productMenu id="sip"
  3046. type="1" >
  3047. </productMenu>
  3048. <productMenu id="bluetoothIntercom"
  3049. type="1" >
  3050. </productMenu>
  3051. <productMenu id="phone"
  3052. type="2" >
  3053. </productMenu>
  3054. <productMenu id="fmradio"
  3055. type="3" >
  3056. </productMenu>
  3057. <productMenu id="deviceSetting"
  3058. type="1"
  3059. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3060. </productMenu>
  3061. <productMenu id="quickGuide"
  3062. type="1"
  3063. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3064. size="643KB" >
  3065. </productMenu>
  3066. <productMenu id="userGuide"
  3067. type="1"
  3068. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  3069. size="1.15MB" >
  3070. </productMenu>
  3071. <productID id="5428"
  3072. />
  3073. <productGroupable type="0"
  3074. />
  3075. </product>
  3076. <product id="OUTRIDE"
  3077. name="OUTRIDE"
  3078. series="Helmet"
  3079. latestVersion="1.0.1"
  3080. show = "1" >
  3081. <productMenu id="protocol"
  3082. type="0">
  3083. </productMenu>
  3084. <productMenu id="sip"
  3085. type="1" >
  3086. </productMenu>
  3087. <productMenu id="bluetoothIntercom"
  3088. type="1" >
  3089. </productMenu>
  3090. <productMenu id="phone"
  3091. type="2" >
  3092. </productMenu>
  3093. <productMenu id="fmradio"
  3094. type="3" >
  3095. </productMenu>
  3096. <productMenu id="deviceSetting"
  3097. type="1"
  3098. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3099. </productMenu>
  3100. <productMenu id="quickGuide"
  3101. type="1"
  3102. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3103. size="643KB" >
  3104. </productMenu>
  3105. <productMenu id="userGuide"
  3106. type="1"
  3107. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  3108. size="660KB" >
  3109. </productMenu>
  3110. <productID id="5432"
  3111. />
  3112. <productGroupable type="0"
  3113. />
  3114. </product>
  3115. <product id="OUTFORCE"
  3116. name="OUTFORCE"
  3117. series="Helmet"
  3118. latestVersion="1.0.1"
  3119. show = "1" >
  3120. <productMenu id="protocol"
  3121. type="0">
  3122. </productMenu>
  3123. <productMenu id="sip"
  3124. type="1" >
  3125. </productMenu>
  3126. <productMenu id="bluetoothIntercom"
  3127. type="1" >
  3128. </productMenu>
  3129. <productMenu id="phone"
  3130. type="2" >
  3131. </productMenu>
  3132. <productMenu id="fmradio"
  3133. type="3" >
  3134. </productMenu>
  3135. <productMenu id="deviceSetting"
  3136. type="1"
  3137. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  3138. </productMenu>
  3139. <productMenu id="quickGuide"
  3140. type="1"
  3141. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3142. size="643KB" >
  3143. </productMenu>
  3144. <productMenu id="userGuide"
  3145. type="1"
  3146. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  3147. size="660KB" >
  3148. </productMenu>
  3149. <productID id="5430"
  3150. />
  3151. <productGroupable type="0"
  3152. />
  3153. </product>
  3154. <product id="Rumba"
  3155. name="Rumba"
  3156. series="30"
  3157. latestVersion="2.0"
  3158. show = "0" >
  3159. <productMenu id="protocol"
  3160. type="3" >
  3161. </productMenu>
  3162. <productMenu id="sip"
  3163. type="1" >
  3164. </productMenu>
  3165. <productMenu id="bluetoothIntercom"
  3166. type="1" >
  3167. </productMenu>
  3168. <productMenu id="deviceSetting"
  3169. type="1"
  3170. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  3171. </productMenu>
  3172. <productMenu id="quickGuide"
  3173. type="1"
  3174. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  3175. size="344KB" >
  3176. </productMenu>
  3177. <productMenu id="userGuide"
  3178. type="1"
  3179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  3180. size="1.14MB" >
  3181. </productMenu>
  3182. <productID id="6322"
  3183. />
  3184. <productGroupable type="0"
  3185. />
  3186. </product>
  3187. <product id="Savage"
  3188. name="Savage"
  3189. series="Helmet"
  3190. latestVersion="1.2.2"
  3191. show = "1" >
  3192. <productMenu id="protocol"
  3193. type="0">
  3194. </productMenu>
  3195. <productMenu id="sip"
  3196. type="1" >
  3197. </productMenu>
  3198. <productMenu id="bluetoothIntercom"
  3199. type="1" >
  3200. </productMenu>
  3201. <productMenu id="phone"
  3202. type="2" >
  3203. </productMenu>
  3204. <productMenu id="fmradio"
  3205. type="3" >
  3206. </productMenu>
  3207. <productMenu id="deviceSetting"
  3208. type="1"
  3209. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  3210. <productMenuURL version="1.9"
  3211. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  3212. />
  3213. <productMenuURL version="1.1"
  3214. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  3215. />
  3216. </productMenu>
  3217. <productMenu id="quickGuide"
  3218. type="1"
  3219. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  3220. size="796KB" >
  3221. </productMenu>
  3222. <productMenu id="userGuide"
  3223. type="1"
  3224. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  3225. size="910KB" >
  3226. </productMenu>
  3227. <productID id="5550"
  3228. />
  3229. <productGroupable type="0"
  3230. />
  3231. </product>
  3232. <product id="SURGE"
  3233. name="SURGE"
  3234. series="Helmet"
  3235. latestVersion="1.0.2"
  3236. latestVersionVoicePrompt="0.8"
  3237. show = "0" >
  3238. <productMenu id="protocol"
  3239. type="2" >
  3240. </productMenu>
  3241. <productMenu id="alexa"
  3242. type="0" >
  3243. </productMenu>
  3244. <productMenu id="ota"
  3245. type="2" >
  3246. <otaPackages>
  3247. <package
  3248. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.0.2-build2.img"
  3249. size="2945812"
  3250. />
  3251. </otaPackages>
  3252. </productMenu>
  3253. <productMenu id="meshIntercom"
  3254. type="30" >
  3255. </productMenu>
  3256. <productMenu id="phone"
  3257. type="1" >
  3258. </productMenu>
  3259. <productMenu id="music"
  3260. type="1" >
  3261. </productMenu>
  3262. <productMenu id="musicSharing"
  3263. type="0" >
  3264. </productMenu>
  3265. <productMenu id="deviceSetting"
  3266. type="1"
  3267. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml" >
  3268. <productMenuURL version="1.0.1"
  3269. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  3270. />
  3271. </productMenu>
  3272. <productMenu id="quickGuide"
  3273. type="0"
  3274. url=""
  3275. size="1.12MB" >
  3276. </productMenu>
  3277. <productMenu id="userGuide"
  3278. type="1"
  3279. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.0.0_en_241213.pdf"
  3280. size="2.0MB" >
  3281. </productMenu>
  3282. <productMenu id="volume"
  3283. type="12" >
  3284. </productMenu>
  3285. <productMenu id="battery"
  3286. type="1" >
  3287. </productMenu>
  3288. <productID id="6840"
  3289. />
  3290. <productGroupable type="0"
  3291. />
  3292. </product>
  3293. <product id="Cavalry2"
  3294. name="Cavalry 2"
  3295. series="Helmet"
  3296. latestVersion="1.0.1"
  3297. latestVersionVoicePrompt="0.8"
  3298. show = "1" >
  3299. <productMenu id="protocol"
  3300. type="2" >
  3301. </productMenu>
  3302. <productMenu id="alexa"
  3303. type="0" >
  3304. </productMenu>
  3305. <productMenu id="ota"
  3306. type="2" >
  3307. <otaPackages>
  3308. <package
  3309. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.0.1-build0.img"
  3310. size="3144148"
  3311. />
  3312. </otaPackages>
  3313. </productMenu>
  3314. <productMenu id="wa"
  3315. type="0" >
  3316. </productMenu>
  3317. <productMenu id="meshIntercom"
  3318. type="30" >
  3319. </productMenu>
  3320. <productMenu id="phone"
  3321. type="1" >
  3322. </productMenu>
  3323. <productMenu id="music"
  3324. type="1" >
  3325. </productMenu>
  3326. <productMenu id="musicSharing"
  3327. type="0" >
  3328. </productMenu>
  3329. <productMenu id="deviceSetting"
  3330. type="1"
  3331. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_02.xml" >
  3332. <productMenuURL version="1.0"
  3333. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_01.xml"
  3334. />
  3335. </productMenu>
  3336. <productMenu id="quickGuide"
  3337. type="0"
  3338. url=""
  3339. size="1.12MB" >
  3340. </productMenu>
  3341. <productMenu id="userGuide"
  3342. type="1"
  3343. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.1.1_en_241213.pdf"
  3344. size="2.0MB" >
  3345. </productMenu>
  3346. <productMenu id="volume"
  3347. type="12" >
  3348. </productMenu>
  3349. <productMenu id="battery"
  3350. type="1" >
  3351. </productMenu>
  3352. <productID id="6839"
  3353. />
  3354. <productGroupable type="0"
  3355. />
  3356. </product>
  3357. <product id="Cavalry"
  3358. name="Cavalry"
  3359. series="Helmet"
  3360. latestVersion="1.2.2"
  3361. show = "1" >
  3362. <productMenu id="protocol"
  3363. type="0">
  3364. </productMenu>
  3365. <productMenu id="sip"
  3366. type="1" >
  3367. </productMenu>
  3368. <productMenu id="bluetoothIntercom"
  3369. type="1" >
  3370. </productMenu>
  3371. <productMenu id="phone"
  3372. type="2" >
  3373. </productMenu>
  3374. <productMenu id="fmradio"
  3375. type="3" >
  3376. </productMenu>
  3377. <productMenu id="deviceSetting"
  3378. type="1"
  3379. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  3380. <productMenuURL version="1.9"
  3381. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  3382. />
  3383. <productMenuURL version="1.0.1"
  3384. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  3385. />
  3386. </productMenu>
  3387. <productMenu id="quickGuide"
  3388. type="1"
  3389. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  3390. size="795KB" >
  3391. </productMenu>
  3392. <productMenu id="userGuide"
  3393. type="1"
  3394. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  3395. size="1.87MB" >
  3396. </productMenu>
  3397. <productID id="5524"
  3398. />
  3399. <productGroupable type="0"
  3400. />
  3401. </product>
  3402. <product id="Cavalry_Lite"
  3403. name="Cavalry Lite"
  3404. series="Helmet"
  3405. latestVersion="1.0.2"
  3406. show = "1" >
  3407. <productMenu id="protocol"
  3408. type="0">
  3409. </productMenu>
  3410. <productMenu id="sip"
  3411. type="1" >
  3412. </productMenu>
  3413. <productMenu id="bluetoothIntercom"
  3414. type="1" >
  3415. </productMenu>
  3416. <productMenu id="phone"
  3417. type="2" >
  3418. </productMenu>
  3419. <productMenu id="fmradio"
  3420. type="3" >
  3421. </productMenu>
  3422. <productMenu id="deviceSetting"
  3423. type="1"
  3424. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  3425. </productMenu>
  3426. <productMenu id="userGuide"
  3427. type="1"
  3428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  3429. size="1.74MB" >
  3430. </productMenu>
  3431. <productID id="5536"
  3432. />
  3433. <productGroupable type="0"
  3434. />
  3435. </product>
  3436. <product id="SF4"
  3437. name="SF4"
  3438. series="SF"
  3439. latestVersion="1.1.5"
  3440. show = "0" >
  3441. <productMenu id="protocol"
  3442. type="1"
  3443. url="3">
  3444. </productMenu>
  3445. <productMenu id="sip"
  3446. type="1" >
  3447. </productMenu>
  3448. <productMenu id="bluetoothIntercom"
  3449. type="1" >
  3450. </productMenu>
  3451. <productMenu id="phone"
  3452. type="1" >
  3453. </productMenu>
  3454. <productMenu id="music"
  3455. type="1" >
  3456. </productMenu>
  3457. <productMenu id="fmradio"
  3458. type="1" >
  3459. </productMenu>
  3460. <productMenu id="deviceSetting"
  3461. type="1"
  3462. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3463. <productMenuURL version="1.0.1"
  3464. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="quickGuide"
  3468. type="1"
  3469. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  3470. size="607KB" >
  3471. </productMenu>
  3472. <productMenu id="userGuide"
  3473. type="1"
  3474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  3475. size="1.91MB" >
  3476. </productMenu>
  3477. <productMenu id="volume"
  3478. type="4" >
  3479. </productMenu>
  3480. <productID id="5414"
  3481. />
  3482. <productGroupable type="0"
  3483. />
  3484. </product>
  3485. <product id="SF4"
  3486. name="SF4"
  3487. series="SF"
  3488. latestVersion="3.3"
  3489. show = "1" >
  3490. <productMenu id="protocol"
  3491. type="2" >
  3492. </productMenu>
  3493. <productMenu id="sip"
  3494. type="1" >
  3495. </productMenu>
  3496. <productMenu id="bluetoothIntercom"
  3497. type="1" >
  3498. </productMenu>
  3499. <productMenu id="phone"
  3500. type="1" >
  3501. </productMenu>
  3502. <productMenu id="music"
  3503. type="1" >
  3504. </productMenu>
  3505. <productMenu id="fmradio"
  3506. type="1" >
  3507. </productMenu>
  3508. <productMenu id="deviceSetting"
  3509. type="1"
  3510. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  3511. <productMenuURL version="3.0"
  3512. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  3513. />
  3514. </productMenu>
  3515. <productMenu id="quickGuide"
  3516. type="1"
  3517. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_2.1.0_en_230704.pdf"
  3518. size="934KB" >
  3519. </productMenu>
  3520. <productMenu id="userGuide"
  3521. type="1"
  3522. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  3523. size="1.14MB" >
  3524. </productMenu>
  3525. <productMenu id="volume"
  3526. type="15" >
  3527. </productMenu>
  3528. <productID id="3370"
  3529. />
  3530. <productGroupable type="0"
  3531. />
  3532. </product>
  3533. <product id="SF2"
  3534. name="SF2"
  3535. series="SF"
  3536. latestVersion="1.2.1"
  3537. show = "0" >
  3538. <productMenu id="protocol"
  3539. type="1"
  3540. url="2">
  3541. </productMenu>
  3542. <productMenu id="sip"
  3543. type="1" >
  3544. </productMenu>
  3545. <productMenu id="bluetoothIntercom"
  3546. type="1" >
  3547. </productMenu>
  3548. <productMenu id="phone"
  3549. type="1" >
  3550. </productMenu>
  3551. <productMenu id="music"
  3552. type="1" >
  3553. </productMenu>
  3554. <productMenu id="fmradio"
  3555. type="1" >
  3556. </productMenu>
  3557. <productMenu id="deviceSetting"
  3558. type="1"
  3559. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3560. <productMenuURL version="1.0.1"
  3561. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  3562. />
  3563. </productMenu>
  3564. <productMenu id="quickGuide"
  3565. type="1"
  3566. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  3567. size="607KB" >
  3568. </productMenu>
  3569. <productMenu id="userGuide"
  3570. type="1"
  3571. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  3572. size="1.91MB" >
  3573. </productMenu>
  3574. <productMenu id="volume"
  3575. type="4" >
  3576. </productMenu>
  3577. <productID id="5412"
  3578. />
  3579. <productGroupable type="0"
  3580. />
  3581. </product>
  3582. <product id="SF2"
  3583. name="SF2"
  3584. series="SF"
  3585. latestVersion="3.3"
  3586. show = "1" >
  3587. <productMenu id="protocol"
  3588. type="2" >
  3589. </productMenu>
  3590. <productMenu id="sip"
  3591. type="1" >
  3592. </productMenu>
  3593. <productMenu id="bluetoothIntercom"
  3594. type="1" >
  3595. </productMenu>
  3596. <productMenu id="phone"
  3597. type="1" >
  3598. </productMenu>
  3599. <productMenu id="music"
  3600. type="1" >
  3601. </productMenu>
  3602. <productMenu id="fmradio"
  3603. type="0" >
  3604. </productMenu>
  3605. <productMenu id="deviceSetting"
  3606. type="1"
  3607. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  3608. <productMenuURL version="3.0"
  3609. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  3610. />
  3611. </productMenu>
  3612. <productMenu id="quickGuide"
  3613. type="1"
  3614. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_2.1.0_en_230704.pdf"
  3615. size="934KB" >
  3616. </productMenu>
  3617. <productMenu id="userGuide"
  3618. type="1"
  3619. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  3620. size="1.14MB" >
  3621. </productMenu>
  3622. <productMenu id="volume"
  3623. type="15" >
  3624. </productMenu>
  3625. <productID id="3360"
  3626. />
  3627. <productGroupable type="0"
  3628. />
  3629. </product>
  3630. <product id="SF1"
  3631. name="SF1"
  3632. series="SF"
  3633. latestVersion="2.0.5"
  3634. show = "0" >
  3635. <productMenu id="protocol"
  3636. type="1"
  3637. url="1">
  3638. </productMenu>
  3639. <productMenu id="sip"
  3640. type="1" >
  3641. </productMenu>
  3642. <productMenu id="bluetoothIntercom"
  3643. type="1" >
  3644. <productMenuType version="1.1"
  3645. type="0"
  3646. />
  3647. </productMenu>
  3648. <productMenu id="phone"
  3649. type="1" >
  3650. </productMenu>
  3651. <productMenu id="music"
  3652. type="1" >
  3653. </productMenu>
  3654. <productMenu id="deviceSetting"
  3655. type="1"
  3656. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  3657. <productMenuURL version="1.1"
  3658. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  3659. />
  3660. <productMenuURL version="1.0"
  3661. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  3662. />
  3663. </productMenu>
  3664. <productMenu id="quickGuide"
  3665. type="1"
  3666. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  3667. size="401KB" >
  3668. </productMenu>
  3669. <productMenu id="userGuide"
  3670. type="1"
  3671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  3672. size="1.91MB" >
  3673. </productMenu>
  3674. <productMenu id="volume"
  3675. type="3" >
  3676. </productMenu>
  3677. <productID id="5410"
  3678. />
  3679. <productGroupable type="0"
  3680. />
  3681. </product>
  3682. <product id="SF1"
  3683. name="SF1"
  3684. series="SF"
  3685. latestVersion="3.3"
  3686. show = "1" >
  3687. <productMenu id="protocol"
  3688. type="2" >
  3689. </productMenu>
  3690. <productMenu id="sip"
  3691. type="1" >
  3692. </productMenu>
  3693. <productMenu id="bluetoothIntercom"
  3694. type="1" >
  3695. </productMenu>
  3696. <productMenu id="phone"
  3697. type="1" >
  3698. </productMenu>
  3699. <productMenu id="music"
  3700. type="1" >
  3701. </productMenu>
  3702. <productMenu id="fmradio"
  3703. type="0" >
  3704. </productMenu>
  3705. <productMenu id="deviceSetting"
  3706. type="1"
  3707. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  3708. <productMenuURL version="3.0"
  3709. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  3710. />
  3711. </productMenu>
  3712. <productMenu id="quickGuide"
  3713. type="1"
  3714. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_3.1.0_en_230704.pdf"
  3715. size="934KB" >
  3716. </productMenu>
  3717. <productMenu id="userGuide"
  3718. type="1"
  3719. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.3.0_en_250102.pdf"
  3720. size="1.14MB" >
  3721. </productMenu>
  3722. <productMenu id="volume"
  3723. type="15" >
  3724. </productMenu>
  3725. <productID id="3350"
  3726. />
  3727. <productGroupable type="0"
  3728. />
  3729. </product>
  3730. <product id="SFR"
  3731. name="SFR"
  3732. series="SF"
  3733. latestVersion="1.1.1"
  3734. show = "1" >
  3735. <productMenu id="protocol"
  3736. type="1"
  3737. url="3">
  3738. </productMenu>
  3739. <productMenu id="sip"
  3740. type="1" >
  3741. </productMenu>
  3742. <productMenu id="bluetoothIntercom"
  3743. type="1" >
  3744. </productMenu>
  3745. <productMenu id="phone"
  3746. type="1" >
  3747. </productMenu>
  3748. <productMenu id="music"
  3749. type="1" >
  3750. </productMenu>
  3751. <productMenu id="fmradio"
  3752. type="1" >
  3753. </productMenu>
  3754. <productMenu id="deviceSetting"
  3755. type="1"
  3756. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  3757. </productMenu>
  3758. <productMenu id="quickGuide"
  3759. type="1"
  3760. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  3761. size="607KB" >
  3762. </productMenu>
  3763. <productMenu id="userGuide"
  3764. type="1"
  3765. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  3766. size="1.91MB" >
  3767. </productMenu>
  3768. <productMenu id="volume"
  3769. type="4" >
  3770. </productMenu>
  3771. <productID id="5418"
  3772. />
  3773. <productGroupable type="0"
  3774. />
  3775. </product>
  3776. <product id="20S"
  3777. name="20S"
  3778. series="20"
  3779. latestVersion="2.2.3"
  3780. show = "1" >
  3781. <productMenu id="protocol"
  3782. type="0">
  3783. </productMenu>
  3784. <productMenu id="wa"
  3785. type="5" >
  3786. </productMenu>
  3787. <productMenu id="sip"
  3788. type="1" >
  3789. <productMenuType version="1.0"
  3790. type="0"
  3791. />
  3792. </productMenu>
  3793. <productMenu id="bluetoothIntercom"
  3794. type="1" >
  3795. <productMenuType version="1.0"
  3796. type="0"
  3797. />
  3798. </productMenu>
  3799. <productMenu id="intercomSetting"
  3800. type="1" >
  3801. </productMenu>
  3802. <productMenu id="phone"
  3803. type="2" >
  3804. </productMenu>
  3805. <productMenu id="fmradio"
  3806. type="3" >
  3807. </productMenu>
  3808. <productMenu id="deviceSetting"
  3809. type="1"
  3810. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3811. <productMenuURL version="2.0.2"
  3812. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3813. />
  3814. <productMenuURL version="1.5"
  3815. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3816. />
  3817. <productMenuURL version="1.4.1"
  3818. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3819. />
  3820. <productMenuURL version="1.1"
  3821. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3822. />
  3823. <productMenuURL version="1.0"
  3824. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3825. />
  3826. </productMenu>
  3827. <productMenu id="quickGuide"
  3828. type="1"
  3829. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3830. size="264KB" >
  3831. </productMenu>
  3832. <productMenu id="userGuide"
  3833. type="1"
  3834. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3835. size="3.09MB" >
  3836. </productMenu>
  3837. <productID id="4210"
  3838. />
  3839. <productGroupable type="1"
  3840. />
  3841. </product>
  3842. <product id="20S_EVO"
  3843. name="20S EVO"
  3844. series="20"
  3845. latestVersion="2.2.3"
  3846. show = "1" >
  3847. <productMenu id="protocol"
  3848. type="0">
  3849. </productMenu>
  3850. <productMenu id="wa"
  3851. type="5" >
  3852. </productMenu>
  3853. <productMenu id="sip"
  3854. type="1" >
  3855. <productMenuType version="1.0"
  3856. type="0"
  3857. />
  3858. </productMenu>
  3859. <productMenu id="bluetoothIntercom"
  3860. type="1" >
  3861. <productMenuType version="1.0"
  3862. type="0"
  3863. />
  3864. </productMenu>
  3865. <productMenu id="intercomSetting"
  3866. type="1" >
  3867. </productMenu>
  3868. <productMenu id="phone"
  3869. type="2" >
  3870. </productMenu>
  3871. <productMenu id="fmradio"
  3872. type="3" >
  3873. </productMenu>
  3874. <productMenu id="deviceSetting"
  3875. type="1"
  3876. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  3877. <productMenuURL version="2.0.2"
  3878. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  3879. />
  3880. <productMenuURL version="1.5"
  3881. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  3882. />
  3883. <productMenuURL version="1.4.1"
  3884. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  3885. />
  3886. <productMenuURL version="1.1"
  3887. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  3888. />
  3889. <productMenuURL version="1.0"
  3890. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  3891. />
  3892. </productMenu>
  3893. <productMenu id="quickGuide"
  3894. type="1"
  3895. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_20S_EVO_1.4.1_en_240524.pdf"
  3896. size="264KB" >
  3897. </productMenu>
  3898. <productMenu id="userGuide"
  3899. type="1"
  3900. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.1_en_240524.pdf"
  3901. size="3.09MB" >
  3902. </productMenu>
  3903. <productID id="4210"
  3904. />
  3905. <productProductKey key="16"
  3906. />
  3907. <productGroupable type="1"
  3908. />
  3909. </product>
  3910. <product id="10S"
  3911. name="10S"
  3912. series="10"
  3913. latestVersion="3.0.1"
  3914. show = "0" >
  3915. <productMenu id="protocol"
  3916. type="3" >
  3917. </productMenu>
  3918. <productMenu id="sip"
  3919. type="1" >
  3920. </productMenu>
  3921. <productMenu id="bluetoothIntercom"
  3922. type="1" >
  3923. </productMenu>
  3924. <productMenu id="phone"
  3925. type="1" >
  3926. </productMenu>
  3927. <productMenu id="deviceSetting"
  3928. type="1"
  3929. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  3930. </productMenu>
  3931. <productMenu id="quickGuide"
  3932. type="1"
  3933. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  3934. size="934KB" >
  3935. </productMenu>
  3936. <productMenu id="userGuide"
  3937. type="1"
  3938. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  3939. size="1.14MB" >
  3940. </productMenu>
  3941. <productID id="3380"
  3942. />
  3943. <productGroupable type="0"
  3944. />
  3945. </product>
  3946. <product id="10S"
  3947. name="10S"
  3948. series="10"
  3949. latestVersion="2.1.1"
  3950. show = "1" >
  3951. <productMenu id="protocol"
  3952. type="0">
  3953. </productMenu>
  3954. <productMenu id="sip"
  3955. type="1" >
  3956. </productMenu>
  3957. <productMenu id="bluetoothIntercom"
  3958. type="1" >
  3959. </productMenu>
  3960. <productMenu id="phone"
  3961. type="2" >
  3962. </productMenu>
  3963. <productMenu id="fmradio"
  3964. type="3" >
  3965. </productMenu>
  3966. <productMenu id="deviceSetting"
  3967. type="1"
  3968. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  3969. <productMenuURL version="1.5"
  3970. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  3971. />
  3972. <productMenuURL version="1.3.1"
  3973. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  3974. />
  3975. </productMenu>
  3976. <productMenu id="quickGuide"
  3977. type="1"
  3978. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  3979. size="310KB" >
  3980. </productMenu>
  3981. <productMenu id="userGuide"
  3982. type="1"
  3983. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  3984. size="1.57MB" >
  3985. </productMenu>
  3986. <productID id="5530"
  3987. />
  3988. <productGroupable type="0"
  3989. />
  3990. </product>
  3991. <product id="10R"
  3992. name="10R"
  3993. series="10"
  3994. latestVersion="2.1.1"
  3995. show = "1" >
  3996. <productMenu id="protocol"
  3997. type="0">
  3998. </productMenu>
  3999. <productMenu id="sip"
  4000. type="1" >
  4001. <productMenuType version="1.0.2"
  4002. type="0"
  4003. />
  4004. </productMenu>
  4005. <productMenu id="bluetoothIntercom"
  4006. type="1" >
  4007. <productMenuType version="1.0.2"
  4008. type="0"
  4009. />
  4010. </productMenu>
  4011. <productMenu id="phone"
  4012. type="2" >
  4013. </productMenu>
  4014. <productMenu id="fmradio"
  4015. type="3" >
  4016. </productMenu>
  4017. <productMenu id="deviceSetting"
  4018. type="1"
  4019. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  4020. <productMenuURL version="1.4"
  4021. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  4022. />
  4023. <productMenuURL version="1.2.1"
  4024. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  4025. />
  4026. <productMenuURL version="1.0.2"
  4027. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  4028. />
  4029. <productMenuURL version="1.0"
  4030. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  4031. />
  4032. </productMenu>
  4033. <productMenu id="quickGuide"
  4034. type="1"
  4035. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  4036. size="400KB" >
  4037. </productMenu>
  4038. <productMenu id="userGuide"
  4039. type="1"
  4040. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  4041. size="2.75MB" >
  4042. </productMenu>
  4043. <productID id="5520"
  4044. />
  4045. <productGroupable type="0"
  4046. />
  4047. </product>
  4048. <product id="10C_EVO"
  4049. name="10C EVO"
  4050. series="10"
  4051. latestVersion="1.7"
  4052. show = "1" >
  4053. <productMenu id="protocol"
  4054. type="0">
  4055. </productMenu>
  4056. <productMenu id="sip"
  4057. type="1" >
  4058. </productMenu>
  4059. <productMenu id="bluetoothIntercom"
  4060. type="1" >
  4061. </productMenu>
  4062. <productMenu id="phone"
  4063. type="2" >
  4064. </productMenu>
  4065. <productMenu id="fmradio"
  4066. type="3" >
  4067. </productMenu>
  4068. <productMenu id="deviceSetting"
  4069. type="1"
  4070. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  4071. <productMenuURL version="1.3.1"
  4072. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4073. />
  4074. </productMenu>
  4075. <productMenu id="quickGuide"
  4076. type="1"
  4077. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  4078. size="1.32MB" >
  4079. </productMenu>
  4080. <productMenu id="userGuide"
  4081. type="1"
  4082. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  4083. size="1.68MB" >
  4084. </productMenu>
  4085. <productID id="5570"
  4086. />
  4087. <productGroupable type="0"
  4088. />
  4089. </product>
  4090. <product id="10C_Pro"
  4091. name="10C Pro"
  4092. series="10"
  4093. latestVersion="2.7.1"
  4094. show = "1" >
  4095. <productMenu id="protocol"
  4096. type="0">
  4097. </productMenu>
  4098. <productMenu id="sip"
  4099. type="1" >
  4100. </productMenu>
  4101. <productMenu id="bluetoothIntercom"
  4102. type="1" >
  4103. </productMenu>
  4104. <productMenu id="phone"
  4105. type="2" >
  4106. </productMenu>
  4107. <productMenu id="fmradio"
  4108. type="3" >
  4109. </productMenu>
  4110. <productMenu id="deviceSetting"
  4111. type="1"
  4112. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  4113. <productMenuURL version="2.5.1"
  4114. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  4115. />
  4116. <productMenuURL version="1.0"
  4117. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  4118. />
  4119. </productMenu>
  4120. <productMenu id="quickGuide"
  4121. type="1"
  4122. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  4123. size="651KB" >
  4124. </productMenu>
  4125. <productMenu id="userGuide"
  4126. type="1"
  4127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  4128. size="2.34MB" >
  4129. </productMenu>
  4130. <productID id="5580"
  4131. />
  4132. <productGroupable type="0"
  4133. />
  4134. </product>
  4135. <product id="10C"
  4136. name="10C"
  4137. series="10"
  4138. latestVersion="3.0.4"
  4139. show = "1" >
  4140. <productMenu id="protocol"
  4141. type="0">
  4142. </productMenu>
  4143. <productMenu id="sip"
  4144. type="1" >
  4145. <productMenuType version="1.0.4"
  4146. type="0"
  4147. />
  4148. </productMenu>
  4149. <productMenu id="bluetoothIntercom"
  4150. type="1" >
  4151. <productMenuType version="1.0.4"
  4152. type="0"
  4153. />
  4154. </productMenu>
  4155. <productMenu id="phone"
  4156. type="2" >
  4157. </productMenu>
  4158. <productMenu id="fmradio"
  4159. type="3" >
  4160. </productMenu>
  4161. <productMenu id="deviceSetting"
  4162. type="1"
  4163. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  4164. <productMenuURL version="2.3"
  4165. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  4166. />
  4167. <productMenuURL version="2.1.1"
  4168. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  4169. />
  4170. <productMenuURL version="1.0.4"
  4171. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  4172. />
  4173. <productMenuURL version="1.0.2"
  4174. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  4175. />
  4176. </productMenu>
  4177. <productMenu id="quickGuide"
  4178. type="1"
  4179. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  4180. size="935KB" >
  4181. </productMenu>
  4182. <productMenu id="userGuide"
  4183. type="1"
  4184. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  4185. size="2.82MB" >
  4186. </productMenu>
  4187. <productID id="5510"
  4188. />
  4189. <productGroupable type="0"
  4190. />
  4191. </product>
  4192. <product id="10U_GT_AIR"
  4193. name="10U GT-Air"
  4194. series="10"
  4195. latestVersion="2.0.4"
  4196. show = "1" >
  4197. <productMenu id="protocol"
  4198. type="0">
  4199. </productMenu>
  4200. <productMenu id="sip"
  4201. type="1" >
  4202. <productMenuType version="1.0.2"
  4203. type="0"
  4204. />
  4205. </productMenu>
  4206. <productMenu id="bluetoothIntercom"
  4207. type="1" >
  4208. <productMenuType version="1.0.2"
  4209. type="0"
  4210. />
  4211. </productMenu>
  4212. <productMenu id="phone"
  4213. type="2" >
  4214. </productMenu>
  4215. <productMenu id="fmradio"
  4216. type="3" >
  4217. </productMenu>
  4218. <productMenu id="deviceSetting"
  4219. type="1"
  4220. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4221. <productMenuURL version="1.3.2"
  4222. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4223. />
  4224. <productMenuURL version="1.0.2"
  4225. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4226. />
  4227. </productMenu>
  4228. <productMenu id="quickGuide"
  4229. type="1"
  4230. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  4231. size="685KB" >
  4232. </productMenu>
  4233. <productMenu id="userGuide"
  4234. type="1"
  4235. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4236. size="684KB" >
  4237. </productMenu>
  4238. <productID id="5610"
  4239. />
  4240. <productGroupable type="0"
  4241. />
  4242. </product>
  4243. <product id="10U_NEOTEC"
  4244. name="10U Neotec"
  4245. series="10"
  4246. latestVersion="2.0.4"
  4247. show = "1" >
  4248. <productMenu id="protocol"
  4249. type="0">
  4250. </productMenu>
  4251. <productMenu id="sip"
  4252. type="1" >
  4253. <productMenuType version="1.0.2"
  4254. type="0"
  4255. />
  4256. </productMenu>
  4257. <productMenu id="bluetoothIntercom"
  4258. type="1" >
  4259. <productMenuType version="1.0.2"
  4260. type="0"
  4261. />
  4262. </productMenu>
  4263. <productMenu id="phone"
  4264. type="2" >
  4265. </productMenu>
  4266. <productMenu id="fmradio"
  4267. type="3" >
  4268. </productMenu>
  4269. <productMenu id="deviceSetting"
  4270. type="1"
  4271. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4272. <productMenuURL version="1.3.2"
  4273. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4274. />
  4275. <productMenuURL version="1.0.2"
  4276. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4277. />
  4278. </productMenu>
  4279. <productMenu id="quickGuide"
  4280. type="1"
  4281. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  4282. size="689KB" >
  4283. </productMenu>
  4284. <productMenu id="userGuide"
  4285. type="1"
  4286. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4287. size="684KB" >
  4288. </productMenu>
  4289. <productID id="5611"
  4290. />
  4291. <productGroupable type="0"
  4292. />
  4293. </product>
  4294. <product id="10U_J_CRUISE"
  4295. name="10U J-Cruise"
  4296. series="10"
  4297. latestVersion="2.0.4"
  4298. show = "1" >
  4299. <productMenu id="protocol"
  4300. type="0">
  4301. </productMenu>
  4302. <productMenu id="sip"
  4303. type="1" >
  4304. <productMenuType version="1.0.2"
  4305. type="0"
  4306. />
  4307. </productMenu>
  4308. <productMenu id="bluetoothIntercom"
  4309. type="1" >
  4310. <productMenuType version="1.0.2"
  4311. type="0"
  4312. />
  4313. </productMenu>
  4314. <productMenu id="phone"
  4315. type="2" >
  4316. </productMenu>
  4317. <productMenu id="fmradio"
  4318. type="3" >
  4319. </productMenu>
  4320. <productMenu id="deviceSetting"
  4321. type="1"
  4322. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4323. <productMenuURL version="1.3.2"
  4324. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4325. />
  4326. <productMenuURL version="1.0.2"
  4327. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4328. />
  4329. </productMenu>
  4330. <productMenu id="quickGuide"
  4331. type="1"
  4332. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  4333. size="686KB" >
  4334. </productMenu>
  4335. <productMenu id="userGuide"
  4336. type="1"
  4337. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4338. size="684KB" >
  4339. </productMenu>
  4340. <productID id="5612"
  4341. />
  4342. <productGroupable type="0"
  4343. />
  4344. </product>
  4345. <product id="10U_C3"
  4346. name="10U C3/C3Pro"
  4347. series="10"
  4348. latestVersion="2.0.4"
  4349. show = "1" >
  4350. <productMenu id="protocol"
  4351. type="0">
  4352. </productMenu>
  4353. <productMenu id="sip"
  4354. type="1" >
  4355. <productMenuType version="1.0.2"
  4356. type="0"
  4357. />
  4358. </productMenu>
  4359. <productMenu id="bluetoothIntercom"
  4360. type="1" >
  4361. <productMenuType version="1.0.2"
  4362. type="0"
  4363. />
  4364. </productMenu>
  4365. <productMenu id="phone"
  4366. type="2" >
  4367. </productMenu>
  4368. <productMenu id="fmradio"
  4369. type="3" >
  4370. </productMenu>
  4371. <productMenu id="deviceSetting"
  4372. type="1"
  4373. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4374. <productMenuURL version="1.3.2"
  4375. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4376. />
  4377. <productMenuURL version="1.0.2"
  4378. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4379. />
  4380. </productMenu>
  4381. <productMenu id="quickGuide"
  4382. type="1"
  4383. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  4384. size="199KB" >
  4385. </productMenu>
  4386. <productMenu id="userGuide"
  4387. type="1"
  4388. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4389. size="684KB" >
  4390. </productMenu>
  4391. <productID id="5620"
  4392. />
  4393. <productGroupable type="0"
  4394. />
  4395. </product>
  4396. <product id="10U_ARAI"
  4397. name="10U Arai"
  4398. series="10"
  4399. latestVersion="2.0.4"
  4400. show = "1" >
  4401. <productMenu id="protocol"
  4402. type="0">
  4403. </productMenu>
  4404. <productMenu id="sip"
  4405. type="1" >
  4406. <productMenuType version="1.0.2"
  4407. type="0"
  4408. />
  4409. </productMenu>
  4410. <productMenu id="bluetoothIntercom"
  4411. type="1" >
  4412. <productMenuType version="1.0.2"
  4413. type="0"
  4414. />
  4415. </productMenu>
  4416. <productMenu id="phone"
  4417. type="2" >
  4418. </productMenu>
  4419. <productMenu id="fmradio"
  4420. type="3" >
  4421. </productMenu>
  4422. <productMenu id="deviceSetting"
  4423. type="1"
  4424. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  4425. <productMenuURL version="1.3.2"
  4426. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  4427. />
  4428. <productMenuURL version="1.0.2"
  4429. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  4430. />
  4431. </productMenu>
  4432. <productMenu id="quickGuide"
  4433. type="1"
  4434. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  4435. size="689KB" >
  4436. </productMenu>
  4437. <productMenu id="userGuide"
  4438. type="1"
  4439. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  4440. size="684KB" >
  4441. </productMenu>
  4442. <productID id="5621"
  4443. />
  4444. <productGroupable type="0"
  4445. />
  4446. </product>
  4447. <product id="10Upad"
  4448. name="10Upad"
  4449. series="10"
  4450. latestVersion="2.0.3"
  4451. show = "1" >
  4452. <productMenu id="protocol"
  4453. type="0">
  4454. </productMenu>
  4455. <productMenu id="sip"
  4456. type="1" >
  4457. </productMenu>
  4458. <productMenu id="bluetoothIntercom"
  4459. type="1" >
  4460. </productMenu>
  4461. <productMenu id="phone"
  4462. type="2" >
  4463. </productMenu>
  4464. <productMenu id="fmradio"
  4465. type="3" >
  4466. </productMenu>
  4467. <productMenu id="deviceSetting"
  4468. type="1"
  4469. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  4470. <productMenuURL version="1.0.3"
  4471. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  4472. />
  4473. </productMenu>
  4474. <productMenu id="quickGuide"
  4475. type="1"
  4476. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  4477. size="615KB" >
  4478. </productMenu>
  4479. <productMenu id="userGuide"
  4480. type="1"
  4481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  4482. size="0.99MB" >
  4483. </productMenu>
  4484. <productID id="6210"
  4485. />
  4486. <productGroupable type="0"
  4487. />
  4488. </product>
  4489. <product id="5S"
  4490. name="5S"
  4491. series="5"
  4492. latestVersion="2.2.1"
  4493. show = "1" >
  4494. <productMenu id="protocol"
  4495. type="3" >
  4496. </productMenu>
  4497. <productMenu id="sip"
  4498. type="1" >
  4499. </productMenu>
  4500. <productMenu id="bluetoothIntercom"
  4501. type="1" >
  4502. </productMenu>
  4503. <productMenu id="phone"
  4504. type="1" >
  4505. </productMenu>
  4506. <productMenu id="fmradio"
  4507. type="0" >
  4508. </productMenu>
  4509. <productMenu id="deviceSetting"
  4510. type="1"
  4511. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  4512. </productMenu>
  4513. <productMenu id="quickGuide"
  4514. type="1"
  4515. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4516. size="934KB" >
  4517. </productMenu>
  4518. <productMenu id="userGuide"
  4519. type="1"
  4520. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_2.2.0_en_230703.pdf"
  4521. size="1.14MB" >
  4522. </productMenu>
  4523. <productID id="5590"
  4524. />
  4525. <productGroupable type="0"
  4526. />
  4527. </product>
  4528. <product id="5S"
  4529. name="5S"
  4530. series="5"
  4531. latestVersion="1.2"
  4532. show = "0" >
  4533. <productMenu id="protocol"
  4534. type="0">
  4535. </productMenu>
  4536. <productMenu id="sip"
  4537. type="1" >
  4538. </productMenu>
  4539. <productMenu id="bluetoothIntercom"
  4540. type="1" >
  4541. </productMenu>
  4542. <productMenu id="phone"
  4543. type="2" >
  4544. </productMenu>
  4545. <productMenu id="fmradio"
  4546. type="0" >
  4547. </productMenu>
  4548. <productMenu id="deviceSetting"
  4549. type="1"
  4550. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  4551. </productMenu>
  4552. <productMenu id="quickGuide"
  4553. type="1"
  4554. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4555. size="970KB" >
  4556. </productMenu>
  4557. <productMenu id="userGuide"
  4558. type="1"
  4559. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_1.2.0_en_230703.pdf"
  4560. size="1.26MB" >
  4561. </productMenu>
  4562. <productID id="5534"
  4563. />
  4564. <productGroupable type="0"
  4565. />
  4566. </product>
  4567. <product id="5S"
  4568. name="5S"
  4569. series="5"
  4570. latestVersion="3.0.1"
  4571. show = "0" >
  4572. <productMenu id="protocol"
  4573. type="0">
  4574. </productMenu>
  4575. <productMenu id="sip"
  4576. type="1" >
  4577. </productMenu>
  4578. <productMenu id="bluetoothIntercom"
  4579. type="1" >
  4580. </productMenu>
  4581. <productMenu id="phone"
  4582. type="2" >
  4583. </productMenu>
  4584. <productMenu id="fmradio"
  4585. type="0" >
  4586. </productMenu>
  4587. <productMenu id="deviceSetting"
  4588. type="1"
  4589. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  4590. </productMenu>
  4591. <productMenu id="quickGuide"
  4592. type="1"
  4593. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_5S_2.1.0_en_230703.pdf"
  4594. size="970KB" >
  4595. </productMenu>
  4596. <productMenu id="userGuide"
  4597. type="1"
  4598. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5S_3.0.0_en_230703.pdf"
  4599. size="1.26MB" >
  4600. </productMenu>
  4601. <productID id="5538"
  4602. />
  4603. <productGroupable type="0"
  4604. />
  4605. </product>
  4606. <product id="3SPLUS"
  4607. name="3S PLUS"
  4608. series="3"
  4609. latestVersion="2.2"
  4610. show = "0" >
  4611. <productMenu id="protocol"
  4612. type="3" >
  4613. </productMenu>
  4614. <productMenu id="sip"
  4615. type="1" >
  4616. </productMenu>
  4617. <productMenu id="bluetoothIntercom"
  4618. type="1" >
  4619. </productMenu>
  4620. <productMenu id="deviceSetting"
  4621. type="1"
  4622. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  4623. <productMenuURL version="2.2.1"
  4624. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  4625. />
  4626. </productMenu>
  4627. <productMenu id="quickGuide"
  4628. type="1"
  4629. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4630. size="344KB" >
  4631. </productMenu>
  4632. <productMenu id="userGuide"
  4633. type="1"
  4634. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  4635. size="1.14MB" >
  4636. </productMenu>
  4637. <productID id="4023"
  4638. />
  4639. <productGroupable type="0"
  4640. />
  4641. </product>
  4642. <product id="3SPLUS"
  4643. name="3S PLUS"
  4644. series="3"
  4645. latestVersion="1.1"
  4646. show = "1" >
  4647. <productMenu id="protocol"
  4648. type="0">
  4649. </productMenu>
  4650. <productMenu id="sip"
  4651. type="1" >
  4652. </productMenu>
  4653. <productMenu id="bluetoothIntercom"
  4654. type="1" >
  4655. </productMenu>
  4656. <productMenu id="deviceSetting"
  4657. type="1"
  4658. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  4659. </productMenu>
  4660. <productMenu id="quickGuide"
  4661. type="1"
  4662. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  4663. size="842KB" >
  4664. </productMenu>
  4665. <productMenu id="userGuide"
  4666. type="1"
  4667. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  4668. size="1.02MB" >
  4669. </productMenu>
  4670. <productID id="6320"
  4671. />
  4672. <productGroupable type="0"
  4673. />
  4674. </product>
  4675. <product id="iCon"
  4676. name="iCon"
  4677. series="50"
  4678. latestVersion="1.0.1"
  4679. show = "0" >
  4680. <productMenu id="protocol"
  4681. type="2" >
  4682. </productMenu>
  4683. <productMenu id="alexa"
  4684. type="0" >
  4685. </productMenu>
  4686. <productMenu id="wa"
  4687. type="0" >
  4688. </productMenu>
  4689. <productMenu id="sip"
  4690. type="1" >
  4691. </productMenu>
  4692. <productMenu id="led"
  4693. type="3" >
  4694. </productMenu>
  4695. <productMenu id="meshIntercom"
  4696. type="20" >
  4697. </productMenu>
  4698. <productMenu id="bluetoothIntercom"
  4699. type="1" >
  4700. </productMenu>
  4701. <productMenu id="phone"
  4702. type="1" >
  4703. </productMenu>
  4704. <productMenu id="music"
  4705. type="1" >
  4706. </productMenu>
  4707. <productMenu id="fmradio"
  4708. type="1" >
  4709. </productMenu>
  4710. <productMenu id="deviceSetting"
  4711. type="1"
  4712. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml" >
  4713. </productMenu>
  4714. <productMenu id="quickGuide"
  4715. type="1"
  4716. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  4717. size="344KB" >
  4718. </productMenu>
  4719. <productMenu id="userGuide"
  4720. type="1"
  4721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.0.0_en_220830.pdf"
  4722. size="3.41MB" >
  4723. </productMenu>
  4724. <productMenu id="volume"
  4725. type="11" >
  4726. </productMenu>
  4727. <productMenu id="battery"
  4728. type="1" >
  4729. </productMenu>
  4730. <productID id="3900"
  4731. />
  4732. <productGroupable type="0"
  4733. />
  4734. </product>
  4735. <product id="HD50S"
  4736. name="H-D Audio 50S"
  4737. series="50"
  4738. latestVersion="1.0.1"
  4739. show = "0" >
  4740. <productMenu id="protocol"
  4741. type="2" >
  4742. </productMenu>
  4743. <productMenu id="alexa"
  4744. type="0" >
  4745. </productMenu>
  4746. <productMenu id="ota"
  4747. type="0"
  4748. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4749. size="1150234" >
  4750. </productMenu>
  4751. <productMenu id="wa"
  4752. type="1" >
  4753. </productMenu>
  4754. <productMenu id="sip"
  4755. type="1" >
  4756. </productMenu>
  4757. <productMenu id="meshIntercom"
  4758. type="20" >
  4759. </productMenu>
  4760. <productMenu id="bluetoothIntercom"
  4761. type="1" >
  4762. </productMenu>
  4763. <productMenu id="phone"
  4764. type="1" >
  4765. </productMenu>
  4766. <productMenu id="music"
  4767. type="1" >
  4768. </productMenu>
  4769. <productMenu id="fmradio"
  4770. type="1" >
  4771. </productMenu>
  4772. <productMenu id="deviceSetting"
  4773. type="1"
  4774. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4775. </productMenu>
  4776. <productMenu id="quickGuide"
  4777. type="1"
  4778. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4779. size="934KB" >
  4780. </productMenu>
  4781. <productMenu id="userGuide"
  4782. type="1"
  4783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  4784. size="1.14MB" >
  4785. </productMenu>
  4786. <productMenu id="volume"
  4787. type="11" >
  4788. </productMenu>
  4789. <productMenu id="battery"
  4790. type="1" >
  4791. </productMenu>
  4792. <productID id="3156"
  4793. />
  4794. <productGroupable type="0"
  4795. />
  4796. </product>
  4797. <product id="HD50S"
  4798. name="H-D Audio 50S"
  4799. series="50"
  4800. latestVersion="2.0.2"
  4801. show = "0" >
  4802. <productMenu id="protocol"
  4803. type="2" >
  4804. </productMenu>
  4805. <productMenu id="alexa"
  4806. type="0" >
  4807. </productMenu>
  4808. <productMenu id="ota"
  4809. type="0"
  4810. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  4811. size="1150234" >
  4812. </productMenu>
  4813. <productMenu id="wa"
  4814. type="1" >
  4815. </productMenu>
  4816. <productMenu id="sip"
  4817. type="1" >
  4818. </productMenu>
  4819. <productMenu id="meshIntercom"
  4820. type="20" >
  4821. </productMenu>
  4822. <productMenu id="bluetoothIntercom"
  4823. type="1" >
  4824. </productMenu>
  4825. <productMenu id="phone"
  4826. type="1" >
  4827. </productMenu>
  4828. <productMenu id="music"
  4829. type="1" >
  4830. </productMenu>
  4831. <productMenu id="fmradio"
  4832. type="1" >
  4833. </productMenu>
  4834. <productMenu id="deviceSetting"
  4835. type="1"
  4836. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4837. </productMenu>
  4838. <productMenu id="quickGuide"
  4839. type="1"
  4840. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4841. size="934KB" >
  4842. </productMenu>
  4843. <productMenu id="userGuide"
  4844. type="1"
  4845. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  4846. size="1.14MB" >
  4847. </productMenu>
  4848. <productMenu id="volume"
  4849. type="11" >
  4850. </productMenu>
  4851. <productMenu id="battery"
  4852. type="1" >
  4853. </productMenu>
  4854. <productID id="3213"
  4855. />
  4856. <productGroupable type="0"
  4857. />
  4858. </product>
  4859. <product id="HD50C"
  4860. name="H-D Audio 50C"
  4861. series="50"
  4862. latestVersion="1.0.1"
  4863. show = "0" >
  4864. <productMenu id="protocol"
  4865. type="2" >
  4866. </productMenu>
  4867. <productMenu id="ota"
  4868. type="0" >
  4869. </productMenu>
  4870. <productMenu id="wa"
  4871. type="1" >
  4872. </productMenu>
  4873. <productMenu id="sip"
  4874. type="1" >
  4875. </productMenu>
  4876. <productMenu id="meshIntercom"
  4877. type="20" >
  4878. </productMenu>
  4879. <productMenu id="bluetoothIntercom"
  4880. type="1" >
  4881. </productMenu>
  4882. <productMenu id="phone"
  4883. type="1" >
  4884. </productMenu>
  4885. <productMenu id="music"
  4886. type="1" >
  4887. </productMenu>
  4888. <productMenu id="fmradio"
  4889. type="1" >
  4890. </productMenu>
  4891. <productMenu id="deviceSetting"
  4892. type="1"
  4893. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml" >
  4894. </productMenu>
  4895. <productMenu id="quickGuide"
  4896. type="1"
  4897. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4898. size="344KB" >
  4899. </productMenu>
  4900. <productMenu id="userGuide"
  4901. type="1"
  4902. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  4903. size="3.41MB" >
  4904. </productMenu>
  4905. <productMenu id="volume"
  4906. type="11" >
  4907. </productMenu>
  4908. <productMenu id="battery"
  4909. type="1" >
  4910. </productMenu>
  4911. <productID id="3240"
  4912. />
  4913. <productGroupable type="0"
  4914. />
  4915. </product>
  4916. <product id="HD50S"
  4917. name="FURY N04"
  4918. series="Helmet"
  4919. latestVersion="1.0"
  4920. show = "0" >
  4921. <productMenu id="protocol"
  4922. type="2" >
  4923. </productMenu>
  4924. <productMenu id="alexa"
  4925. type="0" >
  4926. </productMenu>
  4927. <productMenu id="ota"
  4928. type="0" >
  4929. </productMenu>
  4930. <productMenu id="wa"
  4931. type="0" >
  4932. </productMenu>
  4933. <productMenu id="meshIntercom"
  4934. type="20" >
  4935. </productMenu>
  4936. <productMenu id="phone"
  4937. type="1" >
  4938. </productMenu>
  4939. <productMenu id="music"
  4940. type="1" >
  4941. </productMenu>
  4942. <productMenu id="fmradio"
  4943. type="1" >
  4944. </productMenu>
  4945. <productMenu id="deviceSetting"
  4946. type="1"
  4947. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  4948. </productMenu>
  4949. <productMenu id="quickGuide"
  4950. type="1"
  4951. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  4952. size="1.12MB" >
  4953. </productMenu>
  4954. <productMenu id="userGuide"
  4955. type="1"
  4956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  4957. size="2.0MB" >
  4958. </productMenu>
  4959. <productMenu id="volume"
  4960. type="13" >
  4961. </productMenu>
  4962. <productMenu id="battery"
  4963. type="1" >
  4964. </productMenu>
  4965. <productID id="5553"
  4966. />
  4967. <productGroupable type="0"
  4968. />
  4969. </product>
  4970. <product id="XCOM3Pro"
  4971. name="X-COM3 Pro"
  4972. series="50"
  4973. latestVersion="1.1"
  4974. show = "0" >
  4975. <productMenu id="protocol"
  4976. type="2" >
  4977. </productMenu>
  4978. <productMenu id="alexa"
  4979. type="0" >
  4980. </productMenu>
  4981. <productMenu id="ota"
  4982. type="0" >
  4983. </productMenu>
  4984. <productMenu id="wa"
  4985. type="0" >
  4986. </productMenu>
  4987. <productMenu id="sip"
  4988. type="1" >
  4989. </productMenu>
  4990. <productMenu id="meshIntercom"
  4991. type="30" >
  4992. </productMenu>
  4993. <productMenu id="bluetoothIntercom"
  4994. type="1" >
  4995. </productMenu>
  4996. <productMenu id="phone"
  4997. type="1" >
  4998. </productMenu>
  4999. <productMenu id="music"
  5000. type="1" >
  5001. </productMenu>
  5002. <productMenu id="fmradio"
  5003. type="1" >
  5004. </productMenu>
  5005. <productMenu id="deviceSetting"
  5006. type="1"
  5007. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_04.xml" >
  5008. <productMenuURL version="1.1"
  5009. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  5010. />
  5011. </productMenu>
  5012. <productMenu id="quickGuide"
  5013. type="0"
  5014. url=""
  5015. size="344KB" >
  5016. </productMenu>
  5017. <productMenu id="userGuide"
  5018. type="1"
  5019. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  5020. size="3.41MB" >
  5021. </productMenu>
  5022. <productMenu id="volume"
  5023. type="11" >
  5024. </productMenu>
  5025. <productMenu id="battery"
  5026. type="1" >
  5027. </productMenu>
  5028. <productID id="321A"
  5029. />
  5030. <productGroupable type="0"
  5031. />
  5032. </product>
  5033. <product id="XCOM3"
  5034. name="X-COM3"
  5035. series="20"
  5036. latestVersion="1.0"
  5037. show = "0" >
  5038. <productMenu id="protocol"
  5039. type="2" >
  5040. </productMenu>
  5041. <productMenu id="sip"
  5042. type="1" >
  5043. </productMenu>
  5044. <productMenu id="bluetoothIntercom"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="phone"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="music"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="fmradio"
  5054. type="1" >
  5055. </productMenu>
  5056. <productMenu id="deviceSetting"
  5057. type="1"
  5058. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  5059. </productMenu>
  5060. <productMenu id="quickGuide"
  5061. type="0"
  5062. url=""
  5063. size="934KB" >
  5064. </productMenu>
  5065. <productMenu id="userGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  5068. size="1.14MB" >
  5069. </productMenu>
  5070. <productMenu id="volume"
  5071. type="15" >
  5072. </productMenu>
  5073. <productID id="3410"
  5074. />
  5075. <productGroupable type="0"
  5076. />
  5077. </product>
  5078. <product id="X-COM2"
  5079. name="X-COM2"
  5080. series="20"
  5081. latestVersion="1.0.5"
  5082. show = "0" >
  5083. <productMenu id="protocol"
  5084. type="0">
  5085. </productMenu>
  5086. <productMenu id="sip"
  5087. type="1" >
  5088. </productMenu>
  5089. <productMenu id="bluetoothIntercom"
  5090. type="1" >
  5091. </productMenu>
  5092. <productMenu id="intercomSetting"
  5093. type="1" >
  5094. </productMenu>
  5095. <productMenu id="phone"
  5096. type="2" >
  5097. </productMenu>
  5098. <productMenu id="fmradio"
  5099. type="3" >
  5100. </productMenu>
  5101. <productMenu id="deviceSetting"
  5102. type="1"
  5103. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5104. </productMenu>
  5105. <productMenu id="quickGuide"
  5106. type="1"
  5107. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  5108. size="796KB" >
  5109. </productMenu>
  5110. <productMenu id="userGuide"
  5111. type="1"
  5112. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  5113. size="1.90MB" >
  5114. </productMenu>
  5115. <productID id="2030"
  5116. />
  5117. <productGroupable type="1"
  5118. />
  5119. </product>
  5120. <product id="AVAABC"
  5121. name="AVA ABC"
  5122. series="SPIDER"
  5123. latestVersion="1.0"
  5124. show = "0" >
  5125. <productMenu id="protocol"
  5126. type="2" >
  5127. </productMenu>
  5128. <productMenu id="alexa"
  5129. type="0" >
  5130. </productMenu>
  5131. <productMenu id="ota"
  5132. type="0" >
  5133. </productMenu>
  5134. <productMenu id="wa"
  5135. type="0" >
  5136. </productMenu>
  5137. <productMenu id="meshIntercom"
  5138. type="20" >
  5139. </productMenu>
  5140. <productMenu id="phone"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="music"
  5144. type="1" >
  5145. </productMenu>
  5146. <productMenu id="musicSharing"
  5147. type="0" >
  5148. </productMenu>
  5149. <productMenu id="deviceSetting"
  5150. type="1"
  5151. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  5152. </productMenu>
  5153. <productMenu id="quickGuide"
  5154. type="1"
  5155. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  5156. size="1.12MB" >
  5157. </productMenu>
  5158. <productMenu id="userGuide"
  5159. type="1"
  5160. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  5161. size="2.0MB" >
  5162. </productMenu>
  5163. <productMenu id="volume"
  5164. type="12" >
  5165. </productMenu>
  5166. <productMenu id="battery"
  5167. type="1" >
  5168. </productMenu>
  5169. <productID id="6808"
  5170. />
  5171. <productGroupable type="0"
  5172. />
  5173. </product>
  5174. <product id="Triumph_50S"
  5175. name="Triumph 50S"
  5176. series="50"
  5177. latestVersion="1.2.2"
  5178. show = "0" >
  5179. <productMenu id="protocol"
  5180. type="2" >
  5181. </productMenu>
  5182. <productMenu id="alexa"
  5183. type="0" >
  5184. </productMenu>
  5185. <productMenu id="ota"
  5186. type="0"
  5187. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5188. size="1150234" >
  5189. </productMenu>
  5190. <productMenu id="wa"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="sip"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="meshIntercom"
  5197. type="20" >
  5198. </productMenu>
  5199. <productMenu id="bluetoothIntercom"
  5200. type="1" >
  5201. </productMenu>
  5202. <productMenu id="phone"
  5203. type="1" >
  5204. </productMenu>
  5205. <productMenu id="music"
  5206. type="1" >
  5207. </productMenu>
  5208. <productMenu id="fmradio"
  5209. type="1" >
  5210. </productMenu>
  5211. <productMenu id="deviceSetting"
  5212. type="1"
  5213. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml" >
  5214. <productMenuURL version="1.0"
  5215. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5216. />
  5217. </productMenu>
  5218. <productMenu id="quickGuide"
  5219. type="1"
  5220. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  5221. size="934KB" >
  5222. </productMenu>
  5223. <productMenu id="userGuide"
  5224. type="1"
  5225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Triumph_50S_1.5.0_us_220111.pdf"
  5226. size="1.14MB" >
  5227. </productMenu>
  5228. <productMenu id="volume"
  5229. type="11" >
  5230. </productMenu>
  5231. <productMenu id="battery"
  5232. type="1" >
  5233. </productMenu>
  5234. <productID id="3264"
  5235. />
  5236. <productGroupable type="0"
  5237. />
  5238. </product>
  5239. <product id="RE50S"
  5240. name="RE 50S"
  5241. series="50"
  5242. latestVersion="2.5"
  5243. show = "-1" >
  5244. <productMenu id="protocol"
  5245. type="2" >
  5246. </productMenu>
  5247. <productMenu id="alexa"
  5248. type="0" >
  5249. </productMenu>
  5250. <productMenu id="ota"
  5251. type="0"
  5252. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  5253. size="1150234" >
  5254. </productMenu>
  5255. <productMenu id="wa"
  5256. type="1" >
  5257. </productMenu>
  5258. <productMenu id="sip"
  5259. type="1" >
  5260. </productMenu>
  5261. <productMenu id="meshIntercom"
  5262. type="30" >
  5263. </productMenu>
  5264. <productMenu id="bluetoothIntercom"
  5265. type="1" >
  5266. </productMenu>
  5267. <productMenu id="phone"
  5268. type="1" >
  5269. </productMenu>
  5270. <productMenu id="music"
  5271. type="1" >
  5272. </productMenu>
  5273. <productMenu id="fmradio"
  5274. type="1" >
  5275. </productMenu>
  5276. <productMenu id="deviceSetting"
  5277. type="1"
  5278. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml" >
  5279. </productMenu>
  5280. <productMenu id="quickGuide"
  5281. type="1"
  5282. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  5283. size="934KB" >
  5284. </productMenu>
  5285. <productMenu id="userGuide"
  5286. type="1"
  5287. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.5.0_en_240625.pdf"
  5288. size="1.14MB" >
  5289. </productMenu>
  5290. <productMenu id="videoGuide"
  5291. type="0"
  5292. url=""
  5293. size="3.41MB" >
  5294. </productMenu>
  5295. <productMenu id="volume"
  5296. type="11" >
  5297. </productMenu>
  5298. <productMenu id="battery"
  5299. type="1" >
  5300. </productMenu>
  5301. <productID id="321C"
  5302. />
  5303. <productGroupable type="0"
  5304. />
  5305. </product>
  5306. <product id="BMW_HELMET_II_U1"
  5307. name="BMW HELMET II U1"
  5308. series="50"
  5309. latestVersion="1.0"
  5310. show = "0" >
  5311. <productMenu id="protocol"
  5312. type="2" >
  5313. </productMenu>
  5314. <productMenu id="alexa"
  5315. type="0" >
  5316. </productMenu>
  5317. <productMenu id="sip"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="meshIntercom"
  5321. type="20" >
  5322. </productMenu>
  5323. <productMenu id="bluetoothIntercom"
  5324. type="1" >
  5325. </productMenu>
  5326. <productMenu id="bluetoothIntercom2"
  5327. type="1" >
  5328. </productMenu>
  5329. <productMenu id="phone"
  5330. type="1" >
  5331. </productMenu>
  5332. <productMenu id="music"
  5333. type="1" >
  5334. </productMenu>
  5335. <productMenu id="fmradio"
  5336. type="1" >
  5337. </productMenu>
  5338. <productMenu id="deviceSetting"
  5339. type="1"
  5340. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  5341. </productMenu>
  5342. <productMenu id="quickGuide"
  5343. type="1"
  5344. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  5345. size="934KB" >
  5346. </productMenu>
  5347. <productMenu id="userGuide"
  5348. type="1"
  5349. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  5350. size="1.14MB" >
  5351. </productMenu>
  5352. <productMenu id="volume"
  5353. type="11" >
  5354. </productMenu>
  5355. <productMenu id="battery"
  5356. type="1" >
  5357. </productMenu>
  5358. <productID id="3260"
  5359. />
  5360. <productGroupable type="0"
  5361. />
  5362. </product>
  5363. <product id="LSE_01"
  5364. name="LSE-01"
  5365. series="SF"
  5366. latestVersion="1.2.3"
  5367. show = "0" >
  5368. <productMenu id="protocol"
  5369. type="1"
  5370. url="3">
  5371. </productMenu>
  5372. <productMenu id="sip"
  5373. type="1" >
  5374. </productMenu>
  5375. <productMenu id="bluetoothIntercom"
  5376. type="1" >
  5377. </productMenu>
  5378. <productMenu id="phone"
  5379. type="1" >
  5380. </productMenu>
  5381. <productMenu id="music"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="fmradio"
  5385. type="1" >
  5386. </productMenu>
  5387. <productMenu id="deviceSetting"
  5388. type="1"
  5389. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5390. <productMenuURL version="1.1"
  5391. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  5392. />
  5393. <productMenuURL version="1.0"
  5394. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  5395. />
  5396. </productMenu>
  5397. <productMenu id="quickGuide"
  5398. type="1"
  5399. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  5400. size="607KB" >
  5401. </productMenu>
  5402. <productMenu id="userGuide"
  5403. type="1"
  5404. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  5405. size="1.91MB" >
  5406. </productMenu>
  5407. <productMenu id="volume"
  5408. type="4" >
  5409. </productMenu>
  5410. <productID id="5416"
  5411. />
  5412. <productGroupable type="0"
  5413. />
  5414. </product>
  5415. <product id="AGV_ARK"
  5416. name="AGV ARK"
  5417. series="SF"
  5418. latestVersion="1.0.3"
  5419. show = "0" >
  5420. <productMenu id="protocol"
  5421. type="1"
  5422. url="3">
  5423. </productMenu>
  5424. <productMenu id="sip"
  5425. type="1" >
  5426. </productMenu>
  5427. <productMenu id="bluetoothIntercom"
  5428. type="1" >
  5429. </productMenu>
  5430. <productMenu id="phone"
  5431. type="1" >
  5432. </productMenu>
  5433. <productMenu id="music"
  5434. type="1" >
  5435. </productMenu>
  5436. <productMenu id="fmradio"
  5437. type="1" >
  5438. </productMenu>
  5439. <productMenu id="deviceSetting"
  5440. type="1"
  5441. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  5442. </productMenu>
  5443. <productMenu id="quickGuide"
  5444. type="1"
  5445. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  5446. size="607KB" >
  5447. </productMenu>
  5448. <productMenu id="userGuide"
  5449. type="1"
  5450. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  5451. size="1.91MB" >
  5452. </productMenu>
  5453. <productMenu id="volume"
  5454. type="4" >
  5455. </productMenu>
  5456. <productID id="5420"
  5457. />
  5458. <productGroupable type="0"
  5459. />
  5460. </product>
  5461. <product id="KLIM_KRIOS"
  5462. name="KLIM Krios"
  5463. series="10"
  5464. latestVersion="1.1.2"
  5465. show = "0" >
  5466. <productMenu id="protocol"
  5467. type="0">
  5468. </productMenu>
  5469. <productMenu id="sip"
  5470. type="1" >
  5471. </productMenu>
  5472. <productMenu id="bluetoothIntercom"
  5473. type="1" >
  5474. </productMenu>
  5475. <productMenu id="phone"
  5476. type="2" >
  5477. </productMenu>
  5478. <productMenu id="fmradio"
  5479. type="3" >
  5480. </productMenu>
  5481. <productMenu id="deviceSetting"
  5482. type="1"
  5483. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  5484. <productMenuURL version="1.0"
  5485. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  5486. />
  5487. </productMenu>
  5488. <productMenu id="quickGuide"
  5489. type="1"
  5490. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  5491. size="649KB" >
  5492. </productMenu>
  5493. <productMenu id="userGuide"
  5494. type="1"
  5495. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  5496. size="1.43MB" >
  5497. </productMenu>
  5498. <productID id="5910"
  5499. />
  5500. <productGroupable type="0"
  5501. />
  5502. </product>
  5503. <product id="POLARIS_SLINGSHOT"
  5504. name="Polaris Slingshot"
  5505. series="10"
  5506. latestVersion="1.1.2"
  5507. show = "0" >
  5508. <productMenu id="protocol"
  5509. type="0">
  5510. </productMenu>
  5511. <productMenu id="sip"
  5512. type="1" >
  5513. </productMenu>
  5514. <productMenu id="bluetoothIntercom"
  5515. type="1" >
  5516. </productMenu>
  5517. <productMenu id="phone"
  5518. type="2" >
  5519. </productMenu>
  5520. <productMenu id="fmradio"
  5521. type="3" >
  5522. </productMenu>
  5523. <productMenu id="deviceSetting"
  5524. type="1"
  5525. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  5526. <productMenuURL version="1.0"
  5527. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="quickGuide"
  5531. type="1"
  5532. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  5533. size="689KB" >
  5534. </productMenu>
  5535. <productMenu id="userGuide"
  5536. type="1"
  5537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  5538. size="1.43MB" >
  5539. </productMenu>
  5540. <productID id="5920"
  5541. />
  5542. <productGroupable type="0"
  5543. />
  5544. </product>
  5545. <product id="DWO6"
  5546. name="SEDICI DWO6-PRO"
  5547. series="10"
  5548. latestVersion="1.0.2"
  5549. show = "0" >
  5550. <productMenu id="protocol"
  5551. type="0">
  5552. </productMenu>
  5553. <productMenu id="sip"
  5554. type="1" >
  5555. </productMenu>
  5556. <productMenu id="bluetoothIntercom"
  5557. type="1" >
  5558. </productMenu>
  5559. <productMenu id="phone"
  5560. type="2" >
  5561. </productMenu>
  5562. <productMenu id="fmradio"
  5563. type="3" >
  5564. </productMenu>
  5565. <productMenu id="deviceSetting"
  5566. type="1"
  5567. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  5568. </productMenu>
  5569. <productMenu id="quickGuide"
  5570. type="1"
  5571. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  5572. size="529KB" >
  5573. </productMenu>
  5574. <productMenu id="userGuide"
  5575. type="1"
  5576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  5577. size="4.09MB" >
  5578. </productMenu>
  5579. <productID id="6112"
  5580. />
  5581. <productGroupable type="0"
  5582. />
  5583. </product>
  5584. <product id="DWO6A"
  5585. name="SEDICI DWO-6"
  5586. series="10"
  5587. latestVersion="1.0.2"
  5588. show = "0" >
  5589. <productMenu id="protocol"
  5590. type="0">
  5591. </productMenu>
  5592. <productMenu id="sip"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="bluetoothIntercom"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="phone"
  5599. type="2" >
  5600. </productMenu>
  5601. <productMenu id="fmradio"
  5602. type="3" >
  5603. </productMenu>
  5604. <productMenu id="deviceSetting"
  5605. type="1"
  5606. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  5607. </productMenu>
  5608. <productMenu id="quickGuide"
  5609. type="1"
  5610. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  5611. size="522KB" >
  5612. </productMenu>
  5613. <productMenu id="userGuide"
  5614. type="1"
  5615. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  5616. size="2.71MB" >
  5617. </productMenu>
  5618. <productID id="6114"
  5619. />
  5620. <productGroupable type="0"
  5621. />
  5622. </product>
  5623. <product id="3SPLUS"
  5624. name="ZILL"
  5625. series="3"
  5626. latestVersion="1.0.4"
  5627. show = "0" >
  5628. <productMenu id="protocol"
  5629. type="0">
  5630. </productMenu>
  5631. <productMenu id="sip"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="bluetoothIntercom"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="deviceSetting"
  5638. type="1"
  5639. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  5640. </productMenu>
  5641. <productMenu id="quickGuide"
  5642. type="1"
  5643. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  5644. size="842KB" >
  5645. </productMenu>
  5646. <productMenu id="userGuide"
  5647. type="1"
  5648. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  5649. size="1.02MB" >
  5650. </productMenu>
  5651. <productID id="6335"
  5652. />
  5653. <productGroupable type="0"
  5654. />
  5655. </product>
  5656. <product id="HD50S"
  5657. name="Boom! Audio 30K"
  5658. series="30"
  5659. latestVersion="3.4"
  5660. show = "0" >
  5661. <productMenu id="protocol"
  5662. type="1"
  5663. url="0">
  5664. </productMenu>
  5665. <productMenu id="wa"
  5666. type="0" >
  5667. </productMenu>
  5668. <productMenu id="sip"
  5669. type="1" >
  5670. </productMenu>
  5671. <productMenu id="meshIntercom"
  5672. type="20" >
  5673. <productMenuType version="2.9.9"
  5674. type="10"
  5675. />
  5676. </productMenu>
  5677. <productMenu id="bluetoothIntercom"
  5678. type="1" >
  5679. </productMenu>
  5680. <productMenu id="phone"
  5681. type="1" >
  5682. </productMenu>
  5683. <productMenu id="music"
  5684. type="1" >
  5685. </productMenu>
  5686. <productMenu id="fmradio"
  5687. type="1" >
  5688. </productMenu>
  5689. <productMenu id="deviceSetting"
  5690. type="1"
  5691. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  5692. <productMenuURL version="3.2"
  5693. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  5694. />
  5695. <productMenuURL version="3.0"
  5696. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  5697. />
  5698. <productMenuURL version="2.2"
  5699. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5700. />
  5701. </productMenu>
  5702. <productMenu id="quickGuide"
  5703. type="1"
  5704. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5705. size="1.06MB" >
  5706. </productMenu>
  5707. <productMenu id="userGuide"
  5708. type="1"
  5709. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  5710. size="3.15MB" >
  5711. </productMenu>
  5712. <productMenu id="volume"
  5713. type="1" >
  5714. </productMenu>
  5715. <productID id="3112"
  5716. />
  5717. <productGroupable type="0"
  5718. />
  5719. </product>
  5720. <product id="HD50S"
  5721. name="Boom! Audio N02"
  5722. series="30"
  5723. latestVersion="3.1"
  5724. show = "0" >
  5725. <productMenu id="protocol"
  5726. type="1"
  5727. url="0">
  5728. </productMenu>
  5729. <productMenu id="wa"
  5730. type="2" >
  5731. </productMenu>
  5732. <productMenu id="sip"
  5733. type="1" >
  5734. </productMenu>
  5735. <productMenu id="meshIntercom"
  5736. type="20" >
  5737. <productMenuType version="2.9.9"
  5738. type="10"
  5739. />
  5740. </productMenu>
  5741. <productMenu id="bluetoothIntercom"
  5742. type="1" >
  5743. </productMenu>
  5744. <productMenu id="phone"
  5745. type="1" >
  5746. </productMenu>
  5747. <productMenu id="music"
  5748. type="1" >
  5749. </productMenu>
  5750. <productMenu id="fmradio"
  5751. type="1" >
  5752. </productMenu>
  5753. <productMenu id="deviceSetting"
  5754. type="1"
  5755. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  5756. <productMenuURL version="2.2"
  5757. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  5758. />
  5759. </productMenu>
  5760. <productMenu id="quickGuide"
  5761. type="1"
  5762. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  5763. size="1.06MB" >
  5764. </productMenu>
  5765. <productMenu id="userGuide"
  5766. type="1"
  5767. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  5768. size="3.15MB" >
  5769. </productMenu>
  5770. <productMenu id="volume"
  5771. type="2" >
  5772. </productMenu>
  5773. <productID id="3114"
  5774. />
  5775. <productGroupable type="0"
  5776. />
  5777. </product>
  5778. <product id="HD50S"
  5779. name="Boom Audio 20S"
  5780. series="50"
  5781. latestVersion="2.5.2"
  5782. show = "0" >
  5783. <productMenu id="protocol"
  5784. type="0">
  5785. </productMenu>
  5786. <productMenu id="sip"
  5787. type="1" >
  5788. <productMenuType version="1.0"
  5789. type="0"
  5790. />
  5791. </productMenu>
  5792. <productMenu id="bluetoothIntercom"
  5793. type="1" >
  5794. <productMenuType version="1.0"
  5795. type="0"
  5796. />
  5797. </productMenu>
  5798. <productMenu id="intercomSetting"
  5799. type="1" >
  5800. </productMenu>
  5801. <productMenu id="phone"
  5802. type="2" >
  5803. </productMenu>
  5804. <productMenu id="fmradio"
  5805. type="3" >
  5806. </productMenu>
  5807. <productMenu id="deviceSetting"
  5808. type="1"
  5809. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5810. <productMenuURL version="2.4"
  5811. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5812. />
  5813. <productMenuURL version="1.5"
  5814. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5815. />
  5816. <productMenuURL version="1.4.1"
  5817. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5818. />
  5819. <productMenuURL version="1.1"
  5820. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5821. />
  5822. <productMenuURL version="1.0"
  5823. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5824. />
  5825. </productMenu>
  5826. <productMenu id="quickGuide"
  5827. type="1"
  5828. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5829. size="264KB" >
  5830. </productMenu>
  5831. <productMenu id="userGuide"
  5832. type="1"
  5833. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5834. size="3.09MB" >
  5835. </productMenu>
  5836. <productID id="4210"
  5837. />
  5838. <productProductKey key="11"
  5839. />
  5840. <productID id="4230"
  5841. />
  5842. <productProductKey key="11"
  5843. />
  5844. <productGroupable type="1"
  5845. />
  5846. </product>
  5847. <product id="HD50S"
  5848. name="Boom Audio 20S EVO"
  5849. series="50"
  5850. latestVersion="2.5.2"
  5851. show = "0" >
  5852. <productMenu id="protocol"
  5853. type="0">
  5854. </productMenu>
  5855. <productMenu id="sip"
  5856. type="1" >
  5857. <productMenuType version="1.0"
  5858. type="0"
  5859. />
  5860. </productMenu>
  5861. <productMenu id="bluetoothIntercom"
  5862. type="1" >
  5863. <productMenuType version="1.0"
  5864. type="0"
  5865. />
  5866. </productMenu>
  5867. <productMenu id="intercomSetting"
  5868. type="1" >
  5869. </productMenu>
  5870. <productMenu id="phone"
  5871. type="2" >
  5872. </productMenu>
  5873. <productMenu id="fmradio"
  5874. type="3" >
  5875. </productMenu>
  5876. <productMenu id="deviceSetting"
  5877. type="1"
  5878. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  5879. <productMenuURL version="2.4"
  5880. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  5881. />
  5882. <productMenuURL version="1.5"
  5883. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  5884. />
  5885. <productMenuURL version="1.4.1"
  5886. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  5887. />
  5888. <productMenuURL version="1.1"
  5889. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  5890. />
  5891. <productMenuURL version="1.0"
  5892. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  5893. />
  5894. </productMenu>
  5895. <productMenu id="quickGuide"
  5896. type="1"
  5897. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  5898. size="321KB" >
  5899. </productMenu>
  5900. <productMenu id="userGuide"
  5901. type="1"
  5902. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  5903. size="2.46MB" >
  5904. </productMenu>
  5905. <productID id="4230"
  5906. />
  5907. <productProductKey key="27"
  5908. />
  5909. <productGroupable type="1"
  5910. />
  5911. </product>
  5912. <product id="HD50S"
  5913. name="Boom! Audio 10S"
  5914. series="50"
  5915. latestVersion="1.1.3"
  5916. show = "0" >
  5917. <productMenu id="protocol"
  5918. type="0">
  5919. </productMenu>
  5920. <productMenu id="sip"
  5921. type="1" >
  5922. </productMenu>
  5923. <productMenu id="bluetoothIntercom"
  5924. type="1" >
  5925. </productMenu>
  5926. <productMenu id="phone"
  5927. type="2" >
  5928. </productMenu>
  5929. <productMenu id="fmradio"
  5930. type="3" >
  5931. </productMenu>
  5932. <productMenu id="deviceSetting"
  5933. type="1"
  5934. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  5935. </productMenu>
  5936. <productMenu id="quickGuide"
  5937. type="1"
  5938. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5939. size="538KB" >
  5940. </productMenu>
  5941. <productMenu id="userGuide"
  5942. type="1"
  5943. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  5944. size="1.55MB" >
  5945. </productMenu>
  5946. <productID id="5532"
  5947. />
  5948. <productGroupable type="0"
  5949. />
  5950. </product>
  5951. <product id="HD50S"
  5952. name="Boom! Audio N01 10R"
  5953. series="50"
  5954. latestVersion="1.1.3"
  5955. show = "0" >
  5956. <productMenu id="protocol"
  5957. type="0">
  5958. </productMenu>
  5959. <productMenu id="sip"
  5960. type="1" >
  5961. </productMenu>
  5962. <productMenu id="bluetoothIntercom"
  5963. type="1" >
  5964. </productMenu>
  5965. <productMenu id="phone"
  5966. type="2" >
  5967. </productMenu>
  5968. <productMenu id="fmradio"
  5969. type="3" >
  5970. </productMenu>
  5971. <productMenu id="deviceSetting"
  5972. type="1"
  5973. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  5974. </productMenu>
  5975. <productMenu id="quickGuide"
  5976. type="1"
  5977. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5978. size="766KB" >
  5979. </productMenu>
  5980. <productMenu id="userGuide"
  5981. type="1"
  5982. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  5983. size="1.45MB" >
  5984. </productMenu>
  5985. <productID id="5522"
  5986. />
  5987. <productGroupable type="0"
  5988. />
  5989. </product>
  5990. <product id="HD50S"
  5991. name="OUTRUSH-R N03"
  5992. series="50"
  5993. latestVersion="1.2.1"
  5994. show = "0" >
  5995. <productMenu id="protocol"
  5996. type="0">
  5997. </productMenu>
  5998. <productMenu id="sip"
  5999. type="1" >
  6000. </productMenu>
  6001. <productMenu id="bluetoothIntercom"
  6002. type="1" >
  6003. </productMenu>
  6004. <productMenu id="phone"
  6005. type="2" >
  6006. </productMenu>
  6007. <productMenu id="fmradio"
  6008. type="3" >
  6009. </productMenu>
  6010. <productMenu id="deviceSetting"
  6011. type="1"
  6012. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6013. </productMenu>
  6014. <productMenu id="userGuide"
  6015. type="1"
  6016. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  6017. size="660KB" >
  6018. </productMenu>
  6019. <productID id="5434"
  6020. />
  6021. <productGroupable type="0"
  6022. />
  6023. </product>
  6024. <product id="HD50S"
  6025. name="OUTRUSH-R N03"
  6026. series="50"
  6027. latestVersion="2.0"
  6028. show = "0" >
  6029. <productMenu id="protocol"
  6030. type="3" >
  6031. </productMenu>
  6032. <productMenu id="sip"
  6033. type="1" >
  6034. </productMenu>
  6035. <productMenu id="bluetoothIntercom"
  6036. type="1" >
  6037. </productMenu>
  6038. <productMenu id="phone"
  6039. type="1" >
  6040. </productMenu>
  6041. <productMenu id="fmradio"
  6042. type="1" >
  6043. </productMenu>
  6044. <productMenu id="deviceSetting"
  6045. type="1"
  6046. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  6047. </productMenu>
  6048. <productMenu id="userGuide"
  6049. type="1"
  6050. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  6051. size="1.14MB" >
  6052. </productMenu>
  6053. <productID id="5441"
  6054. />
  6055. <productGroupable type="0"
  6056. />
  6057. </product>
  6058. <product id="5R"
  6059. name="5R"
  6060. series="5"
  6061. latestVersion="1.0.1"
  6062. show = "1" >
  6063. <productMenu id="protocol"
  6064. type="3" >
  6065. </productMenu>
  6066. <productMenu id="sip"
  6067. type="1" >
  6068. </productMenu>
  6069. <productMenu id="bluetoothIntercom"
  6070. type="1" >
  6071. </productMenu>
  6072. <productMenu id="phone"
  6073. type="1" >
  6074. </productMenu>
  6075. <productMenu id="fmradio"
  6076. type="1" >
  6077. </productMenu>
  6078. <productMenu id="deviceSetting"
  6079. type="1"
  6080. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6081. </productMenu>
  6082. <productMenu id="quickGuide"
  6083. type="0"
  6084. url=""
  6085. size="934KB" >
  6086. </productMenu>
  6087. <productMenu id="userGuide"
  6088. type="1"
  6089. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  6090. size="1.14MB" >
  6091. </productMenu>
  6092. <productID id="5591"
  6093. />
  6094. <productGroupable type="0"
  6095. />
  6096. </product>
  6097. <product id="5R"
  6098. name="5R LITE"
  6099. series="5"
  6100. latestVersion="1.0.1"
  6101. show = "1" >
  6102. <productMenu id="protocol"
  6103. type="3" >
  6104. </productMenu>
  6105. <productMenu id="sip"
  6106. type="1" >
  6107. </productMenu>
  6108. <productMenu id="bluetoothIntercom"
  6109. type="1" >
  6110. </productMenu>
  6111. <productMenu id="phone"
  6112. type="1" >
  6113. </productMenu>
  6114. <productMenu id="fmradio"
  6115. type="1" >
  6116. </productMenu>
  6117. <productMenu id="deviceSetting"
  6118. type="1"
  6119. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6120. </productMenu>
  6121. <productMenu id="quickGuide"
  6122. type="1"
  6123. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  6124. size="934KB" >
  6125. </productMenu>
  6126. <productMenu id="userGuide"
  6127. type="1"
  6128. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  6129. size="1.14MB" >
  6130. </productMenu>
  6131. <productID id="5592"
  6132. />
  6133. <productGroupable type="0"
  6134. />
  6135. </product>
  6136. <product id="50RLE"
  6137. name="50R LE"
  6138. series="50"
  6139. latestVersion="1.0"
  6140. show = "0" >
  6141. <productMenu id="protocol"
  6142. type="2" >
  6143. </productMenu>
  6144. <productMenu id="alexa"
  6145. type="0" >
  6146. </productMenu>
  6147. <productMenu id="sip"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="meshIntercom"
  6151. type="30" >
  6152. </productMenu>
  6153. <productMenu id="bluetoothIntercom"
  6154. type="1" >
  6155. </productMenu>
  6156. <productMenu id="phone"
  6157. type="1" >
  6158. </productMenu>
  6159. <productMenu id="music"
  6160. type="1" >
  6161. </productMenu>
  6162. <productMenu id="fmradio"
  6163. type="0" >
  6164. </productMenu>
  6165. <productMenu id="deviceSetting"
  6166. type="1"
  6167. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml" >
  6168. </productMenu>
  6169. <productMenu id="quickGuide"
  6170. type="0"
  6171. url=""
  6172. size="344KB" >
  6173. </productMenu>
  6174. <productMenu id="userGuide"
  6175. type="0"
  6176. url=""
  6177. size="3.41MB" >
  6178. </productMenu>
  6179. <productMenu id="volume"
  6180. type="11" >
  6181. </productMenu>
  6182. <productMenu id="battery"
  6183. type="1" >
  6184. </productMenu>
  6185. <productID id="3223"
  6186. />
  6187. <productGroupable type="0"
  6188. />
  6189. </product>
  6190. <product id="5RLOUIS"
  6191. name="5R LOUIS EDITION"
  6192. series="5"
  6193. latestVersion="1.0"
  6194. show = "-1" >
  6195. <productMenu id="protocol"
  6196. type="3" >
  6197. </productMenu>
  6198. <productMenu id="sip"
  6199. type="1" >
  6200. </productMenu>
  6201. <productMenu id="bluetoothIntercom"
  6202. type="1" >
  6203. </productMenu>
  6204. <productMenu id="phone"
  6205. type="1" >
  6206. </productMenu>
  6207. <productMenu id="fmradio"
  6208. type="1" >
  6209. </productMenu>
  6210. <productMenu id="deviceSetting"
  6211. type="1"
  6212. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6213. </productMenu>
  6214. <productMenu id="quickGuide"
  6215. type="0"
  6216. url=""
  6217. size="934KB" >
  6218. </productMenu>
  6219. <productMenu id="userGuide"
  6220. type="0"
  6221. url=""
  6222. size="1.14MB" >
  6223. </productMenu>
  6224. <productID id="5597"
  6225. />
  6226. <productGroupable type="0"
  6227. />
  6228. </product>
  6229. <product id="5R"
  6230. name="Ridekont 5R"
  6231. series="5"
  6232. latestVersion="1.0"
  6233. show = "0" >
  6234. <productMenu id="protocol"
  6235. type="3" >
  6236. </productMenu>
  6237. <productMenu id="sip"
  6238. type="1" >
  6239. </productMenu>
  6240. <productMenu id="bluetoothIntercom"
  6241. type="1" >
  6242. </productMenu>
  6243. <productMenu id="phone"
  6244. type="1" >
  6245. </productMenu>
  6246. <productMenu id="fmradio"
  6247. type="1" >
  6248. </productMenu>
  6249. <productMenu id="deviceSetting"
  6250. type="1"
  6251. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  6252. </productMenu>
  6253. <productMenu id="quickGuide"
  6254. type="1"
  6255. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  6256. size="934KB" >
  6257. </productMenu>
  6258. <productMenu id="userGuide"
  6259. type="1"
  6260. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  6261. size="1.14MB" >
  6262. </productMenu>
  6263. <productID id="5593"
  6264. />
  6265. <productGroupable type="0"
  6266. />
  6267. </product>
  6268. <product id="5R"
  6269. name="Ridekont 5R LITE"
  6270. series="5"
  6271. latestVersion="1.0"
  6272. show = "0" >
  6273. <productMenu id="protocol"
  6274. type="3" >
  6275. </productMenu>
  6276. <productMenu id="sip"
  6277. type="1" >
  6278. </productMenu>
  6279. <productMenu id="bluetoothIntercom"
  6280. type="1" >
  6281. </productMenu>
  6282. <productMenu id="phone"
  6283. type="1" >
  6284. </productMenu>
  6285. <productMenu id="fmradio"
  6286. type="1" >
  6287. </productMenu>
  6288. <productMenu id="deviceSetting"
  6289. type="1"
  6290. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  6291. </productMenu>
  6292. <productMenu id="quickGuide"
  6293. type="1"
  6294. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_LITE_1.0.0_en_220511.pdf"
  6295. size="934KB" >
  6296. </productMenu>
  6297. <productMenu id="userGuide"
  6298. type="1"
  6299. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_LITE_1.0.2_en_230106.pdf"
  6300. size="1.14MB" >
  6301. </productMenu>
  6302. <productID id="5594"
  6303. />
  6304. <productGroupable type="0"
  6305. />
  6306. </product>
  6307. <product id="C30"
  6308. name="SENA C30"
  6309. series="C"
  6310. latestVersion="1.1.1"
  6311. latestVersionVoicePrompt="0.11"
  6312. show = "1" >
  6313. <productMenu id="protocol"
  6314. type="2" >
  6315. </productMenu>
  6316. <productMenu id="alexa"
  6317. type="0" >
  6318. </productMenu>
  6319. <productMenu id="ota"
  6320. type="2" >
  6321. <otaPackages>
  6322. <package
  6323. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.1.1-build0.img"
  6324. size="3144148"
  6325. />
  6326. </otaPackages>
  6327. </productMenu>
  6328. <productMenu id="wa"
  6329. type="0" >
  6330. </productMenu>
  6331. <productMenu id="meshIntercom"
  6332. type="30" >
  6333. </productMenu>
  6334. <productMenu id="meshIntercom+"
  6335. type="3"
  6336. url="2" >
  6337. <productMenuType version="1.0.9"
  6338. type="2"
  6339. />
  6340. </productMenu>
  6341. <productMenu id="phone"
  6342. type="1" >
  6343. </productMenu>
  6344. <productMenu id="music"
  6345. type="1" >
  6346. </productMenu>
  6347. <productMenu id="musicSharing"
  6348. type="0" >
  6349. </productMenu>
  6350. <productMenu id="deviceSetting"
  6351. type="1"
  6352. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_06_zh_rCN.xml" >
  6353. <productMenuURL version="1.0.9"
  6354. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  6355. />
  6356. </productMenu>
  6357. <productMenu id="quickGuide"
  6358. type="1"
  6359. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  6360. size="1.12MB" >
  6361. </productMenu>
  6362. <productMenu id="userGuide"
  6363. type="0"
  6364. url=""
  6365. size="2.0MB" >
  6366. </productMenu>
  6367. <productMenu id="videoGuide"
  6368. type="0"
  6369. url=""
  6370. size="3.41MB" >
  6371. </productMenu>
  6372. <productMenu id="volume"
  6373. type="12" >
  6374. </productMenu>
  6375. <productMenu id="battery"
  6376. type="1" >
  6377. </productMenu>
  6378. <productID id="683A"
  6379. />
  6380. <productGroupable type="0"
  6381. />
  6382. </product>
  6383. <product id="C20"
  6384. name="C20"
  6385. series="5"
  6386. latestVersion="1.0"
  6387. show = "0" >
  6388. <productMenu id="protocol"
  6389. type="3" >
  6390. </productMenu>
  6391. <productMenu id="sip"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="bluetoothIntercom"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="phone"
  6398. type="1" >
  6399. </productMenu>
  6400. <productMenu id="deviceSetting"
  6401. type="1"
  6402. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  6403. </productMenu>
  6404. <productMenu id="quickGuide"
  6405. type="1"
  6406. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  6407. size="934KB" >
  6408. </productMenu>
  6409. <productMenu id="userGuide"
  6410. type="1"
  6411. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  6412. size="1.14MB" >
  6413. </productMenu>
  6414. <productID id="3701"
  6415. />
  6416. <productGroupable type="0"
  6417. />
  6418. </product>
  6419. <product id="C10"
  6420. name="C10"
  6421. series="5"
  6422. latestVersion="1.3"
  6423. show = "0" >
  6424. <productMenu id="protocol"
  6425. type="3" >
  6426. </productMenu>
  6427. <productMenu id="sip"
  6428. type="1" >
  6429. </productMenu>
  6430. <productMenu id="bluetoothIntercom"
  6431. type="1" >
  6432. </productMenu>
  6433. <productMenu id="phone"
  6434. type="1" >
  6435. </productMenu>
  6436. <productMenu id="fmradio"
  6437. type="0" >
  6438. </productMenu>
  6439. <productMenu id="deviceSetting"
  6440. type="1"
  6441. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  6442. </productMenu>
  6443. <productMenu id="userGuide"
  6444. type="1"
  6445. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C10_1.1.0_sc_241118.pdf"
  6446. size="1.14MB" >
  6447. </productMenu>
  6448. <productID id="5595"
  6449. />
  6450. <productGroupable type="0"
  6451. />
  6452. </product>
  6453. <product id="J30"
  6454. name="J30"
  6455. series="J"
  6456. latestVersion="1.1.1"
  6457. latestVersionVoicePrompt="0.12"
  6458. show = "0" >
  6459. <productMenu id="protocol"
  6460. type="2" >
  6461. </productMenu>
  6462. <productMenu id="alexa"
  6463. type="0" >
  6464. </productMenu>
  6465. <productMenu id="ota"
  6466. type="2" >
  6467. <otaPackages>
  6468. <package
  6469. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.1.1-build0.img"
  6470. size="3144148"
  6471. />
  6472. </otaPackages>
  6473. </productMenu>
  6474. <productMenu id="wa"
  6475. type="0" >
  6476. </productMenu>
  6477. <productMenu id="meshIntercom"
  6478. type="30" >
  6479. </productMenu>
  6480. <productMenu id="phone"
  6481. type="1" >
  6482. </productMenu>
  6483. <productMenu id="music"
  6484. type="1" >
  6485. </productMenu>
  6486. <productMenu id="musicSharing"
  6487. type="0" >
  6488. </productMenu>
  6489. <productMenu id="deviceSetting"
  6490. type="1"
  6491. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  6492. <productMenuURL version="1.0.9"
  6493. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  6494. />
  6495. </productMenu>
  6496. <productMenu id="quickGuide"
  6497. type="0"
  6498. url=""
  6499. size="1.12MB" >
  6500. </productMenu>
  6501. <productMenu id="userGuide"
  6502. type="1"
  6503. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.0.0_jp_241217.pdf"
  6504. size="2.0MB" >
  6505. </productMenu>
  6506. <productMenu id="videoGuide"
  6507. type="0"
  6508. url=""
  6509. size="3.41MB" >
  6510. </productMenu>
  6511. <productMenu id="volume"
  6512. type="12" >
  6513. </productMenu>
  6514. <productMenu id="battery"
  6515. type="1" >
  6516. </productMenu>
  6517. <productID id="6848"
  6518. />
  6519. <productGroupable type="0"
  6520. />
  6521. </product>
  6522. <product id="J10"
  6523. name="J10"
  6524. series="5"
  6525. latestVersion="1.0"
  6526. show = "0" >
  6527. <productMenu id="protocol"
  6528. type="3" >
  6529. </productMenu>
  6530. <productMenu id="sip"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="bluetoothIntercom"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="phone"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="fmradio"
  6540. type="0" >
  6541. </productMenu>
  6542. <productMenu id="deviceSetting"
  6543. type="1"
  6544. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  6545. </productMenu>
  6546. <productMenu id="userGuide"
  6547. type="1"
  6548. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_J10_1.0.0_jp_241122.pdf"
  6549. size="1.14MB" >
  6550. </productMenu>
  6551. <productID id="5598"
  6552. />
  6553. <productGroupable type="0"
  6554. />
  6555. </product>
  6556. <product id="B20"
  6557. name="B20"
  6558. series="B"
  6559. latestVersion="1.0.1"
  6560. latestVersionVoicePrompt="0.12"
  6561. show = "0" >
  6562. <productMenu id="protocol"
  6563. type="2" >
  6564. </productMenu>
  6565. <productMenu id="alexa"
  6566. type="0" >
  6567. </productMenu>
  6568. <productMenu id="ota"
  6569. type="2" >
  6570. <otaPackages>
  6571. <package
  6572. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.0.1-build0.img"
  6573. size="3144148"
  6574. />
  6575. </otaPackages>
  6576. </productMenu>
  6577. <productMenu id="wa"
  6578. type="0" >
  6579. </productMenu>
  6580. <productMenu id="meshIntercom"
  6581. type="30" >
  6582. </productMenu>
  6583. <productMenu id="phone"
  6584. type="1" >
  6585. </productMenu>
  6586. <productMenu id="music"
  6587. type="1" >
  6588. </productMenu>
  6589. <productMenu id="musicSharing"
  6590. type="0" >
  6591. </productMenu>
  6592. <productMenu id="deviceSetting"
  6593. type="1"
  6594. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml" >
  6595. </productMenu>
  6596. <productMenu id="quickGuide"
  6597. type="0"
  6598. url=""
  6599. size="1.12MB" >
  6600. </productMenu>
  6601. <productMenu id="userGuide"
  6602. type="1"
  6603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241122.pdf"
  6604. size="2.0MB" >
  6605. </productMenu>
  6606. <productMenu id="videoGuide"
  6607. type="0"
  6608. url=""
  6609. size="3.41MB" >
  6610. </productMenu>
  6611. <productMenu id="volume"
  6612. type="12" >
  6613. </productMenu>
  6614. <productMenu id="battery"
  6615. type="1" >
  6616. </productMenu>
  6617. <productID id="6847"
  6618. />
  6619. <productGroupable type="0"
  6620. />
  6621. </product>
  6622. <product id="B10"
  6623. name="B10"
  6624. series="5"
  6625. latestVersion="1.1"
  6626. show = "0" >
  6627. <productMenu id="protocol"
  6628. type="3" >
  6629. </productMenu>
  6630. <productMenu id="sip"
  6631. type="1" >
  6632. </productMenu>
  6633. <productMenu id="bluetoothIntercom"
  6634. type="1" >
  6635. </productMenu>
  6636. <productMenu id="phone"
  6637. type="1" >
  6638. </productMenu>
  6639. <productMenu id="fmradio"
  6640. type="0" >
  6641. </productMenu>
  6642. <productMenu id="deviceSetting"
  6643. type="1"
  6644. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  6645. </productMenu>
  6646. <productMenu id="userGuide"
  6647. type="1"
  6648. url="https://firmware.sena.com/senabluetoothmanager/Indian_UsersGuide_B10_1.1.0_en_241118.pdf"
  6649. size="1.14MB" >
  6650. </productMenu>
  6651. <productID id="5596"
  6652. />
  6653. <productGroupable type="0"
  6654. />
  6655. </product>
  6656. <product id="E30"
  6657. name="E30"
  6658. series="E"
  6659. latestVersion="1.0.1"
  6660. latestVersionVoicePrompt="0.12"
  6661. show = "0" >
  6662. <productMenu id="protocol"
  6663. type="2" >
  6664. </productMenu>
  6665. <productMenu id="alexa"
  6666. type="0" >
  6667. </productMenu>
  6668. <productMenu id="ota"
  6669. type="2" >
  6670. <otaPackages>
  6671. <package
  6672. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.0.1-build0.img"
  6673. size="3144148"
  6674. />
  6675. </otaPackages>
  6676. </productMenu>
  6677. <productMenu id="wa"
  6678. type="0" >
  6679. </productMenu>
  6680. <productMenu id="meshIntercom"
  6681. type="30" >
  6682. </productMenu>
  6683. <productMenu id="phone"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="music"
  6687. type="1" >
  6688. </productMenu>
  6689. <productMenu id="musicSharing"
  6690. type="0" >
  6691. </productMenu>
  6692. <productMenu id="deviceSetting"
  6693. type="1"
  6694. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  6695. </productMenu>
  6696. <productMenu id="quickGuide"
  6697. type="0"
  6698. url=""
  6699. size="1.12MB" >
  6700. </productMenu>
  6701. <productMenu id="userGuide"
  6702. type="1"
  6703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  6704. size="2.0MB" >
  6705. </productMenu>
  6706. <productMenu id="videoGuide"
  6707. type="0"
  6708. url=""
  6709. size="3.41MB" >
  6710. </productMenu>
  6711. <productMenu id="volume"
  6712. type="12" >
  6713. </productMenu>
  6714. <productMenu id="battery"
  6715. type="1" >
  6716. </productMenu>
  6717. <productID id="6846"
  6718. />
  6719. <productGroupable type="0"
  6720. />
  6721. </product>
  6722. <product id="ACSRAM"
  6723. name="ACS-RAM"
  6724. series="ACS"
  6725. latestVersion="1.0.5"
  6726. show = "1" >
  6727. <productMenu id="protocol"
  6728. type="3" >
  6729. </productMenu>
  6730. <productMenu id="sip"
  6731. type="1" >
  6732. </productMenu>
  6733. <productMenu id="bluetoothIntercom"
  6734. type="1" >
  6735. </productMenu>
  6736. <productMenu id="deviceSetting"
  6737. type="1"
  6738. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  6739. </productMenu>
  6740. <productMenu id="quickGuide"
  6741. type="1"
  6742. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  6743. size="344KB" >
  6744. </productMenu>
  6745. <productMenu id="userGuide"
  6746. type="1"
  6747. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  6748. size="1.14MB" >
  6749. </productMenu>
  6750. <productID id="3400"
  6751. />
  6752. <productGroupable type="0"
  6753. />
  6754. </product>
  6755. <product id="ACS10"
  6756. name="ACS10"
  6757. series="ACS"
  6758. latestVersion="1.0.2"
  6759. show = "1" >
  6760. <productMenu id="protocol"
  6761. type="0">
  6762. </productMenu>
  6763. <productMenu id="sip"
  6764. type="1" >
  6765. </productMenu>
  6766. <productMenu id="bluetoothIntercom"
  6767. type="1" >
  6768. </productMenu>
  6769. <productMenu id="phone"
  6770. type="2" >
  6771. </productMenu>
  6772. <productMenu id="deviceSetting"
  6773. type="1"
  6774. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  6775. </productMenu>
  6776. <productMenu id="quickGuide"
  6777. type="1"
  6778. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  6779. size="970KB" >
  6780. </productMenu>
  6781. <productMenu id="userGuide"
  6782. type="1"
  6783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  6784. size="1.26MB" >
  6785. </productMenu>
  6786. <productID id="3300"
  6787. />
  6788. <productGroupable type="0"
  6789. />
  6790. </product>
  6791. <product id="DWO7ProMesh"
  6792. name="DWO 7 Pro Mesh"
  6793. series="50"
  6794. latestVersion="1.0"
  6795. latestVersionVoicePrompt="0.8"
  6796. show = "0" >
  6797. <productMenu id="protocol"
  6798. type="2" >
  6799. </productMenu>
  6800. <productMenu id="alexa"
  6801. type="0" >
  6802. </productMenu>
  6803. <productMenu id="ota"
  6804. type="2" >
  6805. <otaPackages>
  6806. <package
  6807. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.0-build7.img"
  6808. size="2945812"
  6809. />
  6810. </otaPackages>
  6811. </productMenu>
  6812. <productMenu id="wa"
  6813. type="0" >
  6814. </productMenu>
  6815. <productMenu id="meshIntercom"
  6816. type="20" >
  6817. </productMenu>
  6818. <productMenu id="meshIntercom+"
  6819. type="3"
  6820. url="0" >
  6821. <productMenuType version="1.0.9"
  6822. type="2"
  6823. />
  6824. </productMenu>
  6825. <productMenu id="waveIntercom"
  6826. type="1" >
  6827. <productMenuType version="1.0.9"
  6828. type="0"
  6829. />
  6830. </productMenu>
  6831. <productMenu id="phone"
  6832. type="1" >
  6833. </productMenu>
  6834. <productMenu id="music"
  6835. type="1" >
  6836. </productMenu>
  6837. <productMenu id="fmradio"
  6838. type="1" >
  6839. </productMenu>
  6840. <productMenu id="musicSharing"
  6841. type="0" >
  6842. </productMenu>
  6843. <productMenu id="deviceSetting"
  6844. type="1"
  6845. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_03.xml" >
  6846. <productMenuURL version="1.0.9"
  6847. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  6848. />
  6849. </productMenu>
  6850. <productMenu id="quickGuide"
  6851. type="1"
  6852. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.0.0_en_230911.pdf"
  6853. size="1.12MB" >
  6854. </productMenu>
  6855. <productMenu id="userGuide"
  6856. type="1"
  6857. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.0.0_en_230908.pdf"
  6858. size="2.0MB" >
  6859. </productMenu>
  6860. <productMenu id="volume"
  6861. type="12" >
  6862. </productMenu>
  6863. <productMenu id="battery"
  6864. type="1" >
  6865. </productMenu>
  6866. <productID id="6806"
  6867. />
  6868. <productGroupable type="0"
  6869. />
  6870. </product>
  6871. <product id="MeshStation"
  6872. name="Mesh Station"
  6873. series="50"
  6874. latestVersion="0.9"
  6875. show = "0" >
  6876. <productMenu id="protocol"
  6877. type="2" >
  6878. </productMenu>
  6879. <productMenu id="meshIntercom"
  6880. type="20"
  6881. url="99" >
  6882. </productMenu>
  6883. <productID id="3161"
  6884. />
  6885. <productGroupable type="0"
  6886. />
  6887. </product>
  6888. </products>
  6889. </sna>