snm.xml 488 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260136" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml" >
  504. </productMenu>
  505. <productMenu id="quickGuide"
  506. type="0"
  507. url=""
  508. size="1.12MB" >
  509. </productMenu>
  510. <productMenu id="userGuide"
  511. type="1"
  512. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  513. size="2.0MB" >
  514. </productMenu>
  515. <productMenu id="videoGuide"
  516. type="0"
  517. url=""
  518. size="3.41MB" >
  519. </productMenu>
  520. <productMenu id="connectGuide"
  521. type="0"
  522. url=""
  523. size="1.12MB" >
  524. </productMenu>
  525. <productMenu id="volume"
  526. type="16" >
  527. </productMenu>
  528. <productMenu id="volume+"
  529. type="2"
  530. url="0x6004" >
  531. </productMenu>
  532. <productMenu id="soundMode"
  533. type="1" >
  534. </productMenu>
  535. <productMenu id="appearance"
  536. type="1"
  537. url="1|white,silver,black,glossy_black" >
  538. </productMenu>
  539. <productMenu id="battery"
  540. type="1" >
  541. </productMenu>
  542. <productID id="6A15"
  543. />
  544. <productGroupable type="0"
  545. />
  546. </product>
  547. <product id="60S"
  548. name="60S"
  549. series="60"
  550. latestVersion="1.2.9"
  551. latestVersionMesh="1.2"
  552. latestVersionVoicePrompt="1.7"
  553. show = "1" >
  554. <productMenu id="protocol"
  555. type="2" >
  556. </productMenu>
  557. <productMenu id="ota"
  558. type="2" >
  559. <otaLanguages>
  560. <otaLanguage
  561. id="0"
  562. name="English"
  563. package="0"
  564. />
  565. <otaLanguage
  566. id="0"
  567. name="French"
  568. package="1"
  569. />
  570. <otaLanguage
  571. id="0"
  572. name="Spanish"
  573. package="2"
  574. />
  575. <otaLanguage
  576. id="0"
  577. name="Italian"
  578. package="3"
  579. />
  580. <otaLanguage
  581. id="0"
  582. name="German"
  583. package="4"
  584. />
  585. <otaLanguage
  586. id="0"
  587. name="Dutch"
  588. package="5"
  589. />
  590. <otaLanguage
  591. id="0"
  592. name="Russian"
  593. package="6"
  594. />
  595. <otaLanguage
  596. id="0"
  597. name="Chinese"
  598. package="7"
  599. />
  600. <otaLanguage
  601. id="0"
  602. name="Korean"
  603. package="8"
  604. />
  605. <otaLanguage
  606. id="0"
  607. name="Japanese"
  608. package="9"
  609. />
  610. <otaLanguage
  611. id="0"
  612. name="Finnish"
  613. package="10"
  614. />
  615. <otaLanguage
  616. id="0"
  617. name="Polish"
  618. package="11"
  619. />
  620. </otaLanguages>
  621. <otaPackages>
  622. <package
  623. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  656. size="5183988"
  657. />
  658. <package
  659. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  660. size="5183988"
  661. />
  662. <package
  663. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  664. size="5183988"
  665. />
  666. <package
  667. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  668. size="5183988"
  669. />
  670. </otaPackages>
  671. </productMenu>
  672. <productMenu id="sip"
  673. type="1" >
  674. </productMenu>
  675. <productMenu id="illusion"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="meshIntercom"
  679. type="30" >
  680. </productMenu>
  681. <productMenu id="meshIntercom+"
  682. type="3"
  683. url="2" >
  684. </productMenu>
  685. <productMenu id="waveIntercom"
  686. type="1" >
  687. </productMenu>
  688. <productMenu id="bluetoothIntercom"
  689. type="1"
  690. url="2" >
  691. </productMenu>
  692. <productMenu id="bluetoothIntercomGrouping"
  693. type="0" >
  694. </productMenu>
  695. <productMenu id="fmradio"
  696. type="1"
  697. url="1" >
  698. </productMenu>
  699. <productMenu id="phone"
  700. type="1" >
  701. </productMenu>
  702. <productMenu id="music"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="musicSharing"
  706. type="0" >
  707. </productMenu>
  708. <productMenu id="deviceSetting"
  709. type="1"
  710. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  711. <productMenuURL version="1.2.6"
  712. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  713. />
  714. <productMenuURL version="1.2.3"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  716. />
  717. </productMenu>
  718. <productMenu id="quickGuide"
  719. type="0"
  720. url=""
  721. size="1.12MB" >
  722. </productMenu>
  723. <productMenu id="userGuide"
  724. type="1"
  725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  726. size="2.0MB" >
  727. </productMenu>
  728. <productMenu id="videoGuide"
  729. type="0"
  730. url=""
  731. size="3.41MB" >
  732. </productMenu>
  733. <productMenu id="connectGuide"
  734. type="1"
  735. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  736. size="1.12MB" >
  737. </productMenu>
  738. <productMenu id="volume"
  739. type="16" >
  740. </productMenu>
  741. <productMenu id="volume+"
  742. type="2"
  743. url="0x6004" >
  744. <productMenuURL version="1.2.3"
  745. url="0x6004"
  746. />
  747. </productMenu>
  748. <productMenu id="soundMode"
  749. type="0" >
  750. </productMenu>
  751. <productMenu id="appearance"
  752. type="1"
  753. url="2|white,silver,chrome,black" >
  754. </productMenu>
  755. <productMenu id="battery"
  756. type="1" >
  757. </productMenu>
  758. <productID id="6A0D"
  759. />
  760. <productGroupable type="0"
  761. />
  762. </product>
  763. <product id="60S"
  764. name="60S"
  765. series="60"
  766. latestVersion="1.2.9"
  767. latestVersionMesh="1.2"
  768. latestVersionVoicePrompt="1.7"
  769. show = "-1" >
  770. <productMenu id="protocol"
  771. type="2" >
  772. </productMenu>
  773. <productMenu id="ota"
  774. type="2" >
  775. <otaLanguages>
  776. <otaLanguage
  777. id="0"
  778. name="English"
  779. package="0"
  780. />
  781. <otaLanguage
  782. id="0"
  783. name="French"
  784. package="1"
  785. />
  786. <otaLanguage
  787. id="0"
  788. name="Spanish"
  789. package="2"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Italian"
  794. package="3"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="German"
  799. package="4"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Dutch"
  804. package="5"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Russian"
  809. package="6"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Chinese"
  814. package="7"
  815. />
  816. <otaLanguage
  817. id="0"
  818. name="Korean"
  819. package="8"
  820. />
  821. <otaLanguage
  822. id="0"
  823. name="Japanese"
  824. package="9"
  825. />
  826. <otaLanguage
  827. id="0"
  828. name="Finnish"
  829. package="10"
  830. />
  831. <otaLanguage
  832. id="0"
  833. name="Polish"
  834. package="11"
  835. />
  836. </otaLanguages>
  837. <otaPackages>
  838. <package
  839. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  872. size="5183988"
  873. />
  874. <package
  875. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  876. size="5183988"
  877. />
  878. <package
  879. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  880. size="5183988"
  881. />
  882. <package
  883. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  884. size="5183988"
  885. />
  886. </otaPackages>
  887. </productMenu>
  888. <productMenu id="wa"
  889. type="0" >
  890. </productMenu>
  891. <productMenu id="sip"
  892. type="1" >
  893. </productMenu>
  894. <productMenu id="led"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="illusion"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="meshIntercom"
  901. type="30" >
  902. </productMenu>
  903. <productMenu id="meshIntercom+"
  904. type="3"
  905. url="2" >
  906. <productMenuURL version="1.0.2"
  907. url="10"
  908. />
  909. </productMenu>
  910. <productMenu id="waveIntercom"
  911. type="1" >
  912. <productMenuType version="1.0.9"
  913. type="0"
  914. />
  915. </productMenu>
  916. <productMenu id="bluetoothIntercom"
  917. type="1"
  918. url="2" >
  919. </productMenu>
  920. <productMenu id="bluetoothIntercomGrouping"
  921. type="0" >
  922. </productMenu>
  923. <productMenu id="fmradio"
  924. type="1"
  925. url="1" >
  926. </productMenu>
  927. <productMenu id="phone"
  928. type="1" >
  929. </productMenu>
  930. <productMenu id="music"
  931. type="1" >
  932. </productMenu>
  933. <productMenu id="musicSharing"
  934. type="0" >
  935. </productMenu>
  936. <productMenu id="deviceSetting"
  937. type="1"
  938. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  939. <productMenuURL version="1.2.6"
  940. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  941. />
  942. <productMenuURL version="1.2.3"
  943. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  944. />
  945. <productMenuURL version="1.0.2"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  947. />
  948. <productMenuURL version="1.0"
  949. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  950. />
  951. <productMenuURL version="0.9.11"
  952. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  953. />
  954. </productMenu>
  955. <productMenu id="quickGuide"
  956. type="0"
  957. url=""
  958. size="1.12MB" >
  959. </productMenu>
  960. <productMenu id="userGuide"
  961. type="1"
  962. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  963. size="2.0MB" >
  964. </productMenu>
  965. <productMenu id="videoGuide"
  966. type="0"
  967. url=""
  968. size="3.41MB" >
  969. </productMenu>
  970. <productMenu id="connectGuide"
  971. type="1"
  972. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  973. size="1.12MB" >
  974. </productMenu>
  975. <productMenu id="volume"
  976. type="16" >
  977. <productMenuType version="0.9.11"
  978. type="13"
  979. />
  980. </productMenu>
  981. <productMenu id="volume+"
  982. type="2"
  983. url="0x6004" >
  984. <productMenuURL version="1.2.3"
  985. url="0x6004"
  986. />
  987. </productMenu>
  988. <productMenu id="soundMode"
  989. type="0" >
  990. <productMenuType version="0.9.11"
  991. type="0"
  992. />
  993. </productMenu>
  994. <productMenu id="appearance"
  995. type="1"
  996. url="2|white,silver,chrome,black" >
  997. </productMenu>
  998. <productMenu id="battery"
  999. type="1" >
  1000. </productMenu>
  1001. <productID id="6A02"
  1002. />
  1003. <productGroupable type="0"
  1004. />
  1005. </product>
  1006. <product id="60X"
  1007. name="60X"
  1008. series="60"
  1009. latestVersion="1.0"
  1010. latestVersionMesh="0.19"
  1011. latestVersionVoicePrompt="1.7"
  1012. show = "1" >
  1013. <productMenu id="protocol"
  1014. type="2" >
  1015. </productMenu>
  1016. <productMenu id="warranty"
  1017. type="1" >
  1018. </productMenu>
  1019. <productMenu id="serialNumber"
  1020. type="1" >
  1021. </productMenu>
  1022. <productMenu id="ota"
  1023. type="2" >
  1024. <otaLanguages>
  1025. <otaLanguage
  1026. id="0"
  1027. name="English"
  1028. package="0"
  1029. />
  1030. <otaLanguage
  1031. id="0"
  1032. name="French"
  1033. package="1"
  1034. />
  1035. <otaLanguage
  1036. id="0"
  1037. name="Spanish"
  1038. package="2"
  1039. />
  1040. <otaLanguage
  1041. id="0"
  1042. name="Italian"
  1043. package="3"
  1044. />
  1045. <otaLanguage
  1046. id="0"
  1047. name="German"
  1048. package="4"
  1049. />
  1050. <otaLanguage
  1051. id="0"
  1052. name="Dutch"
  1053. package="5"
  1054. />
  1055. <otaLanguage
  1056. id="0"
  1057. name="Russian"
  1058. package="6"
  1059. />
  1060. <otaLanguage
  1061. id="0"
  1062. name="Chinese"
  1063. package="7"
  1064. />
  1065. <otaLanguage
  1066. id="0"
  1067. name="Korean"
  1068. package="8"
  1069. />
  1070. <otaLanguage
  1071. id="0"
  1072. name="Japanese"
  1073. package="9"
  1074. />
  1075. <otaLanguage
  1076. id="0"
  1077. name="Finnish"
  1078. package="10"
  1079. />
  1080. <otaLanguage
  1081. id="0"
  1082. name="Polish"
  1083. package="11"
  1084. />
  1085. </otaLanguages>
  1086. <otaPackages>
  1087. <package
  1088. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1089. size="5183988"
  1090. />
  1091. <package
  1092. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1093. size="5183988"
  1094. />
  1095. <package
  1096. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1097. size="5183988"
  1098. />
  1099. <package
  1100. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1101. size="5183988"
  1102. />
  1103. <package
  1104. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1105. size="5183988"
  1106. />
  1107. <package
  1108. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1109. size="5183988"
  1110. />
  1111. <package
  1112. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1113. size="5183988"
  1114. />
  1115. <package
  1116. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1117. size="5183988"
  1118. />
  1119. <package
  1120. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1121. size="5183988"
  1122. />
  1123. <package
  1124. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1125. size="5183988"
  1126. />
  1127. <package
  1128. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1129. size="5183988"
  1130. />
  1131. <package
  1132. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1133. size="5183988"
  1134. />
  1135. </otaPackages>
  1136. </productMenu>
  1137. <productMenu id="wa"
  1138. type="0" >
  1139. </productMenu>
  1140. <productMenu id="sip"
  1141. type="1" >
  1142. </productMenu>
  1143. <productMenu id="led"
  1144. type="1" >
  1145. </productMenu>
  1146. <productMenu id="illusion"
  1147. type="1" >
  1148. </productMenu>
  1149. <productMenu id="meshIntercom"
  1150. type="30" >
  1151. </productMenu>
  1152. <productMenu id="meshIntercom+"
  1153. type="3"
  1154. url="2" >
  1155. </productMenu>
  1156. <productMenu id="waveIntercom"
  1157. type="1" >
  1158. </productMenu>
  1159. <productMenu id="bluetoothIntercom"
  1160. type="1" >
  1161. </productMenu>
  1162. <productMenu id="fmradio"
  1163. type="1"
  1164. url="1" >
  1165. </productMenu>
  1166. <productMenu id="mic"
  1167. type="0" >
  1168. </productMenu>
  1169. <productMenu id="phone"
  1170. type="1" >
  1171. </productMenu>
  1172. <productMenu id="music"
  1173. type="1" >
  1174. </productMenu>
  1175. <productMenu id="musicSharing"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="deviceSetting"
  1179. type="1"
  1180. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1181. </productMenu>
  1182. <productMenu id="quickGuide"
  1183. type="0"
  1184. url=""
  1185. size="1.12MB" >
  1186. </productMenu>
  1187. <productMenu id="userGuide"
  1188. type="0"
  1189. url=""
  1190. size="2.0MB" >
  1191. </productMenu>
  1192. <productMenu id="videoGuide"
  1193. type="0"
  1194. url=""
  1195. size="3.41MB" >
  1196. </productMenu>
  1197. <productMenu id="keySettings"
  1198. type="1"
  1199. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1200. </productMenu>
  1201. <productMenu id="volume"
  1202. type="13" >
  1203. </productMenu>
  1204. <productMenu id="volume+"
  1205. type="2"
  1206. url="0x6004" >
  1207. </productMenu>
  1208. <productMenu id="appearance"
  1209. type="1"
  1210. url="1|white,silver,black,glossy_black" >
  1211. </productMenu>
  1212. <productMenu id="battery"
  1213. type="1" >
  1214. </productMenu>
  1215. <productID id="6A03"
  1216. />
  1217. <productGroupable type="0"
  1218. />
  1219. </product>
  1220. <product id="R35"
  1221. name="R35"
  1222. series="R"
  1223. latestVersion="1.1.1"
  1224. latestVersionVoicePrompt="1.5"
  1225. show = "1" >
  1226. <productMenu id="protocol"
  1227. type="2" >
  1228. </productMenu>
  1229. <productMenu id="ota"
  1230. type="2" >
  1231. <otaLanguages>
  1232. <otaLanguage
  1233. id="0"
  1234. name="English"
  1235. package="0"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Chinese"
  1240. package="1"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="Chinese Singapore"
  1245. package="2"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="Filipino"
  1250. package="3"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="Hebrew"
  1255. package="4"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="Hindi"
  1260. package="5"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="Indonesian"
  1265. package="6"
  1266. />
  1267. <otaLanguage
  1268. id="0"
  1269. name="Japanese"
  1270. package="7"
  1271. />
  1272. <otaLanguage
  1273. id="0"
  1274. name="Korean"
  1275. package="8"
  1276. />
  1277. <otaLanguage
  1278. id="0"
  1279. name="Malay"
  1280. package="9"
  1281. />
  1282. <otaLanguage
  1283. id="0"
  1284. name="Modern Standard Arabic"
  1285. package="10"
  1286. />
  1287. <otaLanguage
  1288. id="0"
  1289. name="Taiwanese"
  1290. package="11"
  1291. />
  1292. <otaLanguage
  1293. id="0"
  1294. name="Tamil"
  1295. package="12"
  1296. />
  1297. <otaLanguage
  1298. id="0"
  1299. name="Thai"
  1300. package="13"
  1301. />
  1302. <otaLanguage
  1303. id="0"
  1304. name="东北话"
  1305. package="14"
  1306. />
  1307. <otaLanguage
  1308. id="0"
  1309. name="广东话"
  1310. package="15"
  1311. />
  1312. <otaLanguage
  1313. id="0"
  1314. name="江浙沪"
  1315. package="16"
  1316. />
  1317. <otaLanguage
  1318. id="0"
  1319. name="四川话"
  1320. package="17"
  1321. />
  1322. <otaLanguage
  1323. id="0"
  1324. name="陕西话"
  1325. package="18"
  1326. />
  1327. </otaLanguages>
  1328. <otaPackages>
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1403. size="5183988"
  1404. />
  1405. </otaPackages>
  1406. </productMenu>
  1407. <productMenu id="sip"
  1408. type="1" >
  1409. </productMenu>
  1410. <productMenu id="illusion"
  1411. type="1" >
  1412. </productMenu>
  1413. <productMenu id="meshIntercom"
  1414. type="30" >
  1415. </productMenu>
  1416. <productMenu id="meshIntercom+"
  1417. type="3"
  1418. url="2" >
  1419. </productMenu>
  1420. <productMenu id="waveIntercom"
  1421. type="1" >
  1422. </productMenu>
  1423. <productMenu id="phone"
  1424. type="1" >
  1425. </productMenu>
  1426. <productMenu id="music"
  1427. type="1" >
  1428. </productMenu>
  1429. <productMenu id="musicSharing"
  1430. type="0" >
  1431. </productMenu>
  1432. <productMenu id="deviceSetting"
  1433. type="1"
  1434. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1435. <productMenuURL version="1.0.3"
  1436. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1437. />
  1438. </productMenu>
  1439. <productMenu id="quickGuide"
  1440. type="0"
  1441. url=""
  1442. size="1.12MB" >
  1443. </productMenu>
  1444. <productMenu id="userGuide"
  1445. type="1"
  1446. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1447. size="2.0MB" >
  1448. </productMenu>
  1449. <productMenu id="videoGuide"
  1450. type="0"
  1451. url=""
  1452. size="3.41MB" >
  1453. </productMenu>
  1454. <productMenu id="connectGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="volume"
  1460. type="16" >
  1461. </productMenu>
  1462. <productMenu id="volume+"
  1463. type="2"
  1464. url="0x6004" >
  1465. </productMenu>
  1466. <productMenu id="soundMode"
  1467. type="0" >
  1468. </productMenu>
  1469. <productMenu id="appearance"
  1470. type="1"
  1471. url="1|white,silver,chrome,black" >
  1472. </productMenu>
  1473. <productMenu id="battery"
  1474. type="1" >
  1475. </productMenu>
  1476. <productID id="6A06"
  1477. />
  1478. <productGroupable type="0"
  1479. />
  1480. </product>
  1481. <product id="COM60X"
  1482. name="BMW MOTORRAD COM 60X"
  1483. series="60"
  1484. latestVersion="1.0"
  1485. latestVersionMesh="0.19"
  1486. latestVersionVoicePrompt="1.7"
  1487. show = "-1" >
  1488. <productMenu id="protocol"
  1489. type="2" >
  1490. </productMenu>
  1491. <productMenu id="ota"
  1492. type="0" >
  1493. <otaLanguages>
  1494. <otaLanguage
  1495. id="0"
  1496. name="English"
  1497. package="0"
  1498. />
  1499. <otaLanguage
  1500. id="0"
  1501. name="French"
  1502. package="1"
  1503. />
  1504. <otaLanguage
  1505. id="0"
  1506. name="Spanish"
  1507. package="2"
  1508. />
  1509. <otaLanguage
  1510. id="0"
  1511. name="Italian"
  1512. package="3"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="German"
  1517. package="4"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Dutch"
  1522. package="5"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Russian"
  1527. package="6"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Chinese"
  1532. package="7"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Korean"
  1537. package="8"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Japanese"
  1542. package="9"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Finnish"
  1547. package="10"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Polish"
  1552. package="11"
  1553. />
  1554. </otaLanguages>
  1555. <otaPackages>
  1556. <package
  1557. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1558. size="5183988"
  1559. />
  1560. <package
  1561. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1562. size="5183988"
  1563. />
  1564. <package
  1565. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1566. size="5183988"
  1567. />
  1568. <package
  1569. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1570. size="5183988"
  1571. />
  1572. <package
  1573. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1574. size="5183988"
  1575. />
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1602. size="5183988"
  1603. />
  1604. </otaPackages>
  1605. </productMenu>
  1606. <productMenu id="wa"
  1607. type="0" >
  1608. </productMenu>
  1609. <productMenu id="sip"
  1610. type="1" >
  1611. </productMenu>
  1612. <productMenu id="led"
  1613. type="1" >
  1614. </productMenu>
  1615. <productMenu id="illusion"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. </productMenu>
  1621. <productMenu id="meshIntercom+"
  1622. type="3"
  1623. url="2" >
  1624. </productMenu>
  1625. <productMenu id="bluetoothIntercom"
  1626. type="1" >
  1627. </productMenu>
  1628. <productMenu id="fmradio"
  1629. type="1"
  1630. url="1" >
  1631. </productMenu>
  1632. <productMenu id="mic"
  1633. type="0" >
  1634. </productMenu>
  1635. <productMenu id="phone"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="music"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="musicSharing"
  1642. type="0" >
  1643. </productMenu>
  1644. <productMenu id="deviceSetting"
  1645. type="1"
  1646. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1647. </productMenu>
  1648. <productMenu id="quickGuide"
  1649. type="0"
  1650. url=""
  1651. size="1.12MB" >
  1652. </productMenu>
  1653. <productMenu id="userGuide"
  1654. type="1"
  1655. url=""
  1656. size="2.0MB" >
  1657. </productMenu>
  1658. <productMenu id="videoGuide"
  1659. type="0"
  1660. url=""
  1661. size="3.41MB" >
  1662. </productMenu>
  1663. <productMenu id="keySettings"
  1664. type="1"
  1665. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1666. </productMenu>
  1667. <productMenu id="volume"
  1668. type="13" >
  1669. </productMenu>
  1670. <productMenu id="volume+"
  1671. type="2"
  1672. url="0x6004" >
  1673. </productMenu>
  1674. <productMenu id="battery"
  1675. type="1" >
  1676. </productMenu>
  1677. <productID id="6A1B"
  1678. />
  1679. <productGroupable type="0"
  1680. />
  1681. </product>
  1682. <product id="COMP1"
  1683. name="BMW COM P1"
  1684. series="60"
  1685. latestVersion="1.2"
  1686. latestVersionMesh="0.19"
  1687. latestVersionVoicePrompt="1.0"
  1688. show = "-1" >
  1689. <productMenu id="protocol"
  1690. type="2" >
  1691. </productMenu>
  1692. <productMenu id="ota"
  1693. type="2" >
  1694. <otaLanguages>
  1695. <otaLanguage
  1696. id="0"
  1697. name="English"
  1698. package="0"
  1699. />
  1700. <otaLanguage
  1701. id="0"
  1702. name="French"
  1703. package="1"
  1704. />
  1705. <otaLanguage
  1706. id="0"
  1707. name="Spanish"
  1708. package="2"
  1709. />
  1710. <otaLanguage
  1711. id="0"
  1712. name="Italian"
  1713. package="3"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="German"
  1718. package="4"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Dutch"
  1723. package="5"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Russian"
  1728. package="6"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Chinese"
  1733. package="7"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Korean"
  1738. package="8"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Japanese"
  1743. package="9"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Finnish"
  1748. package="10"
  1749. />
  1750. </otaLanguages>
  1751. <otaPackages>
  1752. <package
  1753. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1754. size="5183988"
  1755. />
  1756. <package
  1757. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1758. size="5183988"
  1759. />
  1760. <package
  1761. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1762. size="5183988"
  1763. />
  1764. <package
  1765. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1766. size="5183988"
  1767. />
  1768. <package
  1769. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1770. size="5183988"
  1771. />
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1794. size="5183988"
  1795. />
  1796. </otaPackages>
  1797. </productMenu>
  1798. <productMenu id="wa"
  1799. type="0" >
  1800. </productMenu>
  1801. <productMenu id="sip"
  1802. type="1" >
  1803. </productMenu>
  1804. <productMenu id="led"
  1805. type="0" >
  1806. </productMenu>
  1807. <productMenu id="illusion"
  1808. type="0" >
  1809. </productMenu>
  1810. <productMenu id="meshIntercom"
  1811. type="30" >
  1812. </productMenu>
  1813. <productMenu id="bluetoothIntercom"
  1814. type="1" >
  1815. </productMenu>
  1816. <productMenu id="bluetoothIntercomGrouping"
  1817. type="0" >
  1818. </productMenu>
  1819. <productMenu id="fmradio"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="phone"
  1823. type="1" >
  1824. </productMenu>
  1825. <productMenu id="music"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="musicSharing"
  1829. type="0" >
  1830. </productMenu>
  1831. <productMenu id="deviceSetting"
  1832. type="1"
  1833. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1834. </productMenu>
  1835. <productMenu id="quickGuide"
  1836. type="0"
  1837. url=""
  1838. size="1.12MB" >
  1839. </productMenu>
  1840. <productMenu id="userGuide"
  1841. type="0"
  1842. url=""
  1843. size="2.0MB" >
  1844. </productMenu>
  1845. <productMenu id="videoGuide"
  1846. type="0"
  1847. url=""
  1848. size="3.41MB" >
  1849. </productMenu>
  1850. <productMenu id="volume"
  1851. type="16" >
  1852. </productMenu>
  1853. <productMenu id="battery"
  1854. type="1" >
  1855. </productMenu>
  1856. <productID id="6A80"
  1857. />
  1858. <productGroupable type="0"
  1859. />
  1860. </product>
  1861. <product id="50S"
  1862. name="50S"
  1863. series="50"
  1864. latestVersion="2.7.2"
  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. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1875. size="1150234" >
  1876. </productMenu>
  1877. <productMenu id="wa"
  1878. type="1" >
  1879. </productMenu>
  1880. <productMenu id="sip"
  1881. type="1" >
  1882. </productMenu>
  1883. <productMenu id="meshIntercom"
  1884. type="30" >
  1885. <productMenuType version="2.1.1"
  1886. type="20"
  1887. />
  1888. </productMenu>
  1889. <productMenu id="meshIntercom+"
  1890. type="3"
  1891. url="2" >
  1892. <productMenuType version="2.5.9"
  1893. type="2"
  1894. />
  1895. <productMenuURL version="2.1.1"
  1896. url="0"
  1897. />
  1898. </productMenu>
  1899. <productMenu id="waveIntercom"
  1900. type="1" >
  1901. <productMenuType version="2.6"
  1902. type="0"
  1903. />
  1904. </productMenu>
  1905. <productMenu id="bluetoothIntercom"
  1906. type="1" >
  1907. </productMenu>
  1908. <productMenu id="phone"
  1909. type="1" >
  1910. </productMenu>
  1911. <productMenu id="music"
  1912. type="1" >
  1913. </productMenu>
  1914. <productMenu id="fmradio"
  1915. type="1" >
  1916. </productMenu>
  1917. <productMenu id="deviceSetting"
  1918. type="1"
  1919. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1920. <productMenuURL version="2.5.9"
  1921. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1922. />
  1923. <productMenuURL version="2.1.1"
  1924. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1925. />
  1926. <productMenuURL version="2.0.3"
  1927. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1928. />
  1929. </productMenu>
  1930. <productMenu id="quickGuide"
  1931. type="0"
  1932. url=""
  1933. size="934KB" >
  1934. </productMenu>
  1935. <productMenu id="userGuide"
  1936. type="1"
  1937. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1938. size="1.14MB" >
  1939. </productMenu>
  1940. <productMenu id="videoGuide"
  1941. type="1"
  1942. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1943. size="3.41MB" >
  1944. </productMenu>
  1945. <productMenu id="connectGuide"
  1946. type="1"
  1947. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1948. size="1.12MB" >
  1949. </productMenu>
  1950. <productMenu id="volume"
  1951. type="11" >
  1952. </productMenu>
  1953. <productMenu id="battery"
  1954. type="1" >
  1955. </productMenu>
  1956. <productID id="3210"
  1957. />
  1958. <productGroupable type="0"
  1959. />
  1960. </product>
  1961. <product id="50S"
  1962. name="50S"
  1963. series="50"
  1964. latestVersion="1.5.1"
  1965. show = "-1" >
  1966. <productMenu id="protocol"
  1967. type="2" >
  1968. </productMenu>
  1969. <productMenu id="alexa"
  1970. type="0" >
  1971. </productMenu>
  1972. <productMenu id="wa"
  1973. type="1" >
  1974. </productMenu>
  1975. <productMenu id="sip"
  1976. type="1" >
  1977. </productMenu>
  1978. <productMenu id="meshIntercom"
  1979. type="30" >
  1980. <productMenuType version="1.2.2"
  1981. type="20"
  1982. />
  1983. </productMenu>
  1984. <productMenu id="meshIntercom+"
  1985. type="3"
  1986. url="2" >
  1987. <productMenuType version="1.4.9"
  1988. type="2"
  1989. />
  1990. <productMenuURL version="1.2.2"
  1991. url="0"
  1992. />
  1993. </productMenu>
  1994. <productMenu id="waveIntercom"
  1995. type="1" >
  1996. <productMenuType version="1.3.9"
  1997. type="0"
  1998. />
  1999. </productMenu>
  2000. <productMenu id="bluetoothIntercom"
  2001. type="1" >
  2002. </productMenu>
  2003. <productMenu id="phone"
  2004. type="1" >
  2005. </productMenu>
  2006. <productMenu id="music"
  2007. type="1" >
  2008. </productMenu>
  2009. <productMenu id="fmradio"
  2010. type="1" >
  2011. </productMenu>
  2012. <productMenu id="deviceSetting"
  2013. type="1"
  2014. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2015. <productMenuURL version="1.4.9"
  2016. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2017. />
  2018. <productMenuURL version="1.3.9"
  2019. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2020. />
  2021. <productMenuURL version="1.2.2"
  2022. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2023. />
  2024. <productMenuURL version="1.1.1"
  2025. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2026. />
  2027. </productMenu>
  2028. <productMenu id="quickGuide"
  2029. type="0"
  2030. url=""
  2031. size="934KB" >
  2032. </productMenu>
  2033. <productMenu id="userGuide"
  2034. type="1"
  2035. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2036. size="1.14MB" >
  2037. </productMenu>
  2038. <productMenu id="videoGuide"
  2039. type="1"
  2040. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2041. size="3.41MB" >
  2042. </productMenu>
  2043. <productMenu id="volume"
  2044. type="11" >
  2045. </productMenu>
  2046. <productMenu id="battery"
  2047. type="1" >
  2048. </productMenu>
  2049. <productID id="3132"
  2050. />
  2051. <productGroupable type="0"
  2052. />
  2053. </product>
  2054. <product id="50R"
  2055. name="50R"
  2056. series="50"
  2057. latestVersion="2.7.1"
  2058. show = "1" >
  2059. <productMenu id="protocol"
  2060. type="2" >
  2061. </productMenu>
  2062. <productMenu id="alexa"
  2063. type="0" >
  2064. </productMenu>
  2065. <productMenu id="ota"
  2066. type="0"
  2067. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2068. size="1150234" >
  2069. </productMenu>
  2070. <productMenu id="wa"
  2071. type="1" >
  2072. </productMenu>
  2073. <productMenu id="sip"
  2074. type="1" >
  2075. </productMenu>
  2076. <productMenu id="meshIntercom"
  2077. type="30" >
  2078. <productMenuType version="2.1.1"
  2079. type="20"
  2080. />
  2081. </productMenu>
  2082. <productMenu id="meshIntercom+"
  2083. type="3"
  2084. url="2" >
  2085. <productMenuType version="2.5.9"
  2086. type="2"
  2087. />
  2088. <productMenuURL version="2.1.1"
  2089. url="0"
  2090. />
  2091. </productMenu>
  2092. <productMenu id="waveIntercom"
  2093. type="1" >
  2094. <productMenuType version="2.6"
  2095. type="0"
  2096. />
  2097. </productMenu>
  2098. <productMenu id="bluetoothIntercom"
  2099. type="1" >
  2100. </productMenu>
  2101. <productMenu id="phone"
  2102. type="1" >
  2103. </productMenu>
  2104. <productMenu id="music"
  2105. type="1" >
  2106. </productMenu>
  2107. <productMenu id="fmradio"
  2108. type="1" >
  2109. </productMenu>
  2110. <productMenu id="deviceSetting"
  2111. type="1"
  2112. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2113. <productMenuURL version="2.5.9"
  2114. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2115. />
  2116. <productMenuURL version="2.1.1"
  2117. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2118. />
  2119. <productMenuURL version="2.0"
  2120. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2121. />
  2122. </productMenu>
  2123. <productMenu id="quickGuide"
  2124. type="0"
  2125. url=""
  2126. size="344KB" >
  2127. </productMenu>
  2128. <productMenu id="userGuide"
  2129. type="1"
  2130. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2131. size="3.41MB" >
  2132. </productMenu>
  2133. <productMenu id="videoGuide"
  2134. type="1"
  2135. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2136. size="3.41MB" >
  2137. </productMenu>
  2138. <productMenu id="connectGuide"
  2139. type="1"
  2140. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2141. size="1.12MB" >
  2142. </productMenu>
  2143. <productMenu id="volume"
  2144. type="11" >
  2145. </productMenu>
  2146. <productMenu id="battery"
  2147. type="1" >
  2148. </productMenu>
  2149. <productID id="3218"
  2150. />
  2151. <productGroupable type="0"
  2152. />
  2153. </product>
  2154. <product id="50R"
  2155. name="50R"
  2156. series="50"
  2157. latestVersion="1.5.1"
  2158. show = "-1" >
  2159. <productMenu id="protocol"
  2160. type="2" >
  2161. </productMenu>
  2162. <productMenu id="alexa"
  2163. type="0" >
  2164. </productMenu>
  2165. <productMenu id="wa"
  2166. type="1" >
  2167. </productMenu>
  2168. <productMenu id="sip"
  2169. type="1" >
  2170. </productMenu>
  2171. <productMenu id="meshIntercom"
  2172. type="30" >
  2173. <productMenuType version="1.2.2"
  2174. type="20"
  2175. />
  2176. </productMenu>
  2177. <productMenu id="meshIntercom+"
  2178. type="3"
  2179. url="2" >
  2180. <productMenuType version="1.4.9"
  2181. type="2"
  2182. />
  2183. <productMenuURL version="1.2.2"
  2184. url="0"
  2185. />
  2186. </productMenu>
  2187. <productMenu id="waveIntercom"
  2188. type="1" >
  2189. <productMenuType version="1.3.9"
  2190. type="0"
  2191. />
  2192. </productMenu>
  2193. <productMenu id="bluetoothIntercom"
  2194. type="1" >
  2195. </productMenu>
  2196. <productMenu id="phone"
  2197. type="1" >
  2198. </productMenu>
  2199. <productMenu id="music"
  2200. type="1" >
  2201. </productMenu>
  2202. <productMenu id="fmradio"
  2203. type="1" >
  2204. </productMenu>
  2205. <productMenu id="deviceSetting"
  2206. type="1"
  2207. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2208. <productMenuURL version="1.4.9"
  2209. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2210. />
  2211. <productMenuURL version="1.3.9"
  2212. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2213. />
  2214. <productMenuURL version="1.2.2"
  2215. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2216. />
  2217. <productMenuURL version="1.1.1"
  2218. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2219. />
  2220. </productMenu>
  2221. <productMenu id="quickGuide"
  2222. type="0"
  2223. url=""
  2224. size="344KB" >
  2225. </productMenu>
  2226. <productMenu id="userGuide"
  2227. type="1"
  2228. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2229. size="3.41MB" >
  2230. </productMenu>
  2231. <productMenu id="videoGuide"
  2232. type="1"
  2233. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2234. size="3.41MB" >
  2235. </productMenu>
  2236. <productMenu id="volume"
  2237. type="11" >
  2238. </productMenu>
  2239. <productMenu id="battery"
  2240. type="1" >
  2241. </productMenu>
  2242. <productID id="3134"
  2243. />
  2244. <productGroupable type="0"
  2245. />
  2246. </product>
  2247. <product id="50C"
  2248. name="50C"
  2249. series="50"
  2250. latestVersion="1.4.3"
  2251. show = "1" >
  2252. <productMenu id="protocol"
  2253. type="2" >
  2254. </productMenu>
  2255. <productMenu id="ota"
  2256. type="0" >
  2257. </productMenu>
  2258. <productMenu id="wa"
  2259. type="1" >
  2260. </productMenu>
  2261. <productMenu id="sip"
  2262. type="1" >
  2263. </productMenu>
  2264. <productMenu id="meshIntercom"
  2265. type="30" >
  2266. <productMenuType version="1.1.1"
  2267. type="20"
  2268. />
  2269. </productMenu>
  2270. <productMenu id="meshIntercom+"
  2271. type="3"
  2272. url="2" >
  2273. <productMenuType version="1.3.9"
  2274. type="2"
  2275. />
  2276. <productMenuURL version="1.1.1"
  2277. url="0"
  2278. />
  2279. </productMenu>
  2280. <productMenu id="waveIntercom"
  2281. type="1" >
  2282. <productMenuType version="1.2.9"
  2283. type="0"
  2284. />
  2285. </productMenu>
  2286. <productMenu id="bluetoothIntercom"
  2287. type="1" >
  2288. </productMenu>
  2289. <productMenu id="phone"
  2290. type="1" >
  2291. </productMenu>
  2292. <productMenu id="music"
  2293. type="1" >
  2294. </productMenu>
  2295. <productMenu id="fmradio"
  2296. type="1" >
  2297. </productMenu>
  2298. <productMenu id="deviceSetting"
  2299. type="1"
  2300. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2301. <productMenuURL version="1.3.9"
  2302. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2303. />
  2304. <productMenuURL version="1.1.1"
  2305. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2306. />
  2307. <productMenuURL version="1.0.1"
  2308. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2309. />
  2310. </productMenu>
  2311. <productMenu id="quickGuide"
  2312. type="0"
  2313. url=""
  2314. size="344KB" >
  2315. </productMenu>
  2316. <productMenu id="userGuide"
  2317. type="1"
  2318. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2319. size="3.41MB" >
  2320. </productMenu>
  2321. <productMenu id="connectGuide"
  2322. type="1"
  2323. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2324. size="1.12MB" >
  2325. </productMenu>
  2326. <productMenu id="volume"
  2327. type="11" >
  2328. </productMenu>
  2329. <productMenu id="battery"
  2330. type="1" >
  2331. </productMenu>
  2332. <productID id="3232"
  2333. />
  2334. <productGroupable type="0"
  2335. />
  2336. </product>
  2337. <product id="PHANTOMXB"
  2338. name="PHANTOM XB"
  2339. series="Helmet"
  2340. latestVersion="1.2.9"
  2341. latestVersionVoicePrompt="1.6"
  2342. show = "-1" >
  2343. <productMenu id="protocol"
  2344. type="2" >
  2345. </productMenu>
  2346. <productMenu id="ota"
  2347. type="2" >
  2348. <otaLanguages>
  2349. <otaLanguage
  2350. id="0"
  2351. name="English"
  2352. package="0"
  2353. />
  2354. <otaLanguage
  2355. id="0"
  2356. name="French"
  2357. package="1"
  2358. />
  2359. <otaLanguage
  2360. id="0"
  2361. name="Spanish"
  2362. package="2"
  2363. />
  2364. <otaLanguage
  2365. id="0"
  2366. name="Italian"
  2367. package="3"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="German"
  2372. package="4"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Dutch"
  2377. package="5"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Russian"
  2382. package="6"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="Chinese"
  2387. package="7"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Korean"
  2392. package="8"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Japanese"
  2397. package="9"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Finnish"
  2402. package="10"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Polish"
  2407. package="11"
  2408. />
  2409. </otaLanguages>
  2410. <otaPackages>
  2411. <package
  2412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2413. size="5183988"
  2414. />
  2415. <package
  2416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2417. size="5183988"
  2418. />
  2419. <package
  2420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2421. size="5183988"
  2422. />
  2423. <package
  2424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2425. size="5183988"
  2426. />
  2427. <package
  2428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2429. size="5183988"
  2430. />
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2457. size="5183988"
  2458. />
  2459. </otaPackages>
  2460. </productMenu>
  2461. <productMenu id="wa"
  2462. type="0" >
  2463. </productMenu>
  2464. <productMenu id="led"
  2465. type="5" >
  2466. </productMenu>
  2467. <productMenu id="led+"
  2468. type="2"
  2469. url="1" >
  2470. </productMenu>
  2471. <productMenu id="meshIntercom"
  2472. type="30" >
  2473. </productMenu>
  2474. <productMenu id="meshIntercom+"
  2475. type="3"
  2476. url="2" >
  2477. </productMenu>
  2478. <productMenu id="waveIntercom"
  2479. type="1" >
  2480. </productMenu>
  2481. <productMenu id="fmradio"
  2482. type="0" >
  2483. </productMenu>
  2484. <productMenu id="phone"
  2485. type="1" >
  2486. </productMenu>
  2487. <productMenu id="music"
  2488. type="1" >
  2489. </productMenu>
  2490. <productMenu id="musicSharing"
  2491. type="0" >
  2492. </productMenu>
  2493. <productMenu id="deviceSetting"
  2494. type="1"
  2495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2496. <productMenuURL version="1.2.4"
  2497. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2498. />
  2499. </productMenu>
  2500. <productMenu id="quickGuide"
  2501. type="0"
  2502. url=""
  2503. size="1.12MB" >
  2504. </productMenu>
  2505. <productMenu id="userGuide"
  2506. type="1"
  2507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2508. size="2.0MB" >
  2509. </productMenu>
  2510. <productMenu id="videoGuide"
  2511. type="0"
  2512. url=""
  2513. size="3.41MB" >
  2514. </productMenu>
  2515. <productMenu id="volume"
  2516. type="16" >
  2517. </productMenu>
  2518. <productMenu id="volume+"
  2519. type="2"
  2520. url="0x6004" >
  2521. </productMenu>
  2522. <productMenu id="battery"
  2523. type="1" >
  2524. </productMenu>
  2525. <productID id="6A0F"
  2526. />
  2527. <productGroupable type="0"
  2528. />
  2529. </product>
  2530. <product id="PHANTOMXB"
  2531. name="PHANTOM XB"
  2532. series="Helmet"
  2533. latestVersion="1.2.9"
  2534. latestVersionVoicePrompt="1.6"
  2535. show = "-1" >
  2536. <productMenu id="protocol"
  2537. type="2" >
  2538. </productMenu>
  2539. <productMenu id="ota"
  2540. type="2" >
  2541. <otaLanguages>
  2542. <otaLanguage
  2543. id="0"
  2544. name="English"
  2545. package="0"
  2546. />
  2547. <otaLanguage
  2548. id="0"
  2549. name="French"
  2550. package="1"
  2551. />
  2552. <otaLanguage
  2553. id="0"
  2554. name="Spanish"
  2555. package="2"
  2556. />
  2557. <otaLanguage
  2558. id="0"
  2559. name="Italian"
  2560. package="3"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="German"
  2565. package="4"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Dutch"
  2570. package="5"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Russian"
  2575. package="6"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="Chinese"
  2580. package="7"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Korean"
  2585. package="8"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Japanese"
  2590. package="9"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Finnish"
  2595. package="10"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Polish"
  2600. package="11"
  2601. />
  2602. </otaLanguages>
  2603. <otaPackages>
  2604. <package
  2605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2606. size="5183988"
  2607. />
  2608. <package
  2609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2610. size="5183988"
  2611. />
  2612. <package
  2613. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2614. size="5183988"
  2615. />
  2616. <package
  2617. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2618. size="5183988"
  2619. />
  2620. <package
  2621. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2622. size="5183988"
  2623. />
  2624. <package
  2625. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2626. size="5183988"
  2627. />
  2628. <package
  2629. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2630. size="5183988"
  2631. />
  2632. <package
  2633. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2634. size="5183988"
  2635. />
  2636. <package
  2637. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2638. size="5183988"
  2639. />
  2640. <package
  2641. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2642. size="5183988"
  2643. />
  2644. <package
  2645. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2646. size="5183988"
  2647. />
  2648. <package
  2649. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2650. size="5183988"
  2651. />
  2652. </otaPackages>
  2653. </productMenu>
  2654. <productMenu id="wa"
  2655. type="0" >
  2656. </productMenu>
  2657. <productMenu id="led"
  2658. type="5" >
  2659. </productMenu>
  2660. <productMenu id="led+"
  2661. type="2"
  2662. url="1" >
  2663. </productMenu>
  2664. <productMenu id="meshIntercom"
  2665. type="30" >
  2666. </productMenu>
  2667. <productMenu id="meshIntercom+"
  2668. type="3"
  2669. url="2" >
  2670. </productMenu>
  2671. <productMenu id="waveIntercom"
  2672. type="1" >
  2673. </productMenu>
  2674. <productMenu id="fmradio"
  2675. type="0" >
  2676. </productMenu>
  2677. <productMenu id="phone"
  2678. type="1" >
  2679. </productMenu>
  2680. <productMenu id="music"
  2681. type="1" >
  2682. </productMenu>
  2683. <productMenu id="musicSharing"
  2684. type="0" >
  2685. </productMenu>
  2686. <productMenu id="deviceSetting"
  2687. type="1"
  2688. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2689. <productMenuURL version="1.2.4"
  2690. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2691. />
  2692. <productMenuURL version="1.2.1"
  2693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2694. />
  2695. </productMenu>
  2696. <productMenu id="quickGuide"
  2697. type="0"
  2698. url=""
  2699. size="1.12MB" >
  2700. </productMenu>
  2701. <productMenu id="userGuide"
  2702. type="1"
  2703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2704. size="2.0MB" >
  2705. </productMenu>
  2706. <productMenu id="videoGuide"
  2707. type="0"
  2708. url=""
  2709. size="3.41MB" >
  2710. </productMenu>
  2711. <productMenu id="volume"
  2712. type="16" >
  2713. </productMenu>
  2714. <productMenu id="volume+"
  2715. type="2"
  2716. url="0x6004" >
  2717. </productMenu>
  2718. <productMenu id="battery"
  2719. type="1" >
  2720. </productMenu>
  2721. <productID id="6A0C"
  2722. />
  2723. <productGroupable type="0"
  2724. />
  2725. </product>
  2726. <product id="PHANTOMKV"
  2727. name="PHANTOM KV"
  2728. series="Helmet"
  2729. latestVersion="1.2.10"
  2730. latestVersionVoicePrompt="1.7"
  2731. show = "-1" >
  2732. <productMenu id="protocol"
  2733. type="2" >
  2734. </productMenu>
  2735. <productMenu id="ota"
  2736. type="2" >
  2737. <otaLanguages>
  2738. <otaLanguage
  2739. id="0"
  2740. name="English"
  2741. package="0"
  2742. />
  2743. <otaLanguage
  2744. id="0"
  2745. name="French"
  2746. package="1"
  2747. />
  2748. <otaLanguage
  2749. id="0"
  2750. name="Spanish"
  2751. package="2"
  2752. />
  2753. <otaLanguage
  2754. id="0"
  2755. name="Italian"
  2756. package="3"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="German"
  2761. package="4"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Dutch"
  2766. package="5"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Russian"
  2771. package="6"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="Chinese"
  2776. package="7"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Korean"
  2781. package="8"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Japanese"
  2786. package="9"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Finnish"
  2791. package="10"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Polish"
  2796. package="11"
  2797. />
  2798. </otaLanguages>
  2799. <otaPackages>
  2800. <package
  2801. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2802. size="5183988"
  2803. />
  2804. <package
  2805. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2806. size="5183988"
  2807. />
  2808. <package
  2809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2810. size="5183988"
  2811. />
  2812. <package
  2813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2814. size="5183988"
  2815. />
  2816. <package
  2817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2818. size="5183988"
  2819. />
  2820. <package
  2821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2822. size="5183988"
  2823. />
  2824. <package
  2825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2826. size="5183988"
  2827. />
  2828. <package
  2829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2830. size="5183988"
  2831. />
  2832. <package
  2833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2834. size="5183988"
  2835. />
  2836. <package
  2837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2838. size="5183988"
  2839. />
  2840. <package
  2841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2842. size="5183988"
  2843. />
  2844. <package
  2845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2846. size="5183988"
  2847. />
  2848. </otaPackages>
  2849. </productMenu>
  2850. <productMenu id="wa"
  2851. type="0" >
  2852. </productMenu>
  2853. <productMenu id="led"
  2854. type="5" >
  2855. </productMenu>
  2856. <productMenu id="led+"
  2857. type="2"
  2858. url="1" >
  2859. </productMenu>
  2860. <productMenu id="meshIntercom"
  2861. type="30" >
  2862. </productMenu>
  2863. <productMenu id="meshIntercom+"
  2864. type="3"
  2865. url="2" >
  2866. </productMenu>
  2867. <productMenu id="waveIntercom"
  2868. type="1" >
  2869. </productMenu>
  2870. <productMenu id="fmradio"
  2871. type="0" >
  2872. </productMenu>
  2873. <productMenu id="phone"
  2874. type="1" >
  2875. </productMenu>
  2876. <productMenu id="music"
  2877. type="1" >
  2878. </productMenu>
  2879. <productMenu id="musicSharing"
  2880. type="0" >
  2881. </productMenu>
  2882. <productMenu id="deviceSetting"
  2883. type="1"
  2884. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2885. <productMenuURL version="1.2.4"
  2886. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2887. />
  2888. </productMenu>
  2889. <productMenu id="quickGuide"
  2890. type="0"
  2891. url=""
  2892. size="1.12MB" >
  2893. </productMenu>
  2894. <productMenu id="userGuide"
  2895. type="1"
  2896. url=""
  2897. size="2.0MB" >
  2898. </productMenu>
  2899. <productMenu id="videoGuide"
  2900. type="0"
  2901. url=""
  2902. size="3.41MB" >
  2903. </productMenu>
  2904. <productMenu id="volume"
  2905. type="16" >
  2906. </productMenu>
  2907. <productMenu id="volume+"
  2908. type="2"
  2909. url="0x6004" >
  2910. </productMenu>
  2911. <productMenu id="soundMode"
  2912. type="1" >
  2913. </productMenu>
  2914. <productMenu id="battery"
  2915. type="1" >
  2916. </productMenu>
  2917. <productID id="6A13"
  2918. />
  2919. <productGroupable type="0"
  2920. />
  2921. </product>
  2922. <product id="PHANTOMCamera"
  2923. name="PHANTOM Camera"
  2924. series="Helmet"
  2925. latestVersion="1.0.1"
  2926. latestVersionVoicePrompt="0.4"
  2927. show = "-1" >
  2928. <productMenu id="protocol"
  2929. type="2" >
  2930. </productMenu>
  2931. <productMenu id="ota"
  2932. type="3" >
  2933. <otaLanguages>
  2934. <otaLanguage
  2935. id="0"
  2936. name="English"
  2937. package="0"
  2938. />
  2939. <otaLanguage
  2940. id="0"
  2941. name="French"
  2942. package="1"
  2943. />
  2944. <otaLanguage
  2945. id="0"
  2946. name="Spanish"
  2947. package="2"
  2948. />
  2949. <otaLanguage
  2950. id="0"
  2951. name="Italian"
  2952. package="3"
  2953. />
  2954. <otaLanguage
  2955. id="0"
  2956. name="German"
  2957. package="4"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="Dutch"
  2962. package="5"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Russian"
  2967. package="6"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Chinese"
  2972. package="7"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="Korean"
  2977. package="8"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Japanese"
  2982. package="9"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Finnish"
  2987. package="10"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Polish"
  2992. package="11"
  2993. />
  2994. </otaLanguages>
  2995. <otaPackages>
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  3006. size="5183988"
  3007. />
  3008. <package
  3009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3010. size="5183988"
  3011. />
  3012. <package
  3013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3014. size="5183988"
  3015. />
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3042. size="5183988"
  3043. />
  3044. </otaPackages>
  3045. </productMenu>
  3046. <productMenu id="wa"
  3047. type="0" >
  3048. </productMenu>
  3049. <productMenu id="led"
  3050. type="5" >
  3051. </productMenu>
  3052. <productMenu id="led+"
  3053. type="2"
  3054. url="1" >
  3055. </productMenu>
  3056. <productMenu id="meshIntercom"
  3057. type="30" >
  3058. </productMenu>
  3059. <productMenu id="meshIntercom+"
  3060. type="3"
  3061. url="2" >
  3062. </productMenu>
  3063. <productMenu id="waveIntercom"
  3064. type="1" >
  3065. </productMenu>
  3066. <productMenu id="fmradio"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="phone"
  3070. type="1" >
  3071. </productMenu>
  3072. <productMenu id="music"
  3073. type="1" >
  3074. </productMenu>
  3075. <productMenu id="musicSharing"
  3076. type="0" >
  3077. </productMenu>
  3078. <productMenu id="deviceSetting"
  3079. type="1"
  3080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3081. </productMenu>
  3082. <productMenu id="quickGuide"
  3083. type="0"
  3084. url=""
  3085. size="1.12MB" >
  3086. </productMenu>
  3087. <productMenu id="userGuide"
  3088. type="1"
  3089. url=""
  3090. size="2.0MB" >
  3091. </productMenu>
  3092. <productMenu id="videoGuide"
  3093. type="0"
  3094. url=""
  3095. size="3.41MB" >
  3096. </productMenu>
  3097. <productMenu id="volume"
  3098. type="16" >
  3099. </productMenu>
  3100. <productMenu id="battery"
  3101. type="1" >
  3102. </productMenu>
  3103. <productID id="6A10"
  3104. />
  3105. <productGroupable type="0"
  3106. />
  3107. </product>
  3108. <product id="PHANTOMCamera"
  3109. name="PHANTOM Camera"
  3110. series="Helmet"
  3111. latestVersion="1.0.1"
  3112. latestVersionVoicePrompt="0.4"
  3113. show = "-1" >
  3114. <productMenu id="protocol"
  3115. type="2" >
  3116. </productMenu>
  3117. <productMenu id="ota"
  3118. type="3" >
  3119. <otaLanguages>
  3120. <otaLanguage
  3121. id="0"
  3122. name="English"
  3123. package="0"
  3124. />
  3125. <otaLanguage
  3126. id="0"
  3127. name="French"
  3128. package="1"
  3129. />
  3130. <otaLanguage
  3131. id="0"
  3132. name="Spanish"
  3133. package="2"
  3134. />
  3135. <otaLanguage
  3136. id="0"
  3137. name="Italian"
  3138. package="3"
  3139. />
  3140. <otaLanguage
  3141. id="0"
  3142. name="German"
  3143. package="4"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="Dutch"
  3148. package="5"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Russian"
  3153. package="6"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Chinese"
  3158. package="7"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="Korean"
  3163. package="8"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Japanese"
  3168. package="9"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Finnish"
  3173. package="10"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Polish"
  3178. package="11"
  3179. />
  3180. </otaLanguages>
  3181. <otaPackages>
  3182. <package
  3183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3184. size="5183988"
  3185. />
  3186. <package
  3187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3188. size="5183988"
  3189. />
  3190. <package
  3191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3192. size="5183988"
  3193. />
  3194. <package
  3195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3196. size="5183988"
  3197. />
  3198. <package
  3199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3200. size="5183988"
  3201. />
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3228. size="5183988"
  3229. />
  3230. </otaPackages>
  3231. </productMenu>
  3232. <productMenu id="wa"
  3233. type="0" >
  3234. </productMenu>
  3235. <productMenu id="led"
  3236. type="5" >
  3237. </productMenu>
  3238. <productMenu id="led+"
  3239. type="2"
  3240. url="1" >
  3241. </productMenu>
  3242. <productMenu id="meshIntercom"
  3243. type="30" >
  3244. </productMenu>
  3245. <productMenu id="meshIntercom+"
  3246. type="3"
  3247. url="2" >
  3248. </productMenu>
  3249. <productMenu id="waveIntercom"
  3250. type="1" >
  3251. </productMenu>
  3252. <productMenu id="fmradio"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="phone"
  3256. type="1" >
  3257. </productMenu>
  3258. <productMenu id="music"
  3259. type="1" >
  3260. </productMenu>
  3261. <productMenu id="musicSharing"
  3262. type="0" >
  3263. </productMenu>
  3264. <productMenu id="deviceSetting"
  3265. type="1"
  3266. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3267. </productMenu>
  3268. <productMenu id="quickGuide"
  3269. type="0"
  3270. url=""
  3271. size="1.12MB" >
  3272. </productMenu>
  3273. <productMenu id="userGuide"
  3274. type="1"
  3275. url=""
  3276. size="2.0MB" >
  3277. </productMenu>
  3278. <productMenu id="videoGuide"
  3279. type="0"
  3280. url=""
  3281. size="3.41MB" >
  3282. </productMenu>
  3283. <productMenu id="volume"
  3284. type="16" >
  3285. </productMenu>
  3286. <productMenu id="battery"
  3287. type="1" >
  3288. </productMenu>
  3289. <productID id="6A09"
  3290. />
  3291. <productGroupable type="0"
  3292. />
  3293. </product>
  3294. <product id="PHANTOM"
  3295. name="PHANTOM ANC"
  3296. series="Helmet"
  3297. latestVersion="1.2.9"
  3298. latestVersionVoicePrompt="1.7"
  3299. show = "1" >
  3300. <productMenu id="protocol"
  3301. type="2" >
  3302. </productMenu>
  3303. <productMenu id="ota"
  3304. type="2" >
  3305. <productMenuType version="0.6.9"
  3306. type="0"
  3307. />
  3308. <otaLanguages>
  3309. <otaLanguage
  3310. id="0"
  3311. name="English"
  3312. package="0"
  3313. />
  3314. <otaLanguage
  3315. id="0"
  3316. name="French"
  3317. package="1"
  3318. />
  3319. <otaLanguage
  3320. id="0"
  3321. name="Spanish"
  3322. package="2"
  3323. />
  3324. <otaLanguage
  3325. id="0"
  3326. name="Italian"
  3327. package="3"
  3328. />
  3329. <otaLanguage
  3330. id="0"
  3331. name="German"
  3332. package="4"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="Dutch"
  3337. package="5"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Russian"
  3342. package="6"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Chinese"
  3347. package="7"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="Korean"
  3352. package="8"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Japanese"
  3357. package="9"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Finnish"
  3362. package="10"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Polish"
  3367. package="11"
  3368. />
  3369. </otaLanguages>
  3370. <otaPackages>
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3417. size="5183988"
  3418. />
  3419. </otaPackages>
  3420. </productMenu>
  3421. <productMenu id="wa"
  3422. type="0" >
  3423. </productMenu>
  3424. <productMenu id="led"
  3425. type="5" >
  3426. </productMenu>
  3427. <productMenu id="led+"
  3428. type="2"
  3429. url="1" >
  3430. </productMenu>
  3431. <productMenu id="meshIntercom"
  3432. type="30" >
  3433. </productMenu>
  3434. <productMenu id="meshIntercom+"
  3435. type="3"
  3436. url="2" >
  3437. <productMenuURL version="1.0.4"
  3438. url="10"
  3439. />
  3440. </productMenu>
  3441. <productMenu id="waveIntercom"
  3442. type="1" >
  3443. <productMenuType version="1.0.9"
  3444. type="0"
  3445. />
  3446. </productMenu>
  3447. <productMenu id="fmradio"
  3448. type="0" >
  3449. </productMenu>
  3450. <productMenu id="phone"
  3451. type="1" >
  3452. </productMenu>
  3453. <productMenu id="music"
  3454. type="1" >
  3455. </productMenu>
  3456. <productMenu id="musicSharing"
  3457. type="0" >
  3458. </productMenu>
  3459. <productMenu id="deviceSetting"
  3460. type="1"
  3461. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3462. <productMenuURL version="1.2.4"
  3463. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3464. />
  3465. <productMenuURL version="1.2.1"
  3466. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3467. />
  3468. <productMenuURL version="1.1.2"
  3469. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3470. />
  3471. <productMenuURL version="1.0.4"
  3472. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3473. />
  3474. </productMenu>
  3475. <productMenu id="quickGuide"
  3476. type="0"
  3477. url=""
  3478. size="1.12MB" >
  3479. </productMenu>
  3480. <productMenu id="userGuide"
  3481. type="1"
  3482. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3483. size="2.0MB" >
  3484. </productMenu>
  3485. <productMenu id="videoGuide"
  3486. type="0"
  3487. url=""
  3488. size="3.41MB" >
  3489. </productMenu>
  3490. <productMenu id="volume"
  3491. type="16" >
  3492. </productMenu>
  3493. <productMenu id="volume+"
  3494. type="2"
  3495. url="0x6004" >
  3496. </productMenu>
  3497. <productMenu id="soundMode"
  3498. type="1" >
  3499. <productMenuType version="0.9.11"
  3500. type="0"
  3501. />
  3502. </productMenu>
  3503. <productMenu id="battery"
  3504. type="1" >
  3505. </productMenu>
  3506. <productID id="6A01"
  3507. />
  3508. <productGroupable type="0"
  3509. />
  3510. </product>
  3511. <product id="PHANTOM"
  3512. name="PHANTOM ANC"
  3513. series="Helmet"
  3514. latestVersion="1.2.9"
  3515. latestVersionVoicePrompt="1.7"
  3516. show = "-1" >
  3517. <productMenu id="protocol"
  3518. type="2" >
  3519. </productMenu>
  3520. <productMenu id="ota"
  3521. type="2" >
  3522. <otaLanguages>
  3523. <otaLanguage
  3524. id="0"
  3525. name="English"
  3526. package="0"
  3527. />
  3528. <otaLanguage
  3529. id="0"
  3530. name="French"
  3531. package="1"
  3532. />
  3533. <otaLanguage
  3534. id="0"
  3535. name="Spanish"
  3536. package="2"
  3537. />
  3538. <otaLanguage
  3539. id="0"
  3540. name="Italian"
  3541. package="3"
  3542. />
  3543. <otaLanguage
  3544. id="0"
  3545. name="German"
  3546. package="4"
  3547. />
  3548. <otaLanguage
  3549. id="0"
  3550. name="Dutch"
  3551. package="5"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="Russian"
  3556. package="6"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Chinese"
  3561. package="7"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Korean"
  3566. package="8"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="Japanese"
  3571. package="9"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Finnish"
  3576. package="10"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Polish"
  3581. package="11"
  3582. />
  3583. </otaLanguages>
  3584. <otaPackages>
  3585. <package
  3586. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3587. size="5183988"
  3588. />
  3589. <package
  3590. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3591. size="5183988"
  3592. />
  3593. <package
  3594. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3595. size="5183988"
  3596. />
  3597. <package
  3598. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3599. size="5183988"
  3600. />
  3601. <package
  3602. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3603. size="5183988"
  3604. />
  3605. <package
  3606. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3607. size="5183988"
  3608. />
  3609. <package
  3610. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3623. size="5183988"
  3624. />
  3625. <package
  3626. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3627. size="5183988"
  3628. />
  3629. <package
  3630. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3631. size="5183988"
  3632. />
  3633. </otaPackages>
  3634. </productMenu>
  3635. <productMenu id="led"
  3636. type="5" >
  3637. </productMenu>
  3638. <productMenu id="led+"
  3639. type="2"
  3640. url="1" >
  3641. </productMenu>
  3642. <productMenu id="meshIntercom"
  3643. type="30" >
  3644. </productMenu>
  3645. <productMenu id="meshIntercom+"
  3646. type="3"
  3647. url="2" >
  3648. </productMenu>
  3649. <productMenu id="waveIntercom"
  3650. type="1" >
  3651. </productMenu>
  3652. <productMenu id="fmradio"
  3653. type="0" >
  3654. </productMenu>
  3655. <productMenu id="phone"
  3656. type="1" >
  3657. </productMenu>
  3658. <productMenu id="music"
  3659. type="1" >
  3660. </productMenu>
  3661. <productMenu id="musicSharing"
  3662. type="0" >
  3663. </productMenu>
  3664. <productMenu id="deviceSetting"
  3665. type="1"
  3666. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3667. <productMenuURL version="1.2.4"
  3668. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3669. />
  3670. </productMenu>
  3671. <productMenu id="quickGuide"
  3672. type="0"
  3673. url=""
  3674. size="1.12MB" >
  3675. </productMenu>
  3676. <productMenu id="userGuide"
  3677. type="1"
  3678. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3679. size="2.0MB" >
  3680. </productMenu>
  3681. <productMenu id="videoGuide"
  3682. type="0"
  3683. url=""
  3684. size="3.41MB" >
  3685. </productMenu>
  3686. <productMenu id="volume"
  3687. type="16" >
  3688. </productMenu>
  3689. <productMenu id="volume+"
  3690. type="2"
  3691. url="0x6004" >
  3692. </productMenu>
  3693. <productMenu id="soundMode"
  3694. type="1" >
  3695. </productMenu>
  3696. <productMenu id="battery"
  3697. type="1" >
  3698. </productMenu>
  3699. <productID id="6A19"
  3700. />
  3701. <productGroupable type="0"
  3702. />
  3703. </product>
  3704. <product id="PHANTOM"
  3705. name="PHANTOM"
  3706. series="Helmet"
  3707. latestVersion="1.2.9"
  3708. latestVersionVoicePrompt="1.7"
  3709. show = "-1" >
  3710. <productMenu id="protocol"
  3711. type="2" >
  3712. </productMenu>
  3713. <productMenu id="ota"
  3714. type="2" >
  3715. <otaLanguages>
  3716. <otaLanguage
  3717. id="0"
  3718. name="English"
  3719. package="0"
  3720. />
  3721. <otaLanguage
  3722. id="0"
  3723. name="French"
  3724. package="1"
  3725. />
  3726. <otaLanguage
  3727. id="0"
  3728. name="Spanish"
  3729. package="2"
  3730. />
  3731. <otaLanguage
  3732. id="0"
  3733. name="Italian"
  3734. package="3"
  3735. />
  3736. <otaLanguage
  3737. id="0"
  3738. name="German"
  3739. package="4"
  3740. />
  3741. <otaLanguage
  3742. id="0"
  3743. name="Dutch"
  3744. package="5"
  3745. />
  3746. <otaLanguage
  3747. id="0"
  3748. name="Russian"
  3749. package="6"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="Chinese"
  3754. package="7"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Korean"
  3759. package="8"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Japanese"
  3764. package="9"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="Finnish"
  3769. package="10"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Polish"
  3774. package="11"
  3775. />
  3776. </otaLanguages>
  3777. <otaPackages>
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3800. size="5183988"
  3801. />
  3802. <package
  3803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3804. size="5183988"
  3805. />
  3806. <package
  3807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3808. size="5183988"
  3809. />
  3810. <package
  3811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3812. size="5183988"
  3813. />
  3814. <package
  3815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3816. size="5183988"
  3817. />
  3818. <package
  3819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3820. size="5183988"
  3821. />
  3822. <package
  3823. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3824. size="5183988"
  3825. />
  3826. </otaPackages>
  3827. </productMenu>
  3828. <productMenu id="wa"
  3829. type="0" >
  3830. </productMenu>
  3831. <productMenu id="led"
  3832. type="5" >
  3833. </productMenu>
  3834. <productMenu id="led+"
  3835. type="2"
  3836. url="1" >
  3837. </productMenu>
  3838. <productMenu id="meshIntercom"
  3839. type="30" >
  3840. </productMenu>
  3841. <productMenu id="meshIntercom+"
  3842. type="3"
  3843. url="2" >
  3844. </productMenu>
  3845. <productMenu id="waveIntercom"
  3846. type="1" >
  3847. </productMenu>
  3848. <productMenu id="fmradio"
  3849. type="0" >
  3850. </productMenu>
  3851. <productMenu id="phone"
  3852. type="1" >
  3853. </productMenu>
  3854. <productMenu id="music"
  3855. type="1" >
  3856. </productMenu>
  3857. <productMenu id="musicSharing"
  3858. type="0" >
  3859. </productMenu>
  3860. <productMenu id="deviceSetting"
  3861. type="1"
  3862. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3863. <productMenuURL version="1.2.4"
  3864. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3865. />
  3866. </productMenu>
  3867. <productMenu id="quickGuide"
  3868. type="0"
  3869. url=""
  3870. size="1.52MB" >
  3871. </productMenu>
  3872. <productMenu id="userGuide"
  3873. type="1"
  3874. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3875. size="2.01MB" >
  3876. </productMenu>
  3877. <productMenu id="videoGuide"
  3878. type="0"
  3879. url=""
  3880. size="3.46MB" >
  3881. </productMenu>
  3882. <productMenu id="connectGuide"
  3883. type="1"
  3884. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3885. size="1.1MB" >
  3886. </productMenu>
  3887. <productMenu id="volume"
  3888. type="16" >
  3889. </productMenu>
  3890. <productMenu id="volume+"
  3891. type="2"
  3892. url="0x6004" >
  3893. </productMenu>
  3894. <productMenu id="battery"
  3895. type="1" >
  3896. </productMenu>
  3897. <productID id="6A0E"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="PHANTOM"
  3903. name="PHANTOM"
  3904. series="Helmet"
  3905. latestVersion="1.2.9"
  3906. latestVersionVoicePrompt="1.7"
  3907. show = "1" >
  3908. <productMenu id="protocol"
  3909. type="2" >
  3910. </productMenu>
  3911. <productMenu id="ota"
  3912. type="2" >
  3913. <otaLanguages>
  3914. <otaLanguage
  3915. id="0"
  3916. name="English"
  3917. package="0"
  3918. />
  3919. <otaLanguage
  3920. id="0"
  3921. name="French"
  3922. package="1"
  3923. />
  3924. <otaLanguage
  3925. id="0"
  3926. name="Spanish"
  3927. package="2"
  3928. />
  3929. <otaLanguage
  3930. id="0"
  3931. name="Italian"
  3932. package="3"
  3933. />
  3934. <otaLanguage
  3935. id="0"
  3936. name="German"
  3937. package="4"
  3938. />
  3939. <otaLanguage
  3940. id="0"
  3941. name="Dutch"
  3942. package="5"
  3943. />
  3944. <otaLanguage
  3945. id="0"
  3946. name="Russian"
  3947. package="6"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="Chinese"
  3952. package="7"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Korean"
  3957. package="8"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Japanese"
  3962. package="9"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="Finnish"
  3967. package="10"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Polish"
  3972. package="11"
  3973. />
  3974. </otaLanguages>
  3975. <otaPackages>
  3976. <package
  3977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4018. size="5183988"
  4019. />
  4020. <package
  4021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4022. size="5183988"
  4023. />
  4024. </otaPackages>
  4025. </productMenu>
  4026. <productMenu id="wa"
  4027. type="0" >
  4028. </productMenu>
  4029. <productMenu id="led"
  4030. type="5" >
  4031. <productMenuType version="1.0.1"
  4032. type="4"
  4033. />
  4034. </productMenu>
  4035. <productMenu id="led+"
  4036. type="2"
  4037. url="1" >
  4038. <productMenuType version="1.0.1"
  4039. type="-1"
  4040. />
  4041. </productMenu>
  4042. <productMenu id="meshIntercom"
  4043. type="30" >
  4044. </productMenu>
  4045. <productMenu id="meshIntercom+"
  4046. type="3"
  4047. url="2" >
  4048. <productMenuURL version="1.0.4"
  4049. url="10"
  4050. />
  4051. </productMenu>
  4052. <productMenu id="waveIntercom"
  4053. type="1" >
  4054. <productMenuType version="1.0.9"
  4055. type="0"
  4056. />
  4057. </productMenu>
  4058. <productMenu id="fmradio"
  4059. type="0" >
  4060. </productMenu>
  4061. <productMenu id="phone"
  4062. type="1" >
  4063. </productMenu>
  4064. <productMenu id="music"
  4065. type="1" >
  4066. </productMenu>
  4067. <productMenu id="musicSharing"
  4068. type="0" >
  4069. </productMenu>
  4070. <productMenu id="deviceSetting"
  4071. type="1"
  4072. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4073. <productMenuURL version="1.2.4"
  4074. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4075. />
  4076. <productMenuURL version="1.2.1"
  4077. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4078. />
  4079. <productMenuURL version="1.0.4"
  4080. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4081. />
  4082. <productMenuURL version="1.0.1"
  4083. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4084. />
  4085. </productMenu>
  4086. <productMenu id="quickGuide"
  4087. type="0"
  4088. url=""
  4089. size="1.12MB" >
  4090. </productMenu>
  4091. <productMenu id="userGuide"
  4092. type="1"
  4093. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4094. size="2.0MB" >
  4095. </productMenu>
  4096. <productMenu id="videoGuide"
  4097. type="0"
  4098. url=""
  4099. size="3.41MB" >
  4100. </productMenu>
  4101. <productMenu id="connectGuide"
  4102. type="1"
  4103. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4104. size="1.12MB" >
  4105. </productMenu>
  4106. <productMenu id="volume"
  4107. type="16" >
  4108. <productMenuType version="1.0"
  4109. type="13"
  4110. />
  4111. </productMenu>
  4112. <productMenu id="volume+"
  4113. type="2"
  4114. url="0x6004" >
  4115. </productMenu>
  4116. <productMenu id="battery"
  4117. type="1" >
  4118. </productMenu>
  4119. <productID id="6A04"
  4120. />
  4121. <productGroupable type="0"
  4122. />
  4123. </product>
  4124. <product id="PHANTOMEasyLink"
  4125. name="PHANTOM EasyLink"
  4126. series="Helmet"
  4127. latestVersion="0.1"
  4128. latestVersionVoicePrompt="1.2"
  4129. show = "-1" >
  4130. <productMenu id="protocol"
  4131. type="2" >
  4132. </productMenu>
  4133. <productMenu id="ota"
  4134. type="0" >
  4135. <otaLanguages>
  4136. <otaLanguage
  4137. id="0"
  4138. name="English"
  4139. package="0"
  4140. />
  4141. <otaLanguage
  4142. id="0"
  4143. name="French"
  4144. package="1"
  4145. />
  4146. <otaLanguage
  4147. id="0"
  4148. name="Spanish"
  4149. package="2"
  4150. />
  4151. <otaLanguage
  4152. id="0"
  4153. name="Italian"
  4154. package="3"
  4155. />
  4156. <otaLanguage
  4157. id="0"
  4158. name="German"
  4159. package="4"
  4160. />
  4161. <otaLanguage
  4162. id="0"
  4163. name="Dutch"
  4164. package="5"
  4165. />
  4166. <otaLanguage
  4167. id="0"
  4168. name="Russian"
  4169. package="6"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="Chinese"
  4174. package="7"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Korean"
  4179. package="8"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Japanese"
  4184. package="9"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="Finnish"
  4189. package="10"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Polish"
  4194. package="11"
  4195. />
  4196. </otaLanguages>
  4197. <otaPackages>
  4198. <package
  4199. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4200. size="5183988"
  4201. />
  4202. <package
  4203. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4204. size="5183988"
  4205. />
  4206. <package
  4207. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4208. size="5183988"
  4209. />
  4210. <package
  4211. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4236. size="5183988"
  4237. />
  4238. <package
  4239. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4240. size="5183988"
  4241. />
  4242. <package
  4243. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4244. size="5183988"
  4245. />
  4246. </otaPackages>
  4247. </productMenu>
  4248. <productMenu id="meshIntercom"
  4249. type="30" >
  4250. </productMenu>
  4251. <productMenu id="meshIntercom+"
  4252. type="3"
  4253. url="2" >
  4254. </productMenu>
  4255. <productMenu id="waveIntercom"
  4256. type="1" >
  4257. </productMenu>
  4258. <productMenu id="fmradio"
  4259. type="0" >
  4260. </productMenu>
  4261. <productMenu id="phone"
  4262. type="1" >
  4263. </productMenu>
  4264. <productMenu id="music"
  4265. type="1" >
  4266. </productMenu>
  4267. <productMenu id="musicSharing"
  4268. type="0" >
  4269. </productMenu>
  4270. <productMenu id="deviceSetting"
  4271. type="1"
  4272. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4273. </productMenu>
  4274. <productMenu id="quickGuide"
  4275. type="0"
  4276. url=""
  4277. size="1.12MB" >
  4278. </productMenu>
  4279. <productMenu id="userGuide"
  4280. type="1"
  4281. url=""
  4282. size="2.0MB" >
  4283. </productMenu>
  4284. <productMenu id="videoGuide"
  4285. type="0"
  4286. url=""
  4287. size="3.41MB" >
  4288. </productMenu>
  4289. <productMenu id="connectGuide"
  4290. type="0"
  4291. url=""
  4292. size="1.12MB" >
  4293. </productMenu>
  4294. <productMenu id="volume"
  4295. type="16" >
  4296. </productMenu>
  4297. <productMenu id="battery"
  4298. type="1" >
  4299. </productMenu>
  4300. <productID id="6A18"
  4301. />
  4302. <productGroupable type="0"
  4303. />
  4304. </product>
  4305. <product id="SPIDERXSlim"
  4306. name="SPIDER X Slim"
  4307. series="SPIDER"
  4308. latestVersion="1.0"
  4309. latestVersionVoicePrompt="1.7"
  4310. show = "1" >
  4311. <productMenu id="protocol"
  4312. type="2" >
  4313. </productMenu>
  4314. <productMenu id="ota"
  4315. type="2" >
  4316. <otaLanguages>
  4317. <otaLanguage
  4318. id="0"
  4319. name="English"
  4320. package="0"
  4321. />
  4322. <otaLanguage
  4323. id="0"
  4324. name="French"
  4325. package="1"
  4326. />
  4327. <otaLanguage
  4328. id="0"
  4329. name="Spanish"
  4330. package="2"
  4331. />
  4332. <otaLanguage
  4333. id="0"
  4334. name="Italian"
  4335. package="3"
  4336. />
  4337. <otaLanguage
  4338. id="0"
  4339. name="German"
  4340. package="4"
  4341. />
  4342. <otaLanguage
  4343. id="0"
  4344. name="Dutch"
  4345. package="5"
  4346. />
  4347. <otaLanguage
  4348. id="0"
  4349. name="Russian"
  4350. package="6"
  4351. />
  4352. <otaLanguage
  4353. id="0"
  4354. name="Chinese"
  4355. package="7"
  4356. />
  4357. <otaLanguage
  4358. id="0"
  4359. name="Korean"
  4360. package="8"
  4361. />
  4362. <otaLanguage
  4363. id="0"
  4364. name="Japanese"
  4365. package="9"
  4366. />
  4367. <otaLanguage
  4368. id="0"
  4369. name="Finnish"
  4370. package="10"
  4371. />
  4372. <otaLanguage
  4373. id="0"
  4374. name="Polish"
  4375. package="11"
  4376. />
  4377. </otaLanguages>
  4378. <otaPackages>
  4379. <package
  4380. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4381. size="5183988"
  4382. />
  4383. <package
  4384. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4385. size="5183988"
  4386. />
  4387. <package
  4388. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4389. size="5183988"
  4390. />
  4391. <package
  4392. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4425. size="5183988"
  4426. />
  4427. </otaPackages>
  4428. </productMenu>
  4429. <productMenu id="meshIntercom"
  4430. type="30" >
  4431. </productMenu>
  4432. <productMenu id="meshIntercom+"
  4433. type="3"
  4434. url="2" >
  4435. </productMenu>
  4436. <productMenu id="waveIntercom"
  4437. type="1" >
  4438. </productMenu>
  4439. <productMenu id="fmradio"
  4440. type="1"
  4441. url="1" >
  4442. </productMenu>
  4443. <productMenu id="phone"
  4444. type="1" >
  4445. </productMenu>
  4446. <productMenu id="music"
  4447. type="1" >
  4448. </productMenu>
  4449. <productMenu id="musicSharing"
  4450. type="0" >
  4451. </productMenu>
  4452. <productMenu id="deviceSetting"
  4453. type="1"
  4454. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4455. </productMenu>
  4456. <productMenu id="quickGuide"
  4457. type="0"
  4458. url=""
  4459. size="1.12MB" >
  4460. </productMenu>
  4461. <productMenu id="userGuide"
  4462. type="1"
  4463. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4464. size="2.0MB" >
  4465. </productMenu>
  4466. <productMenu id="videoGuide"
  4467. type="0"
  4468. url=""
  4469. size="3.41MB" >
  4470. </productMenu>
  4471. <productMenu id="volume"
  4472. type="16" >
  4473. </productMenu>
  4474. <productMenu id="volume+"
  4475. type="2"
  4476. url="0x6004" >
  4477. </productMenu>
  4478. <productMenu id="appearance"
  4479. type="1"
  4480. url="2|white,silver,chrome,black" >
  4481. </productMenu>
  4482. <productMenu id="battery"
  4483. type="1" >
  4484. </productMenu>
  4485. <productID id="6A07"
  4486. />
  4487. <productGroupable type="0"
  4488. />
  4489. </product>
  4490. <product id="XFITM"
  4491. name="X-FIT M"
  4492. series="SPIDER"
  4493. latestVersion="0.1.11"
  4494. latestVersionVoicePrompt="1.1"
  4495. show = "-1" >
  4496. <productMenu id="protocol"
  4497. type="2" >
  4498. </productMenu>
  4499. <productMenu id="ota"
  4500. type="0" >
  4501. <otaLanguages>
  4502. <otaLanguage
  4503. id="0"
  4504. name="English"
  4505. package="0"
  4506. />
  4507. <otaLanguage
  4508. id="0"
  4509. name="French"
  4510. package="1"
  4511. />
  4512. <otaLanguage
  4513. id="0"
  4514. name="Spanish"
  4515. package="2"
  4516. />
  4517. <otaLanguage
  4518. id="0"
  4519. name="Italian"
  4520. package="3"
  4521. />
  4522. <otaLanguage
  4523. id="0"
  4524. name="German"
  4525. package="4"
  4526. />
  4527. <otaLanguage
  4528. id="0"
  4529. name="Dutch"
  4530. package="5"
  4531. />
  4532. <otaLanguage
  4533. id="0"
  4534. name="Russian"
  4535. package="6"
  4536. />
  4537. <otaLanguage
  4538. id="0"
  4539. name="Chinese"
  4540. package="7"
  4541. />
  4542. <otaLanguage
  4543. id="0"
  4544. name="Korean"
  4545. package="8"
  4546. />
  4547. <otaLanguage
  4548. id="0"
  4549. name="Japanese"
  4550. package="9"
  4551. />
  4552. <otaLanguage
  4553. id="0"
  4554. name="Finnish"
  4555. package="10"
  4556. />
  4557. <otaLanguage
  4558. id="0"
  4559. name="Polish"
  4560. package="11"
  4561. />
  4562. </otaLanguages>
  4563. <otaPackages>
  4564. <package
  4565. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4566. size="5183988"
  4567. />
  4568. <package
  4569. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4570. size="5183988"
  4571. />
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4602. size="5183988"
  4603. />
  4604. <package
  4605. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4606. size="5183988"
  4607. />
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4610. size="5183988"
  4611. />
  4612. </otaPackages>
  4613. </productMenu>
  4614. <productMenu id="meshIntercom"
  4615. type="30" >
  4616. </productMenu>
  4617. <productMenu id="meshIntercom+"
  4618. type="3"
  4619. url="2" >
  4620. </productMenu>
  4621. <productMenu id="waveIntercom"
  4622. type="1" >
  4623. </productMenu>
  4624. <productMenu id="fmradio"
  4625. type="1"
  4626. url="1" >
  4627. </productMenu>
  4628. <productMenu id="phone"
  4629. type="1" >
  4630. </productMenu>
  4631. <productMenu id="music"
  4632. type="1" >
  4633. </productMenu>
  4634. <productMenu id="musicSharing"
  4635. type="0" >
  4636. </productMenu>
  4637. <productMenu id="deviceSetting"
  4638. type="1"
  4639. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4640. </productMenu>
  4641. <productMenu id="quickGuide"
  4642. type="0"
  4643. url=""
  4644. size="1.12MB" >
  4645. </productMenu>
  4646. <productMenu id="userGuide"
  4647. type="1"
  4648. url=""
  4649. size="2.0MB" >
  4650. </productMenu>
  4651. <productMenu id="videoGuide"
  4652. type="0"
  4653. url=""
  4654. size="3.41MB" >
  4655. </productMenu>
  4656. <productMenu id="volume"
  4657. type="16" >
  4658. </productMenu>
  4659. <productMenu id="volume+"
  4660. type="2"
  4661. url="0x6004" >
  4662. </productMenu>
  4663. <productMenu id="battery"
  4664. type="1" >
  4665. </productMenu>
  4666. <productID id="6A17"
  4667. />
  4668. <productGroupable type="0"
  4669. />
  4670. </product>
  4671. <product id="VORTEXMESH"
  4672. name="VORTEX MESH"
  4673. series="Helmet"
  4674. latestVersion="0.1.11"
  4675. latestVersionVoicePrompt="1.1"
  4676. show = "-1" >
  4677. <productMenu id="protocol"
  4678. type="2" >
  4679. </productMenu>
  4680. <productMenu id="ota"
  4681. type="0" >
  4682. <otaLanguages>
  4683. <otaLanguage
  4684. id="0"
  4685. name="English"
  4686. package="0"
  4687. />
  4688. <otaLanguage
  4689. id="0"
  4690. name="French"
  4691. package="1"
  4692. />
  4693. <otaLanguage
  4694. id="0"
  4695. name="Spanish"
  4696. package="2"
  4697. />
  4698. <otaLanguage
  4699. id="0"
  4700. name="Italian"
  4701. package="3"
  4702. />
  4703. <otaLanguage
  4704. id="0"
  4705. name="German"
  4706. package="4"
  4707. />
  4708. <otaLanguage
  4709. id="0"
  4710. name="Dutch"
  4711. package="5"
  4712. />
  4713. <otaLanguage
  4714. id="0"
  4715. name="Russian"
  4716. package="6"
  4717. />
  4718. <otaLanguage
  4719. id="0"
  4720. name="Chinese"
  4721. package="7"
  4722. />
  4723. <otaLanguage
  4724. id="0"
  4725. name="Korean"
  4726. package="8"
  4727. />
  4728. <otaLanguage
  4729. id="0"
  4730. name="Japanese"
  4731. package="9"
  4732. />
  4733. <otaLanguage
  4734. id="0"
  4735. name="Finnish"
  4736. package="10"
  4737. />
  4738. <otaLanguage
  4739. id="0"
  4740. name="Polish"
  4741. package="11"
  4742. />
  4743. </otaLanguages>
  4744. <otaPackages>
  4745. <package
  4746. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4747. size="5183988"
  4748. />
  4749. <package
  4750. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4751. size="5183988"
  4752. />
  4753. <package
  4754. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4755. size="5183988"
  4756. />
  4757. <package
  4758. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4759. size="5183988"
  4760. />
  4761. <package
  4762. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4763. size="5183988"
  4764. />
  4765. <package
  4766. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4767. size="5183988"
  4768. />
  4769. <package
  4770. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4771. size="5183988"
  4772. />
  4773. <package
  4774. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4775. size="5183988"
  4776. />
  4777. <package
  4778. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4779. size="5183988"
  4780. />
  4781. <package
  4782. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4783. size="5183988"
  4784. />
  4785. <package
  4786. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4787. size="5183988"
  4788. />
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4791. size="5183988"
  4792. />
  4793. </otaPackages>
  4794. </productMenu>
  4795. <productMenu id="wa"
  4796. type="0" >
  4797. </productMenu>
  4798. <productMenu id="led"
  4799. type="5" >
  4800. </productMenu>
  4801. <productMenu id="led+"
  4802. type="2"
  4803. url="1" >
  4804. </productMenu>
  4805. <productMenu id="meshIntercom"
  4806. type="30" >
  4807. </productMenu>
  4808. <productMenu id="meshIntercom+"
  4809. type="3"
  4810. url="2" >
  4811. </productMenu>
  4812. <productMenu id="waveIntercom"
  4813. type="1" >
  4814. </productMenu>
  4815. <productMenu id="fmradio"
  4816. type="0" >
  4817. </productMenu>
  4818. <productMenu id="phone"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="music"
  4822. type="1" >
  4823. </productMenu>
  4824. <productMenu id="musicSharing"
  4825. type="0" >
  4826. </productMenu>
  4827. <productMenu id="deviceSetting"
  4828. type="1"
  4829. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4830. </productMenu>
  4831. <productMenu id="quickGuide"
  4832. type="0"
  4833. url=""
  4834. size="1.12MB" >
  4835. </productMenu>
  4836. <productMenu id="userGuide"
  4837. type="1"
  4838. url=""
  4839. size="2.0MB" >
  4840. </productMenu>
  4841. <productMenu id="videoGuide"
  4842. type="0"
  4843. url=""
  4844. size="3.41MB" >
  4845. </productMenu>
  4846. <productMenu id="volume"
  4847. type="16" >
  4848. </productMenu>
  4849. <productMenu id="battery"
  4850. type="1" >
  4851. </productMenu>
  4852. <productID id="6A12"
  4853. />
  4854. <productGroupable type="0"
  4855. />
  4856. </product>
  4857. <product id="MeshOn"
  4858. name="Mesh ON"
  4859. series="Other"
  4860. latestVersion="1.0.1"
  4861. latestVersionVoicePrompt="0.7"
  4862. show = "1" >
  4863. <productMenu id="protocol"
  4864. type="2" >
  4865. </productMenu>
  4866. <productMenu id="ota"
  4867. type="2" >
  4868. <otaPackages>
  4869. <package
  4870. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4871. size="2945812"
  4872. />
  4873. </otaPackages>
  4874. </productMenu>
  4875. <productMenu id="meshIntercom+"
  4876. type="3"
  4877. url="4" >
  4878. </productMenu>
  4879. <productMenu id="waveIntercom"
  4880. type="0" >
  4881. </productMenu>
  4882. <productMenu id="phone"
  4883. type="0" >
  4884. </productMenu>
  4885. <productMenu id="music"
  4886. type="0" >
  4887. </productMenu>
  4888. <productMenu id="musicSharing"
  4889. type="0" >
  4890. </productMenu>
  4891. <productMenu id="deviceSetting"
  4892. type="1"
  4893. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4894. </productMenu>
  4895. <productMenu id="userGuide"
  4896. type="1"
  4897. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4898. size="2.0MB" >
  4899. </productMenu>
  4900. <productMenu id="bluetoothHeadset"
  4901. type="1"
  4902. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4903. </productMenu>
  4904. <productMenu id="volume"
  4905. type="0" >
  4906. </productMenu>
  4907. <productMenu id="battery"
  4908. type="1" >
  4909. </productMenu>
  4910. <productID id="684E"
  4911. />
  4912. <productGroupable type="0"
  4913. />
  4914. </product>
  4915. <product id="Impulse"
  4916. name="Impulse"
  4917. series="Helmet"
  4918. latestVersion="1.4.1"
  4919. show = "1" >
  4920. <productMenu id="protocol"
  4921. type="2" >
  4922. </productMenu>
  4923. <productMenu id="alexa"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="ota"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="wa"
  4930. type="24" >
  4931. </productMenu>
  4932. <productMenu id="manager"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="sip"
  4936. type="1" >
  4937. </productMenu>
  4938. <productMenu id="led"
  4939. type="1" >
  4940. <productMenuType version="1.0.1"
  4941. type="2"
  4942. />
  4943. <productMenuType version="1.0"
  4944. type="1"
  4945. />
  4946. </productMenu>
  4947. <productMenu id="meshIntercom"
  4948. type="30" >
  4949. <productMenuType version="1.1.1"
  4950. type="20"
  4951. />
  4952. </productMenu>
  4953. <productMenu id="meshIntercom+"
  4954. type="3"
  4955. url="2" >
  4956. <productMenuType version="1.3.9"
  4957. type="2"
  4958. />
  4959. <productMenuURL version="1.1.1"
  4960. url="0"
  4961. />
  4962. </productMenu>
  4963. <productMenu id="waveIntercom"
  4964. type="1" >
  4965. <productMenuType version="1.3.9"
  4966. type="0"
  4967. />
  4968. </productMenu>
  4969. <productMenu id="bluetoothIntercom"
  4970. type="1" >
  4971. </productMenu>
  4972. <productMenu id="phone"
  4973. type="1" >
  4974. </productMenu>
  4975. <productMenu id="music"
  4976. type="1" >
  4977. </productMenu>
  4978. <productMenu id="fmradio"
  4979. type="1" >
  4980. </productMenu>
  4981. <productMenu id="deviceSetting"
  4982. type="1"
  4983. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4984. <productMenuURL version="1.3.9"
  4985. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4986. />
  4987. <productMenuURL version="1.1.1"
  4988. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4989. />
  4990. <productMenuURL version="1.0.4"
  4991. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4992. />
  4993. </productMenu>
  4994. <productMenu id="quickGuide"
  4995. type="0"
  4996. url=""
  4997. size="344KB" >
  4998. </productMenu>
  4999. <productMenu id="userGuide"
  5000. type="1"
  5001. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5002. size="3.41MB" >
  5003. </productMenu>
  5004. <productMenu id="connectGuide"
  5005. type="1"
  5006. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5007. size="1.12MB" >
  5008. </productMenu>
  5009. <productMenu id="volume"
  5010. type="11" >
  5011. </productMenu>
  5012. <productMenu id="battery"
  5013. type="1" >
  5014. </productMenu>
  5015. <productID id="3148"
  5016. />
  5017. <productGroupable type="0"
  5018. />
  5019. </product>
  5020. <product id="Impulse"
  5021. name="Impulse"
  5022. series="Helmet"
  5023. latestVersion="2.0"
  5024. show = "-1" >
  5025. <productMenu id="protocol"
  5026. type="2" >
  5027. </productMenu>
  5028. <productMenu id="alexa"
  5029. type="0" >
  5030. </productMenu>
  5031. <productMenu id="ota"
  5032. type="0" >
  5033. </productMenu>
  5034. <productMenu id="wa"
  5035. type="8" >
  5036. </productMenu>
  5037. <productMenu id="manager"
  5038. type="0" >
  5039. </productMenu>
  5040. <productMenu id="sip"
  5041. type="1" >
  5042. </productMenu>
  5043. <productMenu id="led"
  5044. type="3" >
  5045. </productMenu>
  5046. <productMenu id="meshIntercom"
  5047. type="20" >
  5048. </productMenu>
  5049. <productMenu id="bluetoothIntercom"
  5050. type="1" >
  5051. </productMenu>
  5052. <productMenu id="phone"
  5053. type="1" >
  5054. </productMenu>
  5055. <productMenu id="music"
  5056. type="1" >
  5057. </productMenu>
  5058. <productMenu id="fmradio"
  5059. type="1" >
  5060. </productMenu>
  5061. <productMenu id="deviceSetting"
  5062. type="1"
  5063. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5064. </productMenu>
  5065. <productMenu id="quickGuide"
  5066. type="1"
  5067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5068. size="344KB" >
  5069. </productMenu>
  5070. <productMenu id="userGuide"
  5071. type="1"
  5072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5073. size="3.41MB" >
  5074. </productMenu>
  5075. <productMenu id="volume"
  5076. type="11" >
  5077. </productMenu>
  5078. <productMenu id="battery"
  5079. type="1" >
  5080. </productMenu>
  5081. <productID id="3221"
  5082. />
  5083. <productGroupable type="0"
  5084. />
  5085. </product>
  5086. <product id="Stryker"
  5087. name="Stryker"
  5088. series="Helmet"
  5089. latestVersion="1.4.1"
  5090. show = "1" >
  5091. <productMenu id="protocol"
  5092. type="2" >
  5093. </productMenu>
  5094. <productMenu id="alexa"
  5095. type="0" >
  5096. </productMenu>
  5097. <productMenu id="ota"
  5098. type="0" >
  5099. </productMenu>
  5100. <productMenu id="wa"
  5101. type="40" >
  5102. </productMenu>
  5103. <productMenu id="manager"
  5104. type="0" >
  5105. </productMenu>
  5106. <productMenu id="sip"
  5107. type="1" >
  5108. </productMenu>
  5109. <productMenu id="led"
  5110. type="1" >
  5111. <productMenuType version="1.0.1"
  5112. type="2"
  5113. />
  5114. <productMenuType version="1.0"
  5115. type="1"
  5116. />
  5117. </productMenu>
  5118. <productMenu id="meshIntercom"
  5119. type="30" >
  5120. <productMenuType version="1.1.1"
  5121. type="20"
  5122. />
  5123. </productMenu>
  5124. <productMenu id="meshIntercom+"
  5125. type="3"
  5126. url="2" >
  5127. <productMenuType version="1.3.9"
  5128. type="2"
  5129. />
  5130. <productMenuURL version="1.1.1"
  5131. url="0"
  5132. />
  5133. </productMenu>
  5134. <productMenu id="waveIntercom"
  5135. type="1" >
  5136. <productMenuType version="1.2.9"
  5137. type="0"
  5138. />
  5139. </productMenu>
  5140. <productMenu id="bluetoothIntercom"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="phone"
  5144. type="1" >
  5145. </productMenu>
  5146. <productMenu id="music"
  5147. type="1" >
  5148. </productMenu>
  5149. <productMenu id="fmradio"
  5150. type="1" >
  5151. </productMenu>
  5152. <productMenu id="deviceSetting"
  5153. type="1"
  5154. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5155. <productMenuURL version="1.3.9"
  5156. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5157. />
  5158. <productMenuURL version="1.1.1"
  5159. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5160. />
  5161. <productMenuURL version="1.0.4"
  5162. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5163. />
  5164. </productMenu>
  5165. <productMenu id="quickGuide"
  5166. type="0"
  5167. url=""
  5168. size="344KB" >
  5169. </productMenu>
  5170. <productMenu id="userGuide"
  5171. type="1"
  5172. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5173. size="3.41MB" >
  5174. </productMenu>
  5175. <productMenu id="connectGuide"
  5176. type="1"
  5177. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5178. size="1.12MB" >
  5179. </productMenu>
  5180. <productMenu id="volume"
  5181. type="11" >
  5182. </productMenu>
  5183. <productMenu id="battery"
  5184. type="1" >
  5185. </productMenu>
  5186. <productID id="3154"
  5187. />
  5188. <productGroupable type="0"
  5189. />
  5190. </product>
  5191. <product id="SRL3Plus"
  5192. name="SRL3 Plus"
  5193. series="60"
  5194. latestVersion="0.9.5"
  5195. latestVersionMesh="0.19"
  5196. latestVersionVoicePrompt="1.2"
  5197. show = "-1" >
  5198. <productMenu id="protocol"
  5199. type="2" >
  5200. </productMenu>
  5201. <productMenu id="ota"
  5202. type="2" >
  5203. <otaLanguages>
  5204. <otaLanguage
  5205. id="0"
  5206. name="English"
  5207. package="0"
  5208. />
  5209. <otaLanguage
  5210. id="0"
  5211. name="French"
  5212. package="1"
  5213. />
  5214. <otaLanguage
  5215. id="0"
  5216. name="Spanish"
  5217. package="2"
  5218. />
  5219. <otaLanguage
  5220. id="0"
  5221. name="Italian"
  5222. package="3"
  5223. />
  5224. <otaLanguage
  5225. id="0"
  5226. name="German"
  5227. package="4"
  5228. />
  5229. <otaLanguage
  5230. id="0"
  5231. name="Dutch"
  5232. package="5"
  5233. />
  5234. <otaLanguage
  5235. id="0"
  5236. name="Russian"
  5237. package="6"
  5238. />
  5239. <otaLanguage
  5240. id="0"
  5241. name="Chinese"
  5242. package="7"
  5243. />
  5244. <otaLanguage
  5245. id="0"
  5246. name="Korean"
  5247. package="8"
  5248. />
  5249. <otaLanguage
  5250. id="0"
  5251. name="Japanese"
  5252. package="9"
  5253. />
  5254. <otaLanguage
  5255. id="0"
  5256. name="Finnish"
  5257. package="10"
  5258. />
  5259. </otaLanguages>
  5260. <otaPackages>
  5261. <package
  5262. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5263. size="5183988"
  5264. />
  5265. <package
  5266. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5267. size="5183988"
  5268. />
  5269. <package
  5270. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5271. size="5183988"
  5272. />
  5273. <package
  5274. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5275. size="5183988"
  5276. />
  5277. <package
  5278. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5279. size="5183988"
  5280. />
  5281. <package
  5282. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5283. size="5183988"
  5284. />
  5285. <package
  5286. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5287. size="5183988"
  5288. />
  5289. <package
  5290. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5291. size="5183988"
  5292. />
  5293. <package
  5294. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5295. size="5183988"
  5296. />
  5297. <package
  5298. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5299. size="5183988"
  5300. />
  5301. <package
  5302. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5303. size="5183988"
  5304. />
  5305. </otaPackages>
  5306. </productMenu>
  5307. <productMenu id="sip"
  5308. type="1" >
  5309. </productMenu>
  5310. <productMenu id="illusion"
  5311. type="1" >
  5312. </productMenu>
  5313. <productMenu id="meshIntercom+"
  5314. type="3"
  5315. url="2" >
  5316. </productMenu>
  5317. <productMenu id="waveIntercom"
  5318. type="1" >
  5319. </productMenu>
  5320. <productMenu id="bluetoothIntercom"
  5321. type="1"
  5322. url="2" >
  5323. </productMenu>
  5324. <productMenu id="bluetoothIntercomGrouping"
  5325. type="0" >
  5326. </productMenu>
  5327. <productMenu id="fmradio"
  5328. type="1"
  5329. url="1" >
  5330. </productMenu>
  5331. <productMenu id="phone"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="music"
  5335. type="1" >
  5336. </productMenu>
  5337. <productMenu id="musicSharing"
  5338. type="0" >
  5339. </productMenu>
  5340. <productMenu id="deviceSetting"
  5341. type="1"
  5342. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5343. </productMenu>
  5344. <productMenu id="quickGuide"
  5345. type="0"
  5346. url=""
  5347. size="1.12MB" >
  5348. </productMenu>
  5349. <productMenu id="userGuide"
  5350. type="0"
  5351. url=""
  5352. size="2.0MB" >
  5353. </productMenu>
  5354. <productMenu id="videoGuide"
  5355. type="0"
  5356. url=""
  5357. size="3.41MB" >
  5358. </productMenu>
  5359. <productMenu id="volume"
  5360. type="16" >
  5361. </productMenu>
  5362. <productMenu id="soundMode"
  5363. type="1" >
  5364. </productMenu>
  5365. <productMenu id="battery"
  5366. type="1" >
  5367. </productMenu>
  5368. <productID id="6A08"
  5369. />
  5370. <productGroupable type="0"
  5371. />
  5372. </product>
  5373. <product id="SRL3"
  5374. name="SRL3"
  5375. series="SRL"
  5376. latestVersion="1.5"
  5377. show = "1" >
  5378. <productMenu id="protocol"
  5379. type="2" >
  5380. </productMenu>
  5381. <productMenu id="alexa"
  5382. type="0" >
  5383. </productMenu>
  5384. <productMenu id="ota"
  5385. type="0" >
  5386. </productMenu>
  5387. <productMenu id="wa"
  5388. type="1" >
  5389. </productMenu>
  5390. <productMenu id="sip"
  5391. type="1" >
  5392. </productMenu>
  5393. <productMenu id="meshIntercom"
  5394. type="30" >
  5395. </productMenu>
  5396. <productMenu id="meshIntercom+"
  5397. type="3"
  5398. url="2" >
  5399. <productMenuType version="1.3.9"
  5400. type="2"
  5401. />
  5402. </productMenu>
  5403. <productMenu id="waveIntercom"
  5404. type="1" >
  5405. <productMenuType version="1.4.9"
  5406. type="0"
  5407. />
  5408. </productMenu>
  5409. <productMenu id="bluetoothIntercom"
  5410. type="1" >
  5411. </productMenu>
  5412. <productMenu id="phone"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="music"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="fmradio"
  5419. type="1" >
  5420. </productMenu>
  5421. <productMenu id="deviceSetting"
  5422. type="1"
  5423. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5424. <productMenuURL version="1.3"
  5425. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5426. />
  5427. </productMenu>
  5428. <productMenu id="quickGuide"
  5429. type="0"
  5430. url=""
  5431. size="344KB" >
  5432. </productMenu>
  5433. <productMenu id="userGuide"
  5434. type="1"
  5435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5436. size="3.41MB" >
  5437. </productMenu>
  5438. <productMenu id="connectGuide"
  5439. type="1"
  5440. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5441. size="1.12MB" >
  5442. </productMenu>
  5443. <productMenu id="volume"
  5444. type="11" >
  5445. </productMenu>
  5446. <productMenu id="battery"
  5447. type="1" >
  5448. </productMenu>
  5449. <productID id="3219"
  5450. />
  5451. <productGroupable type="0"
  5452. />
  5453. </product>
  5454. <product id="SRL_Mesh"
  5455. name="SRL-Mesh"
  5456. series="SRL"
  5457. latestVersion="1.7.1"
  5458. show = "1" >
  5459. <productMenu id="protocol"
  5460. type="2" >
  5461. </productMenu>
  5462. <productMenu id="alexa"
  5463. type="0" >
  5464. </productMenu>
  5465. <productMenu id="ota"
  5466. type="0" >
  5467. </productMenu>
  5468. <productMenu id="wa"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="sip"
  5472. type="1" >
  5473. </productMenu>
  5474. <productMenu id="meshIntercom"
  5475. type="30" >
  5476. <productMenuType version="1.1.1"
  5477. type="20"
  5478. />
  5479. </productMenu>
  5480. <productMenu id="meshIntercom+"
  5481. type="3"
  5482. url="2" >
  5483. <productMenuType version="1.5.9"
  5484. type="2"
  5485. />
  5486. <productMenuURL version="1.1.1"
  5487. url="0"
  5488. />
  5489. </productMenu>
  5490. <productMenu id="waveIntercom"
  5491. type="1" >
  5492. <productMenuType version="1.6.9"
  5493. type="0"
  5494. />
  5495. </productMenu>
  5496. <productMenu id="bluetoothIntercom"
  5497. type="1" >
  5498. </productMenu>
  5499. <productMenu id="phone"
  5500. type="1" >
  5501. </productMenu>
  5502. <productMenu id="music"
  5503. type="1" >
  5504. </productMenu>
  5505. <productMenu id="fmradio"
  5506. type="1" >
  5507. </productMenu>
  5508. <productMenu id="deviceSetting"
  5509. type="1"
  5510. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5511. <productMenuURL version="1.5"
  5512. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5513. />
  5514. <productMenuURL version="1.1.1"
  5515. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5516. />
  5517. <productMenuURL version="1.0.3"
  5518. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5519. />
  5520. </productMenu>
  5521. <productMenu id="quickGuide"
  5522. type="0"
  5523. url=""
  5524. size="344KB" >
  5525. </productMenu>
  5526. <productMenu id="userGuide"
  5527. type="1"
  5528. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5529. size="3.41MB" >
  5530. </productMenu>
  5531. <productMenu id="connectGuide"
  5532. type="1"
  5533. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5534. size="1.12MB" >
  5535. </productMenu>
  5536. <productMenu id="volume"
  5537. type="11" >
  5538. </productMenu>
  5539. <productMenu id="battery"
  5540. type="1" >
  5541. </productMenu>
  5542. <productID id="3216"
  5543. />
  5544. <productGroupable type="0"
  5545. />
  5546. </product>
  5547. <product id="SRL_EXT"
  5548. name="SRL-EXT"
  5549. series="SRL"
  5550. latestVersion="1.7.1"
  5551. show = "1" >
  5552. <productMenu id="protocol"
  5553. type="2" >
  5554. </productMenu>
  5555. <productMenu id="alexa"
  5556. type="0" >
  5557. </productMenu>
  5558. <productMenu id="ota"
  5559. type="0" >
  5560. </productMenu>
  5561. <productMenu id="wa"
  5562. type="0" >
  5563. </productMenu>
  5564. <productMenu id="sip"
  5565. type="1" >
  5566. </productMenu>
  5567. <productMenu id="meshIntercom"
  5568. type="30" >
  5569. <productMenuType version="1.1.1"
  5570. type="20"
  5571. />
  5572. </productMenu>
  5573. <productMenu id="meshIntercom+"
  5574. type="3"
  5575. url="2" >
  5576. <productMenuType version="1.5.9"
  5577. type="2"
  5578. />
  5579. <productMenuURL version="1.1.1"
  5580. url="0"
  5581. />
  5582. </productMenu>
  5583. <productMenu id="waveIntercom"
  5584. type="1" >
  5585. <productMenuType version="1.6.9"
  5586. type="0"
  5587. />
  5588. </productMenu>
  5589. <productMenu id="bluetoothIntercom"
  5590. type="1" >
  5591. </productMenu>
  5592. <productMenu id="phone"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="music"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="fmradio"
  5599. type="1" >
  5600. </productMenu>
  5601. <productMenu id="deviceSetting"
  5602. type="1"
  5603. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5604. <productMenuURL version="1.5"
  5605. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5606. />
  5607. <productMenuURL version="1.1.1"
  5608. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5609. />
  5610. <productMenuURL version="1.0.3"
  5611. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5612. />
  5613. </productMenu>
  5614. <productMenu id="quickGuide"
  5615. type="0"
  5616. url=""
  5617. size="344KB" >
  5618. </productMenu>
  5619. <productMenu id="userGuide"
  5620. type="1"
  5621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5622. size="3.41MB" >
  5623. </productMenu>
  5624. <productMenu id="connectGuide"
  5625. type="1"
  5626. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5627. size="1.12MB" >
  5628. </productMenu>
  5629. <productMenu id="volume"
  5630. type="11" >
  5631. </productMenu>
  5632. <productMenu id="battery"
  5633. type="1" >
  5634. </productMenu>
  5635. <productID id="3212"
  5636. />
  5637. <productGroupable type="0"
  5638. />
  5639. </product>
  5640. <product id="SRL2"
  5641. name="SRL2"
  5642. series="SRL"
  5643. latestVersion="1.0.9"
  5644. show = "1" >
  5645. <productMenu id="protocol"
  5646. type="0">
  5647. </productMenu>
  5648. <productMenu id="sip"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="bluetoothIntercom"
  5652. type="1" >
  5653. </productMenu>
  5654. <productMenu id="intercomSetting"
  5655. type="1" >
  5656. </productMenu>
  5657. <productMenu id="phone"
  5658. type="2" >
  5659. </productMenu>
  5660. <productMenu id="fmradio"
  5661. type="3" >
  5662. </productMenu>
  5663. <productMenu id="deviceSetting"
  5664. type="1"
  5665. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5666. </productMenu>
  5667. <productMenu id="quickGuide"
  5668. type="1"
  5669. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5670. size="846KB" >
  5671. </productMenu>
  5672. <productMenu id="userGuide"
  5673. type="1"
  5674. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5675. size="1.18MB" >
  5676. </productMenu>
  5677. <productMenu id="connectGuide"
  5678. type="1"
  5679. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5680. size="1.12MB" >
  5681. </productMenu>
  5682. <productID id="4530"
  5683. />
  5684. <productGroupable type="1"
  5685. />
  5686. </product>
  5687. <product id="Neotec2"
  5688. name="SRL Neotec2"
  5689. series="SRL"
  5690. latestVersion="1.1.5"
  5691. show = "1" >
  5692. <productMenu id="protocol"
  5693. type="0">
  5694. </productMenu>
  5695. <productMenu id="sip"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="bluetoothIntercom"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="intercomSetting"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="phone"
  5705. type="2" >
  5706. </productMenu>
  5707. <productMenu id="fmradio"
  5708. type="3" >
  5709. </productMenu>
  5710. <productMenu id="deviceSetting"
  5711. type="1"
  5712. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5713. </productMenu>
  5714. <productMenu id="quickGuide"
  5715. type="0"
  5716. url=""
  5717. size="796KB" >
  5718. </productMenu>
  5719. <productMenu id="userGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5722. size="1.90MB" >
  5723. </productMenu>
  5724. <productMenu id="connectGuide"
  5725. type="1"
  5726. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5727. size="1.12MB" >
  5728. </productMenu>
  5729. <productID id="4510"
  5730. />
  5731. <productGroupable type="1"
  5732. />
  5733. </product>
  5734. <product id="SPIDERST2ANC"
  5735. name="SPIDER ST2 ANC"
  5736. series="SPIDER"
  5737. latestVersion="0.5.1"
  5738. latestVersionVoicePrompt="0.2"
  5739. latestVersionMesh="0.8"
  5740. show = "-1" >
  5741. <productMenu id="protocol"
  5742. type="2" >
  5743. </productMenu>
  5744. <productMenu id="ota"
  5745. type="0" >
  5746. <otaPackages>
  5747. <package
  5748. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5749. size="2945812"
  5750. />
  5751. </otaPackages>
  5752. </productMenu>
  5753. <productMenu id="wa"
  5754. type="0" >
  5755. </productMenu>
  5756. <productMenu id="led"
  5757. type="1" >
  5758. </productMenu>
  5759. <productMenu id="meshIntercom"
  5760. type="30" >
  5761. </productMenu>
  5762. <productMenu id="fmradio"
  5763. type="1" >
  5764. </productMenu>
  5765. <productMenu id="phone"
  5766. type="1" >
  5767. </productMenu>
  5768. <productMenu id="music"
  5769. type="1" >
  5770. </productMenu>
  5771. <productMenu id="musicSharing"
  5772. type="0" >
  5773. </productMenu>
  5774. <productMenu id="deviceSetting"
  5775. type="1"
  5776. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5777. </productMenu>
  5778. <productMenu id="quickGuide"
  5779. type="1"
  5780. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5781. size="1.12MB" >
  5782. </productMenu>
  5783. <productMenu id="userGuide"
  5784. type="1"
  5785. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5786. size="2.0MB" >
  5787. </productMenu>
  5788. <productMenu id="videoGuide"
  5789. type="1"
  5790. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5791. size="3.41MB" >
  5792. </productMenu>
  5793. <productMenu id="volume"
  5794. type="12" >
  5795. </productMenu>
  5796. <productMenu id="battery"
  5797. type="1" >
  5798. </productMenu>
  5799. <productID id="6A00"
  5800. />
  5801. <productGroupable type="0"
  5802. />
  5803. </product>
  5804. <product id="SPIDER_ST1"
  5805. name="SPIDER ST1"
  5806. series="SPIDER"
  5807. latestVersion="2.5.3"
  5808. latestVersionVoicePrompt="1.6"
  5809. show = "1" >
  5810. <productMenu id="protocol"
  5811. type="2" >
  5812. </productMenu>
  5813. <productMenu id="alexa"
  5814. type="0" >
  5815. </productMenu>
  5816. <productMenu id="ota"
  5817. type="2" >
  5818. <productMenuType version="2.1.9"
  5819. type="0"
  5820. />
  5821. <otaPackages>
  5822. <package
  5823. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5824. size="2945812"
  5825. />
  5826. </otaPackages>
  5827. </productMenu>
  5828. <productMenu id="wa"
  5829. type="0" >
  5830. </productMenu>
  5831. <productMenu id="meshIntercom"
  5832. type="30" >
  5833. <productMenuType version="2.1.1"
  5834. type="20"
  5835. />
  5836. </productMenu>
  5837. <productMenu id="meshIntercom+"
  5838. type="3"
  5839. url="2" >
  5840. <productMenuType version="2.2.9"
  5841. type="2"
  5842. />
  5843. <productMenuURL version="2.1.1"
  5844. url="0"
  5845. />
  5846. </productMenu>
  5847. <productMenu id="waveIntercom"
  5848. type="1" >
  5849. <productMenuType version="2.3.9"
  5850. type="0"
  5851. />
  5852. </productMenu>
  5853. <productMenu id="phone"
  5854. type="1" >
  5855. </productMenu>
  5856. <productMenu id="music"
  5857. type="1" >
  5858. </productMenu>
  5859. <productMenu id="musicSharing"
  5860. type="0" >
  5861. </productMenu>
  5862. <productMenu id="deviceSetting"
  5863. type="1"
  5864. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5865. <productMenuURL version="2.4.9"
  5866. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5867. />
  5868. <productMenuURL version="2.2.2"
  5869. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5870. />
  5871. <productMenuURL version="2.1.1"
  5872. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5873. />
  5874. </productMenu>
  5875. <productMenu id="quickGuide"
  5876. type="0"
  5877. url=""
  5878. size="1.12MB" >
  5879. </productMenu>
  5880. <productMenu id="userGuide"
  5881. type="1"
  5882. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5883. size="2.0MB" >
  5884. </productMenu>
  5885. <productMenu id="videoGuide"
  5886. type="1"
  5887. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5888. size="3.41MB" >
  5889. </productMenu>
  5890. <productMenu id="connectGuide"
  5891. type="1"
  5892. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5893. size="1.12MB" >
  5894. </productMenu>
  5895. <productMenu id="volume"
  5896. type="12" >
  5897. </productMenu>
  5898. <productMenu id="volume+"
  5899. type="2"
  5900. url="0x2000" >
  5901. </productMenu>
  5902. <productMenu id="battery"
  5903. type="1" >
  5904. </productMenu>
  5905. <productID id="6800"
  5906. />
  5907. <productGroupable type="0"
  5908. />
  5909. </product>
  5910. <product id="SPIDER_ST1"
  5911. name="SPIDER ST1"
  5912. series="SPIDER"
  5913. latestVersion="1.2.2"
  5914. show = "-1" >
  5915. <productMenu id="protocol"
  5916. type="2" >
  5917. </productMenu>
  5918. <productMenu id="alexa"
  5919. type="0" >
  5920. </productMenu>
  5921. <productMenu id="ota"
  5922. type="0" >
  5923. </productMenu>
  5924. <productMenu id="wa"
  5925. type="0" >
  5926. </productMenu>
  5927. <productMenu id="meshIntercom"
  5928. type="20" >
  5929. </productMenu>
  5930. <productMenu id="phone"
  5931. type="1" >
  5932. </productMenu>
  5933. <productMenu id="music"
  5934. type="1" >
  5935. </productMenu>
  5936. <productMenu id="deviceSetting"
  5937. type="1"
  5938. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5939. </productMenu>
  5940. <productMenu id="quickGuide"
  5941. type="0"
  5942. url=""
  5943. size="1.12MB" >
  5944. </productMenu>
  5945. <productMenu id="userGuide"
  5946. type="1"
  5947. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5948. size="2.0MB" >
  5949. </productMenu>
  5950. <productMenu id="videoGuide"
  5951. type="1"
  5952. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5953. size="3.41MB" >
  5954. </productMenu>
  5955. <productMenu id="volume"
  5956. type="13" >
  5957. <productMenuType version="1.1.6"
  5958. type="14"/>
  5959. </productMenu>
  5960. <productMenu id="battery"
  5961. type="1" >
  5962. </productMenu>
  5963. <productID id="6510"
  5964. />
  5965. <productGroupable type="0"
  5966. />
  5967. </product>
  5968. <product id="SPIDER_RT1"
  5969. name="SPIDER RT1"
  5970. series="SPIDER"
  5971. latestVersion="2.5.3"
  5972. latestVersionVoicePrompt="1.6"
  5973. show = "1" >
  5974. <productMenu id="protocol"
  5975. type="2" >
  5976. </productMenu>
  5977. <productMenu id="alexa"
  5978. type="0" >
  5979. </productMenu>
  5980. <productMenu id="ota"
  5981. type="2" >
  5982. <productMenuType version="2.1.9"
  5983. type="0"
  5984. />
  5985. <otaPackages>
  5986. <package
  5987. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  5988. size="2945812"
  5989. />
  5990. </otaPackages>
  5991. </productMenu>
  5992. <productMenu id="wa"
  5993. type="0" >
  5994. </productMenu>
  5995. <productMenu id="meshIntercom"
  5996. type="30" >
  5997. <productMenuType version="2.1.1"
  5998. type="20"
  5999. />
  6000. </productMenu>
  6001. <productMenu id="meshIntercom+"
  6002. type="3"
  6003. url="2" >
  6004. <productMenuType version="2.2.9"
  6005. type="2"
  6006. />
  6007. <productMenuURL version="2.1.1"
  6008. url="0"
  6009. />
  6010. </productMenu>
  6011. <productMenu id="waveIntercom"
  6012. type="1" >
  6013. <productMenuType version="2.3.9"
  6014. type="0"
  6015. />
  6016. </productMenu>
  6017. <productMenu id="phone"
  6018. type="1" >
  6019. </productMenu>
  6020. <productMenu id="music"
  6021. type="1" >
  6022. </productMenu>
  6023. <productMenu id="musicSharing"
  6024. type="0" >
  6025. </productMenu>
  6026. <productMenu id="deviceSetting"
  6027. type="1"
  6028. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6029. <productMenuURL version="2.4.9"
  6030. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6031. />
  6032. <productMenuURL version="2.2.2"
  6033. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6034. />
  6035. <productMenuURL version="2.1.1"
  6036. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6037. />
  6038. </productMenu>
  6039. <productMenu id="quickGuide"
  6040. type="0"
  6041. url=""
  6042. size="1.12MB" >
  6043. </productMenu>
  6044. <productMenu id="userGuide"
  6045. type="1"
  6046. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6047. size="2.0MB" >
  6048. </productMenu>
  6049. <productMenu id="videoGuide"
  6050. type="1"
  6051. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6052. size="3.41MB" >
  6053. </productMenu>
  6054. <productMenu id="connectGuide"
  6055. type="1"
  6056. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6057. size="1.12MB" >
  6058. </productMenu>
  6059. <productMenu id="volume"
  6060. type="12" >
  6061. </productMenu>
  6062. <productMenu id="volume+"
  6063. type="2"
  6064. url="0x2000" >
  6065. </productMenu>
  6066. <productMenu id="battery"
  6067. type="1" >
  6068. </productMenu>
  6069. <productID id="6810"
  6070. />
  6071. <productGroupable type="0"
  6072. />
  6073. </product>
  6074. <product id="SPIDER_RT1"
  6075. name="SPIDER RT1"
  6076. series="SPIDER"
  6077. latestVersion="1.2.2"
  6078. show = "-1" >
  6079. <productMenu id="protocol"
  6080. type="2" >
  6081. </productMenu>
  6082. <productMenu id="alexa"
  6083. type="0" >
  6084. </productMenu>
  6085. <productMenu id="ota"
  6086. type="0" >
  6087. </productMenu>
  6088. <productMenu id="wa"
  6089. type="0" >
  6090. </productMenu>
  6091. <productMenu id="meshIntercom"
  6092. type="20" >
  6093. </productMenu>
  6094. <productMenu id="phone"
  6095. type="1" >
  6096. </productMenu>
  6097. <productMenu id="music"
  6098. type="1" >
  6099. </productMenu>
  6100. <productMenu id="deviceSetting"
  6101. type="1"
  6102. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6103. </productMenu>
  6104. <productMenu id="quickGuide"
  6105. type="0"
  6106. url=""
  6107. size="1.32MB" >
  6108. </productMenu>
  6109. <productMenu id="userGuide"
  6110. type="1"
  6111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6112. size="1.79MB" >
  6113. </productMenu>
  6114. <productMenu id="videoGuide"
  6115. type="1"
  6116. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6117. size="3.41MB" >
  6118. </productMenu>
  6119. <productMenu id="volume"
  6120. type="13" >
  6121. <productMenuType version="1.1.6"
  6122. type="14"/>
  6123. </productMenu>
  6124. <productMenu id="battery"
  6125. type="1" >
  6126. </productMenu>
  6127. <productID id="6500"
  6128. />
  6129. <productGroupable type="0"
  6130. />
  6131. </product>
  6132. <product id="30K"
  6133. name="30K"
  6134. series="30"
  6135. latestVersion="4.5.1"
  6136. show = "1" >
  6137. <productMenu id="protocol"
  6138. type="2" >
  6139. </productMenu>
  6140. <productMenu id="alexa"
  6141. type="0" >
  6142. </productMenu>
  6143. <productMenu id="wa"
  6144. type="1" >
  6145. </productMenu>
  6146. <productMenu id="sip"
  6147. type="1" >
  6148. </productMenu>
  6149. <productMenu id="meshIntercom"
  6150. type="30" >
  6151. <productMenuType version="4.0.4"
  6152. type="20"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="meshIntercom+"
  6156. type="3"
  6157. url="2" >
  6158. <productMenuType version="4.3.9"
  6159. type="2"
  6160. />
  6161. <productMenuURL version="4.0.4"
  6162. url="0"
  6163. />
  6164. </productMenu>
  6165. <productMenu id="waveIntercom"
  6166. type="1" >
  6167. <productMenuType version="4.4.9"
  6168. type="0"
  6169. />
  6170. </productMenu>
  6171. <productMenu id="bluetoothIntercom"
  6172. type="1" >
  6173. </productMenu>
  6174. <productMenu id="phone"
  6175. type="1" >
  6176. </productMenu>
  6177. <productMenu id="music"
  6178. type="1" >
  6179. </productMenu>
  6180. <productMenu id="fmradio"
  6181. type="1" >
  6182. </productMenu>
  6183. <productMenu id="deviceSetting"
  6184. type="1"
  6185. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6186. <productMenuURL version="4.3"
  6187. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6188. />
  6189. <productMenuURL version="4.2"
  6190. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6191. />
  6192. <productMenuURL version="4.0.4"
  6193. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6194. />
  6195. </productMenu>
  6196. <productMenu id="quickGuide"
  6197. type="0"
  6198. url=""
  6199. size="934KB" >
  6200. </productMenu>
  6201. <productMenu id="userGuide"
  6202. type="1"
  6203. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6204. size="1.14MB" >
  6205. </productMenu>
  6206. <productMenu id="connectGuide"
  6207. type="1"
  6208. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6209. size="1.12MB" >
  6210. </productMenu>
  6211. <productMenu id="volume"
  6212. type="11" >
  6213. </productMenu>
  6214. <productMenu id="battery"
  6215. type="1" >
  6216. </productMenu>
  6217. <productID id="3211"
  6218. />
  6219. <productGroupable type="0"
  6220. />
  6221. </product>
  6222. <product id="30K"
  6223. name="30K"
  6224. series="30"
  6225. latestVersion="3.5"
  6226. show = "-1" >
  6227. <productMenu id="protocol"
  6228. type="1"
  6229. url="0">
  6230. </productMenu>
  6231. <productMenu id="wa"
  6232. type="7" >
  6233. </productMenu>
  6234. <productMenu id="sip"
  6235. type="1" >
  6236. </productMenu>
  6237. <productMenu id="meshIntercom"
  6238. type="20" >
  6239. <productMenuType version="2.9.9"
  6240. type="10"
  6241. />
  6242. </productMenu>
  6243. <productMenu id="meshIntercom+"
  6244. type="3"
  6245. url="2" >
  6246. <productMenuType version="3.4.9"
  6247. type="2"
  6248. />
  6249. <productMenuType version="2.9.9"
  6250. type="1"
  6251. />
  6252. <productMenuURL version="3.3.1"
  6253. url="0"
  6254. />
  6255. </productMenu>
  6256. <productMenu id="bluetoothIntercom"
  6257. type="1" >
  6258. </productMenu>
  6259. <productMenu id="phone"
  6260. type="1" >
  6261. </productMenu>
  6262. <productMenu id="music"
  6263. type="1" >
  6264. </productMenu>
  6265. <productMenu id="fmradio"
  6266. type="1" >
  6267. </productMenu>
  6268. <productMenu id="deviceSetting"
  6269. type="1"
  6270. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6271. <productMenuURL version="3.4.9"
  6272. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6273. />
  6274. <productMenuURL version="3.3.1"
  6275. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6276. />
  6277. <productMenuURL version="3.0.1"
  6278. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6279. />
  6280. <productMenuURL version="2.3.1"
  6281. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6282. />
  6283. <productMenuURL version="2.0"
  6284. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6285. />
  6286. <productMenuURL version="1.0.3"
  6287. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6288. />
  6289. </productMenu>
  6290. <productMenu id="quickGuide"
  6291. type="0"
  6292. url=""
  6293. size="1.06MB" >
  6294. </productMenu>
  6295. <productMenu id="userGuide"
  6296. type="1"
  6297. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6298. size="3.15MB" >
  6299. </productMenu>
  6300. <productMenu id="volume"
  6301. type="1" >
  6302. </productMenu>
  6303. <productID id="3110"
  6304. />
  6305. <productGroupable type="0"
  6306. />
  6307. </product>
  6308. <product id="FURY"
  6309. name="FURY"
  6310. series="Helmet"
  6311. latestVersion="1.0"
  6312. show = "-1" >
  6313. <productMenu id="protocol"
  6314. type="2" >
  6315. </productMenu>
  6316. <productMenu id="alexa"
  6317. type="0" >
  6318. </productMenu>
  6319. <productMenu id="ota"
  6320. type="0" >
  6321. </productMenu>
  6322. <productMenu id="wa"
  6323. type="0" >
  6324. </productMenu>
  6325. <productMenu id="meshIntercom"
  6326. type="20" >
  6327. </productMenu>
  6328. <productMenu id="phone"
  6329. type="1" >
  6330. </productMenu>
  6331. <productMenu id="music"
  6332. type="1" >
  6333. </productMenu>
  6334. <productMenu id="fmradio"
  6335. type="1" >
  6336. </productMenu>
  6337. <productMenu id="deviceSetting"
  6338. type="1"
  6339. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6340. </productMenu>
  6341. <productMenu id="quickGuide"
  6342. type="1"
  6343. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6344. size="1.12MB" >
  6345. </productMenu>
  6346. <productMenu id="userGuide"
  6347. type="1"
  6348. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6349. size="2.0MB" >
  6350. </productMenu>
  6351. <productMenu id="volume"
  6352. type="13" >
  6353. </productMenu>
  6354. <productMenu id="battery"
  6355. type="1" >
  6356. </productMenu>
  6357. <productID id="5552"
  6358. />
  6359. <productGroupable type="0"
  6360. />
  6361. </product>
  6362. <product id="MomentumM"
  6363. name="Momentum EVO"
  6364. series="Helmet"
  6365. latestVersion="2.1.2"
  6366. show = "1" >
  6367. <productMenu id="protocol"
  6368. type="1"
  6369. url="0">
  6370. </productMenu>
  6371. <productMenu id="wa"
  6372. type="3" >
  6373. </productMenu>
  6374. <productMenu id="sip"
  6375. type="1" >
  6376. </productMenu>
  6377. <productMenu id="meshIntercom"
  6378. type="20" >
  6379. <productMenuType version="1.9.9"
  6380. type="10"
  6381. />
  6382. </productMenu>
  6383. <productMenu id="bluetoothIntercom"
  6384. type="1" >
  6385. </productMenu>
  6386. <productMenu id="phone"
  6387. type="1" >
  6388. </productMenu>
  6389. <productMenu id="music"
  6390. type="1" >
  6391. </productMenu>
  6392. <productMenu id="fmradio"
  6393. type="1" >
  6394. </productMenu>
  6395. <productMenu id="deviceSetting"
  6396. type="1"
  6397. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6398. <productMenuURL version="1.0.1"
  6399. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6400. />
  6401. </productMenu>
  6402. <productMenu id="quickGuide"
  6403. type="1"
  6404. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6405. size="1.06MB" >
  6406. </productMenu>
  6407. <productMenu id="userGuide"
  6408. type="1"
  6409. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6410. size="3.15MB" >
  6411. </productMenu>
  6412. <productMenu id="connectGuide"
  6413. type="1"
  6414. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6415. size="1.12MB" >
  6416. </productMenu>
  6417. <productMenu id="volume"
  6418. type="2" >
  6419. </productMenu>
  6420. <productID id="3116"
  6421. />
  6422. <productGroupable type="0"
  6423. />
  6424. </product>
  6425. <product id="Momentum"
  6426. name="Momentum"
  6427. series="Helmet"
  6428. latestVersion="1.0.9"
  6429. show = "1" >
  6430. <productMenu id="protocol"
  6431. type="0">
  6432. </productMenu>
  6433. <productMenu id="sip"
  6434. type="1" >
  6435. </productMenu>
  6436. <productMenu id="bluetoothIntercom"
  6437. type="1" >
  6438. </productMenu>
  6439. <productMenu id="intercomSetting"
  6440. type="1" >
  6441. </productMenu>
  6442. <productMenu id="phone"
  6443. type="2" >
  6444. </productMenu>
  6445. <productMenu id="fmradio"
  6446. type="3" >
  6447. </productMenu>
  6448. <productMenu id="deviceSetting"
  6449. type="1"
  6450. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6451. </productMenu>
  6452. <productMenu id="quickGuide"
  6453. type="1"
  6454. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6455. size="796KB" >
  6456. </productMenu>
  6457. <productMenu id="userGuide"
  6458. type="1"
  6459. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6460. size="1.90MB" >
  6461. </productMenu>
  6462. <productMenu id="connectGuide"
  6463. type="1"
  6464. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6465. size="1.12MB" >
  6466. </productMenu>
  6467. <productID id="4310"
  6468. />
  6469. <productGroupable type="1"
  6470. />
  6471. </product>
  6472. <product id="Momentum_Pro"
  6473. name="Momentum Pro"
  6474. series="Helmet"
  6475. latestVersion="1.0.6"
  6476. show = "1" >
  6477. <productMenu id="protocol"
  6478. type="0">
  6479. </productMenu>
  6480. <productMenu id="sip"
  6481. type="1" >
  6482. </productMenu>
  6483. <productMenu id="bluetoothIntercom"
  6484. type="1" >
  6485. </productMenu>
  6486. <productMenu id="intercomSetting"
  6487. type="1" >
  6488. </productMenu>
  6489. <productMenu id="phone"
  6490. type="2" >
  6491. </productMenu>
  6492. <productMenu id="fmradio"
  6493. type="3" >
  6494. </productMenu>
  6495. <productMenu id="deviceSetting"
  6496. type="1"
  6497. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6498. </productMenu>
  6499. <productMenu id="quickGuide"
  6500. type="1"
  6501. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6502. size="796KB" >
  6503. </productMenu>
  6504. <productMenu id="userGuide"
  6505. type="1"
  6506. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6507. size="1.90MB" >
  6508. </productMenu>
  6509. <productMenu id="connectGuide"
  6510. type="1"
  6511. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6512. size="1.12MB" >
  6513. </productMenu>
  6514. <productID id="4330"
  6515. />
  6516. <productGroupable type="1"
  6517. />
  6518. </product>
  6519. <product id="Momentum_INC"
  6520. name="Momentum INC"
  6521. series="Helmet"
  6522. latestVersion="1.0.7"
  6523. show = "1" >
  6524. <productMenu id="protocol"
  6525. type="0">
  6526. </productMenu>
  6527. <productMenu id="sip"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="bluetoothIntercom"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="intercomSetting"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="phone"
  6537. type="2" >
  6538. </productMenu>
  6539. <productMenu id="fmradio"
  6540. type="3" >
  6541. </productMenu>
  6542. <productMenu id="deviceSetting"
  6543. type="1"
  6544. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6545. </productMenu>
  6546. <productMenu id="quickGuide"
  6547. type="1"
  6548. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6549. size="794KB" >
  6550. </productMenu>
  6551. <productMenu id="userGuide"
  6552. type="1"
  6553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6554. size="1.53MB" >
  6555. </productMenu>
  6556. <productMenu id="connectGuide"
  6557. type="1"
  6558. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6559. size="1.12MB" >
  6560. </productMenu>
  6561. <productID id="4410"
  6562. />
  6563. <productGroupable type="1"
  6564. />
  6565. </product>
  6566. <product id="Momentum_INCP"
  6567. name="Momentum INC Pro"
  6568. series="Helmet"
  6569. latestVersion="1.0.4"
  6570. show = "1" >
  6571. <productMenu id="protocol"
  6572. type="0">
  6573. </productMenu>
  6574. <productMenu id="sip"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="bluetoothIntercom"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="intercomSetting"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="phone"
  6584. type="2" >
  6585. </productMenu>
  6586. <productMenu id="fmradio"
  6587. type="3" >
  6588. </productMenu>
  6589. <productMenu id="deviceSetting"
  6590. type="1"
  6591. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6592. </productMenu>
  6593. <productMenu id="quickGuide"
  6594. type="1"
  6595. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6596. size="794KB" >
  6597. </productMenu>
  6598. <productMenu id="userGuide"
  6599. type="1"
  6600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6601. size="1.53MB" >
  6602. </productMenu>
  6603. <productMenu id="connectGuide"
  6604. type="1"
  6605. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6606. size="1.12MB" >
  6607. </productMenu>
  6608. <productID id="4430"
  6609. />
  6610. <productGroupable type="1"
  6611. />
  6612. </product>
  6613. <product id="Momentum_Lite"
  6614. name="Momentum Lite"
  6615. series="Helmet"
  6616. latestVersion="2.0.3"
  6617. show = "1" >
  6618. <productMenu id="protocol"
  6619. type="0">
  6620. </productMenu>
  6621. <productMenu id="sip"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="bluetoothIntercom"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="phone"
  6628. type="2" >
  6629. </productMenu>
  6630. <productMenu id="fmradio"
  6631. type="3" >
  6632. </productMenu>
  6633. <productMenu id="deviceSetting"
  6634. type="1"
  6635. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6636. <productMenuURL version="1.1"
  6637. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6638. />
  6639. </productMenu>
  6640. <productMenu id="quickGuide"
  6641. type="1"
  6642. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6643. size="790KB" >
  6644. </productMenu>
  6645. <productMenu id="userGuide"
  6646. type="1"
  6647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6648. size="1.42MB" >
  6649. </productMenu>
  6650. <productMenu id="connectGuide"
  6651. type="1"
  6652. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6653. size="1.12MB" >
  6654. </productMenu>
  6655. <productID id="5526"
  6656. />
  6657. <productGroupable type="0"
  6658. />
  6659. </product>
  6660. <product id="OUTRUSHM"
  6661. name="OUTRUSH M"
  6662. series="Helmet"
  6663. latestVersion="1.0"
  6664. show = "-1" >
  6665. <productMenu id="protocol"
  6666. type="2" >
  6667. </productMenu>
  6668. <productMenu id="alexa"
  6669. type="0" >
  6670. </productMenu>
  6671. <productMenu id="ota"
  6672. type="0" >
  6673. </productMenu>
  6674. <productMenu id="wa"
  6675. type="0" >
  6676. </productMenu>
  6677. <productMenu id="meshIntercom"
  6678. type="30" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="music"
  6684. type="1" >
  6685. </productMenu>
  6686. <productMenu id="fmradio"
  6687. type="1" >
  6688. </productMenu>
  6689. <productMenu id="deviceSetting"
  6690. type="1"
  6691. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6692. </productMenu>
  6693. <productMenu id="quickGuide"
  6694. type="1"
  6695. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6696. size="1.12MB" >
  6697. </productMenu>
  6698. <productMenu id="userGuide"
  6699. type="1"
  6700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6701. size="2.0MB" >
  6702. </productMenu>
  6703. <productMenu id="volume"
  6704. type="13" >
  6705. </productMenu>
  6706. <productMenu id="battery"
  6707. type="1" >
  6708. </productMenu>
  6709. <productID id="5600"
  6710. />
  6711. <productGroupable type="0"
  6712. />
  6713. </product>
  6714. <product id="ProRideEVO"
  6715. name="ProRide EVO"
  6716. series="Helmet"
  6717. latestVersion="1.1.2"
  6718. show = "1" >
  6719. <productMenu id="protocol"
  6720. type="0">
  6721. </productMenu>
  6722. <productMenu id="sip"
  6723. type="1" >
  6724. </productMenu>
  6725. <productMenu id="bluetoothIntercom"
  6726. type="1" >
  6727. </productMenu>
  6728. <productMenu id="phone"
  6729. type="2" >
  6730. </productMenu>
  6731. <productMenu id="fmradio"
  6732. type="3" >
  6733. </productMenu>
  6734. <productMenu id="deviceSetting"
  6735. type="1"
  6736. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6737. </productMenu>
  6738. <productMenu id="userGuide"
  6739. type="1"
  6740. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6741. size="778KB" >
  6742. </productMenu>
  6743. <productMenu id="connectGuide"
  6744. type="1"
  6745. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6746. size="1.12MB" >
  6747. </productMenu>
  6748. <productID id="5426"
  6749. />
  6750. <productGroupable type="0"
  6751. />
  6752. </product>
  6753. <product id="OUTRUSHR"
  6754. name="OUTRUSH R"
  6755. series="Helmet"
  6756. latestVersion="2.1"
  6757. show = "1" >
  6758. <productMenu id="protocol"
  6759. type="3" >
  6760. </productMenu>
  6761. <productMenu id="sip"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="bluetoothIntercom"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="phone"
  6768. type="1" >
  6769. </productMenu>
  6770. <productMenu id="fmradio"
  6771. type="0" >
  6772. </productMenu>
  6773. <productMenu id="deviceSetting"
  6774. type="1"
  6775. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6776. </productMenu>
  6777. <productMenu id="userGuide"
  6778. type="1"
  6779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6780. size="1.14MB" >
  6781. </productMenu>
  6782. <productMenu id="connectGuide"
  6783. type="1"
  6784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6785. size="1.12MB" >
  6786. </productMenu>
  6787. <productID id="5440"
  6788. />
  6789. <productGroupable type="0"
  6790. />
  6791. </product>
  6792. <product id="OUTRUSHR"
  6793. name="OUTRUSH R"
  6794. series="Helmet"
  6795. latestVersion="1.1.4"
  6796. show = "-1" >
  6797. <productMenu id="protocol"
  6798. type="0">
  6799. </productMenu>
  6800. <productMenu id="sip"
  6801. type="1" >
  6802. </productMenu>
  6803. <productMenu id="bluetoothIntercom"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="phone"
  6807. type="2" >
  6808. </productMenu>
  6809. <productMenu id="fmradio"
  6810. type="3" >
  6811. </productMenu>
  6812. <productMenu id="deviceSetting"
  6813. type="1"
  6814. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6815. </productMenu>
  6816. <productMenu id="userGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6819. size="660KB" >
  6820. </productMenu>
  6821. <productMenu id="connectGuide"
  6822. type="1"
  6823. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productID id="5424"
  6827. />
  6828. <productGroupable type="0"
  6829. />
  6830. </product>
  6831. <product id="OUTSTARS"
  6832. name="OUTSTAR S"
  6833. series="Helmet"
  6834. latestVersion="2.0.1"
  6835. show = "-1" >
  6836. <productMenu id="protocol"
  6837. type="3" >
  6838. </productMenu>
  6839. <productMenu id="sip"
  6840. type="1" >
  6841. </productMenu>
  6842. <productMenu id="bluetoothIntercom"
  6843. type="1" >
  6844. </productMenu>
  6845. <productMenu id="phone"
  6846. type="1" >
  6847. </productMenu>
  6848. <productMenu id="fmradio"
  6849. type="0" >
  6850. </productMenu>
  6851. <productMenu id="deviceSetting"
  6852. type="1"
  6853. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6854. </productMenu>
  6855. <productMenu id="userGuide"
  6856. type="0"
  6857. url=""
  6858. size="1.14MB" >
  6859. </productMenu>
  6860. <productID id="5443"
  6861. />
  6862. <productGroupable type="0"
  6863. />
  6864. </product>
  6865. <product id="OUTSTARS"
  6866. name="OUTSTAR S"
  6867. series="Helmet"
  6868. latestVersion="1.1.4"
  6869. show = "1" >
  6870. <productMenu id="protocol"
  6871. type="0">
  6872. </productMenu>
  6873. <productMenu id="sip"
  6874. type="1" >
  6875. </productMenu>
  6876. <productMenu id="bluetoothIntercom"
  6877. type="1" >
  6878. </productMenu>
  6879. <productMenu id="phone"
  6880. type="2" >
  6881. </productMenu>
  6882. <productMenu id="fmradio"
  6883. type="3" >
  6884. </productMenu>
  6885. <productMenu id="deviceSetting"
  6886. type="1"
  6887. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6888. </productMenu>
  6889. <productMenu id="quickGuide"
  6890. type="1"
  6891. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6892. size="643KB" >
  6893. </productMenu>
  6894. <productMenu id="userGuide"
  6895. type="1"
  6896. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6897. size="1.15MB" >
  6898. </productMenu>
  6899. <productMenu id="connectGuide"
  6900. type="1"
  6901. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6902. size="1.12MB" >
  6903. </productMenu>
  6904. <productID id="5428"
  6905. />
  6906. <productGroupable type="0"
  6907. />
  6908. </product>
  6909. <product id="OUTRIDE"
  6910. name="OUTRIDE"
  6911. series="Helmet"
  6912. latestVersion="1.0.1"
  6913. show = "1" >
  6914. <productMenu id="protocol"
  6915. type="0">
  6916. </productMenu>
  6917. <productMenu id="sip"
  6918. type="1" >
  6919. </productMenu>
  6920. <productMenu id="bluetoothIntercom"
  6921. type="1" >
  6922. </productMenu>
  6923. <productMenu id="phone"
  6924. type="2" >
  6925. </productMenu>
  6926. <productMenu id="fmradio"
  6927. type="3" >
  6928. </productMenu>
  6929. <productMenu id="deviceSetting"
  6930. type="1"
  6931. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6932. </productMenu>
  6933. <productMenu id="quickGuide"
  6934. type="1"
  6935. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6936. size="643KB" >
  6937. </productMenu>
  6938. <productMenu id="userGuide"
  6939. type="1"
  6940. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6941. size="660KB" >
  6942. </productMenu>
  6943. <productMenu id="connectGuide"
  6944. type="1"
  6945. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6946. size="1.12MB" >
  6947. </productMenu>
  6948. <productID id="5432"
  6949. />
  6950. <productGroupable type="0"
  6951. />
  6952. </product>
  6953. <product id="OUTFORCE"
  6954. name="OUTFORCE"
  6955. series="Helmet"
  6956. latestVersion="1.0.1"
  6957. show = "1" >
  6958. <productMenu id="protocol"
  6959. type="0">
  6960. </productMenu>
  6961. <productMenu id="sip"
  6962. type="1" >
  6963. </productMenu>
  6964. <productMenu id="bluetoothIntercom"
  6965. type="1" >
  6966. </productMenu>
  6967. <productMenu id="phone"
  6968. type="2" >
  6969. </productMenu>
  6970. <productMenu id="fmradio"
  6971. type="3" >
  6972. </productMenu>
  6973. <productMenu id="deviceSetting"
  6974. type="1"
  6975. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6976. </productMenu>
  6977. <productMenu id="quickGuide"
  6978. type="1"
  6979. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6980. size="643KB" >
  6981. </productMenu>
  6982. <productMenu id="userGuide"
  6983. type="1"
  6984. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6985. size="660KB" >
  6986. </productMenu>
  6987. <productMenu id="connectGuide"
  6988. type="1"
  6989. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6990. size="1.12MB" >
  6991. </productMenu>
  6992. <productID id="5430"
  6993. />
  6994. <productGroupable type="0"
  6995. />
  6996. </product>
  6997. <product id="Rumba"
  6998. name="Rumba"
  6999. series="30"
  7000. latestVersion="2.0"
  7001. show = "-1" >
  7002. <productMenu id="protocol"
  7003. type="3" >
  7004. </productMenu>
  7005. <productMenu id="sip"
  7006. type="1" >
  7007. </productMenu>
  7008. <productMenu id="bluetoothIntercom"
  7009. type="1" >
  7010. </productMenu>
  7011. <productMenu id="deviceSetting"
  7012. type="1"
  7013. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7014. </productMenu>
  7015. <productMenu id="quickGuide"
  7016. type="1"
  7017. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7018. size="344KB" >
  7019. </productMenu>
  7020. <productMenu id="userGuide"
  7021. type="1"
  7022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7023. size="1.14MB" >
  7024. </productMenu>
  7025. <productID id="6322"
  7026. />
  7027. <productGroupable type="0"
  7028. />
  7029. </product>
  7030. <product id="Savage"
  7031. name="Savage"
  7032. series="Helmet"
  7033. latestVersion="1.2.2"
  7034. show = "1" >
  7035. <productMenu id="protocol"
  7036. type="0">
  7037. </productMenu>
  7038. <productMenu id="sip"
  7039. type="1" >
  7040. </productMenu>
  7041. <productMenu id="bluetoothIntercom"
  7042. type="1" >
  7043. </productMenu>
  7044. <productMenu id="phone"
  7045. type="2" >
  7046. </productMenu>
  7047. <productMenu id="fmradio"
  7048. type="3" >
  7049. </productMenu>
  7050. <productMenu id="deviceSetting"
  7051. type="1"
  7052. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7053. <productMenuURL version="1.9"
  7054. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7055. />
  7056. <productMenuURL version="1.1"
  7057. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7058. />
  7059. </productMenu>
  7060. <productMenu id="quickGuide"
  7061. type="1"
  7062. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7063. size="796KB" >
  7064. </productMenu>
  7065. <productMenu id="userGuide"
  7066. type="1"
  7067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7068. size="910KB" >
  7069. </productMenu>
  7070. <productMenu id="connectGuide"
  7071. type="1"
  7072. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7073. size="1.12MB" >
  7074. </productMenu>
  7075. <productID id="5550"
  7076. />
  7077. <productGroupable type="0"
  7078. />
  7079. </product>
  7080. <product id="RECON"
  7081. name="RECON"
  7082. series="Helmet"
  7083. latestVersion="1.0"
  7084. latestVersionVoicePrompt="1.7"
  7085. show = "-1" >
  7086. <productMenu id="protocol"
  7087. type="2" >
  7088. </productMenu>
  7089. <productMenu id="ota"
  7090. type="0" >
  7091. <otaLanguages>
  7092. <otaLanguage
  7093. id="0"
  7094. name="English"
  7095. package="0"
  7096. />
  7097. <otaLanguage
  7098. id="0"
  7099. name="French"
  7100. package="1"
  7101. />
  7102. <otaLanguage
  7103. id="0"
  7104. name="Spanish"
  7105. package="2"
  7106. />
  7107. <otaLanguage
  7108. id="0"
  7109. name="Italian"
  7110. package="3"
  7111. />
  7112. <otaLanguage
  7113. id="0"
  7114. name="German"
  7115. package="4"
  7116. />
  7117. <otaLanguage
  7118. id="0"
  7119. name="Dutch"
  7120. package="5"
  7121. />
  7122. <otaLanguage
  7123. id="0"
  7124. name="Russian"
  7125. package="6"
  7126. />
  7127. <otaLanguage
  7128. id="0"
  7129. name="Chinese"
  7130. package="7"
  7131. />
  7132. <otaLanguage
  7133. id="0"
  7134. name="Korean"
  7135. package="8"
  7136. />
  7137. <otaLanguage
  7138. id="0"
  7139. name="Japanese"
  7140. package="9"
  7141. />
  7142. <otaLanguage
  7143. id="0"
  7144. name="Finnish"
  7145. package="10"
  7146. />
  7147. <otaLanguage
  7148. id="0"
  7149. name="Polish"
  7150. package="11"
  7151. />
  7152. </otaLanguages>
  7153. <otaPackages>
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fr-FR.img"
  7160. size="5183988"
  7161. />
  7162. <package
  7163. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-es-ES.img"
  7164. size="5183988"
  7165. />
  7166. <package
  7167. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-it-IT.img"
  7168. size="5183988"
  7169. />
  7170. <package
  7171. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-de-DE.img"
  7172. size="5183988"
  7173. />
  7174. <package
  7175. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-nl-NL.img"
  7176. size="5183988"
  7177. />
  7178. <package
  7179. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ru-RU.img"
  7180. size="5183988"
  7181. />
  7182. <package
  7183. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-cmn-CN.img"
  7184. size="5183988"
  7185. />
  7186. <package
  7187. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ko-KR.img"
  7188. size="5183988"
  7189. />
  7190. <package
  7191. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ja-JP.img"
  7192. size="5183988"
  7193. />
  7194. <package
  7195. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fi-FI.img"
  7196. size="5183988"
  7197. />
  7198. <package
  7199. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-pl-PL.img"
  7200. size="5183988"
  7201. />
  7202. </otaPackages>
  7203. </productMenu>
  7204. <productMenu id="wa"
  7205. type="0" >
  7206. </productMenu>
  7207. <productMenu id="led"
  7208. type="5" >
  7209. </productMenu>
  7210. <productMenu id="led+"
  7211. type="2"
  7212. url="1" >
  7213. </productMenu>
  7214. <productMenu id="meshIntercom+"
  7215. type="3"
  7216. url="2" >
  7217. </productMenu>
  7218. <productMenu id="waveIntercom"
  7219. type="1" >
  7220. </productMenu>
  7221. <productMenu id="fmradio"
  7222. type="0" >
  7223. </productMenu>
  7224. <productMenu id="phone"
  7225. type="1" >
  7226. </productMenu>
  7227. <productMenu id="music"
  7228. type="1" >
  7229. </productMenu>
  7230. <productMenu id="musicSharing"
  7231. type="0" >
  7232. </productMenu>
  7233. <productMenu id="deviceSetting"
  7234. type="1"
  7235. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7236. </productMenu>
  7237. <productMenu id="quickGuide"
  7238. type="0"
  7239. url=""
  7240. size="1.12MB" >
  7241. </productMenu>
  7242. <productMenu id="userGuide"
  7243. type="1"
  7244. url=""
  7245. size="2.28MB" >
  7246. </productMenu>
  7247. <productMenu id="videoGuide"
  7248. type="0"
  7249. url=""
  7250. size="3.41MB" >
  7251. </productMenu>
  7252. <productMenu id="volume"
  7253. type="16" >
  7254. </productMenu>
  7255. <productMenu id="volume+"
  7256. type="2"
  7257. url="0x6004" >
  7258. </productMenu>
  7259. <productMenu id="battery"
  7260. type="1" >
  7261. </productMenu>
  7262. <productID id="6A1D"
  7263. />
  7264. <productGroupable type="0"
  7265. />
  7266. </product>
  7267. <product id="SPECTER"
  7268. name="SPECTER"
  7269. series="Helmet"
  7270. latestVersion="1.0.9"
  7271. latestVersionVoicePrompt="1.7"
  7272. show = "1" >
  7273. <productMenu id="protocol"
  7274. type="2" >
  7275. </productMenu>
  7276. <productMenu id="ota"
  7277. type="2" >
  7278. <otaLanguages>
  7279. <otaLanguage
  7280. id="0"
  7281. name="English"
  7282. package="0"
  7283. />
  7284. <otaLanguage
  7285. id="0"
  7286. name="French"
  7287. package="1"
  7288. />
  7289. <otaLanguage
  7290. id="0"
  7291. name="Spanish"
  7292. package="2"
  7293. />
  7294. <otaLanguage
  7295. id="0"
  7296. name="Italian"
  7297. package="3"
  7298. />
  7299. <otaLanguage
  7300. id="0"
  7301. name="German"
  7302. package="4"
  7303. />
  7304. <otaLanguage
  7305. id="0"
  7306. name="Dutch"
  7307. package="5"
  7308. />
  7309. <otaLanguage
  7310. id="0"
  7311. name="Russian"
  7312. package="6"
  7313. />
  7314. <otaLanguage
  7315. id="0"
  7316. name="Chinese"
  7317. package="7"
  7318. />
  7319. <otaLanguage
  7320. id="0"
  7321. name="Korean"
  7322. package="8"
  7323. />
  7324. <otaLanguage
  7325. id="0"
  7326. name="Japanese"
  7327. package="9"
  7328. />
  7329. <otaLanguage
  7330. id="0"
  7331. name="Finnish"
  7332. package="10"
  7333. />
  7334. <otaLanguage
  7335. id="0"
  7336. name="Polish"
  7337. package="11"
  7338. />
  7339. </otaLanguages>
  7340. <otaPackages>
  7341. <package
  7342. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7343. size="5183988"
  7344. />
  7345. <package
  7346. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7347. size="5183988"
  7348. />
  7349. <package
  7350. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7351. size="5183988"
  7352. />
  7353. <package
  7354. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7355. size="5183988"
  7356. />
  7357. <package
  7358. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7359. size="5183988"
  7360. />
  7361. <package
  7362. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7363. size="5183988"
  7364. />
  7365. <package
  7366. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7367. size="5183988"
  7368. />
  7369. <package
  7370. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7371. size="5183988"
  7372. />
  7373. <package
  7374. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7375. size="5183988"
  7376. />
  7377. <package
  7378. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7379. size="5183988"
  7380. />
  7381. <package
  7382. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7383. size="5183988"
  7384. />
  7385. <package
  7386. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7387. size="5183988"
  7388. />
  7389. </otaPackages>
  7390. </productMenu>
  7391. <productMenu id="wa"
  7392. type="0" >
  7393. </productMenu>
  7394. <productMenu id="led"
  7395. type="5" >
  7396. </productMenu>
  7397. <productMenu id="led+"
  7398. type="2"
  7399. url="1" >
  7400. </productMenu>
  7401. <productMenu id="meshIntercom+"
  7402. type="3"
  7403. url="2" >
  7404. </productMenu>
  7405. <productMenu id="waveIntercom"
  7406. type="1" >
  7407. </productMenu>
  7408. <productMenu id="fmradio"
  7409. type="0" >
  7410. </productMenu>
  7411. <productMenu id="phone"
  7412. type="1" >
  7413. </productMenu>
  7414. <productMenu id="music"
  7415. type="1" >
  7416. </productMenu>
  7417. <productMenu id="musicSharing"
  7418. type="0" >
  7419. </productMenu>
  7420. <productMenu id="deviceSetting"
  7421. type="1"
  7422. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7423. <productMenuURL version="1.0.4"
  7424. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7425. />
  7426. </productMenu>
  7427. <productMenu id="quickGuide"
  7428. type="0"
  7429. url=""
  7430. size="1.12MB" >
  7431. </productMenu>
  7432. <productMenu id="userGuide"
  7433. type="1"
  7434. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7435. size="2.0MB" >
  7436. </productMenu>
  7437. <productMenu id="videoGuide"
  7438. type="0"
  7439. url=""
  7440. size="3.41MB" >
  7441. </productMenu>
  7442. <productMenu id="volume"
  7443. type="16" >
  7444. </productMenu>
  7445. <productMenu id="volume+"
  7446. type="2"
  7447. url="0x6004" >
  7448. </productMenu>
  7449. <productMenu id="battery"
  7450. type="1" >
  7451. </productMenu>
  7452. <productID id="6A11"
  7453. />
  7454. <productGroupable type="0"
  7455. />
  7456. </product>
  7457. <product id="SPECTER"
  7458. name="SPECTER"
  7459. series="Helmet"
  7460. latestVersion="1.0.9"
  7461. latestVersionVoicePrompt="1.7"
  7462. show = "-1" >
  7463. <productMenu id="protocol"
  7464. type="2" >
  7465. </productMenu>
  7466. <productMenu id="ota"
  7467. type="2" >
  7468. <otaLanguages>
  7469. <otaLanguage
  7470. id="0"
  7471. name="English"
  7472. package="0"
  7473. />
  7474. <otaLanguage
  7475. id="0"
  7476. name="French"
  7477. package="1"
  7478. />
  7479. <otaLanguage
  7480. id="0"
  7481. name="Spanish"
  7482. package="2"
  7483. />
  7484. <otaLanguage
  7485. id="0"
  7486. name="Italian"
  7487. package="3"
  7488. />
  7489. <otaLanguage
  7490. id="0"
  7491. name="German"
  7492. package="4"
  7493. />
  7494. <otaLanguage
  7495. id="0"
  7496. name="Dutch"
  7497. package="5"
  7498. />
  7499. <otaLanguage
  7500. id="0"
  7501. name="Russian"
  7502. package="6"
  7503. />
  7504. <otaLanguage
  7505. id="0"
  7506. name="Chinese"
  7507. package="7"
  7508. />
  7509. <otaLanguage
  7510. id="0"
  7511. name="Korean"
  7512. package="8"
  7513. />
  7514. <otaLanguage
  7515. id="0"
  7516. name="Japanese"
  7517. package="9"
  7518. />
  7519. <otaLanguage
  7520. id="0"
  7521. name="Finnish"
  7522. package="10"
  7523. />
  7524. <otaLanguage
  7525. id="0"
  7526. name="Polish"
  7527. package="11"
  7528. />
  7529. </otaLanguages>
  7530. <otaPackages>
  7531. <package
  7532. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7533. size="5183988"
  7534. />
  7535. <package
  7536. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7537. size="5183988"
  7538. />
  7539. <package
  7540. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7541. size="5183988"
  7542. />
  7543. <package
  7544. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7545. size="5183988"
  7546. />
  7547. <package
  7548. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7549. size="5183988"
  7550. />
  7551. <package
  7552. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7553. size="5183988"
  7554. />
  7555. <package
  7556. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7557. size="5183988"
  7558. />
  7559. <package
  7560. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7561. size="5183988"
  7562. />
  7563. <package
  7564. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7565. size="5183988"
  7566. />
  7567. <package
  7568. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7569. size="5183988"
  7570. />
  7571. <package
  7572. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7573. size="5183988"
  7574. />
  7575. <package
  7576. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7577. size="5183988"
  7578. />
  7579. </otaPackages>
  7580. </productMenu>
  7581. <productMenu id="wa"
  7582. type="0" >
  7583. </productMenu>
  7584. <productMenu id="led"
  7585. type="5" >
  7586. </productMenu>
  7587. <productMenu id="led+"
  7588. type="2"
  7589. url="1" >
  7590. </productMenu>
  7591. <productMenu id="meshIntercom+"
  7592. type="3"
  7593. url="2" >
  7594. </productMenu>
  7595. <productMenu id="waveIntercom"
  7596. type="1" >
  7597. </productMenu>
  7598. <productMenu id="fmradio"
  7599. type="0" >
  7600. </productMenu>
  7601. <productMenu id="phone"
  7602. type="1" >
  7603. </productMenu>
  7604. <productMenu id="music"
  7605. type="1" >
  7606. </productMenu>
  7607. <productMenu id="musicSharing"
  7608. type="0" >
  7609. </productMenu>
  7610. <productMenu id="deviceSetting"
  7611. type="1"
  7612. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7613. <productMenuURL version="1.0.4"
  7614. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7615. />
  7616. <productMenuURL version="1.0"
  7617. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7618. />
  7619. </productMenu>
  7620. <productMenu id="quickGuide"
  7621. type="0"
  7622. url=""
  7623. size="1.12MB" >
  7624. </productMenu>
  7625. <productMenu id="userGuide"
  7626. type="1"
  7627. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7628. size="2.0MB" >
  7629. </productMenu>
  7630. <productMenu id="videoGuide"
  7631. type="0"
  7632. url=""
  7633. size="3.41MB" >
  7634. </productMenu>
  7635. <productMenu id="volume"
  7636. type="16" >
  7637. </productMenu>
  7638. <productMenu id="volume+"
  7639. type="2"
  7640. url="0x6004" >
  7641. </productMenu>
  7642. <productMenu id="battery"
  7643. type="1" >
  7644. </productMenu>
  7645. <productID id="6A0A"
  7646. />
  7647. <productGroupable type="0"
  7648. />
  7649. </product>
  7650. <product id="OUTLANDER"
  7651. name="OUTLANDER"
  7652. series="Helmet"
  7653. latestVersion="1.0.9"
  7654. latestVersionVoicePrompt="1.7"
  7655. show = "1" >
  7656. <productMenu id="protocol"
  7657. type="2" >
  7658. </productMenu>
  7659. <productMenu id="ota"
  7660. type="2" >
  7661. <otaLanguages>
  7662. <otaLanguage
  7663. id="0"
  7664. name="English"
  7665. package="0"
  7666. />
  7667. <otaLanguage
  7668. id="0"
  7669. name="French"
  7670. package="1"
  7671. />
  7672. <otaLanguage
  7673. id="0"
  7674. name="Spanish"
  7675. package="2"
  7676. />
  7677. <otaLanguage
  7678. id="0"
  7679. name="Italian"
  7680. package="3"
  7681. />
  7682. <otaLanguage
  7683. id="0"
  7684. name="German"
  7685. package="4"
  7686. />
  7687. <otaLanguage
  7688. id="0"
  7689. name="Dutch"
  7690. package="5"
  7691. />
  7692. <otaLanguage
  7693. id="0"
  7694. name="Russian"
  7695. package="6"
  7696. />
  7697. <otaLanguage
  7698. id="0"
  7699. name="Chinese"
  7700. package="7"
  7701. />
  7702. <otaLanguage
  7703. id="0"
  7704. name="Korean"
  7705. package="8"
  7706. />
  7707. <otaLanguage
  7708. id="0"
  7709. name="Japanese"
  7710. package="9"
  7711. />
  7712. <otaLanguage
  7713. id="0"
  7714. name="Finnish"
  7715. package="10"
  7716. />
  7717. <otaLanguage
  7718. id="0"
  7719. name="Polish"
  7720. package="11"
  7721. />
  7722. </otaLanguages>
  7723. <otaPackages>
  7724. <package
  7725. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7726. size="5183988"
  7727. />
  7728. <package
  7729. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7730. size="5183988"
  7731. />
  7732. <package
  7733. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7734. size="5183988"
  7735. />
  7736. <package
  7737. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7738. size="5183988"
  7739. />
  7740. <package
  7741. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7742. size="5183988"
  7743. />
  7744. <package
  7745. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7746. size="5183988"
  7747. />
  7748. <package
  7749. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7750. size="5183988"
  7751. />
  7752. <package
  7753. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7754. size="5183988"
  7755. />
  7756. <package
  7757. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7758. size="5183988"
  7759. />
  7760. <package
  7761. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7762. size="5183988"
  7763. />
  7764. <package
  7765. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7766. size="5183988"
  7767. />
  7768. <package
  7769. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7770. size="5183988"
  7771. />
  7772. </otaPackages>
  7773. </productMenu>
  7774. <productMenu id="wa"
  7775. type="0" >
  7776. </productMenu>
  7777. <productMenu id="led"
  7778. type="5" >
  7779. </productMenu>
  7780. <productMenu id="led+"
  7781. type="2"
  7782. url="1" >
  7783. </productMenu>
  7784. <productMenu id="meshIntercom+"
  7785. type="3"
  7786. url="2" >
  7787. </productMenu>
  7788. <productMenu id="waveIntercom"
  7789. type="1" >
  7790. </productMenu>
  7791. <productMenu id="fmradio"
  7792. type="0" >
  7793. </productMenu>
  7794. <productMenu id="phone"
  7795. type="1" >
  7796. </productMenu>
  7797. <productMenu id="music"
  7798. type="1" >
  7799. </productMenu>
  7800. <productMenu id="musicSharing"
  7801. type="0" >
  7802. </productMenu>
  7803. <productMenu id="deviceSetting"
  7804. type="1"
  7805. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7806. <productMenuURL version="1.0.4"
  7807. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7808. />
  7809. </productMenu>
  7810. <productMenu id="quickGuide"
  7811. type="0"
  7812. url=""
  7813. size="1.12MB" >
  7814. </productMenu>
  7815. <productMenu id="userGuide"
  7816. type="1"
  7817. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7818. size="2.0MB" >
  7819. </productMenu>
  7820. <productMenu id="videoGuide"
  7821. type="0"
  7822. url=""
  7823. size="3.41MB" >
  7824. </productMenu>
  7825. <productMenu id="volume"
  7826. type="16" >
  7827. </productMenu>
  7828. <productMenu id="volume+"
  7829. type="2"
  7830. url="0x6004" >
  7831. </productMenu>
  7832. <productMenu id="battery"
  7833. type="1" >
  7834. </productMenu>
  7835. <productID id="6A05"
  7836. />
  7837. <productGroupable type="0"
  7838. />
  7839. </product>
  7840. <product id="OUTRUSH2"
  7841. name="OUTRUSH 2"
  7842. series="Helmet"
  7843. latestVersion="1.0.3"
  7844. latestVersionVoicePrompt="1.6"
  7845. show = "1" >
  7846. <productMenu id="protocol"
  7847. type="2" >
  7848. </productMenu>
  7849. <productMenu id="alexa"
  7850. type="0" >
  7851. </productMenu>
  7852. <productMenu id="ota"
  7853. type="2" >
  7854. <otaPackages>
  7855. <package
  7856. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7857. size="2945812"
  7858. />
  7859. </otaPackages>
  7860. </productMenu>
  7861. <productMenu id="meshIntercom+"
  7862. type="3"
  7863. url="2" >
  7864. </productMenu>
  7865. <productMenu id="waveIntercom"
  7866. type="1" >
  7867. </productMenu>
  7868. <productMenu id="phone"
  7869. type="1" >
  7870. </productMenu>
  7871. <productMenu id="music"
  7872. type="1" >
  7873. </productMenu>
  7874. <productMenu id="musicSharing"
  7875. type="0" >
  7876. </productMenu>
  7877. <productMenu id="deviceSetting"
  7878. type="1"
  7879. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7880. <productMenuURL version="1.0"
  7881. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7882. />
  7883. </productMenu>
  7884. <productMenu id="quickGuide"
  7885. type="0"
  7886. url=""
  7887. size="1.12MB" >
  7888. </productMenu>
  7889. <productMenu id="userGuide"
  7890. type="1"
  7891. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7892. size="2.0MB" >
  7893. </productMenu>
  7894. <productMenu id="volume"
  7895. type="12" >
  7896. </productMenu>
  7897. <productMenu id="battery"
  7898. type="1" >
  7899. </productMenu>
  7900. <productID id="684A"
  7901. />
  7902. <productGroupable type="0"
  7903. />
  7904. </product>
  7905. <product id="OUTSTAR2"
  7906. name="OUTSTAR 2"
  7907. series="Helmet"
  7908. latestVersion="1.0.2"
  7909. latestVersionVoicePrompt="1.6"
  7910. show = "1" >
  7911. <productMenu id="protocol"
  7912. type="2" >
  7913. </productMenu>
  7914. <productMenu id="alexa"
  7915. type="0" >
  7916. </productMenu>
  7917. <productMenu id="ota"
  7918. type="2" >
  7919. <otaPackages>
  7920. <package
  7921. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7922. size="2945812"
  7923. />
  7924. </otaPackages>
  7925. </productMenu>
  7926. <productMenu id="meshIntercom+"
  7927. type="3"
  7928. url="2" >
  7929. </productMenu>
  7930. <productMenu id="waveIntercom"
  7931. type="1" >
  7932. </productMenu>
  7933. <productMenu id="phone"
  7934. type="1" >
  7935. </productMenu>
  7936. <productMenu id="music"
  7937. type="1" >
  7938. </productMenu>
  7939. <productMenu id="musicSharing"
  7940. type="0" >
  7941. </productMenu>
  7942. <productMenu id="deviceSetting"
  7943. type="1"
  7944. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7945. </productMenu>
  7946. <productMenu id="quickGuide"
  7947. type="0"
  7948. url=""
  7949. size="1.12MB" >
  7950. </productMenu>
  7951. <productMenu id="userGuide"
  7952. type="1"
  7953. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7954. size="2.0MB" >
  7955. </productMenu>
  7956. <productMenu id="volume"
  7957. type="12" >
  7958. </productMenu>
  7959. <productMenu id="battery"
  7960. type="1" >
  7961. </productMenu>
  7962. <productID id="684B"
  7963. />
  7964. <productGroupable type="0"
  7965. />
  7966. </product>
  7967. <product id="SURGE"
  7968. name="SURGE"
  7969. series="Helmet"
  7970. latestVersion="1.2"
  7971. latestVersionVoicePrompt="1.3"
  7972. show = "1" >
  7973. <productMenu id="protocol"
  7974. type="2" >
  7975. </productMenu>
  7976. <productMenu id="alexa"
  7977. type="0" >
  7978. </productMenu>
  7979. <productMenu id="ota"
  7980. type="2" >
  7981. <otaPackages>
  7982. <package
  7983. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7984. size="2945812"
  7985. />
  7986. </otaPackages>
  7987. </productMenu>
  7988. <productMenu id="meshIntercom"
  7989. type="30" >
  7990. </productMenu>
  7991. <productMenu id="meshIntercom+"
  7992. type="3"
  7993. url="2" >
  7994. <productMenuType version="1.0.1"
  7995. type="2"
  7996. />
  7997. </productMenu>
  7998. <productMenu id="waveIntercom"
  7999. type="1" >
  8000. <productMenuType version="1.0.9"
  8001. type="0"
  8002. />
  8003. </productMenu>
  8004. <productMenu id="phone"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="music"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="musicSharing"
  8011. type="0" >
  8012. </productMenu>
  8013. <productMenu id="deviceSetting"
  8014. type="1"
  8015. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8016. <productMenuURL version="1.1.9"
  8017. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8018. />
  8019. <productMenuURL version="1.0.1"
  8020. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8021. />
  8022. </productMenu>
  8023. <productMenu id="quickGuide"
  8024. type="0"
  8025. url=""
  8026. size="1.12MB" >
  8027. </productMenu>
  8028. <productMenu id="userGuide"
  8029. type="1"
  8030. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8031. size="2.0MB" >
  8032. </productMenu>
  8033. <productMenu id="volume"
  8034. type="12" >
  8035. </productMenu>
  8036. <productMenu id="battery"
  8037. type="1" >
  8038. </productMenu>
  8039. <productID id="6840"
  8040. />
  8041. <productGroupable type="0"
  8042. />
  8043. </product>
  8044. <product id="Cavalry2"
  8045. name="Cavalry 2"
  8046. series="Helmet"
  8047. latestVersion="1.2"
  8048. latestVersionVoicePrompt="1.3"
  8049. show = "1" >
  8050. <productMenu id="protocol"
  8051. type="2" >
  8052. </productMenu>
  8053. <productMenu id="alexa"
  8054. type="0" >
  8055. </productMenu>
  8056. <productMenu id="ota"
  8057. type="2" >
  8058. <otaPackages>
  8059. <package
  8060. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8061. size="3144148"
  8062. />
  8063. </otaPackages>
  8064. </productMenu>
  8065. <productMenu id="wa"
  8066. type="0" >
  8067. </productMenu>
  8068. <productMenu id="meshIntercom"
  8069. type="30" >
  8070. </productMenu>
  8071. <productMenu id="meshIntercom+"
  8072. type="3"
  8073. url="2" >
  8074. <productMenuType version="1.0"
  8075. type="2"
  8076. />
  8077. </productMenu>
  8078. <productMenu id="waveIntercom"
  8079. type="1" >
  8080. <productMenuType version="1.0.9"
  8081. type="0"
  8082. />
  8083. </productMenu>
  8084. <productMenu id="phone"
  8085. type="1" >
  8086. </productMenu>
  8087. <productMenu id="music"
  8088. type="1" >
  8089. </productMenu>
  8090. <productMenu id="musicSharing"
  8091. type="0" >
  8092. </productMenu>
  8093. <productMenu id="deviceSetting"
  8094. type="1"
  8095. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8096. <productMenuURL version="1.1.9"
  8097. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8098. />
  8099. <productMenuURL version="1.0"
  8100. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8101. />
  8102. </productMenu>
  8103. <productMenu id="quickGuide"
  8104. type="0"
  8105. url=""
  8106. size="1.12MB" >
  8107. </productMenu>
  8108. <productMenu id="userGuide"
  8109. type="1"
  8110. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8111. size="2.0MB" >
  8112. </productMenu>
  8113. <productMenu id="connectGuide"
  8114. type="1"
  8115. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8116. size="1.12MB" >
  8117. </productMenu>
  8118. <productMenu id="volume"
  8119. type="12" >
  8120. </productMenu>
  8121. <productMenu id="battery"
  8122. type="1" >
  8123. </productMenu>
  8124. <productID id="6839"
  8125. />
  8126. <productGroupable type="0"
  8127. />
  8128. </product>
  8129. <product id="Cavalry"
  8130. name="Cavalry"
  8131. series="Helmet"
  8132. latestVersion="1.2.2"
  8133. show = "1" >
  8134. <productMenu id="protocol"
  8135. type="0">
  8136. </productMenu>
  8137. <productMenu id="sip"
  8138. type="1" >
  8139. </productMenu>
  8140. <productMenu id="bluetoothIntercom"
  8141. type="1" >
  8142. </productMenu>
  8143. <productMenu id="phone"
  8144. type="2" >
  8145. </productMenu>
  8146. <productMenu id="fmradio"
  8147. type="3" >
  8148. </productMenu>
  8149. <productMenu id="deviceSetting"
  8150. type="1"
  8151. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8152. <productMenuURL version="1.9"
  8153. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8154. />
  8155. <productMenuURL version="1.0.1"
  8156. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8157. />
  8158. </productMenu>
  8159. <productMenu id="quickGuide"
  8160. type="1"
  8161. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8162. size="795KB" >
  8163. </productMenu>
  8164. <productMenu id="userGuide"
  8165. type="1"
  8166. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8167. size="1.87MB" >
  8168. </productMenu>
  8169. <productMenu id="connectGuide"
  8170. type="1"
  8171. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8172. size="1.12MB" >
  8173. </productMenu>
  8174. <productID id="5524"
  8175. />
  8176. <productGroupable type="0"
  8177. />
  8178. </product>
  8179. <product id="Cavalry_Lite"
  8180. name="Cavalry Lite"
  8181. series="Helmet"
  8182. latestVersion="1.0.2"
  8183. show = "1" >
  8184. <productMenu id="protocol"
  8185. type="0">
  8186. </productMenu>
  8187. <productMenu id="sip"
  8188. type="1" >
  8189. </productMenu>
  8190. <productMenu id="bluetoothIntercom"
  8191. type="1" >
  8192. </productMenu>
  8193. <productMenu id="phone"
  8194. type="2" >
  8195. </productMenu>
  8196. <productMenu id="fmradio"
  8197. type="3" >
  8198. </productMenu>
  8199. <productMenu id="deviceSetting"
  8200. type="1"
  8201. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8202. </productMenu>
  8203. <productMenu id="userGuide"
  8204. type="1"
  8205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8206. size="1.74MB" >
  8207. </productMenu>
  8208. <productMenu id="connectGuide"
  8209. type="1"
  8210. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8211. size="1.12MB" >
  8212. </productMenu>
  8213. <productID id="5536"
  8214. />
  8215. <productGroupable type="0"
  8216. />
  8217. </product>
  8218. <product id="VORTEX"
  8219. name="VORTEX"
  8220. series="VORTEX"
  8221. latestVersion="1.0.2"
  8222. latestVersionVoicePrompt="1.0"
  8223. show = "1" >
  8224. <productMenu id="protocol"
  8225. type="2" >
  8226. </productMenu>
  8227. <productMenu id="warranty"
  8228. type="1" >
  8229. </productMenu>
  8230. <productMenu id="serialNumber"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="ota"
  8234. type="2" >
  8235. <otaLanguages>
  8236. <otaLanguage
  8237. id="0"
  8238. name="English"
  8239. package="0"
  8240. />
  8241. <otaLanguage
  8242. id="0"
  8243. name="French"
  8244. package="1"
  8245. />
  8246. <otaLanguage
  8247. id="0"
  8248. name="Spanish"
  8249. package="2"
  8250. />
  8251. <otaLanguage
  8252. id="0"
  8253. name="Italian"
  8254. package="3"
  8255. />
  8256. <otaLanguage
  8257. id="0"
  8258. name="German"
  8259. package="4"
  8260. />
  8261. <otaLanguage
  8262. id="0"
  8263. name="Dutch"
  8264. package="5"
  8265. />
  8266. <otaLanguage
  8267. id="0"
  8268. name="Russian"
  8269. package="6"
  8270. />
  8271. <otaLanguage
  8272. id="0"
  8273. name="Chinese"
  8274. package="7"
  8275. />
  8276. <otaLanguage
  8277. id="0"
  8278. name="Korean"
  8279. package="8"
  8280. />
  8281. <otaLanguage
  8282. id="0"
  8283. name="Japanese"
  8284. package="9"
  8285. />
  8286. <otaLanguage
  8287. id="0"
  8288. name="Finnish"
  8289. package="10"
  8290. />
  8291. <otaLanguage
  8292. id="0"
  8293. name="Polish"
  8294. package="11"
  8295. />
  8296. </otaLanguages>
  8297. <otaPackages>
  8298. <package
  8299. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8300. size="5183988"
  8301. />
  8302. <package
  8303. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8304. size="5183988"
  8305. />
  8306. <package
  8307. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8308. size="5183988"
  8309. />
  8310. <package
  8311. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8312. size="5183988"
  8313. />
  8314. <package
  8315. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8316. size="5183988"
  8317. />
  8318. <package
  8319. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8320. size="5183988"
  8321. />
  8322. <package
  8323. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8324. size="5183988"
  8325. />
  8326. <package
  8327. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8328. size="5183988"
  8329. />
  8330. <package
  8331. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8332. size="5183988"
  8333. />
  8334. <package
  8335. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8336. size="5183988"
  8337. />
  8338. <package
  8339. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8340. size="5183988"
  8341. />
  8342. <package
  8343. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8344. size="5183988"
  8345. />
  8346. </otaPackages>
  8347. </productMenu>
  8348. <productMenu id="sip"
  8349. type="1" >
  8350. </productMenu>
  8351. <productMenu id="bluetoothIntercom"
  8352. type="1" >
  8353. </productMenu>
  8354. <productMenu id="phone"
  8355. type="1" >
  8356. </productMenu>
  8357. <productMenu id="music"
  8358. type="1" >
  8359. </productMenu>
  8360. <productMenu id="fmradio"
  8361. type="1"
  8362. url="1" >
  8363. </productMenu>
  8364. <productMenu id="deviceSetting"
  8365. type="1"
  8366. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8367. </productMenu>
  8368. <productMenu id="quickGuide"
  8369. type="0"
  8370. url=""
  8371. size="934KB" >
  8372. </productMenu>
  8373. <productMenu id="userGuide"
  8374. type="1"
  8375. url=""
  8376. size="1.14MB" >
  8377. </productMenu>
  8378. <productMenu id="connectGuide"
  8379. type="0"
  8380. url=""
  8381. size="1.12MB" >
  8382. </productMenu>
  8383. <productMenu id="volume"
  8384. type="15" >
  8385. </productMenu>
  8386. <productMenu id="volume+"
  8387. type="2"
  8388. url="0x0018" >
  8389. </productMenu>
  8390. <productMenu id="appearance"
  8391. type="1"
  8392. url="1|white,silver,black" >
  8393. </productMenu>
  8394. <productID id="3451"
  8395. />
  8396. <productGroupable type="0"
  8397. />
  8398. </product>
  8399. <product id="SF4"
  8400. name="SF4"
  8401. series="SF"
  8402. latestVersion="1.1.5"
  8403. show = "-1" >
  8404. <productMenu id="protocol"
  8405. type="1"
  8406. url="3">
  8407. </productMenu>
  8408. <productMenu id="sip"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="bluetoothIntercom"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="phone"
  8415. type="1" >
  8416. </productMenu>
  8417. <productMenu id="music"
  8418. type="1" >
  8419. </productMenu>
  8420. <productMenu id="fmradio"
  8421. type="1" >
  8422. </productMenu>
  8423. <productMenu id="deviceSetting"
  8424. type="1"
  8425. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8426. <productMenuURL version="1.0.1"
  8427. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8428. />
  8429. </productMenu>
  8430. <productMenu id="quickGuide"
  8431. type="1"
  8432. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8433. size="607KB" >
  8434. </productMenu>
  8435. <productMenu id="userGuide"
  8436. type="1"
  8437. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8438. size="1.91MB" >
  8439. </productMenu>
  8440. <productMenu id="volume"
  8441. type="4" >
  8442. </productMenu>
  8443. <productID id="5414"
  8444. />
  8445. <productGroupable type="0"
  8446. />
  8447. </product>
  8448. <product id="SF4"
  8449. name="SF4"
  8450. series="SF"
  8451. latestVersion="3.4.4"
  8452. show = "1" >
  8453. <productMenu id="protocol"
  8454. type="2" >
  8455. </productMenu>
  8456. <productMenu id="sip"
  8457. type="1" >
  8458. </productMenu>
  8459. <productMenu id="bluetoothIntercom"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="phone"
  8463. type="1" >
  8464. </productMenu>
  8465. <productMenu id="music"
  8466. type="1" >
  8467. </productMenu>
  8468. <productMenu id="fmradio"
  8469. type="1" >
  8470. </productMenu>
  8471. <productMenu id="deviceSetting"
  8472. type="1"
  8473. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8474. <productMenuURL version="3.0"
  8475. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8476. />
  8477. </productMenu>
  8478. <productMenu id="quickGuide"
  8479. type="0"
  8480. url=""
  8481. size="934KB" >
  8482. </productMenu>
  8483. <productMenu id="userGuide"
  8484. type="1"
  8485. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8486. size="1.14MB" >
  8487. </productMenu>
  8488. <productMenu id="connectGuide"
  8489. type="1"
  8490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8491. size="1.12MB" >
  8492. </productMenu>
  8493. <productMenu id="volume"
  8494. type="15" >
  8495. </productMenu>
  8496. <productID id="3370"
  8497. />
  8498. <productGroupable type="0"
  8499. />
  8500. </product>
  8501. <product id="SF2"
  8502. name="SF2"
  8503. series="SF"
  8504. latestVersion="1.2.1"
  8505. show = "-1" >
  8506. <productMenu id="protocol"
  8507. type="1"
  8508. url="2">
  8509. </productMenu>
  8510. <productMenu id="sip"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="bluetoothIntercom"
  8514. type="1" >
  8515. </productMenu>
  8516. <productMenu id="phone"
  8517. type="1" >
  8518. </productMenu>
  8519. <productMenu id="music"
  8520. type="1" >
  8521. </productMenu>
  8522. <productMenu id="fmradio"
  8523. type="1" >
  8524. </productMenu>
  8525. <productMenu id="deviceSetting"
  8526. type="1"
  8527. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8528. <productMenuURL version="1.0.1"
  8529. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8530. />
  8531. </productMenu>
  8532. <productMenu id="quickGuide"
  8533. type="1"
  8534. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8535. size="607KB" >
  8536. </productMenu>
  8537. <productMenu id="userGuide"
  8538. type="1"
  8539. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8540. size="1.91MB" >
  8541. </productMenu>
  8542. <productMenu id="volume"
  8543. type="4" >
  8544. </productMenu>
  8545. <productID id="5412"
  8546. />
  8547. <productGroupable type="0"
  8548. />
  8549. </product>
  8550. <product id="SF2"
  8551. name="SF2"
  8552. series="SF"
  8553. latestVersion="3.3.4"
  8554. show = "1" >
  8555. <productMenu id="protocol"
  8556. type="2" >
  8557. </productMenu>
  8558. <productMenu id="sip"
  8559. type="1" >
  8560. </productMenu>
  8561. <productMenu id="bluetoothIntercom"
  8562. type="1" >
  8563. </productMenu>
  8564. <productMenu id="phone"
  8565. type="1" >
  8566. </productMenu>
  8567. <productMenu id="music"
  8568. type="1" >
  8569. </productMenu>
  8570. <productMenu id="fmradio"
  8571. type="0" >
  8572. </productMenu>
  8573. <productMenu id="deviceSetting"
  8574. type="1"
  8575. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8576. <productMenuURL version="3.0"
  8577. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8578. />
  8579. </productMenu>
  8580. <productMenu id="quickGuide"
  8581. type="0"
  8582. url=""
  8583. size="934KB" >
  8584. </productMenu>
  8585. <productMenu id="userGuide"
  8586. type="1"
  8587. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8588. size="1.14MB" >
  8589. </productMenu>
  8590. <productMenu id="connectGuide"
  8591. type="1"
  8592. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8593. size="1.12MB" >
  8594. </productMenu>
  8595. <productMenu id="volume"
  8596. type="15" >
  8597. </productMenu>
  8598. <productID id="3360"
  8599. />
  8600. <productGroupable type="0"
  8601. />
  8602. </product>
  8603. <product id="SF1"
  8604. name="SF1"
  8605. series="SF"
  8606. latestVersion="2.0.5"
  8607. show = "-1" >
  8608. <productMenu id="protocol"
  8609. type="1"
  8610. url="1">
  8611. </productMenu>
  8612. <productMenu id="sip"
  8613. type="1" >
  8614. </productMenu>
  8615. <productMenu id="bluetoothIntercom"
  8616. type="1" >
  8617. <productMenuType version="1.1"
  8618. type="0"
  8619. />
  8620. </productMenu>
  8621. <productMenu id="phone"
  8622. type="1" >
  8623. </productMenu>
  8624. <productMenu id="music"
  8625. type="1" >
  8626. </productMenu>
  8627. <productMenu id="deviceSetting"
  8628. type="1"
  8629. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8630. <productMenuURL version="1.1"
  8631. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8632. />
  8633. <productMenuURL version="1.0"
  8634. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8635. />
  8636. </productMenu>
  8637. <productMenu id="quickGuide"
  8638. type="1"
  8639. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8640. size="401KB" >
  8641. </productMenu>
  8642. <productMenu id="userGuide"
  8643. type="1"
  8644. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8645. size="1.91MB" >
  8646. </productMenu>
  8647. <productMenu id="volume"
  8648. type="3" >
  8649. </productMenu>
  8650. <productID id="5410"
  8651. />
  8652. <productGroupable type="0"
  8653. />
  8654. </product>
  8655. <product id="SF1"
  8656. name="SF1"
  8657. series="SF"
  8658. latestVersion="3.3.4"
  8659. show = "1" >
  8660. <productMenu id="protocol"
  8661. type="2" >
  8662. </productMenu>
  8663. <productMenu id="sip"
  8664. type="1" >
  8665. </productMenu>
  8666. <productMenu id="bluetoothIntercom"
  8667. type="1" >
  8668. </productMenu>
  8669. <productMenu id="phone"
  8670. type="1" >
  8671. </productMenu>
  8672. <productMenu id="music"
  8673. type="1" >
  8674. </productMenu>
  8675. <productMenu id="fmradio"
  8676. type="0" >
  8677. </productMenu>
  8678. <productMenu id="deviceSetting"
  8679. type="1"
  8680. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8681. <productMenuURL version="3.0"
  8682. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8683. />
  8684. </productMenu>
  8685. <productMenu id="quickGuide"
  8686. type="0"
  8687. url=""
  8688. size="934KB" >
  8689. </productMenu>
  8690. <productMenu id="userGuide"
  8691. type="1"
  8692. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8693. size="1.14MB" >
  8694. </productMenu>
  8695. <productMenu id="connectGuide"
  8696. type="1"
  8697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8698. size="1.12MB" >
  8699. </productMenu>
  8700. <productMenu id="volume"
  8701. type="15" >
  8702. </productMenu>
  8703. <productID id="3350"
  8704. />
  8705. <productGroupable type="0"
  8706. />
  8707. </product>
  8708. <product id="SFR"
  8709. name="SFR"
  8710. series="SF"
  8711. latestVersion="1.1.1"
  8712. show = "1" >
  8713. <productMenu id="protocol"
  8714. type="1"
  8715. url="3">
  8716. </productMenu>
  8717. <productMenu id="sip"
  8718. type="1" >
  8719. </productMenu>
  8720. <productMenu id="bluetoothIntercom"
  8721. type="1" >
  8722. </productMenu>
  8723. <productMenu id="phone"
  8724. type="1" >
  8725. </productMenu>
  8726. <productMenu id="music"
  8727. type="1" >
  8728. </productMenu>
  8729. <productMenu id="fmradio"
  8730. type="1" >
  8731. </productMenu>
  8732. <productMenu id="deviceSetting"
  8733. type="1"
  8734. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8735. </productMenu>
  8736. <productMenu id="quickGuide"
  8737. type="1"
  8738. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8739. size="607KB" >
  8740. </productMenu>
  8741. <productMenu id="userGuide"
  8742. type="1"
  8743. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8744. size="1.91MB" >
  8745. </productMenu>
  8746. <productMenu id="volume"
  8747. type="4" >
  8748. </productMenu>
  8749. <productID id="5418"
  8750. />
  8751. <productGroupable type="0"
  8752. />
  8753. </product>
  8754. <product id="20S"
  8755. name="20S"
  8756. series="20"
  8757. latestVersion="2.2.3"
  8758. show = "1" >
  8759. <productMenu id="protocol"
  8760. type="0">
  8761. </productMenu>
  8762. <productMenu id="wa"
  8763. type="5" >
  8764. </productMenu>
  8765. <productMenu id="sip"
  8766. type="1" >
  8767. <productMenuType version="1.0"
  8768. type="0"
  8769. />
  8770. </productMenu>
  8771. <productMenu id="bluetoothIntercom"
  8772. type="1" >
  8773. <productMenuType version="1.0"
  8774. type="0"
  8775. />
  8776. </productMenu>
  8777. <productMenu id="intercomSetting"
  8778. type="1" >
  8779. </productMenu>
  8780. <productMenu id="phone"
  8781. type="2" >
  8782. </productMenu>
  8783. <productMenu id="fmradio"
  8784. type="3" >
  8785. </productMenu>
  8786. <productMenu id="deviceSetting"
  8787. type="1"
  8788. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8789. <productMenuURL version="2.0.2"
  8790. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8791. />
  8792. <productMenuURL version="1.5"
  8793. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8794. />
  8795. <productMenuURL version="1.4.1"
  8796. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8797. />
  8798. <productMenuURL version="1.1"
  8799. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8800. />
  8801. <productMenuURL version="1.0"
  8802. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8803. />
  8804. </productMenu>
  8805. <productMenu id="quickGuide"
  8806. type="0"
  8807. url=""
  8808. size="264KB" >
  8809. </productMenu>
  8810. <productMenu id="userGuide"
  8811. type="1"
  8812. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8813. size="3.09MB" >
  8814. </productMenu>
  8815. <productMenu id="connectGuide"
  8816. type="1"
  8817. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8818. size="1.12MB" >
  8819. </productMenu>
  8820. <productID id="4210"
  8821. />
  8822. <productGroupable type="1"
  8823. />
  8824. </product>
  8825. <product id="20S_EVO"
  8826. name="20S EVO"
  8827. series="20"
  8828. latestVersion="2.2.3"
  8829. show = "1" >
  8830. <productMenu id="protocol"
  8831. type="0">
  8832. </productMenu>
  8833. <productMenu id="wa"
  8834. type="5" >
  8835. </productMenu>
  8836. <productMenu id="sip"
  8837. type="1" >
  8838. <productMenuType version="1.0"
  8839. type="0"
  8840. />
  8841. </productMenu>
  8842. <productMenu id="bluetoothIntercom"
  8843. type="1" >
  8844. <productMenuType version="1.0"
  8845. type="0"
  8846. />
  8847. </productMenu>
  8848. <productMenu id="intercomSetting"
  8849. type="1" >
  8850. </productMenu>
  8851. <productMenu id="phone"
  8852. type="2" >
  8853. </productMenu>
  8854. <productMenu id="fmradio"
  8855. type="3" >
  8856. </productMenu>
  8857. <productMenu id="deviceSetting"
  8858. type="1"
  8859. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8860. <productMenuURL version="2.0.2"
  8861. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8862. />
  8863. <productMenuURL version="1.5"
  8864. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8865. />
  8866. <productMenuURL version="1.4.1"
  8867. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8868. />
  8869. <productMenuURL version="1.1"
  8870. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8871. />
  8872. <productMenuURL version="1.0"
  8873. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8874. />
  8875. </productMenu>
  8876. <productMenu id="quickGuide"
  8877. type="0"
  8878. url=""
  8879. size="264KB" >
  8880. </productMenu>
  8881. <productMenu id="userGuide"
  8882. type="1"
  8883. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8884. size="3.09MB" >
  8885. </productMenu>
  8886. <productMenu id="connectGuide"
  8887. type="1"
  8888. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8889. size="1.12MB" >
  8890. </productMenu>
  8891. <productID id="4210"
  8892. />
  8893. <productProductKey key="16"
  8894. />
  8895. <productGroupable type="1"
  8896. />
  8897. </product>
  8898. <product id="10S"
  8899. name="10S"
  8900. series="10"
  8901. latestVersion="3.0.2"
  8902. show = "1" >
  8903. <productMenu id="protocol"
  8904. type="3" >
  8905. </productMenu>
  8906. <productMenu id="sip"
  8907. type="1" >
  8908. </productMenu>
  8909. <productMenu id="bluetoothIntercom"
  8910. type="1" >
  8911. </productMenu>
  8912. <productMenu id="phone"
  8913. type="1" >
  8914. </productMenu>
  8915. <productMenu id="deviceSetting"
  8916. type="1"
  8917. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8918. </productMenu>
  8919. <productMenu id="quickGuide"
  8920. type="1"
  8921. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8922. size="934KB" >
  8923. </productMenu>
  8924. <productMenu id="userGuide"
  8925. type="1"
  8926. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8927. size="1.14MB" >
  8928. </productMenu>
  8929. <productMenu id="connectGuide"
  8930. type="1"
  8931. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8932. size="1.12MB" >
  8933. </productMenu>
  8934. <productID id="3380"
  8935. />
  8936. <productGroupable type="0"
  8937. />
  8938. </product>
  8939. <product id="10S"
  8940. name="10S"
  8941. series="10"
  8942. latestVersion="2.1.1"
  8943. show = "-1" >
  8944. <productMenu id="protocol"
  8945. type="0">
  8946. </productMenu>
  8947. <productMenu id="sip"
  8948. type="1" >
  8949. </productMenu>
  8950. <productMenu id="bluetoothIntercom"
  8951. type="1" >
  8952. </productMenu>
  8953. <productMenu id="phone"
  8954. type="2" >
  8955. </productMenu>
  8956. <productMenu id="fmradio"
  8957. type="3" >
  8958. </productMenu>
  8959. <productMenu id="deviceSetting"
  8960. type="1"
  8961. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8962. <productMenuURL version="1.5"
  8963. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8964. />
  8965. <productMenuURL version="1.3.1"
  8966. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8967. />
  8968. </productMenu>
  8969. <productMenu id="quickGuide"
  8970. type="1"
  8971. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8972. size="310KB" >
  8973. </productMenu>
  8974. <productMenu id="userGuide"
  8975. type="1"
  8976. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8977. size="1.57MB" >
  8978. </productMenu>
  8979. <productID id="5530"
  8980. />
  8981. <productGroupable type="0"
  8982. />
  8983. </product>
  8984. <product id="Apex"
  8985. name="Apex"
  8986. series="Apex"
  8987. latestVersion="1.0"
  8988. latestVersionVoicePrompt="1.0"
  8989. show = "-1" >
  8990. <productMenu id="protocol"
  8991. type="2" >
  8992. </productMenu>
  8993. <productMenu id="serialNumber"
  8994. type="1" >
  8995. </productMenu>
  8996. <productMenu id="ota"
  8997. type="0" >
  8998. <otaLanguages>
  8999. <otaLanguage
  9000. id="0"
  9001. name="English"
  9002. package="0"
  9003. />
  9004. <otaLanguage
  9005. id="0"
  9006. name="French"
  9007. package="1"
  9008. />
  9009. <otaLanguage
  9010. id="0"
  9011. name="Spanish"
  9012. package="2"
  9013. />
  9014. <otaLanguage
  9015. id="0"
  9016. name="Italian"
  9017. package="3"
  9018. />
  9019. <otaLanguage
  9020. id="0"
  9021. name="German"
  9022. package="4"
  9023. />
  9024. <otaLanguage
  9025. id="0"
  9026. name="Dutch"
  9027. package="5"
  9028. />
  9029. <otaLanguage
  9030. id="0"
  9031. name="Russian"
  9032. package="6"
  9033. />
  9034. <otaLanguage
  9035. id="0"
  9036. name="Chinese"
  9037. package="7"
  9038. />
  9039. <otaLanguage
  9040. id="0"
  9041. name="Korean"
  9042. package="8"
  9043. />
  9044. <otaLanguage
  9045. id="0"
  9046. name="Japanese"
  9047. package="9"
  9048. />
  9049. <otaLanguage
  9050. id="0"
  9051. name="Finnish"
  9052. package="10"
  9053. />
  9054. <otaLanguage
  9055. id="0"
  9056. name="Polish"
  9057. package="11"
  9058. />
  9059. </otaLanguages>
  9060. <otaPackages>
  9061. <package
  9062. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  9063. size="5183988"
  9064. />
  9065. <package
  9066. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  9067. size="5183988"
  9068. />
  9069. <package
  9070. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  9071. size="5183988"
  9072. />
  9073. <package
  9074. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  9075. size="5183988"
  9076. />
  9077. <package
  9078. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  9079. size="5183988"
  9080. />
  9081. <package
  9082. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  9083. size="5183988"
  9084. />
  9085. <package
  9086. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  9087. size="5183988"
  9088. />
  9089. <package
  9090. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  9091. size="5183988"
  9092. />
  9093. <package
  9094. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  9095. size="5183988"
  9096. />
  9097. <package
  9098. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  9099. size="5183988"
  9100. />
  9101. <package
  9102. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  9103. size="5183988"
  9104. />
  9105. <package
  9106. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  9107. size="5183988"
  9108. />
  9109. </otaPackages>
  9110. </productMenu>
  9111. <productMenu id="sip"
  9112. type="1" >
  9113. </productMenu>
  9114. <productMenu id="bluetoothIntercom"
  9115. type="1" >
  9116. </productMenu>
  9117. <productMenu id="phone"
  9118. type="1" >
  9119. </productMenu>
  9120. <productMenu id="music"
  9121. type="1" >
  9122. </productMenu>
  9123. <productMenu id="fmradio"
  9124. type="1"
  9125. url="1" >
  9126. </productMenu>
  9127. <productMenu id="deviceSetting"
  9128. type="1"
  9129. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml" >
  9130. </productMenu>
  9131. <productMenu id="quickGuide"
  9132. type="0"
  9133. url=""
  9134. size="934KB" >
  9135. </productMenu>
  9136. <productMenu id="userGuide"
  9137. type="1"
  9138. url=""
  9139. size="1.14MB" >
  9140. </productMenu>
  9141. <productMenu id="volume+"
  9142. type="2"
  9143. url="0x0000" >
  9144. </productMenu>
  9145. <productMenu id="appearance"
  9146. type="1"
  9147. url="1|white,silver,black" >
  9148. </productMenu>
  9149. <productMenu id="battery"
  9150. type="1" >
  9151. </productMenu>
  9152. <productID id="3452"
  9153. />
  9154. <productGroupable type="0"
  9155. />
  9156. </product>
  9157. <product id="ApexPlus"
  9158. name="Apex Plus"
  9159. series="Apex"
  9160. latestVersion="1.0"
  9161. latestVersionVoicePrompt="1.0"
  9162. show = "-1" >
  9163. <productMenu id="protocol"
  9164. type="2" >
  9165. </productMenu>
  9166. <productMenu id="serialNumber"
  9167. type="1" >
  9168. </productMenu>
  9169. <productMenu id="ota"
  9170. type="0" >
  9171. <otaLanguages>
  9172. <otaLanguage
  9173. id="0"
  9174. name="English"
  9175. package="0"
  9176. />
  9177. <otaLanguage
  9178. id="0"
  9179. name="French"
  9180. package="1"
  9181. />
  9182. <otaLanguage
  9183. id="0"
  9184. name="Spanish"
  9185. package="2"
  9186. />
  9187. <otaLanguage
  9188. id="0"
  9189. name="Italian"
  9190. package="3"
  9191. />
  9192. <otaLanguage
  9193. id="0"
  9194. name="German"
  9195. package="4"
  9196. />
  9197. <otaLanguage
  9198. id="0"
  9199. name="Dutch"
  9200. package="5"
  9201. />
  9202. <otaLanguage
  9203. id="0"
  9204. name="Russian"
  9205. package="6"
  9206. />
  9207. <otaLanguage
  9208. id="0"
  9209. name="Chinese"
  9210. package="7"
  9211. />
  9212. <otaLanguage
  9213. id="0"
  9214. name="Korean"
  9215. package="8"
  9216. />
  9217. <otaLanguage
  9218. id="0"
  9219. name="Japanese"
  9220. package="9"
  9221. />
  9222. <otaLanguage
  9223. id="0"
  9224. name="Finnish"
  9225. package="10"
  9226. />
  9227. <otaLanguage
  9228. id="0"
  9229. name="Polish"
  9230. package="11"
  9231. />
  9232. </otaLanguages>
  9233. <otaPackages>
  9234. <package
  9235. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9236. size="5183988"
  9237. />
  9238. <package
  9239. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9240. size="5183988"
  9241. />
  9242. <package
  9243. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9244. size="5183988"
  9245. />
  9246. <package
  9247. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9248. size="5183988"
  9249. />
  9250. <package
  9251. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9252. size="5183988"
  9253. />
  9254. <package
  9255. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9256. size="5183988"
  9257. />
  9258. <package
  9259. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9260. size="5183988"
  9261. />
  9262. <package
  9263. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9264. size="5183988"
  9265. />
  9266. <package
  9267. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9268. size="5183988"
  9269. />
  9270. <package
  9271. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9272. size="5183988"
  9273. />
  9274. <package
  9275. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9276. size="5183988"
  9277. />
  9278. <package
  9279. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9280. size="5183988"
  9281. />
  9282. </otaPackages>
  9283. </productMenu>
  9284. <productMenu id="sip"
  9285. type="1" >
  9286. </productMenu>
  9287. <productMenu id="bluetoothIntercom"
  9288. type="1" >
  9289. </productMenu>
  9290. <productMenu id="phone"
  9291. type="1" >
  9292. </productMenu>
  9293. <productMenu id="music"
  9294. type="1" >
  9295. </productMenu>
  9296. <productMenu id="fmradio"
  9297. type="1"
  9298. url="1" >
  9299. </productMenu>
  9300. <productMenu id="deviceSetting"
  9301. type="1"
  9302. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml" >
  9303. </productMenu>
  9304. <productMenu id="quickGuide"
  9305. type="0"
  9306. url=""
  9307. size="934KB" >
  9308. </productMenu>
  9309. <productMenu id="userGuide"
  9310. type="1"
  9311. url=""
  9312. size="1.14MB" >
  9313. </productMenu>
  9314. <productMenu id="volume+"
  9315. type="2"
  9316. url="0x0000" >
  9317. </productMenu>
  9318. <productMenu id="appearance"
  9319. type="1"
  9320. url="1|white,silver,black" >
  9321. </productMenu>
  9322. <productMenu id="battery"
  9323. type="1" >
  9324. </productMenu>
  9325. <productID id="3453"
  9326. />
  9327. <productGroupable type="0"
  9328. />
  9329. </product>
  9330. <product id="10R2"
  9331. name="10R 2"
  9332. series="10"
  9333. latestVersion="0.9"
  9334. latestVersionVoicePrompt="1.1"
  9335. show = "-1" >
  9336. <productMenu id="protocol"
  9337. type="2" >
  9338. </productMenu>
  9339. <productMenu id="ota"
  9340. type="2" >
  9341. <otaPackages>
  9342. <package
  9343. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9344. size="2945812"
  9345. />
  9346. </otaPackages>
  9347. </productMenu>
  9348. <productMenu id="sip"
  9349. type="1" >
  9350. </productMenu>
  9351. <productMenu id="bluetoothIntercom"
  9352. type="1" >
  9353. </productMenu>
  9354. <productMenu id="phone"
  9355. type="1" >
  9356. </productMenu>
  9357. <productMenu id="music"
  9358. type="1" >
  9359. </productMenu>
  9360. <productMenu id="fmradio"
  9361. type="1"
  9362. url="1" >
  9363. </productMenu>
  9364. <productMenu id="deviceSetting"
  9365. type="1"
  9366. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9367. </productMenu>
  9368. <productMenu id="quickGuide"
  9369. type="1"
  9370. url=""
  9371. size="934KB" >
  9372. </productMenu>
  9373. <productMenu id="userGuide"
  9374. type="0"
  9375. url=""
  9376. size="1.14MB" >
  9377. </productMenu>
  9378. <productMenu id="volume"
  9379. type="15" >
  9380. </productMenu>
  9381. <productID id="4000"
  9382. />
  9383. <productGroupable type="0"
  9384. />
  9385. </product>
  9386. <product id="10R"
  9387. name="10R"
  9388. series="10"
  9389. latestVersion="2.1.1"
  9390. show = "1" >
  9391. <productMenu id="protocol"
  9392. type="0">
  9393. </productMenu>
  9394. <productMenu id="sip"
  9395. type="1" >
  9396. <productMenuType version="1.0.2"
  9397. type="0"
  9398. />
  9399. </productMenu>
  9400. <productMenu id="bluetoothIntercom"
  9401. type="1" >
  9402. <productMenuType version="1.0.2"
  9403. type="0"
  9404. />
  9405. </productMenu>
  9406. <productMenu id="phone"
  9407. type="2" >
  9408. </productMenu>
  9409. <productMenu id="fmradio"
  9410. type="3" >
  9411. </productMenu>
  9412. <productMenu id="deviceSetting"
  9413. type="1"
  9414. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9415. <productMenuURL version="1.4"
  9416. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9417. />
  9418. <productMenuURL version="1.2.1"
  9419. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9420. />
  9421. <productMenuURL version="1.0.2"
  9422. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9423. />
  9424. <productMenuURL version="1.0"
  9425. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9426. />
  9427. </productMenu>
  9428. <productMenu id="quickGuide"
  9429. type="1"
  9430. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9431. size="400KB" >
  9432. </productMenu>
  9433. <productMenu id="userGuide"
  9434. type="1"
  9435. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9436. size="2.75MB" >
  9437. </productMenu>
  9438. <productMenu id="connectGuide"
  9439. type="1"
  9440. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9441. size="1.12MB" >
  9442. </productMenu>
  9443. <productID id="5520"
  9444. />
  9445. <productGroupable type="0"
  9446. />
  9447. </product>
  9448. <product id="10C_EVO"
  9449. name="10C EVO"
  9450. series="10"
  9451. latestVersion="1.7"
  9452. show = "1" >
  9453. <productMenu id="protocol"
  9454. type="0">
  9455. </productMenu>
  9456. <productMenu id="sip"
  9457. type="1" >
  9458. </productMenu>
  9459. <productMenu id="bluetoothIntercom"
  9460. type="1" >
  9461. </productMenu>
  9462. <productMenu id="phone"
  9463. type="2" >
  9464. </productMenu>
  9465. <productMenu id="fmradio"
  9466. type="3" >
  9467. </productMenu>
  9468. <productMenu id="deviceSetting"
  9469. type="1"
  9470. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9471. <productMenuURL version="1.3.1"
  9472. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9473. />
  9474. </productMenu>
  9475. <productMenu id="quickGuide"
  9476. type="1"
  9477. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9478. size="1.32MB" >
  9479. </productMenu>
  9480. <productMenu id="userGuide"
  9481. type="1"
  9482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9483. size="1.68MB" >
  9484. </productMenu>
  9485. <productMenu id="connectGuide"
  9486. type="1"
  9487. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9488. size="1.12MB" >
  9489. </productMenu>
  9490. <productID id="5570"
  9491. />
  9492. <productGroupable type="0"
  9493. />
  9494. </product>
  9495. <product id="10C_Pro"
  9496. name="10C Pro"
  9497. series="10"
  9498. latestVersion="2.7.1"
  9499. show = "1" >
  9500. <productMenu id="protocol"
  9501. type="0">
  9502. </productMenu>
  9503. <productMenu id="sip"
  9504. type="1" >
  9505. </productMenu>
  9506. <productMenu id="bluetoothIntercom"
  9507. type="1" >
  9508. </productMenu>
  9509. <productMenu id="phone"
  9510. type="2" >
  9511. </productMenu>
  9512. <productMenu id="fmradio"
  9513. type="3" >
  9514. </productMenu>
  9515. <productMenu id="deviceSetting"
  9516. type="1"
  9517. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9518. <productMenuURL version="2.5.1"
  9519. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9520. />
  9521. <productMenuURL version="1.0"
  9522. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9523. />
  9524. </productMenu>
  9525. <productMenu id="quickGuide"
  9526. type="1"
  9527. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9528. size="651KB" >
  9529. </productMenu>
  9530. <productMenu id="userGuide"
  9531. type="1"
  9532. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9533. size="2.34MB" >
  9534. </productMenu>
  9535. <productMenu id="connectGuide"
  9536. type="1"
  9537. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9538. size="1.12MB" >
  9539. </productMenu>
  9540. <productID id="5580"
  9541. />
  9542. <productGroupable type="0"
  9543. />
  9544. </product>
  9545. <product id="10C"
  9546. name="10C"
  9547. series="10"
  9548. latestVersion="3.0.4"
  9549. show = "1" >
  9550. <productMenu id="protocol"
  9551. type="0">
  9552. </productMenu>
  9553. <productMenu id="sip"
  9554. type="1" >
  9555. <productMenuType version="1.0.4"
  9556. type="0"
  9557. />
  9558. </productMenu>
  9559. <productMenu id="bluetoothIntercom"
  9560. type="1" >
  9561. <productMenuType version="1.0.4"
  9562. type="0"
  9563. />
  9564. </productMenu>
  9565. <productMenu id="phone"
  9566. type="2" >
  9567. </productMenu>
  9568. <productMenu id="fmradio"
  9569. type="3" >
  9570. </productMenu>
  9571. <productMenu id="deviceSetting"
  9572. type="1"
  9573. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9574. <productMenuURL version="2.3"
  9575. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9576. />
  9577. <productMenuURL version="2.1.1"
  9578. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9579. />
  9580. <productMenuURL version="1.0.4"
  9581. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9582. />
  9583. <productMenuURL version="1.0.2"
  9584. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9585. />
  9586. </productMenu>
  9587. <productMenu id="quickGuide"
  9588. type="1"
  9589. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9590. size="935KB" >
  9591. </productMenu>
  9592. <productMenu id="userGuide"
  9593. type="1"
  9594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9595. size="2.82MB" >
  9596. </productMenu>
  9597. <productMenu id="connectGuide"
  9598. type="1"
  9599. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9600. size="1.12MB" >
  9601. </productMenu>
  9602. <productID id="5510"
  9603. />
  9604. <productGroupable type="0"
  9605. />
  9606. </product>
  9607. <product id="10U_GT_AIR"
  9608. name="10U GT-Air"
  9609. series="10"
  9610. latestVersion="2.0.4"
  9611. show = "1" >
  9612. <productMenu id="protocol"
  9613. type="0">
  9614. </productMenu>
  9615. <productMenu id="sip"
  9616. type="1" >
  9617. <productMenuType version="1.0.2"
  9618. type="0"
  9619. />
  9620. </productMenu>
  9621. <productMenu id="bluetoothIntercom"
  9622. type="1" >
  9623. <productMenuType version="1.0.2"
  9624. type="0"
  9625. />
  9626. </productMenu>
  9627. <productMenu id="phone"
  9628. type="2" >
  9629. </productMenu>
  9630. <productMenu id="fmradio"
  9631. type="3" >
  9632. </productMenu>
  9633. <productMenu id="deviceSetting"
  9634. type="1"
  9635. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9636. <productMenuURL version="1.3.2"
  9637. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9638. />
  9639. <productMenuURL version="1.0.2"
  9640. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9641. />
  9642. </productMenu>
  9643. <productMenu id="quickGuide"
  9644. type="1"
  9645. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9646. size="685KB" >
  9647. </productMenu>
  9648. <productMenu id="userGuide"
  9649. type="1"
  9650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9651. size="684KB" >
  9652. </productMenu>
  9653. <productMenu id="connectGuide"
  9654. type="1"
  9655. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9656. size="1.12MB" >
  9657. </productMenu>
  9658. <productID id="5610"
  9659. />
  9660. <productGroupable type="0"
  9661. />
  9662. </product>
  9663. <product id="10U_NEOTEC"
  9664. name="10U Neotec"
  9665. series="10"
  9666. latestVersion="2.0.4"
  9667. show = "1" >
  9668. <productMenu id="protocol"
  9669. type="0">
  9670. </productMenu>
  9671. <productMenu id="sip"
  9672. type="1" >
  9673. <productMenuType version="1.0.2"
  9674. type="0"
  9675. />
  9676. </productMenu>
  9677. <productMenu id="bluetoothIntercom"
  9678. type="1" >
  9679. <productMenuType version="1.0.2"
  9680. type="0"
  9681. />
  9682. </productMenu>
  9683. <productMenu id="phone"
  9684. type="2" >
  9685. </productMenu>
  9686. <productMenu id="fmradio"
  9687. type="3" >
  9688. </productMenu>
  9689. <productMenu id="deviceSetting"
  9690. type="1"
  9691. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9692. <productMenuURL version="1.3.2"
  9693. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9694. />
  9695. <productMenuURL version="1.0.2"
  9696. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9697. />
  9698. </productMenu>
  9699. <productMenu id="quickGuide"
  9700. type="1"
  9701. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9702. size="689KB" >
  9703. </productMenu>
  9704. <productMenu id="userGuide"
  9705. type="1"
  9706. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9707. size="684KB" >
  9708. </productMenu>
  9709. <productMenu id="connectGuide"
  9710. type="1"
  9711. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9712. size="1.12MB" >
  9713. </productMenu>
  9714. <productID id="5611"
  9715. />
  9716. <productGroupable type="0"
  9717. />
  9718. </product>
  9719. <product id="10U_J_CRUISE"
  9720. name="10U J-Cruise"
  9721. series="10"
  9722. latestVersion="2.0.4"
  9723. show = "1" >
  9724. <productMenu id="protocol"
  9725. type="0">
  9726. </productMenu>
  9727. <productMenu id="sip"
  9728. type="1" >
  9729. <productMenuType version="1.0.2"
  9730. type="0"
  9731. />
  9732. </productMenu>
  9733. <productMenu id="bluetoothIntercom"
  9734. type="1" >
  9735. <productMenuType version="1.0.2"
  9736. type="0"
  9737. />
  9738. </productMenu>
  9739. <productMenu id="phone"
  9740. type="2" >
  9741. </productMenu>
  9742. <productMenu id="fmradio"
  9743. type="3" >
  9744. </productMenu>
  9745. <productMenu id="deviceSetting"
  9746. type="1"
  9747. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9748. <productMenuURL version="1.3.2"
  9749. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9750. />
  9751. <productMenuURL version="1.0.2"
  9752. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9753. />
  9754. </productMenu>
  9755. <productMenu id="quickGuide"
  9756. type="1"
  9757. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9758. size="686KB" >
  9759. </productMenu>
  9760. <productMenu id="userGuide"
  9761. type="1"
  9762. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9763. size="684KB" >
  9764. </productMenu>
  9765. <productMenu id="connectGuide"
  9766. type="1"
  9767. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9768. size="1.12MB" >
  9769. </productMenu>
  9770. <productID id="5612"
  9771. />
  9772. <productGroupable type="0"
  9773. />
  9774. </product>
  9775. <product id="10U_C3"
  9776. name="10U C3/C3Pro"
  9777. series="10"
  9778. latestVersion="2.0.4"
  9779. show = "1" >
  9780. <productMenu id="protocol"
  9781. type="0">
  9782. </productMenu>
  9783. <productMenu id="sip"
  9784. type="1" >
  9785. <productMenuType version="1.0.2"
  9786. type="0"
  9787. />
  9788. </productMenu>
  9789. <productMenu id="bluetoothIntercom"
  9790. type="1" >
  9791. <productMenuType version="1.0.2"
  9792. type="0"
  9793. />
  9794. </productMenu>
  9795. <productMenu id="phone"
  9796. type="2" >
  9797. </productMenu>
  9798. <productMenu id="fmradio"
  9799. type="3" >
  9800. </productMenu>
  9801. <productMenu id="deviceSetting"
  9802. type="1"
  9803. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9804. <productMenuURL version="1.3.2"
  9805. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9806. />
  9807. <productMenuURL version="1.0.2"
  9808. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9809. />
  9810. </productMenu>
  9811. <productMenu id="quickGuide"
  9812. type="1"
  9813. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9814. size="199KB" >
  9815. </productMenu>
  9816. <productMenu id="userGuide"
  9817. type="1"
  9818. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9819. size="684KB" >
  9820. </productMenu>
  9821. <productMenu id="connectGuide"
  9822. type="1"
  9823. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9824. size="1.12MB" >
  9825. </productMenu>
  9826. <productID id="5620"
  9827. />
  9828. <productGroupable type="0"
  9829. />
  9830. </product>
  9831. <product id="10U_ARAI"
  9832. name="10U Arai"
  9833. series="10"
  9834. latestVersion="2.0.4"
  9835. show = "1" >
  9836. <productMenu id="protocol"
  9837. type="0">
  9838. </productMenu>
  9839. <productMenu id="sip"
  9840. type="1" >
  9841. <productMenuType version="1.0.2"
  9842. type="0"
  9843. />
  9844. </productMenu>
  9845. <productMenu id="bluetoothIntercom"
  9846. type="1" >
  9847. <productMenuType version="1.0.2"
  9848. type="0"
  9849. />
  9850. </productMenu>
  9851. <productMenu id="phone"
  9852. type="2" >
  9853. </productMenu>
  9854. <productMenu id="fmradio"
  9855. type="3" >
  9856. </productMenu>
  9857. <productMenu id="deviceSetting"
  9858. type="1"
  9859. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9860. <productMenuURL version="1.3.2"
  9861. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9862. />
  9863. <productMenuURL version="1.0.2"
  9864. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9865. />
  9866. </productMenu>
  9867. <productMenu id="quickGuide"
  9868. type="1"
  9869. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9870. size="689KB" >
  9871. </productMenu>
  9872. <productMenu id="userGuide"
  9873. type="1"
  9874. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9875. size="684KB" >
  9876. </productMenu>
  9877. <productMenu id="connectGuide"
  9878. type="1"
  9879. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9880. size="1.12MB" >
  9881. </productMenu>
  9882. <productID id="5621"
  9883. />
  9884. <productGroupable type="0"
  9885. />
  9886. </product>
  9887. <product id="10Upad"
  9888. name="10Upad"
  9889. series="10"
  9890. latestVersion="2.0.3"
  9891. show = "1" >
  9892. <productMenu id="protocol"
  9893. type="0">
  9894. </productMenu>
  9895. <productMenu id="sip"
  9896. type="1" >
  9897. </productMenu>
  9898. <productMenu id="bluetoothIntercom"
  9899. type="1" >
  9900. </productMenu>
  9901. <productMenu id="phone"
  9902. type="2" >
  9903. </productMenu>
  9904. <productMenu id="fmradio"
  9905. type="3" >
  9906. </productMenu>
  9907. <productMenu id="deviceSetting"
  9908. type="1"
  9909. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9910. <productMenuURL version="1.0.3"
  9911. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9912. />
  9913. </productMenu>
  9914. <productMenu id="quickGuide"
  9915. type="1"
  9916. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9917. size="615KB" >
  9918. </productMenu>
  9919. <productMenu id="userGuide"
  9920. type="1"
  9921. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9922. size="0.99MB" >
  9923. </productMenu>
  9924. <productMenu id="connectGuide"
  9925. type="1"
  9926. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9927. size="1.12MB" >
  9928. </productMenu>
  9929. <productID id="6210"
  9930. />
  9931. <productGroupable type="0"
  9932. />
  9933. </product>
  9934. <product id="5S"
  9935. name="5S"
  9936. series="5"
  9937. latestVersion="2.3.1"
  9938. show = "1" >
  9939. <productMenu id="protocol"
  9940. type="3" >
  9941. </productMenu>
  9942. <productMenu id="sip"
  9943. type="1" >
  9944. </productMenu>
  9945. <productMenu id="bluetoothIntercom"
  9946. type="1" >
  9947. </productMenu>
  9948. <productMenu id="phone"
  9949. type="1" >
  9950. </productMenu>
  9951. <productMenu id="fmradio"
  9952. type="0" >
  9953. </productMenu>
  9954. <productMenu id="deviceSetting"
  9955. type="1"
  9956. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9957. </productMenu>
  9958. <productMenu id="quickGuide"
  9959. type="0"
  9960. url=""
  9961. size="934KB" >
  9962. </productMenu>
  9963. <productMenu id="userGuide"
  9964. type="1"
  9965. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9966. size="1.14MB" >
  9967. </productMenu>
  9968. <productMenu id="connectGuide"
  9969. type="1"
  9970. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9971. size="1.12MB" >
  9972. </productMenu>
  9973. <productID id="5590"
  9974. />
  9975. <productGroupable type="0"
  9976. />
  9977. </product>
  9978. <product id="5S"
  9979. name="5S"
  9980. series="5"
  9981. latestVersion="1.2"
  9982. show = "-1" >
  9983. <productMenu id="protocol"
  9984. type="0">
  9985. </productMenu>
  9986. <productMenu id="sip"
  9987. type="1" >
  9988. </productMenu>
  9989. <productMenu id="bluetoothIntercom"
  9990. type="1" >
  9991. </productMenu>
  9992. <productMenu id="phone"
  9993. type="2" >
  9994. </productMenu>
  9995. <productMenu id="fmradio"
  9996. type="3" >
  9997. </productMenu>
  9998. <productMenu id="deviceSetting"
  9999. type="1"
  10000. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10001. </productMenu>
  10002. <productMenu id="quickGuide"
  10003. type="0"
  10004. url=""
  10005. size="970KB" >
  10006. </productMenu>
  10007. <productMenu id="userGuide"
  10008. type="1"
  10009. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10010. size="1.26MB" >
  10011. </productMenu>
  10012. <productID id="5534"
  10013. />
  10014. <productGroupable type="0"
  10015. />
  10016. </product>
  10017. <product id="5S"
  10018. name="5S"
  10019. series="5"
  10020. latestVersion="3.0.1"
  10021. show = "-1" >
  10022. <productMenu id="protocol"
  10023. type="0">
  10024. </productMenu>
  10025. <productMenu id="sip"
  10026. type="1" >
  10027. </productMenu>
  10028. <productMenu id="bluetoothIntercom"
  10029. type="1" >
  10030. </productMenu>
  10031. <productMenu id="phone"
  10032. type="2" >
  10033. </productMenu>
  10034. <productMenu id="fmradio"
  10035. type="0" >
  10036. </productMenu>
  10037. <productMenu id="deviceSetting"
  10038. type="1"
  10039. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10040. </productMenu>
  10041. <productMenu id="quickGuide"
  10042. type="0"
  10043. url=""
  10044. size="970KB" >
  10045. </productMenu>
  10046. <productMenu id="userGuide"
  10047. type="1"
  10048. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10049. size="1.26MB" >
  10050. </productMenu>
  10051. <productID id="5538"
  10052. />
  10053. <productGroupable type="0"
  10054. />
  10055. </product>
  10056. <product id="3SPLUS"
  10057. name="3S PLUS"
  10058. series="3"
  10059. latestVersion="2.2"
  10060. show = "1" >
  10061. <productMenu id="protocol"
  10062. type="3" >
  10063. </productMenu>
  10064. <productMenu id="sip"
  10065. type="1" >
  10066. </productMenu>
  10067. <productMenu id="bluetoothIntercom"
  10068. type="1" >
  10069. </productMenu>
  10070. <productMenu id="deviceSetting"
  10071. type="1"
  10072. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10073. <productMenuURL version="2.2.1"
  10074. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10075. />
  10076. </productMenu>
  10077. <productMenu id="quickGuide"
  10078. type="1"
  10079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10080. size="344KB" >
  10081. </productMenu>
  10082. <productMenu id="userGuide"
  10083. type="1"
  10084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10085. size="1.14MB" >
  10086. </productMenu>
  10087. <productMenu id="connectGuide"
  10088. type="1"
  10089. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10090. size="1.12MB" >
  10091. </productMenu>
  10092. <productID id="4023"
  10093. />
  10094. <productGroupable type="0"
  10095. />
  10096. </product>
  10097. <product id="3SPLUS"
  10098. name="3S PLUS"
  10099. series="3"
  10100. latestVersion="1.1"
  10101. show = "-1" >
  10102. <productMenu id="protocol"
  10103. type="0">
  10104. </productMenu>
  10105. <productMenu id="sip"
  10106. type="1" >
  10107. </productMenu>
  10108. <productMenu id="bluetoothIntercom"
  10109. type="1" >
  10110. </productMenu>
  10111. <productMenu id="deviceSetting"
  10112. type="1"
  10113. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10114. </productMenu>
  10115. <productMenu id="quickGuide"
  10116. type="1"
  10117. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10118. size="842KB" >
  10119. </productMenu>
  10120. <productMenu id="userGuide"
  10121. type="1"
  10122. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10123. size="1.02MB" >
  10124. </productMenu>
  10125. <productID id="6320"
  10126. />
  10127. <productGroupable type="0"
  10128. />
  10129. </product>
  10130. <product id="AConnect"
  10131. name="Alpinestars A-Connect"
  10132. series="60"
  10133. latestVersion="1.0.2"
  10134. latestVersionMesh="0.19"
  10135. latestVersionVoicePrompt="1.6"
  10136. show = "-1" >
  10137. <productMenu id="protocol"
  10138. type="2" >
  10139. </productMenu>
  10140. <productMenu id="ota"
  10141. type="2" >
  10142. <otaLanguages>
  10143. <otaLanguage
  10144. id="0"
  10145. name="English"
  10146. package="0"
  10147. />
  10148. <otaLanguage
  10149. id="0"
  10150. name="French"
  10151. package="1"
  10152. />
  10153. <otaLanguage
  10154. id="0"
  10155. name="Spanish"
  10156. package="2"
  10157. />
  10158. <otaLanguage
  10159. id="0"
  10160. name="Italian"
  10161. package="3"
  10162. />
  10163. <otaLanguage
  10164. id="0"
  10165. name="German"
  10166. package="4"
  10167. />
  10168. <otaLanguage
  10169. id="0"
  10170. name="Dutch"
  10171. package="5"
  10172. />
  10173. <otaLanguage
  10174. id="0"
  10175. name="Russian"
  10176. package="6"
  10177. />
  10178. <otaLanguage
  10179. id="0"
  10180. name="Chinese"
  10181. package="7"
  10182. />
  10183. <otaLanguage
  10184. id="0"
  10185. name="Korean"
  10186. package="8"
  10187. />
  10188. <otaLanguage
  10189. id="0"
  10190. name="Japanese"
  10191. package="9"
  10192. />
  10193. <otaLanguage
  10194. id="0"
  10195. name="Finnish"
  10196. package="10"
  10197. />
  10198. <otaLanguage
  10199. id="0"
  10200. name="Polish"
  10201. package="11"
  10202. />
  10203. </otaLanguages>
  10204. <otaPackages>
  10205. <package
  10206. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10207. size="5183988"
  10208. />
  10209. <package
  10210. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10211. size="5183988"
  10212. />
  10213. <package
  10214. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10215. size="5183988"
  10216. />
  10217. <package
  10218. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10219. size="5183988"
  10220. />
  10221. <package
  10222. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10223. size="5183988"
  10224. />
  10225. <package
  10226. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10227. size="5183988"
  10228. />
  10229. <package
  10230. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10231. size="5183988"
  10232. />
  10233. <package
  10234. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10235. size="5183988"
  10236. />
  10237. <package
  10238. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10239. size="5183988"
  10240. />
  10241. <package
  10242. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10243. size="5183988"
  10244. />
  10245. <package
  10246. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10247. size="5183988"
  10248. />
  10249. <package
  10250. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10251. size="5183988"
  10252. />
  10253. </otaPackages>
  10254. </productMenu>
  10255. <productMenu id="sip"
  10256. type="1" >
  10257. </productMenu>
  10258. <productMenu id="illusion"
  10259. type="0" >
  10260. </productMenu>
  10261. <productMenu id="meshIntercom+"
  10262. type="3"
  10263. url="2" >
  10264. </productMenu>
  10265. <productMenu id="waveIntercom"
  10266. type="1" >
  10267. </productMenu>
  10268. <productMenu id="bluetoothIntercom"
  10269. type="1"
  10270. url="2" >
  10271. </productMenu>
  10272. <productMenu id="bluetoothIntercomGrouping"
  10273. type="0" >
  10274. </productMenu>
  10275. <productMenu id="fmradio"
  10276. type="1"
  10277. url="1" >
  10278. </productMenu>
  10279. <productMenu id="phone"
  10280. type="1" >
  10281. </productMenu>
  10282. <productMenu id="music"
  10283. type="1" >
  10284. </productMenu>
  10285. <productMenu id="musicSharing"
  10286. type="0" >
  10287. </productMenu>
  10288. <productMenu id="deviceSetting"
  10289. type="1"
  10290. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10291. </productMenu>
  10292. <productMenu id="quickGuide"
  10293. type="0"
  10294. url=""
  10295. size="1.12MB" >
  10296. </productMenu>
  10297. <productMenu id="userGuide"
  10298. type="1"
  10299. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10300. size="2.0MB" >
  10301. </productMenu>
  10302. <productMenu id="videoGuide"
  10303. type="0"
  10304. url=""
  10305. size="3.41MB" >
  10306. </productMenu>
  10307. <productMenu id="volume"
  10308. type="16" >
  10309. </productMenu>
  10310. <productMenu id="volume+"
  10311. type="2"
  10312. url="0x6004" >
  10313. </productMenu>
  10314. <productMenu id="soundMode"
  10315. type="0" >
  10316. </productMenu>
  10317. <productMenu id="battery"
  10318. type="1" >
  10319. </productMenu>
  10320. <productID id="6A82"
  10321. />
  10322. <productGroupable type="0"
  10323. />
  10324. </product>
  10325. <product id="iCon"
  10326. name="iCon"
  10327. series="50"
  10328. latestVersion="1.2"
  10329. show = "0" >
  10330. <productMenu id="protocol"
  10331. type="2" >
  10332. </productMenu>
  10333. <productMenu id="alexa"
  10334. type="0" >
  10335. </productMenu>
  10336. <productMenu id="wa"
  10337. type="0" >
  10338. </productMenu>
  10339. <productMenu id="sip"
  10340. type="1" >
  10341. </productMenu>
  10342. <productMenu id="led"
  10343. type="3" >
  10344. </productMenu>
  10345. <productMenu id="meshIntercom"
  10346. type="20" >
  10347. </productMenu>
  10348. <productMenu id="meshIntercom+"
  10349. type="3"
  10350. url="0" >
  10351. <productMenuType version="1.0.9"
  10352. type="2"
  10353. />
  10354. </productMenu>
  10355. <productMenu id="bluetoothIntercom"
  10356. type="1" >
  10357. </productMenu>
  10358. <productMenu id="phone"
  10359. type="1" >
  10360. </productMenu>
  10361. <productMenu id="music"
  10362. type="1" >
  10363. </productMenu>
  10364. <productMenu id="fmradio"
  10365. type="1" >
  10366. </productMenu>
  10367. <productMenu id="deviceSetting"
  10368. type="1"
  10369. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10370. <productMenuURL version="1.0.9"
  10371. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10372. />
  10373. </productMenu>
  10374. <productMenu id="quickGuide"
  10375. type="1"
  10376. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10377. size="344KB" >
  10378. </productMenu>
  10379. <productMenu id="userGuide"
  10380. type="1"
  10381. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10382. size="3.41MB" >
  10383. </productMenu>
  10384. <productMenu id="volume"
  10385. type="11" >
  10386. </productMenu>
  10387. <productMenu id="battery"
  10388. type="1" >
  10389. </productMenu>
  10390. <productID id="3900"
  10391. />
  10392. <productGroupable type="0"
  10393. />
  10394. </product>
  10395. <product id="ICONHelmLinkSL"
  10396. name="ICON HelmLink SL"
  10397. series="50"
  10398. latestVersion="1.0"
  10399. latestVersionVoicePrompt="1.6"
  10400. show = "-1" >
  10401. <productMenu id="protocol"
  10402. type="2" >
  10403. </productMenu>
  10404. <productMenu id="alexa"
  10405. type="0" >
  10406. </productMenu>
  10407. <productMenu id="ota"
  10408. type="2" >
  10409. <otaPackages>
  10410. <package
  10411. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10412. size="2945812"
  10413. />
  10414. </otaPackages>
  10415. </productMenu>
  10416. <productMenu id="wa"
  10417. type="0" >
  10418. </productMenu>
  10419. <productMenu id="meshIntercom"
  10420. type="30" >
  10421. </productMenu>
  10422. <productMenu id="meshIntercom+"
  10423. type="3"
  10424. url="2" >
  10425. </productMenu>
  10426. <productMenu id="waveIntercom"
  10427. type="1" >
  10428. </productMenu>
  10429. <productMenu id="phone"
  10430. type="1" >
  10431. </productMenu>
  10432. <productMenu id="music"
  10433. type="1" >
  10434. </productMenu>
  10435. <productMenu id="musicSharing"
  10436. type="0" >
  10437. </productMenu>
  10438. <productMenu id="deviceSetting"
  10439. type="1"
  10440. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10441. </productMenu>
  10442. <productMenu id="quickGuide"
  10443. type="0"
  10444. url=""
  10445. size="1.12MB" >
  10446. </productMenu>
  10447. <productMenu id="userGuide"
  10448. type="1"
  10449. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10450. size="2.0MB" >
  10451. </productMenu>
  10452. <productMenu id="volume"
  10453. type="12" >
  10454. </productMenu>
  10455. <productMenu id="battery"
  10456. type="1" >
  10457. </productMenu>
  10458. <productID id="6842"
  10459. />
  10460. <productGroupable type="0"
  10461. />
  10462. </product>
  10463. <product id="HD50S"
  10464. name="H-D Audio 50S"
  10465. series="50"
  10466. latestVersion="1.0.1"
  10467. show = "-1" >
  10468. <productMenu id="protocol"
  10469. type="2" >
  10470. </productMenu>
  10471. <productMenu id="alexa"
  10472. type="0" >
  10473. </productMenu>
  10474. <productMenu id="ota"
  10475. type="0"
  10476. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10477. size="1150234" >
  10478. </productMenu>
  10479. <productMenu id="wa"
  10480. type="1" >
  10481. </productMenu>
  10482. <productMenu id="sip"
  10483. type="1" >
  10484. </productMenu>
  10485. <productMenu id="meshIntercom"
  10486. type="20" >
  10487. </productMenu>
  10488. <productMenu id="meshIntercom+"
  10489. type="3"
  10490. url="0" >
  10491. <productMenuType version="1.0.9"
  10492. type="2"
  10493. />
  10494. </productMenu>
  10495. <productMenu id="bluetoothIntercom"
  10496. type="1" >
  10497. </productMenu>
  10498. <productMenu id="phone"
  10499. type="1" >
  10500. </productMenu>
  10501. <productMenu id="music"
  10502. type="1" >
  10503. </productMenu>
  10504. <productMenu id="fmradio"
  10505. type="1" >
  10506. </productMenu>
  10507. <productMenu id="deviceSetting"
  10508. type="1"
  10509. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10510. <productMenuURL version="1.0.9"
  10511. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10512. />
  10513. </productMenu>
  10514. <productMenu id="quickGuide"
  10515. type="1"
  10516. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10517. size="934KB" >
  10518. </productMenu>
  10519. <productMenu id="userGuide"
  10520. type="1"
  10521. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10522. size="1.14MB" >
  10523. </productMenu>
  10524. <productMenu id="volume"
  10525. type="11" >
  10526. </productMenu>
  10527. <productMenu id="battery"
  10528. type="1" >
  10529. </productMenu>
  10530. <productID id="3156"
  10531. />
  10532. <productGroupable type="0"
  10533. />
  10534. </product>
  10535. <product id="HD50S"
  10536. name="H-D Audio 50S"
  10537. series="50"
  10538. latestVersion="2.0.2"
  10539. show = "0" >
  10540. <productMenu id="protocol"
  10541. type="2" >
  10542. </productMenu>
  10543. <productMenu id="alexa"
  10544. type="0" >
  10545. </productMenu>
  10546. <productMenu id="ota"
  10547. type="0"
  10548. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10549. size="1150234" >
  10550. </productMenu>
  10551. <productMenu id="wa"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="sip"
  10555. type="1" >
  10556. </productMenu>
  10557. <productMenu id="meshIntercom"
  10558. type="20" >
  10559. </productMenu>
  10560. <productMenu id="meshIntercom+"
  10561. type="3"
  10562. url="0" >
  10563. <productMenuType version="2.0.9"
  10564. type="2"
  10565. />
  10566. </productMenu>
  10567. <productMenu id="bluetoothIntercom"
  10568. type="1" >
  10569. </productMenu>
  10570. <productMenu id="phone"
  10571. type="1" >
  10572. </productMenu>
  10573. <productMenu id="music"
  10574. type="1" >
  10575. </productMenu>
  10576. <productMenu id="fmradio"
  10577. type="1" >
  10578. </productMenu>
  10579. <productMenu id="deviceSetting"
  10580. type="1"
  10581. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10582. <productMenuURL version="2.0.9"
  10583. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10584. />
  10585. </productMenu>
  10586. <productMenu id="quickGuide"
  10587. type="1"
  10588. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10589. size="934KB" >
  10590. </productMenu>
  10591. <productMenu id="userGuide"
  10592. type="1"
  10593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10594. size="1.14MB" >
  10595. </productMenu>
  10596. <productMenu id="volume"
  10597. type="11" >
  10598. </productMenu>
  10599. <productMenu id="battery"
  10600. type="1" >
  10601. </productMenu>
  10602. <productID id="3213"
  10603. />
  10604. <productGroupable type="0"
  10605. />
  10606. </product>
  10607. <product id="HD50C"
  10608. name="H-D Audio 50C"
  10609. series="50"
  10610. latestVersion="1.0.1"
  10611. show = "0" >
  10612. <productMenu id="protocol"
  10613. type="2" >
  10614. </productMenu>
  10615. <productMenu id="ota"
  10616. type="0" >
  10617. </productMenu>
  10618. <productMenu id="wa"
  10619. type="1" >
  10620. </productMenu>
  10621. <productMenu id="sip"
  10622. type="1" >
  10623. </productMenu>
  10624. <productMenu id="meshIntercom"
  10625. type="20" >
  10626. </productMenu>
  10627. <productMenu id="meshIntercom+"
  10628. type="3"
  10629. url="0" >
  10630. <productMenuType version="1.0.9"
  10631. type="2"
  10632. />
  10633. </productMenu>
  10634. <productMenu id="bluetoothIntercom"
  10635. type="1" >
  10636. </productMenu>
  10637. <productMenu id="phone"
  10638. type="1" >
  10639. </productMenu>
  10640. <productMenu id="music"
  10641. type="1" >
  10642. </productMenu>
  10643. <productMenu id="fmradio"
  10644. type="1" >
  10645. </productMenu>
  10646. <productMenu id="deviceSetting"
  10647. type="1"
  10648. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10649. <productMenuURL version="1.0.9"
  10650. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10651. />
  10652. </productMenu>
  10653. <productMenu id="quickGuide"
  10654. type="1"
  10655. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10656. size="344KB" >
  10657. </productMenu>
  10658. <productMenu id="userGuide"
  10659. type="1"
  10660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10661. size="3.41MB" >
  10662. </productMenu>
  10663. <productMenu id="volume"
  10664. type="11" >
  10665. </productMenu>
  10666. <productMenu id="battery"
  10667. type="1" >
  10668. </productMenu>
  10669. <productID id="3240"
  10670. />
  10671. <productGroupable type="0"
  10672. />
  10673. </product>
  10674. <product id="HD50S"
  10675. name="FURY N04"
  10676. series="Helmet"
  10677. latestVersion="1.0"
  10678. show = "0" >
  10679. <productMenu id="protocol"
  10680. type="2" >
  10681. </productMenu>
  10682. <productMenu id="alexa"
  10683. type="0" >
  10684. </productMenu>
  10685. <productMenu id="ota"
  10686. type="0" >
  10687. </productMenu>
  10688. <productMenu id="wa"
  10689. type="0" >
  10690. </productMenu>
  10691. <productMenu id="meshIntercom"
  10692. type="20" >
  10693. </productMenu>
  10694. <productMenu id="meshIntercom+"
  10695. type="3"
  10696. url="0" >
  10697. <productMenuType version="1.0.9"
  10698. type="2"
  10699. />
  10700. </productMenu>
  10701. <productMenu id="phone"
  10702. type="1" >
  10703. </productMenu>
  10704. <productMenu id="music"
  10705. type="1" >
  10706. </productMenu>
  10707. <productMenu id="fmradio"
  10708. type="1" >
  10709. </productMenu>
  10710. <productMenu id="deviceSetting"
  10711. type="1"
  10712. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10713. <productMenuURL version="1.0.9"
  10714. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10715. />
  10716. </productMenu>
  10717. <productMenu id="quickGuide"
  10718. type="1"
  10719. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10720. size="1.12MB" >
  10721. </productMenu>
  10722. <productMenu id="userGuide"
  10723. type="1"
  10724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10725. size="2.0MB" >
  10726. </productMenu>
  10727. <productMenu id="volume"
  10728. type="13" >
  10729. </productMenu>
  10730. <productMenu id="battery"
  10731. type="1" >
  10732. </productMenu>
  10733. <productID id="5553"
  10734. />
  10735. <productGroupable type="0"
  10736. />
  10737. </product>
  10738. <product id="XCOM3Pro"
  10739. name="X-COM3 Pro"
  10740. series="50"
  10741. latestVersion="1.1"
  10742. show = "0" >
  10743. <productMenu id="protocol"
  10744. type="2" >
  10745. </productMenu>
  10746. <productMenu id="alexa"
  10747. type="0" >
  10748. </productMenu>
  10749. <productMenu id="ota"
  10750. type="0" >
  10751. </productMenu>
  10752. <productMenu id="wa"
  10753. type="0" >
  10754. </productMenu>
  10755. <productMenu id="sip"
  10756. type="1" >
  10757. </productMenu>
  10758. <productMenu id="meshIntercom"
  10759. type="30" >
  10760. </productMenu>
  10761. <productMenu id="meshIntercom+"
  10762. type="3"
  10763. url="2" >
  10764. <productMenuType version="1.1"
  10765. type="2"
  10766. />
  10767. </productMenu>
  10768. <productMenu id="waveIntercom"
  10769. type="1" >
  10770. <productMenuType version="1.1"
  10771. type="0"
  10772. />
  10773. </productMenu>
  10774. <productMenu id="bluetoothIntercom"
  10775. type="1" >
  10776. </productMenu>
  10777. <productMenu id="phone"
  10778. type="1" >
  10779. </productMenu>
  10780. <productMenu id="music"
  10781. type="1" >
  10782. </productMenu>
  10783. <productMenu id="fmradio"
  10784. type="1" >
  10785. </productMenu>
  10786. <productMenu id="deviceSetting"
  10787. type="1"
  10788. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10789. <productMenuURL version="1.1"
  10790. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10791. />
  10792. </productMenu>
  10793. <productMenu id="quickGuide"
  10794. type="0"
  10795. url=""
  10796. size="344KB" >
  10797. </productMenu>
  10798. <productMenu id="userGuide"
  10799. type="1"
  10800. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10801. size="3.41MB" >
  10802. </productMenu>
  10803. <productMenu id="volume"
  10804. type="11" >
  10805. </productMenu>
  10806. <productMenu id="battery"
  10807. type="1" >
  10808. </productMenu>
  10809. <productID id="321A"
  10810. />
  10811. <productGroupable type="0"
  10812. />
  10813. </product>
  10814. <product id="XCOM3"
  10815. name="X-COM3"
  10816. series="20"
  10817. latestVersion="1.0"
  10818. show = "0" >
  10819. <productMenu id="protocol"
  10820. type="2" >
  10821. </productMenu>
  10822. <productMenu id="sip"
  10823. type="1" >
  10824. </productMenu>
  10825. <productMenu id="bluetoothIntercom"
  10826. type="1" >
  10827. </productMenu>
  10828. <productMenu id="phone"
  10829. type="1" >
  10830. </productMenu>
  10831. <productMenu id="music"
  10832. type="1" >
  10833. </productMenu>
  10834. <productMenu id="fmradio"
  10835. type="1" >
  10836. </productMenu>
  10837. <productMenu id="deviceSetting"
  10838. type="1"
  10839. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10840. </productMenu>
  10841. <productMenu id="quickGuide"
  10842. type="0"
  10843. url=""
  10844. size="934KB" >
  10845. </productMenu>
  10846. <productMenu id="userGuide"
  10847. type="1"
  10848. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10849. size="1.14MB" >
  10850. </productMenu>
  10851. <productMenu id="volume"
  10852. type="15" >
  10853. </productMenu>
  10854. <productID id="3410"
  10855. />
  10856. <productGroupable type="0"
  10857. />
  10858. </product>
  10859. <product id="X-COM2"
  10860. name="X-COM2"
  10861. series="20"
  10862. latestVersion="1.0.5"
  10863. show = "0" >
  10864. <productMenu id="protocol"
  10865. type="0">
  10866. </productMenu>
  10867. <productMenu id="sip"
  10868. type="1" >
  10869. </productMenu>
  10870. <productMenu id="bluetoothIntercom"
  10871. type="1" >
  10872. </productMenu>
  10873. <productMenu id="intercomSetting"
  10874. type="1" >
  10875. </productMenu>
  10876. <productMenu id="phone"
  10877. type="2" >
  10878. </productMenu>
  10879. <productMenu id="fmradio"
  10880. type="3" >
  10881. </productMenu>
  10882. <productMenu id="deviceSetting"
  10883. type="1"
  10884. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10885. </productMenu>
  10886. <productMenu id="quickGuide"
  10887. type="1"
  10888. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10889. size="796KB" >
  10890. </productMenu>
  10891. <productMenu id="userGuide"
  10892. type="1"
  10893. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10894. size="1.90MB" >
  10895. </productMenu>
  10896. <productID id="2030"
  10897. />
  10898. <productGroupable type="1"
  10899. />
  10900. </product>
  10901. <product id="AVAABC"
  10902. name="AVA ABC"
  10903. series="SPIDER"
  10904. latestVersion="1.1"
  10905. show = "0" >
  10906. <productMenu id="protocol"
  10907. type="2" >
  10908. </productMenu>
  10909. <productMenu id="alexa"
  10910. type="0" >
  10911. </productMenu>
  10912. <productMenu id="ota"
  10913. type="0" >
  10914. <productMenuType version="1.0"
  10915. type="0"
  10916. />
  10917. <otaPackages>
  10918. <package
  10919. url="https://api.sena.com/support/OTA/"
  10920. size="2945812"
  10921. />
  10922. </otaPackages>
  10923. </productMenu>
  10924. <productMenu id="wa"
  10925. type="0" >
  10926. </productMenu>
  10927. <productMenu id="meshIntercom"
  10928. type="30" >
  10929. <productMenuType version="1.0"
  10930. type="20"
  10931. />
  10932. </productMenu>
  10933. <productMenu id="meshIntercom+"
  10934. type="3"
  10935. url="2" >
  10936. <productMenuType version="1.0"
  10937. type="2"
  10938. />
  10939. <productMenuURL version="1.0"
  10940. url="0"
  10941. />
  10942. </productMenu>
  10943. <productMenu id="waveIntercom"
  10944. type="1" >
  10945. <productMenuType version="1.0"
  10946. type="0"
  10947. />
  10948. </productMenu>
  10949. <productMenu id="phone"
  10950. type="1" >
  10951. </productMenu>
  10952. <productMenu id="music"
  10953. type="1" >
  10954. </productMenu>
  10955. <productMenu id="musicSharing"
  10956. type="0" >
  10957. </productMenu>
  10958. <productMenu id="deviceSetting"
  10959. type="1"
  10960. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10961. <productMenuURL version="1.0"
  10962. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10963. />
  10964. </productMenu>
  10965. <productMenu id="quickGuide"
  10966. type="1"
  10967. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10968. size="1.12MB" >
  10969. </productMenu>
  10970. <productMenu id="userGuide"
  10971. type="1"
  10972. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10973. size="2.0MB" >
  10974. </productMenu>
  10975. <productMenu id="volume"
  10976. type="12" >
  10977. </productMenu>
  10978. <productMenu id="battery"
  10979. type="1" >
  10980. </productMenu>
  10981. <productID id="6808"
  10982. />
  10983. <productGroupable type="0"
  10984. />
  10985. </product>
  10986. <product id="ADVANCEProCOM2"
  10987. name="ADVANCE ProCOM 2"
  10988. series="Helmet"
  10989. latestVersion="0.5"
  10990. latestVersionVoicePrompt="0.3"
  10991. show = "-1" >
  10992. <productMenu id="protocol"
  10993. type="2" >
  10994. </productMenu>
  10995. <productMenu id="ota"
  10996. type="2" >
  10997. <otaLanguages>
  10998. <otaLanguage
  10999. id="0"
  11000. name="English"
  11001. package="0"
  11002. />
  11003. <otaLanguage
  11004. id="0"
  11005. name="French"
  11006. package="1"
  11007. />
  11008. <otaLanguage
  11009. id="0"
  11010. name="Spanish"
  11011. package="2"
  11012. />
  11013. <otaLanguage
  11014. id="0"
  11015. name="Italian"
  11016. package="3"
  11017. />
  11018. <otaLanguage
  11019. id="0"
  11020. name="German"
  11021. package="4"
  11022. />
  11023. <otaLanguage
  11024. id="0"
  11025. name="Dutch"
  11026. package="5"
  11027. />
  11028. <otaLanguage
  11029. id="0"
  11030. name="Russian"
  11031. package="6"
  11032. />
  11033. <otaLanguage
  11034. id="0"
  11035. name="Chinese"
  11036. package="7"
  11037. />
  11038. <otaLanguage
  11039. id="0"
  11040. name="Korean"
  11041. package="8"
  11042. />
  11043. <otaLanguage
  11044. id="0"
  11045. name="Japanese"
  11046. package="9"
  11047. />
  11048. <otaLanguage
  11049. id="0"
  11050. name="Finnish"
  11051. package="10"
  11052. />
  11053. <otaLanguage
  11054. id="0"
  11055. name="Polish"
  11056. package="11"
  11057. />
  11058. </otaLanguages>
  11059. <otaPackages>
  11060. <package
  11061. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11062. size="5183988"
  11063. />
  11064. <package
  11065. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11066. size="5183988"
  11067. />
  11068. <package
  11069. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11070. size="5183988"
  11071. />
  11072. <package
  11073. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11074. size="5183988"
  11075. />
  11076. <package
  11077. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11078. size="5183988"
  11079. />
  11080. <package
  11081. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11082. size="5183988"
  11083. />
  11084. <package
  11085. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11086. size="5183988"
  11087. />
  11088. <package
  11089. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11090. size="5183988"
  11091. />
  11092. <package
  11093. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11094. size="5183988"
  11095. />
  11096. <package
  11097. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11098. size="5183988"
  11099. />
  11100. <package
  11101. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11102. size="5183988"
  11103. />
  11104. <package
  11105. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11106. size="5183988"
  11107. />
  11108. </otaPackages>
  11109. </productMenu>
  11110. <productMenu id="wa"
  11111. type="0" >
  11112. </productMenu>
  11113. <productMenu id="meshIntercom"
  11114. type="30" >
  11115. </productMenu>
  11116. <productMenu id="meshIntercom+"
  11117. type="3"
  11118. url="2" >
  11119. </productMenu>
  11120. <productMenu id="waveIntercom"
  11121. type="1" >
  11122. </productMenu>
  11123. <productMenu id="fmradio"
  11124. type="1" >
  11125. </productMenu>
  11126. <productMenu id="phone"
  11127. type="0" >
  11128. </productMenu>
  11129. <productMenu id="music"
  11130. type="1" >
  11131. </productMenu>
  11132. <productMenu id="musicSharing"
  11133. type="0" >
  11134. </productMenu>
  11135. <productMenu id="deviceSetting"
  11136. type="1"
  11137. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11138. </productMenu>
  11139. <productMenu id="quickGuide"
  11140. type="0"
  11141. url=""
  11142. size="1.12MB" >
  11143. </productMenu>
  11144. <productMenu id="userGuide"
  11145. type="1"
  11146. url=""
  11147. size="2.0MB" >
  11148. </productMenu>
  11149. <productMenu id="videoGuide"
  11150. type="0"
  11151. url=""
  11152. size="3.41MB" >
  11153. </productMenu>
  11154. <productMenu id="connectGuide"
  11155. type="1"
  11156. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11157. size="1.12MB" >
  11158. </productMenu>
  11159. <productMenu id="volume"
  11160. type="16" >
  11161. </productMenu>
  11162. <productMenu id="battery"
  11163. type="1" >
  11164. </productMenu>
  11165. <productID id="6A85"
  11166. />
  11167. <productGroupable type="0"
  11168. />
  11169. </product>
  11170. <product id="TRIUMPH60X"
  11171. name="TRIUMPH 60X"
  11172. series="60"
  11173. latestVersion="1.0"
  11174. latestVersionMesh="0.19"
  11175. latestVersionVoicePrompt="1.7"
  11176. show = "-1" >
  11177. <productMenu id="protocol"
  11178. type="2" >
  11179. </productMenu>
  11180. <productMenu id="ota"
  11181. type="0" >
  11182. <otaLanguages>
  11183. <otaLanguage
  11184. id="0"
  11185. name="English"
  11186. package="0"
  11187. />
  11188. <otaLanguage
  11189. id="0"
  11190. name="French"
  11191. package="1"
  11192. />
  11193. <otaLanguage
  11194. id="0"
  11195. name="Spanish"
  11196. package="2"
  11197. />
  11198. <otaLanguage
  11199. id="0"
  11200. name="Italian"
  11201. package="3"
  11202. />
  11203. <otaLanguage
  11204. id="0"
  11205. name="German"
  11206. package="4"
  11207. />
  11208. <otaLanguage
  11209. id="0"
  11210. name="Dutch"
  11211. package="5"
  11212. />
  11213. <otaLanguage
  11214. id="0"
  11215. name="Russian"
  11216. package="6"
  11217. />
  11218. <otaLanguage
  11219. id="0"
  11220. name="Chinese"
  11221. package="7"
  11222. />
  11223. <otaLanguage
  11224. id="0"
  11225. name="Korean"
  11226. package="8"
  11227. />
  11228. <otaLanguage
  11229. id="0"
  11230. name="Japanese"
  11231. package="9"
  11232. />
  11233. <otaLanguage
  11234. id="0"
  11235. name="Finnish"
  11236. package="10"
  11237. />
  11238. <otaLanguage
  11239. id="0"
  11240. name="Polish"
  11241. package="11"
  11242. />
  11243. </otaLanguages>
  11244. <otaPackages>
  11245. <package
  11246. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11247. size="5183988"
  11248. />
  11249. <package
  11250. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11251. size="5183988"
  11252. />
  11253. <package
  11254. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11255. size="5183988"
  11256. />
  11257. <package
  11258. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11259. size="5183988"
  11260. />
  11261. <package
  11262. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11263. size="5183988"
  11264. />
  11265. <package
  11266. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11267. size="5183988"
  11268. />
  11269. <package
  11270. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11271. size="5183988"
  11272. />
  11273. <package
  11274. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11275. size="5183988"
  11276. />
  11277. <package
  11278. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11279. size="5183988"
  11280. />
  11281. <package
  11282. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11283. size="5183988"
  11284. />
  11285. <package
  11286. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11287. size="5183988"
  11288. />
  11289. <package
  11290. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11291. size="5183988"
  11292. />
  11293. </otaPackages>
  11294. </productMenu>
  11295. <productMenu id="wa"
  11296. type="0" >
  11297. </productMenu>
  11298. <productMenu id="sip"
  11299. type="1" >
  11300. </productMenu>
  11301. <productMenu id="led"
  11302. type="1" >
  11303. </productMenu>
  11304. <productMenu id="illusion"
  11305. type="1" >
  11306. </productMenu>
  11307. <productMenu id="meshIntercom"
  11308. type="30" >
  11309. </productMenu>
  11310. <productMenu id="meshIntercom+"
  11311. type="3"
  11312. url="2" >
  11313. </productMenu>
  11314. <productMenu id="bluetoothIntercom"
  11315. type="1" >
  11316. </productMenu>
  11317. <productMenu id="fmradio"
  11318. type="1"
  11319. url="1" >
  11320. </productMenu>
  11321. <productMenu id="mic"
  11322. type="0" >
  11323. </productMenu>
  11324. <productMenu id="phone"
  11325. type="1" >
  11326. </productMenu>
  11327. <productMenu id="music"
  11328. type="1" >
  11329. </productMenu>
  11330. <productMenu id="musicSharing"
  11331. type="0" >
  11332. </productMenu>
  11333. <productMenu id="deviceSetting"
  11334. type="1"
  11335. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11336. </productMenu>
  11337. <productMenu id="quickGuide"
  11338. type="0"
  11339. url=""
  11340. size="1.12MB" >
  11341. </productMenu>
  11342. <productMenu id="userGuide"
  11343. type="1"
  11344. url=""
  11345. size="2.0MB" >
  11346. </productMenu>
  11347. <productMenu id="videoGuide"
  11348. type="0"
  11349. url=""
  11350. size="3.41MB" >
  11351. </productMenu>
  11352. <productMenu id="keySettings"
  11353. type="1"
  11354. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11355. </productMenu>
  11356. <productMenu id="volume"
  11357. type="13" >
  11358. </productMenu>
  11359. <productMenu id="volume+"
  11360. type="2"
  11361. url="0x6004" >
  11362. </productMenu>
  11363. <productMenu id="battery"
  11364. type="1" >
  11365. </productMenu>
  11366. <productID id="6A1C"
  11367. />
  11368. <productGroupable type="0"
  11369. />
  11370. </product>
  11371. <product id="Triumph_50S"
  11372. name="Triumph 50S"
  11373. series="50"
  11374. latestVersion="1.5"
  11375. show = "0" >
  11376. <productMenu id="protocol"
  11377. type="2" >
  11378. </productMenu>
  11379. <productMenu id="alexa"
  11380. type="0" >
  11381. </productMenu>
  11382. <productMenu id="ota"
  11383. type="0"
  11384. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11385. size="1150234" >
  11386. </productMenu>
  11387. <productMenu id="wa"
  11388. type="1" >
  11389. </productMenu>
  11390. <productMenu id="sip"
  11391. type="1" >
  11392. </productMenu>
  11393. <productMenu id="meshIntercom"
  11394. type="20" >
  11395. </productMenu>
  11396. <productMenu id="bluetoothIntercom"
  11397. type="1" >
  11398. </productMenu>
  11399. <productMenu id="meshIntercom+"
  11400. type="3"
  11401. url="2" >
  11402. <productMenuType version="1.2.9"
  11403. type="2"
  11404. />
  11405. <productMenuURL version="1.2.9"
  11406. url="0"
  11407. />
  11408. </productMenu>
  11409. <productMenu id="waveIntercom"
  11410. type="1" >
  11411. <productMenuType version="1.2.9"
  11412. type="0"
  11413. />
  11414. </productMenu>
  11415. <productMenu id="phone"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="music"
  11419. type="1" >
  11420. </productMenu>
  11421. <productMenu id="fmradio"
  11422. type="1" >
  11423. </productMenu>
  11424. <productMenu id="deviceSetting"
  11425. type="1"
  11426. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11427. <productMenuURL version="1.2.9"
  11428. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11429. />
  11430. <productMenuURL version="1.0"
  11431. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11432. />
  11433. </productMenu>
  11434. <productMenu id="quickGuide"
  11435. type="1"
  11436. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11437. size="934KB" >
  11438. </productMenu>
  11439. <productMenu id="userGuide"
  11440. type="1"
  11441. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11442. size="1.14MB" >
  11443. </productMenu>
  11444. <productMenu id="volume"
  11445. type="11" >
  11446. </productMenu>
  11447. <productMenu id="battery"
  11448. type="1" >
  11449. </productMenu>
  11450. <productID id="3264"
  11451. />
  11452. <productGroupable type="0"
  11453. />
  11454. </product>
  11455. <product id="RE50S"
  11456. name="RE 50S"
  11457. series="50"
  11458. latestVersion="2.7"
  11459. show = "0" >
  11460. <productMenu id="protocol"
  11461. type="2" >
  11462. </productMenu>
  11463. <productMenu id="alexa"
  11464. type="0" >
  11465. </productMenu>
  11466. <productMenu id="ota"
  11467. type="0"
  11468. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11469. size="1150234" >
  11470. </productMenu>
  11471. <productMenu id="wa"
  11472. type="1" >
  11473. </productMenu>
  11474. <productMenu id="sip"
  11475. type="1" >
  11476. </productMenu>
  11477. <productMenu id="meshIntercom"
  11478. type="30" >
  11479. </productMenu>
  11480. <productMenu id="meshIntercom+"
  11481. type="3"
  11482. url="2" >
  11483. <productMenuType version="2.5"
  11484. type="2"
  11485. />
  11486. </productMenu>
  11487. <productMenu id="waveIntercom"
  11488. type="1" >
  11489. <productMenuType version="2.5"
  11490. type="0"
  11491. />
  11492. </productMenu>
  11493. <productMenu id="bluetoothIntercom"
  11494. type="1" >
  11495. </productMenu>
  11496. <productMenu id="phone"
  11497. type="1" >
  11498. </productMenu>
  11499. <productMenu id="music"
  11500. type="1" >
  11501. </productMenu>
  11502. <productMenu id="fmradio"
  11503. type="1" >
  11504. </productMenu>
  11505. <productMenu id="deviceSetting"
  11506. type="1"
  11507. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11508. <productMenuURL version="2.5.9"
  11509. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11510. />
  11511. </productMenu>
  11512. <productMenu id="quickGuide"
  11513. type="1"
  11514. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11515. size="934KB" >
  11516. </productMenu>
  11517. <productMenu id="userGuide"
  11518. type="1"
  11519. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11520. size="1.14MB" >
  11521. </productMenu>
  11522. <productMenu id="videoGuide"
  11523. type="0"
  11524. url=""
  11525. size="3.41MB" >
  11526. </productMenu>
  11527. <productMenu id="volume"
  11528. type="11" >
  11529. </productMenu>
  11530. <productMenu id="battery"
  11531. type="1" >
  11532. </productMenu>
  11533. <productID id="321C"
  11534. />
  11535. <productGroupable type="0"
  11536. />
  11537. </product>
  11538. <product id="BMW_HELMET_II_U1"
  11539. name="BMW HELMET II U1"
  11540. series="50"
  11541. latestVersion="1.0"
  11542. show = "0" >
  11543. <productMenu id="protocol"
  11544. type="2" >
  11545. </productMenu>
  11546. <productMenu id="alexa"
  11547. type="0" >
  11548. </productMenu>
  11549. <productMenu id="sip"
  11550. type="1" >
  11551. </productMenu>
  11552. <productMenu id="meshIntercom"
  11553. type="20" >
  11554. </productMenu>
  11555. <productMenu id="bluetoothIntercom"
  11556. type="1" >
  11557. </productMenu>
  11558. <productMenu id="bluetoothIntercom2"
  11559. type="1" >
  11560. </productMenu>
  11561. <productMenu id="phone"
  11562. type="1" >
  11563. </productMenu>
  11564. <productMenu id="music"
  11565. type="1" >
  11566. </productMenu>
  11567. <productMenu id="fmradio"
  11568. type="1" >
  11569. </productMenu>
  11570. <productMenu id="deviceSetting"
  11571. type="1"
  11572. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11573. </productMenu>
  11574. <productMenu id="quickGuide"
  11575. type="1"
  11576. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11577. size="934KB" >
  11578. </productMenu>
  11579. <productMenu id="userGuide"
  11580. type="1"
  11581. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11582. size="1.14MB" >
  11583. </productMenu>
  11584. <productMenu id="volume"
  11585. type="11" >
  11586. </productMenu>
  11587. <productMenu id="battery"
  11588. type="1" >
  11589. </productMenu>
  11590. <productID id="3260"
  11591. />
  11592. <productGroupable type="0"
  11593. />
  11594. </product>
  11595. <product id="OUTRUSHR"
  11596. name="CX935"
  11597. series="Helmet"
  11598. latestVersion="2.1"
  11599. show = "-1" >
  11600. <productMenu id="protocol"
  11601. type="3">
  11602. </productMenu>
  11603. <productMenu id="sip"
  11604. type="1" >
  11605. </productMenu>
  11606. <productMenu id="bluetoothIntercom"
  11607. type="1" >
  11608. </productMenu>
  11609. <productMenu id="phone"
  11610. type="1" >
  11611. </productMenu>
  11612. <productMenu id="fmradio"
  11613. type="0" >
  11614. </productMenu>
  11615. <productMenu id="deviceSetting"
  11616. type="1"
  11617. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11618. </productMenu>
  11619. <productMenu id="userGuide"
  11620. type="1"
  11621. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11622. size="660KB" >
  11623. </productMenu>
  11624. <productID id="5446"
  11625. />
  11626. <productGroupable type="0"
  11627. />
  11628. </product>
  11629. <product id="LSE_01"
  11630. name="LSE-01"
  11631. series="SF"
  11632. latestVersion="1.2.3"
  11633. show = "0" >
  11634. <productMenu id="protocol"
  11635. type="1"
  11636. url="3">
  11637. </productMenu>
  11638. <productMenu id="sip"
  11639. type="1" >
  11640. </productMenu>
  11641. <productMenu id="bluetoothIntercom"
  11642. type="1" >
  11643. </productMenu>
  11644. <productMenu id="phone"
  11645. type="1" >
  11646. </productMenu>
  11647. <productMenu id="music"
  11648. type="1" >
  11649. </productMenu>
  11650. <productMenu id="fmradio"
  11651. type="1" >
  11652. </productMenu>
  11653. <productMenu id="deviceSetting"
  11654. type="1"
  11655. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11656. <productMenuURL version="1.1"
  11657. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11658. />
  11659. <productMenuURL version="1.0"
  11660. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11661. />
  11662. </productMenu>
  11663. <productMenu id="quickGuide"
  11664. type="1"
  11665. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11666. size="607KB" >
  11667. </productMenu>
  11668. <productMenu id="userGuide"
  11669. type="1"
  11670. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11671. size="1.91MB" >
  11672. </productMenu>
  11673. <productMenu id="volume"
  11674. type="4" >
  11675. </productMenu>
  11676. <productID id="5416"
  11677. />
  11678. <productGroupable type="0"
  11679. />
  11680. </product>
  11681. <product id="AGV_ARK"
  11682. name="AGV ARK"
  11683. series="SF"
  11684. latestVersion="1.0.3"
  11685. show = "0" >
  11686. <productMenu id="protocol"
  11687. type="1"
  11688. url="3">
  11689. </productMenu>
  11690. <productMenu id="sip"
  11691. type="1" >
  11692. </productMenu>
  11693. <productMenu id="bluetoothIntercom"
  11694. type="1" >
  11695. </productMenu>
  11696. <productMenu id="phone"
  11697. type="1" >
  11698. </productMenu>
  11699. <productMenu id="music"
  11700. type="1" >
  11701. </productMenu>
  11702. <productMenu id="fmradio"
  11703. type="1" >
  11704. </productMenu>
  11705. <productMenu id="deviceSetting"
  11706. type="1"
  11707. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11708. </productMenu>
  11709. <productMenu id="quickGuide"
  11710. type="1"
  11711. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11712. size="607KB" >
  11713. </productMenu>
  11714. <productMenu id="userGuide"
  11715. type="1"
  11716. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11717. size="1.91MB" >
  11718. </productMenu>
  11719. <productMenu id="volume"
  11720. type="4" >
  11721. </productMenu>
  11722. <productID id="5420"
  11723. />
  11724. <productGroupable type="0"
  11725. />
  11726. </product>
  11727. <product id="KLIM_KRIOS"
  11728. name="KLIM Krios"
  11729. series="10"
  11730. latestVersion="1.1.2"
  11731. show = "0" >
  11732. <productMenu id="protocol"
  11733. type="0">
  11734. </productMenu>
  11735. <productMenu id="sip"
  11736. type="1" >
  11737. </productMenu>
  11738. <productMenu id="bluetoothIntercom"
  11739. type="1" >
  11740. </productMenu>
  11741. <productMenu id="phone"
  11742. type="2" >
  11743. </productMenu>
  11744. <productMenu id="fmradio"
  11745. type="3" >
  11746. </productMenu>
  11747. <productMenu id="deviceSetting"
  11748. type="1"
  11749. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11750. <productMenuURL version="1.0"
  11751. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11752. />
  11753. </productMenu>
  11754. <productMenu id="quickGuide"
  11755. type="1"
  11756. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11757. size="649KB" >
  11758. </productMenu>
  11759. <productMenu id="userGuide"
  11760. type="1"
  11761. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11762. size="1.43MB" >
  11763. </productMenu>
  11764. <productID id="5910"
  11765. />
  11766. <productGroupable type="0"
  11767. />
  11768. </product>
  11769. <product id="POLARIS_SLINGSHOT"
  11770. name="Polaris Slingshot"
  11771. series="10"
  11772. latestVersion="1.1.2"
  11773. show = "0" >
  11774. <productMenu id="protocol"
  11775. type="0">
  11776. </productMenu>
  11777. <productMenu id="sip"
  11778. type="1" >
  11779. </productMenu>
  11780. <productMenu id="bluetoothIntercom"
  11781. type="1" >
  11782. </productMenu>
  11783. <productMenu id="phone"
  11784. type="2" >
  11785. </productMenu>
  11786. <productMenu id="fmradio"
  11787. type="3" >
  11788. </productMenu>
  11789. <productMenu id="deviceSetting"
  11790. type="1"
  11791. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11792. <productMenuURL version="1.0"
  11793. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11794. />
  11795. </productMenu>
  11796. <productMenu id="quickGuide"
  11797. type="1"
  11798. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11799. size="689KB" >
  11800. </productMenu>
  11801. <productMenu id="userGuide"
  11802. type="1"
  11803. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11804. size="1.43MB" >
  11805. </productMenu>
  11806. <productID id="5920"
  11807. />
  11808. <productGroupable type="0"
  11809. />
  11810. </product>
  11811. <product id="DWO6"
  11812. name="SEDICI DWO6-PRO"
  11813. series="10"
  11814. latestVersion="1.0.2"
  11815. show = "0" >
  11816. <productMenu id="protocol"
  11817. type="0">
  11818. </productMenu>
  11819. <productMenu id="sip"
  11820. type="1" >
  11821. </productMenu>
  11822. <productMenu id="bluetoothIntercom"
  11823. type="1" >
  11824. </productMenu>
  11825. <productMenu id="phone"
  11826. type="2" >
  11827. </productMenu>
  11828. <productMenu id="fmradio"
  11829. type="3" >
  11830. </productMenu>
  11831. <productMenu id="deviceSetting"
  11832. type="1"
  11833. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11834. </productMenu>
  11835. <productMenu id="quickGuide"
  11836. type="1"
  11837. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11838. size="529KB" >
  11839. </productMenu>
  11840. <productMenu id="userGuide"
  11841. type="1"
  11842. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11843. size="4.09MB" >
  11844. </productMenu>
  11845. <productID id="6112"
  11846. />
  11847. <productGroupable type="0"
  11848. />
  11849. </product>
  11850. <product id="DWO6A"
  11851. name="SEDICI DWO-6"
  11852. series="10"
  11853. latestVersion="1.0.2"
  11854. show = "0" >
  11855. <productMenu id="protocol"
  11856. type="0">
  11857. </productMenu>
  11858. <productMenu id="sip"
  11859. type="1" >
  11860. </productMenu>
  11861. <productMenu id="bluetoothIntercom"
  11862. type="1" >
  11863. </productMenu>
  11864. <productMenu id="phone"
  11865. type="2" >
  11866. </productMenu>
  11867. <productMenu id="fmradio"
  11868. type="3" >
  11869. </productMenu>
  11870. <productMenu id="deviceSetting"
  11871. type="1"
  11872. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11873. </productMenu>
  11874. <productMenu id="quickGuide"
  11875. type="1"
  11876. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11877. size="522KB" >
  11878. </productMenu>
  11879. <productMenu id="userGuide"
  11880. type="1"
  11881. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11882. size="2.71MB" >
  11883. </productMenu>
  11884. <productID id="6114"
  11885. />
  11886. <productGroupable type="0"
  11887. />
  11888. </product>
  11889. <product id="3SPLUS"
  11890. name="ZILL"
  11891. series="3"
  11892. latestVersion="1.0.4"
  11893. show = "0" >
  11894. <productMenu id="protocol"
  11895. type="0">
  11896. </productMenu>
  11897. <productMenu id="sip"
  11898. type="1" >
  11899. </productMenu>
  11900. <productMenu id="bluetoothIntercom"
  11901. type="1" >
  11902. </productMenu>
  11903. <productMenu id="deviceSetting"
  11904. type="1"
  11905. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11906. </productMenu>
  11907. <productMenu id="quickGuide"
  11908. type="1"
  11909. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11910. size="842KB" >
  11911. </productMenu>
  11912. <productMenu id="userGuide"
  11913. type="1"
  11914. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11915. size="1.02MB" >
  11916. </productMenu>
  11917. <productID id="6335"
  11918. />
  11919. <productGroupable type="0"
  11920. />
  11921. </product>
  11922. <product id="HD50S"
  11923. name="Boom! Audio 30K"
  11924. series="30"
  11925. latestVersion="3.4"
  11926. show = "0" >
  11927. <productMenu id="protocol"
  11928. type="1"
  11929. url="0">
  11930. </productMenu>
  11931. <productMenu id="wa"
  11932. type="0" >
  11933. </productMenu>
  11934. <productMenu id="sip"
  11935. type="1" >
  11936. </productMenu>
  11937. <productMenu id="meshIntercom"
  11938. type="20" >
  11939. <productMenuType version="2.9.9"
  11940. type="10"
  11941. />
  11942. </productMenu>
  11943. <productMenu id="bluetoothIntercom"
  11944. type="1" >
  11945. </productMenu>
  11946. <productMenu id="phone"
  11947. type="1" >
  11948. </productMenu>
  11949. <productMenu id="music"
  11950. type="1" >
  11951. </productMenu>
  11952. <productMenu id="fmradio"
  11953. type="1" >
  11954. </productMenu>
  11955. <productMenu id="deviceSetting"
  11956. type="1"
  11957. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11958. <productMenuURL version="3.2"
  11959. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11960. />
  11961. <productMenuURL version="3.0"
  11962. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11963. />
  11964. <productMenuURL version="2.2"
  11965. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11966. />
  11967. </productMenu>
  11968. <productMenu id="quickGuide"
  11969. type="1"
  11970. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11971. size="1.06MB" >
  11972. </productMenu>
  11973. <productMenu id="userGuide"
  11974. type="1"
  11975. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11976. size="3.15MB" >
  11977. </productMenu>
  11978. <productMenu id="volume"
  11979. type="1" >
  11980. </productMenu>
  11981. <productID id="3112"
  11982. />
  11983. <productGroupable type="0"
  11984. />
  11985. </product>
  11986. <product id="HD50S"
  11987. name="Boom! Audio N02"
  11988. series="30"
  11989. latestVersion="3.1"
  11990. show = "0" >
  11991. <productMenu id="protocol"
  11992. type="1"
  11993. url="0">
  11994. </productMenu>
  11995. <productMenu id="wa"
  11996. type="2" >
  11997. </productMenu>
  11998. <productMenu id="sip"
  11999. type="1" >
  12000. </productMenu>
  12001. <productMenu id="meshIntercom"
  12002. type="20" >
  12003. <productMenuType version="2.9.9"
  12004. type="10"
  12005. />
  12006. </productMenu>
  12007. <productMenu id="bluetoothIntercom"
  12008. type="1" >
  12009. </productMenu>
  12010. <productMenu id="phone"
  12011. type="1" >
  12012. </productMenu>
  12013. <productMenu id="music"
  12014. type="1" >
  12015. </productMenu>
  12016. <productMenu id="fmradio"
  12017. type="1" >
  12018. </productMenu>
  12019. <productMenu id="deviceSetting"
  12020. type="1"
  12021. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12022. <productMenuURL version="2.2"
  12023. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12024. />
  12025. </productMenu>
  12026. <productMenu id="quickGuide"
  12027. type="1"
  12028. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12029. size="1.06MB" >
  12030. </productMenu>
  12031. <productMenu id="userGuide"
  12032. type="1"
  12033. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12034. size="3.15MB" >
  12035. </productMenu>
  12036. <productMenu id="volume"
  12037. type="2" >
  12038. </productMenu>
  12039. <productID id="3114"
  12040. />
  12041. <productGroupable type="0"
  12042. />
  12043. </product>
  12044. <product id="HD50S"
  12045. name="Boom Audio 20S"
  12046. series="50"
  12047. latestVersion="2.5.2"
  12048. show = "0" >
  12049. <productMenu id="protocol"
  12050. type="0">
  12051. </productMenu>
  12052. <productMenu id="sip"
  12053. type="1" >
  12054. <productMenuType version="1.0"
  12055. type="0"
  12056. />
  12057. </productMenu>
  12058. <productMenu id="bluetoothIntercom"
  12059. type="1" >
  12060. <productMenuType version="1.0"
  12061. type="0"
  12062. />
  12063. </productMenu>
  12064. <productMenu id="intercomSetting"
  12065. type="1" >
  12066. </productMenu>
  12067. <productMenu id="phone"
  12068. type="2" >
  12069. </productMenu>
  12070. <productMenu id="fmradio"
  12071. type="3" >
  12072. </productMenu>
  12073. <productMenu id="deviceSetting"
  12074. type="1"
  12075. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12076. <productMenuURL version="2.4"
  12077. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12078. />
  12079. <productMenuURL version="1.5"
  12080. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12081. />
  12082. <productMenuURL version="1.4.1"
  12083. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12084. />
  12085. <productMenuURL version="1.1"
  12086. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12087. />
  12088. <productMenuURL version="1.0"
  12089. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12090. />
  12091. </productMenu>
  12092. <productMenu id="quickGuide"
  12093. type="1"
  12094. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12095. size="264KB" >
  12096. </productMenu>
  12097. <productMenu id="userGuide"
  12098. type="1"
  12099. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12100. size="3.09MB" >
  12101. </productMenu>
  12102. <productMenu id="connectGuide"
  12103. type="1"
  12104. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12105. size="1.12MB" >
  12106. </productMenu>
  12107. <productID id="4210"
  12108. />
  12109. <productProductKey key="11"
  12110. />
  12111. <productID id="4230"
  12112. />
  12113. <productProductKey key="11"
  12114. />
  12115. <productGroupable type="1"
  12116. />
  12117. </product>
  12118. <product id="HD50S"
  12119. name="Boom Audio 20S EVO"
  12120. series="50"
  12121. latestVersion="2.5.2"
  12122. show = "0" >
  12123. <productMenu id="protocol"
  12124. type="0">
  12125. </productMenu>
  12126. <productMenu id="sip"
  12127. type="1" >
  12128. <productMenuType version="1.0"
  12129. type="0"
  12130. />
  12131. </productMenu>
  12132. <productMenu id="bluetoothIntercom"
  12133. type="1" >
  12134. <productMenuType version="1.0"
  12135. type="0"
  12136. />
  12137. </productMenu>
  12138. <productMenu id="intercomSetting"
  12139. type="1" >
  12140. </productMenu>
  12141. <productMenu id="phone"
  12142. type="2" >
  12143. </productMenu>
  12144. <productMenu id="fmradio"
  12145. type="3" >
  12146. </productMenu>
  12147. <productMenu id="deviceSetting"
  12148. type="1"
  12149. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12150. <productMenuURL version="2.4"
  12151. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12152. />
  12153. <productMenuURL version="1.5"
  12154. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12155. />
  12156. <productMenuURL version="1.4.1"
  12157. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12158. />
  12159. <productMenuURL version="1.1"
  12160. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12161. />
  12162. <productMenuURL version="1.0"
  12163. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12164. />
  12165. </productMenu>
  12166. <productMenu id="quickGuide"
  12167. type="1"
  12168. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12169. size="321KB" >
  12170. </productMenu>
  12171. <productMenu id="userGuide"
  12172. type="1"
  12173. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12174. size="2.46MB" >
  12175. </productMenu>
  12176. <productID id="4230"
  12177. />
  12178. <productProductKey key="27"
  12179. />
  12180. <productGroupable type="1"
  12181. />
  12182. </product>
  12183. <product id="HD50S"
  12184. name="Boom! Audio 10S"
  12185. series="50"
  12186. latestVersion="1.1.3"
  12187. show = "0" >
  12188. <productMenu id="protocol"
  12189. type="0">
  12190. </productMenu>
  12191. <productMenu id="sip"
  12192. type="1" >
  12193. </productMenu>
  12194. <productMenu id="bluetoothIntercom"
  12195. type="1" >
  12196. </productMenu>
  12197. <productMenu id="phone"
  12198. type="2" >
  12199. </productMenu>
  12200. <productMenu id="fmradio"
  12201. type="3" >
  12202. </productMenu>
  12203. <productMenu id="deviceSetting"
  12204. type="1"
  12205. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12206. </productMenu>
  12207. <productMenu id="quickGuide"
  12208. type="1"
  12209. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12210. size="538KB" >
  12211. </productMenu>
  12212. <productMenu id="userGuide"
  12213. type="1"
  12214. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12215. size="1.55MB" >
  12216. </productMenu>
  12217. <productID id="5532"
  12218. />
  12219. <productGroupable type="0"
  12220. />
  12221. </product>
  12222. <product id="HD50S"
  12223. name="Boom! Audio N01 10R"
  12224. series="50"
  12225. latestVersion="1.1.3"
  12226. show = "0" >
  12227. <productMenu id="protocol"
  12228. type="0">
  12229. </productMenu>
  12230. <productMenu id="sip"
  12231. type="1" >
  12232. </productMenu>
  12233. <productMenu id="bluetoothIntercom"
  12234. type="1" >
  12235. </productMenu>
  12236. <productMenu id="phone"
  12237. type="2" >
  12238. </productMenu>
  12239. <productMenu id="fmradio"
  12240. type="3" >
  12241. </productMenu>
  12242. <productMenu id="deviceSetting"
  12243. type="1"
  12244. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12245. </productMenu>
  12246. <productMenu id="quickGuide"
  12247. type="1"
  12248. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12249. size="766KB" >
  12250. </productMenu>
  12251. <productMenu id="userGuide"
  12252. type="1"
  12253. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12254. size="1.45MB" >
  12255. </productMenu>
  12256. <productID id="5522"
  12257. />
  12258. <productGroupable type="0"
  12259. />
  12260. </product>
  12261. <product id="HD50S"
  12262. name="OUTRUSH-R N03"
  12263. series="50"
  12264. latestVersion="1.2.1"
  12265. show = "-1" >
  12266. <productMenu id="protocol"
  12267. type="0">
  12268. </productMenu>
  12269. <productMenu id="sip"
  12270. type="1" >
  12271. </productMenu>
  12272. <productMenu id="bluetoothIntercom"
  12273. type="1" >
  12274. </productMenu>
  12275. <productMenu id="phone"
  12276. type="2" >
  12277. </productMenu>
  12278. <productMenu id="fmradio"
  12279. type="3" >
  12280. </productMenu>
  12281. <productMenu id="deviceSetting"
  12282. type="1"
  12283. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12284. </productMenu>
  12285. <productMenu id="userGuide"
  12286. type="1"
  12287. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12288. size="660KB" >
  12289. </productMenu>
  12290. <productID id="5434"
  12291. />
  12292. <productGroupable type="0"
  12293. />
  12294. </product>
  12295. <product id="HD50S"
  12296. name="OUTRUSH-R N03"
  12297. series="50"
  12298. latestVersion="2.0"
  12299. show = "0" >
  12300. <productMenu id="protocol"
  12301. type="3" >
  12302. </productMenu>
  12303. <productMenu id="sip"
  12304. type="1" >
  12305. </productMenu>
  12306. <productMenu id="bluetoothIntercom"
  12307. type="1" >
  12308. </productMenu>
  12309. <productMenu id="phone"
  12310. type="1" >
  12311. </productMenu>
  12312. <productMenu id="fmradio"
  12313. type="1" >
  12314. </productMenu>
  12315. <productMenu id="deviceSetting"
  12316. type="1"
  12317. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12318. </productMenu>
  12319. <productMenu id="userGuide"
  12320. type="1"
  12321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12322. size="1.14MB" >
  12323. </productMenu>
  12324. <productID id="5441"
  12325. />
  12326. <productGroupable type="0"
  12327. />
  12328. </product>
  12329. <product id="5R"
  12330. name="5R"
  12331. series="5"
  12332. latestVersion="1.0.1"
  12333. show = "1" >
  12334. <productMenu id="protocol"
  12335. type="3" >
  12336. </productMenu>
  12337. <productMenu id="sip"
  12338. type="1" >
  12339. </productMenu>
  12340. <productMenu id="bluetoothIntercom"
  12341. type="1" >
  12342. </productMenu>
  12343. <productMenu id="phone"
  12344. type="1" >
  12345. </productMenu>
  12346. <productMenu id="fmradio"
  12347. type="1" >
  12348. </productMenu>
  12349. <productMenu id="deviceSetting"
  12350. type="1"
  12351. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12352. </productMenu>
  12353. <productMenu id="quickGuide"
  12354. type="0"
  12355. url=""
  12356. size="934KB" >
  12357. </productMenu>
  12358. <productMenu id="userGuide"
  12359. type="1"
  12360. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12361. size="1.14MB" >
  12362. </productMenu>
  12363. <productMenu id="connectGuide"
  12364. type="1"
  12365. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12366. size="1.12MB" >
  12367. </productMenu>
  12368. <productID id="5591"
  12369. />
  12370. <productGroupable type="0"
  12371. />
  12372. </product>
  12373. <product id="5R"
  12374. name="5R LITE"
  12375. series="5"
  12376. latestVersion="1.0.1"
  12377. show = "1" >
  12378. <productMenu id="protocol"
  12379. type="3" >
  12380. </productMenu>
  12381. <productMenu id="sip"
  12382. type="1" >
  12383. </productMenu>
  12384. <productMenu id="bluetoothIntercom"
  12385. type="1" >
  12386. </productMenu>
  12387. <productMenu id="phone"
  12388. type="1" >
  12389. </productMenu>
  12390. <productMenu id="fmradio"
  12391. type="1" >
  12392. </productMenu>
  12393. <productMenu id="deviceSetting"
  12394. type="1"
  12395. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12396. </productMenu>
  12397. <productMenu id="quickGuide"
  12398. type="0"
  12399. url=""
  12400. size="934KB" >
  12401. </productMenu>
  12402. <productMenu id="userGuide"
  12403. type="1"
  12404. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12405. size="1.14MB" >
  12406. </productMenu>
  12407. <productMenu id="connectGuide"
  12408. type="1"
  12409. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12410. size="1.12MB" >
  12411. </productMenu>
  12412. <productID id="5592"
  12413. />
  12414. <productGroupable type="0"
  12415. />
  12416. </product>
  12417. <product id="50RLE"
  12418. name="50R LE"
  12419. series="50"
  12420. latestVersion="1.1"
  12421. show = "0" >
  12422. <productMenu id="protocol"
  12423. type="2" >
  12424. </productMenu>
  12425. <productMenu id="alexa"
  12426. type="0" >
  12427. </productMenu>
  12428. <productMenu id="sip"
  12429. type="1" >
  12430. </productMenu>
  12431. <productMenu id="meshIntercom"
  12432. type="30" >
  12433. </productMenu>
  12434. <productMenu id="meshIntercom+"
  12435. type="3"
  12436. url="2" >
  12437. <productMenuType version="1.0.9"
  12438. type="2"
  12439. />
  12440. </productMenu>
  12441. <productMenu id="waveIntercom"
  12442. type="1" >
  12443. <productMenuType version="1.0.9"
  12444. type="0"
  12445. />
  12446. </productMenu>
  12447. <productMenu id="bluetoothIntercom"
  12448. type="1" >
  12449. </productMenu>
  12450. <productMenu id="phone"
  12451. type="1" >
  12452. </productMenu>
  12453. <productMenu id="music"
  12454. type="1" >
  12455. </productMenu>
  12456. <productMenu id="fmradio"
  12457. type="0" >
  12458. </productMenu>
  12459. <productMenu id="deviceSetting"
  12460. type="1"
  12461. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12462. <productMenuURL version="1.0.9"
  12463. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12464. />
  12465. </productMenu>
  12466. <productMenu id="quickGuide"
  12467. type="0"
  12468. url=""
  12469. size="344KB" >
  12470. </productMenu>
  12471. <productMenu id="userGuide"
  12472. type="0"
  12473. url=""
  12474. size="3.41MB" >
  12475. </productMenu>
  12476. <productMenu id="volume"
  12477. type="11" >
  12478. </productMenu>
  12479. <productMenu id="battery"
  12480. type="1" >
  12481. </productMenu>
  12482. <productID id="3223"
  12483. />
  12484. <productGroupable type="0"
  12485. />
  12486. </product>
  12487. <product id="5RLOUIS"
  12488. name="5R LOUIS EDITION"
  12489. series="5"
  12490. latestVersion="1.0"
  12491. show = "-1" >
  12492. <productMenu id="protocol"
  12493. type="3" >
  12494. </productMenu>
  12495. <productMenu id="sip"
  12496. type="1" >
  12497. </productMenu>
  12498. <productMenu id="bluetoothIntercom"
  12499. type="1" >
  12500. </productMenu>
  12501. <productMenu id="phone"
  12502. type="1" >
  12503. </productMenu>
  12504. <productMenu id="fmradio"
  12505. type="1" >
  12506. </productMenu>
  12507. <productMenu id="deviceSetting"
  12508. type="1"
  12509. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12510. </productMenu>
  12511. <productMenu id="quickGuide"
  12512. type="0"
  12513. url=""
  12514. size="934KB" >
  12515. </productMenu>
  12516. <productMenu id="userGuide"
  12517. type="0"
  12518. url=""
  12519. size="1.14MB" >
  12520. </productMenu>
  12521. <productID id="5597"
  12522. />
  12523. <productGroupable type="0"
  12524. />
  12525. </product>
  12526. <product id="5S"
  12527. name="Ridekont 5S"
  12528. series="5"
  12529. latestVersion="2.3"
  12530. show = "-1" >
  12531. <productMenu id="protocol"
  12532. type="3" >
  12533. </productMenu>
  12534. <productMenu id="sip"
  12535. type="1" >
  12536. </productMenu>
  12537. <productMenu id="bluetoothIntercom"
  12538. type="1" >
  12539. </productMenu>
  12540. <productMenu id="phone"
  12541. type="1" >
  12542. </productMenu>
  12543. <productMenu id="fmradio"
  12544. type="0" >
  12545. </productMenu>
  12546. <productMenu id="deviceSetting"
  12547. type="1"
  12548. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12549. </productMenu>
  12550. <productMenu id="quickGuide"
  12551. type="0"
  12552. url=""
  12553. size="934KB" >
  12554. </productMenu>
  12555. <productMenu id="userGuide"
  12556. type="1"
  12557. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12558. size="1.14MB" >
  12559. </productMenu>
  12560. <productID id="5589"
  12561. />
  12562. <productGroupable type="0"
  12563. />
  12564. </product>
  12565. <product id="5R"
  12566. name="Ridekont 5R"
  12567. series="5"
  12568. latestVersion="1.0"
  12569. show = "0" >
  12570. <productMenu id="protocol"
  12571. type="3" >
  12572. </productMenu>
  12573. <productMenu id="sip"
  12574. type="1" >
  12575. </productMenu>
  12576. <productMenu id="bluetoothIntercom"
  12577. type="1" >
  12578. </productMenu>
  12579. <productMenu id="phone"
  12580. type="1" >
  12581. </productMenu>
  12582. <productMenu id="fmradio"
  12583. type="1" >
  12584. </productMenu>
  12585. <productMenu id="deviceSetting"
  12586. type="1"
  12587. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12588. </productMenu>
  12589. <productMenu id="quickGuide"
  12590. type="1"
  12591. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12592. size="934KB" >
  12593. </productMenu>
  12594. <productMenu id="userGuide"
  12595. type="1"
  12596. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12597. size="1.14MB" >
  12598. </productMenu>
  12599. <productID id="5593"
  12600. />
  12601. <productGroupable type="0"
  12602. />
  12603. </product>
  12604. <product id="5R"
  12605. name="Ridekont 5R LITE"
  12606. series="5"
  12607. latestVersion="1.0"
  12608. show = "0" >
  12609. <productMenu id="protocol"
  12610. type="3" >
  12611. </productMenu>
  12612. <productMenu id="sip"
  12613. type="1" >
  12614. </productMenu>
  12615. <productMenu id="bluetoothIntercom"
  12616. type="1" >
  12617. </productMenu>
  12618. <productMenu id="phone"
  12619. type="1" >
  12620. </productMenu>
  12621. <productMenu id="fmradio"
  12622. type="1" >
  12623. </productMenu>
  12624. <productMenu id="deviceSetting"
  12625. type="1"
  12626. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12627. </productMenu>
  12628. <productMenu id="quickGuide"
  12629. type="0"
  12630. url=""
  12631. size="934KB" >
  12632. </productMenu>
  12633. <productMenu id="userGuide"
  12634. type="1"
  12635. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12636. size="1.14MB" >
  12637. </productMenu>
  12638. <productID id="5594"
  12639. />
  12640. <productGroupable type="0"
  12641. />
  12642. </product>
  12643. <product id="SA30"
  12644. name="SA30"
  12645. series="SA"
  12646. latestVersion="1.0.1"
  12647. latestVersionVoicePrompt="0.15"
  12648. show = "-1" >
  12649. <productMenu id="protocol"
  12650. type="2" >
  12651. </productMenu>
  12652. <productMenu id="ota"
  12653. type="2" >
  12654. <otaPackages>
  12655. <package
  12656. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12657. size="3144148"
  12658. />
  12659. </otaPackages>
  12660. </productMenu>
  12661. <productMenu id="meshIntercom"
  12662. type="30" >
  12663. </productMenu>
  12664. <productMenu id="meshIntercom+"
  12665. type="3"
  12666. url="2" >
  12667. </productMenu>
  12668. <productMenu id="phone"
  12669. type="1" >
  12670. </productMenu>
  12671. <productMenu id="music"
  12672. type="1" >
  12673. </productMenu>
  12674. <productMenu id="musicSharing"
  12675. type="0" >
  12676. </productMenu>
  12677. <productMenu id="deviceSetting"
  12678. type="1"
  12679. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12680. </productMenu>
  12681. <productMenu id="quickGuide"
  12682. type="0"
  12683. url=""
  12684. size="1.12MB" >
  12685. </productMenu>
  12686. <productMenu id="userGuide"
  12687. type="1"
  12688. url=""
  12689. size="2.0MB" >
  12690. </productMenu>
  12691. <productMenu id="videoGuide"
  12692. type="0"
  12693. url=""
  12694. size="3.41MB" >
  12695. </productMenu>
  12696. <productMenu id="volume"
  12697. type="12" >
  12698. </productMenu>
  12699. <productMenu id="battery"
  12700. type="1" >
  12701. </productMenu>
  12702. <productID id="6852"
  12703. />
  12704. <productGroupable type="0"
  12705. />
  12706. </product>
  12707. <product id="I30"
  12708. name="I30"
  12709. series="I"
  12710. latestVersion="1.0.1"
  12711. latestVersionVoicePrompt="0.2"
  12712. show = "-1" >
  12713. <productMenu id="protocol"
  12714. type="2" >
  12715. </productMenu>
  12716. <productMenu id="ota"
  12717. type="2" >
  12718. <otaPackages>
  12719. <package
  12720. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12721. size="3144148"
  12722. />
  12723. </otaPackages>
  12724. </productMenu>
  12725. <productMenu id="meshIntercom"
  12726. type="30" >
  12727. </productMenu>
  12728. <productMenu id="meshIntercom+"
  12729. type="3"
  12730. url="2" >
  12731. </productMenu>
  12732. <productMenu id="phone"
  12733. type="1" >
  12734. </productMenu>
  12735. <productMenu id="music"
  12736. type="1" >
  12737. </productMenu>
  12738. <productMenu id="musicSharing"
  12739. type="0" >
  12740. </productMenu>
  12741. <productMenu id="deviceSetting"
  12742. type="1"
  12743. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12744. </productMenu>
  12745. <productMenu id="quickGuide"
  12746. type="0"
  12747. url=""
  12748. size="1.12MB" >
  12749. </productMenu>
  12750. <productMenu id="userGuide"
  12751. type="1"
  12752. url=""
  12753. size="2.10MB" >
  12754. </productMenu>
  12755. <productMenu id="videoGuide"
  12756. type="0"
  12757. url=""
  12758. size="3.11MB" >
  12759. </productMenu>
  12760. <productMenu id="volume"
  12761. type="12" >
  12762. </productMenu>
  12763. <productMenu id="battery"
  12764. type="1" >
  12765. </productMenu>
  12766. <productID id="6853"
  12767. />
  12768. <productGroupable type="0"
  12769. />
  12770. </product>
  12771. <product id="LS2C30"
  12772. name="LS2-C30"
  12773. series="C"
  12774. latestVersion="1.0"
  12775. latestVersionVoicePrompt="0.13"
  12776. show = "-1" >
  12777. <productMenu id="protocol"
  12778. type="2" >
  12779. </productMenu>
  12780. <productMenu id="ota"
  12781. type="0" >
  12782. <otaPackages>
  12783. <package
  12784. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12785. size="3144148"
  12786. />
  12787. </otaPackages>
  12788. </productMenu>
  12789. <productMenu id="meshIntercom+"
  12790. type="3"
  12791. url="2" >
  12792. </productMenu>
  12793. <productMenu id="waveIntercom"
  12794. type="1" >
  12795. </productMenu>
  12796. <productMenu id="phone"
  12797. type="1" >
  12798. </productMenu>
  12799. <productMenu id="music"
  12800. type="1" >
  12801. </productMenu>
  12802. <productMenu id="musicSharing"
  12803. type="0" >
  12804. </productMenu>
  12805. <productMenu id="deviceSetting"
  12806. type="1"
  12807. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12808. </productMenu>
  12809. <productMenu id="quickGuide"
  12810. type="0"
  12811. url=""
  12812. size="1.17MB" >
  12813. </productMenu>
  12814. <productMenu id="userGuide"
  12815. type="1"
  12816. url=""
  12817. size="2.0MB" >
  12818. </productMenu>
  12819. <productMenu id="videoGuide"
  12820. type="0"
  12821. url=""
  12822. size="3.41MB" >
  12823. </productMenu>
  12824. <productMenu id="volume"
  12825. type="12" >
  12826. </productMenu>
  12827. <productMenu id="battery"
  12828. type="1" >
  12829. </productMenu>
  12830. <productID id="685E"
  12831. />
  12832. <productGroupable type="0"
  12833. />
  12834. </product>
  12835. <product id="C30EVO"
  12836. name="C30 EVO"
  12837. series="C"
  12838. latestVersion="1.0"
  12839. latestVersionVoicePrompt="0.13"
  12840. show = "-1" >
  12841. <productMenu id="protocol"
  12842. type="2" >
  12843. </productMenu>
  12844. <productMenu id="ota"
  12845. type="0" >
  12846. <otaPackages>
  12847. <package
  12848. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12849. size="3144148"
  12850. />
  12851. </otaPackages>
  12852. </productMenu>
  12853. <productMenu id="meshIntercom+"
  12854. type="3"
  12855. url="2" >
  12856. </productMenu>
  12857. <productMenu id="waveIntercom"
  12858. type="1" >
  12859. </productMenu>
  12860. <productMenu id="phone"
  12861. type="1" >
  12862. </productMenu>
  12863. <productMenu id="music"
  12864. type="1" >
  12865. </productMenu>
  12866. <productMenu id="musicSharing"
  12867. type="0" >
  12868. </productMenu>
  12869. <productMenu id="deviceSetting"
  12870. type="1"
  12871. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12872. </productMenu>
  12873. <productMenu id="quickGuide"
  12874. type="0"
  12875. url=""
  12876. size="1.17MB" >
  12877. </productMenu>
  12878. <productMenu id="userGuide"
  12879. type="1"
  12880. url=""
  12881. size="2.0MB" >
  12882. </productMenu>
  12883. <productMenu id="videoGuide"
  12884. type="0"
  12885. url=""
  12886. size="3.41MB" >
  12887. </productMenu>
  12888. <productMenu id="volume"
  12889. type="12" >
  12890. </productMenu>
  12891. <productMenu id="battery"
  12892. type="1" >
  12893. </productMenu>
  12894. <productID id="685B"
  12895. />
  12896. <productGroupable type="0"
  12897. />
  12898. </product>
  12899. <product id="C30"
  12900. name="SENA C30"
  12901. series="C"
  12902. latestVersion="1.2.2"
  12903. latestVersionVoicePrompt="0.13"
  12904. show = "1" >
  12905. <productMenu id="protocol"
  12906. type="2" >
  12907. </productMenu>
  12908. <productMenu id="alexa"
  12909. type="0" >
  12910. </productMenu>
  12911. <productMenu id="ota"
  12912. type="2" >
  12913. <otaPackages>
  12914. <package
  12915. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12916. size="3144148"
  12917. />
  12918. </otaPackages>
  12919. </productMenu>
  12920. <productMenu id="wa"
  12921. type="0" >
  12922. </productMenu>
  12923. <productMenu id="meshIntercom"
  12924. type="30" >
  12925. </productMenu>
  12926. <productMenu id="meshIntercom+"
  12927. type="3"
  12928. url="2" >
  12929. <productMenuType version="1.0.9"
  12930. type="2"
  12931. />
  12932. </productMenu>
  12933. <productMenu id="waveIntercom"
  12934. type="1" >
  12935. <productMenuType version="1.1.9"
  12936. type="0"
  12937. />
  12938. </productMenu>
  12939. <productMenu id="phone"
  12940. type="1" >
  12941. </productMenu>
  12942. <productMenu id="music"
  12943. type="1" >
  12944. </productMenu>
  12945. <productMenu id="musicSharing"
  12946. type="0" >
  12947. </productMenu>
  12948. <productMenu id="deviceSetting"
  12949. type="1"
  12950. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12951. <productMenuURL version="1.1.3"
  12952. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12953. />
  12954. <productMenuURL version="1.0.9"
  12955. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12956. />
  12957. </productMenu>
  12958. <productMenu id="quickGuide"
  12959. type="1"
  12960. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12961. size="1.12MB" >
  12962. </productMenu>
  12963. <productMenu id="userGuide"
  12964. type="0"
  12965. url=""
  12966. size="2.0MB" >
  12967. </productMenu>
  12968. <productMenu id="videoGuide"
  12969. type="0"
  12970. url=""
  12971. size="3.41MB" >
  12972. </productMenu>
  12973. <productMenu id="volume"
  12974. type="12" >
  12975. </productMenu>
  12976. <productMenu id="battery"
  12977. type="1" >
  12978. </productMenu>
  12979. <productID id="683A"
  12980. />
  12981. <productGroupable type="0"
  12982. />
  12983. </product>
  12984. <product id="C20"
  12985. name="C20"
  12986. series="C"
  12987. latestVersion="1.0"
  12988. show = "1" >
  12989. <productMenu id="protocol"
  12990. type="3" >
  12991. </productMenu>
  12992. <productMenu id="sip"
  12993. type="1" >
  12994. </productMenu>
  12995. <productMenu id="bluetoothIntercom"
  12996. type="1" >
  12997. </productMenu>
  12998. <productMenu id="phone"
  12999. type="1" >
  13000. </productMenu>
  13001. <productMenu id="deviceSetting"
  13002. type="1"
  13003. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13004. </productMenu>
  13005. <productMenu id="quickGuide"
  13006. type="1"
  13007. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13008. size="934KB" >
  13009. </productMenu>
  13010. <productMenu id="userGuide"
  13011. type="1"
  13012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13013. size="1.14MB" >
  13014. </productMenu>
  13015. <productID id="3701"
  13016. />
  13017. <productGroupable type="0"
  13018. />
  13019. </product>
  13020. <product id="C10"
  13021. name="C10"
  13022. series="C"
  13023. latestVersion="1.4.4"
  13024. show = "1" >
  13025. <productMenu id="protocol"
  13026. type="3" >
  13027. </productMenu>
  13028. <productMenu id="sip"
  13029. type="1" >
  13030. </productMenu>
  13031. <productMenu id="bluetoothIntercom"
  13032. type="1" >
  13033. </productMenu>
  13034. <productMenu id="phone"
  13035. type="1" >
  13036. </productMenu>
  13037. <productMenu id="fmradio"
  13038. type="0" >
  13039. </productMenu>
  13040. <productMenu id="deviceSetting"
  13041. type="1"
  13042. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13043. </productMenu>
  13044. <productMenu id="userGuide"
  13045. type="1"
  13046. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13047. size="1.14MB" >
  13048. </productMenu>
  13049. <productID id="5595"
  13050. />
  13051. <productGroupable type="0"
  13052. />
  13053. </product>
  13054. <product id="CA1"
  13055. name="CA1"
  13056. series="C"
  13057. latestVersion="0.2"
  13058. show = "-1" >
  13059. <productMenu id="protocol"
  13060. type="2" >
  13061. </productMenu>
  13062. <productMenu id="ota"
  13063. type="2" >
  13064. <otaPackages>
  13065. <package
  13066. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13067. size="3144148"
  13068. />
  13069. </otaPackages>
  13070. </productMenu>
  13071. <productMenu id="phone"
  13072. type="1" >
  13073. </productMenu>
  13074. <productMenu id="music"
  13075. type="1" >
  13076. </productMenu>
  13077. <productMenu id="musicSharing"
  13078. type="0" >
  13079. </productMenu>
  13080. <productMenu id="deviceSetting"
  13081. type="1"
  13082. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13083. </productMenu>
  13084. <productMenu id="quickGuide"
  13085. type="1"
  13086. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13087. size="1.12MB" >
  13088. </productMenu>
  13089. <productMenu id="userGuide"
  13090. type="0"
  13091. url=""
  13092. size="2.0MB" >
  13093. </productMenu>
  13094. <productMenu id="videoGuide"
  13095. type="1"
  13096. url=""
  13097. size="3.41MB" >
  13098. </productMenu>
  13099. <productMenu id="volume"
  13100. type="12" >
  13101. </productMenu>
  13102. <productMenu id="battery"
  13103. type="1" >
  13104. </productMenu>
  13105. <productID id="5F01"
  13106. />
  13107. <productGroupable type="0"
  13108. />
  13109. </product>
  13110. <product id="J30"
  13111. name="J30"
  13112. series="J"
  13113. latestVersion="1.2.2"
  13114. latestVersionVoicePrompt="0.14"
  13115. show = "0" >
  13116. <productMenu id="protocol"
  13117. type="2" >
  13118. </productMenu>
  13119. <productMenu id="alexa"
  13120. type="0" >
  13121. </productMenu>
  13122. <productMenu id="ota"
  13123. type="2" >
  13124. <otaPackages>
  13125. <package
  13126. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  13127. size="3144148"
  13128. />
  13129. </otaPackages>
  13130. </productMenu>
  13131. <productMenu id="wa"
  13132. type="0" >
  13133. </productMenu>
  13134. <productMenu id="meshIntercom"
  13135. type="30" >
  13136. </productMenu>
  13137. <productMenu id="meshIntercom+"
  13138. type="3"
  13139. url="2" >
  13140. <productMenuType version="1.0.9"
  13141. type="2"
  13142. />
  13143. </productMenu>
  13144. <productMenu id="waveIntercom"
  13145. type="1" >
  13146. <productMenuType version="1.1.9"
  13147. type="0"
  13148. />
  13149. </productMenu>
  13150. <productMenu id="phone"
  13151. type="1" >
  13152. </productMenu>
  13153. <productMenu id="music"
  13154. type="1" >
  13155. </productMenu>
  13156. <productMenu id="musicSharing"
  13157. type="0" >
  13158. </productMenu>
  13159. <productMenu id="deviceSetting"
  13160. type="1"
  13161. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13162. <productMenuURL version="1.0.9"
  13163. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13164. />
  13165. </productMenu>
  13166. <productMenu id="quickGuide"
  13167. type="0"
  13168. url=""
  13169. size="1.12MB" >
  13170. </productMenu>
  13171. <productMenu id="userGuide"
  13172. type="1"
  13173. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13174. size="2.0MB" >
  13175. </productMenu>
  13176. <productMenu id="videoGuide"
  13177. type="0"
  13178. url=""
  13179. size="3.41MB" >
  13180. </productMenu>
  13181. <productMenu id="volume"
  13182. type="12" >
  13183. </productMenu>
  13184. <productMenu id="battery"
  13185. type="1" >
  13186. </productMenu>
  13187. <productID id="6848"
  13188. />
  13189. <productGroupable type="0"
  13190. />
  13191. </product>
  13192. <product id="J10"
  13193. name="J10"
  13194. series="5"
  13195. latestVersion="1.1.4"
  13196. show = "0" >
  13197. <productMenu id="protocol"
  13198. type="3" >
  13199. </productMenu>
  13200. <productMenu id="sip"
  13201. type="1" >
  13202. </productMenu>
  13203. <productMenu id="bluetoothIntercom"
  13204. type="1" >
  13205. </productMenu>
  13206. <productMenu id="phone"
  13207. type="1" >
  13208. </productMenu>
  13209. <productMenu id="fmradio"
  13210. type="0" >
  13211. </productMenu>
  13212. <productMenu id="deviceSetting"
  13213. type="1"
  13214. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13215. </productMenu>
  13216. <productMenu id="userGuide"
  13217. type="1"
  13218. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13219. size="1.14MB" >
  13220. </productMenu>
  13221. <productID id="5598"
  13222. />
  13223. <productGroupable type="0"
  13224. />
  13225. </product>
  13226. <product id="B20"
  13227. name="B20"
  13228. series="B"
  13229. latestVersion="1.1.2"
  13230. latestVersionVoicePrompt="0.14"
  13231. show = "0" >
  13232. <productMenu id="protocol"
  13233. type="2" >
  13234. </productMenu>
  13235. <productMenu id="alexa"
  13236. type="0" >
  13237. </productMenu>
  13238. <productMenu id="ota"
  13239. type="2" >
  13240. <otaPackages>
  13241. <package
  13242. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  13243. size="3144148"
  13244. />
  13245. </otaPackages>
  13246. </productMenu>
  13247. <productMenu id="wa"
  13248. type="0" >
  13249. </productMenu>
  13250. <productMenu id="meshIntercom"
  13251. type="30" >
  13252. </productMenu>
  13253. <productMenu id="phone"
  13254. type="1" >
  13255. </productMenu>
  13256. <productMenu id="music"
  13257. type="1" >
  13258. </productMenu>
  13259. <productMenu id="musicSharing"
  13260. type="0" >
  13261. </productMenu>
  13262. <productMenu id="deviceSetting"
  13263. type="1"
  13264. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13265. <productMenuURL version="1.0.9"
  13266. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13267. />
  13268. </productMenu>
  13269. <productMenu id="quickGuide"
  13270. type="0"
  13271. url=""
  13272. size="1.12MB" >
  13273. </productMenu>
  13274. <productMenu id="userGuide"
  13275. type="1"
  13276. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13277. size="2.0MB" >
  13278. </productMenu>
  13279. <productMenu id="videoGuide"
  13280. type="0"
  13281. url=""
  13282. size="3.41MB" >
  13283. </productMenu>
  13284. <productMenu id="volume"
  13285. type="12" >
  13286. </productMenu>
  13287. <productMenu id="battery"
  13288. type="1" >
  13289. </productMenu>
  13290. <productID id="6847"
  13291. />
  13292. <productGroupable type="0"
  13293. />
  13294. </product>
  13295. <product id="B10"
  13296. name="B10"
  13297. series="5"
  13298. latestVersion="1.2.4"
  13299. show = "0" >
  13300. <productMenu id="protocol"
  13301. type="3" >
  13302. </productMenu>
  13303. <productMenu id="sip"
  13304. type="1" >
  13305. </productMenu>
  13306. <productMenu id="bluetoothIntercom"
  13307. type="1" >
  13308. </productMenu>
  13309. <productMenu id="phone"
  13310. type="1" >
  13311. </productMenu>
  13312. <productMenu id="fmradio"
  13313. type="0" >
  13314. </productMenu>
  13315. <productMenu id="deviceSetting"
  13316. type="1"
  13317. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13318. </productMenu>
  13319. <productMenu id="userGuide"
  13320. type="1"
  13321. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13322. size="1.14MB" >
  13323. </productMenu>
  13324. <productID id="5596"
  13325. />
  13326. <productGroupable type="0"
  13327. />
  13328. </product>
  13329. <product id="E30"
  13330. name="E30"
  13331. series="E"
  13332. latestVersion="1.1.2"
  13333. latestVersionVoicePrompt="0.14"
  13334. show = "0" >
  13335. <productMenu id="protocol"
  13336. type="2" >
  13337. </productMenu>
  13338. <productMenu id="alexa"
  13339. type="0" >
  13340. </productMenu>
  13341. <productMenu id="ota"
  13342. type="2" >
  13343. <otaPackages>
  13344. <package
  13345. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  13346. size="3144148"
  13347. />
  13348. </otaPackages>
  13349. </productMenu>
  13350. <productMenu id="wa"
  13351. type="0" >
  13352. </productMenu>
  13353. <productMenu id="meshIntercom"
  13354. type="30" >
  13355. </productMenu>
  13356. <productMenu id="meshIntercom+"
  13357. type="3"
  13358. url="2" >
  13359. </productMenu>
  13360. <productMenu id="waveIntercom"
  13361. type="1" >
  13362. <productMenuType version="1.0.9"
  13363. type="0"
  13364. />
  13365. </productMenu>
  13366. <productMenu id="phone"
  13367. type="1" >
  13368. </productMenu>
  13369. <productMenu id="music"
  13370. type="1" >
  13371. </productMenu>
  13372. <productMenu id="musicSharing"
  13373. type="0" >
  13374. </productMenu>
  13375. <productMenu id="deviceSetting"
  13376. type="1"
  13377. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13378. </productMenu>
  13379. <productMenu id="quickGuide"
  13380. type="0"
  13381. url=""
  13382. size="1.12MB" >
  13383. </productMenu>
  13384. <productMenu id="userGuide"
  13385. type="1"
  13386. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13387. size="2.0MB" >
  13388. </productMenu>
  13389. <productMenu id="videoGuide"
  13390. type="0"
  13391. url=""
  13392. size="3.41MB" >
  13393. </productMenu>
  13394. <productMenu id="volume"
  13395. type="12" >
  13396. </productMenu>
  13397. <productMenu id="battery"
  13398. type="1" >
  13399. </productMenu>
  13400. <productID id="6846"
  13401. />
  13402. <productGroupable type="0"
  13403. />
  13404. </product>
  13405. <product id="ACSRAM"
  13406. name="ACS-RAM"
  13407. series="ACS"
  13408. latestVersion="1.0.5"
  13409. show = "1" >
  13410. <productMenu id="protocol"
  13411. type="3" >
  13412. </productMenu>
  13413. <productMenu id="sip"
  13414. type="1" >
  13415. </productMenu>
  13416. <productMenu id="bluetoothIntercom"
  13417. type="1" >
  13418. </productMenu>
  13419. <productMenu id="deviceSetting"
  13420. type="1"
  13421. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13422. </productMenu>
  13423. <productMenu id="quickGuide"
  13424. type="1"
  13425. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13426. size="344KB" >
  13427. </productMenu>
  13428. <productMenu id="userGuide"
  13429. type="1"
  13430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13431. size="1.14MB" >
  13432. </productMenu>
  13433. <productMenu id="connectGuide"
  13434. type="1"
  13435. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13436. size="1.12MB" >
  13437. </productMenu>
  13438. <productID id="3400"
  13439. />
  13440. <productGroupable type="0"
  13441. />
  13442. </product>
  13443. <product id="ACS10"
  13444. name="ACS10"
  13445. series="ACS"
  13446. latestVersion="1.0.2"
  13447. show = "1" >
  13448. <productMenu id="protocol"
  13449. type="0">
  13450. </productMenu>
  13451. <productMenu id="sip"
  13452. type="1" >
  13453. </productMenu>
  13454. <productMenu id="bluetoothIntercom"
  13455. type="1" >
  13456. </productMenu>
  13457. <productMenu id="phone"
  13458. type="2" >
  13459. </productMenu>
  13460. <productMenu id="deviceSetting"
  13461. type="1"
  13462. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13463. </productMenu>
  13464. <productMenu id="quickGuide"
  13465. type="1"
  13466. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13467. size="970KB" >
  13468. </productMenu>
  13469. <productMenu id="userGuide"
  13470. type="1"
  13471. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13472. size="1.26MB" >
  13473. </productMenu>
  13474. <productMenu id="connectGuide"
  13475. type="1"
  13476. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13477. size="1.12MB" >
  13478. </productMenu>
  13479. <productID id="3300"
  13480. />
  13481. <productGroupable type="0"
  13482. />
  13483. </product>
  13484. <product id="DWO7ProMesh"
  13485. name="DWO 7 Pro Mesh"
  13486. series="50"
  13487. latestVersion="1.1"
  13488. latestVersionVoicePrompt="0.9"
  13489. show = "0" >
  13490. <productMenu id="protocol"
  13491. type="2" >
  13492. </productMenu>
  13493. <productMenu id="alexa"
  13494. type="0" >
  13495. </productMenu>
  13496. <productMenu id="ota"
  13497. type="2" >
  13498. <otaPackages>
  13499. <package
  13500. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13501. size="2945812"
  13502. />
  13503. </otaPackages>
  13504. </productMenu>
  13505. <productMenu id="wa"
  13506. type="0" >
  13507. </productMenu>
  13508. <productMenu id="meshIntercom"
  13509. type="20" >
  13510. </productMenu>
  13511. <productMenu id="meshIntercom+"
  13512. type="3"
  13513. url="2" >
  13514. <productMenuType version="1.0.9"
  13515. type="2"
  13516. />
  13517. <productMenuURL version="2.1.1"
  13518. url="0"
  13519. />
  13520. </productMenu>
  13521. <productMenu id="waveIntercom"
  13522. type="1" >
  13523. <productMenuType version="1.0.9"
  13524. type="0"
  13525. />
  13526. </productMenu>
  13527. <productMenu id="phone"
  13528. type="1" >
  13529. </productMenu>
  13530. <productMenu id="music"
  13531. type="1" >
  13532. </productMenu>
  13533. <productMenu id="fmradio"
  13534. type="1" >
  13535. </productMenu>
  13536. <productMenu id="musicSharing"
  13537. type="0" >
  13538. </productMenu>
  13539. <productMenu id="deviceSetting"
  13540. type="1"
  13541. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13542. <productMenuURL version="1.0.9"
  13543. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13544. />
  13545. </productMenu>
  13546. <productMenu id="quickGuide"
  13547. type="1"
  13548. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13549. size="1.12MB" >
  13550. </productMenu>
  13551. <productMenu id="userGuide"
  13552. type="1"
  13553. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13554. size="2.0MB" >
  13555. </productMenu>
  13556. <productMenu id="volume"
  13557. type="12" >
  13558. </productMenu>
  13559. <productMenu id="battery"
  13560. type="1" >
  13561. </productMenu>
  13562. <productID id="6806"
  13563. />
  13564. <productGroupable type="0"
  13565. />
  13566. </product>
  13567. <product id="ERA1X"
  13568. name="ERA 1 X"
  13569. series="UCOM"
  13570. latestVersion="0.2.1"
  13571. latestVersionMesh="0.19"
  13572. latestVersionVoicePrompt="1.2"
  13573. show = "-1" >
  13574. <productMenu id="protocol"
  13575. type="2" >
  13576. </productMenu>
  13577. <productMenu id="ota"
  13578. type="2" >
  13579. <otaLanguages>
  13580. <otaLanguage
  13581. id="0"
  13582. name="English"
  13583. package="0"
  13584. />
  13585. <otaLanguage
  13586. id="0"
  13587. name="French"
  13588. package="1"
  13589. />
  13590. <otaLanguage
  13591. id="0"
  13592. name="Spanish"
  13593. package="2"
  13594. />
  13595. <otaLanguage
  13596. id="0"
  13597. name="Italian"
  13598. package="3"
  13599. />
  13600. <otaLanguage
  13601. id="0"
  13602. name="German"
  13603. package="4"
  13604. />
  13605. <otaLanguage
  13606. id="0"
  13607. name="Dutch"
  13608. package="5"
  13609. />
  13610. <otaLanguage
  13611. id="0"
  13612. name="Russian"
  13613. package="6"
  13614. />
  13615. <otaLanguage
  13616. id="0"
  13617. name="Chinese"
  13618. package="7"
  13619. />
  13620. <otaLanguage
  13621. id="0"
  13622. name="Korean"
  13623. package="8"
  13624. />
  13625. <otaLanguage
  13626. id="0"
  13627. name="Japanese"
  13628. package="9"
  13629. />
  13630. <otaLanguage
  13631. id="0"
  13632. name="Finnish"
  13633. package="10"
  13634. />
  13635. <otaLanguage
  13636. id="0"
  13637. name="Polish"
  13638. package="11"
  13639. />
  13640. <otaLanguage
  13641. id="0"
  13642. name="Czech"
  13643. package="12"
  13644. />
  13645. <otaLanguage
  13646. id="0"
  13647. name="Danish"
  13648. package="13"
  13649. />
  13650. <otaLanguage
  13651. id="0"
  13652. name="Norwegian"
  13653. package="14"
  13654. />
  13655. <otaLanguage
  13656. id="0"
  13657. name="Swedish"
  13658. package="15"
  13659. />
  13660. <otaLanguage
  13661. id="0"
  13662. name="Turkish"
  13663. package="16"
  13664. />
  13665. <otaLanguage
  13666. id="0"
  13667. name="Hungarian"
  13668. package="17"
  13669. />
  13670. <otaLanguage
  13671. id="0"
  13672. name="Portuguese"
  13673. package="18"
  13674. />
  13675. <otaLanguage
  13676. id="0"
  13677. name="Hebrew"
  13678. package="19"
  13679. />
  13680. <otaLanguage
  13681. id="0"
  13682. name="Greek"
  13683. package="20"
  13684. />
  13685. </otaLanguages>
  13686. <otaPackages>
  13687. <package
  13688. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13689. size="5183988"
  13690. />
  13691. <package
  13692. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13693. size="5183988"
  13694. />
  13695. <package
  13696. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13697. size="5183988"
  13698. />
  13699. <package
  13700. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13701. size="5183988"
  13702. />
  13703. <package
  13704. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13705. size="5183988"
  13706. />
  13707. <package
  13708. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13709. size="5183988"
  13710. />
  13711. <package
  13712. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13713. size="5183988"
  13714. />
  13715. <package
  13716. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13717. size="5183988"
  13718. />
  13719. <package
  13720. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13721. size="5183988"
  13722. />
  13723. <package
  13724. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13725. size="5183988"
  13726. />
  13727. <package
  13728. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13729. size="5183988"
  13730. />
  13731. <package
  13732. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13733. size="5183988"
  13734. />
  13735. <package
  13736. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13737. size="5183988"
  13738. />
  13739. <package
  13740. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13741. size="5183988"
  13742. />
  13743. <package
  13744. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13745. size="5183988"
  13746. />
  13747. <package
  13748. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13749. size="5183988"
  13750. />
  13751. <package
  13752. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13753. size="5183988"
  13754. />
  13755. <package
  13756. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13757. size="5183988"
  13758. />
  13759. <package
  13760. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13761. size="5183988"
  13762. />
  13763. <package
  13764. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13765. size="5183988"
  13766. />
  13767. <package
  13768. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13769. size="5183988"
  13770. />
  13771. </otaPackages>
  13772. </productMenu>
  13773. <productMenu id="wa"
  13774. type="0" >
  13775. </productMenu>
  13776. <productMenu id="sip"
  13777. type="1" >
  13778. </productMenu>
  13779. <productMenu id="led"
  13780. type="0" >
  13781. </productMenu>
  13782. <productMenu id="illusion"
  13783. type="1" >
  13784. </productMenu>
  13785. <productMenu id="meshIntercom"
  13786. type="30" >
  13787. </productMenu>
  13788. <productMenu id="meshIntercom+"
  13789. type="3"
  13790. url="2" >
  13791. </productMenu>
  13792. <productMenu id="waveIntercom"
  13793. type="0" >
  13794. </productMenu>
  13795. <productMenu id="bluetoothIntercom"
  13796. type="1" >
  13797. </productMenu>
  13798. <productMenu id="bluetoothIntercomGrouping"
  13799. type="0" >
  13800. </productMenu>
  13801. <productMenu id="fmradio"
  13802. type="1"
  13803. url="1" >
  13804. </productMenu>
  13805. <productMenu id="phone"
  13806. type="1" >
  13807. </productMenu>
  13808. <productMenu id="music"
  13809. type="1" >
  13810. </productMenu>
  13811. <productMenu id="musicSharing"
  13812. type="0" >
  13813. </productMenu>
  13814. <productMenu id="deviceSetting"
  13815. type="1"
  13816. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13817. </productMenu>
  13818. <productMenu id="quickGuide"
  13819. type="0"
  13820. url=""
  13821. size="1.12MB" >
  13822. </productMenu>
  13823. <productMenu id="userGuide"
  13824. type="1"
  13825. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13826. size="2.0MB" >
  13827. </productMenu>
  13828. <productMenu id="videoGuide"
  13829. type="0"
  13830. url=""
  13831. size="3.41MB" >
  13832. </productMenu>
  13833. <productMenu id="volume"
  13834. type="16" >
  13835. </productMenu>
  13836. <productMenu id="soundMode"
  13837. type="1" >
  13838. </productMenu>
  13839. <productMenu id="battery"
  13840. type="1" >
  13841. </productMenu>
  13842. <productID id="6A83"
  13843. />
  13844. <productGroupable type="0"
  13845. />
  13846. </product>
  13847. <product id="MeshStation"
  13848. name="Mesh Station"
  13849. series="50"
  13850. latestVersion="0.9"
  13851. show = "-1" >
  13852. <productMenu id="protocol"
  13853. type="2" >
  13854. </productMenu>
  13855. <productMenu id="meshIntercom"
  13856. type="20"
  13857. url="99" >
  13858. </productMenu>
  13859. <productID id="3161"
  13860. />
  13861. <productGroupable type="0"
  13862. />
  13863. </product>
  13864. </products>
  13865. </sna>