snm.xml 230 KB

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