snm.xml 252 KB

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