snm.xml 249 KB

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