snm.xml 512 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260186" 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.3"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.8"
  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.3-build1.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.3-build1-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/60SEVO/NS_60SEVO_01.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="1"
  525. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60sevo.json"
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.11"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.8"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.11-build1-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.11"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.8"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.11-build1-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_12.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0.1"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.8"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0.1-build1-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X_01.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="1"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="connectGuide"
  1210. type="1"
  1211. url="https://api.sena.com/support/ConnectGuide/joyphone_phone5_init_60x.json"
  1212. size="1.12MB" >
  1213. </productMenu>
  1214. <productMenu id="keySettings"
  1215. type="1"
  1216. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1217. </productMenu>
  1218. <productMenu id="volume"
  1219. type="13" >
  1220. </productMenu>
  1221. <productMenu id="volume+"
  1222. type="2"
  1223. url="0x6004" >
  1224. </productMenu>
  1225. <productMenu id="appearance"
  1226. type="1"
  1227. url="1|white,silver,black,glossy_black" >
  1228. </productMenu>
  1229. <productMenu id="battery"
  1230. type="1" >
  1231. </productMenu>
  1232. <productID id="6A03"
  1233. />
  1234. <productGroupable type="0"
  1235. />
  1236. </product>
  1237. <product id="R35"
  1238. name="R35"
  1239. series="R"
  1240. latestVersion="1.1.2"
  1241. latestVersionVoicePrompt="1.5"
  1242. show = "1" >
  1243. <productMenu id="protocol"
  1244. type="2" >
  1245. </productMenu>
  1246. <productMenu id="ota"
  1247. type="2" >
  1248. <otaLanguages>
  1249. <otaLanguage
  1250. id="0"
  1251. name="English"
  1252. package="0"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese"
  1257. package="1"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Chinese Singapore"
  1262. package="2"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Filipino"
  1267. package="3"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hebrew"
  1272. package="4"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Hindi"
  1277. package="5"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Indonesian"
  1282. package="6"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Japanese"
  1287. package="7"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Korean"
  1292. package="8"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Malay"
  1297. package="9"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Modern Standard Arabic"
  1302. package="10"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Taiwanese"
  1307. package="11"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Tamil"
  1312. package="12"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="Thai"
  1317. package="13"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="东北话"
  1322. package="14"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="广东话"
  1327. package="15"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="江浙沪"
  1332. package="16"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="四川话"
  1337. package="17"
  1338. />
  1339. <otaLanguage
  1340. id="0"
  1341. name="陕西话"
  1342. package="18"
  1343. />
  1344. </otaLanguages>
  1345. <otaPackages>
  1346. <package
  1347. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1.img"
  1348. size="5183988"
  1349. />
  1350. <package
  1351. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-CN.img"
  1352. size="5183988"
  1353. />
  1354. <package
  1355. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-cmn-SG.img"
  1356. size="5183988"
  1357. />
  1358. <package
  1359. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-tl-PH.img"
  1360. size="5183988"
  1361. />
  1362. <package
  1363. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-he-IL.img"
  1364. size="5183988"
  1365. />
  1366. <package
  1367. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-hi-IN.img"
  1368. size="5183988"
  1369. />
  1370. <package
  1371. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-id-ID.img"
  1372. size="5183988"
  1373. />
  1374. <package
  1375. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ja-JP.img"
  1376. size="5183988"
  1377. />
  1378. <package
  1379. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ko-KR.img"
  1380. size="5183988"
  1381. />
  1382. <package
  1383. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ms-MY.img"
  1384. size="5183988"
  1385. />
  1386. <package
  1387. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ar-XA.img"
  1388. size="5183988"
  1389. />
  1390. <package
  1391. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-nan-TW.img"
  1392. size="5183988"
  1393. />
  1394. <package
  1395. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-ta-IN.img"
  1396. size="5183988"
  1397. />
  1398. <package
  1399. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-th-TH.img"
  1400. size="5183988"
  1401. />
  1402. <package
  1403. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zdb-CN.img"
  1404. size="5183988"
  1405. />
  1406. <package
  1407. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-yue-CN.img"
  1408. size="5183988"
  1409. />
  1410. <package
  1411. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-wuu-CN.img"
  1412. size="5183988"
  1413. />
  1414. <package
  1415. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsc-CN.img"
  1416. size="5183988"
  1417. />
  1418. <package
  1419. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.2-build1-zsn-CN.img"
  1420. size="5183988"
  1421. />
  1422. </otaPackages>
  1423. </productMenu>
  1424. <productMenu id="sip"
  1425. type="1" >
  1426. </productMenu>
  1427. <productMenu id="illusion"
  1428. type="1" >
  1429. </productMenu>
  1430. <productMenu id="meshIntercom"
  1431. type="30" >
  1432. </productMenu>
  1433. <productMenu id="meshIntercom+"
  1434. type="3"
  1435. url="2" >
  1436. </productMenu>
  1437. <productMenu id="waveIntercom"
  1438. type="1" >
  1439. </productMenu>
  1440. <productMenu id="phone"
  1441. type="1" >
  1442. </productMenu>
  1443. <productMenu id="music"
  1444. type="1" >
  1445. </productMenu>
  1446. <productMenu id="musicSharing"
  1447. type="0" >
  1448. </productMenu>
  1449. <productMenu id="deviceSetting"
  1450. type="1"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1452. <productMenuURL version="1.1.1"
  1453. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1454. />
  1455. <productMenuURL version="1.0.3"
  1456. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1457. />
  1458. </productMenu>
  1459. <productMenu id="quickGuide"
  1460. type="0"
  1461. url=""
  1462. size="1.12MB" >
  1463. </productMenu>
  1464. <productMenu id="userGuide"
  1465. type="1"
  1466. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1467. size="2.0MB" >
  1468. </productMenu>
  1469. <productMenu id="videoGuide"
  1470. type="0"
  1471. url=""
  1472. size="3.41MB" >
  1473. </productMenu>
  1474. <productMenu id="connectGuide"
  1475. type="1"
  1476. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1477. size="1.12MB" >
  1478. </productMenu>
  1479. <productMenu id="volume"
  1480. type="16" >
  1481. </productMenu>
  1482. <productMenu id="volume+"
  1483. type="2"
  1484. url="0x6004" >
  1485. </productMenu>
  1486. <productMenu id="soundMode"
  1487. type="0" >
  1488. </productMenu>
  1489. <productMenu id="appearance"
  1490. type="1"
  1491. url="1|white,silver,chrome,black" >
  1492. </productMenu>
  1493. <productMenu id="battery"
  1494. type="1" >
  1495. </productMenu>
  1496. <productID id="6A06"
  1497. />
  1498. <productGroupable type="0"
  1499. />
  1500. </product>
  1501. <product id="COM60X"
  1502. name="BMW MOTORRAD COM 60X"
  1503. series="60"
  1504. latestVersion="1.0"
  1505. latestVersionMesh="0.19"
  1506. latestVersionVoicePrompt="1.7"
  1507. show = "-1" >
  1508. <productMenu id="protocol"
  1509. type="2" >
  1510. </productMenu>
  1511. <productMenu id="ota"
  1512. type="0" >
  1513. <otaLanguages>
  1514. <otaLanguage
  1515. id="0"
  1516. name="English"
  1517. package="0"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="French"
  1522. package="1"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Spanish"
  1527. package="2"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="Italian"
  1532. package="3"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="German"
  1537. package="4"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Dutch"
  1542. package="5"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Russian"
  1547. package="6"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Chinese"
  1552. package="7"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Korean"
  1557. package="8"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Japanese"
  1562. package="9"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Finnish"
  1567. package="10"
  1568. />
  1569. <otaLanguage
  1570. id="0"
  1571. name="Polish"
  1572. package="11"
  1573. />
  1574. </otaLanguages>
  1575. <otaPackages>
  1576. <package
  1577. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1.img"
  1578. size="5183988"
  1579. />
  1580. <package
  1581. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fr-FR.img"
  1582. size="5183988"
  1583. />
  1584. <package
  1585. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-es-ES.img"
  1586. size="5183988"
  1587. />
  1588. <package
  1589. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-it-IT.img"
  1590. size="5183988"
  1591. />
  1592. <package
  1593. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-de-DE.img"
  1594. size="5183988"
  1595. />
  1596. <package
  1597. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-nl-NL.img"
  1598. size="5183988"
  1599. />
  1600. <package
  1601. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ru-RU.img"
  1602. size="5183988"
  1603. />
  1604. <package
  1605. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-cmn-CN.img"
  1606. size="5183988"
  1607. />
  1608. <package
  1609. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ko-KR.img"
  1610. size="5183988"
  1611. />
  1612. <package
  1613. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-ja-JP.img"
  1614. size="5183988"
  1615. />
  1616. <package
  1617. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-fi-FI.img"
  1618. size="5183988"
  1619. />
  1620. <package
  1621. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0.1-build1-pl-PL.img"
  1622. size="5183988"
  1623. />
  1624. </otaPackages>
  1625. </productMenu>
  1626. <productMenu id="wa"
  1627. type="0" >
  1628. </productMenu>
  1629. <productMenu id="sip"
  1630. type="1" >
  1631. </productMenu>
  1632. <productMenu id="led"
  1633. type="1" >
  1634. </productMenu>
  1635. <productMenu id="illusion"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="meshIntercom"
  1639. type="30" >
  1640. </productMenu>
  1641. <productMenu id="meshIntercom+"
  1642. type="3"
  1643. url="2" >
  1644. </productMenu>
  1645. <productMenu id="bluetoothIntercom"
  1646. type="1" >
  1647. </productMenu>
  1648. <productMenu id="fmradio"
  1649. type="1"
  1650. url="1" >
  1651. </productMenu>
  1652. <productMenu id="mic"
  1653. type="0" >
  1654. </productMenu>
  1655. <productMenu id="phone"
  1656. type="1" >
  1657. </productMenu>
  1658. <productMenu id="music"
  1659. type="1" >
  1660. </productMenu>
  1661. <productMenu id="musicSharing"
  1662. type="0" >
  1663. </productMenu>
  1664. <productMenu id="deviceSetting"
  1665. type="1"
  1666. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1667. </productMenu>
  1668. <productMenu id="quickGuide"
  1669. type="0"
  1670. url=""
  1671. size="1.12MB" >
  1672. </productMenu>
  1673. <productMenu id="userGuide"
  1674. type="1"
  1675. url=""
  1676. size="2.0MB" >
  1677. </productMenu>
  1678. <productMenu id="videoGuide"
  1679. type="0"
  1680. url=""
  1681. size="3.41MB" >
  1682. </productMenu>
  1683. <productMenu id="keySettings"
  1684. type="1"
  1685. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1686. </productMenu>
  1687. <productMenu id="volume"
  1688. type="13" >
  1689. </productMenu>
  1690. <productMenu id="volume+"
  1691. type="2"
  1692. url="0x6004" >
  1693. </productMenu>
  1694. <productMenu id="battery"
  1695. type="1" >
  1696. </productMenu>
  1697. <productID id="6A1B"
  1698. />
  1699. <productGroupable type="0"
  1700. />
  1701. </product>
  1702. <product id="COMP1"
  1703. name="BMW COM P1"
  1704. series="60"
  1705. latestVersion="1.2"
  1706. latestVersionMesh="0.19"
  1707. latestVersionVoicePrompt="1.0"
  1708. show = "-1" >
  1709. <productMenu id="protocol"
  1710. type="2" >
  1711. </productMenu>
  1712. <productMenu id="ota"
  1713. type="2" >
  1714. <otaLanguages>
  1715. <otaLanguage
  1716. id="0"
  1717. name="English"
  1718. package="0"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="French"
  1723. package="1"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Spanish"
  1728. package="2"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="Italian"
  1733. package="3"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="German"
  1738. package="4"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Dutch"
  1743. package="5"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Russian"
  1748. package="6"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Chinese"
  1753. package="7"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Korean"
  1758. package="8"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Japanese"
  1763. package="9"
  1764. />
  1765. <otaLanguage
  1766. id="0"
  1767. name="Finnish"
  1768. package="10"
  1769. />
  1770. </otaLanguages>
  1771. <otaPackages>
  1772. <package
  1773. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1774. size="5183988"
  1775. />
  1776. <package
  1777. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1778. size="5183988"
  1779. />
  1780. <package
  1781. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1782. size="5183988"
  1783. />
  1784. <package
  1785. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1786. size="5183988"
  1787. />
  1788. <package
  1789. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1790. size="5183988"
  1791. />
  1792. <package
  1793. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1794. size="5183988"
  1795. />
  1796. <package
  1797. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1798. size="5183988"
  1799. />
  1800. <package
  1801. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1802. size="5183988"
  1803. />
  1804. <package
  1805. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1806. size="5183988"
  1807. />
  1808. <package
  1809. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1810. size="5183988"
  1811. />
  1812. <package
  1813. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1814. size="5183988"
  1815. />
  1816. </otaPackages>
  1817. </productMenu>
  1818. <productMenu id="wa"
  1819. type="0" >
  1820. </productMenu>
  1821. <productMenu id="sip"
  1822. type="1" >
  1823. </productMenu>
  1824. <productMenu id="led"
  1825. type="0" >
  1826. </productMenu>
  1827. <productMenu id="illusion"
  1828. type="0" >
  1829. </productMenu>
  1830. <productMenu id="meshIntercom"
  1831. type="30" >
  1832. </productMenu>
  1833. <productMenu id="bluetoothIntercom"
  1834. type="1" >
  1835. </productMenu>
  1836. <productMenu id="bluetoothIntercomGrouping"
  1837. type="0" >
  1838. </productMenu>
  1839. <productMenu id="fmradio"
  1840. type="0" >
  1841. </productMenu>
  1842. <productMenu id="phone"
  1843. type="1" >
  1844. </productMenu>
  1845. <productMenu id="music"
  1846. type="1" >
  1847. </productMenu>
  1848. <productMenu id="musicSharing"
  1849. type="0" >
  1850. </productMenu>
  1851. <productMenu id="deviceSetting"
  1852. type="1"
  1853. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1854. </productMenu>
  1855. <productMenu id="quickGuide"
  1856. type="0"
  1857. url=""
  1858. size="1.12MB" >
  1859. </productMenu>
  1860. <productMenu id="userGuide"
  1861. type="0"
  1862. url=""
  1863. size="2.0MB" >
  1864. </productMenu>
  1865. <productMenu id="videoGuide"
  1866. type="0"
  1867. url=""
  1868. size="3.41MB" >
  1869. </productMenu>
  1870. <productMenu id="volume"
  1871. type="16" >
  1872. </productMenu>
  1873. <productMenu id="battery"
  1874. type="1" >
  1875. </productMenu>
  1876. <productID id="6A80"
  1877. />
  1878. <productGroupable type="0"
  1879. />
  1880. </product>
  1881. <product id="50S"
  1882. name="50S"
  1883. series="50"
  1884. latestVersion="2.7.2"
  1885. show = "1" >
  1886. <productMenu id="protocol"
  1887. type="2" >
  1888. </productMenu>
  1889. <productMenu id="alexa"
  1890. type="0" >
  1891. </productMenu>
  1892. <productMenu id="ota"
  1893. type="0"
  1894. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1895. size="1150234" >
  1896. </productMenu>
  1897. <productMenu id="wa"
  1898. type="1" >
  1899. </productMenu>
  1900. <productMenu id="sip"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="meshIntercom"
  1904. type="30" >
  1905. <productMenuType version="2.1.1"
  1906. type="20"
  1907. />
  1908. </productMenu>
  1909. <productMenu id="meshIntercom+"
  1910. type="3"
  1911. url="2" >
  1912. <productMenuType version="2.5.9"
  1913. type="2"
  1914. />
  1915. <productMenuURL version="2.1.1"
  1916. url="0"
  1917. />
  1918. </productMenu>
  1919. <productMenu id="waveIntercom"
  1920. type="1" >
  1921. <productMenuType version="2.6"
  1922. type="0"
  1923. />
  1924. </productMenu>
  1925. <productMenu id="bluetoothIntercom"
  1926. type="1" >
  1927. </productMenu>
  1928. <productMenu id="phone"
  1929. type="1" >
  1930. </productMenu>
  1931. <productMenu id="music"
  1932. type="1" >
  1933. </productMenu>
  1934. <productMenu id="fmradio"
  1935. type="1" >
  1936. </productMenu>
  1937. <productMenu id="deviceSetting"
  1938. type="1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1940. <productMenuURL version="2.5.9"
  1941. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1942. />
  1943. <productMenuURL version="2.1.1"
  1944. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1945. />
  1946. <productMenuURL version="2.0.3"
  1947. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1948. />
  1949. </productMenu>
  1950. <productMenu id="quickGuide"
  1951. type="0"
  1952. url=""
  1953. size="934KB" >
  1954. </productMenu>
  1955. <productMenu id="userGuide"
  1956. type="1"
  1957. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1958. size="1.14MB" >
  1959. </productMenu>
  1960. <productMenu id="videoGuide"
  1961. type="1"
  1962. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1963. size="3.41MB" >
  1964. </productMenu>
  1965. <productMenu id="connectGuide"
  1966. type="1"
  1967. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1968. size="1.12MB" >
  1969. </productMenu>
  1970. <productMenu id="volume"
  1971. type="11" >
  1972. </productMenu>
  1973. <productMenu id="battery"
  1974. type="1" >
  1975. </productMenu>
  1976. <productID id="3210"
  1977. />
  1978. <productGroupable type="0"
  1979. />
  1980. </product>
  1981. <product id="50S"
  1982. name="50S"
  1983. series="50"
  1984. latestVersion="1.5.1"
  1985. show = "-1" >
  1986. <productMenu id="protocol"
  1987. type="2" >
  1988. </productMenu>
  1989. <productMenu id="alexa"
  1990. type="0" >
  1991. </productMenu>
  1992. <productMenu id="wa"
  1993. type="1" >
  1994. </productMenu>
  1995. <productMenu id="sip"
  1996. type="1" >
  1997. </productMenu>
  1998. <productMenu id="meshIntercom"
  1999. type="30" >
  2000. <productMenuType version="1.2.2"
  2001. type="20"
  2002. />
  2003. </productMenu>
  2004. <productMenu id="meshIntercom+"
  2005. type="3"
  2006. url="2" >
  2007. <productMenuType version="1.4.9"
  2008. type="2"
  2009. />
  2010. <productMenuURL version="1.2.2"
  2011. url="0"
  2012. />
  2013. </productMenu>
  2014. <productMenu id="waveIntercom"
  2015. type="1" >
  2016. <productMenuType version="1.3.9"
  2017. type="0"
  2018. />
  2019. </productMenu>
  2020. <productMenu id="bluetoothIntercom"
  2021. type="1" >
  2022. </productMenu>
  2023. <productMenu id="phone"
  2024. type="1" >
  2025. </productMenu>
  2026. <productMenu id="music"
  2027. type="1" >
  2028. </productMenu>
  2029. <productMenu id="fmradio"
  2030. type="1" >
  2031. </productMenu>
  2032. <productMenu id="deviceSetting"
  2033. type="1"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2035. <productMenuURL version="1.4.9"
  2036. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2037. />
  2038. <productMenuURL version="1.3.9"
  2039. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2040. />
  2041. <productMenuURL version="1.2.2"
  2042. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2043. />
  2044. <productMenuURL version="1.1.1"
  2045. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2046. />
  2047. </productMenu>
  2048. <productMenu id="quickGuide"
  2049. type="0"
  2050. url=""
  2051. size="934KB" >
  2052. </productMenu>
  2053. <productMenu id="userGuide"
  2054. type="1"
  2055. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2056. size="1.14MB" >
  2057. </productMenu>
  2058. <productMenu id="videoGuide"
  2059. type="1"
  2060. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2061. size="3.41MB" >
  2062. </productMenu>
  2063. <productMenu id="volume"
  2064. type="11" >
  2065. </productMenu>
  2066. <productMenu id="battery"
  2067. type="1" >
  2068. </productMenu>
  2069. <productID id="3132"
  2070. />
  2071. <productGroupable type="0"
  2072. />
  2073. </product>
  2074. <product id="50R"
  2075. name="50R"
  2076. series="50"
  2077. latestVersion="2.7.1"
  2078. show = "1" >
  2079. <productMenu id="protocol"
  2080. type="2" >
  2081. </productMenu>
  2082. <productMenu id="alexa"
  2083. type="0" >
  2084. </productMenu>
  2085. <productMenu id="ota"
  2086. type="0"
  2087. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2088. size="1150234" >
  2089. </productMenu>
  2090. <productMenu id="wa"
  2091. type="1" >
  2092. </productMenu>
  2093. <productMenu id="sip"
  2094. type="1" >
  2095. </productMenu>
  2096. <productMenu id="meshIntercom"
  2097. type="30" >
  2098. <productMenuType version="2.1.1"
  2099. type="20"
  2100. />
  2101. </productMenu>
  2102. <productMenu id="meshIntercom+"
  2103. type="3"
  2104. url="2" >
  2105. <productMenuType version="2.5.9"
  2106. type="2"
  2107. />
  2108. <productMenuURL version="2.1.1"
  2109. url="0"
  2110. />
  2111. </productMenu>
  2112. <productMenu id="waveIntercom"
  2113. type="1" >
  2114. <productMenuType version="2.6"
  2115. type="0"
  2116. />
  2117. </productMenu>
  2118. <productMenu id="bluetoothIntercom"
  2119. type="1" >
  2120. </productMenu>
  2121. <productMenu id="phone"
  2122. type="1" >
  2123. </productMenu>
  2124. <productMenu id="music"
  2125. type="1" >
  2126. </productMenu>
  2127. <productMenu id="fmradio"
  2128. type="1" >
  2129. </productMenu>
  2130. <productMenu id="deviceSetting"
  2131. type="1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2133. <productMenuURL version="2.5.9"
  2134. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2135. />
  2136. <productMenuURL version="2.1.1"
  2137. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2138. />
  2139. <productMenuURL version="2.0"
  2140. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2141. />
  2142. </productMenu>
  2143. <productMenu id="quickGuide"
  2144. type="0"
  2145. url=""
  2146. size="344KB" >
  2147. </productMenu>
  2148. <productMenu id="userGuide"
  2149. type="1"
  2150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="videoGuide"
  2154. type="1"
  2155. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2156. size="3.41MB" >
  2157. </productMenu>
  2158. <productMenu id="connectGuide"
  2159. type="1"
  2160. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2161. size="1.12MB" >
  2162. </productMenu>
  2163. <productMenu id="volume"
  2164. type="11" >
  2165. </productMenu>
  2166. <productMenu id="battery"
  2167. type="1" >
  2168. </productMenu>
  2169. <productID id="3218"
  2170. />
  2171. <productGroupable type="0"
  2172. />
  2173. </product>
  2174. <product id="50R"
  2175. name="50R"
  2176. series="50"
  2177. latestVersion="1.5.1"
  2178. show = "-1" >
  2179. <productMenu id="protocol"
  2180. type="2" >
  2181. </productMenu>
  2182. <productMenu id="alexa"
  2183. type="0" >
  2184. </productMenu>
  2185. <productMenu id="wa"
  2186. type="1" >
  2187. </productMenu>
  2188. <productMenu id="sip"
  2189. type="1" >
  2190. </productMenu>
  2191. <productMenu id="meshIntercom"
  2192. type="30" >
  2193. <productMenuType version="1.2.2"
  2194. type="20"
  2195. />
  2196. </productMenu>
  2197. <productMenu id="meshIntercom+"
  2198. type="3"
  2199. url="2" >
  2200. <productMenuType version="1.4.9"
  2201. type="2"
  2202. />
  2203. <productMenuURL version="1.2.2"
  2204. url="0"
  2205. />
  2206. </productMenu>
  2207. <productMenu id="waveIntercom"
  2208. type="1" >
  2209. <productMenuType version="1.3.9"
  2210. type="0"
  2211. />
  2212. </productMenu>
  2213. <productMenu id="bluetoothIntercom"
  2214. type="1" >
  2215. </productMenu>
  2216. <productMenu id="phone"
  2217. type="1" >
  2218. </productMenu>
  2219. <productMenu id="music"
  2220. type="1" >
  2221. </productMenu>
  2222. <productMenu id="fmradio"
  2223. type="1" >
  2224. </productMenu>
  2225. <productMenu id="deviceSetting"
  2226. type="1"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2228. <productMenuURL version="1.4.9"
  2229. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2230. />
  2231. <productMenuURL version="1.3.9"
  2232. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2233. />
  2234. <productMenuURL version="1.2.2"
  2235. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2236. />
  2237. <productMenuURL version="1.1.1"
  2238. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2239. />
  2240. </productMenu>
  2241. <productMenu id="quickGuide"
  2242. type="0"
  2243. url=""
  2244. size="344KB" >
  2245. </productMenu>
  2246. <productMenu id="userGuide"
  2247. type="1"
  2248. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="videoGuide"
  2252. type="1"
  2253. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2254. size="3.41MB" >
  2255. </productMenu>
  2256. <productMenu id="volume"
  2257. type="11" >
  2258. </productMenu>
  2259. <productMenu id="battery"
  2260. type="1" >
  2261. </productMenu>
  2262. <productID id="3134"
  2263. />
  2264. <productGroupable type="0"
  2265. />
  2266. </product>
  2267. <product id="50C"
  2268. name="50C"
  2269. series="50"
  2270. latestVersion="1.4.3"
  2271. show = "1" >
  2272. <productMenu id="protocol"
  2273. type="2" >
  2274. </productMenu>
  2275. <productMenu id="ota"
  2276. type="0" >
  2277. </productMenu>
  2278. <productMenu id="wa"
  2279. type="1" >
  2280. </productMenu>
  2281. <productMenu id="sip"
  2282. type="1" >
  2283. </productMenu>
  2284. <productMenu id="meshIntercom"
  2285. type="30" >
  2286. <productMenuType version="1.1.1"
  2287. type="20"
  2288. />
  2289. </productMenu>
  2290. <productMenu id="meshIntercom+"
  2291. type="3"
  2292. url="2" >
  2293. <productMenuType version="1.3.9"
  2294. type="2"
  2295. />
  2296. <productMenuURL version="1.1.1"
  2297. url="0"
  2298. />
  2299. </productMenu>
  2300. <productMenu id="waveIntercom"
  2301. type="1" >
  2302. <productMenuType version="1.2.9"
  2303. type="0"
  2304. />
  2305. </productMenu>
  2306. <productMenu id="bluetoothIntercom"
  2307. type="1" >
  2308. </productMenu>
  2309. <productMenu id="phone"
  2310. type="1" >
  2311. </productMenu>
  2312. <productMenu id="music"
  2313. type="1" >
  2314. </productMenu>
  2315. <productMenu id="fmradio"
  2316. type="1" >
  2317. </productMenu>
  2318. <productMenu id="deviceSetting"
  2319. type="1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2321. <productMenuURL version="1.3.9"
  2322. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2323. />
  2324. <productMenuURL version="1.1.1"
  2325. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2326. />
  2327. <productMenuURL version="1.0.1"
  2328. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2329. />
  2330. </productMenu>
  2331. <productMenu id="quickGuide"
  2332. type="0"
  2333. url=""
  2334. size="344KB" >
  2335. </productMenu>
  2336. <productMenu id="userGuide"
  2337. type="1"
  2338. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2339. size="3.41MB" >
  2340. </productMenu>
  2341. <productMenu id="connectGuide"
  2342. type="1"
  2343. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2344. size="1.12MB" >
  2345. </productMenu>
  2346. <productMenu id="volume"
  2347. type="11" >
  2348. </productMenu>
  2349. <productMenu id="battery"
  2350. type="1" >
  2351. </productMenu>
  2352. <productID id="3232"
  2353. />
  2354. <productGroupable type="0"
  2355. />
  2356. </product>
  2357. <product id="PHANTOMXB"
  2358. name="PHANTOM XB"
  2359. series="Helmet"
  2360. latestVersion="1.2.9"
  2361. latestVersionVoicePrompt="1.6"
  2362. show = "-1" >
  2363. <productMenu id="protocol"
  2364. type="2" >
  2365. </productMenu>
  2366. <productMenu id="ota"
  2367. type="2" >
  2368. <otaLanguages>
  2369. <otaLanguage
  2370. id="0"
  2371. name="English"
  2372. package="0"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="French"
  2377. package="1"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Spanish"
  2382. package="2"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="Italian"
  2387. package="3"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="German"
  2392. package="4"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Dutch"
  2397. package="5"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Russian"
  2402. package="6"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Chinese"
  2407. package="7"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Korean"
  2412. package="8"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Japanese"
  2417. package="9"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Finnish"
  2422. package="10"
  2423. />
  2424. <otaLanguage
  2425. id="0"
  2426. name="Polish"
  2427. package="11"
  2428. />
  2429. </otaLanguages>
  2430. <otaPackages>
  2431. <package
  2432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2433. size="5183988"
  2434. />
  2435. <package
  2436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2437. size="5183988"
  2438. />
  2439. <package
  2440. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2441. size="5183988"
  2442. />
  2443. <package
  2444. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2445. size="5183988"
  2446. />
  2447. <package
  2448. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2449. size="5183988"
  2450. />
  2451. <package
  2452. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2453. size="5183988"
  2454. />
  2455. <package
  2456. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2457. size="5183988"
  2458. />
  2459. <package
  2460. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2461. size="5183988"
  2462. />
  2463. <package
  2464. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2465. size="5183988"
  2466. />
  2467. <package
  2468. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2469. size="5183988"
  2470. />
  2471. <package
  2472. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2473. size="5183988"
  2474. />
  2475. <package
  2476. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2477. size="5183988"
  2478. />
  2479. </otaPackages>
  2480. </productMenu>
  2481. <productMenu id="wa"
  2482. type="0" >
  2483. </productMenu>
  2484. <productMenu id="led"
  2485. type="5" >
  2486. </productMenu>
  2487. <productMenu id="led+"
  2488. type="2"
  2489. url="1" >
  2490. </productMenu>
  2491. <productMenu id="meshIntercom"
  2492. type="30" >
  2493. </productMenu>
  2494. <productMenu id="meshIntercom+"
  2495. type="3"
  2496. url="2" >
  2497. </productMenu>
  2498. <productMenu id="waveIntercom"
  2499. type="1" >
  2500. </productMenu>
  2501. <productMenu id="fmradio"
  2502. type="0" >
  2503. </productMenu>
  2504. <productMenu id="phone"
  2505. type="1" >
  2506. </productMenu>
  2507. <productMenu id="music"
  2508. type="1" >
  2509. </productMenu>
  2510. <productMenu id="musicSharing"
  2511. type="0" >
  2512. </productMenu>
  2513. <productMenu id="deviceSetting"
  2514. type="1"
  2515. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2516. <productMenuURL version="1.2.10"
  2517. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2518. />
  2519. <productMenuURL version="1.2.4"
  2520. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2521. />
  2522. </productMenu>
  2523. <productMenu id="quickGuide"
  2524. type="0"
  2525. url=""
  2526. size="1.12MB" >
  2527. </productMenu>
  2528. <productMenu id="userGuide"
  2529. type="1"
  2530. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2531. size="2.0MB" >
  2532. </productMenu>
  2533. <productMenu id="videoGuide"
  2534. type="0"
  2535. url=""
  2536. size="3.41MB" >
  2537. </productMenu>
  2538. <productMenu id="volume"
  2539. type="16" >
  2540. </productMenu>
  2541. <productMenu id="volume+"
  2542. type="2"
  2543. url="0x6004" >
  2544. </productMenu>
  2545. <productMenu id="battery"
  2546. type="1" >
  2547. </productMenu>
  2548. <productID id="6A0F"
  2549. />
  2550. <productGroupable type="0"
  2551. />
  2552. </product>
  2553. <product id="PHANTOMXB"
  2554. name="PHANTOM XB"
  2555. series="Helmet"
  2556. latestVersion="1.2.9"
  2557. latestVersionVoicePrompt="1.6"
  2558. show = "-1" >
  2559. <productMenu id="protocol"
  2560. type="2" >
  2561. </productMenu>
  2562. <productMenu id="ota"
  2563. type="2" >
  2564. <otaLanguages>
  2565. <otaLanguage
  2566. id="0"
  2567. name="English"
  2568. package="0"
  2569. />
  2570. <otaLanguage
  2571. id="0"
  2572. name="French"
  2573. package="1"
  2574. />
  2575. <otaLanguage
  2576. id="0"
  2577. name="Spanish"
  2578. package="2"
  2579. />
  2580. <otaLanguage
  2581. id="0"
  2582. name="Italian"
  2583. package="3"
  2584. />
  2585. <otaLanguage
  2586. id="0"
  2587. name="German"
  2588. package="4"
  2589. />
  2590. <otaLanguage
  2591. id="0"
  2592. name="Dutch"
  2593. package="5"
  2594. />
  2595. <otaLanguage
  2596. id="0"
  2597. name="Russian"
  2598. package="6"
  2599. />
  2600. <otaLanguage
  2601. id="0"
  2602. name="Chinese"
  2603. package="7"
  2604. />
  2605. <otaLanguage
  2606. id="0"
  2607. name="Korean"
  2608. package="8"
  2609. />
  2610. <otaLanguage
  2611. id="0"
  2612. name="Japanese"
  2613. package="9"
  2614. />
  2615. <otaLanguage
  2616. id="0"
  2617. name="Finnish"
  2618. package="10"
  2619. />
  2620. <otaLanguage
  2621. id="0"
  2622. name="Polish"
  2623. package="11"
  2624. />
  2625. </otaLanguages>
  2626. <otaPackages>
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2665. size="5183988"
  2666. />
  2667. <package
  2668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2669. size="5183988"
  2670. />
  2671. <package
  2672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2673. size="5183988"
  2674. />
  2675. </otaPackages>
  2676. </productMenu>
  2677. <productMenu id="wa"
  2678. type="0" >
  2679. </productMenu>
  2680. <productMenu id="led"
  2681. type="5" >
  2682. </productMenu>
  2683. <productMenu id="led+"
  2684. type="2"
  2685. url="1" >
  2686. </productMenu>
  2687. <productMenu id="meshIntercom"
  2688. type="30" >
  2689. </productMenu>
  2690. <productMenu id="meshIntercom+"
  2691. type="3"
  2692. url="2" >
  2693. </productMenu>
  2694. <productMenu id="waveIntercom"
  2695. type="1" >
  2696. </productMenu>
  2697. <productMenu id="fmradio"
  2698. type="0" >
  2699. </productMenu>
  2700. <productMenu id="phone"
  2701. type="1" >
  2702. </productMenu>
  2703. <productMenu id="music"
  2704. type="1" >
  2705. </productMenu>
  2706. <productMenu id="musicSharing"
  2707. type="0" >
  2708. </productMenu>
  2709. <productMenu id="deviceSetting"
  2710. type="1"
  2711. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2712. <productMenuURL version="1.2.10"
  2713. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2714. />
  2715. <productMenuURL version="1.2.4"
  2716. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2717. />
  2718. <productMenuURL version="1.2.1"
  2719. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2720. />
  2721. </productMenu>
  2722. <productMenu id="quickGuide"
  2723. type="0"
  2724. url=""
  2725. size="1.12MB" >
  2726. </productMenu>
  2727. <productMenu id="userGuide"
  2728. type="1"
  2729. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2730. size="2.0MB" >
  2731. </productMenu>
  2732. <productMenu id="videoGuide"
  2733. type="0"
  2734. url=""
  2735. size="3.41MB" >
  2736. </productMenu>
  2737. <productMenu id="volume"
  2738. type="16" >
  2739. </productMenu>
  2740. <productMenu id="volume+"
  2741. type="2"
  2742. url="0x6004" >
  2743. </productMenu>
  2744. <productMenu id="battery"
  2745. type="1" >
  2746. </productMenu>
  2747. <productID id="6A0C"
  2748. />
  2749. <productGroupable type="0"
  2750. />
  2751. </product>
  2752. <product id="PHANTOMKV"
  2753. name="PHANTOM KV"
  2754. series="Helmet"
  2755. latestVersion="1.2.10"
  2756. latestVersionVoicePrompt="1.7"
  2757. show = "1" >
  2758. <productMenu id="protocol"
  2759. type="2" >
  2760. </productMenu>
  2761. <productMenu id="ota"
  2762. type="2" >
  2763. <otaLanguages>
  2764. <otaLanguage
  2765. id="0"
  2766. name="English"
  2767. package="0"
  2768. />
  2769. <otaLanguage
  2770. id="0"
  2771. name="French"
  2772. package="1"
  2773. />
  2774. <otaLanguage
  2775. id="0"
  2776. name="Spanish"
  2777. package="2"
  2778. />
  2779. <otaLanguage
  2780. id="0"
  2781. name="Italian"
  2782. package="3"
  2783. />
  2784. <otaLanguage
  2785. id="0"
  2786. name="German"
  2787. package="4"
  2788. />
  2789. <otaLanguage
  2790. id="0"
  2791. name="Dutch"
  2792. package="5"
  2793. />
  2794. <otaLanguage
  2795. id="0"
  2796. name="Russian"
  2797. package="6"
  2798. />
  2799. <otaLanguage
  2800. id="0"
  2801. name="Chinese"
  2802. package="7"
  2803. />
  2804. <otaLanguage
  2805. id="0"
  2806. name="Korean"
  2807. package="8"
  2808. />
  2809. <otaLanguage
  2810. id="0"
  2811. name="Japanese"
  2812. package="9"
  2813. />
  2814. <otaLanguage
  2815. id="0"
  2816. name="Finnish"
  2817. package="10"
  2818. />
  2819. <otaLanguage
  2820. id="0"
  2821. name="Polish"
  2822. package="11"
  2823. />
  2824. </otaLanguages>
  2825. <otaPackages>
  2826. <package
  2827. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2828. size="5183988"
  2829. />
  2830. <package
  2831. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2832. size="5183988"
  2833. />
  2834. <package
  2835. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2836. size="5183988"
  2837. />
  2838. <package
  2839. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2840. size="5183988"
  2841. />
  2842. <package
  2843. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2844. size="5183988"
  2845. />
  2846. <package
  2847. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2848. size="5183988"
  2849. />
  2850. <package
  2851. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2852. size="5183988"
  2853. />
  2854. <package
  2855. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2856. size="5183988"
  2857. />
  2858. <package
  2859. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2860. size="5183988"
  2861. />
  2862. <package
  2863. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2864. size="5183988"
  2865. />
  2866. <package
  2867. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2868. size="5183988"
  2869. />
  2870. <package
  2871. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2872. size="5183988"
  2873. />
  2874. </otaPackages>
  2875. </productMenu>
  2876. <productMenu id="wa"
  2877. type="0" >
  2878. </productMenu>
  2879. <productMenu id="led"
  2880. type="5" >
  2881. </productMenu>
  2882. <productMenu id="led+"
  2883. type="2"
  2884. url="1" >
  2885. </productMenu>
  2886. <productMenu id="meshIntercom"
  2887. type="30" >
  2888. </productMenu>
  2889. <productMenu id="meshIntercom+"
  2890. type="3"
  2891. url="2" >
  2892. </productMenu>
  2893. <productMenu id="waveIntercom"
  2894. type="1" >
  2895. </productMenu>
  2896. <productMenu id="fmradio"
  2897. type="0" >
  2898. </productMenu>
  2899. <productMenu id="phone"
  2900. type="1" >
  2901. </productMenu>
  2902. <productMenu id="music"
  2903. type="1" >
  2904. </productMenu>
  2905. <productMenu id="musicSharing"
  2906. type="0" >
  2907. </productMenu>
  2908. <productMenu id="deviceSetting"
  2909. type="1"
  2910. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  2911. <productMenuURL version="1.2.10"
  2912. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  2913. />
  2914. <productMenuURL version="1.2.4"
  2915. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2916. />
  2917. </productMenu>
  2918. <productMenu id="quickGuide"
  2919. type="0"
  2920. url=""
  2921. size="1.12MB" >
  2922. </productMenu>
  2923. <productMenu id="userGuide"
  2924. type="1"
  2925. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  2926. size="2.0MB" >
  2927. </productMenu>
  2928. <productMenu id="videoGuide"
  2929. type="0"
  2930. url=""
  2931. size="3.41MB" >
  2932. </productMenu>
  2933. <productMenu id="connectGuide"
  2934. type="1"
  2935. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2936. size="1.1MB" >
  2937. </productMenu>
  2938. <productMenu id="volume"
  2939. type="16" >
  2940. </productMenu>
  2941. <productMenu id="volume+"
  2942. type="2"
  2943. url="0x6004" >
  2944. </productMenu>
  2945. <productMenu id="soundMode"
  2946. type="1" >
  2947. </productMenu>
  2948. <productMenu id="battery"
  2949. type="1" >
  2950. </productMenu>
  2951. <productID id="6A13"
  2952. />
  2953. <productGroupable type="0"
  2954. />
  2955. </product>
  2956. <product id="PHANTOMCamera"
  2957. name="PHANTOM Camera"
  2958. series="Helmet"
  2959. latestVersion="1.2.10"
  2960. latestVersionVoicePrompt="1.7"
  2961. show = "1" >
  2962. <productMenu id="protocol"
  2963. type="2" >
  2964. </productMenu>
  2965. <productMenu id="ota"
  2966. type="3" >
  2967. <otaLanguages>
  2968. <otaLanguage
  2969. id="0"
  2970. name="English"
  2971. package="0"
  2972. />
  2973. <otaLanguage
  2974. id="0"
  2975. name="French"
  2976. package="1"
  2977. />
  2978. <otaLanguage
  2979. id="0"
  2980. name="Spanish"
  2981. package="2"
  2982. />
  2983. <otaLanguage
  2984. id="0"
  2985. name="Italian"
  2986. package="3"
  2987. />
  2988. <otaLanguage
  2989. id="0"
  2990. name="German"
  2991. package="4"
  2992. />
  2993. <otaLanguage
  2994. id="0"
  2995. name="Dutch"
  2996. package="5"
  2997. />
  2998. <otaLanguage
  2999. id="0"
  3000. name="Russian"
  3001. package="6"
  3002. />
  3003. <otaLanguage
  3004. id="0"
  3005. name="Chinese"
  3006. package="7"
  3007. />
  3008. <otaLanguage
  3009. id="0"
  3010. name="Korean"
  3011. package="8"
  3012. />
  3013. <otaLanguage
  3014. id="0"
  3015. name="Japanese"
  3016. package="9"
  3017. />
  3018. <otaLanguage
  3019. id="0"
  3020. name="Finnish"
  3021. package="10"
  3022. />
  3023. <otaLanguage
  3024. id="0"
  3025. name="Polish"
  3026. package="11"
  3027. />
  3028. </otaLanguages>
  3029. <otaPackages>
  3030. <package
  3031. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3032. size="5183988"
  3033. />
  3034. <package
  3035. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3036. size="5183988"
  3037. />
  3038. <package
  3039. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3040. size="5183988"
  3041. />
  3042. <package
  3043. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3044. size="5183988"
  3045. />
  3046. <package
  3047. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3048. size="5183988"
  3049. />
  3050. <package
  3051. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3052. size="5183988"
  3053. />
  3054. <package
  3055. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3056. size="5183988"
  3057. />
  3058. <package
  3059. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3060. size="5183988"
  3061. />
  3062. <package
  3063. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3064. size="5183988"
  3065. />
  3066. <package
  3067. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3068. size="5183988"
  3069. />
  3070. <package
  3071. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3072. size="5183988"
  3073. />
  3074. <package
  3075. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3076. size="5183988"
  3077. />
  3078. </otaPackages>
  3079. </productMenu>
  3080. <productMenu id="wa"
  3081. type="0" >
  3082. </productMenu>
  3083. <productMenu id="led"
  3084. type="5" >
  3085. </productMenu>
  3086. <productMenu id="led+"
  3087. type="2"
  3088. url="1" >
  3089. </productMenu>
  3090. <productMenu id="meshIntercom"
  3091. type="30" >
  3092. </productMenu>
  3093. <productMenu id="meshIntercom+"
  3094. type="3"
  3095. url="2" >
  3096. </productMenu>
  3097. <productMenu id="waveIntercom"
  3098. type="1" >
  3099. </productMenu>
  3100. <productMenu id="fmradio"
  3101. type="0" >
  3102. </productMenu>
  3103. <productMenu id="phone"
  3104. type="1" >
  3105. </productMenu>
  3106. <productMenu id="music"
  3107. type="1" >
  3108. </productMenu>
  3109. <productMenu id="musicSharing"
  3110. type="0" >
  3111. </productMenu>
  3112. <productMenu id="deviceSetting"
  3113. type="1"
  3114. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3115. </productMenu>
  3116. <productMenu id="quickGuide"
  3117. type="0"
  3118. url=""
  3119. size="1.12MB" >
  3120. </productMenu>
  3121. <productMenu id="userGuide"
  3122. type="1"
  3123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3124. size="2.0MB" >
  3125. </productMenu>
  3126. <productMenu id="videoGuide"
  3127. type="0"
  3128. url=""
  3129. size="3.41MB" >
  3130. </productMenu>
  3131. <productMenu id="volume"
  3132. type="16" >
  3133. </productMenu>
  3134. <productMenu id="battery"
  3135. type="1" >
  3136. </productMenu>
  3137. <productID id="6A10"
  3138. />
  3139. <productGroupable type="0"
  3140. />
  3141. </product>
  3142. <product id="PHANTOMCamera"
  3143. name="PHANTOM Camera"
  3144. series="Helmet"
  3145. latestVersion="1.2.10"
  3146. latestVersionVoicePrompt="1.7"
  3147. show = "-1" >
  3148. <productMenu id="protocol"
  3149. type="2" >
  3150. </productMenu>
  3151. <productMenu id="ota"
  3152. type="3" >
  3153. <otaLanguages>
  3154. <otaLanguage
  3155. id="0"
  3156. name="English"
  3157. package="0"
  3158. />
  3159. <otaLanguage
  3160. id="0"
  3161. name="French"
  3162. package="1"
  3163. />
  3164. <otaLanguage
  3165. id="0"
  3166. name="Spanish"
  3167. package="2"
  3168. />
  3169. <otaLanguage
  3170. id="0"
  3171. name="Italian"
  3172. package="3"
  3173. />
  3174. <otaLanguage
  3175. id="0"
  3176. name="German"
  3177. package="4"
  3178. />
  3179. <otaLanguage
  3180. id="0"
  3181. name="Dutch"
  3182. package="5"
  3183. />
  3184. <otaLanguage
  3185. id="0"
  3186. name="Russian"
  3187. package="6"
  3188. />
  3189. <otaLanguage
  3190. id="0"
  3191. name="Chinese"
  3192. package="7"
  3193. />
  3194. <otaLanguage
  3195. id="0"
  3196. name="Korean"
  3197. package="8"
  3198. />
  3199. <otaLanguage
  3200. id="0"
  3201. name="Japanese"
  3202. package="9"
  3203. />
  3204. <otaLanguage
  3205. id="0"
  3206. name="Finnish"
  3207. package="10"
  3208. />
  3209. <otaLanguage
  3210. id="0"
  3211. name="Polish"
  3212. package="11"
  3213. />
  3214. </otaLanguages>
  3215. <otaPackages>
  3216. <package
  3217. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3218. size="5183988"
  3219. />
  3220. <package
  3221. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3222. size="5183988"
  3223. />
  3224. <package
  3225. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3226. size="5183988"
  3227. />
  3228. <package
  3229. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3230. size="5183988"
  3231. />
  3232. <package
  3233. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3234. size="5183988"
  3235. />
  3236. <package
  3237. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3238. size="5183988"
  3239. />
  3240. <package
  3241. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3242. size="5183988"
  3243. />
  3244. <package
  3245. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3246. size="5183988"
  3247. />
  3248. <package
  3249. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3250. size="5183988"
  3251. />
  3252. <package
  3253. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3254. size="5183988"
  3255. />
  3256. <package
  3257. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3258. size="5183988"
  3259. />
  3260. <package
  3261. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3262. size="5183988"
  3263. />
  3264. </otaPackages>
  3265. </productMenu>
  3266. <productMenu id="wa"
  3267. type="0" >
  3268. </productMenu>
  3269. <productMenu id="led"
  3270. type="5" >
  3271. </productMenu>
  3272. <productMenu id="led+"
  3273. type="2"
  3274. url="1" >
  3275. </productMenu>
  3276. <productMenu id="meshIntercom"
  3277. type="30" >
  3278. </productMenu>
  3279. <productMenu id="meshIntercom+"
  3280. type="3"
  3281. url="2" >
  3282. </productMenu>
  3283. <productMenu id="waveIntercom"
  3284. type="1" >
  3285. </productMenu>
  3286. <productMenu id="fmradio"
  3287. type="0" >
  3288. </productMenu>
  3289. <productMenu id="phone"
  3290. type="1" >
  3291. </productMenu>
  3292. <productMenu id="music"
  3293. type="1" >
  3294. </productMenu>
  3295. <productMenu id="musicSharing"
  3296. type="0" >
  3297. </productMenu>
  3298. <productMenu id="deviceSetting"
  3299. type="1"
  3300. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3301. </productMenu>
  3302. <productMenu id="quickGuide"
  3303. type="0"
  3304. url=""
  3305. size="1.12MB" >
  3306. </productMenu>
  3307. <productMenu id="userGuide"
  3308. type="1"
  3309. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3310. size="2.0MB" >
  3311. </productMenu>
  3312. <productMenu id="videoGuide"
  3313. type="0"
  3314. url=""
  3315. size="3.41MB" >
  3316. </productMenu>
  3317. <productMenu id="volume"
  3318. type="16" >
  3319. </productMenu>
  3320. <productMenu id="battery"
  3321. type="1" >
  3322. </productMenu>
  3323. <productID id="6A09"
  3324. />
  3325. <productGroupable type="0"
  3326. />
  3327. </product>
  3328. <product id="PHANTOM"
  3329. name="PHANTOM ANC"
  3330. series="Helmet"
  3331. latestVersion="1.2.9"
  3332. latestVersionVoicePrompt="1.7"
  3333. show = "1" >
  3334. <productMenu id="protocol"
  3335. type="2" >
  3336. </productMenu>
  3337. <productMenu id="ota"
  3338. type="2" >
  3339. <productMenuType version="0.6.9"
  3340. type="0"
  3341. />
  3342. <otaLanguages>
  3343. <otaLanguage
  3344. id="0"
  3345. name="English"
  3346. package="0"
  3347. />
  3348. <otaLanguage
  3349. id="0"
  3350. name="French"
  3351. package="1"
  3352. />
  3353. <otaLanguage
  3354. id="0"
  3355. name="Spanish"
  3356. package="2"
  3357. />
  3358. <otaLanguage
  3359. id="0"
  3360. name="Italian"
  3361. package="3"
  3362. />
  3363. <otaLanguage
  3364. id="0"
  3365. name="German"
  3366. package="4"
  3367. />
  3368. <otaLanguage
  3369. id="0"
  3370. name="Dutch"
  3371. package="5"
  3372. />
  3373. <otaLanguage
  3374. id="0"
  3375. name="Russian"
  3376. package="6"
  3377. />
  3378. <otaLanguage
  3379. id="0"
  3380. name="Chinese"
  3381. package="7"
  3382. />
  3383. <otaLanguage
  3384. id="0"
  3385. name="Korean"
  3386. package="8"
  3387. />
  3388. <otaLanguage
  3389. id="0"
  3390. name="Japanese"
  3391. package="9"
  3392. />
  3393. <otaLanguage
  3394. id="0"
  3395. name="Finnish"
  3396. package="10"
  3397. />
  3398. <otaLanguage
  3399. id="0"
  3400. name="Polish"
  3401. package="11"
  3402. />
  3403. </otaLanguages>
  3404. <otaPackages>
  3405. <package
  3406. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3407. size="5183988"
  3408. />
  3409. <package
  3410. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3411. size="5183988"
  3412. />
  3413. <package
  3414. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3415. size="5183988"
  3416. />
  3417. <package
  3418. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3419. size="5183988"
  3420. />
  3421. <package
  3422. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3423. size="5183988"
  3424. />
  3425. <package
  3426. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3427. size="5183988"
  3428. />
  3429. <package
  3430. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3431. size="5183988"
  3432. />
  3433. <package
  3434. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3435. size="5183988"
  3436. />
  3437. <package
  3438. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3439. size="5183988"
  3440. />
  3441. <package
  3442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3443. size="5183988"
  3444. />
  3445. <package
  3446. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3447. size="5183988"
  3448. />
  3449. <package
  3450. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3451. size="5183988"
  3452. />
  3453. </otaPackages>
  3454. </productMenu>
  3455. <productMenu id="wa"
  3456. type="0" >
  3457. </productMenu>
  3458. <productMenu id="led"
  3459. type="5" >
  3460. </productMenu>
  3461. <productMenu id="led+"
  3462. type="2"
  3463. url="1" >
  3464. </productMenu>
  3465. <productMenu id="meshIntercom"
  3466. type="30" >
  3467. </productMenu>
  3468. <productMenu id="meshIntercom+"
  3469. type="3"
  3470. url="2" >
  3471. <productMenuURL version="1.0.4"
  3472. url="10"
  3473. />
  3474. </productMenu>
  3475. <productMenu id="waveIntercom"
  3476. type="1" >
  3477. <productMenuType version="1.0.9"
  3478. type="0"
  3479. />
  3480. </productMenu>
  3481. <productMenu id="fmradio"
  3482. type="0" >
  3483. </productMenu>
  3484. <productMenu id="phone"
  3485. type="1" >
  3486. </productMenu>
  3487. <productMenu id="music"
  3488. type="1" >
  3489. </productMenu>
  3490. <productMenu id="musicSharing"
  3491. type="0" >
  3492. </productMenu>
  3493. <productMenu id="deviceSetting"
  3494. type="1"
  3495. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3496. <productMenuURL version="1.2.10"
  3497. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3498. />
  3499. <productMenuURL version="1.2.4"
  3500. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3501. />
  3502. <productMenuURL version="1.2.1"
  3503. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3504. />
  3505. <productMenuURL version="1.1.2"
  3506. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3507. />
  3508. <productMenuURL version="1.0.4"
  3509. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3510. />
  3511. </productMenu>
  3512. <productMenu id="quickGuide"
  3513. type="0"
  3514. url=""
  3515. size="1.12MB" >
  3516. </productMenu>
  3517. <productMenu id="userGuide"
  3518. type="1"
  3519. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3520. size="2.0MB" >
  3521. </productMenu>
  3522. <productMenu id="videoGuide"
  3523. type="0"
  3524. url=""
  3525. size="3.41MB" >
  3526. </productMenu>
  3527. <productMenu id="connectGuide"
  3528. type="1"
  3529. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3530. size="1.1MB" >
  3531. </productMenu>
  3532. <productMenu id="volume"
  3533. type="16" >
  3534. </productMenu>
  3535. <productMenu id="volume+"
  3536. type="2"
  3537. url="0x6004" >
  3538. </productMenu>
  3539. <productMenu id="soundMode"
  3540. type="1" >
  3541. <productMenuType version="0.9.11"
  3542. type="0"
  3543. />
  3544. </productMenu>
  3545. <productMenu id="battery"
  3546. type="1" >
  3547. </productMenu>
  3548. <productID id="6A01"
  3549. />
  3550. <productGroupable type="0"
  3551. />
  3552. </product>
  3553. <product id="PHANTOM"
  3554. name="PHANTOM ANC"
  3555. series="Helmet"
  3556. latestVersion="1.2.9"
  3557. latestVersionVoicePrompt="1.7"
  3558. show = "-1" >
  3559. <productMenu id="protocol"
  3560. type="2" >
  3561. </productMenu>
  3562. <productMenu id="ota"
  3563. type="2" >
  3564. <otaLanguages>
  3565. <otaLanguage
  3566. id="0"
  3567. name="English"
  3568. package="0"
  3569. />
  3570. <otaLanguage
  3571. id="0"
  3572. name="French"
  3573. package="1"
  3574. />
  3575. <otaLanguage
  3576. id="0"
  3577. name="Spanish"
  3578. package="2"
  3579. />
  3580. <otaLanguage
  3581. id="0"
  3582. name="Italian"
  3583. package="3"
  3584. />
  3585. <otaLanguage
  3586. id="0"
  3587. name="German"
  3588. package="4"
  3589. />
  3590. <otaLanguage
  3591. id="0"
  3592. name="Dutch"
  3593. package="5"
  3594. />
  3595. <otaLanguage
  3596. id="0"
  3597. name="Russian"
  3598. package="6"
  3599. />
  3600. <otaLanguage
  3601. id="0"
  3602. name="Chinese"
  3603. package="7"
  3604. />
  3605. <otaLanguage
  3606. id="0"
  3607. name="Korean"
  3608. package="8"
  3609. />
  3610. <otaLanguage
  3611. id="0"
  3612. name="Japanese"
  3613. package="9"
  3614. />
  3615. <otaLanguage
  3616. id="0"
  3617. name="Finnish"
  3618. package="10"
  3619. />
  3620. <otaLanguage
  3621. id="0"
  3622. name="Polish"
  3623. package="11"
  3624. />
  3625. </otaLanguages>
  3626. <otaPackages>
  3627. <package
  3628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3629. size="5183988"
  3630. />
  3631. <package
  3632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3633. size="5183988"
  3634. />
  3635. <package
  3636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3637. size="5183988"
  3638. />
  3639. <package
  3640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3641. size="5183988"
  3642. />
  3643. <package
  3644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3645. size="5183988"
  3646. />
  3647. <package
  3648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3649. size="5183988"
  3650. />
  3651. <package
  3652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3653. size="5183988"
  3654. />
  3655. <package
  3656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3657. size="5183988"
  3658. />
  3659. <package
  3660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3661. size="5183988"
  3662. />
  3663. <package
  3664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3665. size="5183988"
  3666. />
  3667. <package
  3668. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3669. size="5183988"
  3670. />
  3671. <package
  3672. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3673. size="5183988"
  3674. />
  3675. </otaPackages>
  3676. </productMenu>
  3677. <productMenu id="led"
  3678. type="5" >
  3679. </productMenu>
  3680. <productMenu id="led+"
  3681. type="2"
  3682. url="1" >
  3683. </productMenu>
  3684. <productMenu id="meshIntercom"
  3685. type="30" >
  3686. </productMenu>
  3687. <productMenu id="meshIntercom+"
  3688. type="3"
  3689. url="2" >
  3690. </productMenu>
  3691. <productMenu id="waveIntercom"
  3692. type="1" >
  3693. </productMenu>
  3694. <productMenu id="fmradio"
  3695. type="0" >
  3696. </productMenu>
  3697. <productMenu id="phone"
  3698. type="1" >
  3699. </productMenu>
  3700. <productMenu id="music"
  3701. type="1" >
  3702. </productMenu>
  3703. <productMenu id="musicSharing"
  3704. type="0" >
  3705. </productMenu>
  3706. <productMenu id="deviceSetting"
  3707. type="1"
  3708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3709. <productMenuURL version="1.2.10"
  3710. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3711. />
  3712. <productMenuURL version="1.2.4"
  3713. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3714. />
  3715. </productMenu>
  3716. <productMenu id="quickGuide"
  3717. type="0"
  3718. url=""
  3719. size="1.12MB" >
  3720. </productMenu>
  3721. <productMenu id="userGuide"
  3722. type="1"
  3723. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3724. size="2.0MB" >
  3725. </productMenu>
  3726. <productMenu id="videoGuide"
  3727. type="0"
  3728. url=""
  3729. size="3.41MB" >
  3730. </productMenu>
  3731. <productMenu id="connectGuide"
  3732. type="1"
  3733. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3734. size="1.1MB" >
  3735. </productMenu>
  3736. <productMenu id="volume"
  3737. type="16" >
  3738. </productMenu>
  3739. <productMenu id="volume+"
  3740. type="2"
  3741. url="0x6004" >
  3742. </productMenu>
  3743. <productMenu id="soundMode"
  3744. type="1" >
  3745. </productMenu>
  3746. <productMenu id="battery"
  3747. type="1" >
  3748. </productMenu>
  3749. <productID id="6A19"
  3750. />
  3751. <productGroupable type="0"
  3752. />
  3753. </product>
  3754. <product id="PHANTOM"
  3755. name="PHANTOM"
  3756. series="Helmet"
  3757. latestVersion="1.2.9"
  3758. latestVersionVoicePrompt="1.7"
  3759. show = "-1" >
  3760. <productMenu id="protocol"
  3761. type="2" >
  3762. </productMenu>
  3763. <productMenu id="ota"
  3764. type="2" >
  3765. <otaLanguages>
  3766. <otaLanguage
  3767. id="0"
  3768. name="English"
  3769. package="0"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="French"
  3774. package="1"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Spanish"
  3779. package="2"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Italian"
  3784. package="3"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="German"
  3789. package="4"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Dutch"
  3794. package="5"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Russian"
  3799. package="6"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Chinese"
  3804. package="7"
  3805. />
  3806. <otaLanguage
  3807. id="0"
  3808. name="Korean"
  3809. package="8"
  3810. />
  3811. <otaLanguage
  3812. id="0"
  3813. name="Japanese"
  3814. package="9"
  3815. />
  3816. <otaLanguage
  3817. id="0"
  3818. name="Finnish"
  3819. package="10"
  3820. />
  3821. <otaLanguage
  3822. id="0"
  3823. name="Polish"
  3824. package="11"
  3825. />
  3826. </otaLanguages>
  3827. <otaPackages>
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3854. size="5183988"
  3855. />
  3856. <package
  3857. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3858. size="5183988"
  3859. />
  3860. <package
  3861. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3862. size="5183988"
  3863. />
  3864. <package
  3865. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3866. size="5183988"
  3867. />
  3868. <package
  3869. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3870. size="5183988"
  3871. />
  3872. <package
  3873. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3874. size="5183988"
  3875. />
  3876. </otaPackages>
  3877. </productMenu>
  3878. <productMenu id="wa"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="led"
  3882. type="5" >
  3883. </productMenu>
  3884. <productMenu id="led+"
  3885. type="2"
  3886. url="1" >
  3887. </productMenu>
  3888. <productMenu id="meshIntercom"
  3889. type="30" >
  3890. </productMenu>
  3891. <productMenu id="meshIntercom+"
  3892. type="3"
  3893. url="2" >
  3894. </productMenu>
  3895. <productMenu id="waveIntercom"
  3896. type="1" >
  3897. </productMenu>
  3898. <productMenu id="fmradio"
  3899. type="0" >
  3900. </productMenu>
  3901. <productMenu id="phone"
  3902. type="1" >
  3903. </productMenu>
  3904. <productMenu id="music"
  3905. type="1" >
  3906. </productMenu>
  3907. <productMenu id="musicSharing"
  3908. type="0" >
  3909. </productMenu>
  3910. <productMenu id="deviceSetting"
  3911. type="1"
  3912. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  3913. <productMenuURL version="1.2.10"
  3914. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  3915. />
  3916. <productMenuURL version="1.2.4"
  3917. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3918. />
  3919. </productMenu>
  3920. <productMenu id="quickGuide"
  3921. type="0"
  3922. url=""
  3923. size="1.52MB" >
  3924. </productMenu>
  3925. <productMenu id="userGuide"
  3926. type="1"
  3927. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  3928. size="2.01MB" >
  3929. </productMenu>
  3930. <productMenu id="videoGuide"
  3931. type="0"
  3932. url=""
  3933. size="3.46MB" >
  3934. </productMenu>
  3935. <productMenu id="connectGuide"
  3936. type="1"
  3937. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3938. size="1.1MB" >
  3939. </productMenu>
  3940. <productMenu id="volume"
  3941. type="16" >
  3942. </productMenu>
  3943. <productMenu id="volume+"
  3944. type="2"
  3945. url="0x6004" >
  3946. </productMenu>
  3947. <productMenu id="battery"
  3948. type="1" >
  3949. </productMenu>
  3950. <productID id="6A0E"
  3951. />
  3952. <productGroupable type="0"
  3953. />
  3954. </product>
  3955. <product id="PHANTOM"
  3956. name="PHANTOM"
  3957. series="Helmet"
  3958. latestVersion="1.2.9"
  3959. latestVersionVoicePrompt="1.7"
  3960. show = "1" >
  3961. <productMenu id="protocol"
  3962. type="2" >
  3963. </productMenu>
  3964. <productMenu id="ota"
  3965. type="2" >
  3966. <otaLanguages>
  3967. <otaLanguage
  3968. id="0"
  3969. name="English"
  3970. package="0"
  3971. />
  3972. <otaLanguage
  3973. id="0"
  3974. name="French"
  3975. package="1"
  3976. />
  3977. <otaLanguage
  3978. id="0"
  3979. name="Spanish"
  3980. package="2"
  3981. />
  3982. <otaLanguage
  3983. id="0"
  3984. name="Italian"
  3985. package="3"
  3986. />
  3987. <otaLanguage
  3988. id="0"
  3989. name="German"
  3990. package="4"
  3991. />
  3992. <otaLanguage
  3993. id="0"
  3994. name="Dutch"
  3995. package="5"
  3996. />
  3997. <otaLanguage
  3998. id="0"
  3999. name="Russian"
  4000. package="6"
  4001. />
  4002. <otaLanguage
  4003. id="0"
  4004. name="Chinese"
  4005. package="7"
  4006. />
  4007. <otaLanguage
  4008. id="0"
  4009. name="Korean"
  4010. package="8"
  4011. />
  4012. <otaLanguage
  4013. id="0"
  4014. name="Japanese"
  4015. package="9"
  4016. />
  4017. <otaLanguage
  4018. id="0"
  4019. name="Finnish"
  4020. package="10"
  4021. />
  4022. <otaLanguage
  4023. id="0"
  4024. name="Polish"
  4025. package="11"
  4026. />
  4027. </otaLanguages>
  4028. <otaPackages>
  4029. <package
  4030. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4031. size="5183988"
  4032. />
  4033. <package
  4034. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4075. size="5183988"
  4076. />
  4077. </otaPackages>
  4078. </productMenu>
  4079. <productMenu id="wa"
  4080. type="0" >
  4081. </productMenu>
  4082. <productMenu id="led"
  4083. type="5" >
  4084. <productMenuType version="1.0.1"
  4085. type="4"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="led+"
  4089. type="2"
  4090. url="1" >
  4091. <productMenuType version="1.0.1"
  4092. type="-1"
  4093. />
  4094. </productMenu>
  4095. <productMenu id="meshIntercom"
  4096. type="30" >
  4097. </productMenu>
  4098. <productMenu id="meshIntercom+"
  4099. type="3"
  4100. url="2" >
  4101. <productMenuURL version="1.0.4"
  4102. url="10"
  4103. />
  4104. </productMenu>
  4105. <productMenu id="waveIntercom"
  4106. type="1" >
  4107. <productMenuType version="1.0.9"
  4108. type="0"
  4109. />
  4110. </productMenu>
  4111. <productMenu id="fmradio"
  4112. type="0" >
  4113. </productMenu>
  4114. <productMenu id="phone"
  4115. type="1" >
  4116. </productMenu>
  4117. <productMenu id="music"
  4118. type="1" >
  4119. </productMenu>
  4120. <productMenu id="musicSharing"
  4121. type="0" >
  4122. </productMenu>
  4123. <productMenu id="deviceSetting"
  4124. type="1"
  4125. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_12.xml" >
  4126. <productMenuURL version="1.2.10"
  4127. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml"
  4128. />
  4129. <productMenuURL version="1.2.4"
  4130. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4131. />
  4132. <productMenuURL version="1.2.1"
  4133. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4134. />
  4135. <productMenuURL version="1.0.4"
  4136. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4137. />
  4138. <productMenuURL version="1.0.1"
  4139. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="quickGuide"
  4143. type="0"
  4144. url=""
  4145. size="1.12MB" >
  4146. </productMenu>
  4147. <productMenu id="userGuide"
  4148. type="1"
  4149. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4150. size="2.0MB" >
  4151. </productMenu>
  4152. <productMenu id="videoGuide"
  4153. type="0"
  4154. url=""
  4155. size="3.41MB" >
  4156. </productMenu>
  4157. <productMenu id="connectGuide"
  4158. type="1"
  4159. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4160. size="1.12MB" >
  4161. </productMenu>
  4162. <productMenu id="volume"
  4163. type="16" >
  4164. <productMenuType version="1.0"
  4165. type="13"
  4166. />
  4167. </productMenu>
  4168. <productMenu id="volume+"
  4169. type="2"
  4170. url="0x6004" >
  4171. </productMenu>
  4172. <productMenu id="battery"
  4173. type="1" >
  4174. </productMenu>
  4175. <productID id="6A04"
  4176. />
  4177. <productGroupable type="0"
  4178. />
  4179. </product>
  4180. <product id="PHANTOMEasyLink"
  4181. name="PHANTOM EasyLink"
  4182. series="Helmet"
  4183. latestVersion="0.1"
  4184. latestVersionVoicePrompt="1.2"
  4185. show = "-1" >
  4186. <productMenu id="protocol"
  4187. type="2" >
  4188. </productMenu>
  4189. <productMenu id="ota"
  4190. type="0" >
  4191. <otaLanguages>
  4192. <otaLanguage
  4193. id="0"
  4194. name="English"
  4195. package="0"
  4196. />
  4197. <otaLanguage
  4198. id="0"
  4199. name="French"
  4200. package="1"
  4201. />
  4202. <otaLanguage
  4203. id="0"
  4204. name="Spanish"
  4205. package="2"
  4206. />
  4207. <otaLanguage
  4208. id="0"
  4209. name="Italian"
  4210. package="3"
  4211. />
  4212. <otaLanguage
  4213. id="0"
  4214. name="German"
  4215. package="4"
  4216. />
  4217. <otaLanguage
  4218. id="0"
  4219. name="Dutch"
  4220. package="5"
  4221. />
  4222. <otaLanguage
  4223. id="0"
  4224. name="Russian"
  4225. package="6"
  4226. />
  4227. <otaLanguage
  4228. id="0"
  4229. name="Chinese"
  4230. package="7"
  4231. />
  4232. <otaLanguage
  4233. id="0"
  4234. name="Korean"
  4235. package="8"
  4236. />
  4237. <otaLanguage
  4238. id="0"
  4239. name="Japanese"
  4240. package="9"
  4241. />
  4242. <otaLanguage
  4243. id="0"
  4244. name="Finnish"
  4245. package="10"
  4246. />
  4247. <otaLanguage
  4248. id="0"
  4249. name="Polish"
  4250. package="11"
  4251. />
  4252. </otaLanguages>
  4253. <otaPackages>
  4254. <package
  4255. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4256. size="5183988"
  4257. />
  4258. <package
  4259. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4260. size="5183988"
  4261. />
  4262. <package
  4263. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4264. size="5183988"
  4265. />
  4266. <package
  4267. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4268. size="5183988"
  4269. />
  4270. <package
  4271. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4272. size="5183988"
  4273. />
  4274. <package
  4275. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4276. size="5183988"
  4277. />
  4278. <package
  4279. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4280. size="5183988"
  4281. />
  4282. <package
  4283. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4284. size="5183988"
  4285. />
  4286. <package
  4287. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4288. size="5183988"
  4289. />
  4290. <package
  4291. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4292. size="5183988"
  4293. />
  4294. <package
  4295. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4296. size="5183988"
  4297. />
  4298. <package
  4299. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4300. size="5183988"
  4301. />
  4302. </otaPackages>
  4303. </productMenu>
  4304. <productMenu id="meshIntercom"
  4305. type="30" >
  4306. </productMenu>
  4307. <productMenu id="meshIntercom+"
  4308. type="3"
  4309. url="2" >
  4310. </productMenu>
  4311. <productMenu id="waveIntercom"
  4312. type="1" >
  4313. </productMenu>
  4314. <productMenu id="fmradio"
  4315. type="0" >
  4316. </productMenu>
  4317. <productMenu id="phone"
  4318. type="1" >
  4319. </productMenu>
  4320. <productMenu id="music"
  4321. type="1" >
  4322. </productMenu>
  4323. <productMenu id="musicSharing"
  4324. type="0" >
  4325. </productMenu>
  4326. <productMenu id="deviceSetting"
  4327. type="1"
  4328. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4329. </productMenu>
  4330. <productMenu id="quickGuide"
  4331. type="0"
  4332. url=""
  4333. size="1.12MB" >
  4334. </productMenu>
  4335. <productMenu id="userGuide"
  4336. type="1"
  4337. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Family_1.3.0_en_260723.pdf"
  4338. size="2.0MB" >
  4339. </productMenu>
  4340. <productMenu id="videoGuide"
  4341. type="0"
  4342. url=""
  4343. size="3.41MB" >
  4344. </productMenu>
  4345. <productMenu id="connectGuide"
  4346. type="0"
  4347. url=""
  4348. size="1.12MB" >
  4349. </productMenu>
  4350. <productMenu id="volume"
  4351. type="16" >
  4352. </productMenu>
  4353. <productMenu id="battery"
  4354. type="1" >
  4355. </productMenu>
  4356. <productID id="6A18"
  4357. />
  4358. <productGroupable type="0"
  4359. />
  4360. </product>
  4361. <product id="SPIDERXSlim"
  4362. name="SPIDER X Slim"
  4363. series="SPIDER"
  4364. latestVersion="1.0.1"
  4365. latestVersionVoicePrompt="1.8"
  4366. show = "1" >
  4367. <productMenu id="protocol"
  4368. type="2" >
  4369. </productMenu>
  4370. <productMenu id="warranty"
  4371. type="1" >
  4372. </productMenu>
  4373. <productMenu id="serialNumber"
  4374. type="1" >
  4375. </productMenu>
  4376. <productMenu id="ota"
  4377. type="2" >
  4378. <otaLanguages>
  4379. <otaLanguage
  4380. id="0"
  4381. name="English"
  4382. package="0"
  4383. />
  4384. <otaLanguage
  4385. id="0"
  4386. name="French"
  4387. package="1"
  4388. />
  4389. <otaLanguage
  4390. id="0"
  4391. name="Spanish"
  4392. package="2"
  4393. />
  4394. <otaLanguage
  4395. id="0"
  4396. name="Italian"
  4397. package="3"
  4398. />
  4399. <otaLanguage
  4400. id="0"
  4401. name="German"
  4402. package="4"
  4403. />
  4404. <otaLanguage
  4405. id="0"
  4406. name="Dutch"
  4407. package="5"
  4408. />
  4409. <otaLanguage
  4410. id="0"
  4411. name="Russian"
  4412. package="6"
  4413. />
  4414. <otaLanguage
  4415. id="0"
  4416. name="Chinese"
  4417. package="7"
  4418. />
  4419. <otaLanguage
  4420. id="0"
  4421. name="Korean"
  4422. package="8"
  4423. />
  4424. <otaLanguage
  4425. id="0"
  4426. name="Japanese"
  4427. package="9"
  4428. />
  4429. <otaLanguage
  4430. id="0"
  4431. name="Finnish"
  4432. package="10"
  4433. />
  4434. <otaLanguage
  4435. id="0"
  4436. name="Polish"
  4437. package="11"
  4438. />
  4439. </otaLanguages>
  4440. <otaPackages>
  4441. <package
  4442. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1.img"
  4443. size="5183988"
  4444. />
  4445. <package
  4446. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fr-FR.img"
  4447. size="5183988"
  4448. />
  4449. <package
  4450. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-es-ES.img"
  4451. size="5183988"
  4452. />
  4453. <package
  4454. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-it-IT.img"
  4455. size="5183988"
  4456. />
  4457. <package
  4458. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-de-DE.img"
  4459. size="5183988"
  4460. />
  4461. <package
  4462. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-nl-NL.img"
  4463. size="5183988"
  4464. />
  4465. <package
  4466. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ru-RU.img"
  4467. size="5183988"
  4468. />
  4469. <package
  4470. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-cmn-CN.img"
  4471. size="5183988"
  4472. />
  4473. <package
  4474. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ko-KR.img"
  4475. size="5183988"
  4476. />
  4477. <package
  4478. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-ja-JP.img"
  4479. size="5183988"
  4480. />
  4481. <package
  4482. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-fi-FI.img"
  4483. size="5183988"
  4484. />
  4485. <package
  4486. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0.1-build1-pl-PL.img"
  4487. size="5183988"
  4488. />
  4489. </otaPackages>
  4490. </productMenu>
  4491. <productMenu id="meshIntercom"
  4492. type="30" >
  4493. </productMenu>
  4494. <productMenu id="meshIntercom+"
  4495. type="3"
  4496. url="2" >
  4497. </productMenu>
  4498. <productMenu id="waveIntercom"
  4499. type="1" >
  4500. </productMenu>
  4501. <productMenu id="fmradio"
  4502. type="1"
  4503. url="1" >
  4504. </productMenu>
  4505. <productMenu id="phone"
  4506. type="1" >
  4507. </productMenu>
  4508. <productMenu id="music"
  4509. type="1" >
  4510. </productMenu>
  4511. <productMenu id="musicSharing"
  4512. type="0" >
  4513. </productMenu>
  4514. <productMenu id="deviceSetting"
  4515. type="1"
  4516. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_03.xml" >
  4517. <productMenuURL version="1.0"
  4518. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4519. />
  4520. </productMenu>
  4521. <productMenu id="quickGuide"
  4522. type="0"
  4523. url=""
  4524. size="1.12MB" >
  4525. </productMenu>
  4526. <productMenu id="userGuide"
  4527. type="1"
  4528. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4529. size="2.0MB" >
  4530. </productMenu>
  4531. <productMenu id="videoGuide"
  4532. type="0"
  4533. url=""
  4534. size="3.41MB" >
  4535. </productMenu>
  4536. <productMenu id="connectGuide"
  4537. type="1"
  4538. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4539. size="1.12MB" >
  4540. </productMenu>
  4541. <productMenu id="volume"
  4542. type="16" >
  4543. </productMenu>
  4544. <productMenu id="volume+"
  4545. type="2"
  4546. url="0x6004" >
  4547. </productMenu>
  4548. <productMenu id="appearance"
  4549. type="1"
  4550. url="2|white,silver,chrome,black" >
  4551. </productMenu>
  4552. <productMenu id="battery"
  4553. type="1" >
  4554. </productMenu>
  4555. <productID id="6A07"
  4556. />
  4557. <productGroupable type="0"
  4558. />
  4559. </product>
  4560. <product id="XFITM"
  4561. name="X-FIT M"
  4562. series="SPIDER"
  4563. latestVersion="0.1.11"
  4564. latestVersionVoicePrompt="1.1"
  4565. show = "-1" >
  4566. <productMenu id="protocol"
  4567. type="2" >
  4568. </productMenu>
  4569. <productMenu id="ota"
  4570. type="0" >
  4571. <otaLanguages>
  4572. <otaLanguage
  4573. id="0"
  4574. name="English"
  4575. package="0"
  4576. />
  4577. <otaLanguage
  4578. id="0"
  4579. name="French"
  4580. package="1"
  4581. />
  4582. <otaLanguage
  4583. id="0"
  4584. name="Spanish"
  4585. package="2"
  4586. />
  4587. <otaLanguage
  4588. id="0"
  4589. name="Italian"
  4590. package="3"
  4591. />
  4592. <otaLanguage
  4593. id="0"
  4594. name="German"
  4595. package="4"
  4596. />
  4597. <otaLanguage
  4598. id="0"
  4599. name="Dutch"
  4600. package="5"
  4601. />
  4602. <otaLanguage
  4603. id="0"
  4604. name="Russian"
  4605. package="6"
  4606. />
  4607. <otaLanguage
  4608. id="0"
  4609. name="Chinese"
  4610. package="7"
  4611. />
  4612. <otaLanguage
  4613. id="0"
  4614. name="Korean"
  4615. package="8"
  4616. />
  4617. <otaLanguage
  4618. id="0"
  4619. name="Japanese"
  4620. package="9"
  4621. />
  4622. <otaLanguage
  4623. id="0"
  4624. name="Finnish"
  4625. package="10"
  4626. />
  4627. <otaLanguage
  4628. id="0"
  4629. name="Polish"
  4630. package="11"
  4631. />
  4632. </otaLanguages>
  4633. <otaPackages>
  4634. <package
  4635. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4636. size="5183988"
  4637. />
  4638. <package
  4639. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4640. size="5183988"
  4641. />
  4642. <package
  4643. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4644. size="5183988"
  4645. />
  4646. <package
  4647. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4648. size="5183988"
  4649. />
  4650. <package
  4651. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4652. size="5183988"
  4653. />
  4654. <package
  4655. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4656. size="5183988"
  4657. />
  4658. <package
  4659. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4660. size="5183988"
  4661. />
  4662. <package
  4663. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4664. size="5183988"
  4665. />
  4666. <package
  4667. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4680. size="5183988"
  4681. />
  4682. </otaPackages>
  4683. </productMenu>
  4684. <productMenu id="meshIntercom"
  4685. type="30" >
  4686. </productMenu>
  4687. <productMenu id="meshIntercom+"
  4688. type="3"
  4689. url="2" >
  4690. </productMenu>
  4691. <productMenu id="waveIntercom"
  4692. type="1" >
  4693. </productMenu>
  4694. <productMenu id="fmradio"
  4695. type="1"
  4696. url="1" >
  4697. </productMenu>
  4698. <productMenu id="phone"
  4699. type="1" >
  4700. </productMenu>
  4701. <productMenu id="music"
  4702. type="1" >
  4703. </productMenu>
  4704. <productMenu id="musicSharing"
  4705. type="0" >
  4706. </productMenu>
  4707. <productMenu id="deviceSetting"
  4708. type="1"
  4709. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4710. </productMenu>
  4711. <productMenu id="quickGuide"
  4712. type="0"
  4713. url=""
  4714. size="1.12MB" >
  4715. </productMenu>
  4716. <productMenu id="userGuide"
  4717. type="1"
  4718. url=""
  4719. size="2.0MB" >
  4720. </productMenu>
  4721. <productMenu id="videoGuide"
  4722. type="0"
  4723. url=""
  4724. size="3.41MB" >
  4725. </productMenu>
  4726. <productMenu id="volume"
  4727. type="16" >
  4728. </productMenu>
  4729. <productMenu id="volume+"
  4730. type="2"
  4731. url="0x6004" >
  4732. </productMenu>
  4733. <productMenu id="battery"
  4734. type="1" >
  4735. </productMenu>
  4736. <productID id="6A17"
  4737. />
  4738. <productGroupable type="0"
  4739. />
  4740. </product>
  4741. <product id="VORTEXMESH"
  4742. name="VORTEX MESH"
  4743. series="Helmet"
  4744. latestVersion="0.1.11"
  4745. latestVersionVoicePrompt="1.1"
  4746. show = "-1" >
  4747. <productMenu id="protocol"
  4748. type="2" >
  4749. </productMenu>
  4750. <productMenu id="ota"
  4751. type="0" >
  4752. <otaLanguages>
  4753. <otaLanguage
  4754. id="0"
  4755. name="English"
  4756. package="0"
  4757. />
  4758. <otaLanguage
  4759. id="0"
  4760. name="French"
  4761. package="1"
  4762. />
  4763. <otaLanguage
  4764. id="0"
  4765. name="Spanish"
  4766. package="2"
  4767. />
  4768. <otaLanguage
  4769. id="0"
  4770. name="Italian"
  4771. package="3"
  4772. />
  4773. <otaLanguage
  4774. id="0"
  4775. name="German"
  4776. package="4"
  4777. />
  4778. <otaLanguage
  4779. id="0"
  4780. name="Dutch"
  4781. package="5"
  4782. />
  4783. <otaLanguage
  4784. id="0"
  4785. name="Russian"
  4786. package="6"
  4787. />
  4788. <otaLanguage
  4789. id="0"
  4790. name="Chinese"
  4791. package="7"
  4792. />
  4793. <otaLanguage
  4794. id="0"
  4795. name="Korean"
  4796. package="8"
  4797. />
  4798. <otaLanguage
  4799. id="0"
  4800. name="Japanese"
  4801. package="9"
  4802. />
  4803. <otaLanguage
  4804. id="0"
  4805. name="Finnish"
  4806. package="10"
  4807. />
  4808. <otaLanguage
  4809. id="0"
  4810. name="Polish"
  4811. package="11"
  4812. />
  4813. </otaLanguages>
  4814. <otaPackages>
  4815. <package
  4816. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4817. size="5183988"
  4818. />
  4819. <package
  4820. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4821. size="5183988"
  4822. />
  4823. <package
  4824. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4825. size="5183988"
  4826. />
  4827. <package
  4828. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4829. size="5183988"
  4830. />
  4831. <package
  4832. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4833. size="5183988"
  4834. />
  4835. <package
  4836. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4837. size="5183988"
  4838. />
  4839. <package
  4840. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4841. size="5183988"
  4842. />
  4843. <package
  4844. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4845. size="5183988"
  4846. />
  4847. <package
  4848. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4849. size="5183988"
  4850. />
  4851. <package
  4852. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4853. size="5183988"
  4854. />
  4855. <package
  4856. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4857. size="5183988"
  4858. />
  4859. <package
  4860. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4861. size="5183988"
  4862. />
  4863. </otaPackages>
  4864. </productMenu>
  4865. <productMenu id="wa"
  4866. type="0" >
  4867. </productMenu>
  4868. <productMenu id="led"
  4869. type="5" >
  4870. </productMenu>
  4871. <productMenu id="led+"
  4872. type="2"
  4873. url="1" >
  4874. </productMenu>
  4875. <productMenu id="meshIntercom"
  4876. type="30" >
  4877. </productMenu>
  4878. <productMenu id="meshIntercom+"
  4879. type="3"
  4880. url="2" >
  4881. </productMenu>
  4882. <productMenu id="waveIntercom"
  4883. type="1" >
  4884. </productMenu>
  4885. <productMenu id="fmradio"
  4886. type="0" >
  4887. </productMenu>
  4888. <productMenu id="phone"
  4889. type="1" >
  4890. </productMenu>
  4891. <productMenu id="music"
  4892. type="1" >
  4893. </productMenu>
  4894. <productMenu id="musicSharing"
  4895. type="0" >
  4896. </productMenu>
  4897. <productMenu id="deviceSetting"
  4898. type="1"
  4899. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4900. </productMenu>
  4901. <productMenu id="quickGuide"
  4902. type="0"
  4903. url=""
  4904. size="1.12MB" >
  4905. </productMenu>
  4906. <productMenu id="userGuide"
  4907. type="1"
  4908. url=""
  4909. size="2.0MB" >
  4910. </productMenu>
  4911. <productMenu id="videoGuide"
  4912. type="0"
  4913. url=""
  4914. size="3.41MB" >
  4915. </productMenu>
  4916. <productMenu id="volume"
  4917. type="16" >
  4918. </productMenu>
  4919. <productMenu id="battery"
  4920. type="1" >
  4921. </productMenu>
  4922. <productID id="6A12"
  4923. />
  4924. <productGroupable type="0"
  4925. />
  4926. </product>
  4927. <product id="MeshOn"
  4928. name="MeshON"
  4929. series="Other"
  4930. latestVersion="1.0.1"
  4931. latestVersionVoicePrompt="0.7"
  4932. show = "1" >
  4933. <productMenu id="protocol"
  4934. type="2" >
  4935. </productMenu>
  4936. <productMenu id="ota"
  4937. type="2" >
  4938. <otaPackages>
  4939. <package
  4940. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4941. size="2945812"
  4942. />
  4943. </otaPackages>
  4944. </productMenu>
  4945. <productMenu id="meshIntercom+"
  4946. type="3"
  4947. url="4" >
  4948. </productMenu>
  4949. <productMenu id="waveIntercom"
  4950. type="0" >
  4951. </productMenu>
  4952. <productMenu id="phone"
  4953. type="0" >
  4954. </productMenu>
  4955. <productMenu id="music"
  4956. type="0" >
  4957. </productMenu>
  4958. <productMenu id="musicSharing"
  4959. type="0" >
  4960. </productMenu>
  4961. <productMenu id="deviceSetting"
  4962. type="1"
  4963. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4964. </productMenu>
  4965. <productMenu id="userGuide"
  4966. type="1"
  4967. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4968. size="2.0MB" >
  4969. </productMenu>
  4970. <productMenu id="connectGuide"
  4971. type="1"
  4972. url="https://api.sena.com/support/ConnectGuide/meshmulti_ble_meshon.json"
  4973. size="1.12MB" >
  4974. </productMenu>
  4975. <productMenu id="bluetoothHeadset"
  4976. type="1"
  4977. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4978. </productMenu>
  4979. <productMenu id="volume"
  4980. type="0" >
  4981. </productMenu>
  4982. <productMenu id="battery"
  4983. type="1" >
  4984. </productMenu>
  4985. <productID id="684E"
  4986. />
  4987. <productGroupable type="0"
  4988. />
  4989. </product>
  4990. <product id="Impulse"
  4991. name="Impulse"
  4992. series="Helmet"
  4993. latestVersion="1.4.1"
  4994. show = "1" >
  4995. <productMenu id="protocol"
  4996. type="2" >
  4997. </productMenu>
  4998. <productMenu id="alexa"
  4999. type="0" >
  5000. </productMenu>
  5001. <productMenu id="ota"
  5002. type="0" >
  5003. </productMenu>
  5004. <productMenu id="wa"
  5005. type="24" >
  5006. </productMenu>
  5007. <productMenu id="manager"
  5008. type="0" >
  5009. </productMenu>
  5010. <productMenu id="sip"
  5011. type="1" >
  5012. </productMenu>
  5013. <productMenu id="led"
  5014. type="1" >
  5015. <productMenuType version="1.0.1"
  5016. type="2"
  5017. />
  5018. <productMenuType version="1.0"
  5019. type="1"
  5020. />
  5021. </productMenu>
  5022. <productMenu id="meshIntercom"
  5023. type="30" >
  5024. <productMenuType version="1.1.1"
  5025. type="20"
  5026. />
  5027. </productMenu>
  5028. <productMenu id="meshIntercom+"
  5029. type="3"
  5030. url="2" >
  5031. <productMenuType version="1.3.9"
  5032. type="2"
  5033. />
  5034. <productMenuURL version="1.1.1"
  5035. url="0"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="waveIntercom"
  5039. type="1" >
  5040. <productMenuType version="1.3.9"
  5041. type="0"
  5042. />
  5043. </productMenu>
  5044. <productMenu id="bluetoothIntercom"
  5045. type="1" >
  5046. </productMenu>
  5047. <productMenu id="phone"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="music"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="fmradio"
  5054. type="1" >
  5055. </productMenu>
  5056. <productMenu id="deviceSetting"
  5057. type="1"
  5058. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5059. <productMenuURL version="1.3.9"
  5060. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5061. />
  5062. <productMenuURL version="1.1.1"
  5063. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5064. />
  5065. <productMenuURL version="1.0.4"
  5066. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5067. />
  5068. </productMenu>
  5069. <productMenu id="quickGuide"
  5070. type="0"
  5071. url=""
  5072. size="344KB" >
  5073. </productMenu>
  5074. <productMenu id="userGuide"
  5075. type="1"
  5076. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5077. size="3.41MB" >
  5078. </productMenu>
  5079. <productMenu id="connectGuide"
  5080. type="1"
  5081. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5082. size="1.12MB" >
  5083. </productMenu>
  5084. <productMenu id="volume"
  5085. type="11" >
  5086. </productMenu>
  5087. <productMenu id="battery"
  5088. type="1" >
  5089. </productMenu>
  5090. <productID id="3148"
  5091. />
  5092. <productGroupable type="0"
  5093. />
  5094. </product>
  5095. <product id="Impulse"
  5096. name="Impulse"
  5097. series="Helmet"
  5098. latestVersion="2.0"
  5099. show = "-1" >
  5100. <productMenu id="protocol"
  5101. type="2" >
  5102. </productMenu>
  5103. <productMenu id="alexa"
  5104. type="0" >
  5105. </productMenu>
  5106. <productMenu id="ota"
  5107. type="0" >
  5108. </productMenu>
  5109. <productMenu id="wa"
  5110. type="8" >
  5111. </productMenu>
  5112. <productMenu id="manager"
  5113. type="0" >
  5114. </productMenu>
  5115. <productMenu id="sip"
  5116. type="1" >
  5117. </productMenu>
  5118. <productMenu id="led"
  5119. type="3" >
  5120. </productMenu>
  5121. <productMenu id="meshIntercom"
  5122. type="20" >
  5123. </productMenu>
  5124. <productMenu id="bluetoothIntercom"
  5125. type="1" >
  5126. </productMenu>
  5127. <productMenu id="phone"
  5128. type="1" >
  5129. </productMenu>
  5130. <productMenu id="music"
  5131. type="1" >
  5132. </productMenu>
  5133. <productMenu id="fmradio"
  5134. type="1" >
  5135. </productMenu>
  5136. <productMenu id="deviceSetting"
  5137. type="1"
  5138. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5139. </productMenu>
  5140. <productMenu id="quickGuide"
  5141. type="1"
  5142. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5143. size="344KB" >
  5144. </productMenu>
  5145. <productMenu id="userGuide"
  5146. type="1"
  5147. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5148. size="3.41MB" >
  5149. </productMenu>
  5150. <productMenu id="volume"
  5151. type="11" >
  5152. </productMenu>
  5153. <productMenu id="battery"
  5154. type="1" >
  5155. </productMenu>
  5156. <productID id="3221"
  5157. />
  5158. <productGroupable type="0"
  5159. />
  5160. </product>
  5161. <product id="Stryker"
  5162. name="Stryker"
  5163. series="Helmet"
  5164. latestVersion="1.4.1"
  5165. show = "1" >
  5166. <productMenu id="protocol"
  5167. type="2" >
  5168. </productMenu>
  5169. <productMenu id="alexa"
  5170. type="0" >
  5171. </productMenu>
  5172. <productMenu id="ota"
  5173. type="0" >
  5174. </productMenu>
  5175. <productMenu id="wa"
  5176. type="40" >
  5177. </productMenu>
  5178. <productMenu id="manager"
  5179. type="0" >
  5180. </productMenu>
  5181. <productMenu id="sip"
  5182. type="1" >
  5183. </productMenu>
  5184. <productMenu id="led"
  5185. type="1" >
  5186. <productMenuType version="1.0.1"
  5187. type="2"
  5188. />
  5189. <productMenuType version="1.0"
  5190. type="1"
  5191. />
  5192. </productMenu>
  5193. <productMenu id="meshIntercom"
  5194. type="30" >
  5195. <productMenuType version="1.1.1"
  5196. type="20"
  5197. />
  5198. </productMenu>
  5199. <productMenu id="meshIntercom+"
  5200. type="3"
  5201. url="2" >
  5202. <productMenuType version="1.3.9"
  5203. type="2"
  5204. />
  5205. <productMenuURL version="1.1.1"
  5206. url="0"
  5207. />
  5208. </productMenu>
  5209. <productMenu id="waveIntercom"
  5210. type="1" >
  5211. <productMenuType version="1.2.9"
  5212. type="0"
  5213. />
  5214. </productMenu>
  5215. <productMenu id="bluetoothIntercom"
  5216. type="1" >
  5217. </productMenu>
  5218. <productMenu id="phone"
  5219. type="1" >
  5220. </productMenu>
  5221. <productMenu id="music"
  5222. type="1" >
  5223. </productMenu>
  5224. <productMenu id="fmradio"
  5225. type="1" >
  5226. </productMenu>
  5227. <productMenu id="deviceSetting"
  5228. type="1"
  5229. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5230. <productMenuURL version="1.3.9"
  5231. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5232. />
  5233. <productMenuURL version="1.1.1"
  5234. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5235. />
  5236. <productMenuURL version="1.0.4"
  5237. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5238. />
  5239. </productMenu>
  5240. <productMenu id="quickGuide"
  5241. type="0"
  5242. url=""
  5243. size="344KB" >
  5244. </productMenu>
  5245. <productMenu id="userGuide"
  5246. type="1"
  5247. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5248. size="3.41MB" >
  5249. </productMenu>
  5250. <productMenu id="connectGuide"
  5251. type="1"
  5252. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5253. size="1.12MB" >
  5254. </productMenu>
  5255. <productMenu id="volume"
  5256. type="11" >
  5257. </productMenu>
  5258. <productMenu id="battery"
  5259. type="1" >
  5260. </productMenu>
  5261. <productID id="3154"
  5262. />
  5263. <productGroupable type="0"
  5264. />
  5265. </product>
  5266. <product id="SRL3Plus"
  5267. name="SRL3 Plus"
  5268. series="60"
  5269. latestVersion="0.9.14"
  5270. latestVersionMesh="0.19"
  5271. latestVersionVoicePrompt="1.8"
  5272. show = "-1" >
  5273. <productMenu id="protocol"
  5274. type="2" >
  5275. </productMenu>
  5276. <productMenu id="ota"
  5277. type="0" >
  5278. <otaLanguages>
  5279. <otaLanguage
  5280. id="0"
  5281. name="English"
  5282. package="0"
  5283. />
  5284. <otaLanguage
  5285. id="0"
  5286. name="French"
  5287. package="1"
  5288. />
  5289. <otaLanguage
  5290. id="0"
  5291. name="Spanish"
  5292. package="2"
  5293. />
  5294. <otaLanguage
  5295. id="0"
  5296. name="Italian"
  5297. package="3"
  5298. />
  5299. <otaLanguage
  5300. id="0"
  5301. name="German"
  5302. package="4"
  5303. />
  5304. <otaLanguage
  5305. id="0"
  5306. name="Dutch"
  5307. package="5"
  5308. />
  5309. <otaLanguage
  5310. id="0"
  5311. name="Russian"
  5312. package="6"
  5313. />
  5314. <otaLanguage
  5315. id="0"
  5316. name="Chinese"
  5317. package="7"
  5318. />
  5319. <otaLanguage
  5320. id="0"
  5321. name="Korean"
  5322. package="8"
  5323. />
  5324. <otaLanguage
  5325. id="0"
  5326. name="Japanese"
  5327. package="9"
  5328. />
  5329. <otaLanguage
  5330. id="0"
  5331. name="Finnish"
  5332. package="10"
  5333. />
  5334. <otaLanguage
  5335. id="0"
  5336. name="Polish"
  5337. package="11"
  5338. />
  5339. </otaLanguages>
  5340. <otaPackages>
  5341. <package
  5342. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5343. size="5183988"
  5344. />
  5345. <package
  5346. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5347. size="5183988"
  5348. />
  5349. <package
  5350. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5351. size="5183988"
  5352. />
  5353. <package
  5354. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5355. size="5183988"
  5356. />
  5357. <package
  5358. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5359. size="5183988"
  5360. />
  5361. <package
  5362. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5363. size="5183988"
  5364. />
  5365. <package
  5366. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5367. size="5183988"
  5368. />
  5369. <package
  5370. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5371. size="5183988"
  5372. />
  5373. <package
  5374. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5375. size="5183988"
  5376. />
  5377. <package
  5378. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5379. size="5183988"
  5380. />
  5381. <package
  5382. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5383. size="5183988"
  5384. />
  5385. <package
  5386. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5387. size="5183988"
  5388. />
  5389. </otaPackages>
  5390. </productMenu>
  5391. <productMenu id="sip"
  5392. type="1" >
  5393. </productMenu>
  5394. <productMenu id="meshIntercom+"
  5395. type="3"
  5396. url="2" >
  5397. </productMenu>
  5398. <productMenu id="waveIntercom"
  5399. type="1" >
  5400. </productMenu>
  5401. <productMenu id="bluetoothIntercom"
  5402. type="1"
  5403. url="2" >
  5404. </productMenu>
  5405. <productMenu id="bluetoothIntercomGrouping"
  5406. type="0" >
  5407. </productMenu>
  5408. <productMenu id="fmradio"
  5409. type="1"
  5410. url="1" >
  5411. </productMenu>
  5412. <productMenu id="phone"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="music"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="musicSharing"
  5419. type="0" >
  5420. </productMenu>
  5421. <productMenu id="deviceSetting"
  5422. type="1"
  5423. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  5424. </productMenu>
  5425. <productMenu id="quickGuide"
  5426. type="0"
  5427. url=""
  5428. size="1.12MB" >
  5429. </productMenu>
  5430. <productMenu id="userGuide"
  5431. type="0"
  5432. url=""
  5433. size="2.0MB" >
  5434. </productMenu>
  5435. <productMenu id="videoGuide"
  5436. type="0"
  5437. url=""
  5438. size="3.41MB" >
  5439. </productMenu>
  5440. <productMenu id="volume"
  5441. type="16" >
  5442. </productMenu>
  5443. <productMenu id="soundMode"
  5444. type="0" >
  5445. </productMenu>
  5446. <productMenu id="battery"
  5447. type="1" >
  5448. </productMenu>
  5449. <productID id="6A08"
  5450. />
  5451. <productGroupable type="0"
  5452. />
  5453. </product>
  5454. <product id="SRL3"
  5455. name="SRL3"
  5456. series="SRL"
  5457. latestVersion="1.5"
  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. </productMenu>
  5477. <productMenu id="meshIntercom+"
  5478. type="3"
  5479. url="2" >
  5480. <productMenuType version="1.3.9"
  5481. type="2"
  5482. />
  5483. </productMenu>
  5484. <productMenu id="waveIntercom"
  5485. type="1" >
  5486. <productMenuType version="1.4.9"
  5487. type="0"
  5488. />
  5489. </productMenu>
  5490. <productMenu id="bluetoothIntercom"
  5491. type="1" >
  5492. </productMenu>
  5493. <productMenu id="phone"
  5494. type="1" >
  5495. </productMenu>
  5496. <productMenu id="music"
  5497. type="1" >
  5498. </productMenu>
  5499. <productMenu id="fmradio"
  5500. type="1" >
  5501. </productMenu>
  5502. <productMenu id="deviceSetting"
  5503. type="1"
  5504. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5505. <productMenuURL version="1.3"
  5506. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5507. />
  5508. </productMenu>
  5509. <productMenu id="quickGuide"
  5510. type="0"
  5511. url=""
  5512. size="344KB" >
  5513. </productMenu>
  5514. <productMenu id="userGuide"
  5515. type="1"
  5516. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5517. size="3.41MB" >
  5518. </productMenu>
  5519. <productMenu id="connectGuide"
  5520. type="1"
  5521. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5522. size="1.12MB" >
  5523. </productMenu>
  5524. <productMenu id="volume"
  5525. type="11" >
  5526. </productMenu>
  5527. <productMenu id="battery"
  5528. type="1" >
  5529. </productMenu>
  5530. <productID id="3219"
  5531. />
  5532. <productGroupable type="0"
  5533. />
  5534. </product>
  5535. <product id="SRL_Mesh"
  5536. name="SRL-Mesh"
  5537. series="SRL"
  5538. latestVersion="1.7.1"
  5539. show = "1" >
  5540. <productMenu id="protocol"
  5541. type="2" >
  5542. </productMenu>
  5543. <productMenu id="alexa"
  5544. type="0" >
  5545. </productMenu>
  5546. <productMenu id="ota"
  5547. type="0" >
  5548. </productMenu>
  5549. <productMenu id="wa"
  5550. type="1" >
  5551. </productMenu>
  5552. <productMenu id="sip"
  5553. type="1" >
  5554. </productMenu>
  5555. <productMenu id="meshIntercom"
  5556. type="30" >
  5557. <productMenuType version="1.1.1"
  5558. type="20"
  5559. />
  5560. </productMenu>
  5561. <productMenu id="meshIntercom+"
  5562. type="3"
  5563. url="2" >
  5564. <productMenuType version="1.5.9"
  5565. type="2"
  5566. />
  5567. <productMenuURL version="1.1.1"
  5568. url="0"
  5569. />
  5570. </productMenu>
  5571. <productMenu id="waveIntercom"
  5572. type="1" >
  5573. <productMenuType version="1.6.9"
  5574. type="0"
  5575. />
  5576. </productMenu>
  5577. <productMenu id="bluetoothIntercom"
  5578. type="1" >
  5579. </productMenu>
  5580. <productMenu id="phone"
  5581. type="1" >
  5582. </productMenu>
  5583. <productMenu id="music"
  5584. type="1" >
  5585. </productMenu>
  5586. <productMenu id="fmradio"
  5587. type="1" >
  5588. </productMenu>
  5589. <productMenu id="deviceSetting"
  5590. type="1"
  5591. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5592. <productMenuURL version="1.5"
  5593. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5594. />
  5595. <productMenuURL version="1.1.1"
  5596. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5597. />
  5598. <productMenuURL version="1.0.3"
  5599. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5600. />
  5601. </productMenu>
  5602. <productMenu id="quickGuide"
  5603. type="0"
  5604. url=""
  5605. size="344KB" >
  5606. </productMenu>
  5607. <productMenu id="userGuide"
  5608. type="1"
  5609. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5610. size="3.41MB" >
  5611. </productMenu>
  5612. <productMenu id="connectGuide"
  5613. type="1"
  5614. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5615. size="1.12MB" >
  5616. </productMenu>
  5617. <productMenu id="volume"
  5618. type="11" >
  5619. </productMenu>
  5620. <productMenu id="battery"
  5621. type="1" >
  5622. </productMenu>
  5623. <productID id="3216"
  5624. />
  5625. <productGroupable type="0"
  5626. />
  5627. </product>
  5628. <product id="SRL_EXT"
  5629. name="SRL-EXT"
  5630. series="SRL"
  5631. latestVersion="1.7.1"
  5632. show = "1" >
  5633. <productMenu id="protocol"
  5634. type="2" >
  5635. </productMenu>
  5636. <productMenu id="alexa"
  5637. type="0" >
  5638. </productMenu>
  5639. <productMenu id="ota"
  5640. type="0" >
  5641. </productMenu>
  5642. <productMenu id="wa"
  5643. type="0" >
  5644. </productMenu>
  5645. <productMenu id="sip"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="meshIntercom"
  5649. type="30" >
  5650. <productMenuType version="1.1.1"
  5651. type="20"
  5652. />
  5653. </productMenu>
  5654. <productMenu id="meshIntercom+"
  5655. type="3"
  5656. url="2" >
  5657. <productMenuType version="1.5.9"
  5658. type="2"
  5659. />
  5660. <productMenuURL version="1.1.1"
  5661. url="0"
  5662. />
  5663. </productMenu>
  5664. <productMenu id="waveIntercom"
  5665. type="1" >
  5666. <productMenuType version="1.6.9"
  5667. type="0"
  5668. />
  5669. </productMenu>
  5670. <productMenu id="bluetoothIntercom"
  5671. type="1" >
  5672. </productMenu>
  5673. <productMenu id="phone"
  5674. type="1" >
  5675. </productMenu>
  5676. <productMenu id="music"
  5677. type="1" >
  5678. </productMenu>
  5679. <productMenu id="fmradio"
  5680. type="1" >
  5681. </productMenu>
  5682. <productMenu id="deviceSetting"
  5683. type="1"
  5684. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5685. <productMenuURL version="1.5"
  5686. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5687. />
  5688. <productMenuURL version="1.1.1"
  5689. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5690. />
  5691. <productMenuURL version="1.0.3"
  5692. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5693. />
  5694. </productMenu>
  5695. <productMenu id="quickGuide"
  5696. type="0"
  5697. url=""
  5698. size="344KB" >
  5699. </productMenu>
  5700. <productMenu id="userGuide"
  5701. type="1"
  5702. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5703. size="3.41MB" >
  5704. </productMenu>
  5705. <productMenu id="connectGuide"
  5706. type="1"
  5707. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5708. size="1.12MB" >
  5709. </productMenu>
  5710. <productMenu id="volume"
  5711. type="11" >
  5712. </productMenu>
  5713. <productMenu id="battery"
  5714. type="1" >
  5715. </productMenu>
  5716. <productID id="3212"
  5717. />
  5718. <productGroupable type="0"
  5719. />
  5720. </product>
  5721. <product id="SRL2"
  5722. name="SRL2"
  5723. series="SRL"
  5724. latestVersion="1.0.9"
  5725. show = "1" >
  5726. <productMenu id="protocol"
  5727. type="0">
  5728. </productMenu>
  5729. <productMenu id="sip"
  5730. type="1" >
  5731. </productMenu>
  5732. <productMenu id="bluetoothIntercom"
  5733. type="1" >
  5734. </productMenu>
  5735. <productMenu id="intercomSetting"
  5736. type="1" >
  5737. </productMenu>
  5738. <productMenu id="phone"
  5739. type="2" >
  5740. </productMenu>
  5741. <productMenu id="fmradio"
  5742. type="3" >
  5743. </productMenu>
  5744. <productMenu id="deviceSetting"
  5745. type="1"
  5746. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5747. </productMenu>
  5748. <productMenu id="quickGuide"
  5749. type="1"
  5750. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5751. size="846KB" >
  5752. </productMenu>
  5753. <productMenu id="userGuide"
  5754. type="1"
  5755. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5756. size="1.18MB" >
  5757. </productMenu>
  5758. <productMenu id="connectGuide"
  5759. type="1"
  5760. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5761. size="1.12MB" >
  5762. </productMenu>
  5763. <productID id="4530"
  5764. />
  5765. <productGroupable type="1"
  5766. />
  5767. </product>
  5768. <product id="Neotec2"
  5769. name="SRL Neotec2"
  5770. series="SRL"
  5771. latestVersion="1.1.5"
  5772. show = "1" >
  5773. <productMenu id="protocol"
  5774. type="0">
  5775. </productMenu>
  5776. <productMenu id="sip"
  5777. type="1" >
  5778. </productMenu>
  5779. <productMenu id="bluetoothIntercom"
  5780. type="1" >
  5781. </productMenu>
  5782. <productMenu id="intercomSetting"
  5783. type="1" >
  5784. </productMenu>
  5785. <productMenu id="phone"
  5786. type="2" >
  5787. </productMenu>
  5788. <productMenu id="fmradio"
  5789. type="3" >
  5790. </productMenu>
  5791. <productMenu id="deviceSetting"
  5792. type="1"
  5793. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5794. </productMenu>
  5795. <productMenu id="quickGuide"
  5796. type="0"
  5797. url=""
  5798. size="796KB" >
  5799. </productMenu>
  5800. <productMenu id="userGuide"
  5801. type="1"
  5802. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5803. size="1.90MB" >
  5804. </productMenu>
  5805. <productMenu id="connectGuide"
  5806. type="1"
  5807. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5808. size="1.12MB" >
  5809. </productMenu>
  5810. <productID id="4510"
  5811. />
  5812. <productGroupable type="1"
  5813. />
  5814. </product>
  5815. <product id="MultiComNeo"
  5816. name="MultiCom Neo"
  5817. series="MultiCom"
  5818. latestVersion="1.0"
  5819. latestVersionVoicePrompt="1.6"
  5820. show = "-1" >
  5821. <productMenu id="protocol"
  5822. type="2" >
  5823. </productMenu>
  5824. <productMenu id="ota"
  5825. type="0" >
  5826. <otaPackages>
  5827. <package
  5828. url="https://api.sena.com/support/OTA/Motorcycles/MultiComNeo/MultiComNeo-v1.0-build0.img"
  5829. size="2945812"
  5830. />
  5831. </otaPackages>
  5832. </productMenu>
  5833. <productMenu id="meshIntercom+"
  5834. type="3"
  5835. url="2" >
  5836. </productMenu>
  5837. <productMenu id="waveIntercom"
  5838. type="1" >
  5839. </productMenu>
  5840. <productMenu id="phone"
  5841. type="1" >
  5842. </productMenu>
  5843. <productMenu id="music"
  5844. type="1" >
  5845. </productMenu>
  5846. <productMenu id="musicSharing"
  5847. type="0" >
  5848. </productMenu>
  5849. <productMenu id="deviceSetting"
  5850. type="1"
  5851. url="https://api.sena.com/support/SenaNeoApp/MultiComNeo/NS_MultiComNeo.xml" >
  5852. </productMenu>
  5853. <productMenu id="quickGuide"
  5854. type="0"
  5855. url=""
  5856. size="1.12MB" >
  5857. </productMenu>
  5858. <productMenu id="userGuide"
  5859. type="1"
  5860. url=""
  5861. size="2.0MB" >
  5862. </productMenu>
  5863. <productMenu id="videoGuide"
  5864. type="0"
  5865. url=""
  5866. size="3.41MB" >
  5867. </productMenu>
  5868. <productMenu id="connectGuide"
  5869. type="0"
  5870. url=""
  5871. size="1.12MB" >
  5872. </productMenu>
  5873. <productMenu id="volume"
  5874. type="12" >
  5875. </productMenu>
  5876. <productMenu id="volume+"
  5877. type="2"
  5878. url="0x2000" >
  5879. </productMenu>
  5880. <productMenu id="battery"
  5881. type="1" >
  5882. </productMenu>
  5883. <productID id="685F"
  5884. />
  5885. <productGroupable type="0"
  5886. />
  5887. </product>
  5888. <product id="SPIDERST2ANC"
  5889. name="SPIDER ST2 ANC"
  5890. series="SPIDER"
  5891. latestVersion="0.5.1"
  5892. latestVersionVoicePrompt="0.2"
  5893. latestVersionMesh="0.8"
  5894. show = "-1" >
  5895. <productMenu id="protocol"
  5896. type="2" >
  5897. </productMenu>
  5898. <productMenu id="ota"
  5899. type="0" >
  5900. <otaPackages>
  5901. <package
  5902. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5903. size="2945812"
  5904. />
  5905. </otaPackages>
  5906. </productMenu>
  5907. <productMenu id="wa"
  5908. type="0" >
  5909. </productMenu>
  5910. <productMenu id="led"
  5911. type="1" >
  5912. </productMenu>
  5913. <productMenu id="meshIntercom"
  5914. type="30" >
  5915. </productMenu>
  5916. <productMenu id="fmradio"
  5917. type="1" >
  5918. </productMenu>
  5919. <productMenu id="phone"
  5920. type="1" >
  5921. </productMenu>
  5922. <productMenu id="music"
  5923. type="1" >
  5924. </productMenu>
  5925. <productMenu id="musicSharing"
  5926. type="0" >
  5927. </productMenu>
  5928. <productMenu id="deviceSetting"
  5929. type="1"
  5930. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5931. </productMenu>
  5932. <productMenu id="quickGuide"
  5933. type="1"
  5934. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5935. size="1.12MB" >
  5936. </productMenu>
  5937. <productMenu id="userGuide"
  5938. type="1"
  5939. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5940. size="2.0MB" >
  5941. </productMenu>
  5942. <productMenu id="videoGuide"
  5943. type="1"
  5944. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5945. size="3.41MB" >
  5946. </productMenu>
  5947. <productMenu id="volume"
  5948. type="12" >
  5949. </productMenu>
  5950. <productMenu id="battery"
  5951. type="1" >
  5952. </productMenu>
  5953. <productID id="6A00"
  5954. />
  5955. <productGroupable type="0"
  5956. />
  5957. </product>
  5958. <product id="SPIDER_ST1"
  5959. name="SPIDER ST1"
  5960. series="SPIDER"
  5961. latestVersion="2.5.3"
  5962. latestVersionVoicePrompt="1.6"
  5963. show = "1" >
  5964. <productMenu id="protocol"
  5965. type="2" >
  5966. </productMenu>
  5967. <productMenu id="alexa"
  5968. type="0" >
  5969. </productMenu>
  5970. <productMenu id="ota"
  5971. type="2" >
  5972. <productMenuType version="2.1.9"
  5973. type="0"
  5974. />
  5975. <otaPackages>
  5976. <package
  5977. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5978. size="2945812"
  5979. />
  5980. </otaPackages>
  5981. </productMenu>
  5982. <productMenu id="wa"
  5983. type="0" >
  5984. </productMenu>
  5985. <productMenu id="meshIntercom"
  5986. type="30" >
  5987. <productMenuType version="2.1.1"
  5988. type="20"
  5989. />
  5990. </productMenu>
  5991. <productMenu id="meshIntercom+"
  5992. type="3"
  5993. url="2" >
  5994. <productMenuType version="2.2.9"
  5995. type="2"
  5996. />
  5997. <productMenuURL version="2.1.1"
  5998. url="0"
  5999. />
  6000. </productMenu>
  6001. <productMenu id="waveIntercom"
  6002. type="1" >
  6003. <productMenuType version="2.3.9"
  6004. type="0"
  6005. />
  6006. </productMenu>
  6007. <productMenu id="phone"
  6008. type="1" >
  6009. </productMenu>
  6010. <productMenu id="music"
  6011. type="1" >
  6012. </productMenu>
  6013. <productMenu id="musicSharing"
  6014. type="0" >
  6015. </productMenu>
  6016. <productMenu id="deviceSetting"
  6017. type="1"
  6018. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6019. <productMenuURL version="2.4.9"
  6020. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6021. />
  6022. <productMenuURL version="2.2.2"
  6023. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6024. />
  6025. <productMenuURL version="2.1.1"
  6026. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6027. />
  6028. </productMenu>
  6029. <productMenu id="quickGuide"
  6030. type="0"
  6031. url=""
  6032. size="1.12MB" >
  6033. </productMenu>
  6034. <productMenu id="userGuide"
  6035. type="1"
  6036. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  6037. size="2.0MB" >
  6038. </productMenu>
  6039. <productMenu id="videoGuide"
  6040. type="1"
  6041. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6042. size="3.41MB" >
  6043. </productMenu>
  6044. <productMenu id="connectGuide"
  6045. type="1"
  6046. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6047. size="1.12MB" >
  6048. </productMenu>
  6049. <productMenu id="volume"
  6050. type="12" >
  6051. </productMenu>
  6052. <productMenu id="volume+"
  6053. type="2"
  6054. url="0x2000" >
  6055. </productMenu>
  6056. <productMenu id="battery"
  6057. type="1" >
  6058. </productMenu>
  6059. <productID id="6800"
  6060. />
  6061. <productGroupable type="0"
  6062. />
  6063. </product>
  6064. <product id="SPIDER_ST1"
  6065. name="SPIDER ST1"
  6066. series="SPIDER"
  6067. latestVersion="1.2.2"
  6068. show = "-1" >
  6069. <productMenu id="protocol"
  6070. type="2" >
  6071. </productMenu>
  6072. <productMenu id="alexa"
  6073. type="0" >
  6074. </productMenu>
  6075. <productMenu id="ota"
  6076. type="0" >
  6077. </productMenu>
  6078. <productMenu id="wa"
  6079. type="0" >
  6080. </productMenu>
  6081. <productMenu id="meshIntercom"
  6082. type="20" >
  6083. </productMenu>
  6084. <productMenu id="phone"
  6085. type="1" >
  6086. </productMenu>
  6087. <productMenu id="music"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="deviceSetting"
  6091. type="1"
  6092. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6093. </productMenu>
  6094. <productMenu id="quickGuide"
  6095. type="0"
  6096. url=""
  6097. size="1.12MB" >
  6098. </productMenu>
  6099. <productMenu id="userGuide"
  6100. type="1"
  6101. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  6102. size="2.0MB" >
  6103. </productMenu>
  6104. <productMenu id="videoGuide"
  6105. type="1"
  6106. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6107. size="3.41MB" >
  6108. </productMenu>
  6109. <productMenu id="volume"
  6110. type="13" >
  6111. <productMenuType version="1.1.6"
  6112. type="14"/>
  6113. </productMenu>
  6114. <productMenu id="battery"
  6115. type="1" >
  6116. </productMenu>
  6117. <productID id="6510"
  6118. />
  6119. <productGroupable type="0"
  6120. />
  6121. </product>
  6122. <product id="SPIDER_RT1"
  6123. name="SPIDER RT1"
  6124. series="SPIDER"
  6125. latestVersion="2.5.3"
  6126. latestVersionVoicePrompt="1.6"
  6127. show = "1" >
  6128. <productMenu id="protocol"
  6129. type="2" >
  6130. </productMenu>
  6131. <productMenu id="alexa"
  6132. type="0" >
  6133. </productMenu>
  6134. <productMenu id="ota"
  6135. type="2" >
  6136. <productMenuType version="2.1.9"
  6137. type="0"
  6138. />
  6139. <otaPackages>
  6140. <package
  6141. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6142. size="2945812"
  6143. />
  6144. </otaPackages>
  6145. </productMenu>
  6146. <productMenu id="wa"
  6147. type="0" >
  6148. </productMenu>
  6149. <productMenu id="meshIntercom"
  6150. type="30" >
  6151. <productMenuType version="2.1.1"
  6152. type="20"
  6153. />
  6154. </productMenu>
  6155. <productMenu id="meshIntercom+"
  6156. type="3"
  6157. url="2" >
  6158. <productMenuType version="2.2.9"
  6159. type="2"
  6160. />
  6161. <productMenuURL version="2.1.1"
  6162. url="0"
  6163. />
  6164. </productMenu>
  6165. <productMenu id="waveIntercom"
  6166. type="1" >
  6167. <productMenuType version="2.3.9"
  6168. type="0"
  6169. />
  6170. </productMenu>
  6171. <productMenu id="phone"
  6172. type="1" >
  6173. </productMenu>
  6174. <productMenu id="music"
  6175. type="1" >
  6176. </productMenu>
  6177. <productMenu id="musicSharing"
  6178. type="0" >
  6179. </productMenu>
  6180. <productMenu id="deviceSetting"
  6181. type="1"
  6182. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6183. <productMenuURL version="2.4.9"
  6184. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6185. />
  6186. <productMenuURL version="2.2.2"
  6187. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6188. />
  6189. <productMenuURL version="2.1.1"
  6190. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6191. />
  6192. </productMenu>
  6193. <productMenu id="quickGuide"
  6194. type="0"
  6195. url=""
  6196. size="1.12MB" >
  6197. </productMenu>
  6198. <productMenu id="userGuide"
  6199. type="1"
  6200. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6201. size="2.0MB" >
  6202. </productMenu>
  6203. <productMenu id="videoGuide"
  6204. type="1"
  6205. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6206. size="3.41MB" >
  6207. </productMenu>
  6208. <productMenu id="connectGuide"
  6209. type="1"
  6210. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6211. size="1.12MB" >
  6212. </productMenu>
  6213. <productMenu id="volume"
  6214. type="12" >
  6215. </productMenu>
  6216. <productMenu id="volume+"
  6217. type="2"
  6218. url="0x2000" >
  6219. </productMenu>
  6220. <productMenu id="battery"
  6221. type="1" >
  6222. </productMenu>
  6223. <productID id="6810"
  6224. />
  6225. <productGroupable type="0"
  6226. />
  6227. </product>
  6228. <product id="SPIDER_RT1"
  6229. name="SPIDER RT1"
  6230. series="SPIDER"
  6231. latestVersion="1.2.2"
  6232. show = "-1" >
  6233. <productMenu id="protocol"
  6234. type="2" >
  6235. </productMenu>
  6236. <productMenu id="alexa"
  6237. type="0" >
  6238. </productMenu>
  6239. <productMenu id="ota"
  6240. type="0" >
  6241. </productMenu>
  6242. <productMenu id="wa"
  6243. type="0" >
  6244. </productMenu>
  6245. <productMenu id="meshIntercom"
  6246. type="20" >
  6247. </productMenu>
  6248. <productMenu id="phone"
  6249. type="1" >
  6250. </productMenu>
  6251. <productMenu id="music"
  6252. type="1" >
  6253. </productMenu>
  6254. <productMenu id="deviceSetting"
  6255. type="1"
  6256. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6257. </productMenu>
  6258. <productMenu id="quickGuide"
  6259. type="0"
  6260. url=""
  6261. size="1.32MB" >
  6262. </productMenu>
  6263. <productMenu id="userGuide"
  6264. type="1"
  6265. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6266. size="1.79MB" >
  6267. </productMenu>
  6268. <productMenu id="videoGuide"
  6269. type="1"
  6270. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6271. size="3.41MB" >
  6272. </productMenu>
  6273. <productMenu id="volume"
  6274. type="13" >
  6275. <productMenuType version="1.1.6"
  6276. type="14"/>
  6277. </productMenu>
  6278. <productMenu id="battery"
  6279. type="1" >
  6280. </productMenu>
  6281. <productID id="6500"
  6282. />
  6283. <productGroupable type="0"
  6284. />
  6285. </product>
  6286. <product id="30K"
  6287. name="30K"
  6288. series="30"
  6289. latestVersion="4.5.1"
  6290. show = "1" >
  6291. <productMenu id="protocol"
  6292. type="2" >
  6293. </productMenu>
  6294. <productMenu id="alexa"
  6295. type="0" >
  6296. </productMenu>
  6297. <productMenu id="wa"
  6298. type="1" >
  6299. </productMenu>
  6300. <productMenu id="sip"
  6301. type="1" >
  6302. </productMenu>
  6303. <productMenu id="meshIntercom"
  6304. type="30" >
  6305. <productMenuType version="4.0.4"
  6306. type="20"
  6307. />
  6308. </productMenu>
  6309. <productMenu id="meshIntercom+"
  6310. type="3"
  6311. url="2" >
  6312. <productMenuType version="4.3.9"
  6313. type="2"
  6314. />
  6315. <productMenuURL version="4.0.4"
  6316. url="0"
  6317. />
  6318. </productMenu>
  6319. <productMenu id="waveIntercom"
  6320. type="1" >
  6321. <productMenuType version="4.4.9"
  6322. type="0"
  6323. />
  6324. </productMenu>
  6325. <productMenu id="bluetoothIntercom"
  6326. type="1" >
  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/30K/NS_30KV2_04.xml" >
  6340. <productMenuURL version="4.3"
  6341. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6342. />
  6343. <productMenuURL version="4.2"
  6344. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6345. />
  6346. <productMenuURL version="4.0.4"
  6347. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6348. />
  6349. </productMenu>
  6350. <productMenu id="quickGuide"
  6351. type="0"
  6352. url=""
  6353. size="934KB" >
  6354. </productMenu>
  6355. <productMenu id="userGuide"
  6356. type="1"
  6357. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6358. size="1.14MB" >
  6359. </productMenu>
  6360. <productMenu id="connectGuide"
  6361. type="1"
  6362. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6363. size="1.12MB" >
  6364. </productMenu>
  6365. <productMenu id="volume"
  6366. type="11" >
  6367. </productMenu>
  6368. <productMenu id="battery"
  6369. type="1" >
  6370. </productMenu>
  6371. <productID id="3211"
  6372. />
  6373. <productGroupable type="0"
  6374. />
  6375. </product>
  6376. <product id="30K"
  6377. name="30K"
  6378. series="30"
  6379. latestVersion="3.5"
  6380. show = "-1" >
  6381. <productMenu id="protocol"
  6382. type="1"
  6383. url="0">
  6384. </productMenu>
  6385. <productMenu id="wa"
  6386. type="7" >
  6387. </productMenu>
  6388. <productMenu id="sip"
  6389. type="1" >
  6390. </productMenu>
  6391. <productMenu id="meshIntercom"
  6392. type="20" >
  6393. <productMenuType version="2.9.9"
  6394. type="10"
  6395. />
  6396. </productMenu>
  6397. <productMenu id="meshIntercom+"
  6398. type="3"
  6399. url="2" >
  6400. <productMenuType version="3.4.9"
  6401. type="2"
  6402. />
  6403. <productMenuType version="2.9.9"
  6404. type="1"
  6405. />
  6406. <productMenuURL version="3.3.1"
  6407. url="0"
  6408. />
  6409. </productMenu>
  6410. <productMenu id="bluetoothIntercom"
  6411. type="1" >
  6412. </productMenu>
  6413. <productMenu id="phone"
  6414. type="1" >
  6415. </productMenu>
  6416. <productMenu id="music"
  6417. type="1" >
  6418. </productMenu>
  6419. <productMenu id="fmradio"
  6420. type="1" >
  6421. </productMenu>
  6422. <productMenu id="deviceSetting"
  6423. type="1"
  6424. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6425. <productMenuURL version="3.4.9"
  6426. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6427. />
  6428. <productMenuURL version="3.3.1"
  6429. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6430. />
  6431. <productMenuURL version="3.0.1"
  6432. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6433. />
  6434. <productMenuURL version="2.3.1"
  6435. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6436. />
  6437. <productMenuURL version="2.0"
  6438. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6439. />
  6440. <productMenuURL version="1.0.3"
  6441. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6442. />
  6443. </productMenu>
  6444. <productMenu id="quickGuide"
  6445. type="0"
  6446. url=""
  6447. size="1.06MB" >
  6448. </productMenu>
  6449. <productMenu id="userGuide"
  6450. type="1"
  6451. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6452. size="3.15MB" >
  6453. </productMenu>
  6454. <productMenu id="volume"
  6455. type="1" >
  6456. </productMenu>
  6457. <productID id="3110"
  6458. />
  6459. <productGroupable type="0"
  6460. />
  6461. </product>
  6462. <product id="FURY"
  6463. name="FURY"
  6464. series="Helmet"
  6465. latestVersion="1.0"
  6466. show = "-1" >
  6467. <productMenu id="protocol"
  6468. type="2" >
  6469. </productMenu>
  6470. <productMenu id="alexa"
  6471. type="0" >
  6472. </productMenu>
  6473. <productMenu id="ota"
  6474. type="0" >
  6475. </productMenu>
  6476. <productMenu id="wa"
  6477. type="0" >
  6478. </productMenu>
  6479. <productMenu id="meshIntercom"
  6480. type="20" >
  6481. </productMenu>
  6482. <productMenu id="phone"
  6483. type="1" >
  6484. </productMenu>
  6485. <productMenu id="music"
  6486. type="1" >
  6487. </productMenu>
  6488. <productMenu id="fmradio"
  6489. type="1" >
  6490. </productMenu>
  6491. <productMenu id="deviceSetting"
  6492. type="1"
  6493. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6494. </productMenu>
  6495. <productMenu id="quickGuide"
  6496. type="1"
  6497. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6498. size="1.12MB" >
  6499. </productMenu>
  6500. <productMenu id="userGuide"
  6501. type="1"
  6502. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6503. size="2.0MB" >
  6504. </productMenu>
  6505. <productMenu id="volume"
  6506. type="13" >
  6507. </productMenu>
  6508. <productMenu id="battery"
  6509. type="1" >
  6510. </productMenu>
  6511. <productID id="5552"
  6512. />
  6513. <productGroupable type="0"
  6514. />
  6515. </product>
  6516. <product id="MomentumM"
  6517. name="Momentum EVO"
  6518. series="Helmet"
  6519. latestVersion="2.1.2"
  6520. show = "1" >
  6521. <productMenu id="protocol"
  6522. type="1"
  6523. url="0">
  6524. </productMenu>
  6525. <productMenu id="wa"
  6526. type="3" >
  6527. </productMenu>
  6528. <productMenu id="sip"
  6529. type="1" >
  6530. </productMenu>
  6531. <productMenu id="meshIntercom"
  6532. type="20" >
  6533. <productMenuType version="1.9.9"
  6534. type="10"
  6535. />
  6536. </productMenu>
  6537. <productMenu id="bluetoothIntercom"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="phone"
  6541. type="1" >
  6542. </productMenu>
  6543. <productMenu id="music"
  6544. type="1" >
  6545. </productMenu>
  6546. <productMenu id="fmradio"
  6547. type="1" >
  6548. </productMenu>
  6549. <productMenu id="deviceSetting"
  6550. type="1"
  6551. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6552. <productMenuURL version="1.0.1"
  6553. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6554. />
  6555. </productMenu>
  6556. <productMenu id="quickGuide"
  6557. type="1"
  6558. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6559. size="1.06MB" >
  6560. </productMenu>
  6561. <productMenu id="userGuide"
  6562. type="1"
  6563. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6564. size="3.15MB" >
  6565. </productMenu>
  6566. <productMenu id="connectGuide"
  6567. type="1"
  6568. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6569. size="1.12MB" >
  6570. </productMenu>
  6571. <productMenu id="volume"
  6572. type="2" >
  6573. </productMenu>
  6574. <productID id="3116"
  6575. />
  6576. <productGroupable type="0"
  6577. />
  6578. </product>
  6579. <product id="Momentum"
  6580. name="Momentum"
  6581. series="Helmet"
  6582. latestVersion="1.0.9"
  6583. show = "1" >
  6584. <productMenu id="protocol"
  6585. type="0">
  6586. </productMenu>
  6587. <productMenu id="sip"
  6588. type="1" >
  6589. </productMenu>
  6590. <productMenu id="bluetoothIntercom"
  6591. type="1" >
  6592. </productMenu>
  6593. <productMenu id="intercomSetting"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="phone"
  6597. type="2" >
  6598. </productMenu>
  6599. <productMenu id="fmradio"
  6600. type="3" >
  6601. </productMenu>
  6602. <productMenu id="deviceSetting"
  6603. type="1"
  6604. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6605. </productMenu>
  6606. <productMenu id="quickGuide"
  6607. type="1"
  6608. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6609. size="796KB" >
  6610. </productMenu>
  6611. <productMenu id="userGuide"
  6612. type="1"
  6613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6614. size="1.90MB" >
  6615. </productMenu>
  6616. <productMenu id="connectGuide"
  6617. type="1"
  6618. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6619. size="1.12MB" >
  6620. </productMenu>
  6621. <productID id="4310"
  6622. />
  6623. <productGroupable type="1"
  6624. />
  6625. </product>
  6626. <product id="Momentum_Pro"
  6627. name="Momentum Pro"
  6628. series="Helmet"
  6629. latestVersion="1.0.6"
  6630. show = "1" >
  6631. <productMenu id="protocol"
  6632. type="0">
  6633. </productMenu>
  6634. <productMenu id="sip"
  6635. type="1" >
  6636. </productMenu>
  6637. <productMenu id="bluetoothIntercom"
  6638. type="1" >
  6639. </productMenu>
  6640. <productMenu id="intercomSetting"
  6641. type="1" >
  6642. </productMenu>
  6643. <productMenu id="phone"
  6644. type="2" >
  6645. </productMenu>
  6646. <productMenu id="fmradio"
  6647. type="3" >
  6648. </productMenu>
  6649. <productMenu id="deviceSetting"
  6650. type="1"
  6651. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6652. </productMenu>
  6653. <productMenu id="quickGuide"
  6654. type="1"
  6655. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6656. size="796KB" >
  6657. </productMenu>
  6658. <productMenu id="userGuide"
  6659. type="1"
  6660. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6661. size="1.90MB" >
  6662. </productMenu>
  6663. <productMenu id="connectGuide"
  6664. type="1"
  6665. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6666. size="1.12MB" >
  6667. </productMenu>
  6668. <productID id="4330"
  6669. />
  6670. <productGroupable type="1"
  6671. />
  6672. </product>
  6673. <product id="Momentum_INC"
  6674. name="Momentum INC"
  6675. series="Helmet"
  6676. latestVersion="1.0.7"
  6677. show = "1" >
  6678. <productMenu id="protocol"
  6679. type="0">
  6680. </productMenu>
  6681. <productMenu id="sip"
  6682. type="1" >
  6683. </productMenu>
  6684. <productMenu id="bluetoothIntercom"
  6685. type="1" >
  6686. </productMenu>
  6687. <productMenu id="intercomSetting"
  6688. type="1" >
  6689. </productMenu>
  6690. <productMenu id="phone"
  6691. type="2" >
  6692. </productMenu>
  6693. <productMenu id="fmradio"
  6694. type="3" >
  6695. </productMenu>
  6696. <productMenu id="deviceSetting"
  6697. type="1"
  6698. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6699. </productMenu>
  6700. <productMenu id="quickGuide"
  6701. type="1"
  6702. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6703. size="794KB" >
  6704. </productMenu>
  6705. <productMenu id="userGuide"
  6706. type="1"
  6707. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6708. size="1.53MB" >
  6709. </productMenu>
  6710. <productMenu id="connectGuide"
  6711. type="1"
  6712. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6713. size="1.12MB" >
  6714. </productMenu>
  6715. <productID id="4410"
  6716. />
  6717. <productGroupable type="1"
  6718. />
  6719. </product>
  6720. <product id="Momentum_INCP"
  6721. name="Momentum INC Pro"
  6722. series="Helmet"
  6723. latestVersion="1.0.4"
  6724. show = "1" >
  6725. <productMenu id="protocol"
  6726. type="0">
  6727. </productMenu>
  6728. <productMenu id="sip"
  6729. type="1" >
  6730. </productMenu>
  6731. <productMenu id="bluetoothIntercom"
  6732. type="1" >
  6733. </productMenu>
  6734. <productMenu id="intercomSetting"
  6735. type="1" >
  6736. </productMenu>
  6737. <productMenu id="phone"
  6738. type="2" >
  6739. </productMenu>
  6740. <productMenu id="fmradio"
  6741. type="3" >
  6742. </productMenu>
  6743. <productMenu id="deviceSetting"
  6744. type="1"
  6745. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6746. </productMenu>
  6747. <productMenu id="quickGuide"
  6748. type="1"
  6749. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6750. size="794KB" >
  6751. </productMenu>
  6752. <productMenu id="userGuide"
  6753. type="1"
  6754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6755. size="1.53MB" >
  6756. </productMenu>
  6757. <productMenu id="connectGuide"
  6758. type="1"
  6759. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6760. size="1.12MB" >
  6761. </productMenu>
  6762. <productID id="4430"
  6763. />
  6764. <productGroupable type="1"
  6765. />
  6766. </product>
  6767. <product id="Momentum_Lite"
  6768. name="Momentum Lite"
  6769. series="Helmet"
  6770. latestVersion="2.0.3"
  6771. show = "1" >
  6772. <productMenu id="protocol"
  6773. type="0">
  6774. </productMenu>
  6775. <productMenu id="sip"
  6776. type="1" >
  6777. </productMenu>
  6778. <productMenu id="bluetoothIntercom"
  6779. type="1" >
  6780. </productMenu>
  6781. <productMenu id="phone"
  6782. type="2" >
  6783. </productMenu>
  6784. <productMenu id="fmradio"
  6785. type="3" >
  6786. </productMenu>
  6787. <productMenu id="deviceSetting"
  6788. type="1"
  6789. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6790. <productMenuURL version="1.1"
  6791. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6792. />
  6793. </productMenu>
  6794. <productMenu id="quickGuide"
  6795. type="1"
  6796. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6797. size="790KB" >
  6798. </productMenu>
  6799. <productMenu id="userGuide"
  6800. type="1"
  6801. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6802. size="1.42MB" >
  6803. </productMenu>
  6804. <productMenu id="connectGuide"
  6805. type="1"
  6806. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6807. size="1.12MB" >
  6808. </productMenu>
  6809. <productID id="5526"
  6810. />
  6811. <productGroupable type="0"
  6812. />
  6813. </product>
  6814. <product id="OUTRUSHM"
  6815. name="OUTRUSH M"
  6816. series="Helmet"
  6817. latestVersion="1.0"
  6818. show = "-1" >
  6819. <productMenu id="protocol"
  6820. type="2" >
  6821. </productMenu>
  6822. <productMenu id="alexa"
  6823. type="0" >
  6824. </productMenu>
  6825. <productMenu id="ota"
  6826. type="0" >
  6827. </productMenu>
  6828. <productMenu id="wa"
  6829. type="0" >
  6830. </productMenu>
  6831. <productMenu id="meshIntercom"
  6832. type="30" >
  6833. </productMenu>
  6834. <productMenu id="phone"
  6835. type="1" >
  6836. </productMenu>
  6837. <productMenu id="music"
  6838. type="1" >
  6839. </productMenu>
  6840. <productMenu id="fmradio"
  6841. type="1" >
  6842. </productMenu>
  6843. <productMenu id="deviceSetting"
  6844. type="1"
  6845. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6846. </productMenu>
  6847. <productMenu id="quickGuide"
  6848. type="1"
  6849. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6850. size="1.12MB" >
  6851. </productMenu>
  6852. <productMenu id="userGuide"
  6853. type="1"
  6854. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6855. size="2.0MB" >
  6856. </productMenu>
  6857. <productMenu id="volume"
  6858. type="13" >
  6859. </productMenu>
  6860. <productMenu id="battery"
  6861. type="1" >
  6862. </productMenu>
  6863. <productID id="5600"
  6864. />
  6865. <productGroupable type="0"
  6866. />
  6867. </product>
  6868. <product id="ProRideEVO"
  6869. name="ProRide EVO"
  6870. series="Helmet"
  6871. latestVersion="1.1.2"
  6872. show = "1" >
  6873. <productMenu id="protocol"
  6874. type="0">
  6875. </productMenu>
  6876. <productMenu id="sip"
  6877. type="1" >
  6878. </productMenu>
  6879. <productMenu id="bluetoothIntercom"
  6880. type="1" >
  6881. </productMenu>
  6882. <productMenu id="phone"
  6883. type="2" >
  6884. </productMenu>
  6885. <productMenu id="fmradio"
  6886. type="3" >
  6887. </productMenu>
  6888. <productMenu id="deviceSetting"
  6889. type="1"
  6890. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6891. </productMenu>
  6892. <productMenu id="userGuide"
  6893. type="1"
  6894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6895. size="778KB" >
  6896. </productMenu>
  6897. <productMenu id="connectGuide"
  6898. type="1"
  6899. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6900. size="1.12MB" >
  6901. </productMenu>
  6902. <productID id="5426"
  6903. />
  6904. <productGroupable type="0"
  6905. />
  6906. </product>
  6907. <product id="OUTRUSHR"
  6908. name="OUTRUSH R"
  6909. series="Helmet"
  6910. latestVersion="2.1"
  6911. show = "1" >
  6912. <productMenu id="protocol"
  6913. type="3" >
  6914. </productMenu>
  6915. <productMenu id="sip"
  6916. type="1" >
  6917. </productMenu>
  6918. <productMenu id="bluetoothIntercom"
  6919. type="1" >
  6920. </productMenu>
  6921. <productMenu id="phone"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="fmradio"
  6925. type="0" >
  6926. </productMenu>
  6927. <productMenu id="deviceSetting"
  6928. type="1"
  6929. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6930. </productMenu>
  6931. <productMenu id="userGuide"
  6932. type="1"
  6933. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6934. size="1.14MB" >
  6935. </productMenu>
  6936. <productMenu id="connectGuide"
  6937. type="1"
  6938. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6939. size="1.12MB" >
  6940. </productMenu>
  6941. <productID id="5440"
  6942. />
  6943. <productGroupable type="0"
  6944. />
  6945. </product>
  6946. <product id="OUTRUSHR"
  6947. name="OUTRUSH R"
  6948. series="Helmet"
  6949. latestVersion="1.1.4"
  6950. show = "-1" >
  6951. <productMenu id="protocol"
  6952. type="0">
  6953. </productMenu>
  6954. <productMenu id="sip"
  6955. type="1" >
  6956. </productMenu>
  6957. <productMenu id="bluetoothIntercom"
  6958. type="1" >
  6959. </productMenu>
  6960. <productMenu id="phone"
  6961. type="2" >
  6962. </productMenu>
  6963. <productMenu id="fmradio"
  6964. type="3" >
  6965. </productMenu>
  6966. <productMenu id="deviceSetting"
  6967. type="1"
  6968. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6969. </productMenu>
  6970. <productMenu id="userGuide"
  6971. type="1"
  6972. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6973. size="660KB" >
  6974. </productMenu>
  6975. <productMenu id="connectGuide"
  6976. type="1"
  6977. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6978. size="1.12MB" >
  6979. </productMenu>
  6980. <productID id="5424"
  6981. />
  6982. <productGroupable type="0"
  6983. />
  6984. </product>
  6985. <product id="OUTSTARS"
  6986. name="OUTSTAR S"
  6987. series="Helmet"
  6988. latestVersion="2.0.1"
  6989. show = "-1" >
  6990. <productMenu id="protocol"
  6991. type="3" >
  6992. </productMenu>
  6993. <productMenu id="sip"
  6994. type="1" >
  6995. </productMenu>
  6996. <productMenu id="bluetoothIntercom"
  6997. type="1" >
  6998. </productMenu>
  6999. <productMenu id="phone"
  7000. type="1" >
  7001. </productMenu>
  7002. <productMenu id="fmradio"
  7003. type="0" >
  7004. </productMenu>
  7005. <productMenu id="deviceSetting"
  7006. type="1"
  7007. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  7008. </productMenu>
  7009. <productMenu id="userGuide"
  7010. type="0"
  7011. url=""
  7012. size="1.14MB" >
  7013. </productMenu>
  7014. <productID id="5443"
  7015. />
  7016. <productGroupable type="0"
  7017. />
  7018. </product>
  7019. <product id="OUTSTARS"
  7020. name="OUTSTAR S"
  7021. series="Helmet"
  7022. latestVersion="1.1.4"
  7023. show = "1" >
  7024. <productMenu id="protocol"
  7025. type="0">
  7026. </productMenu>
  7027. <productMenu id="sip"
  7028. type="1" >
  7029. </productMenu>
  7030. <productMenu id="bluetoothIntercom"
  7031. type="1" >
  7032. </productMenu>
  7033. <productMenu id="phone"
  7034. type="2" >
  7035. </productMenu>
  7036. <productMenu id="fmradio"
  7037. type="3" >
  7038. </productMenu>
  7039. <productMenu id="deviceSetting"
  7040. type="1"
  7041. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7042. </productMenu>
  7043. <productMenu id="quickGuide"
  7044. type="1"
  7045. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7046. size="643KB" >
  7047. </productMenu>
  7048. <productMenu id="userGuide"
  7049. type="1"
  7050. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  7051. size="1.15MB" >
  7052. </productMenu>
  7053. <productMenu id="connectGuide"
  7054. type="1"
  7055. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7056. size="1.12MB" >
  7057. </productMenu>
  7058. <productID id="5428"
  7059. />
  7060. <productGroupable type="0"
  7061. />
  7062. </product>
  7063. <product id="OUTRIDE"
  7064. name="OUTRIDE"
  7065. series="Helmet"
  7066. latestVersion="1.0.1"
  7067. show = "1" >
  7068. <productMenu id="protocol"
  7069. type="0">
  7070. </productMenu>
  7071. <productMenu id="sip"
  7072. type="1" >
  7073. </productMenu>
  7074. <productMenu id="bluetoothIntercom"
  7075. type="1" >
  7076. </productMenu>
  7077. <productMenu id="phone"
  7078. type="2" >
  7079. </productMenu>
  7080. <productMenu id="fmradio"
  7081. type="3" >
  7082. </productMenu>
  7083. <productMenu id="deviceSetting"
  7084. type="1"
  7085. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7086. </productMenu>
  7087. <productMenu id="quickGuide"
  7088. type="1"
  7089. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7090. size="643KB" >
  7091. </productMenu>
  7092. <productMenu id="userGuide"
  7093. type="1"
  7094. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  7095. size="660KB" >
  7096. </productMenu>
  7097. <productMenu id="connectGuide"
  7098. type="1"
  7099. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7100. size="1.12MB" >
  7101. </productMenu>
  7102. <productID id="5432"
  7103. />
  7104. <productGroupable type="0"
  7105. />
  7106. </product>
  7107. <product id="OUTFORCE"
  7108. name="OUTFORCE"
  7109. series="Helmet"
  7110. latestVersion="1.0.1"
  7111. show = "1" >
  7112. <productMenu id="protocol"
  7113. type="0">
  7114. </productMenu>
  7115. <productMenu id="sip"
  7116. type="1" >
  7117. </productMenu>
  7118. <productMenu id="bluetoothIntercom"
  7119. type="1" >
  7120. </productMenu>
  7121. <productMenu id="phone"
  7122. type="2" >
  7123. </productMenu>
  7124. <productMenu id="fmradio"
  7125. type="3" >
  7126. </productMenu>
  7127. <productMenu id="deviceSetting"
  7128. type="1"
  7129. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7130. </productMenu>
  7131. <productMenu id="quickGuide"
  7132. type="1"
  7133. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7134. size="643KB" >
  7135. </productMenu>
  7136. <productMenu id="userGuide"
  7137. type="1"
  7138. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7139. size="660KB" >
  7140. </productMenu>
  7141. <productMenu id="connectGuide"
  7142. type="1"
  7143. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7144. size="1.12MB" >
  7145. </productMenu>
  7146. <productID id="5430"
  7147. />
  7148. <productGroupable type="0"
  7149. />
  7150. </product>
  7151. <product id="Rumba"
  7152. name="Rumba"
  7153. series="30"
  7154. latestVersion="2.0"
  7155. show = "-1" >
  7156. <productMenu id="protocol"
  7157. type="3" >
  7158. </productMenu>
  7159. <productMenu id="sip"
  7160. type="1" >
  7161. </productMenu>
  7162. <productMenu id="bluetoothIntercom"
  7163. type="1" >
  7164. </productMenu>
  7165. <productMenu id="deviceSetting"
  7166. type="1"
  7167. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7168. </productMenu>
  7169. <productMenu id="quickGuide"
  7170. type="1"
  7171. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7172. size="344KB" >
  7173. </productMenu>
  7174. <productMenu id="userGuide"
  7175. type="1"
  7176. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7177. size="1.14MB" >
  7178. </productMenu>
  7179. <productID id="6322"
  7180. />
  7181. <productGroupable type="0"
  7182. />
  7183. </product>
  7184. <product id="Savage"
  7185. name="Savage"
  7186. series="Helmet"
  7187. latestVersion="1.2.2"
  7188. show = "1" >
  7189. <productMenu id="protocol"
  7190. type="0">
  7191. </productMenu>
  7192. <productMenu id="sip"
  7193. type="1" >
  7194. </productMenu>
  7195. <productMenu id="bluetoothIntercom"
  7196. type="1" >
  7197. </productMenu>
  7198. <productMenu id="phone"
  7199. type="2" >
  7200. </productMenu>
  7201. <productMenu id="fmradio"
  7202. type="3" >
  7203. </productMenu>
  7204. <productMenu id="deviceSetting"
  7205. type="1"
  7206. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7207. <productMenuURL version="1.9"
  7208. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7209. />
  7210. <productMenuURL version="1.1"
  7211. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7212. />
  7213. </productMenu>
  7214. <productMenu id="quickGuide"
  7215. type="1"
  7216. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7217. size="796KB" >
  7218. </productMenu>
  7219. <productMenu id="userGuide"
  7220. type="1"
  7221. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7222. size="910KB" >
  7223. </productMenu>
  7224. <productMenu id="connectGuide"
  7225. type="1"
  7226. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7227. size="1.12MB" >
  7228. </productMenu>
  7229. <productID id="5550"
  7230. />
  7231. <productGroupable type="0"
  7232. />
  7233. </product>
  7234. <product id="RECON"
  7235. name="RECON"
  7236. series="Helmet"
  7237. latestVersion="1.0"
  7238. latestVersionVoicePrompt="1.8"
  7239. show = "-1" >
  7240. <productMenu id="protocol"
  7241. type="2" >
  7242. </productMenu>
  7243. <productMenu id="ota"
  7244. type="2" >
  7245. <otaLanguages>
  7246. <otaLanguage
  7247. id="0"
  7248. name="English"
  7249. package="0"
  7250. />
  7251. <otaLanguage
  7252. id="0"
  7253. name="French"
  7254. package="1"
  7255. />
  7256. <otaLanguage
  7257. id="0"
  7258. name="Spanish"
  7259. package="2"
  7260. />
  7261. <otaLanguage
  7262. id="0"
  7263. name="Italian"
  7264. package="3"
  7265. />
  7266. <otaLanguage
  7267. id="0"
  7268. name="German"
  7269. package="4"
  7270. />
  7271. <otaLanguage
  7272. id="0"
  7273. name="Dutch"
  7274. package="5"
  7275. />
  7276. <otaLanguage
  7277. id="0"
  7278. name="Russian"
  7279. package="6"
  7280. />
  7281. <otaLanguage
  7282. id="0"
  7283. name="Chinese"
  7284. package="7"
  7285. />
  7286. <otaLanguage
  7287. id="0"
  7288. name="Korean"
  7289. package="8"
  7290. />
  7291. <otaLanguage
  7292. id="0"
  7293. name="Japanese"
  7294. package="9"
  7295. />
  7296. <otaLanguage
  7297. id="0"
  7298. name="Finnish"
  7299. package="10"
  7300. />
  7301. <otaLanguage
  7302. id="0"
  7303. name="Polish"
  7304. package="11"
  7305. />
  7306. </otaLanguages>
  7307. <otaPackages>
  7308. <package
  7309. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7310. size="5183988"
  7311. />
  7312. <package
  7313. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7314. size="5183988"
  7315. />
  7316. <package
  7317. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7318. size="5183988"
  7319. />
  7320. <package
  7321. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7322. size="5183988"
  7323. />
  7324. <package
  7325. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7326. size="5183988"
  7327. />
  7328. <package
  7329. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7330. size="5183988"
  7331. />
  7332. <package
  7333. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7334. size="5183988"
  7335. />
  7336. <package
  7337. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7338. size="5183988"
  7339. />
  7340. <package
  7341. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7342. size="5183988"
  7343. />
  7344. <package
  7345. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7346. size="5183988"
  7347. />
  7348. <package
  7349. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7350. size="5183988"
  7351. />
  7352. <package
  7353. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7354. size="5183988"
  7355. />
  7356. </otaPackages>
  7357. </productMenu>
  7358. <productMenu id="wa"
  7359. type="0" >
  7360. </productMenu>
  7361. <productMenu id="led"
  7362. type="5" >
  7363. </productMenu>
  7364. <productMenu id="led+"
  7365. type="2"
  7366. url="1" >
  7367. </productMenu>
  7368. <productMenu id="meshIntercom+"
  7369. type="3"
  7370. url="2" >
  7371. </productMenu>
  7372. <productMenu id="waveIntercom"
  7373. type="1" >
  7374. </productMenu>
  7375. <productMenu id="fmradio"
  7376. type="0" >
  7377. </productMenu>
  7378. <productMenu id="phone"
  7379. type="1" >
  7380. </productMenu>
  7381. <productMenu id="music"
  7382. type="1" >
  7383. </productMenu>
  7384. <productMenu id="musicSharing"
  7385. type="0" >
  7386. </productMenu>
  7387. <productMenu id="deviceSetting"
  7388. type="1"
  7389. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON_01.xml" >
  7390. </productMenu>
  7391. <productMenu id="quickGuide"
  7392. type="0"
  7393. url=""
  7394. size="1.12MB" >
  7395. </productMenu>
  7396. <productMenu id="userGuide"
  7397. type="1"
  7398. url=""
  7399. size="2.28MB" >
  7400. </productMenu>
  7401. <productMenu id="videoGuide"
  7402. type="0"
  7403. url=""
  7404. size="3.41MB" >
  7405. </productMenu>
  7406. <productMenu id="volume"
  7407. type="16" >
  7408. </productMenu>
  7409. <productMenu id="volume+"
  7410. type="2"
  7411. url="0x6004" >
  7412. </productMenu>
  7413. <productMenu id="battery"
  7414. type="1" >
  7415. </productMenu>
  7416. <productID id="6A1D"
  7417. />
  7418. <productGroupable type="0"
  7419. />
  7420. </product>
  7421. <product id="SPECTER"
  7422. name="SPECTER"
  7423. series="Helmet"
  7424. latestVersion="1.0.9"
  7425. latestVersionVoicePrompt="1.7"
  7426. show = "1" >
  7427. <productMenu id="protocol"
  7428. type="2" >
  7429. </productMenu>
  7430. <productMenu id="ota"
  7431. type="2" >
  7432. <otaLanguages>
  7433. <otaLanguage
  7434. id="0"
  7435. name="English"
  7436. package="0"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="French"
  7441. package="1"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="Spanish"
  7446. package="2"
  7447. />
  7448. <otaLanguage
  7449. id="0"
  7450. name="Italian"
  7451. package="3"
  7452. />
  7453. <otaLanguage
  7454. id="0"
  7455. name="German"
  7456. package="4"
  7457. />
  7458. <otaLanguage
  7459. id="0"
  7460. name="Dutch"
  7461. package="5"
  7462. />
  7463. <otaLanguage
  7464. id="0"
  7465. name="Russian"
  7466. package="6"
  7467. />
  7468. <otaLanguage
  7469. id="0"
  7470. name="Chinese"
  7471. package="7"
  7472. />
  7473. <otaLanguage
  7474. id="0"
  7475. name="Korean"
  7476. package="8"
  7477. />
  7478. <otaLanguage
  7479. id="0"
  7480. name="Japanese"
  7481. package="9"
  7482. />
  7483. <otaLanguage
  7484. id="0"
  7485. name="Finnish"
  7486. package="10"
  7487. />
  7488. <otaLanguage
  7489. id="0"
  7490. name="Polish"
  7491. package="11"
  7492. />
  7493. </otaLanguages>
  7494. <otaPackages>
  7495. <package
  7496. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7497. size="5183988"
  7498. />
  7499. <package
  7500. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7501. size="5183988"
  7502. />
  7503. <package
  7504. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7505. size="5183988"
  7506. />
  7507. <package
  7508. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7509. size="5183988"
  7510. />
  7511. <package
  7512. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7513. size="5183988"
  7514. />
  7515. <package
  7516. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7517. size="5183988"
  7518. />
  7519. <package
  7520. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7521. size="5183988"
  7522. />
  7523. <package
  7524. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7525. size="5183988"
  7526. />
  7527. <package
  7528. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7529. size="5183988"
  7530. />
  7531. <package
  7532. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7533. size="5183988"
  7534. />
  7535. <package
  7536. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7537. size="5183988"
  7538. />
  7539. <package
  7540. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7541. size="5183988"
  7542. />
  7543. </otaPackages>
  7544. </productMenu>
  7545. <productMenu id="wa"
  7546. type="0" >
  7547. </productMenu>
  7548. <productMenu id="led"
  7549. type="5" >
  7550. </productMenu>
  7551. <productMenu id="led+"
  7552. type="2"
  7553. url="1" >
  7554. </productMenu>
  7555. <productMenu id="meshIntercom+"
  7556. type="3"
  7557. url="2" >
  7558. </productMenu>
  7559. <productMenu id="waveIntercom"
  7560. type="1" >
  7561. </productMenu>
  7562. <productMenu id="fmradio"
  7563. type="0" >
  7564. </productMenu>
  7565. <productMenu id="phone"
  7566. type="1" >
  7567. </productMenu>
  7568. <productMenu id="music"
  7569. type="1" >
  7570. </productMenu>
  7571. <productMenu id="musicSharing"
  7572. type="0" >
  7573. </productMenu>
  7574. <productMenu id="deviceSetting"
  7575. type="1"
  7576. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" >
  7577. <productMenuURL version="1.0.10"
  7578. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7579. />
  7580. <productMenuURL version="1.0.4"
  7581. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7582. />
  7583. </productMenu>
  7584. <productMenu id="quickGuide"
  7585. type="0"
  7586. url=""
  7587. size="1.12MB" >
  7588. </productMenu>
  7589. <productMenu id="userGuide"
  7590. type="1"
  7591. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7592. size="2.0MB" >
  7593. </productMenu>
  7594. <productMenu id="videoGuide"
  7595. type="0"
  7596. url=""
  7597. size="3.41MB" >
  7598. </productMenu>
  7599. <productMenu id="connectGuide"
  7600. type="1"
  7601. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7602. size="1.12MB" >
  7603. </productMenu>
  7604. <productMenu id="volume"
  7605. type="16" >
  7606. </productMenu>
  7607. <productMenu id="volume+"
  7608. type="2"
  7609. url="0x6004" >
  7610. </productMenu>
  7611. <productMenu id="battery"
  7612. type="1" >
  7613. </productMenu>
  7614. <productID id="6A11"
  7615. />
  7616. <productGroupable type="0"
  7617. />
  7618. </product>
  7619. <product id="SPECTER"
  7620. name="SPECTER"
  7621. series="Helmet"
  7622. latestVersion="1.0.9"
  7623. latestVersionVoicePrompt="1.7"
  7624. show = "-1" >
  7625. <productMenu id="protocol"
  7626. type="2" >
  7627. </productMenu>
  7628. <productMenu id="ota"
  7629. type="2" >
  7630. <otaLanguages>
  7631. <otaLanguage
  7632. id="0"
  7633. name="English"
  7634. package="0"
  7635. />
  7636. <otaLanguage
  7637. id="0"
  7638. name="French"
  7639. package="1"
  7640. />
  7641. <otaLanguage
  7642. id="0"
  7643. name="Spanish"
  7644. package="2"
  7645. />
  7646. <otaLanguage
  7647. id="0"
  7648. name="Italian"
  7649. package="3"
  7650. />
  7651. <otaLanguage
  7652. id="0"
  7653. name="German"
  7654. package="4"
  7655. />
  7656. <otaLanguage
  7657. id="0"
  7658. name="Dutch"
  7659. package="5"
  7660. />
  7661. <otaLanguage
  7662. id="0"
  7663. name="Russian"
  7664. package="6"
  7665. />
  7666. <otaLanguage
  7667. id="0"
  7668. name="Chinese"
  7669. package="7"
  7670. />
  7671. <otaLanguage
  7672. id="0"
  7673. name="Korean"
  7674. package="8"
  7675. />
  7676. <otaLanguage
  7677. id="0"
  7678. name="Japanese"
  7679. package="9"
  7680. />
  7681. <otaLanguage
  7682. id="0"
  7683. name="Finnish"
  7684. package="10"
  7685. />
  7686. <otaLanguage
  7687. id="0"
  7688. name="Polish"
  7689. package="11"
  7690. />
  7691. </otaLanguages>
  7692. <otaPackages>
  7693. <package
  7694. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7695. size="5183988"
  7696. />
  7697. <package
  7698. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7699. size="5183988"
  7700. />
  7701. <package
  7702. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7703. size="5183988"
  7704. />
  7705. <package
  7706. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7707. size="5183988"
  7708. />
  7709. <package
  7710. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7711. size="5183988"
  7712. />
  7713. <package
  7714. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7715. size="5183988"
  7716. />
  7717. <package
  7718. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7719. size="5183988"
  7720. />
  7721. <package
  7722. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7723. size="5183988"
  7724. />
  7725. <package
  7726. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7727. size="5183988"
  7728. />
  7729. <package
  7730. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7731. size="5183988"
  7732. />
  7733. <package
  7734. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7735. size="5183988"
  7736. />
  7737. <package
  7738. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7739. size="5183988"
  7740. />
  7741. </otaPackages>
  7742. </productMenu>
  7743. <productMenu id="wa"
  7744. type="0" >
  7745. </productMenu>
  7746. <productMenu id="led"
  7747. type="5" >
  7748. </productMenu>
  7749. <productMenu id="led+"
  7750. type="2"
  7751. url="1" >
  7752. </productMenu>
  7753. <productMenu id="meshIntercom+"
  7754. type="3"
  7755. url="2" >
  7756. </productMenu>
  7757. <productMenu id="waveIntercom"
  7758. type="1" >
  7759. </productMenu>
  7760. <productMenu id="fmradio"
  7761. type="0" >
  7762. </productMenu>
  7763. <productMenu id="phone"
  7764. type="1" >
  7765. </productMenu>
  7766. <productMenu id="music"
  7767. type="1" >
  7768. </productMenu>
  7769. <productMenu id="musicSharing"
  7770. type="0" >
  7771. </productMenu>
  7772. <productMenu id="deviceSetting"
  7773. type="1"
  7774. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_02.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7775. <productMenuURL version="1.0.10"
  7776. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml"
  7777. />
  7778. <productMenuURL version="1.0.4"
  7779. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7780. />
  7781. <productMenuURL version="1.0"
  7782. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7783. />
  7784. </productMenu>
  7785. <productMenu id="quickGuide"
  7786. type="0"
  7787. url=""
  7788. size="1.12MB" >
  7789. </productMenu>
  7790. <productMenu id="userGuide"
  7791. type="1"
  7792. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7793. size="2.0MB" >
  7794. </productMenu>
  7795. <productMenu id="videoGuide"
  7796. type="0"
  7797. url=""
  7798. size="3.41MB" >
  7799. </productMenu>
  7800. <productMenu id="connectGuide"
  7801. type="1"
  7802. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_specter.json"
  7803. size="1.12MB" >
  7804. </productMenu>
  7805. <productMenu id="volume"
  7806. type="16" >
  7807. </productMenu>
  7808. <productMenu id="volume+"
  7809. type="2"
  7810. url="0x6004" >
  7811. </productMenu>
  7812. <productMenu id="battery"
  7813. type="1" >
  7814. </productMenu>
  7815. <productID id="6A0A"
  7816. />
  7817. <productGroupable type="0"
  7818. />
  7819. </product>
  7820. <product id="OUTLANDER"
  7821. name="OUTLANDER"
  7822. series="Helmet"
  7823. latestVersion="1.0.9"
  7824. latestVersionVoicePrompt="1.7"
  7825. show = "1" >
  7826. <productMenu id="protocol"
  7827. type="2" >
  7828. </productMenu>
  7829. <productMenu id="ota"
  7830. type="2" >
  7831. <otaLanguages>
  7832. <otaLanguage
  7833. id="0"
  7834. name="English"
  7835. package="0"
  7836. />
  7837. <otaLanguage
  7838. id="0"
  7839. name="French"
  7840. package="1"
  7841. />
  7842. <otaLanguage
  7843. id="0"
  7844. name="Spanish"
  7845. package="2"
  7846. />
  7847. <otaLanguage
  7848. id="0"
  7849. name="Italian"
  7850. package="3"
  7851. />
  7852. <otaLanguage
  7853. id="0"
  7854. name="German"
  7855. package="4"
  7856. />
  7857. <otaLanguage
  7858. id="0"
  7859. name="Dutch"
  7860. package="5"
  7861. />
  7862. <otaLanguage
  7863. id="0"
  7864. name="Russian"
  7865. package="6"
  7866. />
  7867. <otaLanguage
  7868. id="0"
  7869. name="Chinese"
  7870. package="7"
  7871. />
  7872. <otaLanguage
  7873. id="0"
  7874. name="Korean"
  7875. package="8"
  7876. />
  7877. <otaLanguage
  7878. id="0"
  7879. name="Japanese"
  7880. package="9"
  7881. />
  7882. <otaLanguage
  7883. id="0"
  7884. name="Finnish"
  7885. package="10"
  7886. />
  7887. <otaLanguage
  7888. id="0"
  7889. name="Polish"
  7890. package="11"
  7891. />
  7892. </otaLanguages>
  7893. <otaPackages>
  7894. <package
  7895. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7896. size="5183988"
  7897. />
  7898. <package
  7899. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7900. size="5183988"
  7901. />
  7902. <package
  7903. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7904. size="5183988"
  7905. />
  7906. <package
  7907. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7908. size="5183988"
  7909. />
  7910. <package
  7911. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7912. size="5183988"
  7913. />
  7914. <package
  7915. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7916. size="5183988"
  7917. />
  7918. <package
  7919. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7920. size="5183988"
  7921. />
  7922. <package
  7923. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7924. size="5183988"
  7925. />
  7926. <package
  7927. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7928. size="5183988"
  7929. />
  7930. <package
  7931. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7932. size="5183988"
  7933. />
  7934. <package
  7935. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7936. size="5183988"
  7937. />
  7938. <package
  7939. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7940. size="5183988"
  7941. />
  7942. </otaPackages>
  7943. </productMenu>
  7944. <productMenu id="wa"
  7945. type="0" >
  7946. </productMenu>
  7947. <productMenu id="led"
  7948. type="5" >
  7949. </productMenu>
  7950. <productMenu id="led+"
  7951. type="2"
  7952. url="1" >
  7953. </productMenu>
  7954. <productMenu id="meshIntercom+"
  7955. type="3"
  7956. url="2" >
  7957. </productMenu>
  7958. <productMenu id="waveIntercom"
  7959. type="1" >
  7960. </productMenu>
  7961. <productMenu id="fmradio"
  7962. type="0" >
  7963. </productMenu>
  7964. <productMenu id="phone"
  7965. type="1" >
  7966. </productMenu>
  7967. <productMenu id="music"
  7968. type="1" >
  7969. </productMenu>
  7970. <productMenu id="musicSharing"
  7971. type="0" >
  7972. </productMenu>
  7973. <productMenu id="deviceSetting"
  7974. type="1"
  7975. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_06.xml" >
  7976. <productMenuURL version="1.0.10"
  7977. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml"
  7978. />
  7979. <productMenuURL version="1.0.4"
  7980. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7981. />
  7982. </productMenu>
  7983. <productMenu id="quickGuide"
  7984. type="0"
  7985. url=""
  7986. size="1.12MB" >
  7987. </productMenu>
  7988. <productMenu id="userGuide"
  7989. type="1"
  7990. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7991. size="2.0MB" >
  7992. </productMenu>
  7993. <productMenu id="connectGuide"
  7994. type="1"
  7995. url="https://api.sena.com/support/ConnectGuide/joymulti_joy5_init_outlander.json"
  7996. size="1.12MB" >
  7997. </productMenu>
  7998. <productMenu id="videoGuide"
  7999. type="0"
  8000. url=""
  8001. size="3.41MB" >
  8002. </productMenu>
  8003. <productMenu id="volume"
  8004. type="16" >
  8005. </productMenu>
  8006. <productMenu id="volume+"
  8007. type="2"
  8008. url="0x6004" >
  8009. </productMenu>
  8010. <productMenu id="battery"
  8011. type="1" >
  8012. </productMenu>
  8013. <productID id="6A05"
  8014. />
  8015. <productGroupable type="0"
  8016. />
  8017. </product>
  8018. <product id="OUTRUSH2"
  8019. name="OUTRUSH 2"
  8020. series="Helmet"
  8021. latestVersion="1.0.3"
  8022. latestVersionVoicePrompt="1.6"
  8023. show = "1" >
  8024. <productMenu id="protocol"
  8025. type="2" >
  8026. </productMenu>
  8027. <productMenu id="alexa"
  8028. type="0" >
  8029. </productMenu>
  8030. <productMenu id="ota"
  8031. type="2" >
  8032. <otaPackages>
  8033. <package
  8034. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  8035. size="2945812"
  8036. />
  8037. </otaPackages>
  8038. </productMenu>
  8039. <productMenu id="meshIntercom+"
  8040. type="3"
  8041. url="2" >
  8042. </productMenu>
  8043. <productMenu id="waveIntercom"
  8044. type="1" >
  8045. </productMenu>
  8046. <productMenu id="phone"
  8047. type="1" >
  8048. </productMenu>
  8049. <productMenu id="music"
  8050. type="1" >
  8051. </productMenu>
  8052. <productMenu id="musicSharing"
  8053. type="0" >
  8054. </productMenu>
  8055. <productMenu id="deviceSetting"
  8056. type="1"
  8057. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8058. <productMenuURL version="1.0"
  8059. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  8060. />
  8061. </productMenu>
  8062. <productMenu id="quickGuide"
  8063. type="0"
  8064. url=""
  8065. size="1.12MB" >
  8066. </productMenu>
  8067. <productMenu id="userGuide"
  8068. type="1"
  8069. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  8070. size="2.0MB" >
  8071. </productMenu>
  8072. <productMenu id="connectGuide"
  8073. type="1"
  8074. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  8075. size="1.12MB" >
  8076. </productMenu>
  8077. <productMenu id="volume"
  8078. type="12" >
  8079. </productMenu>
  8080. <productMenu id="battery"
  8081. type="1" >
  8082. </productMenu>
  8083. <productID id="684A"
  8084. />
  8085. <productGroupable type="0"
  8086. />
  8087. </product>
  8088. <product id="OUTSTAR2"
  8089. name="OUTSTAR 2"
  8090. series="Helmet"
  8091. latestVersion="1.0.2"
  8092. latestVersionVoicePrompt="1.6"
  8093. show = "1" >
  8094. <productMenu id="protocol"
  8095. type="2" >
  8096. </productMenu>
  8097. <productMenu id="alexa"
  8098. type="0" >
  8099. </productMenu>
  8100. <productMenu id="ota"
  8101. type="2" >
  8102. <otaPackages>
  8103. <package
  8104. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  8105. size="2945812"
  8106. />
  8107. </otaPackages>
  8108. </productMenu>
  8109. <productMenu id="meshIntercom+"
  8110. type="3"
  8111. url="2" >
  8112. </productMenu>
  8113. <productMenu id="waveIntercom"
  8114. type="1" >
  8115. </productMenu>
  8116. <productMenu id="phone"
  8117. type="1" >
  8118. </productMenu>
  8119. <productMenu id="music"
  8120. type="1" >
  8121. </productMenu>
  8122. <productMenu id="musicSharing"
  8123. type="0" >
  8124. </productMenu>
  8125. <productMenu id="deviceSetting"
  8126. type="1"
  8127. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8128. </productMenu>
  8129. <productMenu id="quickGuide"
  8130. type="0"
  8131. url=""
  8132. size="1.12MB" >
  8133. </productMenu>
  8134. <productMenu id="userGuide"
  8135. type="1"
  8136. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8137. size="2.0MB" >
  8138. </productMenu>
  8139. <productMenu id="connectGuide"
  8140. type="1"
  8141. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8142. size="1.12MB" >
  8143. </productMenu>
  8144. <productMenu id="volume"
  8145. type="12" >
  8146. </productMenu>
  8147. <productMenu id="battery"
  8148. type="1" >
  8149. </productMenu>
  8150. <productID id="684B"
  8151. />
  8152. <productGroupable type="0"
  8153. />
  8154. </product>
  8155. <product id="SURGE"
  8156. name="SURGE"
  8157. series="Helmet"
  8158. latestVersion="1.2"
  8159. latestVersionVoicePrompt="1.3"
  8160. show = "1" >
  8161. <productMenu id="protocol"
  8162. type="2" >
  8163. </productMenu>
  8164. <productMenu id="alexa"
  8165. type="0" >
  8166. </productMenu>
  8167. <productMenu id="ota"
  8168. type="2" >
  8169. <otaPackages>
  8170. <package
  8171. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8172. size="2945812"
  8173. />
  8174. </otaPackages>
  8175. </productMenu>
  8176. <productMenu id="meshIntercom"
  8177. type="30" >
  8178. </productMenu>
  8179. <productMenu id="meshIntercom+"
  8180. type="3"
  8181. url="2" >
  8182. <productMenuType version="1.0.1"
  8183. type="2"
  8184. />
  8185. </productMenu>
  8186. <productMenu id="waveIntercom"
  8187. type="1" >
  8188. <productMenuType version="1.0.9"
  8189. type="0"
  8190. />
  8191. </productMenu>
  8192. <productMenu id="phone"
  8193. type="1" >
  8194. </productMenu>
  8195. <productMenu id="music"
  8196. type="1" >
  8197. </productMenu>
  8198. <productMenu id="musicSharing"
  8199. type="0" >
  8200. </productMenu>
  8201. <productMenu id="deviceSetting"
  8202. type="1"
  8203. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8204. <productMenuURL version="1.1.9"
  8205. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8206. />
  8207. <productMenuURL version="1.0.1"
  8208. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8209. />
  8210. </productMenu>
  8211. <productMenu id="quickGuide"
  8212. type="0"
  8213. url=""
  8214. size="1.12MB" >
  8215. </productMenu>
  8216. <productMenu id="userGuide"
  8217. type="1"
  8218. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8219. size="2.0MB" >
  8220. </productMenu>
  8221. <productMenu id="volume"
  8222. type="12" >
  8223. </productMenu>
  8224. <productMenu id="battery"
  8225. type="1" >
  8226. </productMenu>
  8227. <productID id="6840"
  8228. />
  8229. <productGroupable type="0"
  8230. />
  8231. </product>
  8232. <product id="Cavalry2"
  8233. name="Cavalry 2"
  8234. series="Helmet"
  8235. latestVersion="1.2"
  8236. latestVersionVoicePrompt="1.3"
  8237. show = "1" >
  8238. <productMenu id="protocol"
  8239. type="2" >
  8240. </productMenu>
  8241. <productMenu id="alexa"
  8242. type="0" >
  8243. </productMenu>
  8244. <productMenu id="ota"
  8245. type="2" >
  8246. <otaPackages>
  8247. <package
  8248. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8249. size="3144148"
  8250. />
  8251. </otaPackages>
  8252. </productMenu>
  8253. <productMenu id="wa"
  8254. type="0" >
  8255. </productMenu>
  8256. <productMenu id="meshIntercom"
  8257. type="30" >
  8258. </productMenu>
  8259. <productMenu id="meshIntercom+"
  8260. type="3"
  8261. url="2" >
  8262. <productMenuType version="1.0"
  8263. type="2"
  8264. />
  8265. </productMenu>
  8266. <productMenu id="waveIntercom"
  8267. type="1" >
  8268. <productMenuType version="1.0.9"
  8269. type="0"
  8270. />
  8271. </productMenu>
  8272. <productMenu id="phone"
  8273. type="1" >
  8274. </productMenu>
  8275. <productMenu id="music"
  8276. type="1" >
  8277. </productMenu>
  8278. <productMenu id="musicSharing"
  8279. type="0" >
  8280. </productMenu>
  8281. <productMenu id="deviceSetting"
  8282. type="1"
  8283. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8284. <productMenuURL version="1.1.9"
  8285. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8286. />
  8287. <productMenuURL version="1.0"
  8288. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8289. />
  8290. </productMenu>
  8291. <productMenu id="quickGuide"
  8292. type="0"
  8293. url=""
  8294. size="1.12MB" >
  8295. </productMenu>
  8296. <productMenu id="userGuide"
  8297. type="1"
  8298. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8299. size="2.0MB" >
  8300. </productMenu>
  8301. <productMenu id="connectGuide"
  8302. type="1"
  8303. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8304. size="1.12MB" >
  8305. </productMenu>
  8306. <productMenu id="volume"
  8307. type="12" >
  8308. </productMenu>
  8309. <productMenu id="battery"
  8310. type="1" >
  8311. </productMenu>
  8312. <productID id="6839"
  8313. />
  8314. <productGroupable type="0"
  8315. />
  8316. </product>
  8317. <product id="Cavalry"
  8318. name="Cavalry"
  8319. series="Helmet"
  8320. latestVersion="1.2.2"
  8321. show = "1" >
  8322. <productMenu id="protocol"
  8323. type="0">
  8324. </productMenu>
  8325. <productMenu id="sip"
  8326. type="1" >
  8327. </productMenu>
  8328. <productMenu id="bluetoothIntercom"
  8329. type="1" >
  8330. </productMenu>
  8331. <productMenu id="phone"
  8332. type="2" >
  8333. </productMenu>
  8334. <productMenu id="fmradio"
  8335. type="3" >
  8336. </productMenu>
  8337. <productMenu id="deviceSetting"
  8338. type="1"
  8339. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8340. <productMenuURL version="1.9"
  8341. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8342. />
  8343. <productMenuURL version="1.0.1"
  8344. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8345. />
  8346. </productMenu>
  8347. <productMenu id="quickGuide"
  8348. type="1"
  8349. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8350. size="795KB" >
  8351. </productMenu>
  8352. <productMenu id="userGuide"
  8353. type="1"
  8354. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8355. size="1.87MB" >
  8356. </productMenu>
  8357. <productMenu id="connectGuide"
  8358. type="1"
  8359. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8360. size="1.12MB" >
  8361. </productMenu>
  8362. <productID id="5524"
  8363. />
  8364. <productGroupable type="0"
  8365. />
  8366. </product>
  8367. <product id="Cavalry_Lite"
  8368. name="Cavalry Lite"
  8369. series="Helmet"
  8370. latestVersion="1.0.2"
  8371. show = "1" >
  8372. <productMenu id="protocol"
  8373. type="0">
  8374. </productMenu>
  8375. <productMenu id="sip"
  8376. type="1" >
  8377. </productMenu>
  8378. <productMenu id="bluetoothIntercom"
  8379. type="1" >
  8380. </productMenu>
  8381. <productMenu id="phone"
  8382. type="2" >
  8383. </productMenu>
  8384. <productMenu id="fmradio"
  8385. type="3" >
  8386. </productMenu>
  8387. <productMenu id="deviceSetting"
  8388. type="1"
  8389. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8390. </productMenu>
  8391. <productMenu id="userGuide"
  8392. type="1"
  8393. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8394. size="1.74MB" >
  8395. </productMenu>
  8396. <productMenu id="connectGuide"
  8397. type="1"
  8398. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8399. size="1.12MB" >
  8400. </productMenu>
  8401. <productID id="5536"
  8402. />
  8403. <productGroupable type="0"
  8404. />
  8405. </product>
  8406. <product id="VORTEX"
  8407. name="VORTEX"
  8408. series="VORTEX"
  8409. latestVersion="1.0.2"
  8410. latestVersionVoicePrompt="1.0"
  8411. show = "1" >
  8412. <productMenu id="protocol"
  8413. type="2" >
  8414. </productMenu>
  8415. <productMenu id="warranty"
  8416. type="1" >
  8417. </productMenu>
  8418. <productMenu id="serialNumber"
  8419. type="1" >
  8420. </productMenu>
  8421. <productMenu id="ota"
  8422. type="2" >
  8423. <otaLanguages>
  8424. <otaLanguage
  8425. id="0"
  8426. name="English"
  8427. package="0"
  8428. />
  8429. <otaLanguage
  8430. id="0"
  8431. name="French"
  8432. package="1"
  8433. />
  8434. <otaLanguage
  8435. id="0"
  8436. name="Spanish"
  8437. package="2"
  8438. />
  8439. <otaLanguage
  8440. id="0"
  8441. name="Italian"
  8442. package="3"
  8443. />
  8444. <otaLanguage
  8445. id="0"
  8446. name="German"
  8447. package="4"
  8448. />
  8449. <otaLanguage
  8450. id="0"
  8451. name="Dutch"
  8452. package="5"
  8453. />
  8454. <otaLanguage
  8455. id="0"
  8456. name="Russian"
  8457. package="6"
  8458. />
  8459. <otaLanguage
  8460. id="0"
  8461. name="Chinese"
  8462. package="7"
  8463. />
  8464. <otaLanguage
  8465. id="0"
  8466. name="Korean"
  8467. package="8"
  8468. />
  8469. <otaLanguage
  8470. id="0"
  8471. name="Japanese"
  8472. package="9"
  8473. />
  8474. <otaLanguage
  8475. id="0"
  8476. name="Finnish"
  8477. package="10"
  8478. />
  8479. <otaLanguage
  8480. id="0"
  8481. name="Polish"
  8482. package="11"
  8483. />
  8484. </otaLanguages>
  8485. <otaPackages>
  8486. <package
  8487. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8488. size="5183988"
  8489. />
  8490. <package
  8491. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8492. size="5183988"
  8493. />
  8494. <package
  8495. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8496. size="5183988"
  8497. />
  8498. <package
  8499. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8500. size="5183988"
  8501. />
  8502. <package
  8503. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8504. size="5183988"
  8505. />
  8506. <package
  8507. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8508. size="5183988"
  8509. />
  8510. <package
  8511. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8512. size="5183988"
  8513. />
  8514. <package
  8515. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8516. size="5183988"
  8517. />
  8518. <package
  8519. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8520. size="5183988"
  8521. />
  8522. <package
  8523. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8524. size="5183988"
  8525. />
  8526. <package
  8527. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8528. size="5183988"
  8529. />
  8530. <package
  8531. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8532. size="5183988"
  8533. />
  8534. </otaPackages>
  8535. </productMenu>
  8536. <productMenu id="sip"
  8537. type="1" >
  8538. </productMenu>
  8539. <productMenu id="bluetoothIntercom"
  8540. type="1" >
  8541. </productMenu>
  8542. <productMenu id="phone"
  8543. type="1" >
  8544. </productMenu>
  8545. <productMenu id="music"
  8546. type="1" >
  8547. </productMenu>
  8548. <productMenu id="fmradio"
  8549. type="1"
  8550. url="1" >
  8551. </productMenu>
  8552. <productMenu id="deviceSetting"
  8553. type="1"
  8554. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8555. </productMenu>
  8556. <productMenu id="quickGuide"
  8557. type="0"
  8558. url=""
  8559. size="934KB" >
  8560. </productMenu>
  8561. <productMenu id="userGuide"
  8562. type="1"
  8563. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.1_en_260824.pdf"
  8564. size="1.14MB" >
  8565. </productMenu>
  8566. <productMenu id="connectGuide"
  8567. type="1"
  8568. url="https://api.sena.com/support/ConnectGuide/multiphone_phone5_init_vortex.json"
  8569. size="1.12MB" >
  8570. </productMenu>
  8571. <productMenu id="volume"
  8572. type="15" >
  8573. </productMenu>
  8574. <productMenu id="volume+"
  8575. type="2"
  8576. url="0x0018" >
  8577. </productMenu>
  8578. <productMenu id="appearance"
  8579. type="1"
  8580. url="1|white,silver,black" >
  8581. </productMenu>
  8582. <productID id="3451"
  8583. />
  8584. <productGroupable type="0"
  8585. />
  8586. </product>
  8587. <product id="SF4"
  8588. name="SF4"
  8589. series="SF"
  8590. latestVersion="1.1.5"
  8591. show = "-1" >
  8592. <productMenu id="protocol"
  8593. type="1"
  8594. url="3">
  8595. </productMenu>
  8596. <productMenu id="sip"
  8597. type="1" >
  8598. </productMenu>
  8599. <productMenu id="bluetoothIntercom"
  8600. type="1" >
  8601. </productMenu>
  8602. <productMenu id="phone"
  8603. type="1" >
  8604. </productMenu>
  8605. <productMenu id="music"
  8606. type="1" >
  8607. </productMenu>
  8608. <productMenu id="fmradio"
  8609. type="1" >
  8610. </productMenu>
  8611. <productMenu id="deviceSetting"
  8612. type="1"
  8613. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8614. <productMenuURL version="1.0.1"
  8615. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8616. />
  8617. </productMenu>
  8618. <productMenu id="quickGuide"
  8619. type="1"
  8620. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8621. size="607KB" >
  8622. </productMenu>
  8623. <productMenu id="userGuide"
  8624. type="1"
  8625. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8626. size="1.91MB" >
  8627. </productMenu>
  8628. <productMenu id="volume"
  8629. type="4" >
  8630. </productMenu>
  8631. <productID id="5414"
  8632. />
  8633. <productGroupable type="0"
  8634. />
  8635. </product>
  8636. <product id="SF4"
  8637. name="SF4"
  8638. series="SF"
  8639. latestVersion="3.4.4"
  8640. show = "1" >
  8641. <productMenu id="protocol"
  8642. type="2" >
  8643. </productMenu>
  8644. <productMenu id="sip"
  8645. type="1" >
  8646. </productMenu>
  8647. <productMenu id="bluetoothIntercom"
  8648. type="1" >
  8649. </productMenu>
  8650. <productMenu id="phone"
  8651. type="1" >
  8652. </productMenu>
  8653. <productMenu id="music"
  8654. type="1" >
  8655. </productMenu>
  8656. <productMenu id="fmradio"
  8657. type="1" >
  8658. </productMenu>
  8659. <productMenu id="deviceSetting"
  8660. type="1"
  8661. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8662. <productMenuURL version="3.0"
  8663. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8664. />
  8665. </productMenu>
  8666. <productMenu id="quickGuide"
  8667. type="0"
  8668. url=""
  8669. size="934KB" >
  8670. </productMenu>
  8671. <productMenu id="userGuide"
  8672. type="1"
  8673. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8674. size="1.14MB" >
  8675. </productMenu>
  8676. <productMenu id="connectGuide"
  8677. type="1"
  8678. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8679. size="1.12MB" >
  8680. </productMenu>
  8681. <productMenu id="volume"
  8682. type="15" >
  8683. </productMenu>
  8684. <productID id="3370"
  8685. />
  8686. <productGroupable type="0"
  8687. />
  8688. </product>
  8689. <product id="SF2"
  8690. name="SF2"
  8691. series="SF"
  8692. latestVersion="1.2.1"
  8693. show = "-1" >
  8694. <productMenu id="protocol"
  8695. type="1"
  8696. url="2">
  8697. </productMenu>
  8698. <productMenu id="sip"
  8699. type="1" >
  8700. </productMenu>
  8701. <productMenu id="bluetoothIntercom"
  8702. type="1" >
  8703. </productMenu>
  8704. <productMenu id="phone"
  8705. type="1" >
  8706. </productMenu>
  8707. <productMenu id="music"
  8708. type="1" >
  8709. </productMenu>
  8710. <productMenu id="fmradio"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="deviceSetting"
  8714. type="1"
  8715. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8716. <productMenuURL version="1.0.1"
  8717. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8718. />
  8719. </productMenu>
  8720. <productMenu id="quickGuide"
  8721. type="1"
  8722. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8723. size="607KB" >
  8724. </productMenu>
  8725. <productMenu id="userGuide"
  8726. type="1"
  8727. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8728. size="1.91MB" >
  8729. </productMenu>
  8730. <productMenu id="volume"
  8731. type="4" >
  8732. </productMenu>
  8733. <productID id="5412"
  8734. />
  8735. <productGroupable type="0"
  8736. />
  8737. </product>
  8738. <product id="SF2"
  8739. name="SF2"
  8740. series="SF"
  8741. latestVersion="3.3.4"
  8742. show = "1" >
  8743. <productMenu id="protocol"
  8744. type="2" >
  8745. </productMenu>
  8746. <productMenu id="sip"
  8747. type="1" >
  8748. </productMenu>
  8749. <productMenu id="bluetoothIntercom"
  8750. type="1" >
  8751. </productMenu>
  8752. <productMenu id="phone"
  8753. type="1" >
  8754. </productMenu>
  8755. <productMenu id="music"
  8756. type="1" >
  8757. </productMenu>
  8758. <productMenu id="fmradio"
  8759. type="0" >
  8760. </productMenu>
  8761. <productMenu id="deviceSetting"
  8762. type="1"
  8763. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8764. <productMenuURL version="3.0"
  8765. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8766. />
  8767. </productMenu>
  8768. <productMenu id="quickGuide"
  8769. type="0"
  8770. url=""
  8771. size="934KB" >
  8772. </productMenu>
  8773. <productMenu id="userGuide"
  8774. type="1"
  8775. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8776. size="1.14MB" >
  8777. </productMenu>
  8778. <productMenu id="connectGuide"
  8779. type="1"
  8780. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8781. size="1.12MB" >
  8782. </productMenu>
  8783. <productMenu id="volume"
  8784. type="15" >
  8785. </productMenu>
  8786. <productID id="3360"
  8787. />
  8788. <productGroupable type="0"
  8789. />
  8790. </product>
  8791. <product id="SF1"
  8792. name="SF1"
  8793. series="SF"
  8794. latestVersion="2.0.5"
  8795. show = "-1" >
  8796. <productMenu id="protocol"
  8797. type="1"
  8798. url="1">
  8799. </productMenu>
  8800. <productMenu id="sip"
  8801. type="1" >
  8802. </productMenu>
  8803. <productMenu id="bluetoothIntercom"
  8804. type="1" >
  8805. <productMenuType version="1.1"
  8806. type="0"
  8807. />
  8808. </productMenu>
  8809. <productMenu id="phone"
  8810. type="1" >
  8811. </productMenu>
  8812. <productMenu id="music"
  8813. type="1" >
  8814. </productMenu>
  8815. <productMenu id="deviceSetting"
  8816. type="1"
  8817. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8818. <productMenuURL version="1.1"
  8819. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8820. />
  8821. <productMenuURL version="1.0"
  8822. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8823. />
  8824. </productMenu>
  8825. <productMenu id="quickGuide"
  8826. type="1"
  8827. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8828. size="401KB" >
  8829. </productMenu>
  8830. <productMenu id="userGuide"
  8831. type="1"
  8832. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8833. size="1.91MB" >
  8834. </productMenu>
  8835. <productMenu id="volume"
  8836. type="3" >
  8837. </productMenu>
  8838. <productID id="5410"
  8839. />
  8840. <productGroupable type="0"
  8841. />
  8842. </product>
  8843. <product id="SF1"
  8844. name="SF1"
  8845. series="SF"
  8846. latestVersion="3.3.4"
  8847. show = "1" >
  8848. <productMenu id="protocol"
  8849. type="2" >
  8850. </productMenu>
  8851. <productMenu id="sip"
  8852. type="1" >
  8853. </productMenu>
  8854. <productMenu id="bluetoothIntercom"
  8855. type="1" >
  8856. </productMenu>
  8857. <productMenu id="phone"
  8858. type="1" >
  8859. </productMenu>
  8860. <productMenu id="music"
  8861. type="1" >
  8862. </productMenu>
  8863. <productMenu id="fmradio"
  8864. type="0" >
  8865. </productMenu>
  8866. <productMenu id="deviceSetting"
  8867. type="1"
  8868. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8869. <productMenuURL version="3.0"
  8870. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8871. />
  8872. </productMenu>
  8873. <productMenu id="quickGuide"
  8874. type="0"
  8875. url=""
  8876. size="934KB" >
  8877. </productMenu>
  8878. <productMenu id="userGuide"
  8879. type="1"
  8880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8881. size="1.14MB" >
  8882. </productMenu>
  8883. <productMenu id="connectGuide"
  8884. type="1"
  8885. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8886. size="1.12MB" >
  8887. </productMenu>
  8888. <productMenu id="volume"
  8889. type="15" >
  8890. </productMenu>
  8891. <productID id="3350"
  8892. />
  8893. <productGroupable type="0"
  8894. />
  8895. </product>
  8896. <product id="SFR"
  8897. name="SFR"
  8898. series="SF"
  8899. latestVersion="1.1.1"
  8900. show = "1" >
  8901. <productMenu id="protocol"
  8902. type="1"
  8903. url="3">
  8904. </productMenu>
  8905. <productMenu id="sip"
  8906. type="1" >
  8907. </productMenu>
  8908. <productMenu id="bluetoothIntercom"
  8909. type="1" >
  8910. </productMenu>
  8911. <productMenu id="phone"
  8912. type="1" >
  8913. </productMenu>
  8914. <productMenu id="music"
  8915. type="1" >
  8916. </productMenu>
  8917. <productMenu id="fmradio"
  8918. type="1" >
  8919. </productMenu>
  8920. <productMenu id="deviceSetting"
  8921. type="1"
  8922. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8923. </productMenu>
  8924. <productMenu id="quickGuide"
  8925. type="1"
  8926. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8927. size="607KB" >
  8928. </productMenu>
  8929. <productMenu id="userGuide"
  8930. type="1"
  8931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8932. size="1.91MB" >
  8933. </productMenu>
  8934. <productMenu id="volume"
  8935. type="4" >
  8936. </productMenu>
  8937. <productID id="5418"
  8938. />
  8939. <productGroupable type="0"
  8940. />
  8941. </product>
  8942. <product id="20S"
  8943. name="20S"
  8944. series="20"
  8945. latestVersion="2.2.3"
  8946. show = "1" >
  8947. <productMenu id="protocol"
  8948. type="0">
  8949. </productMenu>
  8950. <productMenu id="wa"
  8951. type="5" >
  8952. </productMenu>
  8953. <productMenu id="sip"
  8954. type="1" >
  8955. <productMenuType version="1.0"
  8956. type="0"
  8957. />
  8958. </productMenu>
  8959. <productMenu id="bluetoothIntercom"
  8960. type="1" >
  8961. <productMenuType version="1.0"
  8962. type="0"
  8963. />
  8964. </productMenu>
  8965. <productMenu id="intercomSetting"
  8966. type="1" >
  8967. </productMenu>
  8968. <productMenu id="phone"
  8969. type="2" >
  8970. </productMenu>
  8971. <productMenu id="fmradio"
  8972. type="3" >
  8973. </productMenu>
  8974. <productMenu id="deviceSetting"
  8975. type="1"
  8976. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8977. <productMenuURL version="2.0.2"
  8978. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8979. />
  8980. <productMenuURL version="1.5"
  8981. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8982. />
  8983. <productMenuURL version="1.4.1"
  8984. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8985. />
  8986. <productMenuURL version="1.1"
  8987. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8988. />
  8989. <productMenuURL version="1.0"
  8990. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8991. />
  8992. </productMenu>
  8993. <productMenu id="quickGuide"
  8994. type="0"
  8995. url=""
  8996. size="264KB" >
  8997. </productMenu>
  8998. <productMenu id="userGuide"
  8999. type="1"
  9000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9001. size="3.09MB" >
  9002. </productMenu>
  9003. <productMenu id="connectGuide"
  9004. type="1"
  9005. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9006. size="1.12MB" >
  9007. </productMenu>
  9008. <productID id="4210"
  9009. />
  9010. <productGroupable type="1"
  9011. />
  9012. </product>
  9013. <product id="20S_EVO"
  9014. name="20S EVO"
  9015. series="20"
  9016. latestVersion="2.2.3"
  9017. show = "1" >
  9018. <productMenu id="protocol"
  9019. type="0">
  9020. </productMenu>
  9021. <productMenu id="wa"
  9022. type="5" >
  9023. </productMenu>
  9024. <productMenu id="sip"
  9025. type="1" >
  9026. <productMenuType version="1.0"
  9027. type="0"
  9028. />
  9029. </productMenu>
  9030. <productMenu id="bluetoothIntercom"
  9031. type="1" >
  9032. <productMenuType version="1.0"
  9033. type="0"
  9034. />
  9035. </productMenu>
  9036. <productMenu id="intercomSetting"
  9037. type="1" >
  9038. </productMenu>
  9039. <productMenu id="phone"
  9040. type="2" >
  9041. </productMenu>
  9042. <productMenu id="fmradio"
  9043. type="3" >
  9044. </productMenu>
  9045. <productMenu id="deviceSetting"
  9046. type="1"
  9047. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  9048. <productMenuURL version="2.0.2"
  9049. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  9050. />
  9051. <productMenuURL version="1.5"
  9052. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  9053. />
  9054. <productMenuURL version="1.4.1"
  9055. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  9056. />
  9057. <productMenuURL version="1.1"
  9058. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  9059. />
  9060. <productMenuURL version="1.0"
  9061. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  9062. />
  9063. </productMenu>
  9064. <productMenu id="quickGuide"
  9065. type="0"
  9066. url=""
  9067. size="264KB" >
  9068. </productMenu>
  9069. <productMenu id="userGuide"
  9070. type="1"
  9071. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  9072. size="3.09MB" >
  9073. </productMenu>
  9074. <productMenu id="connectGuide"
  9075. type="1"
  9076. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9077. size="1.12MB" >
  9078. </productMenu>
  9079. <productID id="4210"
  9080. />
  9081. <productProductKey key="16"
  9082. />
  9083. <productGroupable type="1"
  9084. />
  9085. </product>
  9086. <product id="10S"
  9087. name="10S"
  9088. series="10"
  9089. latestVersion="3.0.2"
  9090. show = "1" >
  9091. <productMenu id="protocol"
  9092. type="3" >
  9093. </productMenu>
  9094. <productMenu id="sip"
  9095. type="1" >
  9096. </productMenu>
  9097. <productMenu id="bluetoothIntercom"
  9098. type="1" >
  9099. </productMenu>
  9100. <productMenu id="phone"
  9101. type="1" >
  9102. </productMenu>
  9103. <productMenu id="deviceSetting"
  9104. type="1"
  9105. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  9106. </productMenu>
  9107. <productMenu id="quickGuide"
  9108. type="1"
  9109. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  9110. size="934KB" >
  9111. </productMenu>
  9112. <productMenu id="userGuide"
  9113. type="1"
  9114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  9115. size="1.14MB" >
  9116. </productMenu>
  9117. <productMenu id="connectGuide"
  9118. type="1"
  9119. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  9120. size="1.12MB" >
  9121. </productMenu>
  9122. <productID id="3380"
  9123. />
  9124. <productGroupable type="0"
  9125. />
  9126. </product>
  9127. <product id="10S"
  9128. name="10S"
  9129. series="10"
  9130. latestVersion="2.1.1"
  9131. show = "-1" >
  9132. <productMenu id="protocol"
  9133. type="0">
  9134. </productMenu>
  9135. <productMenu id="sip"
  9136. type="1" >
  9137. </productMenu>
  9138. <productMenu id="bluetoothIntercom"
  9139. type="1" >
  9140. </productMenu>
  9141. <productMenu id="phone"
  9142. type="2" >
  9143. </productMenu>
  9144. <productMenu id="fmradio"
  9145. type="3" >
  9146. </productMenu>
  9147. <productMenu id="deviceSetting"
  9148. type="1"
  9149. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9150. <productMenuURL version="1.5"
  9151. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9152. />
  9153. <productMenuURL version="1.3.1"
  9154. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9155. />
  9156. </productMenu>
  9157. <productMenu id="quickGuide"
  9158. type="1"
  9159. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9160. size="310KB" >
  9161. </productMenu>
  9162. <productMenu id="userGuide"
  9163. type="1"
  9164. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9165. size="1.57MB" >
  9166. </productMenu>
  9167. <productID id="5530"
  9168. />
  9169. <productGroupable type="0"
  9170. />
  9171. </product>
  9172. <product id="Apex"
  9173. name="Apex"
  9174. series="Apex"
  9175. latestVersion="1.0"
  9176. latestVersionVoicePrompt="0.2"
  9177. show = "-1" >
  9178. <productMenu id="protocol"
  9179. type="2" >
  9180. </productMenu>
  9181. <productMenu id="warranty"
  9182. type="1" >
  9183. </productMenu>
  9184. <productMenu id="serialNumber"
  9185. type="1" >
  9186. </productMenu>
  9187. <productMenu id="ota"
  9188. type="2" >
  9189. <otaLanguages>
  9190. <otaLanguage
  9191. id="0"
  9192. name="English"
  9193. package="0"
  9194. />
  9195. <otaLanguage
  9196. id="0"
  9197. name="French"
  9198. package="1"
  9199. />
  9200. <otaLanguage
  9201. id="0"
  9202. name="Spanish"
  9203. package="2"
  9204. />
  9205. <otaLanguage
  9206. id="0"
  9207. name="Italian"
  9208. package="3"
  9209. />
  9210. <otaLanguage
  9211. id="0"
  9212. name="German"
  9213. package="4"
  9214. />
  9215. <otaLanguage
  9216. id="0"
  9217. name="Dutch"
  9218. package="5"
  9219. />
  9220. <otaLanguage
  9221. id="0"
  9222. name="Russian"
  9223. package="6"
  9224. />
  9225. <otaLanguage
  9226. id="0"
  9227. name="Chinese"
  9228. package="7"
  9229. />
  9230. <otaLanguage
  9231. id="0"
  9232. name="Korean"
  9233. package="8"
  9234. />
  9235. <otaLanguage
  9236. id="0"
  9237. name="Japanese"
  9238. package="9"
  9239. />
  9240. <otaLanguage
  9241. id="0"
  9242. name="Finnish"
  9243. package="10"
  9244. />
  9245. <otaLanguage
  9246. id="0"
  9247. name="Polish"
  9248. package="11"
  9249. />
  9250. </otaLanguages>
  9251. <otaPackages>
  9252. <package
  9253. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9254. size="5183988"
  9255. />
  9256. <package
  9257. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9258. size="5183988"
  9259. />
  9260. <package
  9261. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9262. size="5183988"
  9263. />
  9264. <package
  9265. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9266. size="5183988"
  9267. />
  9268. <package
  9269. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9270. size="5183988"
  9271. />
  9272. <package
  9273. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9274. size="5183988"
  9275. />
  9276. <package
  9277. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9278. size="5183988"
  9279. />
  9280. <package
  9281. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9282. size="5183988"
  9283. />
  9284. <package
  9285. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9286. size="5183988"
  9287. />
  9288. <package
  9289. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9290. size="5183988"
  9291. />
  9292. <package
  9293. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9294. size="5183988"
  9295. />
  9296. <package
  9297. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9298. size="5183988"
  9299. />
  9300. </otaPackages>
  9301. </productMenu>
  9302. <productMenu id="sip"
  9303. type="1" >
  9304. </productMenu>
  9305. <productMenu id="bluetoothIntercom"
  9306. type="1" >
  9307. </productMenu>
  9308. <productMenu id="phone"
  9309. type="1" >
  9310. </productMenu>
  9311. <productMenu id="music"
  9312. type="1" >
  9313. </productMenu>
  9314. <productMenu id="fmradio"
  9315. type="1"
  9316. url="1" >
  9317. </productMenu>
  9318. <productMenu id="deviceSetting"
  9319. type="1"
  9320. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9321. <productMenuURL version="1.0"
  9322. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9323. />
  9324. </productMenu>
  9325. <productMenu id="quickGuide"
  9326. type="0"
  9327. url=""
  9328. size="934KB" >
  9329. </productMenu>
  9330. <productMenu id="userGuide"
  9331. type="1"
  9332. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9333. size="1.14MB" >
  9334. </productMenu>
  9335. <productMenu id="connectGuide"
  9336. type="1"
  9337. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apex.json"
  9338. size="1.12MB" >
  9339. </productMenu>
  9340. <productMenu id="volume+"
  9341. type="2"
  9342. url="0x0004" >
  9343. </productMenu>
  9344. <productMenu id="appearance"
  9345. type="1"
  9346. url="1|white,silver,black" >
  9347. </productMenu>
  9348. <productMenu id="battery"
  9349. type="1" >
  9350. </productMenu>
  9351. <productID id="3452"
  9352. />
  9353. <productGroupable type="0"
  9354. />
  9355. </product>
  9356. <product id="ApexPlus"
  9357. name="Apex Plus"
  9358. series="Apex"
  9359. latestVersion="1.0"
  9360. latestVersionVoicePrompt="0.2"
  9361. show = "-1" >
  9362. <productMenu id="protocol"
  9363. type="2" >
  9364. </productMenu>
  9365. <productMenu id="warranty"
  9366. type="1" >
  9367. </productMenu>
  9368. <productMenu id="serialNumber"
  9369. type="1" >
  9370. </productMenu>
  9371. <productMenu id="ota"
  9372. type="2" >
  9373. <otaLanguages>
  9374. <otaLanguage
  9375. id="0"
  9376. name="English"
  9377. package="0"
  9378. />
  9379. <otaLanguage
  9380. id="0"
  9381. name="French"
  9382. package="1"
  9383. />
  9384. <otaLanguage
  9385. id="0"
  9386. name="Spanish"
  9387. package="2"
  9388. />
  9389. <otaLanguage
  9390. id="0"
  9391. name="Italian"
  9392. package="3"
  9393. />
  9394. <otaLanguage
  9395. id="0"
  9396. name="German"
  9397. package="4"
  9398. />
  9399. <otaLanguage
  9400. id="0"
  9401. name="Dutch"
  9402. package="5"
  9403. />
  9404. <otaLanguage
  9405. id="0"
  9406. name="Russian"
  9407. package="6"
  9408. />
  9409. <otaLanguage
  9410. id="0"
  9411. name="Chinese"
  9412. package="7"
  9413. />
  9414. <otaLanguage
  9415. id="0"
  9416. name="Korean"
  9417. package="8"
  9418. />
  9419. <otaLanguage
  9420. id="0"
  9421. name="Japanese"
  9422. package="9"
  9423. />
  9424. <otaLanguage
  9425. id="0"
  9426. name="Finnish"
  9427. package="10"
  9428. />
  9429. <otaLanguage
  9430. id="0"
  9431. name="Polish"
  9432. package="11"
  9433. />
  9434. </otaLanguages>
  9435. <otaPackages>
  9436. <package
  9437. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9438. size="5183988"
  9439. />
  9440. <package
  9441. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9442. size="5183988"
  9443. />
  9444. <package
  9445. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9446. size="5183988"
  9447. />
  9448. <package
  9449. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9450. size="5183988"
  9451. />
  9452. <package
  9453. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9454. size="5183988"
  9455. />
  9456. <package
  9457. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9458. size="5183988"
  9459. />
  9460. <package
  9461. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9462. size="5183988"
  9463. />
  9464. <package
  9465. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9466. size="5183988"
  9467. />
  9468. <package
  9469. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9470. size="5183988"
  9471. />
  9472. <package
  9473. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9474. size="5183988"
  9475. />
  9476. <package
  9477. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9478. size="5183988"
  9479. />
  9480. <package
  9481. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9482. size="5183988"
  9483. />
  9484. </otaPackages>
  9485. </productMenu>
  9486. <productMenu id="sip"
  9487. type="1" >
  9488. </productMenu>
  9489. <productMenu id="bluetoothIntercom"
  9490. type="1" >
  9491. </productMenu>
  9492. <productMenu id="phone"
  9493. type="1" >
  9494. </productMenu>
  9495. <productMenu id="music"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="fmradio"
  9499. type="1"
  9500. url="1" >
  9501. </productMenu>
  9502. <productMenu id="deviceSetting"
  9503. type="1"
  9504. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_02.xml" >
  9505. <productMenuURL version="1.0"
  9506. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9507. />
  9508. </productMenu>
  9509. <productMenu id="quickGuide"
  9510. type="0"
  9511. url=""
  9512. size="934KB" >
  9513. </productMenu>
  9514. <productMenu id="userGuide"
  9515. type="1"
  9516. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9517. size="1.14MB" >
  9518. </productMenu>
  9519. <productMenu id="connectGuide"
  9520. type="1"
  9521. url="https://api.sena.com/support/ConnectGuide/phonethumb_phone5_init_apexplus.json"
  9522. size="1.12MB" >
  9523. </productMenu>
  9524. <productMenu id="volume+"
  9525. type="2"
  9526. url="0x0004" >
  9527. </productMenu>
  9528. <productMenu id="appearance"
  9529. type="1"
  9530. url="1|white,silver,black" >
  9531. </productMenu>
  9532. <productMenu id="battery"
  9533. type="1" >
  9534. </productMenu>
  9535. <productID id="3453"
  9536. />
  9537. <productGroupable type="0"
  9538. />
  9539. </product>
  9540. <product id="10R2"
  9541. name="10R 2"
  9542. series="10"
  9543. latestVersion="0.9"
  9544. latestVersionVoicePrompt="1.1"
  9545. show = "-1" >
  9546. <productMenu id="protocol"
  9547. type="2" >
  9548. </productMenu>
  9549. <productMenu id="ota"
  9550. type="2" >
  9551. <otaPackages>
  9552. <package
  9553. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9554. size="2945812"
  9555. />
  9556. </otaPackages>
  9557. </productMenu>
  9558. <productMenu id="sip"
  9559. type="1" >
  9560. </productMenu>
  9561. <productMenu id="bluetoothIntercom"
  9562. type="1" >
  9563. </productMenu>
  9564. <productMenu id="phone"
  9565. type="1" >
  9566. </productMenu>
  9567. <productMenu id="music"
  9568. type="1" >
  9569. </productMenu>
  9570. <productMenu id="fmradio"
  9571. type="1"
  9572. url="1" >
  9573. </productMenu>
  9574. <productMenu id="deviceSetting"
  9575. type="1"
  9576. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9577. </productMenu>
  9578. <productMenu id="quickGuide"
  9579. type="1"
  9580. url=""
  9581. size="934KB" >
  9582. </productMenu>
  9583. <productMenu id="userGuide"
  9584. type="0"
  9585. url=""
  9586. size="1.14MB" >
  9587. </productMenu>
  9588. <productMenu id="volume"
  9589. type="15" >
  9590. </productMenu>
  9591. <productID id="4000"
  9592. />
  9593. <productGroupable type="0"
  9594. />
  9595. </product>
  9596. <product id="10R"
  9597. name="10R"
  9598. series="10"
  9599. latestVersion="2.1.1"
  9600. show = "1" >
  9601. <productMenu id="protocol"
  9602. type="0">
  9603. </productMenu>
  9604. <productMenu id="sip"
  9605. type="1" >
  9606. <productMenuType version="1.0.2"
  9607. type="0"
  9608. />
  9609. </productMenu>
  9610. <productMenu id="bluetoothIntercom"
  9611. type="1" >
  9612. <productMenuType version="1.0.2"
  9613. type="0"
  9614. />
  9615. </productMenu>
  9616. <productMenu id="phone"
  9617. type="2" >
  9618. </productMenu>
  9619. <productMenu id="fmradio"
  9620. type="3" >
  9621. </productMenu>
  9622. <productMenu id="deviceSetting"
  9623. type="1"
  9624. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9625. <productMenuURL version="1.4"
  9626. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9627. />
  9628. <productMenuURL version="1.2.1"
  9629. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9630. />
  9631. <productMenuURL version="1.0.2"
  9632. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9633. />
  9634. <productMenuURL version="1.0"
  9635. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9636. />
  9637. </productMenu>
  9638. <productMenu id="quickGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9641. size="400KB" >
  9642. </productMenu>
  9643. <productMenu id="userGuide"
  9644. type="1"
  9645. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9646. size="2.75MB" >
  9647. </productMenu>
  9648. <productMenu id="connectGuide"
  9649. type="1"
  9650. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9651. size="1.12MB" >
  9652. </productMenu>
  9653. <productID id="5520"
  9654. />
  9655. <productGroupable type="0"
  9656. />
  9657. </product>
  9658. <product id="10C_EVO"
  9659. name="10C EVO"
  9660. series="10"
  9661. latestVersion="1.7"
  9662. show = "1" >
  9663. <productMenu id="protocol"
  9664. type="0">
  9665. </productMenu>
  9666. <productMenu id="sip"
  9667. type="1" >
  9668. </productMenu>
  9669. <productMenu id="bluetoothIntercom"
  9670. type="1" >
  9671. </productMenu>
  9672. <productMenu id="phone"
  9673. type="2" >
  9674. </productMenu>
  9675. <productMenu id="fmradio"
  9676. type="3" >
  9677. </productMenu>
  9678. <productMenu id="deviceSetting"
  9679. type="1"
  9680. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9681. <productMenuURL version="1.3.1"
  9682. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9683. />
  9684. </productMenu>
  9685. <productMenu id="quickGuide"
  9686. type="1"
  9687. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9688. size="1.32MB" >
  9689. </productMenu>
  9690. <productMenu id="userGuide"
  9691. type="1"
  9692. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9693. size="1.68MB" >
  9694. </productMenu>
  9695. <productMenu id="connectGuide"
  9696. type="1"
  9697. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9698. size="1.12MB" >
  9699. </productMenu>
  9700. <productID id="5570"
  9701. />
  9702. <productGroupable type="0"
  9703. />
  9704. </product>
  9705. <product id="10C_Pro"
  9706. name="10C Pro"
  9707. series="10"
  9708. latestVersion="2.7.1"
  9709. show = "1" >
  9710. <productMenu id="protocol"
  9711. type="0">
  9712. </productMenu>
  9713. <productMenu id="sip"
  9714. type="1" >
  9715. </productMenu>
  9716. <productMenu id="bluetoothIntercom"
  9717. type="1" >
  9718. </productMenu>
  9719. <productMenu id="phone"
  9720. type="2" >
  9721. </productMenu>
  9722. <productMenu id="fmradio"
  9723. type="3" >
  9724. </productMenu>
  9725. <productMenu id="deviceSetting"
  9726. type="1"
  9727. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9728. <productMenuURL version="2.5.1"
  9729. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9730. />
  9731. <productMenuURL version="1.0"
  9732. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9733. />
  9734. </productMenu>
  9735. <productMenu id="quickGuide"
  9736. type="1"
  9737. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9738. size="651KB" >
  9739. </productMenu>
  9740. <productMenu id="userGuide"
  9741. type="1"
  9742. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9743. size="2.34MB" >
  9744. </productMenu>
  9745. <productMenu id="connectGuide"
  9746. type="1"
  9747. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9748. size="1.12MB" >
  9749. </productMenu>
  9750. <productID id="5580"
  9751. />
  9752. <productGroupable type="0"
  9753. />
  9754. </product>
  9755. <product id="10C"
  9756. name="10C"
  9757. series="10"
  9758. latestVersion="3.0.4"
  9759. show = "1" >
  9760. <productMenu id="protocol"
  9761. type="0">
  9762. </productMenu>
  9763. <productMenu id="sip"
  9764. type="1" >
  9765. <productMenuType version="1.0.4"
  9766. type="0"
  9767. />
  9768. </productMenu>
  9769. <productMenu id="bluetoothIntercom"
  9770. type="1" >
  9771. <productMenuType version="1.0.4"
  9772. type="0"
  9773. />
  9774. </productMenu>
  9775. <productMenu id="phone"
  9776. type="2" >
  9777. </productMenu>
  9778. <productMenu id="fmradio"
  9779. type="3" >
  9780. </productMenu>
  9781. <productMenu id="deviceSetting"
  9782. type="1"
  9783. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9784. <productMenuURL version="2.3"
  9785. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9786. />
  9787. <productMenuURL version="2.1.1"
  9788. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9789. />
  9790. <productMenuURL version="1.0.4"
  9791. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9792. />
  9793. <productMenuURL version="1.0.2"
  9794. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9795. />
  9796. </productMenu>
  9797. <productMenu id="quickGuide"
  9798. type="1"
  9799. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9800. size="935KB" >
  9801. </productMenu>
  9802. <productMenu id="userGuide"
  9803. type="1"
  9804. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9805. size="2.82MB" >
  9806. </productMenu>
  9807. <productMenu id="connectGuide"
  9808. type="1"
  9809. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9810. size="1.12MB" >
  9811. </productMenu>
  9812. <productID id="5510"
  9813. />
  9814. <productGroupable type="0"
  9815. />
  9816. </product>
  9817. <product id="10U_GT_AIR"
  9818. name="10U GT-Air"
  9819. series="10"
  9820. latestVersion="2.0.4"
  9821. show = "1" >
  9822. <productMenu id="protocol"
  9823. type="0">
  9824. </productMenu>
  9825. <productMenu id="sip"
  9826. type="1" >
  9827. <productMenuType version="1.0.2"
  9828. type="0"
  9829. />
  9830. </productMenu>
  9831. <productMenu id="bluetoothIntercom"
  9832. type="1" >
  9833. <productMenuType version="1.0.2"
  9834. type="0"
  9835. />
  9836. </productMenu>
  9837. <productMenu id="phone"
  9838. type="2" >
  9839. </productMenu>
  9840. <productMenu id="fmradio"
  9841. type="3" >
  9842. </productMenu>
  9843. <productMenu id="deviceSetting"
  9844. type="1"
  9845. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9846. <productMenuURL version="1.3.2"
  9847. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9848. />
  9849. <productMenuURL version="1.0.2"
  9850. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9851. />
  9852. </productMenu>
  9853. <productMenu id="quickGuide"
  9854. type="1"
  9855. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9856. size="685KB" >
  9857. </productMenu>
  9858. <productMenu id="userGuide"
  9859. type="1"
  9860. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9861. size="684KB" >
  9862. </productMenu>
  9863. <productMenu id="connectGuide"
  9864. type="1"
  9865. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9866. size="1.12MB" >
  9867. </productMenu>
  9868. <productID id="5610"
  9869. />
  9870. <productGroupable type="0"
  9871. />
  9872. </product>
  9873. <product id="10U_NEOTEC"
  9874. name="10U Neotec"
  9875. series="10"
  9876. latestVersion="2.0.4"
  9877. show = "1" >
  9878. <productMenu id="protocol"
  9879. type="0">
  9880. </productMenu>
  9881. <productMenu id="sip"
  9882. type="1" >
  9883. <productMenuType version="1.0.2"
  9884. type="0"
  9885. />
  9886. </productMenu>
  9887. <productMenu id="bluetoothIntercom"
  9888. type="1" >
  9889. <productMenuType version="1.0.2"
  9890. type="0"
  9891. />
  9892. </productMenu>
  9893. <productMenu id="phone"
  9894. type="2" >
  9895. </productMenu>
  9896. <productMenu id="fmradio"
  9897. type="3" >
  9898. </productMenu>
  9899. <productMenu id="deviceSetting"
  9900. type="1"
  9901. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9902. <productMenuURL version="1.3.2"
  9903. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9904. />
  9905. <productMenuURL version="1.0.2"
  9906. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9907. />
  9908. </productMenu>
  9909. <productMenu id="quickGuide"
  9910. type="1"
  9911. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9912. size="689KB" >
  9913. </productMenu>
  9914. <productMenu id="userGuide"
  9915. type="1"
  9916. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9917. size="684KB" >
  9918. </productMenu>
  9919. <productMenu id="connectGuide"
  9920. type="1"
  9921. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9922. size="1.12MB" >
  9923. </productMenu>
  9924. <productID id="5611"
  9925. />
  9926. <productGroupable type="0"
  9927. />
  9928. </product>
  9929. <product id="10U_J_CRUISE"
  9930. name="10U J-Cruise"
  9931. series="10"
  9932. latestVersion="2.0.4"
  9933. show = "1" >
  9934. <productMenu id="protocol"
  9935. type="0">
  9936. </productMenu>
  9937. <productMenu id="sip"
  9938. type="1" >
  9939. <productMenuType version="1.0.2"
  9940. type="0"
  9941. />
  9942. </productMenu>
  9943. <productMenu id="bluetoothIntercom"
  9944. type="1" >
  9945. <productMenuType version="1.0.2"
  9946. type="0"
  9947. />
  9948. </productMenu>
  9949. <productMenu id="phone"
  9950. type="2" >
  9951. </productMenu>
  9952. <productMenu id="fmradio"
  9953. type="3" >
  9954. </productMenu>
  9955. <productMenu id="deviceSetting"
  9956. type="1"
  9957. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9958. <productMenuURL version="1.3.2"
  9959. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9960. />
  9961. <productMenuURL version="1.0.2"
  9962. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9963. />
  9964. </productMenu>
  9965. <productMenu id="quickGuide"
  9966. type="1"
  9967. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9968. size="686KB" >
  9969. </productMenu>
  9970. <productMenu id="userGuide"
  9971. type="1"
  9972. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9973. size="684KB" >
  9974. </productMenu>
  9975. <productMenu id="connectGuide"
  9976. type="1"
  9977. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9978. size="1.12MB" >
  9979. </productMenu>
  9980. <productID id="5612"
  9981. />
  9982. <productGroupable type="0"
  9983. />
  9984. </product>
  9985. <product id="10U_C3"
  9986. name="10U C3/C3Pro"
  9987. series="10"
  9988. latestVersion="2.0.4"
  9989. show = "1" >
  9990. <productMenu id="protocol"
  9991. type="0">
  9992. </productMenu>
  9993. <productMenu id="sip"
  9994. type="1" >
  9995. <productMenuType version="1.0.2"
  9996. type="0"
  9997. />
  9998. </productMenu>
  9999. <productMenu id="bluetoothIntercom"
  10000. type="1" >
  10001. <productMenuType version="1.0.2"
  10002. type="0"
  10003. />
  10004. </productMenu>
  10005. <productMenu id="phone"
  10006. type="2" >
  10007. </productMenu>
  10008. <productMenu id="fmradio"
  10009. type="3" >
  10010. </productMenu>
  10011. <productMenu id="deviceSetting"
  10012. type="1"
  10013. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10014. <productMenuURL version="1.3.2"
  10015. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10016. />
  10017. <productMenuURL version="1.0.2"
  10018. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10019. />
  10020. </productMenu>
  10021. <productMenu id="quickGuide"
  10022. type="1"
  10023. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  10024. size="199KB" >
  10025. </productMenu>
  10026. <productMenu id="userGuide"
  10027. type="1"
  10028. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10029. size="684KB" >
  10030. </productMenu>
  10031. <productMenu id="connectGuide"
  10032. type="1"
  10033. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10034. size="1.12MB" >
  10035. </productMenu>
  10036. <productID id="5620"
  10037. />
  10038. <productGroupable type="0"
  10039. />
  10040. </product>
  10041. <product id="10U_ARAI"
  10042. name="10U Arai"
  10043. series="10"
  10044. latestVersion="2.0.4"
  10045. show = "1" >
  10046. <productMenu id="protocol"
  10047. type="0">
  10048. </productMenu>
  10049. <productMenu id="sip"
  10050. type="1" >
  10051. <productMenuType version="1.0.2"
  10052. type="0"
  10053. />
  10054. </productMenu>
  10055. <productMenu id="bluetoothIntercom"
  10056. type="1" >
  10057. <productMenuType version="1.0.2"
  10058. type="0"
  10059. />
  10060. </productMenu>
  10061. <productMenu id="phone"
  10062. type="2" >
  10063. </productMenu>
  10064. <productMenu id="fmradio"
  10065. type="3" >
  10066. </productMenu>
  10067. <productMenu id="deviceSetting"
  10068. type="1"
  10069. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  10070. <productMenuURL version="1.3.2"
  10071. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  10072. />
  10073. <productMenuURL version="1.0.2"
  10074. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  10075. />
  10076. </productMenu>
  10077. <productMenu id="quickGuide"
  10078. type="1"
  10079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  10080. size="689KB" >
  10081. </productMenu>
  10082. <productMenu id="userGuide"
  10083. type="1"
  10084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  10085. size="684KB" >
  10086. </productMenu>
  10087. <productMenu id="connectGuide"
  10088. type="1"
  10089. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  10090. size="1.12MB" >
  10091. </productMenu>
  10092. <productID id="5621"
  10093. />
  10094. <productGroupable type="0"
  10095. />
  10096. </product>
  10097. <product id="10Upad"
  10098. name="10Upad"
  10099. series="10"
  10100. latestVersion="2.0.3"
  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="phone"
  10112. type="2" >
  10113. </productMenu>
  10114. <productMenu id="fmradio"
  10115. type="3" >
  10116. </productMenu>
  10117. <productMenu id="deviceSetting"
  10118. type="1"
  10119. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  10120. <productMenuURL version="1.0.3"
  10121. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  10122. />
  10123. </productMenu>
  10124. <productMenu id="quickGuide"
  10125. type="1"
  10126. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  10127. size="615KB" >
  10128. </productMenu>
  10129. <productMenu id="userGuide"
  10130. type="1"
  10131. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  10132. size="0.99MB" >
  10133. </productMenu>
  10134. <productMenu id="connectGuide"
  10135. type="1"
  10136. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  10137. size="1.12MB" >
  10138. </productMenu>
  10139. <productID id="6210"
  10140. />
  10141. <productGroupable type="0"
  10142. />
  10143. </product>
  10144. <product id="5S"
  10145. name="5S"
  10146. series="5"
  10147. latestVersion="2.3.1"
  10148. show = "1" >
  10149. <productMenu id="protocol"
  10150. type="3" >
  10151. </productMenu>
  10152. <productMenu id="sip"
  10153. type="1" >
  10154. </productMenu>
  10155. <productMenu id="bluetoothIntercom"
  10156. type="1" >
  10157. </productMenu>
  10158. <productMenu id="phone"
  10159. type="1" >
  10160. </productMenu>
  10161. <productMenu id="fmradio"
  10162. type="0" >
  10163. </productMenu>
  10164. <productMenu id="deviceSetting"
  10165. type="1"
  10166. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10167. </productMenu>
  10168. <productMenu id="quickGuide"
  10169. type="0"
  10170. url=""
  10171. size="934KB" >
  10172. </productMenu>
  10173. <productMenu id="userGuide"
  10174. type="1"
  10175. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10176. size="1.14MB" >
  10177. </productMenu>
  10178. <productMenu id="connectGuide"
  10179. type="1"
  10180. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10181. size="1.12MB" >
  10182. </productMenu>
  10183. <productID id="5590"
  10184. />
  10185. <productGroupable type="0"
  10186. />
  10187. </product>
  10188. <product id="5S"
  10189. name="5S"
  10190. series="5"
  10191. latestVersion="1.2"
  10192. show = "-1" >
  10193. <productMenu id="protocol"
  10194. type="0">
  10195. </productMenu>
  10196. <productMenu id="sip"
  10197. type="1" >
  10198. </productMenu>
  10199. <productMenu id="bluetoothIntercom"
  10200. type="1" >
  10201. </productMenu>
  10202. <productMenu id="phone"
  10203. type="2" >
  10204. </productMenu>
  10205. <productMenu id="fmradio"
  10206. type="3" >
  10207. </productMenu>
  10208. <productMenu id="deviceSetting"
  10209. type="1"
  10210. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10211. </productMenu>
  10212. <productMenu id="quickGuide"
  10213. type="0"
  10214. url=""
  10215. size="970KB" >
  10216. </productMenu>
  10217. <productMenu id="userGuide"
  10218. type="1"
  10219. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10220. size="1.26MB" >
  10221. </productMenu>
  10222. <productID id="5534"
  10223. />
  10224. <productGroupable type="0"
  10225. />
  10226. </product>
  10227. <product id="5S"
  10228. name="5S"
  10229. series="5"
  10230. latestVersion="3.0.1"
  10231. show = "-1" >
  10232. <productMenu id="protocol"
  10233. type="0">
  10234. </productMenu>
  10235. <productMenu id="sip"
  10236. type="1" >
  10237. </productMenu>
  10238. <productMenu id="bluetoothIntercom"
  10239. type="1" >
  10240. </productMenu>
  10241. <productMenu id="phone"
  10242. type="2" >
  10243. </productMenu>
  10244. <productMenu id="fmradio"
  10245. type="0" >
  10246. </productMenu>
  10247. <productMenu id="deviceSetting"
  10248. type="1"
  10249. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10250. </productMenu>
  10251. <productMenu id="quickGuide"
  10252. type="0"
  10253. url=""
  10254. size="970KB" >
  10255. </productMenu>
  10256. <productMenu id="userGuide"
  10257. type="1"
  10258. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10259. size="1.26MB" >
  10260. </productMenu>
  10261. <productID id="5538"
  10262. />
  10263. <productGroupable type="0"
  10264. />
  10265. </product>
  10266. <product id="3SPLUS"
  10267. name="3S PLUS"
  10268. series="3"
  10269. latestVersion="2.2"
  10270. show = "1" >
  10271. <productMenu id="protocol"
  10272. type="3" >
  10273. </productMenu>
  10274. <productMenu id="sip"
  10275. type="1" >
  10276. </productMenu>
  10277. <productMenu id="bluetoothIntercom"
  10278. type="1" >
  10279. </productMenu>
  10280. <productMenu id="deviceSetting"
  10281. type="1"
  10282. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10283. <productMenuURL version="2.2.1"
  10284. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10285. />
  10286. </productMenu>
  10287. <productMenu id="quickGuide"
  10288. type="1"
  10289. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10290. size="344KB" >
  10291. </productMenu>
  10292. <productMenu id="userGuide"
  10293. type="1"
  10294. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10295. size="1.14MB" >
  10296. </productMenu>
  10297. <productMenu id="connectGuide"
  10298. type="1"
  10299. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10300. size="1.12MB" >
  10301. </productMenu>
  10302. <productID id="4023"
  10303. />
  10304. <productGroupable type="0"
  10305. />
  10306. </product>
  10307. <product id="3SPLUS"
  10308. name="3S PLUS"
  10309. series="3"
  10310. latestVersion="1.1"
  10311. show = "-1" >
  10312. <productMenu id="protocol"
  10313. type="0">
  10314. </productMenu>
  10315. <productMenu id="sip"
  10316. type="1" >
  10317. </productMenu>
  10318. <productMenu id="bluetoothIntercom"
  10319. type="1" >
  10320. </productMenu>
  10321. <productMenu id="deviceSetting"
  10322. type="1"
  10323. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10324. </productMenu>
  10325. <productMenu id="quickGuide"
  10326. type="1"
  10327. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10328. size="842KB" >
  10329. </productMenu>
  10330. <productMenu id="userGuide"
  10331. type="1"
  10332. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10333. size="1.02MB" >
  10334. </productMenu>
  10335. <productID id="6320"
  10336. />
  10337. <productGroupable type="0"
  10338. />
  10339. </product>
  10340. <product id="AConnect"
  10341. name="Alpinestars A-Connect"
  10342. series="60"
  10343. latestVersion="1.0.2"
  10344. latestVersionMesh="0.19"
  10345. latestVersionVoicePrompt="1.6"
  10346. show = "-1" >
  10347. <productMenu id="protocol"
  10348. type="2" >
  10349. </productMenu>
  10350. <productMenu id="ota"
  10351. type="2" >
  10352. <otaLanguages>
  10353. <otaLanguage
  10354. id="0"
  10355. name="English"
  10356. package="0"
  10357. />
  10358. <otaLanguage
  10359. id="0"
  10360. name="French"
  10361. package="1"
  10362. />
  10363. <otaLanguage
  10364. id="0"
  10365. name="Spanish"
  10366. package="2"
  10367. />
  10368. <otaLanguage
  10369. id="0"
  10370. name="Italian"
  10371. package="3"
  10372. />
  10373. <otaLanguage
  10374. id="0"
  10375. name="German"
  10376. package="4"
  10377. />
  10378. <otaLanguage
  10379. id="0"
  10380. name="Dutch"
  10381. package="5"
  10382. />
  10383. <otaLanguage
  10384. id="0"
  10385. name="Russian"
  10386. package="6"
  10387. />
  10388. <otaLanguage
  10389. id="0"
  10390. name="Chinese"
  10391. package="7"
  10392. />
  10393. <otaLanguage
  10394. id="0"
  10395. name="Korean"
  10396. package="8"
  10397. />
  10398. <otaLanguage
  10399. id="0"
  10400. name="Japanese"
  10401. package="9"
  10402. />
  10403. <otaLanguage
  10404. id="0"
  10405. name="Finnish"
  10406. package="10"
  10407. />
  10408. <otaLanguage
  10409. id="0"
  10410. name="Polish"
  10411. package="11"
  10412. />
  10413. </otaLanguages>
  10414. <otaPackages>
  10415. <package
  10416. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10417. size="5183988"
  10418. />
  10419. <package
  10420. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10421. size="5183988"
  10422. />
  10423. <package
  10424. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10425. size="5183988"
  10426. />
  10427. <package
  10428. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10429. size="5183988"
  10430. />
  10431. <package
  10432. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10433. size="5183988"
  10434. />
  10435. <package
  10436. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10437. size="5183988"
  10438. />
  10439. <package
  10440. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10441. size="5183988"
  10442. />
  10443. <package
  10444. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10445. size="5183988"
  10446. />
  10447. <package
  10448. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10449. size="5183988"
  10450. />
  10451. <package
  10452. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10453. size="5183988"
  10454. />
  10455. <package
  10456. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10457. size="5183988"
  10458. />
  10459. <package
  10460. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10461. size="5183988"
  10462. />
  10463. </otaPackages>
  10464. </productMenu>
  10465. <productMenu id="sip"
  10466. type="1" >
  10467. </productMenu>
  10468. <productMenu id="illusion"
  10469. type="0" >
  10470. </productMenu>
  10471. <productMenu id="meshIntercom+"
  10472. type="3"
  10473. url="2" >
  10474. </productMenu>
  10475. <productMenu id="waveIntercom"
  10476. type="1" >
  10477. </productMenu>
  10478. <productMenu id="bluetoothIntercom"
  10479. type="1"
  10480. url="2" >
  10481. </productMenu>
  10482. <productMenu id="bluetoothIntercomGrouping"
  10483. type="0" >
  10484. </productMenu>
  10485. <productMenu id="fmradio"
  10486. type="1"
  10487. url="1" >
  10488. </productMenu>
  10489. <productMenu id="phone"
  10490. type="1" >
  10491. </productMenu>
  10492. <productMenu id="music"
  10493. type="1" >
  10494. </productMenu>
  10495. <productMenu id="musicSharing"
  10496. type="0" >
  10497. </productMenu>
  10498. <productMenu id="deviceSetting"
  10499. type="1"
  10500. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/NS_SRL3Plus_01.xml" >
  10501. <productMenuURL version="1.0.3"
  10502. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  10503. />
  10504. </productMenu>
  10505. <productMenu id="quickGuide"
  10506. type="0"
  10507. url=""
  10508. size="1.12MB" >
  10509. </productMenu>
  10510. <productMenu id="userGuide"
  10511. type="1"
  10512. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10513. size="2.0MB" >
  10514. </productMenu>
  10515. <productMenu id="videoGuide"
  10516. type="0"
  10517. url=""
  10518. size="3.41MB" >
  10519. </productMenu>
  10520. <productMenu id="volume"
  10521. type="16" >
  10522. </productMenu>
  10523. <productMenu id="volume+"
  10524. type="2"
  10525. url="0x6004" >
  10526. </productMenu>
  10527. <productMenu id="soundMode"
  10528. type="0" >
  10529. </productMenu>
  10530. <productMenu id="battery"
  10531. type="1" >
  10532. </productMenu>
  10533. <productID id="6A82"
  10534. />
  10535. <productGroupable type="0"
  10536. />
  10537. </product>
  10538. <product id="iCon"
  10539. name="iCon"
  10540. series="50"
  10541. latestVersion="1.2"
  10542. show = "0" >
  10543. <productMenu id="protocol"
  10544. type="2" >
  10545. </productMenu>
  10546. <productMenu id="alexa"
  10547. type="0" >
  10548. </productMenu>
  10549. <productMenu id="wa"
  10550. type="0" >
  10551. </productMenu>
  10552. <productMenu id="sip"
  10553. type="1" >
  10554. </productMenu>
  10555. <productMenu id="led"
  10556. type="3" >
  10557. </productMenu>
  10558. <productMenu id="meshIntercom"
  10559. type="20" >
  10560. </productMenu>
  10561. <productMenu id="meshIntercom+"
  10562. type="3"
  10563. url="0" >
  10564. <productMenuType version="1.0.9"
  10565. type="2"
  10566. />
  10567. </productMenu>
  10568. <productMenu id="bluetoothIntercom"
  10569. type="1" >
  10570. </productMenu>
  10571. <productMenu id="phone"
  10572. type="1" >
  10573. </productMenu>
  10574. <productMenu id="music"
  10575. type="1" >
  10576. </productMenu>
  10577. <productMenu id="fmradio"
  10578. type="1" >
  10579. </productMenu>
  10580. <productMenu id="deviceSetting"
  10581. type="1"
  10582. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10583. <productMenuURL version="1.0.9"
  10584. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10585. />
  10586. </productMenu>
  10587. <productMenu id="quickGuide"
  10588. type="1"
  10589. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10590. size="344KB" >
  10591. </productMenu>
  10592. <productMenu id="userGuide"
  10593. type="1"
  10594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10595. size="3.41MB" >
  10596. </productMenu>
  10597. <productMenu id="volume"
  10598. type="11" >
  10599. </productMenu>
  10600. <productMenu id="battery"
  10601. type="1" >
  10602. </productMenu>
  10603. <productID id="3900"
  10604. />
  10605. <productGroupable type="0"
  10606. />
  10607. </product>
  10608. <product id="ICONHelmLinkSL"
  10609. name="ICON HelmLink SL"
  10610. series="50"
  10611. latestVersion="1.0"
  10612. latestVersionVoicePrompt="1.6"
  10613. show = "-1" >
  10614. <productMenu id="protocol"
  10615. type="2" >
  10616. </productMenu>
  10617. <productMenu id="alexa"
  10618. type="0" >
  10619. </productMenu>
  10620. <productMenu id="ota"
  10621. type="2" >
  10622. <otaPackages>
  10623. <package
  10624. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10625. size="2945812"
  10626. />
  10627. </otaPackages>
  10628. </productMenu>
  10629. <productMenu id="wa"
  10630. type="0" >
  10631. </productMenu>
  10632. <productMenu id="meshIntercom"
  10633. type="30" >
  10634. </productMenu>
  10635. <productMenu id="meshIntercom+"
  10636. type="3"
  10637. url="2" >
  10638. </productMenu>
  10639. <productMenu id="waveIntercom"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="phone"
  10643. type="1" >
  10644. </productMenu>
  10645. <productMenu id="music"
  10646. type="1" >
  10647. </productMenu>
  10648. <productMenu id="musicSharing"
  10649. type="0" >
  10650. </productMenu>
  10651. <productMenu id="deviceSetting"
  10652. type="1"
  10653. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10654. </productMenu>
  10655. <productMenu id="quickGuide"
  10656. type="0"
  10657. url=""
  10658. size="1.12MB" >
  10659. </productMenu>
  10660. <productMenu id="userGuide"
  10661. type="1"
  10662. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10663. size="2.0MB" >
  10664. </productMenu>
  10665. <productMenu id="volume"
  10666. type="12" >
  10667. </productMenu>
  10668. <productMenu id="battery"
  10669. type="1" >
  10670. </productMenu>
  10671. <productID id="6842"
  10672. />
  10673. <productGroupable type="0"
  10674. />
  10675. </product>
  10676. <product id="HD50S"
  10677. name="H-D Audio 50S"
  10678. series="50"
  10679. latestVersion="1.0.1"
  10680. show = "-1" >
  10681. <productMenu id="protocol"
  10682. type="2" >
  10683. </productMenu>
  10684. <productMenu id="alexa"
  10685. type="0" >
  10686. </productMenu>
  10687. <productMenu id="ota"
  10688. type="0"
  10689. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10690. size="1150234" >
  10691. </productMenu>
  10692. <productMenu id="wa"
  10693. type="1" >
  10694. </productMenu>
  10695. <productMenu id="sip"
  10696. type="1" >
  10697. </productMenu>
  10698. <productMenu id="meshIntercom"
  10699. type="20" >
  10700. </productMenu>
  10701. <productMenu id="meshIntercom+"
  10702. type="3"
  10703. url="0" >
  10704. <productMenuType version="1.0.9"
  10705. type="2"
  10706. />
  10707. </productMenu>
  10708. <productMenu id="bluetoothIntercom"
  10709. type="1" >
  10710. </productMenu>
  10711. <productMenu id="phone"
  10712. type="1" >
  10713. </productMenu>
  10714. <productMenu id="music"
  10715. type="1" >
  10716. </productMenu>
  10717. <productMenu id="fmradio"
  10718. type="1" >
  10719. </productMenu>
  10720. <productMenu id="deviceSetting"
  10721. type="1"
  10722. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10723. <productMenuURL version="1.0.9"
  10724. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10725. />
  10726. </productMenu>
  10727. <productMenu id="quickGuide"
  10728. type="1"
  10729. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10730. size="934KB" >
  10731. </productMenu>
  10732. <productMenu id="userGuide"
  10733. type="1"
  10734. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10735. size="1.14MB" >
  10736. </productMenu>
  10737. <productMenu id="volume"
  10738. type="11" >
  10739. </productMenu>
  10740. <productMenu id="battery"
  10741. type="1" >
  10742. </productMenu>
  10743. <productID id="3156"
  10744. />
  10745. <productGroupable type="0"
  10746. />
  10747. </product>
  10748. <product id="HD50S"
  10749. name="H-D Audio 50S"
  10750. series="50"
  10751. latestVersion="2.0.2"
  10752. show = "0" >
  10753. <productMenu id="protocol"
  10754. type="2" >
  10755. </productMenu>
  10756. <productMenu id="alexa"
  10757. type="0" >
  10758. </productMenu>
  10759. <productMenu id="ota"
  10760. type="0"
  10761. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10762. size="1150234" >
  10763. </productMenu>
  10764. <productMenu id="wa"
  10765. type="1" >
  10766. </productMenu>
  10767. <productMenu id="sip"
  10768. type="1" >
  10769. </productMenu>
  10770. <productMenu id="meshIntercom"
  10771. type="20" >
  10772. </productMenu>
  10773. <productMenu id="meshIntercom+"
  10774. type="3"
  10775. url="0" >
  10776. <productMenuType version="2.0.9"
  10777. type="2"
  10778. />
  10779. </productMenu>
  10780. <productMenu id="bluetoothIntercom"
  10781. type="1" >
  10782. </productMenu>
  10783. <productMenu id="phone"
  10784. type="1" >
  10785. </productMenu>
  10786. <productMenu id="music"
  10787. type="1" >
  10788. </productMenu>
  10789. <productMenu id="fmradio"
  10790. type="1" >
  10791. </productMenu>
  10792. <productMenu id="deviceSetting"
  10793. type="1"
  10794. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10795. <productMenuURL version="2.0.9"
  10796. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10797. />
  10798. </productMenu>
  10799. <productMenu id="quickGuide"
  10800. type="1"
  10801. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10802. size="934KB" >
  10803. </productMenu>
  10804. <productMenu id="userGuide"
  10805. type="1"
  10806. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10807. size="1.14MB" >
  10808. </productMenu>
  10809. <productMenu id="volume"
  10810. type="11" >
  10811. </productMenu>
  10812. <productMenu id="battery"
  10813. type="1" >
  10814. </productMenu>
  10815. <productID id="3213"
  10816. />
  10817. <productGroupable type="0"
  10818. />
  10819. </product>
  10820. <product id="HD50C"
  10821. name="H-D Audio 50C"
  10822. series="50"
  10823. latestVersion="1.0.1"
  10824. show = "0" >
  10825. <productMenu id="protocol"
  10826. type="2" >
  10827. </productMenu>
  10828. <productMenu id="ota"
  10829. type="0" >
  10830. </productMenu>
  10831. <productMenu id="wa"
  10832. type="1" >
  10833. </productMenu>
  10834. <productMenu id="sip"
  10835. type="1" >
  10836. </productMenu>
  10837. <productMenu id="meshIntercom"
  10838. type="20" >
  10839. </productMenu>
  10840. <productMenu id="meshIntercom+"
  10841. type="3"
  10842. url="0" >
  10843. <productMenuType version="1.0.9"
  10844. type="2"
  10845. />
  10846. </productMenu>
  10847. <productMenu id="bluetoothIntercom"
  10848. type="1" >
  10849. </productMenu>
  10850. <productMenu id="phone"
  10851. type="1" >
  10852. </productMenu>
  10853. <productMenu id="music"
  10854. type="1" >
  10855. </productMenu>
  10856. <productMenu id="fmradio"
  10857. type="1" >
  10858. </productMenu>
  10859. <productMenu id="deviceSetting"
  10860. type="1"
  10861. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10862. <productMenuURL version="1.0.9"
  10863. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10864. />
  10865. </productMenu>
  10866. <productMenu id="quickGuide"
  10867. type="1"
  10868. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10869. size="344KB" >
  10870. </productMenu>
  10871. <productMenu id="userGuide"
  10872. type="1"
  10873. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10874. size="3.41MB" >
  10875. </productMenu>
  10876. <productMenu id="volume"
  10877. type="11" >
  10878. </productMenu>
  10879. <productMenu id="battery"
  10880. type="1" >
  10881. </productMenu>
  10882. <productID id="3240"
  10883. />
  10884. <productGroupable type="0"
  10885. />
  10886. </product>
  10887. <product id="HD50S"
  10888. name="FURY N04"
  10889. series="Helmet"
  10890. latestVersion="1.0"
  10891. show = "0" >
  10892. <productMenu id="protocol"
  10893. type="2" >
  10894. </productMenu>
  10895. <productMenu id="alexa"
  10896. type="0" >
  10897. </productMenu>
  10898. <productMenu id="ota"
  10899. type="0" >
  10900. </productMenu>
  10901. <productMenu id="wa"
  10902. type="0" >
  10903. </productMenu>
  10904. <productMenu id="meshIntercom"
  10905. type="20" >
  10906. </productMenu>
  10907. <productMenu id="meshIntercom+"
  10908. type="3"
  10909. url="0" >
  10910. <productMenuType version="1.0.9"
  10911. type="2"
  10912. />
  10913. </productMenu>
  10914. <productMenu id="phone"
  10915. type="1" >
  10916. </productMenu>
  10917. <productMenu id="music"
  10918. type="1" >
  10919. </productMenu>
  10920. <productMenu id="fmradio"
  10921. type="1" >
  10922. </productMenu>
  10923. <productMenu id="deviceSetting"
  10924. type="1"
  10925. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10926. <productMenuURL version="1.0.9"
  10927. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10928. />
  10929. </productMenu>
  10930. <productMenu id="quickGuide"
  10931. type="1"
  10932. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10933. size="1.12MB" >
  10934. </productMenu>
  10935. <productMenu id="userGuide"
  10936. type="1"
  10937. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10938. size="2.0MB" >
  10939. </productMenu>
  10940. <productMenu id="volume"
  10941. type="13" >
  10942. </productMenu>
  10943. <productMenu id="battery"
  10944. type="1" >
  10945. </productMenu>
  10946. <productID id="5553"
  10947. />
  10948. <productGroupable type="0"
  10949. />
  10950. </product>
  10951. <product id="XCOM3Pro"
  10952. name="X-COM3 Pro"
  10953. series="50"
  10954. latestVersion="1.1"
  10955. show = "0" >
  10956. <productMenu id="protocol"
  10957. type="2" >
  10958. </productMenu>
  10959. <productMenu id="alexa"
  10960. type="0" >
  10961. </productMenu>
  10962. <productMenu id="ota"
  10963. type="0" >
  10964. </productMenu>
  10965. <productMenu id="wa"
  10966. type="0" >
  10967. </productMenu>
  10968. <productMenu id="sip"
  10969. type="1" >
  10970. </productMenu>
  10971. <productMenu id="meshIntercom"
  10972. type="30" >
  10973. </productMenu>
  10974. <productMenu id="meshIntercom+"
  10975. type="3"
  10976. url="2" >
  10977. <productMenuType version="1.1"
  10978. type="2"
  10979. />
  10980. </productMenu>
  10981. <productMenu id="waveIntercom"
  10982. type="1" >
  10983. <productMenuType version="1.1"
  10984. type="0"
  10985. />
  10986. </productMenu>
  10987. <productMenu id="bluetoothIntercom"
  10988. type="1" >
  10989. </productMenu>
  10990. <productMenu id="phone"
  10991. type="1" >
  10992. </productMenu>
  10993. <productMenu id="music"
  10994. type="1" >
  10995. </productMenu>
  10996. <productMenu id="fmradio"
  10997. type="1" >
  10998. </productMenu>
  10999. <productMenu id="deviceSetting"
  11000. type="1"
  11001. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  11002. <productMenuURL version="1.1"
  11003. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  11004. />
  11005. </productMenu>
  11006. <productMenu id="quickGuide"
  11007. type="0"
  11008. url=""
  11009. size="344KB" >
  11010. </productMenu>
  11011. <productMenu id="userGuide"
  11012. type="1"
  11013. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  11014. size="3.41MB" >
  11015. </productMenu>
  11016. <productMenu id="volume"
  11017. type="11" >
  11018. </productMenu>
  11019. <productMenu id="battery"
  11020. type="1" >
  11021. </productMenu>
  11022. <productID id="321A"
  11023. />
  11024. <productGroupable type="0"
  11025. />
  11026. </product>
  11027. <product id="XCOM3"
  11028. name="X-COM3"
  11029. series="20"
  11030. latestVersion="1.0"
  11031. show = "0" >
  11032. <productMenu id="protocol"
  11033. type="2" >
  11034. </productMenu>
  11035. <productMenu id="sip"
  11036. type="1" >
  11037. </productMenu>
  11038. <productMenu id="bluetoothIntercom"
  11039. type="1" >
  11040. </productMenu>
  11041. <productMenu id="phone"
  11042. type="1" >
  11043. </productMenu>
  11044. <productMenu id="music"
  11045. type="1" >
  11046. </productMenu>
  11047. <productMenu id="fmradio"
  11048. type="1" >
  11049. </productMenu>
  11050. <productMenu id="deviceSetting"
  11051. type="1"
  11052. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  11053. </productMenu>
  11054. <productMenu id="quickGuide"
  11055. type="0"
  11056. url=""
  11057. size="934KB" >
  11058. </productMenu>
  11059. <productMenu id="userGuide"
  11060. type="1"
  11061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  11062. size="1.14MB" >
  11063. </productMenu>
  11064. <productMenu id="volume"
  11065. type="15" >
  11066. </productMenu>
  11067. <productID id="3410"
  11068. />
  11069. <productGroupable type="0"
  11070. />
  11071. </product>
  11072. <product id="X-COM2"
  11073. name="X-COM2"
  11074. series="20"
  11075. latestVersion="1.0.5"
  11076. show = "0" >
  11077. <productMenu id="protocol"
  11078. type="0">
  11079. </productMenu>
  11080. <productMenu id="sip"
  11081. type="1" >
  11082. </productMenu>
  11083. <productMenu id="bluetoothIntercom"
  11084. type="1" >
  11085. </productMenu>
  11086. <productMenu id="intercomSetting"
  11087. type="1" >
  11088. </productMenu>
  11089. <productMenu id="phone"
  11090. type="2" >
  11091. </productMenu>
  11092. <productMenu id="fmradio"
  11093. type="3" >
  11094. </productMenu>
  11095. <productMenu id="deviceSetting"
  11096. type="1"
  11097. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  11098. </productMenu>
  11099. <productMenu id="quickGuide"
  11100. type="1"
  11101. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  11102. size="796KB" >
  11103. </productMenu>
  11104. <productMenu id="userGuide"
  11105. type="1"
  11106. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  11107. size="1.90MB" >
  11108. </productMenu>
  11109. <productID id="2030"
  11110. />
  11111. <productGroupable type="1"
  11112. />
  11113. </product>
  11114. <product id="AVAABC"
  11115. name="AVA ABC"
  11116. series="SPIDER"
  11117. latestVersion="1.1"
  11118. show = "0" >
  11119. <productMenu id="protocol"
  11120. type="2" >
  11121. </productMenu>
  11122. <productMenu id="alexa"
  11123. type="0" >
  11124. </productMenu>
  11125. <productMenu id="ota"
  11126. type="0" >
  11127. <productMenuType version="1.0"
  11128. type="0"
  11129. />
  11130. <otaPackages>
  11131. <package
  11132. url="https://api.sena.com/support/OTA/"
  11133. size="2945812"
  11134. />
  11135. </otaPackages>
  11136. </productMenu>
  11137. <productMenu id="wa"
  11138. type="0" >
  11139. </productMenu>
  11140. <productMenu id="meshIntercom"
  11141. type="30" >
  11142. <productMenuType version="1.0"
  11143. type="20"
  11144. />
  11145. </productMenu>
  11146. <productMenu id="meshIntercom+"
  11147. type="3"
  11148. url="2" >
  11149. <productMenuType version="1.0"
  11150. type="2"
  11151. />
  11152. <productMenuURL version="1.0"
  11153. url="0"
  11154. />
  11155. </productMenu>
  11156. <productMenu id="waveIntercom"
  11157. type="1" >
  11158. <productMenuType version="1.0"
  11159. type="0"
  11160. />
  11161. </productMenu>
  11162. <productMenu id="phone"
  11163. type="1" >
  11164. </productMenu>
  11165. <productMenu id="music"
  11166. type="1" >
  11167. </productMenu>
  11168. <productMenu id="musicSharing"
  11169. type="0" >
  11170. </productMenu>
  11171. <productMenu id="deviceSetting"
  11172. type="1"
  11173. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11174. <productMenuURL version="1.0"
  11175. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11176. />
  11177. </productMenu>
  11178. <productMenu id="quickGuide"
  11179. type="1"
  11180. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11181. size="1.12MB" >
  11182. </productMenu>
  11183. <productMenu id="userGuide"
  11184. type="1"
  11185. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11186. size="2.0MB" >
  11187. </productMenu>
  11188. <productMenu id="volume"
  11189. type="12" >
  11190. </productMenu>
  11191. <productMenu id="battery"
  11192. type="1" >
  11193. </productMenu>
  11194. <productID id="6808"
  11195. />
  11196. <productGroupable type="0"
  11197. />
  11198. </product>
  11199. <product id="ADVANCEProCOM2"
  11200. name="ADVANCE ProCOM 2"
  11201. series="Helmet"
  11202. latestVersion="0.5"
  11203. latestVersionVoicePrompt="0.3"
  11204. show = "-1" >
  11205. <productMenu id="protocol"
  11206. type="2" >
  11207. </productMenu>
  11208. <productMenu id="ota"
  11209. type="2" >
  11210. <otaLanguages>
  11211. <otaLanguage
  11212. id="0"
  11213. name="English"
  11214. package="0"
  11215. />
  11216. <otaLanguage
  11217. id="0"
  11218. name="French"
  11219. package="1"
  11220. />
  11221. <otaLanguage
  11222. id="0"
  11223. name="Spanish"
  11224. package="2"
  11225. />
  11226. <otaLanguage
  11227. id="0"
  11228. name="Italian"
  11229. package="3"
  11230. />
  11231. <otaLanguage
  11232. id="0"
  11233. name="German"
  11234. package="4"
  11235. />
  11236. <otaLanguage
  11237. id="0"
  11238. name="Dutch"
  11239. package="5"
  11240. />
  11241. <otaLanguage
  11242. id="0"
  11243. name="Russian"
  11244. package="6"
  11245. />
  11246. <otaLanguage
  11247. id="0"
  11248. name="Chinese"
  11249. package="7"
  11250. />
  11251. <otaLanguage
  11252. id="0"
  11253. name="Korean"
  11254. package="8"
  11255. />
  11256. <otaLanguage
  11257. id="0"
  11258. name="Japanese"
  11259. package="9"
  11260. />
  11261. <otaLanguage
  11262. id="0"
  11263. name="Finnish"
  11264. package="10"
  11265. />
  11266. <otaLanguage
  11267. id="0"
  11268. name="Polish"
  11269. package="11"
  11270. />
  11271. </otaLanguages>
  11272. <otaPackages>
  11273. <package
  11274. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11275. size="5183988"
  11276. />
  11277. <package
  11278. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11279. size="5183988"
  11280. />
  11281. <package
  11282. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11283. size="5183988"
  11284. />
  11285. <package
  11286. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11287. size="5183988"
  11288. />
  11289. <package
  11290. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11291. size="5183988"
  11292. />
  11293. <package
  11294. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11295. size="5183988"
  11296. />
  11297. <package
  11298. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11299. size="5183988"
  11300. />
  11301. <package
  11302. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11303. size="5183988"
  11304. />
  11305. <package
  11306. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11307. size="5183988"
  11308. />
  11309. <package
  11310. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11311. size="5183988"
  11312. />
  11313. <package
  11314. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11315. size="5183988"
  11316. />
  11317. <package
  11318. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11319. size="5183988"
  11320. />
  11321. </otaPackages>
  11322. </productMenu>
  11323. <productMenu id="wa"
  11324. type="0" >
  11325. </productMenu>
  11326. <productMenu id="meshIntercom"
  11327. type="30" >
  11328. </productMenu>
  11329. <productMenu id="meshIntercom+"
  11330. type="3"
  11331. url="2" >
  11332. </productMenu>
  11333. <productMenu id="waveIntercom"
  11334. type="1" >
  11335. </productMenu>
  11336. <productMenu id="fmradio"
  11337. type="1" >
  11338. </productMenu>
  11339. <productMenu id="phone"
  11340. type="0" >
  11341. </productMenu>
  11342. <productMenu id="music"
  11343. type="1" >
  11344. </productMenu>
  11345. <productMenu id="musicSharing"
  11346. type="0" >
  11347. </productMenu>
  11348. <productMenu id="deviceSetting"
  11349. type="1"
  11350. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11351. </productMenu>
  11352. <productMenu id="quickGuide"
  11353. type="0"
  11354. url=""
  11355. size="1.12MB" >
  11356. </productMenu>
  11357. <productMenu id="userGuide"
  11358. type="1"
  11359. url=""
  11360. size="2.0MB" >
  11361. </productMenu>
  11362. <productMenu id="videoGuide"
  11363. type="0"
  11364. url=""
  11365. size="3.41MB" >
  11366. </productMenu>
  11367. <productMenu id="connectGuide"
  11368. type="1"
  11369. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11370. size="1.12MB" >
  11371. </productMenu>
  11372. <productMenu id="volume"
  11373. type="16" >
  11374. </productMenu>
  11375. <productMenu id="battery"
  11376. type="1" >
  11377. </productMenu>
  11378. <productID id="6A85"
  11379. />
  11380. <productGroupable type="0"
  11381. />
  11382. </product>
  11383. <product id="TRIUMPH60X"
  11384. name="TRIUMPH 60X"
  11385. series="60"
  11386. latestVersion="1.0"
  11387. latestVersionMesh="0.19"
  11388. latestVersionVoicePrompt="1.7"
  11389. show = "-1" >
  11390. <productMenu id="protocol"
  11391. type="2" >
  11392. </productMenu>
  11393. <productMenu id="ota"
  11394. type="0" >
  11395. <otaLanguages>
  11396. <otaLanguage
  11397. id="0"
  11398. name="English"
  11399. package="0"
  11400. />
  11401. <otaLanguage
  11402. id="0"
  11403. name="French"
  11404. package="1"
  11405. />
  11406. <otaLanguage
  11407. id="0"
  11408. name="Spanish"
  11409. package="2"
  11410. />
  11411. <otaLanguage
  11412. id="0"
  11413. name="Italian"
  11414. package="3"
  11415. />
  11416. <otaLanguage
  11417. id="0"
  11418. name="German"
  11419. package="4"
  11420. />
  11421. <otaLanguage
  11422. id="0"
  11423. name="Dutch"
  11424. package="5"
  11425. />
  11426. <otaLanguage
  11427. id="0"
  11428. name="Russian"
  11429. package="6"
  11430. />
  11431. <otaLanguage
  11432. id="0"
  11433. name="Chinese"
  11434. package="7"
  11435. />
  11436. <otaLanguage
  11437. id="0"
  11438. name="Korean"
  11439. package="8"
  11440. />
  11441. <otaLanguage
  11442. id="0"
  11443. name="Japanese"
  11444. package="9"
  11445. />
  11446. <otaLanguage
  11447. id="0"
  11448. name="Finnish"
  11449. package="10"
  11450. />
  11451. <otaLanguage
  11452. id="0"
  11453. name="Polish"
  11454. package="11"
  11455. />
  11456. </otaLanguages>
  11457. <otaPackages>
  11458. <package
  11459. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1.img"
  11460. size="5183988"
  11461. />
  11462. <package
  11463. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fr-FR.img"
  11464. size="5183988"
  11465. />
  11466. <package
  11467. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-es-ES.img"
  11468. size="5183988"
  11469. />
  11470. <package
  11471. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-it-IT.img"
  11472. size="5183988"
  11473. />
  11474. <package
  11475. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-de-DE.img"
  11476. size="5183988"
  11477. />
  11478. <package
  11479. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-nl-NL.img"
  11480. size="5183988"
  11481. />
  11482. <package
  11483. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ru-RU.img"
  11484. size="5183988"
  11485. />
  11486. <package
  11487. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-cmn-CN.img"
  11488. size="5183988"
  11489. />
  11490. <package
  11491. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ko-KR.img"
  11492. size="5183988"
  11493. />
  11494. <package
  11495. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-ja-JP.img"
  11496. size="5183988"
  11497. />
  11498. <package
  11499. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-fi-FI.img"
  11500. size="5183988"
  11501. />
  11502. <package
  11503. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0.1-build1-pl-PL.img"
  11504. size="5183988"
  11505. />
  11506. </otaPackages>
  11507. </productMenu>
  11508. <productMenu id="wa"
  11509. type="0" >
  11510. </productMenu>
  11511. <productMenu id="sip"
  11512. type="1" >
  11513. </productMenu>
  11514. <productMenu id="led"
  11515. type="1" >
  11516. </productMenu>
  11517. <productMenu id="illusion"
  11518. type="1" >
  11519. </productMenu>
  11520. <productMenu id="meshIntercom"
  11521. type="30" >
  11522. </productMenu>
  11523. <productMenu id="meshIntercom+"
  11524. type="3"
  11525. url="2" >
  11526. </productMenu>
  11527. <productMenu id="bluetoothIntercom"
  11528. type="1" >
  11529. </productMenu>
  11530. <productMenu id="fmradio"
  11531. type="1"
  11532. url="1" >
  11533. </productMenu>
  11534. <productMenu id="mic"
  11535. type="0" >
  11536. </productMenu>
  11537. <productMenu id="phone"
  11538. type="1" >
  11539. </productMenu>
  11540. <productMenu id="music"
  11541. type="1" >
  11542. </productMenu>
  11543. <productMenu id="musicSharing"
  11544. type="0" >
  11545. </productMenu>
  11546. <productMenu id="deviceSetting"
  11547. type="1"
  11548. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11549. </productMenu>
  11550. <productMenu id="quickGuide"
  11551. type="0"
  11552. url=""
  11553. size="1.12MB" >
  11554. </productMenu>
  11555. <productMenu id="userGuide"
  11556. type="1"
  11557. url=""
  11558. size="2.0MB" >
  11559. </productMenu>
  11560. <productMenu id="videoGuide"
  11561. type="0"
  11562. url=""
  11563. size="3.41MB" >
  11564. </productMenu>
  11565. <productMenu id="keySettings"
  11566. type="1"
  11567. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11568. </productMenu>
  11569. <productMenu id="volume"
  11570. type="13" >
  11571. </productMenu>
  11572. <productMenu id="volume+"
  11573. type="2"
  11574. url="0x6004" >
  11575. </productMenu>
  11576. <productMenu id="battery"
  11577. type="1" >
  11578. </productMenu>
  11579. <productID id="6A1C"
  11580. />
  11581. <productGroupable type="0"
  11582. />
  11583. </product>
  11584. <product id="Triumph_50S"
  11585. name="Triumph 50S"
  11586. series="50"
  11587. latestVersion="1.5"
  11588. show = "0" >
  11589. <productMenu id="protocol"
  11590. type="2" >
  11591. </productMenu>
  11592. <productMenu id="alexa"
  11593. type="0" >
  11594. </productMenu>
  11595. <productMenu id="ota"
  11596. type="0"
  11597. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11598. size="1150234" >
  11599. </productMenu>
  11600. <productMenu id="wa"
  11601. type="1" >
  11602. </productMenu>
  11603. <productMenu id="sip"
  11604. type="1" >
  11605. </productMenu>
  11606. <productMenu id="meshIntercom"
  11607. type="20" >
  11608. </productMenu>
  11609. <productMenu id="bluetoothIntercom"
  11610. type="1" >
  11611. </productMenu>
  11612. <productMenu id="meshIntercom+"
  11613. type="3"
  11614. url="2" >
  11615. <productMenuType version="1.2.9"
  11616. type="2"
  11617. />
  11618. <productMenuURL version="1.2.9"
  11619. url="0"
  11620. />
  11621. </productMenu>
  11622. <productMenu id="waveIntercom"
  11623. type="1" >
  11624. <productMenuType version="1.2.9"
  11625. type="0"
  11626. />
  11627. </productMenu>
  11628. <productMenu id="phone"
  11629. type="1" >
  11630. </productMenu>
  11631. <productMenu id="music"
  11632. type="1" >
  11633. </productMenu>
  11634. <productMenu id="fmradio"
  11635. type="1" >
  11636. </productMenu>
  11637. <productMenu id="deviceSetting"
  11638. type="1"
  11639. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11640. <productMenuURL version="1.2.9"
  11641. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11642. />
  11643. <productMenuURL version="1.0"
  11644. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11645. />
  11646. </productMenu>
  11647. <productMenu id="quickGuide"
  11648. type="1"
  11649. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11650. size="934KB" >
  11651. </productMenu>
  11652. <productMenu id="userGuide"
  11653. type="1"
  11654. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11655. size="1.14MB" >
  11656. </productMenu>
  11657. <productMenu id="volume"
  11658. type="11" >
  11659. </productMenu>
  11660. <productMenu id="battery"
  11661. type="1" >
  11662. </productMenu>
  11663. <productID id="3264"
  11664. />
  11665. <productGroupable type="0"
  11666. />
  11667. </product>
  11668. <product id="RE50S"
  11669. name="RE 50S"
  11670. series="50"
  11671. latestVersion="2.7"
  11672. show = "0" >
  11673. <productMenu id="protocol"
  11674. type="2" >
  11675. </productMenu>
  11676. <productMenu id="alexa"
  11677. type="0" >
  11678. </productMenu>
  11679. <productMenu id="ota"
  11680. type="0"
  11681. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11682. size="1150234" >
  11683. </productMenu>
  11684. <productMenu id="wa"
  11685. type="1" >
  11686. </productMenu>
  11687. <productMenu id="sip"
  11688. type="1" >
  11689. </productMenu>
  11690. <productMenu id="meshIntercom"
  11691. type="30" >
  11692. </productMenu>
  11693. <productMenu id="meshIntercom+"
  11694. type="3"
  11695. url="2" >
  11696. <productMenuType version="2.5"
  11697. type="2"
  11698. />
  11699. </productMenu>
  11700. <productMenu id="waveIntercom"
  11701. type="1" >
  11702. <productMenuType version="2.5"
  11703. type="0"
  11704. />
  11705. </productMenu>
  11706. <productMenu id="bluetoothIntercom"
  11707. type="1" >
  11708. </productMenu>
  11709. <productMenu id="phone"
  11710. type="1" >
  11711. </productMenu>
  11712. <productMenu id="music"
  11713. type="1" >
  11714. </productMenu>
  11715. <productMenu id="fmradio"
  11716. type="1" >
  11717. </productMenu>
  11718. <productMenu id="deviceSetting"
  11719. type="1"
  11720. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11721. <productMenuURL version="2.5.9"
  11722. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11723. />
  11724. </productMenu>
  11725. <productMenu id="quickGuide"
  11726. type="1"
  11727. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11728. size="934KB" >
  11729. </productMenu>
  11730. <productMenu id="userGuide"
  11731. type="1"
  11732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11733. size="1.14MB" >
  11734. </productMenu>
  11735. <productMenu id="videoGuide"
  11736. type="0"
  11737. url=""
  11738. size="3.41MB" >
  11739. </productMenu>
  11740. <productMenu id="volume"
  11741. type="11" >
  11742. </productMenu>
  11743. <productMenu id="battery"
  11744. type="1" >
  11745. </productMenu>
  11746. <productID id="321C"
  11747. />
  11748. <productGroupable type="0"
  11749. />
  11750. </product>
  11751. <product id="BMW_HELMET_II_U1"
  11752. name="BMW HELMET II U1"
  11753. series="50"
  11754. latestVersion="1.0"
  11755. show = "0" >
  11756. <productMenu id="protocol"
  11757. type="2" >
  11758. </productMenu>
  11759. <productMenu id="alexa"
  11760. type="0" >
  11761. </productMenu>
  11762. <productMenu id="sip"
  11763. type="1" >
  11764. </productMenu>
  11765. <productMenu id="meshIntercom"
  11766. type="20" >
  11767. </productMenu>
  11768. <productMenu id="bluetoothIntercom"
  11769. type="1" >
  11770. </productMenu>
  11771. <productMenu id="bluetoothIntercom2"
  11772. type="1" >
  11773. </productMenu>
  11774. <productMenu id="phone"
  11775. type="1" >
  11776. </productMenu>
  11777. <productMenu id="music"
  11778. type="1" >
  11779. </productMenu>
  11780. <productMenu id="fmradio"
  11781. type="1" >
  11782. </productMenu>
  11783. <productMenu id="deviceSetting"
  11784. type="1"
  11785. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11786. </productMenu>
  11787. <productMenu id="quickGuide"
  11788. type="1"
  11789. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11790. size="934KB" >
  11791. </productMenu>
  11792. <productMenu id="userGuide"
  11793. type="1"
  11794. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11795. size="1.14MB" >
  11796. </productMenu>
  11797. <productMenu id="volume"
  11798. type="11" >
  11799. </productMenu>
  11800. <productMenu id="battery"
  11801. type="1" >
  11802. </productMenu>
  11803. <productID id="3260"
  11804. />
  11805. <productGroupable type="0"
  11806. />
  11807. </product>
  11808. <product id="OUTRUSHR"
  11809. name="CX935"
  11810. series="Helmet"
  11811. latestVersion="2.1"
  11812. show = "-1" >
  11813. <productMenu id="protocol"
  11814. type="3">
  11815. </productMenu>
  11816. <productMenu id="sip"
  11817. type="1" >
  11818. </productMenu>
  11819. <productMenu id="bluetoothIntercom"
  11820. type="1" >
  11821. </productMenu>
  11822. <productMenu id="phone"
  11823. type="1" >
  11824. </productMenu>
  11825. <productMenu id="fmradio"
  11826. type="0" >
  11827. </productMenu>
  11828. <productMenu id="deviceSetting"
  11829. type="1"
  11830. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11831. </productMenu>
  11832. <productMenu id="userGuide"
  11833. type="1"
  11834. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11835. size="660KB" >
  11836. </productMenu>
  11837. <productID id="5446"
  11838. />
  11839. <productGroupable type="0"
  11840. />
  11841. </product>
  11842. <product id="LSE_01"
  11843. name="LSE-01"
  11844. series="SF"
  11845. latestVersion="1.2.3"
  11846. show = "0" >
  11847. <productMenu id="protocol"
  11848. type="1"
  11849. url="3">
  11850. </productMenu>
  11851. <productMenu id="sip"
  11852. type="1" >
  11853. </productMenu>
  11854. <productMenu id="bluetoothIntercom"
  11855. type="1" >
  11856. </productMenu>
  11857. <productMenu id="phone"
  11858. type="1" >
  11859. </productMenu>
  11860. <productMenu id="music"
  11861. type="1" >
  11862. </productMenu>
  11863. <productMenu id="fmradio"
  11864. type="1" >
  11865. </productMenu>
  11866. <productMenu id="deviceSetting"
  11867. type="1"
  11868. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11869. <productMenuURL version="1.1"
  11870. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11871. />
  11872. <productMenuURL version="1.0"
  11873. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11874. />
  11875. </productMenu>
  11876. <productMenu id="quickGuide"
  11877. type="1"
  11878. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11879. size="607KB" >
  11880. </productMenu>
  11881. <productMenu id="userGuide"
  11882. type="1"
  11883. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11884. size="1.91MB" >
  11885. </productMenu>
  11886. <productMenu id="volume"
  11887. type="4" >
  11888. </productMenu>
  11889. <productID id="5416"
  11890. />
  11891. <productGroupable type="0"
  11892. />
  11893. </product>
  11894. <product id="AGV_ARK"
  11895. name="AGV ARK"
  11896. series="SF"
  11897. latestVersion="1.0.3"
  11898. show = "0" >
  11899. <productMenu id="protocol"
  11900. type="1"
  11901. url="3">
  11902. </productMenu>
  11903. <productMenu id="sip"
  11904. type="1" >
  11905. </productMenu>
  11906. <productMenu id="bluetoothIntercom"
  11907. type="1" >
  11908. </productMenu>
  11909. <productMenu id="phone"
  11910. type="1" >
  11911. </productMenu>
  11912. <productMenu id="music"
  11913. type="1" >
  11914. </productMenu>
  11915. <productMenu id="fmradio"
  11916. type="1" >
  11917. </productMenu>
  11918. <productMenu id="deviceSetting"
  11919. type="1"
  11920. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11921. </productMenu>
  11922. <productMenu id="quickGuide"
  11923. type="1"
  11924. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11925. size="607KB" >
  11926. </productMenu>
  11927. <productMenu id="userGuide"
  11928. type="1"
  11929. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11930. size="1.91MB" >
  11931. </productMenu>
  11932. <productMenu id="volume"
  11933. type="4" >
  11934. </productMenu>
  11935. <productID id="5420"
  11936. />
  11937. <productGroupable type="0"
  11938. />
  11939. </product>
  11940. <product id="KLIM_KRIOS"
  11941. name="KLIM Krios"
  11942. series="10"
  11943. latestVersion="1.1.2"
  11944. show = "0" >
  11945. <productMenu id="protocol"
  11946. type="0">
  11947. </productMenu>
  11948. <productMenu id="sip"
  11949. type="1" >
  11950. </productMenu>
  11951. <productMenu id="bluetoothIntercom"
  11952. type="1" >
  11953. </productMenu>
  11954. <productMenu id="phone"
  11955. type="2" >
  11956. </productMenu>
  11957. <productMenu id="fmradio"
  11958. type="3" >
  11959. </productMenu>
  11960. <productMenu id="deviceSetting"
  11961. type="1"
  11962. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11963. <productMenuURL version="1.0"
  11964. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11965. />
  11966. </productMenu>
  11967. <productMenu id="quickGuide"
  11968. type="1"
  11969. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11970. size="649KB" >
  11971. </productMenu>
  11972. <productMenu id="userGuide"
  11973. type="1"
  11974. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11975. size="1.43MB" >
  11976. </productMenu>
  11977. <productID id="5910"
  11978. />
  11979. <productGroupable type="0"
  11980. />
  11981. </product>
  11982. <product id="POLARIS_SLINGSHOT"
  11983. name="Polaris Slingshot"
  11984. series="10"
  11985. latestVersion="1.1.2"
  11986. show = "0" >
  11987. <productMenu id="protocol"
  11988. type="0">
  11989. </productMenu>
  11990. <productMenu id="sip"
  11991. type="1" >
  11992. </productMenu>
  11993. <productMenu id="bluetoothIntercom"
  11994. type="1" >
  11995. </productMenu>
  11996. <productMenu id="phone"
  11997. type="2" >
  11998. </productMenu>
  11999. <productMenu id="fmradio"
  12000. type="3" >
  12001. </productMenu>
  12002. <productMenu id="deviceSetting"
  12003. type="1"
  12004. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  12005. <productMenuURL version="1.0"
  12006. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  12007. />
  12008. </productMenu>
  12009. <productMenu id="quickGuide"
  12010. type="1"
  12011. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  12012. size="689KB" >
  12013. </productMenu>
  12014. <productMenu id="userGuide"
  12015. type="1"
  12016. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  12017. size="1.43MB" >
  12018. </productMenu>
  12019. <productID id="5920"
  12020. />
  12021. <productGroupable type="0"
  12022. />
  12023. </product>
  12024. <product id="DWO6"
  12025. name="SEDICI DWO6-PRO"
  12026. series="10"
  12027. latestVersion="1.0.2"
  12028. show = "0" >
  12029. <productMenu id="protocol"
  12030. type="0">
  12031. </productMenu>
  12032. <productMenu id="sip"
  12033. type="1" >
  12034. </productMenu>
  12035. <productMenu id="bluetoothIntercom"
  12036. type="1" >
  12037. </productMenu>
  12038. <productMenu id="phone"
  12039. type="2" >
  12040. </productMenu>
  12041. <productMenu id="fmradio"
  12042. type="3" >
  12043. </productMenu>
  12044. <productMenu id="deviceSetting"
  12045. type="1"
  12046. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  12047. </productMenu>
  12048. <productMenu id="quickGuide"
  12049. type="1"
  12050. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12051. size="529KB" >
  12052. </productMenu>
  12053. <productMenu id="userGuide"
  12054. type="1"
  12055. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  12056. size="4.09MB" >
  12057. </productMenu>
  12058. <productID id="6112"
  12059. />
  12060. <productGroupable type="0"
  12061. />
  12062. </product>
  12063. <product id="DWO6A"
  12064. name="SEDICI DWO-6"
  12065. series="10"
  12066. latestVersion="1.0.2"
  12067. show = "0" >
  12068. <productMenu id="protocol"
  12069. type="0">
  12070. </productMenu>
  12071. <productMenu id="sip"
  12072. type="1" >
  12073. </productMenu>
  12074. <productMenu id="bluetoothIntercom"
  12075. type="1" >
  12076. </productMenu>
  12077. <productMenu id="phone"
  12078. type="2" >
  12079. </productMenu>
  12080. <productMenu id="fmradio"
  12081. type="3" >
  12082. </productMenu>
  12083. <productMenu id="deviceSetting"
  12084. type="1"
  12085. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  12086. </productMenu>
  12087. <productMenu id="quickGuide"
  12088. type="1"
  12089. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  12090. size="522KB" >
  12091. </productMenu>
  12092. <productMenu id="userGuide"
  12093. type="1"
  12094. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  12095. size="2.71MB" >
  12096. </productMenu>
  12097. <productID id="6114"
  12098. />
  12099. <productGroupable type="0"
  12100. />
  12101. </product>
  12102. <product id="3SPLUS"
  12103. name="ZILL"
  12104. series="3"
  12105. latestVersion="1.0.4"
  12106. show = "0" >
  12107. <productMenu id="protocol"
  12108. type="0">
  12109. </productMenu>
  12110. <productMenu id="sip"
  12111. type="1" >
  12112. </productMenu>
  12113. <productMenu id="bluetoothIntercom"
  12114. type="1" >
  12115. </productMenu>
  12116. <productMenu id="deviceSetting"
  12117. type="1"
  12118. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  12119. </productMenu>
  12120. <productMenu id="quickGuide"
  12121. type="1"
  12122. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  12123. size="842KB" >
  12124. </productMenu>
  12125. <productMenu id="userGuide"
  12126. type="1"
  12127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  12128. size="1.02MB" >
  12129. </productMenu>
  12130. <productID id="6335"
  12131. />
  12132. <productGroupable type="0"
  12133. />
  12134. </product>
  12135. <product id="HD50S"
  12136. name="Boom! Audio 30K"
  12137. series="30"
  12138. latestVersion="3.4"
  12139. show = "0" >
  12140. <productMenu id="protocol"
  12141. type="1"
  12142. url="0">
  12143. </productMenu>
  12144. <productMenu id="wa"
  12145. type="0" >
  12146. </productMenu>
  12147. <productMenu id="sip"
  12148. type="1" >
  12149. </productMenu>
  12150. <productMenu id="meshIntercom"
  12151. type="20" >
  12152. <productMenuType version="2.9.9"
  12153. type="10"
  12154. />
  12155. </productMenu>
  12156. <productMenu id="bluetoothIntercom"
  12157. type="1" >
  12158. </productMenu>
  12159. <productMenu id="phone"
  12160. type="1" >
  12161. </productMenu>
  12162. <productMenu id="music"
  12163. type="1" >
  12164. </productMenu>
  12165. <productMenu id="fmradio"
  12166. type="1" >
  12167. </productMenu>
  12168. <productMenu id="deviceSetting"
  12169. type="1"
  12170. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12171. <productMenuURL version="3.2"
  12172. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12173. />
  12174. <productMenuURL version="3.0"
  12175. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12176. />
  12177. <productMenuURL version="2.2"
  12178. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12179. />
  12180. </productMenu>
  12181. <productMenu id="quickGuide"
  12182. type="1"
  12183. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12184. size="1.06MB" >
  12185. </productMenu>
  12186. <productMenu id="userGuide"
  12187. type="1"
  12188. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12189. size="3.15MB" >
  12190. </productMenu>
  12191. <productMenu id="volume"
  12192. type="1" >
  12193. </productMenu>
  12194. <productID id="3112"
  12195. />
  12196. <productGroupable type="0"
  12197. />
  12198. </product>
  12199. <product id="HD50S"
  12200. name="Boom! Audio N02"
  12201. series="30"
  12202. latestVersion="3.1"
  12203. show = "0" >
  12204. <productMenu id="protocol"
  12205. type="1"
  12206. url="0">
  12207. </productMenu>
  12208. <productMenu id="wa"
  12209. type="2" >
  12210. </productMenu>
  12211. <productMenu id="sip"
  12212. type="1" >
  12213. </productMenu>
  12214. <productMenu id="meshIntercom"
  12215. type="20" >
  12216. <productMenuType version="2.9.9"
  12217. type="10"
  12218. />
  12219. </productMenu>
  12220. <productMenu id="bluetoothIntercom"
  12221. type="1" >
  12222. </productMenu>
  12223. <productMenu id="phone"
  12224. type="1" >
  12225. </productMenu>
  12226. <productMenu id="music"
  12227. type="1" >
  12228. </productMenu>
  12229. <productMenu id="fmradio"
  12230. type="1" >
  12231. </productMenu>
  12232. <productMenu id="deviceSetting"
  12233. type="1"
  12234. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12235. <productMenuURL version="2.2"
  12236. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12237. />
  12238. </productMenu>
  12239. <productMenu id="quickGuide"
  12240. type="1"
  12241. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12242. size="1.06MB" >
  12243. </productMenu>
  12244. <productMenu id="userGuide"
  12245. type="1"
  12246. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12247. size="3.15MB" >
  12248. </productMenu>
  12249. <productMenu id="volume"
  12250. type="2" >
  12251. </productMenu>
  12252. <productID id="3114"
  12253. />
  12254. <productGroupable type="0"
  12255. />
  12256. </product>
  12257. <product id="HD50S"
  12258. name="Boom Audio 20S"
  12259. series="50"
  12260. latestVersion="2.5.2"
  12261. show = "0" >
  12262. <productMenu id="protocol"
  12263. type="0">
  12264. </productMenu>
  12265. <productMenu id="sip"
  12266. type="1" >
  12267. <productMenuType version="1.0"
  12268. type="0"
  12269. />
  12270. </productMenu>
  12271. <productMenu id="bluetoothIntercom"
  12272. type="1" >
  12273. <productMenuType version="1.0"
  12274. type="0"
  12275. />
  12276. </productMenu>
  12277. <productMenu id="intercomSetting"
  12278. type="1" >
  12279. </productMenu>
  12280. <productMenu id="phone"
  12281. type="2" >
  12282. </productMenu>
  12283. <productMenu id="fmradio"
  12284. type="3" >
  12285. </productMenu>
  12286. <productMenu id="deviceSetting"
  12287. type="1"
  12288. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12289. <productMenuURL version="2.4"
  12290. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12291. />
  12292. <productMenuURL version="1.5"
  12293. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12294. />
  12295. <productMenuURL version="1.4.1"
  12296. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12297. />
  12298. <productMenuURL version="1.1"
  12299. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12300. />
  12301. <productMenuURL version="1.0"
  12302. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12303. />
  12304. </productMenu>
  12305. <productMenu id="quickGuide"
  12306. type="1"
  12307. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12308. size="264KB" >
  12309. </productMenu>
  12310. <productMenu id="userGuide"
  12311. type="1"
  12312. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12313. size="3.09MB" >
  12314. </productMenu>
  12315. <productMenu id="connectGuide"
  12316. type="1"
  12317. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12318. size="1.12MB" >
  12319. </productMenu>
  12320. <productID id="4210"
  12321. />
  12322. <productProductKey key="11"
  12323. />
  12324. <productID id="4230"
  12325. />
  12326. <productProductKey key="11"
  12327. />
  12328. <productGroupable type="1"
  12329. />
  12330. </product>
  12331. <product id="HD50S"
  12332. name="Boom Audio 20S EVO"
  12333. series="50"
  12334. latestVersion="2.5.2"
  12335. show = "0" >
  12336. <productMenu id="protocol"
  12337. type="0">
  12338. </productMenu>
  12339. <productMenu id="sip"
  12340. type="1" >
  12341. <productMenuType version="1.0"
  12342. type="0"
  12343. />
  12344. </productMenu>
  12345. <productMenu id="bluetoothIntercom"
  12346. type="1" >
  12347. <productMenuType version="1.0"
  12348. type="0"
  12349. />
  12350. </productMenu>
  12351. <productMenu id="intercomSetting"
  12352. type="1" >
  12353. </productMenu>
  12354. <productMenu id="phone"
  12355. type="2" >
  12356. </productMenu>
  12357. <productMenu id="fmradio"
  12358. type="3" >
  12359. </productMenu>
  12360. <productMenu id="deviceSetting"
  12361. type="1"
  12362. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12363. <productMenuURL version="2.4"
  12364. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12365. />
  12366. <productMenuURL version="1.5"
  12367. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12368. />
  12369. <productMenuURL version="1.4.1"
  12370. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12371. />
  12372. <productMenuURL version="1.1"
  12373. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12374. />
  12375. <productMenuURL version="1.0"
  12376. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12377. />
  12378. </productMenu>
  12379. <productMenu id="quickGuide"
  12380. type="1"
  12381. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12382. size="321KB" >
  12383. </productMenu>
  12384. <productMenu id="userGuide"
  12385. type="1"
  12386. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12387. size="2.46MB" >
  12388. </productMenu>
  12389. <productID id="4230"
  12390. />
  12391. <productProductKey key="27"
  12392. />
  12393. <productGroupable type="1"
  12394. />
  12395. </product>
  12396. <product id="HD50S"
  12397. name="Boom! Audio 10S"
  12398. series="50"
  12399. latestVersion="1.1.3"
  12400. show = "0" >
  12401. <productMenu id="protocol"
  12402. type="0">
  12403. </productMenu>
  12404. <productMenu id="sip"
  12405. type="1" >
  12406. </productMenu>
  12407. <productMenu id="bluetoothIntercom"
  12408. type="1" >
  12409. </productMenu>
  12410. <productMenu id="phone"
  12411. type="2" >
  12412. </productMenu>
  12413. <productMenu id="fmradio"
  12414. type="3" >
  12415. </productMenu>
  12416. <productMenu id="deviceSetting"
  12417. type="1"
  12418. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12419. </productMenu>
  12420. <productMenu id="quickGuide"
  12421. type="1"
  12422. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12423. size="538KB" >
  12424. </productMenu>
  12425. <productMenu id="userGuide"
  12426. type="1"
  12427. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12428. size="1.55MB" >
  12429. </productMenu>
  12430. <productID id="5532"
  12431. />
  12432. <productGroupable type="0"
  12433. />
  12434. </product>
  12435. <product id="HD50S"
  12436. name="Boom! Audio N01 10R"
  12437. series="50"
  12438. latestVersion="1.1.3"
  12439. show = "0" >
  12440. <productMenu id="protocol"
  12441. type="0">
  12442. </productMenu>
  12443. <productMenu id="sip"
  12444. type="1" >
  12445. </productMenu>
  12446. <productMenu id="bluetoothIntercom"
  12447. type="1" >
  12448. </productMenu>
  12449. <productMenu id="phone"
  12450. type="2" >
  12451. </productMenu>
  12452. <productMenu id="fmradio"
  12453. type="3" >
  12454. </productMenu>
  12455. <productMenu id="deviceSetting"
  12456. type="1"
  12457. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12458. </productMenu>
  12459. <productMenu id="quickGuide"
  12460. type="1"
  12461. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12462. size="766KB" >
  12463. </productMenu>
  12464. <productMenu id="userGuide"
  12465. type="1"
  12466. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12467. size="1.45MB" >
  12468. </productMenu>
  12469. <productID id="5522"
  12470. />
  12471. <productGroupable type="0"
  12472. />
  12473. </product>
  12474. <product id="HD50S"
  12475. name="OUTRUSH-R N03"
  12476. series="50"
  12477. latestVersion="1.2.1"
  12478. show = "-1" >
  12479. <productMenu id="protocol"
  12480. type="0">
  12481. </productMenu>
  12482. <productMenu id="sip"
  12483. type="1" >
  12484. </productMenu>
  12485. <productMenu id="bluetoothIntercom"
  12486. type="1" >
  12487. </productMenu>
  12488. <productMenu id="phone"
  12489. type="2" >
  12490. </productMenu>
  12491. <productMenu id="fmradio"
  12492. type="3" >
  12493. </productMenu>
  12494. <productMenu id="deviceSetting"
  12495. type="1"
  12496. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12497. </productMenu>
  12498. <productMenu id="userGuide"
  12499. type="1"
  12500. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12501. size="660KB" >
  12502. </productMenu>
  12503. <productID id="5434"
  12504. />
  12505. <productGroupable type="0"
  12506. />
  12507. </product>
  12508. <product id="HD50S"
  12509. name="OUTRUSH-R N03"
  12510. series="50"
  12511. latestVersion="2.0"
  12512. show = "0" >
  12513. <productMenu id="protocol"
  12514. type="3" >
  12515. </productMenu>
  12516. <productMenu id="sip"
  12517. type="1" >
  12518. </productMenu>
  12519. <productMenu id="bluetoothIntercom"
  12520. type="1" >
  12521. </productMenu>
  12522. <productMenu id="phone"
  12523. type="1" >
  12524. </productMenu>
  12525. <productMenu id="fmradio"
  12526. type="1" >
  12527. </productMenu>
  12528. <productMenu id="deviceSetting"
  12529. type="1"
  12530. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12531. </productMenu>
  12532. <productMenu id="userGuide"
  12533. type="1"
  12534. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12535. size="1.14MB" >
  12536. </productMenu>
  12537. <productID id="5441"
  12538. />
  12539. <productGroupable type="0"
  12540. />
  12541. </product>
  12542. <product id="5R"
  12543. name="5R"
  12544. series="5"
  12545. latestVersion="1.0.1"
  12546. show = "1" >
  12547. <productMenu id="protocol"
  12548. type="3" >
  12549. </productMenu>
  12550. <productMenu id="sip"
  12551. type="1" >
  12552. </productMenu>
  12553. <productMenu id="bluetoothIntercom"
  12554. type="1" >
  12555. </productMenu>
  12556. <productMenu id="phone"
  12557. type="1" >
  12558. </productMenu>
  12559. <productMenu id="fmradio"
  12560. type="1" >
  12561. </productMenu>
  12562. <productMenu id="deviceSetting"
  12563. type="1"
  12564. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12565. </productMenu>
  12566. <productMenu id="quickGuide"
  12567. type="0"
  12568. url=""
  12569. size="934KB" >
  12570. </productMenu>
  12571. <productMenu id="userGuide"
  12572. type="1"
  12573. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12574. size="1.14MB" >
  12575. </productMenu>
  12576. <productMenu id="connectGuide"
  12577. type="1"
  12578. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12579. size="1.12MB" >
  12580. </productMenu>
  12581. <productID id="5591"
  12582. />
  12583. <productGroupable type="0"
  12584. />
  12585. </product>
  12586. <product id="5R"
  12587. name="5R LITE"
  12588. series="5"
  12589. latestVersion="1.0.1"
  12590. show = "1" >
  12591. <productMenu id="protocol"
  12592. type="3" >
  12593. </productMenu>
  12594. <productMenu id="sip"
  12595. type="1" >
  12596. </productMenu>
  12597. <productMenu id="bluetoothIntercom"
  12598. type="1" >
  12599. </productMenu>
  12600. <productMenu id="phone"
  12601. type="1" >
  12602. </productMenu>
  12603. <productMenu id="fmradio"
  12604. type="1" >
  12605. </productMenu>
  12606. <productMenu id="deviceSetting"
  12607. type="1"
  12608. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12609. </productMenu>
  12610. <productMenu id="quickGuide"
  12611. type="0"
  12612. url=""
  12613. size="934KB" >
  12614. </productMenu>
  12615. <productMenu id="userGuide"
  12616. type="1"
  12617. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12618. size="1.14MB" >
  12619. </productMenu>
  12620. <productMenu id="connectGuide"
  12621. type="1"
  12622. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12623. size="1.12MB" >
  12624. </productMenu>
  12625. <productID id="5592"
  12626. />
  12627. <productGroupable type="0"
  12628. />
  12629. </product>
  12630. <product id="50RLE"
  12631. name="50R LE"
  12632. series="50"
  12633. latestVersion="1.1"
  12634. show = "0" >
  12635. <productMenu id="protocol"
  12636. type="2" >
  12637. </productMenu>
  12638. <productMenu id="alexa"
  12639. type="0" >
  12640. </productMenu>
  12641. <productMenu id="sip"
  12642. type="1" >
  12643. </productMenu>
  12644. <productMenu id="meshIntercom"
  12645. type="30" >
  12646. </productMenu>
  12647. <productMenu id="meshIntercom+"
  12648. type="3"
  12649. url="2" >
  12650. <productMenuType version="1.0.9"
  12651. type="2"
  12652. />
  12653. </productMenu>
  12654. <productMenu id="waveIntercom"
  12655. type="1" >
  12656. <productMenuType version="1.0.9"
  12657. type="0"
  12658. />
  12659. </productMenu>
  12660. <productMenu id="bluetoothIntercom"
  12661. type="1" >
  12662. </productMenu>
  12663. <productMenu id="phone"
  12664. type="1" >
  12665. </productMenu>
  12666. <productMenu id="music"
  12667. type="1" >
  12668. </productMenu>
  12669. <productMenu id="fmradio"
  12670. type="0" >
  12671. </productMenu>
  12672. <productMenu id="deviceSetting"
  12673. type="1"
  12674. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12675. <productMenuURL version="1.0.9"
  12676. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12677. />
  12678. </productMenu>
  12679. <productMenu id="quickGuide"
  12680. type="0"
  12681. url=""
  12682. size="344KB" >
  12683. </productMenu>
  12684. <productMenu id="userGuide"
  12685. type="0"
  12686. url=""
  12687. size="3.41MB" >
  12688. </productMenu>
  12689. <productMenu id="volume"
  12690. type="11" >
  12691. </productMenu>
  12692. <productMenu id="battery"
  12693. type="1" >
  12694. </productMenu>
  12695. <productID id="3223"
  12696. />
  12697. <productGroupable type="0"
  12698. />
  12699. </product>
  12700. <product id="5RLOUIS"
  12701. name="5R LOUIS EDITION"
  12702. series="5"
  12703. latestVersion="1.0"
  12704. show = "-1" >
  12705. <productMenu id="protocol"
  12706. type="3" >
  12707. </productMenu>
  12708. <productMenu id="sip"
  12709. type="1" >
  12710. </productMenu>
  12711. <productMenu id="bluetoothIntercom"
  12712. type="1" >
  12713. </productMenu>
  12714. <productMenu id="phone"
  12715. type="1" >
  12716. </productMenu>
  12717. <productMenu id="fmradio"
  12718. type="1" >
  12719. </productMenu>
  12720. <productMenu id="deviceSetting"
  12721. type="1"
  12722. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12723. </productMenu>
  12724. <productMenu id="quickGuide"
  12725. type="0"
  12726. url=""
  12727. size="934KB" >
  12728. </productMenu>
  12729. <productMenu id="userGuide"
  12730. type="0"
  12731. url=""
  12732. size="1.14MB" >
  12733. </productMenu>
  12734. <productID id="5597"
  12735. />
  12736. <productGroupable type="0"
  12737. />
  12738. </product>
  12739. <product id="5S"
  12740. name="Ridekont 5S"
  12741. series="5"
  12742. latestVersion="2.3"
  12743. show = "-1" >
  12744. <productMenu id="protocol"
  12745. type="3" >
  12746. </productMenu>
  12747. <productMenu id="sip"
  12748. type="1" >
  12749. </productMenu>
  12750. <productMenu id="bluetoothIntercom"
  12751. type="1" >
  12752. </productMenu>
  12753. <productMenu id="phone"
  12754. type="1" >
  12755. </productMenu>
  12756. <productMenu id="fmradio"
  12757. type="0" >
  12758. </productMenu>
  12759. <productMenu id="deviceSetting"
  12760. type="1"
  12761. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12762. </productMenu>
  12763. <productMenu id="quickGuide"
  12764. type="0"
  12765. url=""
  12766. size="934KB" >
  12767. </productMenu>
  12768. <productMenu id="userGuide"
  12769. type="1"
  12770. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12771. size="1.14MB" >
  12772. </productMenu>
  12773. <productID id="5589"
  12774. />
  12775. <productGroupable type="0"
  12776. />
  12777. </product>
  12778. <product id="5R"
  12779. name="Ridekont 5R"
  12780. series="5"
  12781. latestVersion="1.0"
  12782. show = "0" >
  12783. <productMenu id="protocol"
  12784. type="3" >
  12785. </productMenu>
  12786. <productMenu id="sip"
  12787. type="1" >
  12788. </productMenu>
  12789. <productMenu id="bluetoothIntercom"
  12790. type="1" >
  12791. </productMenu>
  12792. <productMenu id="phone"
  12793. type="1" >
  12794. </productMenu>
  12795. <productMenu id="fmradio"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="deviceSetting"
  12799. type="1"
  12800. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12801. </productMenu>
  12802. <productMenu id="quickGuide"
  12803. type="1"
  12804. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12805. size="934KB" >
  12806. </productMenu>
  12807. <productMenu id="userGuide"
  12808. type="1"
  12809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12810. size="1.14MB" >
  12811. </productMenu>
  12812. <productID id="5593"
  12813. />
  12814. <productGroupable type="0"
  12815. />
  12816. </product>
  12817. <product id="5R"
  12818. name="Ridekont 5R LITE"
  12819. series="5"
  12820. latestVersion="1.0"
  12821. show = "0" >
  12822. <productMenu id="protocol"
  12823. type="3" >
  12824. </productMenu>
  12825. <productMenu id="sip"
  12826. type="1" >
  12827. </productMenu>
  12828. <productMenu id="bluetoothIntercom"
  12829. type="1" >
  12830. </productMenu>
  12831. <productMenu id="phone"
  12832. type="1" >
  12833. </productMenu>
  12834. <productMenu id="fmradio"
  12835. type="1" >
  12836. </productMenu>
  12837. <productMenu id="deviceSetting"
  12838. type="1"
  12839. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12840. </productMenu>
  12841. <productMenu id="quickGuide"
  12842. type="0"
  12843. url=""
  12844. size="934KB" >
  12845. </productMenu>
  12846. <productMenu id="userGuide"
  12847. type="1"
  12848. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12849. size="1.14MB" >
  12850. </productMenu>
  12851. <productID id="5594"
  12852. />
  12853. <productGroupable type="0"
  12854. />
  12855. </product>
  12856. <product id="SA30"
  12857. name="SA30"
  12858. series="SA"
  12859. latestVersion="1.0.3"
  12860. latestVersionVoicePrompt="0.15"
  12861. show = "-1" >
  12862. <productMenu id="protocol"
  12863. type="2" >
  12864. </productMenu>
  12865. <productMenu id="ota"
  12866. type="2" >
  12867. <otaPackages>
  12868. <package
  12869. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12870. size="3144148"
  12871. />
  12872. </otaPackages>
  12873. </productMenu>
  12874. <productMenu id="meshIntercom"
  12875. type="30" >
  12876. </productMenu>
  12877. <productMenu id="meshIntercom+"
  12878. type="3"
  12879. url="2" >
  12880. </productMenu>
  12881. <productMenu id="phone"
  12882. type="1" >
  12883. </productMenu>
  12884. <productMenu id="music"
  12885. type="1" >
  12886. </productMenu>
  12887. <productMenu id="musicSharing"
  12888. type="0" >
  12889. </productMenu>
  12890. <productMenu id="deviceSetting"
  12891. type="1"
  12892. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12893. </productMenu>
  12894. <productMenu id="quickGuide"
  12895. type="0"
  12896. url=""
  12897. size="1.12MB" >
  12898. </productMenu>
  12899. <productMenu id="userGuide"
  12900. type="1"
  12901. url=""
  12902. size="2.0MB" >
  12903. </productMenu>
  12904. <productMenu id="videoGuide"
  12905. type="0"
  12906. url=""
  12907. size="3.41MB" >
  12908. </productMenu>
  12909. <productMenu id="volume"
  12910. type="12" >
  12911. </productMenu>
  12912. <productMenu id="battery"
  12913. type="1" >
  12914. </productMenu>
  12915. <productID id="6852"
  12916. />
  12917. <productGroupable type="0"
  12918. />
  12919. </product>
  12920. <product id="I30"
  12921. name="I30"
  12922. series="I"
  12923. latestVersion="1.0.3"
  12924. latestVersionVoicePrompt="0.2"
  12925. show = "-1" >
  12926. <productMenu id="protocol"
  12927. type="2" >
  12928. </productMenu>
  12929. <productMenu id="ota"
  12930. type="2" >
  12931. <otaPackages>
  12932. <package
  12933. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12934. size="3144148"
  12935. />
  12936. </otaPackages>
  12937. </productMenu>
  12938. <productMenu id="meshIntercom"
  12939. type="30" >
  12940. </productMenu>
  12941. <productMenu id="meshIntercom+"
  12942. type="3"
  12943. url="2" >
  12944. </productMenu>
  12945. <productMenu id="phone"
  12946. type="1" >
  12947. </productMenu>
  12948. <productMenu id="music"
  12949. type="1" >
  12950. </productMenu>
  12951. <productMenu id="musicSharing"
  12952. type="0" >
  12953. </productMenu>
  12954. <productMenu id="deviceSetting"
  12955. type="1"
  12956. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12957. </productMenu>
  12958. <productMenu id="quickGuide"
  12959. type="0"
  12960. url=""
  12961. size="1.12MB" >
  12962. </productMenu>
  12963. <productMenu id="userGuide"
  12964. type="1"
  12965. url=""
  12966. size="2.10MB" >
  12967. </productMenu>
  12968. <productMenu id="videoGuide"
  12969. type="0"
  12970. url=""
  12971. size="3.11MB" >
  12972. </productMenu>
  12973. <productMenu id="volume"
  12974. type="12" >
  12975. </productMenu>
  12976. <productMenu id="battery"
  12977. type="1" >
  12978. </productMenu>
  12979. <productID id="6853"
  12980. />
  12981. <productGroupable type="0"
  12982. />
  12983. </product>
  12984. <product id="LS2C30"
  12985. name="LS2-C30"
  12986. series="C"
  12987. latestVersion="1.0"
  12988. latestVersionVoicePrompt="0.13"
  12989. show = "-1" >
  12990. <productMenu id="protocol"
  12991. type="2" >
  12992. </productMenu>
  12993. <productMenu id="ota"
  12994. type="0" >
  12995. <otaPackages>
  12996. <package
  12997. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12998. size="3144148"
  12999. />
  13000. </otaPackages>
  13001. </productMenu>
  13002. <productMenu id="meshIntercom+"
  13003. type="3"
  13004. url="2" >
  13005. </productMenu>
  13006. <productMenu id="waveIntercom"
  13007. type="1" >
  13008. </productMenu>
  13009. <productMenu id="phone"
  13010. type="1" >
  13011. </productMenu>
  13012. <productMenu id="music"
  13013. type="1" >
  13014. </productMenu>
  13015. <productMenu id="musicSharing"
  13016. type="0" >
  13017. </productMenu>
  13018. <productMenu id="deviceSetting"
  13019. type="1"
  13020. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13021. </productMenu>
  13022. <productMenu id="quickGuide"
  13023. type="0"
  13024. url=""
  13025. size="1.17MB" >
  13026. </productMenu>
  13027. <productMenu id="userGuide"
  13028. type="1"
  13029. url=""
  13030. size="2.0MB" >
  13031. </productMenu>
  13032. <productMenu id="videoGuide"
  13033. type="0"
  13034. url=""
  13035. size="3.41MB" >
  13036. </productMenu>
  13037. <productMenu id="volume"
  13038. type="12" >
  13039. </productMenu>
  13040. <productMenu id="battery"
  13041. type="1" >
  13042. </productMenu>
  13043. <productID id="685E"
  13044. />
  13045. <productGroupable type="0"
  13046. />
  13047. </product>
  13048. <product id="C30EVO"
  13049. name="C30 EVO"
  13050. series="C"
  13051. latestVersion="1.0"
  13052. latestVersionVoicePrompt="0.13"
  13053. show = "-1" >
  13054. <productMenu id="protocol"
  13055. type="2" >
  13056. </productMenu>
  13057. <productMenu id="ota"
  13058. type="0" >
  13059. <otaPackages>
  13060. <package
  13061. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  13062. size="3144148"
  13063. />
  13064. </otaPackages>
  13065. </productMenu>
  13066. <productMenu id="meshIntercom+"
  13067. type="3"
  13068. url="2" >
  13069. </productMenu>
  13070. <productMenu id="waveIntercom"
  13071. type="1" >
  13072. </productMenu>
  13073. <productMenu id="phone"
  13074. type="1" >
  13075. </productMenu>
  13076. <productMenu id="music"
  13077. type="1" >
  13078. </productMenu>
  13079. <productMenu id="musicSharing"
  13080. type="0" >
  13081. </productMenu>
  13082. <productMenu id="deviceSetting"
  13083. type="1"
  13084. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  13085. </productMenu>
  13086. <productMenu id="quickGuide"
  13087. type="0"
  13088. url=""
  13089. size="1.17MB" >
  13090. </productMenu>
  13091. <productMenu id="userGuide"
  13092. type="1"
  13093. url=""
  13094. size="2.0MB" >
  13095. </productMenu>
  13096. <productMenu id="videoGuide"
  13097. type="0"
  13098. url=""
  13099. size="3.41MB" >
  13100. </productMenu>
  13101. <productMenu id="volume"
  13102. type="12" >
  13103. </productMenu>
  13104. <productMenu id="battery"
  13105. type="1" >
  13106. </productMenu>
  13107. <productID id="685B"
  13108. />
  13109. <productGroupable type="0"
  13110. />
  13111. </product>
  13112. <product id="C30"
  13113. name="SENA C30"
  13114. series="C"
  13115. latestVersion="1.2.4"
  13116. latestVersionVoicePrompt="0.13"
  13117. show = "1" >
  13118. <productMenu id="protocol"
  13119. type="2" >
  13120. </productMenu>
  13121. <productMenu id="alexa"
  13122. type="0" >
  13123. </productMenu>
  13124. <productMenu id="ota"
  13125. type="2" >
  13126. <otaPackages>
  13127. <package
  13128. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  13129. size="3144148"
  13130. />
  13131. </otaPackages>
  13132. </productMenu>
  13133. <productMenu id="wa"
  13134. type="0" >
  13135. </productMenu>
  13136. <productMenu id="meshIntercom"
  13137. type="30" >
  13138. </productMenu>
  13139. <productMenu id="meshIntercom+"
  13140. type="3"
  13141. url="2" >
  13142. <productMenuType version="1.0.9"
  13143. type="2"
  13144. />
  13145. </productMenu>
  13146. <productMenu id="waveIntercom"
  13147. type="1" >
  13148. <productMenuType version="1.1.9"
  13149. type="0"
  13150. />
  13151. </productMenu>
  13152. <productMenu id="phone"
  13153. type="1" >
  13154. </productMenu>
  13155. <productMenu id="music"
  13156. type="1" >
  13157. </productMenu>
  13158. <productMenu id="musicSharing"
  13159. type="0" >
  13160. </productMenu>
  13161. <productMenu id="deviceSetting"
  13162. type="1"
  13163. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13164. <productMenuURL version="1.1.3"
  13165. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13166. />
  13167. <productMenuURL version="1.0.9"
  13168. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13169. />
  13170. </productMenu>
  13171. <productMenu id="quickGuide"
  13172. type="1"
  13173. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13174. size="1.12MB" >
  13175. </productMenu>
  13176. <productMenu id="userGuide"
  13177. type="0"
  13178. url=""
  13179. size="2.0MB" >
  13180. </productMenu>
  13181. <productMenu id="videoGuide"
  13182. type="0"
  13183. url=""
  13184. size="3.41MB" >
  13185. </productMenu>
  13186. <productMenu id="volume"
  13187. type="12" >
  13188. </productMenu>
  13189. <productMenu id="battery"
  13190. type="1" >
  13191. </productMenu>
  13192. <productID id="683A"
  13193. />
  13194. <productGroupable type="0"
  13195. />
  13196. </product>
  13197. <product id="C20"
  13198. name="C20"
  13199. series="C"
  13200. latestVersion="1.0"
  13201. show = "1" >
  13202. <productMenu id="protocol"
  13203. type="3" >
  13204. </productMenu>
  13205. <productMenu id="sip"
  13206. type="1" >
  13207. </productMenu>
  13208. <productMenu id="bluetoothIntercom"
  13209. type="1" >
  13210. </productMenu>
  13211. <productMenu id="phone"
  13212. type="1" >
  13213. </productMenu>
  13214. <productMenu id="deviceSetting"
  13215. type="1"
  13216. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13217. </productMenu>
  13218. <productMenu id="quickGuide"
  13219. type="1"
  13220. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13221. size="934KB" >
  13222. </productMenu>
  13223. <productMenu id="userGuide"
  13224. type="1"
  13225. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13226. size="1.14MB" >
  13227. </productMenu>
  13228. <productID id="3701"
  13229. />
  13230. <productGroupable type="0"
  13231. />
  13232. </product>
  13233. <product id="C10"
  13234. name="C10"
  13235. series="C"
  13236. latestVersion="1.4.4"
  13237. show = "1" >
  13238. <productMenu id="protocol"
  13239. type="3" >
  13240. </productMenu>
  13241. <productMenu id="sip"
  13242. type="1" >
  13243. </productMenu>
  13244. <productMenu id="bluetoothIntercom"
  13245. type="1" >
  13246. </productMenu>
  13247. <productMenu id="phone"
  13248. type="1" >
  13249. </productMenu>
  13250. <productMenu id="fmradio"
  13251. type="0" >
  13252. </productMenu>
  13253. <productMenu id="deviceSetting"
  13254. type="1"
  13255. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13256. </productMenu>
  13257. <productMenu id="userGuide"
  13258. type="1"
  13259. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13260. size="1.14MB" >
  13261. </productMenu>
  13262. <productID id="5595"
  13263. />
  13264. <productGroupable type="0"
  13265. />
  13266. </product>
  13267. <product id="CA1"
  13268. name="CA1"
  13269. series="C"
  13270. latestVersion="0.2"
  13271. show = "-1" >
  13272. <productMenu id="protocol"
  13273. type="2" >
  13274. </productMenu>
  13275. <productMenu id="ota"
  13276. type="2" >
  13277. <otaPackages>
  13278. <package
  13279. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13280. size="3144148"
  13281. />
  13282. </otaPackages>
  13283. </productMenu>
  13284. <productMenu id="phone"
  13285. type="1" >
  13286. </productMenu>
  13287. <productMenu id="music"
  13288. type="1" >
  13289. </productMenu>
  13290. <productMenu id="musicSharing"
  13291. type="0" >
  13292. </productMenu>
  13293. <productMenu id="deviceSetting"
  13294. type="1"
  13295. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13296. </productMenu>
  13297. <productMenu id="quickGuide"
  13298. type="1"
  13299. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13300. size="1.12MB" >
  13301. </productMenu>
  13302. <productMenu id="userGuide"
  13303. type="0"
  13304. url=""
  13305. size="2.0MB" >
  13306. </productMenu>
  13307. <productMenu id="videoGuide"
  13308. type="1"
  13309. url=""
  13310. size="3.41MB" >
  13311. </productMenu>
  13312. <productMenu id="volume"
  13313. type="12" >
  13314. </productMenu>
  13315. <productMenu id="battery"
  13316. type="1" >
  13317. </productMenu>
  13318. <productID id="5F01"
  13319. />
  13320. <productGroupable type="0"
  13321. />
  13322. </product>
  13323. <product id="J30"
  13324. name="J30"
  13325. series="J"
  13326. latestVersion="1.2.4"
  13327. latestVersionVoicePrompt="0.14"
  13328. show = "0" >
  13329. <productMenu id="protocol"
  13330. type="2" >
  13331. </productMenu>
  13332. <productMenu id="alexa"
  13333. type="0" >
  13334. </productMenu>
  13335. <productMenu id="ota"
  13336. type="2" >
  13337. <otaPackages>
  13338. <package
  13339. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13340. size="3144148"
  13341. />
  13342. </otaPackages>
  13343. </productMenu>
  13344. <productMenu id="wa"
  13345. type="0" >
  13346. </productMenu>
  13347. <productMenu id="meshIntercom"
  13348. type="30" >
  13349. </productMenu>
  13350. <productMenu id="meshIntercom+"
  13351. type="3"
  13352. url="2" >
  13353. <productMenuType version="1.0.9"
  13354. type="2"
  13355. />
  13356. </productMenu>
  13357. <productMenu id="waveIntercom"
  13358. type="1" >
  13359. <productMenuType version="1.1.9"
  13360. type="0"
  13361. />
  13362. </productMenu>
  13363. <productMenu id="phone"
  13364. type="1" >
  13365. </productMenu>
  13366. <productMenu id="music"
  13367. type="1" >
  13368. </productMenu>
  13369. <productMenu id="musicSharing"
  13370. type="0" >
  13371. </productMenu>
  13372. <productMenu id="deviceSetting"
  13373. type="1"
  13374. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13375. <productMenuURL version="1.0.9"
  13376. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13377. />
  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_J30_1.1.0_jp_250402.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="6848"
  13401. />
  13402. <productGroupable type="0"
  13403. />
  13404. </product>
  13405. <product id="J10"
  13406. name="J10"
  13407. series="5"
  13408. latestVersion="1.1.4"
  13409. show = "0" >
  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="phone"
  13420. type="1" >
  13421. </productMenu>
  13422. <productMenu id="fmradio"
  13423. type="0" >
  13424. </productMenu>
  13425. <productMenu id="deviceSetting"
  13426. type="1"
  13427. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13428. </productMenu>
  13429. <productMenu id="userGuide"
  13430. type="1"
  13431. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13432. size="1.14MB" >
  13433. </productMenu>
  13434. <productID id="5598"
  13435. />
  13436. <productGroupable type="0"
  13437. />
  13438. </product>
  13439. <product id="B20"
  13440. name="B20"
  13441. series="B"
  13442. latestVersion="1.1.4"
  13443. latestVersionVoicePrompt="0.14"
  13444. show = "0" >
  13445. <productMenu id="protocol"
  13446. type="2" >
  13447. </productMenu>
  13448. <productMenu id="alexa"
  13449. type="0" >
  13450. </productMenu>
  13451. <productMenu id="ota"
  13452. type="2" >
  13453. <otaPackages>
  13454. <package
  13455. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13456. size="3144148"
  13457. />
  13458. </otaPackages>
  13459. </productMenu>
  13460. <productMenu id="wa"
  13461. type="0" >
  13462. </productMenu>
  13463. <productMenu id="meshIntercom"
  13464. type="30" >
  13465. </productMenu>
  13466. <productMenu id="phone"
  13467. type="1" >
  13468. </productMenu>
  13469. <productMenu id="music"
  13470. type="1" >
  13471. </productMenu>
  13472. <productMenu id="musicSharing"
  13473. type="0" >
  13474. </productMenu>
  13475. <productMenu id="deviceSetting"
  13476. type="1"
  13477. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13478. <productMenuURL version="1.0.9"
  13479. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13480. />
  13481. </productMenu>
  13482. <productMenu id="quickGuide"
  13483. type="0"
  13484. url=""
  13485. size="1.12MB" >
  13486. </productMenu>
  13487. <productMenu id="userGuide"
  13488. type="1"
  13489. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13490. size="2.0MB" >
  13491. </productMenu>
  13492. <productMenu id="videoGuide"
  13493. type="0"
  13494. url=""
  13495. size="3.41MB" >
  13496. </productMenu>
  13497. <productMenu id="volume"
  13498. type="12" >
  13499. </productMenu>
  13500. <productMenu id="battery"
  13501. type="1" >
  13502. </productMenu>
  13503. <productID id="6847"
  13504. />
  13505. <productGroupable type="0"
  13506. />
  13507. </product>
  13508. <product id="B10"
  13509. name="B10"
  13510. series="5"
  13511. latestVersion="1.2.4"
  13512. show = "0" >
  13513. <productMenu id="protocol"
  13514. type="3" >
  13515. </productMenu>
  13516. <productMenu id="sip"
  13517. type="1" >
  13518. </productMenu>
  13519. <productMenu id="bluetoothIntercom"
  13520. type="1" >
  13521. </productMenu>
  13522. <productMenu id="phone"
  13523. type="1" >
  13524. </productMenu>
  13525. <productMenu id="fmradio"
  13526. type="0" >
  13527. </productMenu>
  13528. <productMenu id="deviceSetting"
  13529. type="1"
  13530. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13531. </productMenu>
  13532. <productMenu id="userGuide"
  13533. type="1"
  13534. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13535. size="1.14MB" >
  13536. </productMenu>
  13537. <productID id="5596"
  13538. />
  13539. <productGroupable type="0"
  13540. />
  13541. </product>
  13542. <product id="E30"
  13543. name="E30"
  13544. series="E"
  13545. latestVersion="1.1.4"
  13546. latestVersionVoicePrompt="0.14"
  13547. show = "0" >
  13548. <productMenu id="protocol"
  13549. type="2" >
  13550. </productMenu>
  13551. <productMenu id="alexa"
  13552. type="0" >
  13553. </productMenu>
  13554. <productMenu id="ota"
  13555. type="2" >
  13556. <otaPackages>
  13557. <package
  13558. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13559. size="3144148"
  13560. />
  13561. </otaPackages>
  13562. </productMenu>
  13563. <productMenu id="wa"
  13564. type="0" >
  13565. </productMenu>
  13566. <productMenu id="meshIntercom"
  13567. type="30" >
  13568. </productMenu>
  13569. <productMenu id="meshIntercom+"
  13570. type="3"
  13571. url="2" >
  13572. </productMenu>
  13573. <productMenu id="waveIntercom"
  13574. type="1" >
  13575. <productMenuType version="1.0.9"
  13576. type="0"
  13577. />
  13578. </productMenu>
  13579. <productMenu id="phone"
  13580. type="1" >
  13581. </productMenu>
  13582. <productMenu id="music"
  13583. type="1" >
  13584. </productMenu>
  13585. <productMenu id="musicSharing"
  13586. type="0" >
  13587. </productMenu>
  13588. <productMenu id="deviceSetting"
  13589. type="1"
  13590. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13591. </productMenu>
  13592. <productMenu id="quickGuide"
  13593. type="0"
  13594. url=""
  13595. size="1.12MB" >
  13596. </productMenu>
  13597. <productMenu id="userGuide"
  13598. type="1"
  13599. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13600. size="2.0MB" >
  13601. </productMenu>
  13602. <productMenu id="videoGuide"
  13603. type="0"
  13604. url=""
  13605. size="3.41MB" >
  13606. </productMenu>
  13607. <productMenu id="volume"
  13608. type="12" >
  13609. </productMenu>
  13610. <productMenu id="battery"
  13611. type="1" >
  13612. </productMenu>
  13613. <productID id="6846"
  13614. />
  13615. <productGroupable type="0"
  13616. />
  13617. </product>
  13618. <product id="ACSRAM"
  13619. name="ACS-RAM"
  13620. series="ACS"
  13621. latestVersion="1.0.5"
  13622. show = "1" >
  13623. <productMenu id="protocol"
  13624. type="3" >
  13625. </productMenu>
  13626. <productMenu id="sip"
  13627. type="1" >
  13628. </productMenu>
  13629. <productMenu id="bluetoothIntercom"
  13630. type="1" >
  13631. </productMenu>
  13632. <productMenu id="deviceSetting"
  13633. type="1"
  13634. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13635. <productMenuURL version="1.0.9"
  13636. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13637. />
  13638. </productMenu>
  13639. <productMenu id="quickGuide"
  13640. type="1"
  13641. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13642. size="344KB" >
  13643. </productMenu>
  13644. <productMenu id="userGuide"
  13645. type="1"
  13646. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13647. size="1.14MB" >
  13648. </productMenu>
  13649. <productMenu id="connectGuide"
  13650. type="1"
  13651. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13652. size="1.12MB" >
  13653. </productMenu>
  13654. <productID id="3400"
  13655. />
  13656. <productGroupable type="0"
  13657. />
  13658. </product>
  13659. <product id="ACS10"
  13660. name="ACS10"
  13661. series="ACS"
  13662. latestVersion="1.0.2"
  13663. show = "1" >
  13664. <productMenu id="protocol"
  13665. type="0">
  13666. </productMenu>
  13667. <productMenu id="sip"
  13668. type="1" >
  13669. </productMenu>
  13670. <productMenu id="bluetoothIntercom"
  13671. type="1" >
  13672. </productMenu>
  13673. <productMenu id="phone"
  13674. type="2" >
  13675. </productMenu>
  13676. <productMenu id="deviceSetting"
  13677. type="1"
  13678. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13679. </productMenu>
  13680. <productMenu id="quickGuide"
  13681. type="1"
  13682. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13683. size="970KB" >
  13684. </productMenu>
  13685. <productMenu id="userGuide"
  13686. type="1"
  13687. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13688. size="1.26MB" >
  13689. </productMenu>
  13690. <productMenu id="connectGuide"
  13691. type="1"
  13692. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13693. size="1.12MB" >
  13694. </productMenu>
  13695. <productID id="3300"
  13696. />
  13697. <productGroupable type="0"
  13698. />
  13699. </product>
  13700. <product id="DWO7ProMesh"
  13701. name="DWO 7 Pro Mesh"
  13702. series="50"
  13703. latestVersion="1.1"
  13704. latestVersionVoicePrompt="0.9"
  13705. show = "0" >
  13706. <productMenu id="protocol"
  13707. type="2" >
  13708. </productMenu>
  13709. <productMenu id="alexa"
  13710. type="0" >
  13711. </productMenu>
  13712. <productMenu id="ota"
  13713. type="2" >
  13714. <otaPackages>
  13715. <package
  13716. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13717. size="2945812"
  13718. />
  13719. </otaPackages>
  13720. </productMenu>
  13721. <productMenu id="wa"
  13722. type="0" >
  13723. </productMenu>
  13724. <productMenu id="meshIntercom"
  13725. type="20" >
  13726. </productMenu>
  13727. <productMenu id="meshIntercom+"
  13728. type="3"
  13729. url="2" >
  13730. <productMenuType version="1.0.9"
  13731. type="2"
  13732. />
  13733. <productMenuURL version="2.1.1"
  13734. url="0"
  13735. />
  13736. </productMenu>
  13737. <productMenu id="waveIntercom"
  13738. type="1" >
  13739. <productMenuType version="1.0.9"
  13740. type="0"
  13741. />
  13742. </productMenu>
  13743. <productMenu id="phone"
  13744. type="1" >
  13745. </productMenu>
  13746. <productMenu id="music"
  13747. type="1" >
  13748. </productMenu>
  13749. <productMenu id="fmradio"
  13750. type="1" >
  13751. </productMenu>
  13752. <productMenu id="musicSharing"
  13753. type="0" >
  13754. </productMenu>
  13755. <productMenu id="deviceSetting"
  13756. type="1"
  13757. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13758. <productMenuURL version="1.0.9"
  13759. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13760. />
  13761. </productMenu>
  13762. <productMenu id="quickGuide"
  13763. type="1"
  13764. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13765. size="1.12MB" >
  13766. </productMenu>
  13767. <productMenu id="userGuide"
  13768. type="1"
  13769. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13770. size="2.0MB" >
  13771. </productMenu>
  13772. <productMenu id="volume"
  13773. type="12" >
  13774. </productMenu>
  13775. <productMenu id="battery"
  13776. type="1" >
  13777. </productMenu>
  13778. <productID id="6806"
  13779. />
  13780. <productGroupable type="0"
  13781. />
  13782. </product>
  13783. <product id="ERA1X"
  13784. name="ERA 1 X"
  13785. series="UCOM"
  13786. latestVersion="0.2.1"
  13787. latestVersionMesh="0.19"
  13788. latestVersionVoicePrompt="1.2"
  13789. show = "-1" >
  13790. <productMenu id="protocol"
  13791. type="2" >
  13792. </productMenu>
  13793. <productMenu id="ota"
  13794. type="2" >
  13795. <otaLanguages>
  13796. <otaLanguage
  13797. id="0"
  13798. name="English"
  13799. package="0"
  13800. />
  13801. <otaLanguage
  13802. id="0"
  13803. name="French"
  13804. package="1"
  13805. />
  13806. <otaLanguage
  13807. id="0"
  13808. name="Spanish"
  13809. package="2"
  13810. />
  13811. <otaLanguage
  13812. id="0"
  13813. name="Italian"
  13814. package="3"
  13815. />
  13816. <otaLanguage
  13817. id="0"
  13818. name="German"
  13819. package="4"
  13820. />
  13821. <otaLanguage
  13822. id="0"
  13823. name="Dutch"
  13824. package="5"
  13825. />
  13826. <otaLanguage
  13827. id="0"
  13828. name="Russian"
  13829. package="6"
  13830. />
  13831. <otaLanguage
  13832. id="0"
  13833. name="Chinese"
  13834. package="7"
  13835. />
  13836. <otaLanguage
  13837. id="0"
  13838. name="Korean"
  13839. package="8"
  13840. />
  13841. <otaLanguage
  13842. id="0"
  13843. name="Japanese"
  13844. package="9"
  13845. />
  13846. <otaLanguage
  13847. id="0"
  13848. name="Finnish"
  13849. package="10"
  13850. />
  13851. <otaLanguage
  13852. id="0"
  13853. name="Polish"
  13854. package="11"
  13855. />
  13856. <otaLanguage
  13857. id="0"
  13858. name="Czech"
  13859. package="12"
  13860. />
  13861. <otaLanguage
  13862. id="0"
  13863. name="Danish"
  13864. package="13"
  13865. />
  13866. <otaLanguage
  13867. id="0"
  13868. name="Norwegian"
  13869. package="14"
  13870. />
  13871. <otaLanguage
  13872. id="0"
  13873. name="Swedish"
  13874. package="15"
  13875. />
  13876. <otaLanguage
  13877. id="0"
  13878. name="Turkish"
  13879. package="16"
  13880. />
  13881. <otaLanguage
  13882. id="0"
  13883. name="Hungarian"
  13884. package="17"
  13885. />
  13886. <otaLanguage
  13887. id="0"
  13888. name="Portuguese"
  13889. package="18"
  13890. />
  13891. <otaLanguage
  13892. id="0"
  13893. name="Hebrew"
  13894. package="19"
  13895. />
  13896. <otaLanguage
  13897. id="0"
  13898. name="Greek"
  13899. package="20"
  13900. />
  13901. </otaLanguages>
  13902. <otaPackages>
  13903. <package
  13904. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13905. size="5183988"
  13906. />
  13907. <package
  13908. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13909. size="5183988"
  13910. />
  13911. <package
  13912. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13913. size="5183988"
  13914. />
  13915. <package
  13916. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13917. size="5183988"
  13918. />
  13919. <package
  13920. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13921. size="5183988"
  13922. />
  13923. <package
  13924. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13925. size="5183988"
  13926. />
  13927. <package
  13928. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13929. size="5183988"
  13930. />
  13931. <package
  13932. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13933. size="5183988"
  13934. />
  13935. <package
  13936. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13937. size="5183988"
  13938. />
  13939. <package
  13940. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13941. size="5183988"
  13942. />
  13943. <package
  13944. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13945. size="5183988"
  13946. />
  13947. <package
  13948. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13949. size="5183988"
  13950. />
  13951. <package
  13952. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13953. size="5183988"
  13954. />
  13955. <package
  13956. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13957. size="5183988"
  13958. />
  13959. <package
  13960. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13961. size="5183988"
  13962. />
  13963. <package
  13964. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13965. size="5183988"
  13966. />
  13967. <package
  13968. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13969. size="5183988"
  13970. />
  13971. <package
  13972. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13973. size="5183988"
  13974. />
  13975. <package
  13976. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13977. size="5183988"
  13978. />
  13979. <package
  13980. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13981. size="5183988"
  13982. />
  13983. <package
  13984. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13985. size="5183988"
  13986. />
  13987. </otaPackages>
  13988. </productMenu>
  13989. <productMenu id="wa"
  13990. type="0" >
  13991. </productMenu>
  13992. <productMenu id="sip"
  13993. type="1" >
  13994. </productMenu>
  13995. <productMenu id="led"
  13996. type="0" >
  13997. </productMenu>
  13998. <productMenu id="illusion"
  13999. type="1" >
  14000. </productMenu>
  14001. <productMenu id="meshIntercom"
  14002. type="30" >
  14003. </productMenu>
  14004. <productMenu id="meshIntercom+"
  14005. type="3"
  14006. url="2" >
  14007. </productMenu>
  14008. <productMenu id="waveIntercom"
  14009. type="0" >
  14010. </productMenu>
  14011. <productMenu id="bluetoothIntercom"
  14012. type="1" >
  14013. </productMenu>
  14014. <productMenu id="bluetoothIntercomGrouping"
  14015. type="0" >
  14016. </productMenu>
  14017. <productMenu id="fmradio"
  14018. type="1"
  14019. url="1" >
  14020. </productMenu>
  14021. <productMenu id="phone"
  14022. type="1" >
  14023. </productMenu>
  14024. <productMenu id="music"
  14025. type="1" >
  14026. </productMenu>
  14027. <productMenu id="musicSharing"
  14028. type="0" >
  14029. </productMenu>
  14030. <productMenu id="deviceSetting"
  14031. type="1"
  14032. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  14033. </productMenu>
  14034. <productMenu id="quickGuide"
  14035. type="0"
  14036. url=""
  14037. size="1.12MB" >
  14038. </productMenu>
  14039. <productMenu id="userGuide"
  14040. type="1"
  14041. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  14042. size="2.0MB" >
  14043. </productMenu>
  14044. <productMenu id="videoGuide"
  14045. type="0"
  14046. url=""
  14047. size="3.41MB" >
  14048. </productMenu>
  14049. <productMenu id="volume"
  14050. type="16" >
  14051. </productMenu>
  14052. <productMenu id="soundMode"
  14053. type="1" >
  14054. </productMenu>
  14055. <productMenu id="battery"
  14056. type="1" >
  14057. </productMenu>
  14058. <productID id="6A83"
  14059. />
  14060. <productGroupable type="0"
  14061. />
  14062. </product>
  14063. <product id="MeshStation"
  14064. name="Mesh Station"
  14065. series="50"
  14066. latestVersion="0.9"
  14067. show = "-1" >
  14068. <productMenu id="protocol"
  14069. type="2" >
  14070. </productMenu>
  14071. <productMenu id="meshIntercom"
  14072. type="20"
  14073. url="99" >
  14074. </productMenu>
  14075. <productID id="3161"
  14076. />
  14077. <productGroupable type="0"
  14078. />
  14079. </product>
  14080. </products>
  14081. </sna>