snm.xml 506 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260165" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO.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="0"
  525. url=""
  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.9"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.7"
  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.9-build0.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-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_10.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.9"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.7"
  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.9-build0.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-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_10.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"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.7"
  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-build5.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-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.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="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="1"
  1471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2511. <productMenuURL version="1.2.4"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2513. />
  2514. </productMenu>
  2515. <productMenu id="quickGuide"
  2516. type="0"
  2517. url=""
  2518. size="1.12MB" >
  2519. </productMenu>
  2520. <productMenu id="userGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2523. size="2.0MB" >
  2524. </productMenu>
  2525. <productMenu id="videoGuide"
  2526. type="0"
  2527. url=""
  2528. size="3.41MB" >
  2529. </productMenu>
  2530. <productMenu id="volume"
  2531. type="16" >
  2532. </productMenu>
  2533. <productMenu id="volume+"
  2534. type="2"
  2535. url="0x6004" >
  2536. </productMenu>
  2537. <productMenu id="battery"
  2538. type="1" >
  2539. </productMenu>
  2540. <productID id="6A0F"
  2541. />
  2542. <productGroupable type="0"
  2543. />
  2544. </product>
  2545. <product id="PHANTOMXB"
  2546. name="PHANTOM XB"
  2547. series="Helmet"
  2548. latestVersion="1.2.9"
  2549. latestVersionVoicePrompt="1.6"
  2550. show = "-1" >
  2551. <productMenu id="protocol"
  2552. type="2" >
  2553. </productMenu>
  2554. <productMenu id="ota"
  2555. type="2" >
  2556. <otaLanguages>
  2557. <otaLanguage
  2558. id="0"
  2559. name="English"
  2560. package="0"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="French"
  2565. package="1"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Spanish"
  2570. package="2"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Italian"
  2575. package="3"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="German"
  2580. package="4"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Dutch"
  2585. package="5"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Russian"
  2590. package="6"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Chinese"
  2595. package="7"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Korean"
  2600. package="8"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Japanese"
  2605. package="9"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Finnish"
  2610. package="10"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Polish"
  2615. package="11"
  2616. />
  2617. </otaLanguages>
  2618. <otaPackages>
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2665. size="5183988"
  2666. />
  2667. </otaPackages>
  2668. </productMenu>
  2669. <productMenu id="wa"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="led"
  2673. type="5" >
  2674. </productMenu>
  2675. <productMenu id="led+"
  2676. type="2"
  2677. url="1" >
  2678. </productMenu>
  2679. <productMenu id="meshIntercom"
  2680. type="30" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom+"
  2683. type="3"
  2684. url="2" >
  2685. </productMenu>
  2686. <productMenu id="waveIntercom"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="fmradio"
  2690. type="0" >
  2691. </productMenu>
  2692. <productMenu id="phone"
  2693. type="1" >
  2694. </productMenu>
  2695. <productMenu id="music"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="musicSharing"
  2699. type="0" >
  2700. </productMenu>
  2701. <productMenu id="deviceSetting"
  2702. type="1"
  2703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2704. <productMenuURL version="1.2.4"
  2705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2706. />
  2707. <productMenuURL version="1.2.1"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2709. />
  2710. </productMenu>
  2711. <productMenu id="quickGuide"
  2712. type="0"
  2713. url=""
  2714. size="1.12MB" >
  2715. </productMenu>
  2716. <productMenu id="userGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2719. size="2.0MB" >
  2720. </productMenu>
  2721. <productMenu id="videoGuide"
  2722. type="0"
  2723. url=""
  2724. size="3.41MB" >
  2725. </productMenu>
  2726. <productMenu id="volume"
  2727. type="16" >
  2728. </productMenu>
  2729. <productMenu id="volume+"
  2730. type="2"
  2731. url="0x6004" >
  2732. </productMenu>
  2733. <productMenu id="battery"
  2734. type="1" >
  2735. </productMenu>
  2736. <productID id="6A0C"
  2737. />
  2738. <productGroupable type="0"
  2739. />
  2740. </product>
  2741. <product id="PHANTOMKV"
  2742. name="PHANTOM KV"
  2743. series="Helmet"
  2744. latestVersion="1.2.10"
  2745. latestVersionVoicePrompt="1.7"
  2746. show = "1" >
  2747. <productMenu id="protocol"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="ota"
  2751. type="2" >
  2752. <otaLanguages>
  2753. <otaLanguage
  2754. id="0"
  2755. name="English"
  2756. package="0"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="French"
  2761. package="1"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Spanish"
  2766. package="2"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Italian"
  2771. package="3"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="German"
  2776. package="4"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Dutch"
  2781. package="5"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Russian"
  2786. package="6"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Chinese"
  2791. package="7"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Korean"
  2796. package="8"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Japanese"
  2801. package="9"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Finnish"
  2806. package="10"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Polish"
  2811. package="11"
  2812. />
  2813. </otaLanguages>
  2814. <otaPackages>
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2861. size="5183988"
  2862. />
  2863. </otaPackages>
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="led"
  2869. type="5" >
  2870. </productMenu>
  2871. <productMenu id="led+"
  2872. type="2"
  2873. url="1" >
  2874. </productMenu>
  2875. <productMenu id="meshIntercom"
  2876. type="30" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom+"
  2879. type="3"
  2880. url="2" >
  2881. </productMenu>
  2882. <productMenu id="waveIntercom"
  2883. type="1" >
  2884. </productMenu>
  2885. <productMenu id="fmradio"
  2886. type="0" >
  2887. </productMenu>
  2888. <productMenu id="phone"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="music"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="musicSharing"
  2895. type="0" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2900. <productMenuURL version="1.2.4"
  2901. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2902. />
  2903. </productMenu>
  2904. <productMenu id="quickGuide"
  2905. type="0"
  2906. url=""
  2907. size="1.12MB" >
  2908. </productMenu>
  2909. <productMenu id="userGuide"
  2910. type="1"
  2911. url=""
  2912. size="2.0MB" >
  2913. </productMenu>
  2914. <productMenu id="videoGuide"
  2915. type="0"
  2916. url=""
  2917. size="3.41MB" >
  2918. </productMenu>
  2919. <productMenu id="connectGuide"
  2920. type="1"
  2921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2922. size="1.1MB" >
  2923. </productMenu>
  2924. <productMenu id="volume"
  2925. type="16" >
  2926. </productMenu>
  2927. <productMenu id="volume+"
  2928. type="2"
  2929. url="0x6004" >
  2930. </productMenu>
  2931. <productMenu id="soundMode"
  2932. type="1" >
  2933. </productMenu>
  2934. <productMenu id="battery"
  2935. type="1" >
  2936. </productMenu>
  2937. <productID id="6A13"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="PHANTOMCamera"
  2943. name="PHANTOM Camera"
  2944. series="Helmet"
  2945. latestVersion="1.2.10"
  2946. latestVersionVoicePrompt="1.7"
  2947. show = "1" >
  2948. <productMenu id="protocol"
  2949. type="2" >
  2950. </productMenu>
  2951. <productMenu id="ota"
  2952. type="3" >
  2953. <otaLanguages>
  2954. <otaLanguage
  2955. id="0"
  2956. name="English"
  2957. package="0"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="French"
  2962. package="1"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Spanish"
  2967. package="2"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Italian"
  2972. package="3"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="German"
  2977. package="4"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Dutch"
  2982. package="5"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Russian"
  2987. package="6"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Chinese"
  2992. package="7"
  2993. />
  2994. <otaLanguage
  2995. id="0"
  2996. name="Korean"
  2997. package="8"
  2998. />
  2999. <otaLanguage
  3000. id="0"
  3001. name="Japanese"
  3002. package="9"
  3003. />
  3004. <otaLanguage
  3005. id="0"
  3006. name="Finnish"
  3007. package="10"
  3008. />
  3009. <otaLanguage
  3010. id="0"
  3011. name="Polish"
  3012. package="11"
  3013. />
  3014. </otaLanguages>
  3015. <otaPackages>
  3016. <package
  3017. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3042. size="5183988"
  3043. />
  3044. <package
  3045. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3046. size="5183988"
  3047. />
  3048. <package
  3049. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3050. size="5183988"
  3051. />
  3052. <package
  3053. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3054. size="5183988"
  3055. />
  3056. <package
  3057. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3058. size="5183988"
  3059. />
  3060. <package
  3061. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3062. size="5183988"
  3063. />
  3064. </otaPackages>
  3065. </productMenu>
  3066. <productMenu id="wa"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="led"
  3070. type="5" >
  3071. </productMenu>
  3072. <productMenu id="led+"
  3073. type="2"
  3074. url="1" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom"
  3077. type="30" >
  3078. </productMenu>
  3079. <productMenu id="meshIntercom+"
  3080. type="3"
  3081. url="2" >
  3082. </productMenu>
  3083. <productMenu id="waveIntercom"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="fmradio"
  3087. type="0" >
  3088. </productMenu>
  3089. <productMenu id="phone"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="music"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="musicSharing"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="deviceSetting"
  3099. type="1"
  3100. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3101. </productMenu>
  3102. <productMenu id="quickGuide"
  3103. type="0"
  3104. url=""
  3105. size="1.12MB" >
  3106. </productMenu>
  3107. <productMenu id="userGuide"
  3108. type="1"
  3109. url=""
  3110. size="2.0MB" >
  3111. </productMenu>
  3112. <productMenu id="videoGuide"
  3113. type="0"
  3114. url=""
  3115. size="3.41MB" >
  3116. </productMenu>
  3117. <productMenu id="volume"
  3118. type="16" >
  3119. </productMenu>
  3120. <productMenu id="battery"
  3121. type="1" >
  3122. </productMenu>
  3123. <productID id="6A10"
  3124. />
  3125. <productGroupable type="0"
  3126. />
  3127. </product>
  3128. <product id="PHANTOMCamera"
  3129. name="PHANTOM Camera"
  3130. series="Helmet"
  3131. latestVersion="1.2.10"
  3132. latestVersionVoicePrompt="1.7"
  3133. show = "-1" >
  3134. <productMenu id="protocol"
  3135. type="2" >
  3136. </productMenu>
  3137. <productMenu id="ota"
  3138. type="3" >
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. </productMenu>
  3269. <productMenu id="waveIntercom"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="fmradio"
  3273. type="0" >
  3274. </productMenu>
  3275. <productMenu id="phone"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="music"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="musicSharing"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="0"
  3290. url=""
  3291. size="1.12MB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url=""
  3296. size="2.0MB" >
  3297. </productMenu>
  3298. <productMenu id="videoGuide"
  3299. type="0"
  3300. url=""
  3301. size="3.41MB" >
  3302. </productMenu>
  3303. <productMenu id="volume"
  3304. type="16" >
  3305. </productMenu>
  3306. <productMenu id="battery"
  3307. type="1" >
  3308. </productMenu>
  3309. <productID id="6A09"
  3310. />
  3311. <productGroupable type="0"
  3312. />
  3313. </product>
  3314. <product id="PHANTOM"
  3315. name="PHANTOM ANC"
  3316. series="Helmet"
  3317. latestVersion="1.2.9"
  3318. latestVersionVoicePrompt="1.7"
  3319. show = "1" >
  3320. <productMenu id="protocol"
  3321. type="2" >
  3322. </productMenu>
  3323. <productMenu id="ota"
  3324. type="2" >
  3325. <productMenuType version="0.6.9"
  3326. type="0"
  3327. />
  3328. <otaLanguages>
  3329. <otaLanguage
  3330. id="0"
  3331. name="English"
  3332. package="0"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="French"
  3337. package="1"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Spanish"
  3342. package="2"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Italian"
  3347. package="3"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="German"
  3352. package="4"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Dutch"
  3357. package="5"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Russian"
  3362. package="6"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Chinese"
  3367. package="7"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Korean"
  3372. package="8"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="Japanese"
  3377. package="9"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Finnish"
  3382. package="10"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Polish"
  3387. package="11"
  3388. />
  3389. </otaLanguages>
  3390. <otaPackages>
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3417. size="5183988"
  3418. />
  3419. <package
  3420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3421. size="5183988"
  3422. />
  3423. <package
  3424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3425. size="5183988"
  3426. />
  3427. <package
  3428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3429. size="5183988"
  3430. />
  3431. <package
  3432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3433. size="5183988"
  3434. />
  3435. <package
  3436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3437. size="5183988"
  3438. />
  3439. </otaPackages>
  3440. </productMenu>
  3441. <productMenu id="wa"
  3442. type="0" >
  3443. </productMenu>
  3444. <productMenu id="led"
  3445. type="5" >
  3446. </productMenu>
  3447. <productMenu id="led+"
  3448. type="2"
  3449. url="1" >
  3450. </productMenu>
  3451. <productMenu id="meshIntercom"
  3452. type="30" >
  3453. </productMenu>
  3454. <productMenu id="meshIntercom+"
  3455. type="3"
  3456. url="2" >
  3457. <productMenuURL version="1.0.4"
  3458. url="10"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="waveIntercom"
  3462. type="1" >
  3463. <productMenuType version="1.0.9"
  3464. type="0"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="fmradio"
  3468. type="0" >
  3469. </productMenu>
  3470. <productMenu id="phone"
  3471. type="1" >
  3472. </productMenu>
  3473. <productMenu id="music"
  3474. type="1" >
  3475. </productMenu>
  3476. <productMenu id="musicSharing"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="deviceSetting"
  3480. type="1"
  3481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3482. <productMenuURL version="1.2.4"
  3483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3484. />
  3485. <productMenuURL version="1.2.1"
  3486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3487. />
  3488. <productMenuURL version="1.1.2"
  3489. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3490. />
  3491. <productMenuURL version="1.0.4"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="quickGuide"
  3496. type="0"
  3497. url=""
  3498. size="1.12MB" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3503. size="2.0MB" >
  3504. </productMenu>
  3505. <productMenu id="videoGuide"
  3506. type="0"
  3507. url=""
  3508. size="3.41MB" >
  3509. </productMenu>
  3510. <productMenu id="connectGuide"
  3511. type="1"
  3512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3513. size="1.1MB" >
  3514. </productMenu>
  3515. <productMenu id="volume"
  3516. type="16" >
  3517. </productMenu>
  3518. <productMenu id="volume+"
  3519. type="2"
  3520. url="0x6004" >
  3521. </productMenu>
  3522. <productMenu id="soundMode"
  3523. type="1" >
  3524. <productMenuType version="0.9.11"
  3525. type="0"
  3526. />
  3527. </productMenu>
  3528. <productMenu id="battery"
  3529. type="1" >
  3530. </productMenu>
  3531. <productID id="6A01"
  3532. />
  3533. <productGroupable type="0"
  3534. />
  3535. </product>
  3536. <product id="PHANTOM"
  3537. name="PHANTOM ANC"
  3538. series="Helmet"
  3539. latestVersion="1.2.9"
  3540. latestVersionVoicePrompt="1.7"
  3541. show = "-1" >
  3542. <productMenu id="protocol"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="ota"
  3546. type="2" >
  3547. <otaLanguages>
  3548. <otaLanguage
  3549. id="0"
  3550. name="English"
  3551. package="0"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="French"
  3556. package="1"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Spanish"
  3561. package="2"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Italian"
  3566. package="3"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="German"
  3571. package="4"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Dutch"
  3576. package="5"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Russian"
  3581. package="6"
  3582. />
  3583. <otaLanguage
  3584. id="0"
  3585. name="Chinese"
  3586. package="7"
  3587. />
  3588. <otaLanguage
  3589. id="0"
  3590. name="Korean"
  3591. package="8"
  3592. />
  3593. <otaLanguage
  3594. id="0"
  3595. name="Japanese"
  3596. package="9"
  3597. />
  3598. <otaLanguage
  3599. id="0"
  3600. name="Finnish"
  3601. package="10"
  3602. />
  3603. <otaLanguage
  3604. id="0"
  3605. name="Polish"
  3606. package="11"
  3607. />
  3608. </otaLanguages>
  3609. <otaPackages>
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3620. size="5183988"
  3621. />
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3656. size="5183988"
  3657. />
  3658. </otaPackages>
  3659. </productMenu>
  3660. <productMenu id="led"
  3661. type="5" >
  3662. </productMenu>
  3663. <productMenu id="led+"
  3664. type="2"
  3665. url="1" >
  3666. </productMenu>
  3667. <productMenu id="meshIntercom"
  3668. type="30" >
  3669. </productMenu>
  3670. <productMenu id="meshIntercom+"
  3671. type="3"
  3672. url="2" >
  3673. </productMenu>
  3674. <productMenu id="waveIntercom"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="fmradio"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="phone"
  3681. type="1" >
  3682. </productMenu>
  3683. <productMenu id="music"
  3684. type="1" >
  3685. </productMenu>
  3686. <productMenu id="musicSharing"
  3687. type="0" >
  3688. </productMenu>
  3689. <productMenu id="deviceSetting"
  3690. type="1"
  3691. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3692. <productMenuURL version="1.2.4"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3694. />
  3695. </productMenu>
  3696. <productMenu id="quickGuide"
  3697. type="0"
  3698. url=""
  3699. size="1.12MB" >
  3700. </productMenu>
  3701. <productMenu id="userGuide"
  3702. type="1"
  3703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3704. size="2.0MB" >
  3705. </productMenu>
  3706. <productMenu id="videoGuide"
  3707. type="0"
  3708. url=""
  3709. size="3.41MB" >
  3710. </productMenu>
  3711. <productMenu id="connectGuide"
  3712. type="1"
  3713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3714. size="1.1MB" >
  3715. </productMenu>
  3716. <productMenu id="volume"
  3717. type="16" >
  3718. </productMenu>
  3719. <productMenu id="volume+"
  3720. type="2"
  3721. url="0x6004" >
  3722. </productMenu>
  3723. <productMenu id="soundMode"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="battery"
  3727. type="1" >
  3728. </productMenu>
  3729. <productID id="6A19"
  3730. />
  3731. <productGroupable type="0"
  3732. />
  3733. </product>
  3734. <product id="PHANTOM"
  3735. name="PHANTOM"
  3736. series="Helmet"
  3737. latestVersion="1.2.9"
  3738. latestVersionVoicePrompt="1.7"
  3739. show = "-1" >
  3740. <productMenu id="protocol"
  3741. type="2" >
  3742. </productMenu>
  3743. <productMenu id="ota"
  3744. type="2" >
  3745. <otaLanguages>
  3746. <otaLanguage
  3747. id="0"
  3748. name="English"
  3749. package="0"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="French"
  3754. package="1"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Spanish"
  3759. package="2"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Italian"
  3764. package="3"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="German"
  3769. package="4"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Dutch"
  3774. package="5"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Russian"
  3779. package="6"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Chinese"
  3784. package="7"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Korean"
  3789. package="8"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Japanese"
  3794. package="9"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Finnish"
  3799. package="10"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Polish"
  3804. package="11"
  3805. />
  3806. </otaLanguages>
  3807. <otaPackages>
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3810. size="5183988"
  3811. />
  3812. <package
  3813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3814. size="5183988"
  3815. />
  3816. <package
  3817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3818. size="5183988"
  3819. />
  3820. <package
  3821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3822. size="5183988"
  3823. />
  3824. <package
  3825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3826. size="5183988"
  3827. />
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3854. size="5183988"
  3855. />
  3856. </otaPackages>
  3857. </productMenu>
  3858. <productMenu id="wa"
  3859. type="0" >
  3860. </productMenu>
  3861. <productMenu id="led"
  3862. type="5" >
  3863. </productMenu>
  3864. <productMenu id="led+"
  3865. type="2"
  3866. url="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. </productMenu>
  3871. <productMenu id="meshIntercom+"
  3872. type="3"
  3873. url="2" >
  3874. </productMenu>
  3875. <productMenu id="waveIntercom"
  3876. type="1" >
  3877. </productMenu>
  3878. <productMenu id="fmradio"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="phone"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="music"
  3885. type="1" >
  3886. </productMenu>
  3887. <productMenu id="musicSharing"
  3888. type="0" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3893. <productMenuURL version="1.2.4"
  3894. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3895. />
  3896. </productMenu>
  3897. <productMenu id="quickGuide"
  3898. type="0"
  3899. url=""
  3900. size="1.52MB" >
  3901. </productMenu>
  3902. <productMenu id="userGuide"
  3903. type="1"
  3904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3905. size="2.01MB" >
  3906. </productMenu>
  3907. <productMenu id="videoGuide"
  3908. type="0"
  3909. url=""
  3910. size="3.46MB" >
  3911. </productMenu>
  3912. <productMenu id="connectGuide"
  3913. type="1"
  3914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3915. size="1.1MB" >
  3916. </productMenu>
  3917. <productMenu id="volume"
  3918. type="16" >
  3919. </productMenu>
  3920. <productMenu id="volume+"
  3921. type="2"
  3922. url="0x6004" >
  3923. </productMenu>
  3924. <productMenu id="battery"
  3925. type="1" >
  3926. </productMenu>
  3927. <productID id="6A0E"
  3928. />
  3929. <productGroupable type="0"
  3930. />
  3931. </product>
  3932. <product id="PHANTOM"
  3933. name="PHANTOM"
  3934. series="Helmet"
  3935. latestVersion="1.2.9"
  3936. latestVersionVoicePrompt="1.7"
  3937. show = "1" >
  3938. <productMenu id="protocol"
  3939. type="2" >
  3940. </productMenu>
  3941. <productMenu id="ota"
  3942. type="2" >
  3943. <otaLanguages>
  3944. <otaLanguage
  3945. id="0"
  3946. name="English"
  3947. package="0"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="French"
  3952. package="1"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Spanish"
  3957. package="2"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Italian"
  3962. package="3"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="German"
  3967. package="4"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Dutch"
  3972. package="5"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Russian"
  3977. package="6"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Chinese"
  3982. package="7"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Korean"
  3987. package="8"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Japanese"
  3992. package="9"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Finnish"
  3997. package="10"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Polish"
  4002. package="11"
  4003. />
  4004. </otaLanguages>
  4005. <otaPackages>
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4008. size="5183988"
  4009. />
  4010. <package
  4011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4012. size="5183988"
  4013. />
  4014. <package
  4015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4016. size="5183988"
  4017. />
  4018. <package
  4019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4020. size="5183988"
  4021. />
  4022. <package
  4023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4024. size="5183988"
  4025. />
  4026. <package
  4027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4028. size="5183988"
  4029. />
  4030. <package
  4031. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4032. size="5183988"
  4033. />
  4034. <package
  4035. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4036. size="5183988"
  4037. />
  4038. <package
  4039. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4040. size="5183988"
  4041. />
  4042. <package
  4043. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4044. size="5183988"
  4045. />
  4046. <package
  4047. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4048. size="5183988"
  4049. />
  4050. <package
  4051. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4052. size="5183988"
  4053. />
  4054. </otaPackages>
  4055. </productMenu>
  4056. <productMenu id="wa"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="5" >
  4061. <productMenuType version="1.0.1"
  4062. type="4"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="led+"
  4066. type="2"
  4067. url="1" >
  4068. <productMenuType version="1.0.1"
  4069. type="-1"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="meshIntercom"
  4073. type="30" >
  4074. </productMenu>
  4075. <productMenu id="meshIntercom+"
  4076. type="3"
  4077. url="2" >
  4078. <productMenuURL version="1.0.4"
  4079. url="10"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="waveIntercom"
  4083. type="1" >
  4084. <productMenuType version="1.0.9"
  4085. type="0"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4103. <productMenuURL version="1.2.4"
  4104. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4105. />
  4106. <productMenuURL version="1.2.1"
  4107. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4108. />
  4109. <productMenuURL version="1.0.4"
  4110. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4111. />
  4112. <productMenuURL version="1.0.1"
  4113. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4114. />
  4115. </productMenu>
  4116. <productMenu id="quickGuide"
  4117. type="0"
  4118. url=""
  4119. size="1.12MB" >
  4120. </productMenu>
  4121. <productMenu id="userGuide"
  4122. type="1"
  4123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4124. size="2.0MB" >
  4125. </productMenu>
  4126. <productMenu id="videoGuide"
  4127. type="0"
  4128. url=""
  4129. size="3.41MB" >
  4130. </productMenu>
  4131. <productMenu id="connectGuide"
  4132. type="1"
  4133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4134. size="1.12MB" >
  4135. </productMenu>
  4136. <productMenu id="volume"
  4137. type="16" >
  4138. <productMenuType version="1.0"
  4139. type="13"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="volume+"
  4143. type="2"
  4144. url="0x6004" >
  4145. </productMenu>
  4146. <productMenu id="battery"
  4147. type="1" >
  4148. </productMenu>
  4149. <productID id="6A04"
  4150. />
  4151. <productGroupable type="0"
  4152. />
  4153. </product>
  4154. <product id="PHANTOMEasyLink"
  4155. name="PHANTOM EasyLink"
  4156. series="Helmet"
  4157. latestVersion="0.1"
  4158. latestVersionVoicePrompt="1.2"
  4159. show = "-1" >
  4160. <productMenu id="protocol"
  4161. type="2" >
  4162. </productMenu>
  4163. <productMenu id="ota"
  4164. type="0" >
  4165. <otaLanguages>
  4166. <otaLanguage
  4167. id="0"
  4168. name="English"
  4169. package="0"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="French"
  4174. package="1"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Spanish"
  4179. package="2"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Italian"
  4184. package="3"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="German"
  4189. package="4"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Dutch"
  4194. package="5"
  4195. />
  4196. <otaLanguage
  4197. id="0"
  4198. name="Russian"
  4199. package="6"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Chinese"
  4204. package="7"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Korean"
  4209. package="8"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Japanese"
  4214. package="9"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Finnish"
  4219. package="10"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Polish"
  4224. package="11"
  4225. />
  4226. </otaLanguages>
  4227. <otaPackages>
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4250. size="5183988"
  4251. />
  4252. <package
  4253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4254. size="5183988"
  4255. />
  4256. <package
  4257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4258. size="5183988"
  4259. />
  4260. <package
  4261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4262. size="5183988"
  4263. />
  4264. <package
  4265. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4266. size="5183988"
  4267. />
  4268. <package
  4269. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4270. size="5183988"
  4271. />
  4272. <package
  4273. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4274. size="5183988"
  4275. />
  4276. </otaPackages>
  4277. </productMenu>
  4278. <productMenu id="meshIntercom"
  4279. type="30" >
  4280. </productMenu>
  4281. <productMenu id="meshIntercom+"
  4282. type="3"
  4283. url="2" >
  4284. </productMenu>
  4285. <productMenu id="waveIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="fmradio"
  4289. type="0" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="musicSharing"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="0"
  4306. url=""
  4307. size="1.12MB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url=""
  4312. size="2.0MB" >
  4313. </productMenu>
  4314. <productMenu id="videoGuide"
  4315. type="0"
  4316. url=""
  4317. size="3.41MB" >
  4318. </productMenu>
  4319. <productMenu id="connectGuide"
  4320. type="0"
  4321. url=""
  4322. size="1.12MB" >
  4323. </productMenu>
  4324. <productMenu id="volume"
  4325. type="16" >
  4326. </productMenu>
  4327. <productMenu id="battery"
  4328. type="1" >
  4329. </productMenu>
  4330. <productID id="6A18"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="SPIDERXSlim"
  4336. name="SPIDER X Slim"
  4337. series="SPIDER"
  4338. latestVersion="1.0"
  4339. latestVersionVoicePrompt="1.7"
  4340. show = "1" >
  4341. <productMenu id="protocol"
  4342. type="2" >
  4343. </productMenu>
  4344. <productMenu id="warranty"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="serialNumber"
  4348. type="1" >
  4349. </productMenu>
  4350. <productMenu id="ota"
  4351. type="2" >
  4352. <otaLanguages>
  4353. <otaLanguage
  4354. id="0"
  4355. name="English"
  4356. package="0"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="French"
  4361. package="1"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Spanish"
  4366. package="2"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Italian"
  4371. package="3"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="German"
  4376. package="4"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Dutch"
  4381. package="5"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Russian"
  4386. package="6"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="Chinese"
  4391. package="7"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Korean"
  4396. package="8"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Japanese"
  4401. package="9"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="Finnish"
  4406. package="10"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Polish"
  4411. package="11"
  4412. />
  4413. </otaLanguages>
  4414. <otaPackages>
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4437. size="5183988"
  4438. />
  4439. <package
  4440. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4441. size="5183988"
  4442. />
  4443. <package
  4444. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4445. size="5183988"
  4446. />
  4447. <package
  4448. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4449. size="5183988"
  4450. />
  4451. <package
  4452. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4453. size="5183988"
  4454. />
  4455. <package
  4456. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4457. size="5183988"
  4458. />
  4459. <package
  4460. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4461. size="5183988"
  4462. />
  4463. </otaPackages>
  4464. </productMenu>
  4465. <productMenu id="meshIntercom"
  4466. type="30" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom+"
  4469. type="3"
  4470. url="2" >
  4471. </productMenu>
  4472. <productMenu id="waveIntercom"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1"
  4477. url="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="music"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="musicSharing"
  4486. type="0" >
  4487. </productMenu>
  4488. <productMenu id="deviceSetting"
  4489. type="1"
  4490. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_02.xml" >
  4491. <productMenuURL version="1.0"
  4492. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4493. />
  4494. </productMenu>
  4495. <productMenu id="quickGuide"
  4496. type="0"
  4497. url=""
  4498. size="1.12MB" >
  4499. </productMenu>
  4500. <productMenu id="userGuide"
  4501. type="1"
  4502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4503. size="2.0MB" >
  4504. </productMenu>
  4505. <productMenu id="videoGuide"
  4506. type="0"
  4507. url=""
  4508. size="3.41MB" >
  4509. </productMenu>
  4510. <productMenu id="connectGuide"
  4511. type="1"
  4512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4513. size="1.12MB" >
  4514. </productMenu>
  4515. <productMenu id="volume"
  4516. type="16" >
  4517. </productMenu>
  4518. <productMenu id="volume+"
  4519. type="2"
  4520. url="0x6004" >
  4521. </productMenu>
  4522. <productMenu id="appearance"
  4523. type="1"
  4524. url="2|white,silver,chrome,black" >
  4525. </productMenu>
  4526. <productMenu id="battery"
  4527. type="1" >
  4528. </productMenu>
  4529. <productID id="6A07"
  4530. />
  4531. <productGroupable type="0"
  4532. />
  4533. </product>
  4534. <product id="XFITM"
  4535. name="X-FIT M"
  4536. series="SPIDER"
  4537. latestVersion="0.1.11"
  4538. latestVersionVoicePrompt="1.1"
  4539. show = "-1" >
  4540. <productMenu id="protocol"
  4541. type="2" >
  4542. </productMenu>
  4543. <productMenu id="ota"
  4544. type="0" >
  4545. <otaLanguages>
  4546. <otaLanguage
  4547. id="0"
  4548. name="English"
  4549. package="0"
  4550. />
  4551. <otaLanguage
  4552. id="0"
  4553. name="French"
  4554. package="1"
  4555. />
  4556. <otaLanguage
  4557. id="0"
  4558. name="Spanish"
  4559. package="2"
  4560. />
  4561. <otaLanguage
  4562. id="0"
  4563. name="Italian"
  4564. package="3"
  4565. />
  4566. <otaLanguage
  4567. id="0"
  4568. name="German"
  4569. package="4"
  4570. />
  4571. <otaLanguage
  4572. id="0"
  4573. name="Dutch"
  4574. package="5"
  4575. />
  4576. <otaLanguage
  4577. id="0"
  4578. name="Russian"
  4579. package="6"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="Chinese"
  4584. package="7"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Korean"
  4589. package="8"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Japanese"
  4594. package="9"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="Finnish"
  4599. package="10"
  4600. />
  4601. <otaLanguage
  4602. id="0"
  4603. name="Polish"
  4604. package="11"
  4605. />
  4606. </otaLanguages>
  4607. <otaPackages>
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4610. size="5183988"
  4611. />
  4612. <package
  4613. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4614. size="5183988"
  4615. />
  4616. <package
  4617. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4618. size="5183988"
  4619. />
  4620. <package
  4621. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4622. size="5183988"
  4623. />
  4624. <package
  4625. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4626. size="5183988"
  4627. />
  4628. <package
  4629. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4630. size="5183988"
  4631. />
  4632. <package
  4633. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4634. size="5183988"
  4635. />
  4636. <package
  4637. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4638. size="5183988"
  4639. />
  4640. <package
  4641. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4642. size="5183988"
  4643. />
  4644. <package
  4645. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4646. size="5183988"
  4647. />
  4648. <package
  4649. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4650. size="5183988"
  4651. />
  4652. <package
  4653. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4654. size="5183988"
  4655. />
  4656. </otaPackages>
  4657. </productMenu>
  4658. <productMenu id="meshIntercom"
  4659. type="30" >
  4660. </productMenu>
  4661. <productMenu id="meshIntercom+"
  4662. type="3"
  4663. url="2" >
  4664. </productMenu>
  4665. <productMenu id="waveIntercom"
  4666. type="1" >
  4667. </productMenu>
  4668. <productMenu id="fmradio"
  4669. type="1"
  4670. url="1" >
  4671. </productMenu>
  4672. <productMenu id="phone"
  4673. type="1" >
  4674. </productMenu>
  4675. <productMenu id="music"
  4676. type="1" >
  4677. </productMenu>
  4678. <productMenu id="musicSharing"
  4679. type="0" >
  4680. </productMenu>
  4681. <productMenu id="deviceSetting"
  4682. type="1"
  4683. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4684. </productMenu>
  4685. <productMenu id="quickGuide"
  4686. type="0"
  4687. url=""
  4688. size="1.12MB" >
  4689. </productMenu>
  4690. <productMenu id="userGuide"
  4691. type="1"
  4692. url=""
  4693. size="2.0MB" >
  4694. </productMenu>
  4695. <productMenu id="videoGuide"
  4696. type="0"
  4697. url=""
  4698. size="3.41MB" >
  4699. </productMenu>
  4700. <productMenu id="volume"
  4701. type="16" >
  4702. </productMenu>
  4703. <productMenu id="volume+"
  4704. type="2"
  4705. url="0x6004" >
  4706. </productMenu>
  4707. <productMenu id="battery"
  4708. type="1" >
  4709. </productMenu>
  4710. <productID id="6A17"
  4711. />
  4712. <productGroupable type="0"
  4713. />
  4714. </product>
  4715. <product id="VORTEXMESH"
  4716. name="VORTEX MESH"
  4717. series="Helmet"
  4718. latestVersion="0.1.11"
  4719. latestVersionVoicePrompt="1.1"
  4720. show = "-1" >
  4721. <productMenu id="protocol"
  4722. type="2" >
  4723. </productMenu>
  4724. <productMenu id="ota"
  4725. type="0" >
  4726. <otaLanguages>
  4727. <otaLanguage
  4728. id="0"
  4729. name="English"
  4730. package="0"
  4731. />
  4732. <otaLanguage
  4733. id="0"
  4734. name="French"
  4735. package="1"
  4736. />
  4737. <otaLanguage
  4738. id="0"
  4739. name="Spanish"
  4740. package="2"
  4741. />
  4742. <otaLanguage
  4743. id="0"
  4744. name="Italian"
  4745. package="3"
  4746. />
  4747. <otaLanguage
  4748. id="0"
  4749. name="German"
  4750. package="4"
  4751. />
  4752. <otaLanguage
  4753. id="0"
  4754. name="Dutch"
  4755. package="5"
  4756. />
  4757. <otaLanguage
  4758. id="0"
  4759. name="Russian"
  4760. package="6"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="Chinese"
  4765. package="7"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Korean"
  4770. package="8"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Japanese"
  4775. package="9"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="Finnish"
  4780. package="10"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="Polish"
  4785. package="11"
  4786. />
  4787. </otaLanguages>
  4788. <otaPackages>
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4791. size="5183988"
  4792. />
  4793. <package
  4794. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4795. size="5183988"
  4796. />
  4797. <package
  4798. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4799. size="5183988"
  4800. />
  4801. <package
  4802. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4803. size="5183988"
  4804. />
  4805. <package
  4806. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4807. size="5183988"
  4808. />
  4809. <package
  4810. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4811. size="5183988"
  4812. />
  4813. <package
  4814. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4815. size="5183988"
  4816. />
  4817. <package
  4818. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4819. size="5183988"
  4820. />
  4821. <package
  4822. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4823. size="5183988"
  4824. />
  4825. <package
  4826. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4827. size="5183988"
  4828. />
  4829. <package
  4830. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4831. size="5183988"
  4832. />
  4833. <package
  4834. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4835. size="5183988"
  4836. />
  4837. </otaPackages>
  4838. </productMenu>
  4839. <productMenu id="wa"
  4840. type="0" >
  4841. </productMenu>
  4842. <productMenu id="led"
  4843. type="5" >
  4844. </productMenu>
  4845. <productMenu id="led+"
  4846. type="2"
  4847. url="1" >
  4848. </productMenu>
  4849. <productMenu id="meshIntercom"
  4850. type="30" >
  4851. </productMenu>
  4852. <productMenu id="meshIntercom+"
  4853. type="3"
  4854. url="2" >
  4855. </productMenu>
  4856. <productMenu id="waveIntercom"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="fmradio"
  4860. type="0" >
  4861. </productMenu>
  4862. <productMenu id="phone"
  4863. type="1" >
  4864. </productMenu>
  4865. <productMenu id="music"
  4866. type="1" >
  4867. </productMenu>
  4868. <productMenu id="musicSharing"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="deviceSetting"
  4872. type="1"
  4873. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4874. </productMenu>
  4875. <productMenu id="quickGuide"
  4876. type="0"
  4877. url=""
  4878. size="1.12MB" >
  4879. </productMenu>
  4880. <productMenu id="userGuide"
  4881. type="1"
  4882. url=""
  4883. size="2.0MB" >
  4884. </productMenu>
  4885. <productMenu id="videoGuide"
  4886. type="0"
  4887. url=""
  4888. size="3.41MB" >
  4889. </productMenu>
  4890. <productMenu id="volume"
  4891. type="16" >
  4892. </productMenu>
  4893. <productMenu id="battery"
  4894. type="1" >
  4895. </productMenu>
  4896. <productID id="6A12"
  4897. />
  4898. <productGroupable type="0"
  4899. />
  4900. </product>
  4901. <product id="MeshOn"
  4902. name="MeshON"
  4903. series="Other"
  4904. latestVersion="1.0.1"
  4905. latestVersionVoicePrompt="0.7"
  4906. show = "1" >
  4907. <productMenu id="protocol"
  4908. type="2" >
  4909. </productMenu>
  4910. <productMenu id="ota"
  4911. type="2" >
  4912. <otaPackages>
  4913. <package
  4914. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4915. size="2945812"
  4916. />
  4917. </otaPackages>
  4918. </productMenu>
  4919. <productMenu id="meshIntercom+"
  4920. type="3"
  4921. url="4" >
  4922. </productMenu>
  4923. <productMenu id="waveIntercom"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="phone"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="music"
  4930. type="0" >
  4931. </productMenu>
  4932. <productMenu id="musicSharing"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="deviceSetting"
  4936. type="1"
  4937. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4938. </productMenu>
  4939. <productMenu id="userGuide"
  4940. type="1"
  4941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4942. size="2.0MB" >
  4943. </productMenu>
  4944. <productMenu id="bluetoothHeadset"
  4945. type="1"
  4946. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4947. </productMenu>
  4948. <productMenu id="volume"
  4949. type="0" >
  4950. </productMenu>
  4951. <productMenu id="battery"
  4952. type="1" >
  4953. </productMenu>
  4954. <productID id="684E"
  4955. />
  4956. <productGroupable type="0"
  4957. />
  4958. </product>
  4959. <product id="Impulse"
  4960. name="Impulse"
  4961. series="Helmet"
  4962. latestVersion="1.4.1"
  4963. show = "1" >
  4964. <productMenu id="protocol"
  4965. type="2" >
  4966. </productMenu>
  4967. <productMenu id="alexa"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. </productMenu>
  4973. <productMenu id="wa"
  4974. type="24" >
  4975. </productMenu>
  4976. <productMenu id="manager"
  4977. type="0" >
  4978. </productMenu>
  4979. <productMenu id="sip"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="led"
  4983. type="1" >
  4984. <productMenuType version="1.0.1"
  4985. type="2"
  4986. />
  4987. <productMenuType version="1.0"
  4988. type="1"
  4989. />
  4990. </productMenu>
  4991. <productMenu id="meshIntercom"
  4992. type="30" >
  4993. <productMenuType version="1.1.1"
  4994. type="20"
  4995. />
  4996. </productMenu>
  4997. <productMenu id="meshIntercom+"
  4998. type="3"
  4999. url="2" >
  5000. <productMenuType version="1.3.9"
  5001. type="2"
  5002. />
  5003. <productMenuURL version="1.1.1"
  5004. url="0"
  5005. />
  5006. </productMenu>
  5007. <productMenu id="waveIntercom"
  5008. type="1" >
  5009. <productMenuType version="1.3.9"
  5010. type="0"
  5011. />
  5012. </productMenu>
  5013. <productMenu id="bluetoothIntercom"
  5014. type="1" >
  5015. </productMenu>
  5016. <productMenu id="phone"
  5017. type="1" >
  5018. </productMenu>
  5019. <productMenu id="music"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="fmradio"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="deviceSetting"
  5026. type="1"
  5027. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5028. <productMenuURL version="1.3.9"
  5029. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5030. />
  5031. <productMenuURL version="1.1.1"
  5032. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5033. />
  5034. <productMenuURL version="1.0.4"
  5035. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="quickGuide"
  5039. type="0"
  5040. url=""
  5041. size="344KB" >
  5042. </productMenu>
  5043. <productMenu id="userGuide"
  5044. type="1"
  5045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5046. size="3.41MB" >
  5047. </productMenu>
  5048. <productMenu id="connectGuide"
  5049. type="1"
  5050. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5051. size="1.12MB" >
  5052. </productMenu>
  5053. <productMenu id="volume"
  5054. type="11" >
  5055. </productMenu>
  5056. <productMenu id="battery"
  5057. type="1" >
  5058. </productMenu>
  5059. <productID id="3148"
  5060. />
  5061. <productGroupable type="0"
  5062. />
  5063. </product>
  5064. <product id="Impulse"
  5065. name="Impulse"
  5066. series="Helmet"
  5067. latestVersion="2.0"
  5068. show = "-1" >
  5069. <productMenu id="protocol"
  5070. type="2" >
  5071. </productMenu>
  5072. <productMenu id="alexa"
  5073. type="0" >
  5074. </productMenu>
  5075. <productMenu id="ota"
  5076. type="0" >
  5077. </productMenu>
  5078. <productMenu id="wa"
  5079. type="8" >
  5080. </productMenu>
  5081. <productMenu id="manager"
  5082. type="0" >
  5083. </productMenu>
  5084. <productMenu id="sip"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="led"
  5088. type="3" >
  5089. </productMenu>
  5090. <productMenu id="meshIntercom"
  5091. type="20" >
  5092. </productMenu>
  5093. <productMenu id="bluetoothIntercom"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="phone"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="music"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="fmradio"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="deviceSetting"
  5106. type="1"
  5107. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5108. </productMenu>
  5109. <productMenu id="quickGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5112. size="344KB" >
  5113. </productMenu>
  5114. <productMenu id="userGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5117. size="3.41MB" >
  5118. </productMenu>
  5119. <productMenu id="volume"
  5120. type="11" >
  5121. </productMenu>
  5122. <productMenu id="battery"
  5123. type="1" >
  5124. </productMenu>
  5125. <productID id="3221"
  5126. />
  5127. <productGroupable type="0"
  5128. />
  5129. </product>
  5130. <product id="Stryker"
  5131. name="Stryker"
  5132. series="Helmet"
  5133. latestVersion="1.4.1"
  5134. show = "1" >
  5135. <productMenu id="protocol"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="alexa"
  5139. type="0" >
  5140. </productMenu>
  5141. <productMenu id="ota"
  5142. type="0" >
  5143. </productMenu>
  5144. <productMenu id="wa"
  5145. type="40" >
  5146. </productMenu>
  5147. <productMenu id="manager"
  5148. type="0" >
  5149. </productMenu>
  5150. <productMenu id="sip"
  5151. type="1" >
  5152. </productMenu>
  5153. <productMenu id="led"
  5154. type="1" >
  5155. <productMenuType version="1.0.1"
  5156. type="2"
  5157. />
  5158. <productMenuType version="1.0"
  5159. type="1"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="meshIntercom"
  5163. type="30" >
  5164. <productMenuType version="1.1.1"
  5165. type="20"
  5166. />
  5167. </productMenu>
  5168. <productMenu id="meshIntercom+"
  5169. type="3"
  5170. url="2" >
  5171. <productMenuType version="1.3.9"
  5172. type="2"
  5173. />
  5174. <productMenuURL version="1.1.1"
  5175. url="0"
  5176. />
  5177. </productMenu>
  5178. <productMenu id="waveIntercom"
  5179. type="1" >
  5180. <productMenuType version="1.2.9"
  5181. type="0"
  5182. />
  5183. </productMenu>
  5184. <productMenu id="bluetoothIntercom"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="phone"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="music"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="fmradio"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="deviceSetting"
  5197. type="1"
  5198. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5199. <productMenuURL version="1.3.9"
  5200. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5201. />
  5202. <productMenuURL version="1.1.1"
  5203. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5204. />
  5205. <productMenuURL version="1.0.4"
  5206. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5207. />
  5208. </productMenu>
  5209. <productMenu id="quickGuide"
  5210. type="0"
  5211. url=""
  5212. size="344KB" >
  5213. </productMenu>
  5214. <productMenu id="userGuide"
  5215. type="1"
  5216. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5217. size="3.41MB" >
  5218. </productMenu>
  5219. <productMenu id="connectGuide"
  5220. type="1"
  5221. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5222. size="1.12MB" >
  5223. </productMenu>
  5224. <productMenu id="volume"
  5225. type="11" >
  5226. </productMenu>
  5227. <productMenu id="battery"
  5228. type="1" >
  5229. </productMenu>
  5230. <productID id="3154"
  5231. />
  5232. <productGroupable type="0"
  5233. />
  5234. </product>
  5235. <product id="SRL3Plus"
  5236. name="SRL3 Plus"
  5237. series="60"
  5238. latestVersion="0.9.14"
  5239. latestVersionMesh="0.19"
  5240. latestVersionVoicePrompt="1.8"
  5241. show = "-1" >
  5242. <productMenu id="protocol"
  5243. type="2" >
  5244. </productMenu>
  5245. <productMenu id="ota"
  5246. type="0" >
  5247. <otaLanguages>
  5248. <otaLanguage
  5249. id="0"
  5250. name="English"
  5251. package="0"
  5252. />
  5253. <otaLanguage
  5254. id="0"
  5255. name="French"
  5256. package="1"
  5257. />
  5258. <otaLanguage
  5259. id="0"
  5260. name="Spanish"
  5261. package="2"
  5262. />
  5263. <otaLanguage
  5264. id="0"
  5265. name="Italian"
  5266. package="3"
  5267. />
  5268. <otaLanguage
  5269. id="0"
  5270. name="German"
  5271. package="4"
  5272. />
  5273. <otaLanguage
  5274. id="0"
  5275. name="Dutch"
  5276. package="5"
  5277. />
  5278. <otaLanguage
  5279. id="0"
  5280. name="Russian"
  5281. package="6"
  5282. />
  5283. <otaLanguage
  5284. id="0"
  5285. name="Chinese"
  5286. package="7"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="Korean"
  5291. package="8"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Japanese"
  5296. package="9"
  5297. />
  5298. <otaLanguage
  5299. id="0"
  5300. name="Finnish"
  5301. package="10"
  5302. />
  5303. <otaLanguage
  5304. id="0"
  5305. name="Polish"
  5306. package="11"
  5307. />
  5308. </otaLanguages>
  5309. <otaPackages>
  5310. <package
  5311. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0.img"
  5312. size="5183988"
  5313. />
  5314. <package
  5315. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fr-FR.img"
  5316. size="5183988"
  5317. />
  5318. <package
  5319. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-es-ES.img"
  5320. size="5183988"
  5321. />
  5322. <package
  5323. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-it-IT.img"
  5324. size="5183988"
  5325. />
  5326. <package
  5327. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-de-DE.img"
  5328. size="5183988"
  5329. />
  5330. <package
  5331. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-nl-NL.img"
  5332. size="5183988"
  5333. />
  5334. <package
  5335. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ru-RU.img"
  5336. size="5183988"
  5337. />
  5338. <package
  5339. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-cmn-CN.img"
  5340. size="5183988"
  5341. />
  5342. <package
  5343. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ko-KR.img"
  5344. size="5183988"
  5345. />
  5346. <package
  5347. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-ja-JP.img"
  5348. size="5183988"
  5349. />
  5350. <package
  5351. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-fi-FI.img"
  5352. size="5183988"
  5353. />
  5354. <package
  5355. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.14-build0-pl-PL.img"
  5356. size="5183988"
  5357. />
  5358. </otaPackages>
  5359. </productMenu>
  5360. <productMenu id="sip"
  5361. type="1" >
  5362. </productMenu>
  5363. <productMenu id="meshIntercom+"
  5364. type="3"
  5365. url="2" >
  5366. </productMenu>
  5367. <productMenu id="waveIntercom"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="bluetoothIntercom"
  5371. type="1"
  5372. url="2" >
  5373. </productMenu>
  5374. <productMenu id="bluetoothIntercomGrouping"
  5375. type="0" >
  5376. </productMenu>
  5377. <productMenu id="fmradio"
  5378. type="1"
  5379. url="1" >
  5380. </productMenu>
  5381. <productMenu id="phone"
  5382. type="1" >
  5383. </productMenu>
  5384. <productMenu id="music"
  5385. type="1" >
  5386. </productMenu>
  5387. <productMenu id="musicSharing"
  5388. type="0" >
  5389. </productMenu>
  5390. <productMenu id="deviceSetting"
  5391. type="1"
  5392. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/SRL3Plus.xml" >
  5393. </productMenu>
  5394. <productMenu id="quickGuide"
  5395. type="0"
  5396. url=""
  5397. size="1.12MB" >
  5398. </productMenu>
  5399. <productMenu id="userGuide"
  5400. type="0"
  5401. url=""
  5402. size="2.0MB" >
  5403. </productMenu>
  5404. <productMenu id="videoGuide"
  5405. type="0"
  5406. url=""
  5407. size="3.41MB" >
  5408. </productMenu>
  5409. <productMenu id="volume"
  5410. type="16" >
  5411. </productMenu>
  5412. <productMenu id="soundMode"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="battery"
  5416. type="1" >
  5417. </productMenu>
  5418. <productID id="6A08"
  5419. />
  5420. <productGroupable type="0"
  5421. />
  5422. </product>
  5423. <product id="SRL3"
  5424. name="SRL3"
  5425. series="SRL"
  5426. latestVersion="1.5"
  5427. show = "1" >
  5428. <productMenu id="protocol"
  5429. type="2" >
  5430. </productMenu>
  5431. <productMenu id="alexa"
  5432. type="0" >
  5433. </productMenu>
  5434. <productMenu id="ota"
  5435. type="0" >
  5436. </productMenu>
  5437. <productMenu id="wa"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="sip"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="meshIntercom"
  5444. type="30" >
  5445. </productMenu>
  5446. <productMenu id="meshIntercom+"
  5447. type="3"
  5448. url="2" >
  5449. <productMenuType version="1.3.9"
  5450. type="2"
  5451. />
  5452. </productMenu>
  5453. <productMenu id="waveIntercom"
  5454. type="1" >
  5455. <productMenuType version="1.4.9"
  5456. type="0"
  5457. />
  5458. </productMenu>
  5459. <productMenu id="bluetoothIntercom"
  5460. type="1" >
  5461. </productMenu>
  5462. <productMenu id="phone"
  5463. type="1" >
  5464. </productMenu>
  5465. <productMenu id="music"
  5466. type="1" >
  5467. </productMenu>
  5468. <productMenu id="fmradio"
  5469. type="1" >
  5470. </productMenu>
  5471. <productMenu id="deviceSetting"
  5472. type="1"
  5473. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5474. <productMenuURL version="1.3"
  5475. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5476. />
  5477. </productMenu>
  5478. <productMenu id="quickGuide"
  5479. type="0"
  5480. url=""
  5481. size="344KB" >
  5482. </productMenu>
  5483. <productMenu id="userGuide"
  5484. type="1"
  5485. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5486. size="3.41MB" >
  5487. </productMenu>
  5488. <productMenu id="connectGuide"
  5489. type="1"
  5490. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5491. size="1.12MB" >
  5492. </productMenu>
  5493. <productMenu id="volume"
  5494. type="11" >
  5495. </productMenu>
  5496. <productMenu id="battery"
  5497. type="1" >
  5498. </productMenu>
  5499. <productID id="3219"
  5500. />
  5501. <productGroupable type="0"
  5502. />
  5503. </product>
  5504. <product id="SRL_Mesh"
  5505. name="SRL-Mesh"
  5506. series="SRL"
  5507. latestVersion="1.7.1"
  5508. show = "1" >
  5509. <productMenu id="protocol"
  5510. type="2" >
  5511. </productMenu>
  5512. <productMenu id="alexa"
  5513. type="0" >
  5514. </productMenu>
  5515. <productMenu id="ota"
  5516. type="0" >
  5517. </productMenu>
  5518. <productMenu id="wa"
  5519. type="1" >
  5520. </productMenu>
  5521. <productMenu id="sip"
  5522. type="1" >
  5523. </productMenu>
  5524. <productMenu id="meshIntercom"
  5525. type="30" >
  5526. <productMenuType version="1.1.1"
  5527. type="20"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="meshIntercom+"
  5531. type="3"
  5532. url="2" >
  5533. <productMenuType version="1.5.9"
  5534. type="2"
  5535. />
  5536. <productMenuURL version="1.1.1"
  5537. url="0"
  5538. />
  5539. </productMenu>
  5540. <productMenu id="waveIntercom"
  5541. type="1" >
  5542. <productMenuType version="1.6.9"
  5543. type="0"
  5544. />
  5545. </productMenu>
  5546. <productMenu id="bluetoothIntercom"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="phone"
  5550. type="1" >
  5551. </productMenu>
  5552. <productMenu id="music"
  5553. type="1" >
  5554. </productMenu>
  5555. <productMenu id="fmradio"
  5556. type="1" >
  5557. </productMenu>
  5558. <productMenu id="deviceSetting"
  5559. type="1"
  5560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5561. <productMenuURL version="1.5"
  5562. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5563. />
  5564. <productMenuURL version="1.1.1"
  5565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5566. />
  5567. <productMenuURL version="1.0.3"
  5568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5569. />
  5570. </productMenu>
  5571. <productMenu id="quickGuide"
  5572. type="0"
  5573. url=""
  5574. size="344KB" >
  5575. </productMenu>
  5576. <productMenu id="userGuide"
  5577. type="1"
  5578. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5579. size="3.41MB" >
  5580. </productMenu>
  5581. <productMenu id="connectGuide"
  5582. type="1"
  5583. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5584. size="1.12MB" >
  5585. </productMenu>
  5586. <productMenu id="volume"
  5587. type="11" >
  5588. </productMenu>
  5589. <productMenu id="battery"
  5590. type="1" >
  5591. </productMenu>
  5592. <productID id="3216"
  5593. />
  5594. <productGroupable type="0"
  5595. />
  5596. </product>
  5597. <product id="SRL_EXT"
  5598. name="SRL-EXT"
  5599. series="SRL"
  5600. latestVersion="1.7.1"
  5601. show = "1" >
  5602. <productMenu id="protocol"
  5603. type="2" >
  5604. </productMenu>
  5605. <productMenu id="alexa"
  5606. type="0" >
  5607. </productMenu>
  5608. <productMenu id="ota"
  5609. type="0" >
  5610. </productMenu>
  5611. <productMenu id="wa"
  5612. type="0" >
  5613. </productMenu>
  5614. <productMenu id="sip"
  5615. type="1" >
  5616. </productMenu>
  5617. <productMenu id="meshIntercom"
  5618. type="30" >
  5619. <productMenuType version="1.1.1"
  5620. type="20"
  5621. />
  5622. </productMenu>
  5623. <productMenu id="meshIntercom+"
  5624. type="3"
  5625. url="2" >
  5626. <productMenuType version="1.5.9"
  5627. type="2"
  5628. />
  5629. <productMenuURL version="1.1.1"
  5630. url="0"
  5631. />
  5632. </productMenu>
  5633. <productMenu id="waveIntercom"
  5634. type="1" >
  5635. <productMenuType version="1.6.9"
  5636. type="0"
  5637. />
  5638. </productMenu>
  5639. <productMenu id="bluetoothIntercom"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="phone"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="music"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="fmradio"
  5649. type="1" >
  5650. </productMenu>
  5651. <productMenu id="deviceSetting"
  5652. type="1"
  5653. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5654. <productMenuURL version="1.5"
  5655. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5656. />
  5657. <productMenuURL version="1.1.1"
  5658. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5659. />
  5660. <productMenuURL version="1.0.3"
  5661. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5662. />
  5663. </productMenu>
  5664. <productMenu id="quickGuide"
  5665. type="0"
  5666. url=""
  5667. size="344KB" >
  5668. </productMenu>
  5669. <productMenu id="userGuide"
  5670. type="1"
  5671. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5672. size="3.41MB" >
  5673. </productMenu>
  5674. <productMenu id="connectGuide"
  5675. type="1"
  5676. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5677. size="1.12MB" >
  5678. </productMenu>
  5679. <productMenu id="volume"
  5680. type="11" >
  5681. </productMenu>
  5682. <productMenu id="battery"
  5683. type="1" >
  5684. </productMenu>
  5685. <productID id="3212"
  5686. />
  5687. <productGroupable type="0"
  5688. />
  5689. </product>
  5690. <product id="SRL2"
  5691. name="SRL2"
  5692. series="SRL"
  5693. latestVersion="1.0.9"
  5694. show = "1" >
  5695. <productMenu id="protocol"
  5696. type="0">
  5697. </productMenu>
  5698. <productMenu id="sip"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="bluetoothIntercom"
  5702. type="1" >
  5703. </productMenu>
  5704. <productMenu id="intercomSetting"
  5705. type="1" >
  5706. </productMenu>
  5707. <productMenu id="phone"
  5708. type="2" >
  5709. </productMenu>
  5710. <productMenu id="fmradio"
  5711. type="3" >
  5712. </productMenu>
  5713. <productMenu id="deviceSetting"
  5714. type="1"
  5715. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5716. </productMenu>
  5717. <productMenu id="quickGuide"
  5718. type="1"
  5719. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5720. size="846KB" >
  5721. </productMenu>
  5722. <productMenu id="userGuide"
  5723. type="1"
  5724. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5725. size="1.18MB" >
  5726. </productMenu>
  5727. <productMenu id="connectGuide"
  5728. type="1"
  5729. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5730. size="1.12MB" >
  5731. </productMenu>
  5732. <productID id="4530"
  5733. />
  5734. <productGroupable type="1"
  5735. />
  5736. </product>
  5737. <product id="Neotec2"
  5738. name="SRL Neotec2"
  5739. series="SRL"
  5740. latestVersion="1.1.5"
  5741. show = "1" >
  5742. <productMenu id="protocol"
  5743. type="0">
  5744. </productMenu>
  5745. <productMenu id="sip"
  5746. type="1" >
  5747. </productMenu>
  5748. <productMenu id="bluetoothIntercom"
  5749. type="1" >
  5750. </productMenu>
  5751. <productMenu id="intercomSetting"
  5752. type="1" >
  5753. </productMenu>
  5754. <productMenu id="phone"
  5755. type="2" >
  5756. </productMenu>
  5757. <productMenu id="fmradio"
  5758. type="3" >
  5759. </productMenu>
  5760. <productMenu id="deviceSetting"
  5761. type="1"
  5762. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5763. </productMenu>
  5764. <productMenu id="quickGuide"
  5765. type="0"
  5766. url=""
  5767. size="796KB" >
  5768. </productMenu>
  5769. <productMenu id="userGuide"
  5770. type="1"
  5771. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5772. size="1.90MB" >
  5773. </productMenu>
  5774. <productMenu id="connectGuide"
  5775. type="1"
  5776. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5777. size="1.12MB" >
  5778. </productMenu>
  5779. <productID id="4510"
  5780. />
  5781. <productGroupable type="1"
  5782. />
  5783. </product>
  5784. <product id="SPIDERST2ANC"
  5785. name="SPIDER ST2 ANC"
  5786. series="SPIDER"
  5787. latestVersion="0.5.1"
  5788. latestVersionVoicePrompt="0.2"
  5789. latestVersionMesh="0.8"
  5790. show = "-1" >
  5791. <productMenu id="protocol"
  5792. type="2" >
  5793. </productMenu>
  5794. <productMenu id="ota"
  5795. type="0" >
  5796. <otaPackages>
  5797. <package
  5798. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5799. size="2945812"
  5800. />
  5801. </otaPackages>
  5802. </productMenu>
  5803. <productMenu id="wa"
  5804. type="0" >
  5805. </productMenu>
  5806. <productMenu id="led"
  5807. type="1" >
  5808. </productMenu>
  5809. <productMenu id="meshIntercom"
  5810. type="30" >
  5811. </productMenu>
  5812. <productMenu id="fmradio"
  5813. type="1" >
  5814. </productMenu>
  5815. <productMenu id="phone"
  5816. type="1" >
  5817. </productMenu>
  5818. <productMenu id="music"
  5819. type="1" >
  5820. </productMenu>
  5821. <productMenu id="musicSharing"
  5822. type="0" >
  5823. </productMenu>
  5824. <productMenu id="deviceSetting"
  5825. type="1"
  5826. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5827. </productMenu>
  5828. <productMenu id="quickGuide"
  5829. type="1"
  5830. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5831. size="1.12MB" >
  5832. </productMenu>
  5833. <productMenu id="userGuide"
  5834. type="1"
  5835. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5836. size="2.0MB" >
  5837. </productMenu>
  5838. <productMenu id="videoGuide"
  5839. type="1"
  5840. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5841. size="3.41MB" >
  5842. </productMenu>
  5843. <productMenu id="volume"
  5844. type="12" >
  5845. </productMenu>
  5846. <productMenu id="battery"
  5847. type="1" >
  5848. </productMenu>
  5849. <productID id="6A00"
  5850. />
  5851. <productGroupable type="0"
  5852. />
  5853. </product>
  5854. <product id="SPIDER_ST1"
  5855. name="SPIDER ST1"
  5856. series="SPIDER"
  5857. latestVersion="2.5.3"
  5858. latestVersionVoicePrompt="1.6"
  5859. show = "1" >
  5860. <productMenu id="protocol"
  5861. type="2" >
  5862. </productMenu>
  5863. <productMenu id="alexa"
  5864. type="0" >
  5865. </productMenu>
  5866. <productMenu id="ota"
  5867. type="2" >
  5868. <productMenuType version="2.1.9"
  5869. type="0"
  5870. />
  5871. <otaPackages>
  5872. <package
  5873. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5874. size="2945812"
  5875. />
  5876. </otaPackages>
  5877. </productMenu>
  5878. <productMenu id="wa"
  5879. type="0" >
  5880. </productMenu>
  5881. <productMenu id="meshIntercom"
  5882. type="30" >
  5883. <productMenuType version="2.1.1"
  5884. type="20"
  5885. />
  5886. </productMenu>
  5887. <productMenu id="meshIntercom+"
  5888. type="3"
  5889. url="2" >
  5890. <productMenuType version="2.2.9"
  5891. type="2"
  5892. />
  5893. <productMenuURL version="2.1.1"
  5894. url="0"
  5895. />
  5896. </productMenu>
  5897. <productMenu id="waveIntercom"
  5898. type="1" >
  5899. <productMenuType version="2.3.9"
  5900. type="0"
  5901. />
  5902. </productMenu>
  5903. <productMenu id="phone"
  5904. type="1" >
  5905. </productMenu>
  5906. <productMenu id="music"
  5907. type="1" >
  5908. </productMenu>
  5909. <productMenu id="musicSharing"
  5910. type="0" >
  5911. </productMenu>
  5912. <productMenu id="deviceSetting"
  5913. type="1"
  5914. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5915. <productMenuURL version="2.4.9"
  5916. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5917. />
  5918. <productMenuURL version="2.2.2"
  5919. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5920. />
  5921. <productMenuURL version="2.1.1"
  5922. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5923. />
  5924. </productMenu>
  5925. <productMenu id="quickGuide"
  5926. type="0"
  5927. url=""
  5928. size="1.12MB" >
  5929. </productMenu>
  5930. <productMenu id="userGuide"
  5931. type="1"
  5932. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5933. size="2.0MB" >
  5934. </productMenu>
  5935. <productMenu id="videoGuide"
  5936. type="1"
  5937. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5938. size="3.41MB" >
  5939. </productMenu>
  5940. <productMenu id="connectGuide"
  5941. type="1"
  5942. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5943. size="1.12MB" >
  5944. </productMenu>
  5945. <productMenu id="volume"
  5946. type="12" >
  5947. </productMenu>
  5948. <productMenu id="volume+"
  5949. type="2"
  5950. url="0x2000" >
  5951. </productMenu>
  5952. <productMenu id="battery"
  5953. type="1" >
  5954. </productMenu>
  5955. <productID id="6800"
  5956. />
  5957. <productGroupable type="0"
  5958. />
  5959. </product>
  5960. <product id="SPIDER_ST1"
  5961. name="SPIDER ST1"
  5962. series="SPIDER"
  5963. latestVersion="1.2.2"
  5964. show = "-1" >
  5965. <productMenu id="protocol"
  5966. type="2" >
  5967. </productMenu>
  5968. <productMenu id="alexa"
  5969. type="0" >
  5970. </productMenu>
  5971. <productMenu id="ota"
  5972. type="0" >
  5973. </productMenu>
  5974. <productMenu id="wa"
  5975. type="0" >
  5976. </productMenu>
  5977. <productMenu id="meshIntercom"
  5978. type="20" >
  5979. </productMenu>
  5980. <productMenu id="phone"
  5981. type="1" >
  5982. </productMenu>
  5983. <productMenu id="music"
  5984. type="1" >
  5985. </productMenu>
  5986. <productMenu id="deviceSetting"
  5987. type="1"
  5988. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5989. </productMenu>
  5990. <productMenu id="quickGuide"
  5991. type="0"
  5992. url=""
  5993. size="1.12MB" >
  5994. </productMenu>
  5995. <productMenu id="userGuide"
  5996. type="1"
  5997. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5998. size="2.0MB" >
  5999. </productMenu>
  6000. <productMenu id="videoGuide"
  6001. type="1"
  6002. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6003. size="3.41MB" >
  6004. </productMenu>
  6005. <productMenu id="volume"
  6006. type="13" >
  6007. <productMenuType version="1.1.6"
  6008. type="14"/>
  6009. </productMenu>
  6010. <productMenu id="battery"
  6011. type="1" >
  6012. </productMenu>
  6013. <productID id="6510"
  6014. />
  6015. <productGroupable type="0"
  6016. />
  6017. </product>
  6018. <product id="SPIDER_RT1"
  6019. name="SPIDER RT1"
  6020. series="SPIDER"
  6021. latestVersion="2.5.3"
  6022. latestVersionVoicePrompt="1.6"
  6023. show = "1" >
  6024. <productMenu id="protocol"
  6025. type="2" >
  6026. </productMenu>
  6027. <productMenu id="alexa"
  6028. type="0" >
  6029. </productMenu>
  6030. <productMenu id="ota"
  6031. type="2" >
  6032. <productMenuType version="2.1.9"
  6033. type="0"
  6034. />
  6035. <otaPackages>
  6036. <package
  6037. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6038. size="2945812"
  6039. />
  6040. </otaPackages>
  6041. </productMenu>
  6042. <productMenu id="wa"
  6043. type="0" >
  6044. </productMenu>
  6045. <productMenu id="meshIntercom"
  6046. type="30" >
  6047. <productMenuType version="2.1.1"
  6048. type="20"
  6049. />
  6050. </productMenu>
  6051. <productMenu id="meshIntercom+"
  6052. type="3"
  6053. url="2" >
  6054. <productMenuType version="2.2.9"
  6055. type="2"
  6056. />
  6057. <productMenuURL version="2.1.1"
  6058. url="0"
  6059. />
  6060. </productMenu>
  6061. <productMenu id="waveIntercom"
  6062. type="1" >
  6063. <productMenuType version="2.3.9"
  6064. type="0"
  6065. />
  6066. </productMenu>
  6067. <productMenu id="phone"
  6068. type="1" >
  6069. </productMenu>
  6070. <productMenu id="music"
  6071. type="1" >
  6072. </productMenu>
  6073. <productMenu id="musicSharing"
  6074. type="0" >
  6075. </productMenu>
  6076. <productMenu id="deviceSetting"
  6077. type="1"
  6078. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6079. <productMenuURL version="2.4.9"
  6080. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6081. />
  6082. <productMenuURL version="2.2.2"
  6083. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6084. />
  6085. <productMenuURL version="2.1.1"
  6086. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6087. />
  6088. </productMenu>
  6089. <productMenu id="quickGuide"
  6090. type="0"
  6091. url=""
  6092. size="1.12MB" >
  6093. </productMenu>
  6094. <productMenu id="userGuide"
  6095. type="1"
  6096. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6097. size="2.0MB" >
  6098. </productMenu>
  6099. <productMenu id="videoGuide"
  6100. type="1"
  6101. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6102. size="3.41MB" >
  6103. </productMenu>
  6104. <productMenu id="connectGuide"
  6105. type="1"
  6106. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6107. size="1.12MB" >
  6108. </productMenu>
  6109. <productMenu id="volume"
  6110. type="12" >
  6111. </productMenu>
  6112. <productMenu id="volume+"
  6113. type="2"
  6114. url="0x2000" >
  6115. </productMenu>
  6116. <productMenu id="battery"
  6117. type="1" >
  6118. </productMenu>
  6119. <productID id="6810"
  6120. />
  6121. <productGroupable type="0"
  6122. />
  6123. </product>
  6124. <product id="SPIDER_RT1"
  6125. name="SPIDER RT1"
  6126. series="SPIDER"
  6127. latestVersion="1.2.2"
  6128. show = "-1" >
  6129. <productMenu id="protocol"
  6130. type="2" >
  6131. </productMenu>
  6132. <productMenu id="alexa"
  6133. type="0" >
  6134. </productMenu>
  6135. <productMenu id="ota"
  6136. type="0" >
  6137. </productMenu>
  6138. <productMenu id="wa"
  6139. type="0" >
  6140. </productMenu>
  6141. <productMenu id="meshIntercom"
  6142. type="20" >
  6143. </productMenu>
  6144. <productMenu id="phone"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="music"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="deviceSetting"
  6151. type="1"
  6152. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6153. </productMenu>
  6154. <productMenu id="quickGuide"
  6155. type="0"
  6156. url=""
  6157. size="1.32MB" >
  6158. </productMenu>
  6159. <productMenu id="userGuide"
  6160. type="1"
  6161. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6162. size="1.79MB" >
  6163. </productMenu>
  6164. <productMenu id="videoGuide"
  6165. type="1"
  6166. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6167. size="3.41MB" >
  6168. </productMenu>
  6169. <productMenu id="volume"
  6170. type="13" >
  6171. <productMenuType version="1.1.6"
  6172. type="14"/>
  6173. </productMenu>
  6174. <productMenu id="battery"
  6175. type="1" >
  6176. </productMenu>
  6177. <productID id="6500"
  6178. />
  6179. <productGroupable type="0"
  6180. />
  6181. </product>
  6182. <product id="30K"
  6183. name="30K"
  6184. series="30"
  6185. latestVersion="4.5.1"
  6186. show = "1" >
  6187. <productMenu id="protocol"
  6188. type="2" >
  6189. </productMenu>
  6190. <productMenu id="alexa"
  6191. type="0" >
  6192. </productMenu>
  6193. <productMenu id="wa"
  6194. type="1" >
  6195. </productMenu>
  6196. <productMenu id="sip"
  6197. type="1" >
  6198. </productMenu>
  6199. <productMenu id="meshIntercom"
  6200. type="30" >
  6201. <productMenuType version="4.0.4"
  6202. type="20"
  6203. />
  6204. </productMenu>
  6205. <productMenu id="meshIntercom+"
  6206. type="3"
  6207. url="2" >
  6208. <productMenuType version="4.3.9"
  6209. type="2"
  6210. />
  6211. <productMenuURL version="4.0.4"
  6212. url="0"
  6213. />
  6214. </productMenu>
  6215. <productMenu id="waveIntercom"
  6216. type="1" >
  6217. <productMenuType version="4.4.9"
  6218. type="0"
  6219. />
  6220. </productMenu>
  6221. <productMenu id="bluetoothIntercom"
  6222. type="1" >
  6223. </productMenu>
  6224. <productMenu id="phone"
  6225. type="1" >
  6226. </productMenu>
  6227. <productMenu id="music"
  6228. type="1" >
  6229. </productMenu>
  6230. <productMenu id="fmradio"
  6231. type="1" >
  6232. </productMenu>
  6233. <productMenu id="deviceSetting"
  6234. type="1"
  6235. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6236. <productMenuURL version="4.3"
  6237. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6238. />
  6239. <productMenuURL version="4.2"
  6240. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6241. />
  6242. <productMenuURL version="4.0.4"
  6243. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6244. />
  6245. </productMenu>
  6246. <productMenu id="quickGuide"
  6247. type="0"
  6248. url=""
  6249. size="934KB" >
  6250. </productMenu>
  6251. <productMenu id="userGuide"
  6252. type="1"
  6253. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6254. size="1.14MB" >
  6255. </productMenu>
  6256. <productMenu id="connectGuide"
  6257. type="1"
  6258. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6259. size="1.12MB" >
  6260. </productMenu>
  6261. <productMenu id="volume"
  6262. type="11" >
  6263. </productMenu>
  6264. <productMenu id="battery"
  6265. type="1" >
  6266. </productMenu>
  6267. <productID id="3211"
  6268. />
  6269. <productGroupable type="0"
  6270. />
  6271. </product>
  6272. <product id="30K"
  6273. name="30K"
  6274. series="30"
  6275. latestVersion="3.5"
  6276. show = "-1" >
  6277. <productMenu id="protocol"
  6278. type="1"
  6279. url="0">
  6280. </productMenu>
  6281. <productMenu id="wa"
  6282. type="7" >
  6283. </productMenu>
  6284. <productMenu id="sip"
  6285. type="1" >
  6286. </productMenu>
  6287. <productMenu id="meshIntercom"
  6288. type="20" >
  6289. <productMenuType version="2.9.9"
  6290. type="10"
  6291. />
  6292. </productMenu>
  6293. <productMenu id="meshIntercom+"
  6294. type="3"
  6295. url="2" >
  6296. <productMenuType version="3.4.9"
  6297. type="2"
  6298. />
  6299. <productMenuType version="2.9.9"
  6300. type="1"
  6301. />
  6302. <productMenuURL version="3.3.1"
  6303. url="0"
  6304. />
  6305. </productMenu>
  6306. <productMenu id="bluetoothIntercom"
  6307. type="1" >
  6308. </productMenu>
  6309. <productMenu id="phone"
  6310. type="1" >
  6311. </productMenu>
  6312. <productMenu id="music"
  6313. type="1" >
  6314. </productMenu>
  6315. <productMenu id="fmradio"
  6316. type="1" >
  6317. </productMenu>
  6318. <productMenu id="deviceSetting"
  6319. type="1"
  6320. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6321. <productMenuURL version="3.4.9"
  6322. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6323. />
  6324. <productMenuURL version="3.3.1"
  6325. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6326. />
  6327. <productMenuURL version="3.0.1"
  6328. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6329. />
  6330. <productMenuURL version="2.3.1"
  6331. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6332. />
  6333. <productMenuURL version="2.0"
  6334. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6335. />
  6336. <productMenuURL version="1.0.3"
  6337. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6338. />
  6339. </productMenu>
  6340. <productMenu id="quickGuide"
  6341. type="0"
  6342. url=""
  6343. size="1.06MB" >
  6344. </productMenu>
  6345. <productMenu id="userGuide"
  6346. type="1"
  6347. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6348. size="3.15MB" >
  6349. </productMenu>
  6350. <productMenu id="volume"
  6351. type="1" >
  6352. </productMenu>
  6353. <productID id="3110"
  6354. />
  6355. <productGroupable type="0"
  6356. />
  6357. </product>
  6358. <product id="FURY"
  6359. name="FURY"
  6360. series="Helmet"
  6361. latestVersion="1.0"
  6362. show = "-1" >
  6363. <productMenu id="protocol"
  6364. type="2" >
  6365. </productMenu>
  6366. <productMenu id="alexa"
  6367. type="0" >
  6368. </productMenu>
  6369. <productMenu id="ota"
  6370. type="0" >
  6371. </productMenu>
  6372. <productMenu id="wa"
  6373. type="0" >
  6374. </productMenu>
  6375. <productMenu id="meshIntercom"
  6376. type="20" >
  6377. </productMenu>
  6378. <productMenu id="phone"
  6379. type="1" >
  6380. </productMenu>
  6381. <productMenu id="music"
  6382. type="1" >
  6383. </productMenu>
  6384. <productMenu id="fmradio"
  6385. type="1" >
  6386. </productMenu>
  6387. <productMenu id="deviceSetting"
  6388. type="1"
  6389. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6390. </productMenu>
  6391. <productMenu id="quickGuide"
  6392. type="1"
  6393. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6394. size="1.12MB" >
  6395. </productMenu>
  6396. <productMenu id="userGuide"
  6397. type="1"
  6398. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6399. size="2.0MB" >
  6400. </productMenu>
  6401. <productMenu id="volume"
  6402. type="13" >
  6403. </productMenu>
  6404. <productMenu id="battery"
  6405. type="1" >
  6406. </productMenu>
  6407. <productID id="5552"
  6408. />
  6409. <productGroupable type="0"
  6410. />
  6411. </product>
  6412. <product id="MomentumM"
  6413. name="Momentum EVO"
  6414. series="Helmet"
  6415. latestVersion="2.1.2"
  6416. show = "1" >
  6417. <productMenu id="protocol"
  6418. type="1"
  6419. url="0">
  6420. </productMenu>
  6421. <productMenu id="wa"
  6422. type="3" >
  6423. </productMenu>
  6424. <productMenu id="sip"
  6425. type="1" >
  6426. </productMenu>
  6427. <productMenu id="meshIntercom"
  6428. type="20" >
  6429. <productMenuType version="1.9.9"
  6430. type="10"
  6431. />
  6432. </productMenu>
  6433. <productMenu id="bluetoothIntercom"
  6434. type="1" >
  6435. </productMenu>
  6436. <productMenu id="phone"
  6437. type="1" >
  6438. </productMenu>
  6439. <productMenu id="music"
  6440. type="1" >
  6441. </productMenu>
  6442. <productMenu id="fmradio"
  6443. type="1" >
  6444. </productMenu>
  6445. <productMenu id="deviceSetting"
  6446. type="1"
  6447. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6448. <productMenuURL version="1.0.1"
  6449. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6450. />
  6451. </productMenu>
  6452. <productMenu id="quickGuide"
  6453. type="1"
  6454. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6455. size="1.06MB" >
  6456. </productMenu>
  6457. <productMenu id="userGuide"
  6458. type="1"
  6459. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6460. size="3.15MB" >
  6461. </productMenu>
  6462. <productMenu id="connectGuide"
  6463. type="1"
  6464. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6465. size="1.12MB" >
  6466. </productMenu>
  6467. <productMenu id="volume"
  6468. type="2" >
  6469. </productMenu>
  6470. <productID id="3116"
  6471. />
  6472. <productGroupable type="0"
  6473. />
  6474. </product>
  6475. <product id="Momentum"
  6476. name="Momentum"
  6477. series="Helmet"
  6478. latestVersion="1.0.9"
  6479. show = "1" >
  6480. <productMenu id="protocol"
  6481. type="0">
  6482. </productMenu>
  6483. <productMenu id="sip"
  6484. type="1" >
  6485. </productMenu>
  6486. <productMenu id="bluetoothIntercom"
  6487. type="1" >
  6488. </productMenu>
  6489. <productMenu id="intercomSetting"
  6490. type="1" >
  6491. </productMenu>
  6492. <productMenu id="phone"
  6493. type="2" >
  6494. </productMenu>
  6495. <productMenu id="fmradio"
  6496. type="3" >
  6497. </productMenu>
  6498. <productMenu id="deviceSetting"
  6499. type="1"
  6500. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6501. </productMenu>
  6502. <productMenu id="quickGuide"
  6503. type="1"
  6504. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6505. size="796KB" >
  6506. </productMenu>
  6507. <productMenu id="userGuide"
  6508. type="1"
  6509. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6510. size="1.90MB" >
  6511. </productMenu>
  6512. <productMenu id="connectGuide"
  6513. type="1"
  6514. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6515. size="1.12MB" >
  6516. </productMenu>
  6517. <productID id="4310"
  6518. />
  6519. <productGroupable type="1"
  6520. />
  6521. </product>
  6522. <product id="Momentum_Pro"
  6523. name="Momentum Pro"
  6524. series="Helmet"
  6525. latestVersion="1.0.6"
  6526. show = "1" >
  6527. <productMenu id="protocol"
  6528. type="0">
  6529. </productMenu>
  6530. <productMenu id="sip"
  6531. type="1" >
  6532. </productMenu>
  6533. <productMenu id="bluetoothIntercom"
  6534. type="1" >
  6535. </productMenu>
  6536. <productMenu id="intercomSetting"
  6537. type="1" >
  6538. </productMenu>
  6539. <productMenu id="phone"
  6540. type="2" >
  6541. </productMenu>
  6542. <productMenu id="fmradio"
  6543. type="3" >
  6544. </productMenu>
  6545. <productMenu id="deviceSetting"
  6546. type="1"
  6547. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6548. </productMenu>
  6549. <productMenu id="quickGuide"
  6550. type="1"
  6551. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6552. size="796KB" >
  6553. </productMenu>
  6554. <productMenu id="userGuide"
  6555. type="1"
  6556. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6557. size="1.90MB" >
  6558. </productMenu>
  6559. <productMenu id="connectGuide"
  6560. type="1"
  6561. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6562. size="1.12MB" >
  6563. </productMenu>
  6564. <productID id="4330"
  6565. />
  6566. <productGroupable type="1"
  6567. />
  6568. </product>
  6569. <product id="Momentum_INC"
  6570. name="Momentum INC"
  6571. series="Helmet"
  6572. latestVersion="1.0.7"
  6573. show = "1" >
  6574. <productMenu id="protocol"
  6575. type="0">
  6576. </productMenu>
  6577. <productMenu id="sip"
  6578. type="1" >
  6579. </productMenu>
  6580. <productMenu id="bluetoothIntercom"
  6581. type="1" >
  6582. </productMenu>
  6583. <productMenu id="intercomSetting"
  6584. type="1" >
  6585. </productMenu>
  6586. <productMenu id="phone"
  6587. type="2" >
  6588. </productMenu>
  6589. <productMenu id="fmradio"
  6590. type="3" >
  6591. </productMenu>
  6592. <productMenu id="deviceSetting"
  6593. type="1"
  6594. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6595. </productMenu>
  6596. <productMenu id="quickGuide"
  6597. type="1"
  6598. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6599. size="794KB" >
  6600. </productMenu>
  6601. <productMenu id="userGuide"
  6602. type="1"
  6603. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6604. size="1.53MB" >
  6605. </productMenu>
  6606. <productMenu id="connectGuide"
  6607. type="1"
  6608. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6609. size="1.12MB" >
  6610. </productMenu>
  6611. <productID id="4410"
  6612. />
  6613. <productGroupable type="1"
  6614. />
  6615. </product>
  6616. <product id="Momentum_INCP"
  6617. name="Momentum INC Pro"
  6618. series="Helmet"
  6619. latestVersion="1.0.4"
  6620. show = "1" >
  6621. <productMenu id="protocol"
  6622. type="0">
  6623. </productMenu>
  6624. <productMenu id="sip"
  6625. type="1" >
  6626. </productMenu>
  6627. <productMenu id="bluetoothIntercom"
  6628. type="1" >
  6629. </productMenu>
  6630. <productMenu id="intercomSetting"
  6631. type="1" >
  6632. </productMenu>
  6633. <productMenu id="phone"
  6634. type="2" >
  6635. </productMenu>
  6636. <productMenu id="fmradio"
  6637. type="3" >
  6638. </productMenu>
  6639. <productMenu id="deviceSetting"
  6640. type="1"
  6641. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6642. </productMenu>
  6643. <productMenu id="quickGuide"
  6644. type="1"
  6645. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6646. size="794KB" >
  6647. </productMenu>
  6648. <productMenu id="userGuide"
  6649. type="1"
  6650. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6651. size="1.53MB" >
  6652. </productMenu>
  6653. <productMenu id="connectGuide"
  6654. type="1"
  6655. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6656. size="1.12MB" >
  6657. </productMenu>
  6658. <productID id="4430"
  6659. />
  6660. <productGroupable type="1"
  6661. />
  6662. </product>
  6663. <product id="Momentum_Lite"
  6664. name="Momentum Lite"
  6665. series="Helmet"
  6666. latestVersion="2.0.3"
  6667. show = "1" >
  6668. <productMenu id="protocol"
  6669. type="0">
  6670. </productMenu>
  6671. <productMenu id="sip"
  6672. type="1" >
  6673. </productMenu>
  6674. <productMenu id="bluetoothIntercom"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="phone"
  6678. type="2" >
  6679. </productMenu>
  6680. <productMenu id="fmradio"
  6681. type="3" >
  6682. </productMenu>
  6683. <productMenu id="deviceSetting"
  6684. type="1"
  6685. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6686. <productMenuURL version="1.1"
  6687. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6688. />
  6689. </productMenu>
  6690. <productMenu id="quickGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6693. size="790KB" >
  6694. </productMenu>
  6695. <productMenu id="userGuide"
  6696. type="1"
  6697. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6698. size="1.42MB" >
  6699. </productMenu>
  6700. <productMenu id="connectGuide"
  6701. type="1"
  6702. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6703. size="1.12MB" >
  6704. </productMenu>
  6705. <productID id="5526"
  6706. />
  6707. <productGroupable type="0"
  6708. />
  6709. </product>
  6710. <product id="OUTRUSHM"
  6711. name="OUTRUSH M"
  6712. series="Helmet"
  6713. latestVersion="1.0"
  6714. show = "-1" >
  6715. <productMenu id="protocol"
  6716. type="2" >
  6717. </productMenu>
  6718. <productMenu id="alexa"
  6719. type="0" >
  6720. </productMenu>
  6721. <productMenu id="ota"
  6722. type="0" >
  6723. </productMenu>
  6724. <productMenu id="wa"
  6725. type="0" >
  6726. </productMenu>
  6727. <productMenu id="meshIntercom"
  6728. type="30" >
  6729. </productMenu>
  6730. <productMenu id="phone"
  6731. type="1" >
  6732. </productMenu>
  6733. <productMenu id="music"
  6734. type="1" >
  6735. </productMenu>
  6736. <productMenu id="fmradio"
  6737. type="1" >
  6738. </productMenu>
  6739. <productMenu id="deviceSetting"
  6740. type="1"
  6741. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6742. </productMenu>
  6743. <productMenu id="quickGuide"
  6744. type="1"
  6745. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6746. size="1.12MB" >
  6747. </productMenu>
  6748. <productMenu id="userGuide"
  6749. type="1"
  6750. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6751. size="2.0MB" >
  6752. </productMenu>
  6753. <productMenu id="volume"
  6754. type="13" >
  6755. </productMenu>
  6756. <productMenu id="battery"
  6757. type="1" >
  6758. </productMenu>
  6759. <productID id="5600"
  6760. />
  6761. <productGroupable type="0"
  6762. />
  6763. </product>
  6764. <product id="ProRideEVO"
  6765. name="ProRide EVO"
  6766. series="Helmet"
  6767. latestVersion="1.1.2"
  6768. show = "1" >
  6769. <productMenu id="protocol"
  6770. type="0">
  6771. </productMenu>
  6772. <productMenu id="sip"
  6773. type="1" >
  6774. </productMenu>
  6775. <productMenu id="bluetoothIntercom"
  6776. type="1" >
  6777. </productMenu>
  6778. <productMenu id="phone"
  6779. type="2" >
  6780. </productMenu>
  6781. <productMenu id="fmradio"
  6782. type="3" >
  6783. </productMenu>
  6784. <productMenu id="deviceSetting"
  6785. type="1"
  6786. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6787. </productMenu>
  6788. <productMenu id="userGuide"
  6789. type="1"
  6790. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6791. size="778KB" >
  6792. </productMenu>
  6793. <productMenu id="connectGuide"
  6794. type="1"
  6795. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6796. size="1.12MB" >
  6797. </productMenu>
  6798. <productID id="5426"
  6799. />
  6800. <productGroupable type="0"
  6801. />
  6802. </product>
  6803. <product id="OUTRUSHR"
  6804. name="OUTRUSH R"
  6805. series="Helmet"
  6806. latestVersion="2.1"
  6807. show = "1" >
  6808. <productMenu id="protocol"
  6809. type="3" >
  6810. </productMenu>
  6811. <productMenu id="sip"
  6812. type="1" >
  6813. </productMenu>
  6814. <productMenu id="bluetoothIntercom"
  6815. type="1" >
  6816. </productMenu>
  6817. <productMenu id="phone"
  6818. type="1" >
  6819. </productMenu>
  6820. <productMenu id="fmradio"
  6821. type="0" >
  6822. </productMenu>
  6823. <productMenu id="deviceSetting"
  6824. type="1"
  6825. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6826. </productMenu>
  6827. <productMenu id="userGuide"
  6828. type="1"
  6829. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6830. size="1.14MB" >
  6831. </productMenu>
  6832. <productMenu id="connectGuide"
  6833. type="1"
  6834. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6835. size="1.12MB" >
  6836. </productMenu>
  6837. <productID id="5440"
  6838. />
  6839. <productGroupable type="0"
  6840. />
  6841. </product>
  6842. <product id="OUTRUSHR"
  6843. name="OUTRUSH R"
  6844. series="Helmet"
  6845. latestVersion="1.1.4"
  6846. show = "-1" >
  6847. <productMenu id="protocol"
  6848. type="0">
  6849. </productMenu>
  6850. <productMenu id="sip"
  6851. type="1" >
  6852. </productMenu>
  6853. <productMenu id="bluetoothIntercom"
  6854. type="1" >
  6855. </productMenu>
  6856. <productMenu id="phone"
  6857. type="2" >
  6858. </productMenu>
  6859. <productMenu id="fmradio"
  6860. type="3" >
  6861. </productMenu>
  6862. <productMenu id="deviceSetting"
  6863. type="1"
  6864. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6865. </productMenu>
  6866. <productMenu id="userGuide"
  6867. type="1"
  6868. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6869. size="660KB" >
  6870. </productMenu>
  6871. <productMenu id="connectGuide"
  6872. type="1"
  6873. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6874. size="1.12MB" >
  6875. </productMenu>
  6876. <productID id="5424"
  6877. />
  6878. <productGroupable type="0"
  6879. />
  6880. </product>
  6881. <product id="OUTSTARS"
  6882. name="OUTSTAR S"
  6883. series="Helmet"
  6884. latestVersion="2.0.1"
  6885. show = "-1" >
  6886. <productMenu id="protocol"
  6887. type="3" >
  6888. </productMenu>
  6889. <productMenu id="sip"
  6890. type="1" >
  6891. </productMenu>
  6892. <productMenu id="bluetoothIntercom"
  6893. type="1" >
  6894. </productMenu>
  6895. <productMenu id="phone"
  6896. type="1" >
  6897. </productMenu>
  6898. <productMenu id="fmradio"
  6899. type="0" >
  6900. </productMenu>
  6901. <productMenu id="deviceSetting"
  6902. type="1"
  6903. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6904. </productMenu>
  6905. <productMenu id="userGuide"
  6906. type="0"
  6907. url=""
  6908. size="1.14MB" >
  6909. </productMenu>
  6910. <productID id="5443"
  6911. />
  6912. <productGroupable type="0"
  6913. />
  6914. </product>
  6915. <product id="OUTSTARS"
  6916. name="OUTSTAR S"
  6917. series="Helmet"
  6918. latestVersion="1.1.4"
  6919. show = "1" >
  6920. <productMenu id="protocol"
  6921. type="0">
  6922. </productMenu>
  6923. <productMenu id="sip"
  6924. type="1" >
  6925. </productMenu>
  6926. <productMenu id="bluetoothIntercom"
  6927. type="1" >
  6928. </productMenu>
  6929. <productMenu id="phone"
  6930. type="2" >
  6931. </productMenu>
  6932. <productMenu id="fmradio"
  6933. type="3" >
  6934. </productMenu>
  6935. <productMenu id="deviceSetting"
  6936. type="1"
  6937. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6938. </productMenu>
  6939. <productMenu id="quickGuide"
  6940. type="1"
  6941. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6942. size="643KB" >
  6943. </productMenu>
  6944. <productMenu id="userGuide"
  6945. type="1"
  6946. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6947. size="1.15MB" >
  6948. </productMenu>
  6949. <productMenu id="connectGuide"
  6950. type="1"
  6951. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6952. size="1.12MB" >
  6953. </productMenu>
  6954. <productID id="5428"
  6955. />
  6956. <productGroupable type="0"
  6957. />
  6958. </product>
  6959. <product id="OUTRIDE"
  6960. name="OUTRIDE"
  6961. series="Helmet"
  6962. latestVersion="1.0.1"
  6963. show = "1" >
  6964. <productMenu id="protocol"
  6965. type="0">
  6966. </productMenu>
  6967. <productMenu id="sip"
  6968. type="1" >
  6969. </productMenu>
  6970. <productMenu id="bluetoothIntercom"
  6971. type="1" >
  6972. </productMenu>
  6973. <productMenu id="phone"
  6974. type="2" >
  6975. </productMenu>
  6976. <productMenu id="fmradio"
  6977. type="3" >
  6978. </productMenu>
  6979. <productMenu id="deviceSetting"
  6980. type="1"
  6981. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6982. </productMenu>
  6983. <productMenu id="quickGuide"
  6984. type="1"
  6985. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6986. size="643KB" >
  6987. </productMenu>
  6988. <productMenu id="userGuide"
  6989. type="1"
  6990. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6991. size="660KB" >
  6992. </productMenu>
  6993. <productMenu id="connectGuide"
  6994. type="1"
  6995. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6996. size="1.12MB" >
  6997. </productMenu>
  6998. <productID id="5432"
  6999. />
  7000. <productGroupable type="0"
  7001. />
  7002. </product>
  7003. <product id="OUTFORCE"
  7004. name="OUTFORCE"
  7005. series="Helmet"
  7006. latestVersion="1.0.1"
  7007. show = "1" >
  7008. <productMenu id="protocol"
  7009. type="0">
  7010. </productMenu>
  7011. <productMenu id="sip"
  7012. type="1" >
  7013. </productMenu>
  7014. <productMenu id="bluetoothIntercom"
  7015. type="1" >
  7016. </productMenu>
  7017. <productMenu id="phone"
  7018. type="2" >
  7019. </productMenu>
  7020. <productMenu id="fmradio"
  7021. type="3" >
  7022. </productMenu>
  7023. <productMenu id="deviceSetting"
  7024. type="1"
  7025. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7026. </productMenu>
  7027. <productMenu id="quickGuide"
  7028. type="1"
  7029. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7030. size="643KB" >
  7031. </productMenu>
  7032. <productMenu id="userGuide"
  7033. type="1"
  7034. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7035. size="660KB" >
  7036. </productMenu>
  7037. <productMenu id="connectGuide"
  7038. type="1"
  7039. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7040. size="1.12MB" >
  7041. </productMenu>
  7042. <productID id="5430"
  7043. />
  7044. <productGroupable type="0"
  7045. />
  7046. </product>
  7047. <product id="Rumba"
  7048. name="Rumba"
  7049. series="30"
  7050. latestVersion="2.0"
  7051. show = "-1" >
  7052. <productMenu id="protocol"
  7053. type="3" >
  7054. </productMenu>
  7055. <productMenu id="sip"
  7056. type="1" >
  7057. </productMenu>
  7058. <productMenu id="bluetoothIntercom"
  7059. type="1" >
  7060. </productMenu>
  7061. <productMenu id="deviceSetting"
  7062. type="1"
  7063. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7064. </productMenu>
  7065. <productMenu id="quickGuide"
  7066. type="1"
  7067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7068. size="344KB" >
  7069. </productMenu>
  7070. <productMenu id="userGuide"
  7071. type="1"
  7072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7073. size="1.14MB" >
  7074. </productMenu>
  7075. <productID id="6322"
  7076. />
  7077. <productGroupable type="0"
  7078. />
  7079. </product>
  7080. <product id="Savage"
  7081. name="Savage"
  7082. series="Helmet"
  7083. latestVersion="1.2.2"
  7084. show = "1" >
  7085. <productMenu id="protocol"
  7086. type="0">
  7087. </productMenu>
  7088. <productMenu id="sip"
  7089. type="1" >
  7090. </productMenu>
  7091. <productMenu id="bluetoothIntercom"
  7092. type="1" >
  7093. </productMenu>
  7094. <productMenu id="phone"
  7095. type="2" >
  7096. </productMenu>
  7097. <productMenu id="fmradio"
  7098. type="3" >
  7099. </productMenu>
  7100. <productMenu id="deviceSetting"
  7101. type="1"
  7102. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7103. <productMenuURL version="1.9"
  7104. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7105. />
  7106. <productMenuURL version="1.1"
  7107. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7108. />
  7109. </productMenu>
  7110. <productMenu id="quickGuide"
  7111. type="1"
  7112. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7113. size="796KB" >
  7114. </productMenu>
  7115. <productMenu id="userGuide"
  7116. type="1"
  7117. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7118. size="910KB" >
  7119. </productMenu>
  7120. <productMenu id="connectGuide"
  7121. type="1"
  7122. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7123. size="1.12MB" >
  7124. </productMenu>
  7125. <productID id="5550"
  7126. />
  7127. <productGroupable type="0"
  7128. />
  7129. </product>
  7130. <product id="RECON"
  7131. name="RECON"
  7132. series="Helmet"
  7133. latestVersion="1.0"
  7134. latestVersionVoicePrompt="1.8"
  7135. show = "-1" >
  7136. <productMenu id="protocol"
  7137. type="2" >
  7138. </productMenu>
  7139. <productMenu id="ota"
  7140. type="2" >
  7141. <otaLanguages>
  7142. <otaLanguage
  7143. id="0"
  7144. name="English"
  7145. package="0"
  7146. />
  7147. <otaLanguage
  7148. id="0"
  7149. name="French"
  7150. package="1"
  7151. />
  7152. <otaLanguage
  7153. id="0"
  7154. name="Spanish"
  7155. package="2"
  7156. />
  7157. <otaLanguage
  7158. id="0"
  7159. name="Italian"
  7160. package="3"
  7161. />
  7162. <otaLanguage
  7163. id="0"
  7164. name="German"
  7165. package="4"
  7166. />
  7167. <otaLanguage
  7168. id="0"
  7169. name="Dutch"
  7170. package="5"
  7171. />
  7172. <otaLanguage
  7173. id="0"
  7174. name="Russian"
  7175. package="6"
  7176. />
  7177. <otaLanguage
  7178. id="0"
  7179. name="Chinese"
  7180. package="7"
  7181. />
  7182. <otaLanguage
  7183. id="0"
  7184. name="Korean"
  7185. package="8"
  7186. />
  7187. <otaLanguage
  7188. id="0"
  7189. name="Japanese"
  7190. package="9"
  7191. />
  7192. <otaLanguage
  7193. id="0"
  7194. name="Finnish"
  7195. package="10"
  7196. />
  7197. <otaLanguage
  7198. id="0"
  7199. name="Polish"
  7200. package="11"
  7201. />
  7202. </otaLanguages>
  7203. <otaPackages>
  7204. <package
  7205. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7206. size="5183988"
  7207. />
  7208. <package
  7209. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7210. size="5183988"
  7211. />
  7212. <package
  7213. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7214. size="5183988"
  7215. />
  7216. <package
  7217. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7218. size="5183988"
  7219. />
  7220. <package
  7221. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7222. size="5183988"
  7223. />
  7224. <package
  7225. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7226. size="5183988"
  7227. />
  7228. <package
  7229. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7230. size="5183988"
  7231. />
  7232. <package
  7233. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7234. size="5183988"
  7235. />
  7236. <package
  7237. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7238. size="5183988"
  7239. />
  7240. <package
  7241. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7242. size="5183988"
  7243. />
  7244. <package
  7245. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7246. size="5183988"
  7247. />
  7248. <package
  7249. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7250. size="5183988"
  7251. />
  7252. </otaPackages>
  7253. </productMenu>
  7254. <productMenu id="wa"
  7255. type="0" >
  7256. </productMenu>
  7257. <productMenu id="led"
  7258. type="5" >
  7259. </productMenu>
  7260. <productMenu id="led+"
  7261. type="2"
  7262. url="1" >
  7263. </productMenu>
  7264. <productMenu id="meshIntercom+"
  7265. type="3"
  7266. url="2" >
  7267. </productMenu>
  7268. <productMenu id="waveIntercom"
  7269. type="1" >
  7270. </productMenu>
  7271. <productMenu id="fmradio"
  7272. type="0" >
  7273. </productMenu>
  7274. <productMenu id="phone"
  7275. type="1" >
  7276. </productMenu>
  7277. <productMenu id="music"
  7278. type="1" >
  7279. </productMenu>
  7280. <productMenu id="musicSharing"
  7281. type="0" >
  7282. </productMenu>
  7283. <productMenu id="deviceSetting"
  7284. type="1"
  7285. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON.xml" >
  7286. </productMenu>
  7287. <productMenu id="quickGuide"
  7288. type="0"
  7289. url=""
  7290. size="1.12MB" >
  7291. </productMenu>
  7292. <productMenu id="userGuide"
  7293. type="1"
  7294. url=""
  7295. size="2.28MB" >
  7296. </productMenu>
  7297. <productMenu id="videoGuide"
  7298. type="0"
  7299. url=""
  7300. size="3.41MB" >
  7301. </productMenu>
  7302. <productMenu id="volume"
  7303. type="16" >
  7304. </productMenu>
  7305. <productMenu id="volume+"
  7306. type="2"
  7307. url="0x6004" >
  7308. </productMenu>
  7309. <productMenu id="battery"
  7310. type="1" >
  7311. </productMenu>
  7312. <productID id="6A1D"
  7313. />
  7314. <productGroupable type="0"
  7315. />
  7316. </product>
  7317. <product id="SPECTER"
  7318. name="SPECTER"
  7319. series="Helmet"
  7320. latestVersion="1.0.9"
  7321. latestVersionVoicePrompt="1.7"
  7322. show = "1" >
  7323. <productMenu id="protocol"
  7324. type="2" >
  7325. </productMenu>
  7326. <productMenu id="ota"
  7327. type="2" >
  7328. <otaLanguages>
  7329. <otaLanguage
  7330. id="0"
  7331. name="English"
  7332. package="0"
  7333. />
  7334. <otaLanguage
  7335. id="0"
  7336. name="French"
  7337. package="1"
  7338. />
  7339. <otaLanguage
  7340. id="0"
  7341. name="Spanish"
  7342. package="2"
  7343. />
  7344. <otaLanguage
  7345. id="0"
  7346. name="Italian"
  7347. package="3"
  7348. />
  7349. <otaLanguage
  7350. id="0"
  7351. name="German"
  7352. package="4"
  7353. />
  7354. <otaLanguage
  7355. id="0"
  7356. name="Dutch"
  7357. package="5"
  7358. />
  7359. <otaLanguage
  7360. id="0"
  7361. name="Russian"
  7362. package="6"
  7363. />
  7364. <otaLanguage
  7365. id="0"
  7366. name="Chinese"
  7367. package="7"
  7368. />
  7369. <otaLanguage
  7370. id="0"
  7371. name="Korean"
  7372. package="8"
  7373. />
  7374. <otaLanguage
  7375. id="0"
  7376. name="Japanese"
  7377. package="9"
  7378. />
  7379. <otaLanguage
  7380. id="0"
  7381. name="Finnish"
  7382. package="10"
  7383. />
  7384. <otaLanguage
  7385. id="0"
  7386. name="Polish"
  7387. package="11"
  7388. />
  7389. </otaLanguages>
  7390. <otaPackages>
  7391. <package
  7392. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7393. size="5183988"
  7394. />
  7395. <package
  7396. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7397. size="5183988"
  7398. />
  7399. <package
  7400. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7401. size="5183988"
  7402. />
  7403. <package
  7404. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7405. size="5183988"
  7406. />
  7407. <package
  7408. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7409. size="5183988"
  7410. />
  7411. <package
  7412. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7413. size="5183988"
  7414. />
  7415. <package
  7416. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7417. size="5183988"
  7418. />
  7419. <package
  7420. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7421. size="5183988"
  7422. />
  7423. <package
  7424. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7425. size="5183988"
  7426. />
  7427. <package
  7428. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7429. size="5183988"
  7430. />
  7431. <package
  7432. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7433. size="5183988"
  7434. />
  7435. <package
  7436. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7437. size="5183988"
  7438. />
  7439. </otaPackages>
  7440. </productMenu>
  7441. <productMenu id="wa"
  7442. type="0" >
  7443. </productMenu>
  7444. <productMenu id="led"
  7445. type="5" >
  7446. </productMenu>
  7447. <productMenu id="led+"
  7448. type="2"
  7449. url="1" >
  7450. </productMenu>
  7451. <productMenu id="meshIntercom+"
  7452. type="3"
  7453. url="2" >
  7454. </productMenu>
  7455. <productMenu id="waveIntercom"
  7456. type="1" >
  7457. </productMenu>
  7458. <productMenu id="fmradio"
  7459. type="0" >
  7460. </productMenu>
  7461. <productMenu id="phone"
  7462. type="1" >
  7463. </productMenu>
  7464. <productMenu id="music"
  7465. type="1" >
  7466. </productMenu>
  7467. <productMenu id="musicSharing"
  7468. type="0" >
  7469. </productMenu>
  7470. <productMenu id="deviceSetting"
  7471. type="1"
  7472. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7473. <productMenuURL version="1.0.4"
  7474. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7475. />
  7476. </productMenu>
  7477. <productMenu id="quickGuide"
  7478. type="0"
  7479. url=""
  7480. size="1.12MB" >
  7481. </productMenu>
  7482. <productMenu id="userGuide"
  7483. type="1"
  7484. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7485. size="2.0MB" >
  7486. </productMenu>
  7487. <productMenu id="videoGuide"
  7488. type="0"
  7489. url=""
  7490. size="3.41MB" >
  7491. </productMenu>
  7492. <productMenu id="volume"
  7493. type="16" >
  7494. </productMenu>
  7495. <productMenu id="volume+"
  7496. type="2"
  7497. url="0x6004" >
  7498. </productMenu>
  7499. <productMenu id="battery"
  7500. type="1" >
  7501. </productMenu>
  7502. <productID id="6A11"
  7503. />
  7504. <productGroupable type="0"
  7505. />
  7506. </product>
  7507. <product id="SPECTER"
  7508. name="SPECTER"
  7509. series="Helmet"
  7510. latestVersion="1.0.9"
  7511. latestVersionVoicePrompt="1.7"
  7512. show = "-1" >
  7513. <productMenu id="protocol"
  7514. type="2" >
  7515. </productMenu>
  7516. <productMenu id="ota"
  7517. type="2" >
  7518. <otaLanguages>
  7519. <otaLanguage
  7520. id="0"
  7521. name="English"
  7522. package="0"
  7523. />
  7524. <otaLanguage
  7525. id="0"
  7526. name="French"
  7527. package="1"
  7528. />
  7529. <otaLanguage
  7530. id="0"
  7531. name="Spanish"
  7532. package="2"
  7533. />
  7534. <otaLanguage
  7535. id="0"
  7536. name="Italian"
  7537. package="3"
  7538. />
  7539. <otaLanguage
  7540. id="0"
  7541. name="German"
  7542. package="4"
  7543. />
  7544. <otaLanguage
  7545. id="0"
  7546. name="Dutch"
  7547. package="5"
  7548. />
  7549. <otaLanguage
  7550. id="0"
  7551. name="Russian"
  7552. package="6"
  7553. />
  7554. <otaLanguage
  7555. id="0"
  7556. name="Chinese"
  7557. package="7"
  7558. />
  7559. <otaLanguage
  7560. id="0"
  7561. name="Korean"
  7562. package="8"
  7563. />
  7564. <otaLanguage
  7565. id="0"
  7566. name="Japanese"
  7567. package="9"
  7568. />
  7569. <otaLanguage
  7570. id="0"
  7571. name="Finnish"
  7572. package="10"
  7573. />
  7574. <otaLanguage
  7575. id="0"
  7576. name="Polish"
  7577. package="11"
  7578. />
  7579. </otaLanguages>
  7580. <otaPackages>
  7581. <package
  7582. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7583. size="5183988"
  7584. />
  7585. <package
  7586. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7587. size="5183988"
  7588. />
  7589. <package
  7590. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7591. size="5183988"
  7592. />
  7593. <package
  7594. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7595. size="5183988"
  7596. />
  7597. <package
  7598. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7599. size="5183988"
  7600. />
  7601. <package
  7602. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7603. size="5183988"
  7604. />
  7605. <package
  7606. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7607. size="5183988"
  7608. />
  7609. <package
  7610. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7611. size="5183988"
  7612. />
  7613. <package
  7614. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7615. size="5183988"
  7616. />
  7617. <package
  7618. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7619. size="5183988"
  7620. />
  7621. <package
  7622. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7623. size="5183988"
  7624. />
  7625. <package
  7626. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7627. size="5183988"
  7628. />
  7629. </otaPackages>
  7630. </productMenu>
  7631. <productMenu id="wa"
  7632. type="0" >
  7633. </productMenu>
  7634. <productMenu id="led"
  7635. type="5" >
  7636. </productMenu>
  7637. <productMenu id="led+"
  7638. type="2"
  7639. url="1" >
  7640. </productMenu>
  7641. <productMenu id="meshIntercom+"
  7642. type="3"
  7643. url="2" >
  7644. </productMenu>
  7645. <productMenu id="waveIntercom"
  7646. type="1" >
  7647. </productMenu>
  7648. <productMenu id="fmradio"
  7649. type="0" >
  7650. </productMenu>
  7651. <productMenu id="phone"
  7652. type="1" >
  7653. </productMenu>
  7654. <productMenu id="music"
  7655. type="1" >
  7656. </productMenu>
  7657. <productMenu id="musicSharing"
  7658. type="0" >
  7659. </productMenu>
  7660. <productMenu id="deviceSetting"
  7661. type="1"
  7662. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7663. <productMenuURL version="1.0.4"
  7664. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7665. />
  7666. <productMenuURL version="1.0"
  7667. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7668. />
  7669. </productMenu>
  7670. <productMenu id="quickGuide"
  7671. type="0"
  7672. url=""
  7673. size="1.12MB" >
  7674. </productMenu>
  7675. <productMenu id="userGuide"
  7676. type="1"
  7677. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7678. size="2.0MB" >
  7679. </productMenu>
  7680. <productMenu id="videoGuide"
  7681. type="0"
  7682. url=""
  7683. size="3.41MB" >
  7684. </productMenu>
  7685. <productMenu id="volume"
  7686. type="16" >
  7687. </productMenu>
  7688. <productMenu id="volume+"
  7689. type="2"
  7690. url="0x6004" >
  7691. </productMenu>
  7692. <productMenu id="battery"
  7693. type="1" >
  7694. </productMenu>
  7695. <productID id="6A0A"
  7696. />
  7697. <productGroupable type="0"
  7698. />
  7699. </product>
  7700. <product id="OUTLANDER"
  7701. name="OUTLANDER"
  7702. series="Helmet"
  7703. latestVersion="1.0.9"
  7704. latestVersionVoicePrompt="1.7"
  7705. show = "1" >
  7706. <productMenu id="protocol"
  7707. type="2" >
  7708. </productMenu>
  7709. <productMenu id="ota"
  7710. type="2" >
  7711. <otaLanguages>
  7712. <otaLanguage
  7713. id="0"
  7714. name="English"
  7715. package="0"
  7716. />
  7717. <otaLanguage
  7718. id="0"
  7719. name="French"
  7720. package="1"
  7721. />
  7722. <otaLanguage
  7723. id="0"
  7724. name="Spanish"
  7725. package="2"
  7726. />
  7727. <otaLanguage
  7728. id="0"
  7729. name="Italian"
  7730. package="3"
  7731. />
  7732. <otaLanguage
  7733. id="0"
  7734. name="German"
  7735. package="4"
  7736. />
  7737. <otaLanguage
  7738. id="0"
  7739. name="Dutch"
  7740. package="5"
  7741. />
  7742. <otaLanguage
  7743. id="0"
  7744. name="Russian"
  7745. package="6"
  7746. />
  7747. <otaLanguage
  7748. id="0"
  7749. name="Chinese"
  7750. package="7"
  7751. />
  7752. <otaLanguage
  7753. id="0"
  7754. name="Korean"
  7755. package="8"
  7756. />
  7757. <otaLanguage
  7758. id="0"
  7759. name="Japanese"
  7760. package="9"
  7761. />
  7762. <otaLanguage
  7763. id="0"
  7764. name="Finnish"
  7765. package="10"
  7766. />
  7767. <otaLanguage
  7768. id="0"
  7769. name="Polish"
  7770. package="11"
  7771. />
  7772. </otaLanguages>
  7773. <otaPackages>
  7774. <package
  7775. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7776. size="5183988"
  7777. />
  7778. <package
  7779. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7780. size="5183988"
  7781. />
  7782. <package
  7783. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7784. size="5183988"
  7785. />
  7786. <package
  7787. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7788. size="5183988"
  7789. />
  7790. <package
  7791. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7792. size="5183988"
  7793. />
  7794. <package
  7795. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7796. size="5183988"
  7797. />
  7798. <package
  7799. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7800. size="5183988"
  7801. />
  7802. <package
  7803. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7804. size="5183988"
  7805. />
  7806. <package
  7807. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7808. size="5183988"
  7809. />
  7810. <package
  7811. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7812. size="5183988"
  7813. />
  7814. <package
  7815. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7816. size="5183988"
  7817. />
  7818. <package
  7819. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7820. size="5183988"
  7821. />
  7822. </otaPackages>
  7823. </productMenu>
  7824. <productMenu id="wa"
  7825. type="0" >
  7826. </productMenu>
  7827. <productMenu id="led"
  7828. type="5" >
  7829. </productMenu>
  7830. <productMenu id="led+"
  7831. type="2"
  7832. url="1" >
  7833. </productMenu>
  7834. <productMenu id="meshIntercom+"
  7835. type="3"
  7836. url="2" >
  7837. </productMenu>
  7838. <productMenu id="waveIntercom"
  7839. type="1" >
  7840. </productMenu>
  7841. <productMenu id="fmradio"
  7842. type="0" >
  7843. </productMenu>
  7844. <productMenu id="phone"
  7845. type="1" >
  7846. </productMenu>
  7847. <productMenu id="music"
  7848. type="1" >
  7849. </productMenu>
  7850. <productMenu id="musicSharing"
  7851. type="0" >
  7852. </productMenu>
  7853. <productMenu id="deviceSetting"
  7854. type="1"
  7855. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7856. <productMenuURL version="1.0.4"
  7857. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7858. />
  7859. </productMenu>
  7860. <productMenu id="quickGuide"
  7861. type="0"
  7862. url=""
  7863. size="1.12MB" >
  7864. </productMenu>
  7865. <productMenu id="userGuide"
  7866. type="1"
  7867. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7868. size="2.0MB" >
  7869. </productMenu>
  7870. <productMenu id="videoGuide"
  7871. type="0"
  7872. url=""
  7873. size="3.41MB" >
  7874. </productMenu>
  7875. <productMenu id="volume"
  7876. type="16" >
  7877. </productMenu>
  7878. <productMenu id="volume+"
  7879. type="2"
  7880. url="0x6004" >
  7881. </productMenu>
  7882. <productMenu id="battery"
  7883. type="1" >
  7884. </productMenu>
  7885. <productID id="6A05"
  7886. />
  7887. <productGroupable type="0"
  7888. />
  7889. </product>
  7890. <product id="OUTRUSH2"
  7891. name="OUTRUSH 2"
  7892. series="Helmet"
  7893. latestVersion="1.0.3"
  7894. latestVersionVoicePrompt="1.6"
  7895. show = "1" >
  7896. <productMenu id="protocol"
  7897. type="2" >
  7898. </productMenu>
  7899. <productMenu id="alexa"
  7900. type="0" >
  7901. </productMenu>
  7902. <productMenu id="ota"
  7903. type="2" >
  7904. <otaPackages>
  7905. <package
  7906. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7907. size="2945812"
  7908. />
  7909. </otaPackages>
  7910. </productMenu>
  7911. <productMenu id="meshIntercom+"
  7912. type="3"
  7913. url="2" >
  7914. </productMenu>
  7915. <productMenu id="waveIntercom"
  7916. type="1" >
  7917. </productMenu>
  7918. <productMenu id="phone"
  7919. type="1" >
  7920. </productMenu>
  7921. <productMenu id="music"
  7922. type="1" >
  7923. </productMenu>
  7924. <productMenu id="musicSharing"
  7925. type="0" >
  7926. </productMenu>
  7927. <productMenu id="deviceSetting"
  7928. type="1"
  7929. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7930. <productMenuURL version="1.0"
  7931. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7932. />
  7933. </productMenu>
  7934. <productMenu id="quickGuide"
  7935. type="0"
  7936. url=""
  7937. size="1.12MB" >
  7938. </productMenu>
  7939. <productMenu id="userGuide"
  7940. type="1"
  7941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7942. size="2.0MB" >
  7943. </productMenu>
  7944. <productMenu id="connectGuide"
  7945. type="1"
  7946. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  7947. size="1.12MB" >
  7948. </productMenu>
  7949. <productMenu id="volume"
  7950. type="12" >
  7951. </productMenu>
  7952. <productMenu id="battery"
  7953. type="1" >
  7954. </productMenu>
  7955. <productID id="684A"
  7956. />
  7957. <productGroupable type="0"
  7958. />
  7959. </product>
  7960. <product id="OUTSTAR2"
  7961. name="OUTSTAR 2"
  7962. series="Helmet"
  7963. latestVersion="1.0.2"
  7964. latestVersionVoicePrompt="1.6"
  7965. show = "1" >
  7966. <productMenu id="protocol"
  7967. type="2" >
  7968. </productMenu>
  7969. <productMenu id="alexa"
  7970. type="0" >
  7971. </productMenu>
  7972. <productMenu id="ota"
  7973. type="2" >
  7974. <otaPackages>
  7975. <package
  7976. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7977. size="2945812"
  7978. />
  7979. </otaPackages>
  7980. </productMenu>
  7981. <productMenu id="meshIntercom+"
  7982. type="3"
  7983. url="2" >
  7984. </productMenu>
  7985. <productMenu id="waveIntercom"
  7986. type="1" >
  7987. </productMenu>
  7988. <productMenu id="phone"
  7989. type="1" >
  7990. </productMenu>
  7991. <productMenu id="music"
  7992. type="1" >
  7993. </productMenu>
  7994. <productMenu id="musicSharing"
  7995. type="0" >
  7996. </productMenu>
  7997. <productMenu id="deviceSetting"
  7998. type="1"
  7999. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  8000. </productMenu>
  8001. <productMenu id="quickGuide"
  8002. type="0"
  8003. url=""
  8004. size="1.12MB" >
  8005. </productMenu>
  8006. <productMenu id="userGuide"
  8007. type="1"
  8008. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8009. size="2.0MB" >
  8010. </productMenu>
  8011. <productMenu id="connectGuide"
  8012. type="1"
  8013. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8014. size="1.12MB" >
  8015. </productMenu>
  8016. <productMenu id="volume"
  8017. type="12" >
  8018. </productMenu>
  8019. <productMenu id="battery"
  8020. type="1" >
  8021. </productMenu>
  8022. <productID id="684B"
  8023. />
  8024. <productGroupable type="0"
  8025. />
  8026. </product>
  8027. <product id="SURGE"
  8028. name="SURGE"
  8029. series="Helmet"
  8030. latestVersion="1.2"
  8031. latestVersionVoicePrompt="1.3"
  8032. show = "1" >
  8033. <productMenu id="protocol"
  8034. type="2" >
  8035. </productMenu>
  8036. <productMenu id="alexa"
  8037. type="0" >
  8038. </productMenu>
  8039. <productMenu id="ota"
  8040. type="2" >
  8041. <otaPackages>
  8042. <package
  8043. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8044. size="2945812"
  8045. />
  8046. </otaPackages>
  8047. </productMenu>
  8048. <productMenu id="meshIntercom"
  8049. type="30" >
  8050. </productMenu>
  8051. <productMenu id="meshIntercom+"
  8052. type="3"
  8053. url="2" >
  8054. <productMenuType version="1.0.1"
  8055. type="2"
  8056. />
  8057. </productMenu>
  8058. <productMenu id="waveIntercom"
  8059. type="1" >
  8060. <productMenuType version="1.0.9"
  8061. type="0"
  8062. />
  8063. </productMenu>
  8064. <productMenu id="phone"
  8065. type="1" >
  8066. </productMenu>
  8067. <productMenu id="music"
  8068. type="1" >
  8069. </productMenu>
  8070. <productMenu id="musicSharing"
  8071. type="0" >
  8072. </productMenu>
  8073. <productMenu id="deviceSetting"
  8074. type="1"
  8075. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8076. <productMenuURL version="1.1.9"
  8077. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8078. />
  8079. <productMenuURL version="1.0.1"
  8080. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8081. />
  8082. </productMenu>
  8083. <productMenu id="quickGuide"
  8084. type="0"
  8085. url=""
  8086. size="1.12MB" >
  8087. </productMenu>
  8088. <productMenu id="userGuide"
  8089. type="1"
  8090. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8091. size="2.0MB" >
  8092. </productMenu>
  8093. <productMenu id="volume"
  8094. type="12" >
  8095. </productMenu>
  8096. <productMenu id="battery"
  8097. type="1" >
  8098. </productMenu>
  8099. <productID id="6840"
  8100. />
  8101. <productGroupable type="0"
  8102. />
  8103. </product>
  8104. <product id="Cavalry2"
  8105. name="Cavalry 2"
  8106. series="Helmet"
  8107. latestVersion="1.2"
  8108. latestVersionVoicePrompt="1.3"
  8109. show = "1" >
  8110. <productMenu id="protocol"
  8111. type="2" >
  8112. </productMenu>
  8113. <productMenu id="alexa"
  8114. type="0" >
  8115. </productMenu>
  8116. <productMenu id="ota"
  8117. type="2" >
  8118. <otaPackages>
  8119. <package
  8120. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8121. size="3144148"
  8122. />
  8123. </otaPackages>
  8124. </productMenu>
  8125. <productMenu id="wa"
  8126. type="0" >
  8127. </productMenu>
  8128. <productMenu id="meshIntercom"
  8129. type="30" >
  8130. </productMenu>
  8131. <productMenu id="meshIntercom+"
  8132. type="3"
  8133. url="2" >
  8134. <productMenuType version="1.0"
  8135. type="2"
  8136. />
  8137. </productMenu>
  8138. <productMenu id="waveIntercom"
  8139. type="1" >
  8140. <productMenuType version="1.0.9"
  8141. type="0"
  8142. />
  8143. </productMenu>
  8144. <productMenu id="phone"
  8145. type="1" >
  8146. </productMenu>
  8147. <productMenu id="music"
  8148. type="1" >
  8149. </productMenu>
  8150. <productMenu id="musicSharing"
  8151. type="0" >
  8152. </productMenu>
  8153. <productMenu id="deviceSetting"
  8154. type="1"
  8155. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8156. <productMenuURL version="1.1.9"
  8157. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8158. />
  8159. <productMenuURL version="1.0"
  8160. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8161. />
  8162. </productMenu>
  8163. <productMenu id="quickGuide"
  8164. type="0"
  8165. url=""
  8166. size="1.12MB" >
  8167. </productMenu>
  8168. <productMenu id="userGuide"
  8169. type="1"
  8170. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8171. size="2.0MB" >
  8172. </productMenu>
  8173. <productMenu id="connectGuide"
  8174. type="1"
  8175. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8176. size="1.12MB" >
  8177. </productMenu>
  8178. <productMenu id="volume"
  8179. type="12" >
  8180. </productMenu>
  8181. <productMenu id="battery"
  8182. type="1" >
  8183. </productMenu>
  8184. <productID id="6839"
  8185. />
  8186. <productGroupable type="0"
  8187. />
  8188. </product>
  8189. <product id="Cavalry"
  8190. name="Cavalry"
  8191. series="Helmet"
  8192. latestVersion="1.2.2"
  8193. show = "1" >
  8194. <productMenu id="protocol"
  8195. type="0">
  8196. </productMenu>
  8197. <productMenu id="sip"
  8198. type="1" >
  8199. </productMenu>
  8200. <productMenu id="bluetoothIntercom"
  8201. type="1" >
  8202. </productMenu>
  8203. <productMenu id="phone"
  8204. type="2" >
  8205. </productMenu>
  8206. <productMenu id="fmradio"
  8207. type="3" >
  8208. </productMenu>
  8209. <productMenu id="deviceSetting"
  8210. type="1"
  8211. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8212. <productMenuURL version="1.9"
  8213. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8214. />
  8215. <productMenuURL version="1.0.1"
  8216. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8217. />
  8218. </productMenu>
  8219. <productMenu id="quickGuide"
  8220. type="1"
  8221. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8222. size="795KB" >
  8223. </productMenu>
  8224. <productMenu id="userGuide"
  8225. type="1"
  8226. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8227. size="1.87MB" >
  8228. </productMenu>
  8229. <productMenu id="connectGuide"
  8230. type="1"
  8231. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8232. size="1.12MB" >
  8233. </productMenu>
  8234. <productID id="5524"
  8235. />
  8236. <productGroupable type="0"
  8237. />
  8238. </product>
  8239. <product id="Cavalry_Lite"
  8240. name="Cavalry Lite"
  8241. series="Helmet"
  8242. latestVersion="1.0.2"
  8243. show = "1" >
  8244. <productMenu id="protocol"
  8245. type="0">
  8246. </productMenu>
  8247. <productMenu id="sip"
  8248. type="1" >
  8249. </productMenu>
  8250. <productMenu id="bluetoothIntercom"
  8251. type="1" >
  8252. </productMenu>
  8253. <productMenu id="phone"
  8254. type="2" >
  8255. </productMenu>
  8256. <productMenu id="fmradio"
  8257. type="3" >
  8258. </productMenu>
  8259. <productMenu id="deviceSetting"
  8260. type="1"
  8261. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8262. </productMenu>
  8263. <productMenu id="userGuide"
  8264. type="1"
  8265. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8266. size="1.74MB" >
  8267. </productMenu>
  8268. <productMenu id="connectGuide"
  8269. type="1"
  8270. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8271. size="1.12MB" >
  8272. </productMenu>
  8273. <productID id="5536"
  8274. />
  8275. <productGroupable type="0"
  8276. />
  8277. </product>
  8278. <product id="VORTEX"
  8279. name="VORTEX"
  8280. series="VORTEX"
  8281. latestVersion="1.0.2"
  8282. latestVersionVoicePrompt="1.0"
  8283. show = "1" >
  8284. <productMenu id="protocol"
  8285. type="2" >
  8286. </productMenu>
  8287. <productMenu id="warranty"
  8288. type="1" >
  8289. </productMenu>
  8290. <productMenu id="serialNumber"
  8291. type="1" >
  8292. </productMenu>
  8293. <productMenu id="ota"
  8294. type="2" >
  8295. <otaLanguages>
  8296. <otaLanguage
  8297. id="0"
  8298. name="English"
  8299. package="0"
  8300. />
  8301. <otaLanguage
  8302. id="0"
  8303. name="French"
  8304. package="1"
  8305. />
  8306. <otaLanguage
  8307. id="0"
  8308. name="Spanish"
  8309. package="2"
  8310. />
  8311. <otaLanguage
  8312. id="0"
  8313. name="Italian"
  8314. package="3"
  8315. />
  8316. <otaLanguage
  8317. id="0"
  8318. name="German"
  8319. package="4"
  8320. />
  8321. <otaLanguage
  8322. id="0"
  8323. name="Dutch"
  8324. package="5"
  8325. />
  8326. <otaLanguage
  8327. id="0"
  8328. name="Russian"
  8329. package="6"
  8330. />
  8331. <otaLanguage
  8332. id="0"
  8333. name="Chinese"
  8334. package="7"
  8335. />
  8336. <otaLanguage
  8337. id="0"
  8338. name="Korean"
  8339. package="8"
  8340. />
  8341. <otaLanguage
  8342. id="0"
  8343. name="Japanese"
  8344. package="9"
  8345. />
  8346. <otaLanguage
  8347. id="0"
  8348. name="Finnish"
  8349. package="10"
  8350. />
  8351. <otaLanguage
  8352. id="0"
  8353. name="Polish"
  8354. package="11"
  8355. />
  8356. </otaLanguages>
  8357. <otaPackages>
  8358. <package
  8359. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8360. size="5183988"
  8361. />
  8362. <package
  8363. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8364. size="5183988"
  8365. />
  8366. <package
  8367. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8368. size="5183988"
  8369. />
  8370. <package
  8371. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8372. size="5183988"
  8373. />
  8374. <package
  8375. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8376. size="5183988"
  8377. />
  8378. <package
  8379. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8380. size="5183988"
  8381. />
  8382. <package
  8383. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8384. size="5183988"
  8385. />
  8386. <package
  8387. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8388. size="5183988"
  8389. />
  8390. <package
  8391. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8392. size="5183988"
  8393. />
  8394. <package
  8395. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8396. size="5183988"
  8397. />
  8398. <package
  8399. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8400. size="5183988"
  8401. />
  8402. <package
  8403. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8404. size="5183988"
  8405. />
  8406. </otaPackages>
  8407. </productMenu>
  8408. <productMenu id="sip"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="bluetoothIntercom"
  8412. type="1" >
  8413. </productMenu>
  8414. <productMenu id="phone"
  8415. type="1" >
  8416. </productMenu>
  8417. <productMenu id="music"
  8418. type="1" >
  8419. </productMenu>
  8420. <productMenu id="fmradio"
  8421. type="1"
  8422. url="1" >
  8423. </productMenu>
  8424. <productMenu id="deviceSetting"
  8425. type="1"
  8426. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8427. </productMenu>
  8428. <productMenu id="quickGuide"
  8429. type="0"
  8430. url=""
  8431. size="934KB" >
  8432. </productMenu>
  8433. <productMenu id="userGuide"
  8434. type="1"
  8435. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8436. size="1.14MB" >
  8437. </productMenu>
  8438. <productMenu id="connectGuide"
  8439. type="0"
  8440. url=""
  8441. size="1.12MB" >
  8442. </productMenu>
  8443. <productMenu id="volume"
  8444. type="15" >
  8445. </productMenu>
  8446. <productMenu id="volume+"
  8447. type="2"
  8448. url="0x0018" >
  8449. </productMenu>
  8450. <productMenu id="appearance"
  8451. type="1"
  8452. url="1|white,silver,black" >
  8453. </productMenu>
  8454. <productID id="3451"
  8455. />
  8456. <productGroupable type="0"
  8457. />
  8458. </product>
  8459. <product id="SF4"
  8460. name="SF4"
  8461. series="SF"
  8462. latestVersion="1.1.5"
  8463. show = "-1" >
  8464. <productMenu id="protocol"
  8465. type="1"
  8466. url="3">
  8467. </productMenu>
  8468. <productMenu id="sip"
  8469. type="1" >
  8470. </productMenu>
  8471. <productMenu id="bluetoothIntercom"
  8472. type="1" >
  8473. </productMenu>
  8474. <productMenu id="phone"
  8475. type="1" >
  8476. </productMenu>
  8477. <productMenu id="music"
  8478. type="1" >
  8479. </productMenu>
  8480. <productMenu id="fmradio"
  8481. type="1" >
  8482. </productMenu>
  8483. <productMenu id="deviceSetting"
  8484. type="1"
  8485. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8486. <productMenuURL version="1.0.1"
  8487. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8488. />
  8489. </productMenu>
  8490. <productMenu id="quickGuide"
  8491. type="1"
  8492. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8493. size="607KB" >
  8494. </productMenu>
  8495. <productMenu id="userGuide"
  8496. type="1"
  8497. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8498. size="1.91MB" >
  8499. </productMenu>
  8500. <productMenu id="volume"
  8501. type="4" >
  8502. </productMenu>
  8503. <productID id="5414"
  8504. />
  8505. <productGroupable type="0"
  8506. />
  8507. </product>
  8508. <product id="SF4"
  8509. name="SF4"
  8510. series="SF"
  8511. latestVersion="3.4.4"
  8512. show = "1" >
  8513. <productMenu id="protocol"
  8514. type="2" >
  8515. </productMenu>
  8516. <productMenu id="sip"
  8517. type="1" >
  8518. </productMenu>
  8519. <productMenu id="bluetoothIntercom"
  8520. type="1" >
  8521. </productMenu>
  8522. <productMenu id="phone"
  8523. type="1" >
  8524. </productMenu>
  8525. <productMenu id="music"
  8526. type="1" >
  8527. </productMenu>
  8528. <productMenu id="fmradio"
  8529. type="1" >
  8530. </productMenu>
  8531. <productMenu id="deviceSetting"
  8532. type="1"
  8533. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8534. <productMenuURL version="3.0"
  8535. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8536. />
  8537. </productMenu>
  8538. <productMenu id="quickGuide"
  8539. type="0"
  8540. url=""
  8541. size="934KB" >
  8542. </productMenu>
  8543. <productMenu id="userGuide"
  8544. type="1"
  8545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8546. size="1.14MB" >
  8547. </productMenu>
  8548. <productMenu id="connectGuide"
  8549. type="1"
  8550. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8551. size="1.12MB" >
  8552. </productMenu>
  8553. <productMenu id="volume"
  8554. type="15" >
  8555. </productMenu>
  8556. <productID id="3370"
  8557. />
  8558. <productGroupable type="0"
  8559. />
  8560. </product>
  8561. <product id="SF2"
  8562. name="SF2"
  8563. series="SF"
  8564. latestVersion="1.2.1"
  8565. show = "-1" >
  8566. <productMenu id="protocol"
  8567. type="1"
  8568. url="2">
  8569. </productMenu>
  8570. <productMenu id="sip"
  8571. type="1" >
  8572. </productMenu>
  8573. <productMenu id="bluetoothIntercom"
  8574. type="1" >
  8575. </productMenu>
  8576. <productMenu id="phone"
  8577. type="1" >
  8578. </productMenu>
  8579. <productMenu id="music"
  8580. type="1" >
  8581. </productMenu>
  8582. <productMenu id="fmradio"
  8583. type="1" >
  8584. </productMenu>
  8585. <productMenu id="deviceSetting"
  8586. type="1"
  8587. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8588. <productMenuURL version="1.0.1"
  8589. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8590. />
  8591. </productMenu>
  8592. <productMenu id="quickGuide"
  8593. type="1"
  8594. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8595. size="607KB" >
  8596. </productMenu>
  8597. <productMenu id="userGuide"
  8598. type="1"
  8599. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8600. size="1.91MB" >
  8601. </productMenu>
  8602. <productMenu id="volume"
  8603. type="4" >
  8604. </productMenu>
  8605. <productID id="5412"
  8606. />
  8607. <productGroupable type="0"
  8608. />
  8609. </product>
  8610. <product id="SF2"
  8611. name="SF2"
  8612. series="SF"
  8613. latestVersion="3.3.4"
  8614. show = "1" >
  8615. <productMenu id="protocol"
  8616. type="2" >
  8617. </productMenu>
  8618. <productMenu id="sip"
  8619. type="1" >
  8620. </productMenu>
  8621. <productMenu id="bluetoothIntercom"
  8622. type="1" >
  8623. </productMenu>
  8624. <productMenu id="phone"
  8625. type="1" >
  8626. </productMenu>
  8627. <productMenu id="music"
  8628. type="1" >
  8629. </productMenu>
  8630. <productMenu id="fmradio"
  8631. type="0" >
  8632. </productMenu>
  8633. <productMenu id="deviceSetting"
  8634. type="1"
  8635. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8636. <productMenuURL version="3.0"
  8637. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8638. />
  8639. </productMenu>
  8640. <productMenu id="quickGuide"
  8641. type="0"
  8642. url=""
  8643. size="934KB" >
  8644. </productMenu>
  8645. <productMenu id="userGuide"
  8646. type="1"
  8647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8648. size="1.14MB" >
  8649. </productMenu>
  8650. <productMenu id="connectGuide"
  8651. type="1"
  8652. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8653. size="1.12MB" >
  8654. </productMenu>
  8655. <productMenu id="volume"
  8656. type="15" >
  8657. </productMenu>
  8658. <productID id="3360"
  8659. />
  8660. <productGroupable type="0"
  8661. />
  8662. </product>
  8663. <product id="SF1"
  8664. name="SF1"
  8665. series="SF"
  8666. latestVersion="2.0.5"
  8667. show = "-1" >
  8668. <productMenu id="protocol"
  8669. type="1"
  8670. url="1">
  8671. </productMenu>
  8672. <productMenu id="sip"
  8673. type="1" >
  8674. </productMenu>
  8675. <productMenu id="bluetoothIntercom"
  8676. type="1" >
  8677. <productMenuType version="1.1"
  8678. type="0"
  8679. />
  8680. </productMenu>
  8681. <productMenu id="phone"
  8682. type="1" >
  8683. </productMenu>
  8684. <productMenu id="music"
  8685. type="1" >
  8686. </productMenu>
  8687. <productMenu id="deviceSetting"
  8688. type="1"
  8689. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8690. <productMenuURL version="1.1"
  8691. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8692. />
  8693. <productMenuURL version="1.0"
  8694. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8695. />
  8696. </productMenu>
  8697. <productMenu id="quickGuide"
  8698. type="1"
  8699. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8700. size="401KB" >
  8701. </productMenu>
  8702. <productMenu id="userGuide"
  8703. type="1"
  8704. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8705. size="1.91MB" >
  8706. </productMenu>
  8707. <productMenu id="volume"
  8708. type="3" >
  8709. </productMenu>
  8710. <productID id="5410"
  8711. />
  8712. <productGroupable type="0"
  8713. />
  8714. </product>
  8715. <product id="SF1"
  8716. name="SF1"
  8717. series="SF"
  8718. latestVersion="3.3.4"
  8719. show = "1" >
  8720. <productMenu id="protocol"
  8721. type="2" >
  8722. </productMenu>
  8723. <productMenu id="sip"
  8724. type="1" >
  8725. </productMenu>
  8726. <productMenu id="bluetoothIntercom"
  8727. type="1" >
  8728. </productMenu>
  8729. <productMenu id="phone"
  8730. type="1" >
  8731. </productMenu>
  8732. <productMenu id="music"
  8733. type="1" >
  8734. </productMenu>
  8735. <productMenu id="fmradio"
  8736. type="0" >
  8737. </productMenu>
  8738. <productMenu id="deviceSetting"
  8739. type="1"
  8740. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8741. <productMenuURL version="3.0"
  8742. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8743. />
  8744. </productMenu>
  8745. <productMenu id="quickGuide"
  8746. type="0"
  8747. url=""
  8748. size="934KB" >
  8749. </productMenu>
  8750. <productMenu id="userGuide"
  8751. type="1"
  8752. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8753. size="1.14MB" >
  8754. </productMenu>
  8755. <productMenu id="connectGuide"
  8756. type="1"
  8757. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8758. size="1.12MB" >
  8759. </productMenu>
  8760. <productMenu id="volume"
  8761. type="15" >
  8762. </productMenu>
  8763. <productID id="3350"
  8764. />
  8765. <productGroupable type="0"
  8766. />
  8767. </product>
  8768. <product id="SFR"
  8769. name="SFR"
  8770. series="SF"
  8771. latestVersion="1.1.1"
  8772. show = "1" >
  8773. <productMenu id="protocol"
  8774. type="1"
  8775. url="3">
  8776. </productMenu>
  8777. <productMenu id="sip"
  8778. type="1" >
  8779. </productMenu>
  8780. <productMenu id="bluetoothIntercom"
  8781. type="1" >
  8782. </productMenu>
  8783. <productMenu id="phone"
  8784. type="1" >
  8785. </productMenu>
  8786. <productMenu id="music"
  8787. type="1" >
  8788. </productMenu>
  8789. <productMenu id="fmradio"
  8790. type="1" >
  8791. </productMenu>
  8792. <productMenu id="deviceSetting"
  8793. type="1"
  8794. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8795. </productMenu>
  8796. <productMenu id="quickGuide"
  8797. type="1"
  8798. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8799. size="607KB" >
  8800. </productMenu>
  8801. <productMenu id="userGuide"
  8802. type="1"
  8803. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8804. size="1.91MB" >
  8805. </productMenu>
  8806. <productMenu id="volume"
  8807. type="4" >
  8808. </productMenu>
  8809. <productID id="5418"
  8810. />
  8811. <productGroupable type="0"
  8812. />
  8813. </product>
  8814. <product id="20S"
  8815. name="20S"
  8816. series="20"
  8817. latestVersion="2.2.3"
  8818. show = "1" >
  8819. <productMenu id="protocol"
  8820. type="0">
  8821. </productMenu>
  8822. <productMenu id="wa"
  8823. type="5" >
  8824. </productMenu>
  8825. <productMenu id="sip"
  8826. type="1" >
  8827. <productMenuType version="1.0"
  8828. type="0"
  8829. />
  8830. </productMenu>
  8831. <productMenu id="bluetoothIntercom"
  8832. type="1" >
  8833. <productMenuType version="1.0"
  8834. type="0"
  8835. />
  8836. </productMenu>
  8837. <productMenu id="intercomSetting"
  8838. type="1" >
  8839. </productMenu>
  8840. <productMenu id="phone"
  8841. type="2" >
  8842. </productMenu>
  8843. <productMenu id="fmradio"
  8844. type="3" >
  8845. </productMenu>
  8846. <productMenu id="deviceSetting"
  8847. type="1"
  8848. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8849. <productMenuURL version="2.0.2"
  8850. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8851. />
  8852. <productMenuURL version="1.5"
  8853. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8854. />
  8855. <productMenuURL version="1.4.1"
  8856. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8857. />
  8858. <productMenuURL version="1.1"
  8859. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8860. />
  8861. <productMenuURL version="1.0"
  8862. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8863. />
  8864. </productMenu>
  8865. <productMenu id="quickGuide"
  8866. type="0"
  8867. url=""
  8868. size="264KB" >
  8869. </productMenu>
  8870. <productMenu id="userGuide"
  8871. type="1"
  8872. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8873. size="3.09MB" >
  8874. </productMenu>
  8875. <productMenu id="connectGuide"
  8876. type="1"
  8877. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8878. size="1.12MB" >
  8879. </productMenu>
  8880. <productID id="4210"
  8881. />
  8882. <productGroupable type="1"
  8883. />
  8884. </product>
  8885. <product id="20S_EVO"
  8886. name="20S EVO"
  8887. series="20"
  8888. latestVersion="2.2.3"
  8889. show = "1" >
  8890. <productMenu id="protocol"
  8891. type="0">
  8892. </productMenu>
  8893. <productMenu id="wa"
  8894. type="5" >
  8895. </productMenu>
  8896. <productMenu id="sip"
  8897. type="1" >
  8898. <productMenuType version="1.0"
  8899. type="0"
  8900. />
  8901. </productMenu>
  8902. <productMenu id="bluetoothIntercom"
  8903. type="1" >
  8904. <productMenuType version="1.0"
  8905. type="0"
  8906. />
  8907. </productMenu>
  8908. <productMenu id="intercomSetting"
  8909. type="1" >
  8910. </productMenu>
  8911. <productMenu id="phone"
  8912. type="2" >
  8913. </productMenu>
  8914. <productMenu id="fmradio"
  8915. type="3" >
  8916. </productMenu>
  8917. <productMenu id="deviceSetting"
  8918. type="1"
  8919. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8920. <productMenuURL version="2.0.2"
  8921. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8922. />
  8923. <productMenuURL version="1.5"
  8924. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8925. />
  8926. <productMenuURL version="1.4.1"
  8927. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8928. />
  8929. <productMenuURL version="1.1"
  8930. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8931. />
  8932. <productMenuURL version="1.0"
  8933. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8934. />
  8935. </productMenu>
  8936. <productMenu id="quickGuide"
  8937. type="0"
  8938. url=""
  8939. size="264KB" >
  8940. </productMenu>
  8941. <productMenu id="userGuide"
  8942. type="1"
  8943. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8944. size="3.09MB" >
  8945. </productMenu>
  8946. <productMenu id="connectGuide"
  8947. type="1"
  8948. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8949. size="1.12MB" >
  8950. </productMenu>
  8951. <productID id="4210"
  8952. />
  8953. <productProductKey key="16"
  8954. />
  8955. <productGroupable type="1"
  8956. />
  8957. </product>
  8958. <product id="10S"
  8959. name="10S"
  8960. series="10"
  8961. latestVersion="3.0.2"
  8962. show = "1" >
  8963. <productMenu id="protocol"
  8964. type="3" >
  8965. </productMenu>
  8966. <productMenu id="sip"
  8967. type="1" >
  8968. </productMenu>
  8969. <productMenu id="bluetoothIntercom"
  8970. type="1" >
  8971. </productMenu>
  8972. <productMenu id="phone"
  8973. type="1" >
  8974. </productMenu>
  8975. <productMenu id="deviceSetting"
  8976. type="1"
  8977. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8978. </productMenu>
  8979. <productMenu id="quickGuide"
  8980. type="1"
  8981. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8982. size="934KB" >
  8983. </productMenu>
  8984. <productMenu id="userGuide"
  8985. type="1"
  8986. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8987. size="1.14MB" >
  8988. </productMenu>
  8989. <productMenu id="connectGuide"
  8990. type="1"
  8991. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8992. size="1.12MB" >
  8993. </productMenu>
  8994. <productID id="3380"
  8995. />
  8996. <productGroupable type="0"
  8997. />
  8998. </product>
  8999. <product id="10S"
  9000. name="10S"
  9001. series="10"
  9002. latestVersion="2.1.1"
  9003. show = "-1" >
  9004. <productMenu id="protocol"
  9005. type="0">
  9006. </productMenu>
  9007. <productMenu id="sip"
  9008. type="1" >
  9009. </productMenu>
  9010. <productMenu id="bluetoothIntercom"
  9011. type="1" >
  9012. </productMenu>
  9013. <productMenu id="phone"
  9014. type="2" >
  9015. </productMenu>
  9016. <productMenu id="fmradio"
  9017. type="3" >
  9018. </productMenu>
  9019. <productMenu id="deviceSetting"
  9020. type="1"
  9021. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9022. <productMenuURL version="1.5"
  9023. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9024. />
  9025. <productMenuURL version="1.3.1"
  9026. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9027. />
  9028. </productMenu>
  9029. <productMenu id="quickGuide"
  9030. type="1"
  9031. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9032. size="310KB" >
  9033. </productMenu>
  9034. <productMenu id="userGuide"
  9035. type="1"
  9036. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9037. size="1.57MB" >
  9038. </productMenu>
  9039. <productID id="5530"
  9040. />
  9041. <productGroupable type="0"
  9042. />
  9043. </product>
  9044. <product id="Apex"
  9045. name="Apex"
  9046. series="Apex"
  9047. latestVersion="1.0"
  9048. latestVersionVoicePrompt="0.2"
  9049. show = "-1" >
  9050. <productMenu id="protocol"
  9051. type="2" >
  9052. </productMenu>
  9053. <productMenu id="warranty"
  9054. type="1" >
  9055. </productMenu>
  9056. <productMenu id="serialNumber"
  9057. type="1" >
  9058. </productMenu>
  9059. <productMenu id="ota"
  9060. type="2" >
  9061. <otaLanguages>
  9062. <otaLanguage
  9063. id="0"
  9064. name="English"
  9065. package="0"
  9066. />
  9067. <otaLanguage
  9068. id="0"
  9069. name="French"
  9070. package="1"
  9071. />
  9072. <otaLanguage
  9073. id="0"
  9074. name="Spanish"
  9075. package="2"
  9076. />
  9077. <otaLanguage
  9078. id="0"
  9079. name="Italian"
  9080. package="3"
  9081. />
  9082. <otaLanguage
  9083. id="0"
  9084. name="German"
  9085. package="4"
  9086. />
  9087. <otaLanguage
  9088. id="0"
  9089. name="Dutch"
  9090. package="5"
  9091. />
  9092. <otaLanguage
  9093. id="0"
  9094. name="Russian"
  9095. package="6"
  9096. />
  9097. <otaLanguage
  9098. id="0"
  9099. name="Chinese"
  9100. package="7"
  9101. />
  9102. <otaLanguage
  9103. id="0"
  9104. name="Korean"
  9105. package="8"
  9106. />
  9107. <otaLanguage
  9108. id="0"
  9109. name="Japanese"
  9110. package="9"
  9111. />
  9112. <otaLanguage
  9113. id="0"
  9114. name="Finnish"
  9115. package="10"
  9116. />
  9117. <otaLanguage
  9118. id="0"
  9119. name="Polish"
  9120. package="11"
  9121. />
  9122. </otaLanguages>
  9123. <otaPackages>
  9124. <package
  9125. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9126. size="5183988"
  9127. />
  9128. <package
  9129. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9130. size="5183988"
  9131. />
  9132. <package
  9133. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9134. size="5183988"
  9135. />
  9136. <package
  9137. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9138. size="5183988"
  9139. />
  9140. <package
  9141. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9142. size="5183988"
  9143. />
  9144. <package
  9145. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9146. size="5183988"
  9147. />
  9148. <package
  9149. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9150. size="5183988"
  9151. />
  9152. <package
  9153. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9154. size="5183988"
  9155. />
  9156. <package
  9157. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9158. size="5183988"
  9159. />
  9160. <package
  9161. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9162. size="5183988"
  9163. />
  9164. <package
  9165. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9166. size="5183988"
  9167. />
  9168. <package
  9169. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9170. size="5183988"
  9171. />
  9172. </otaPackages>
  9173. </productMenu>
  9174. <productMenu id="sip"
  9175. type="1" >
  9176. </productMenu>
  9177. <productMenu id="bluetoothIntercom"
  9178. type="1" >
  9179. </productMenu>
  9180. <productMenu id="phone"
  9181. type="1" >
  9182. </productMenu>
  9183. <productMenu id="music"
  9184. type="1" >
  9185. </productMenu>
  9186. <productMenu id="fmradio"
  9187. type="1"
  9188. url="1" >
  9189. </productMenu>
  9190. <productMenu id="deviceSetting"
  9191. type="1"
  9192. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9193. <productMenuURL version="1.0"
  9194. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9195. />
  9196. </productMenu>
  9197. <productMenu id="quickGuide"
  9198. type="0"
  9199. url=""
  9200. size="934KB" >
  9201. </productMenu>
  9202. <productMenu id="userGuide"
  9203. type="1"
  9204. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9205. size="1.14MB" >
  9206. </productMenu>
  9207. <productMenu id="volume+"
  9208. type="2"
  9209. url="0x0004" >
  9210. </productMenu>
  9211. <productMenu id="appearance"
  9212. type="1"
  9213. url="1|white,silver,black" >
  9214. </productMenu>
  9215. <productMenu id="battery"
  9216. type="1" >
  9217. </productMenu>
  9218. <productID id="3452"
  9219. />
  9220. <productGroupable type="0"
  9221. />
  9222. </product>
  9223. <product id="ApexPlus"
  9224. name="Apex Plus"
  9225. series="Apex"
  9226. latestVersion="1.0"
  9227. latestVersionVoicePrompt="0.2"
  9228. show = "-1" >
  9229. <productMenu id="protocol"
  9230. type="2" >
  9231. </productMenu>
  9232. <productMenu id="warranty"
  9233. type="1" >
  9234. </productMenu>
  9235. <productMenu id="serialNumber"
  9236. type="1" >
  9237. </productMenu>
  9238. <productMenu id="ota"
  9239. type="2" >
  9240. <otaLanguages>
  9241. <otaLanguage
  9242. id="0"
  9243. name="English"
  9244. package="0"
  9245. />
  9246. <otaLanguage
  9247. id="0"
  9248. name="French"
  9249. package="1"
  9250. />
  9251. <otaLanguage
  9252. id="0"
  9253. name="Spanish"
  9254. package="2"
  9255. />
  9256. <otaLanguage
  9257. id="0"
  9258. name="Italian"
  9259. package="3"
  9260. />
  9261. <otaLanguage
  9262. id="0"
  9263. name="German"
  9264. package="4"
  9265. />
  9266. <otaLanguage
  9267. id="0"
  9268. name="Dutch"
  9269. package="5"
  9270. />
  9271. <otaLanguage
  9272. id="0"
  9273. name="Russian"
  9274. package="6"
  9275. />
  9276. <otaLanguage
  9277. id="0"
  9278. name="Chinese"
  9279. package="7"
  9280. />
  9281. <otaLanguage
  9282. id="0"
  9283. name="Korean"
  9284. package="8"
  9285. />
  9286. <otaLanguage
  9287. id="0"
  9288. name="Japanese"
  9289. package="9"
  9290. />
  9291. <otaLanguage
  9292. id="0"
  9293. name="Finnish"
  9294. package="10"
  9295. />
  9296. <otaLanguage
  9297. id="0"
  9298. name="Polish"
  9299. package="11"
  9300. />
  9301. </otaLanguages>
  9302. <otaPackages>
  9303. <package
  9304. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9305. size="5183988"
  9306. />
  9307. <package
  9308. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9309. size="5183988"
  9310. />
  9311. <package
  9312. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9313. size="5183988"
  9314. />
  9315. <package
  9316. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9317. size="5183988"
  9318. />
  9319. <package
  9320. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9321. size="5183988"
  9322. />
  9323. <package
  9324. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9325. size="5183988"
  9326. />
  9327. <package
  9328. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9329. size="5183988"
  9330. />
  9331. <package
  9332. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9333. size="5183988"
  9334. />
  9335. <package
  9336. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9337. size="5183988"
  9338. />
  9339. <package
  9340. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9341. size="5183988"
  9342. />
  9343. <package
  9344. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9345. size="5183988"
  9346. />
  9347. <package
  9348. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9349. size="5183988"
  9350. />
  9351. </otaPackages>
  9352. </productMenu>
  9353. <productMenu id="sip"
  9354. type="1" >
  9355. </productMenu>
  9356. <productMenu id="bluetoothIntercom"
  9357. type="1" >
  9358. </productMenu>
  9359. <productMenu id="phone"
  9360. type="1" >
  9361. </productMenu>
  9362. <productMenu id="music"
  9363. type="1" >
  9364. </productMenu>
  9365. <productMenu id="fmradio"
  9366. type="1"
  9367. url="1" >
  9368. </productMenu>
  9369. <productMenu id="deviceSetting"
  9370. type="1"
  9371. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9372. <productMenuURL version="1.0"
  9373. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9374. />
  9375. </productMenu>
  9376. <productMenu id="quickGuide"
  9377. type="0"
  9378. url=""
  9379. size="934KB" >
  9380. </productMenu>
  9381. <productMenu id="userGuide"
  9382. type="1"
  9383. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9384. size="1.14MB" >
  9385. </productMenu>
  9386. <productMenu id="volume+"
  9387. type="2"
  9388. url="0x0004" >
  9389. </productMenu>
  9390. <productMenu id="appearance"
  9391. type="1"
  9392. url="1|white,silver,black" >
  9393. </productMenu>
  9394. <productMenu id="battery"
  9395. type="1" >
  9396. </productMenu>
  9397. <productID id="3453"
  9398. />
  9399. <productGroupable type="0"
  9400. />
  9401. </product>
  9402. <product id="10R2"
  9403. name="10R 2"
  9404. series="10"
  9405. latestVersion="0.9"
  9406. latestVersionVoicePrompt="1.1"
  9407. show = "-1" >
  9408. <productMenu id="protocol"
  9409. type="2" >
  9410. </productMenu>
  9411. <productMenu id="ota"
  9412. type="2" >
  9413. <otaPackages>
  9414. <package
  9415. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9416. size="2945812"
  9417. />
  9418. </otaPackages>
  9419. </productMenu>
  9420. <productMenu id="sip"
  9421. type="1" >
  9422. </productMenu>
  9423. <productMenu id="bluetoothIntercom"
  9424. type="1" >
  9425. </productMenu>
  9426. <productMenu id="phone"
  9427. type="1" >
  9428. </productMenu>
  9429. <productMenu id="music"
  9430. type="1" >
  9431. </productMenu>
  9432. <productMenu id="fmradio"
  9433. type="1"
  9434. url="1" >
  9435. </productMenu>
  9436. <productMenu id="deviceSetting"
  9437. type="1"
  9438. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9439. </productMenu>
  9440. <productMenu id="quickGuide"
  9441. type="1"
  9442. url=""
  9443. size="934KB" >
  9444. </productMenu>
  9445. <productMenu id="userGuide"
  9446. type="0"
  9447. url=""
  9448. size="1.14MB" >
  9449. </productMenu>
  9450. <productMenu id="volume"
  9451. type="15" >
  9452. </productMenu>
  9453. <productID id="4000"
  9454. />
  9455. <productGroupable type="0"
  9456. />
  9457. </product>
  9458. <product id="10R"
  9459. name="10R"
  9460. series="10"
  9461. latestVersion="2.1.1"
  9462. show = "1" >
  9463. <productMenu id="protocol"
  9464. type="0">
  9465. </productMenu>
  9466. <productMenu id="sip"
  9467. type="1" >
  9468. <productMenuType version="1.0.2"
  9469. type="0"
  9470. />
  9471. </productMenu>
  9472. <productMenu id="bluetoothIntercom"
  9473. type="1" >
  9474. <productMenuType version="1.0.2"
  9475. type="0"
  9476. />
  9477. </productMenu>
  9478. <productMenu id="phone"
  9479. type="2" >
  9480. </productMenu>
  9481. <productMenu id="fmradio"
  9482. type="3" >
  9483. </productMenu>
  9484. <productMenu id="deviceSetting"
  9485. type="1"
  9486. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9487. <productMenuURL version="1.4"
  9488. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9489. />
  9490. <productMenuURL version="1.2.1"
  9491. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9492. />
  9493. <productMenuURL version="1.0.2"
  9494. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9495. />
  9496. <productMenuURL version="1.0"
  9497. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9498. />
  9499. </productMenu>
  9500. <productMenu id="quickGuide"
  9501. type="1"
  9502. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9503. size="400KB" >
  9504. </productMenu>
  9505. <productMenu id="userGuide"
  9506. type="1"
  9507. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9508. size="2.75MB" >
  9509. </productMenu>
  9510. <productMenu id="connectGuide"
  9511. type="1"
  9512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9513. size="1.12MB" >
  9514. </productMenu>
  9515. <productID id="5520"
  9516. />
  9517. <productGroupable type="0"
  9518. />
  9519. </product>
  9520. <product id="10C_EVO"
  9521. name="10C EVO"
  9522. series="10"
  9523. latestVersion="1.7"
  9524. show = "1" >
  9525. <productMenu id="protocol"
  9526. type="0">
  9527. </productMenu>
  9528. <productMenu id="sip"
  9529. type="1" >
  9530. </productMenu>
  9531. <productMenu id="bluetoothIntercom"
  9532. type="1" >
  9533. </productMenu>
  9534. <productMenu id="phone"
  9535. type="2" >
  9536. </productMenu>
  9537. <productMenu id="fmradio"
  9538. type="3" >
  9539. </productMenu>
  9540. <productMenu id="deviceSetting"
  9541. type="1"
  9542. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9543. <productMenuURL version="1.3.1"
  9544. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9545. />
  9546. </productMenu>
  9547. <productMenu id="quickGuide"
  9548. type="1"
  9549. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9550. size="1.32MB" >
  9551. </productMenu>
  9552. <productMenu id="userGuide"
  9553. type="1"
  9554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9555. size="1.68MB" >
  9556. </productMenu>
  9557. <productMenu id="connectGuide"
  9558. type="1"
  9559. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9560. size="1.12MB" >
  9561. </productMenu>
  9562. <productID id="5570"
  9563. />
  9564. <productGroupable type="0"
  9565. />
  9566. </product>
  9567. <product id="10C_Pro"
  9568. name="10C Pro"
  9569. series="10"
  9570. latestVersion="2.7.1"
  9571. show = "1" >
  9572. <productMenu id="protocol"
  9573. type="0">
  9574. </productMenu>
  9575. <productMenu id="sip"
  9576. type="1" >
  9577. </productMenu>
  9578. <productMenu id="bluetoothIntercom"
  9579. type="1" >
  9580. </productMenu>
  9581. <productMenu id="phone"
  9582. type="2" >
  9583. </productMenu>
  9584. <productMenu id="fmradio"
  9585. type="3" >
  9586. </productMenu>
  9587. <productMenu id="deviceSetting"
  9588. type="1"
  9589. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9590. <productMenuURL version="2.5.1"
  9591. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9592. />
  9593. <productMenuURL version="1.0"
  9594. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9595. />
  9596. </productMenu>
  9597. <productMenu id="quickGuide"
  9598. type="1"
  9599. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9600. size="651KB" >
  9601. </productMenu>
  9602. <productMenu id="userGuide"
  9603. type="1"
  9604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9605. size="2.34MB" >
  9606. </productMenu>
  9607. <productMenu id="connectGuide"
  9608. type="1"
  9609. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9610. size="1.12MB" >
  9611. </productMenu>
  9612. <productID id="5580"
  9613. />
  9614. <productGroupable type="0"
  9615. />
  9616. </product>
  9617. <product id="10C"
  9618. name="10C"
  9619. series="10"
  9620. latestVersion="3.0.4"
  9621. show = "1" >
  9622. <productMenu id="protocol"
  9623. type="0">
  9624. </productMenu>
  9625. <productMenu id="sip"
  9626. type="1" >
  9627. <productMenuType version="1.0.4"
  9628. type="0"
  9629. />
  9630. </productMenu>
  9631. <productMenu id="bluetoothIntercom"
  9632. type="1" >
  9633. <productMenuType version="1.0.4"
  9634. type="0"
  9635. />
  9636. </productMenu>
  9637. <productMenu id="phone"
  9638. type="2" >
  9639. </productMenu>
  9640. <productMenu id="fmradio"
  9641. type="3" >
  9642. </productMenu>
  9643. <productMenu id="deviceSetting"
  9644. type="1"
  9645. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9646. <productMenuURL version="2.3"
  9647. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9648. />
  9649. <productMenuURL version="2.1.1"
  9650. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9651. />
  9652. <productMenuURL version="1.0.4"
  9653. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9654. />
  9655. <productMenuURL version="1.0.2"
  9656. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9657. />
  9658. </productMenu>
  9659. <productMenu id="quickGuide"
  9660. type="1"
  9661. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9662. size="935KB" >
  9663. </productMenu>
  9664. <productMenu id="userGuide"
  9665. type="1"
  9666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9667. size="2.82MB" >
  9668. </productMenu>
  9669. <productMenu id="connectGuide"
  9670. type="1"
  9671. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9672. size="1.12MB" >
  9673. </productMenu>
  9674. <productID id="5510"
  9675. />
  9676. <productGroupable type="0"
  9677. />
  9678. </product>
  9679. <product id="10U_GT_AIR"
  9680. name="10U GT-Air"
  9681. series="10"
  9682. latestVersion="2.0.4"
  9683. show = "1" >
  9684. <productMenu id="protocol"
  9685. type="0">
  9686. </productMenu>
  9687. <productMenu id="sip"
  9688. type="1" >
  9689. <productMenuType version="1.0.2"
  9690. type="0"
  9691. />
  9692. </productMenu>
  9693. <productMenu id="bluetoothIntercom"
  9694. type="1" >
  9695. <productMenuType version="1.0.2"
  9696. type="0"
  9697. />
  9698. </productMenu>
  9699. <productMenu id="phone"
  9700. type="2" >
  9701. </productMenu>
  9702. <productMenu id="fmradio"
  9703. type="3" >
  9704. </productMenu>
  9705. <productMenu id="deviceSetting"
  9706. type="1"
  9707. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9708. <productMenuURL version="1.3.2"
  9709. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9710. />
  9711. <productMenuURL version="1.0.2"
  9712. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9713. />
  9714. </productMenu>
  9715. <productMenu id="quickGuide"
  9716. type="1"
  9717. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9718. size="685KB" >
  9719. </productMenu>
  9720. <productMenu id="userGuide"
  9721. type="1"
  9722. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9723. size="684KB" >
  9724. </productMenu>
  9725. <productMenu id="connectGuide"
  9726. type="1"
  9727. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9728. size="1.12MB" >
  9729. </productMenu>
  9730. <productID id="5610"
  9731. />
  9732. <productGroupable type="0"
  9733. />
  9734. </product>
  9735. <product id="10U_NEOTEC"
  9736. name="10U Neotec"
  9737. series="10"
  9738. latestVersion="2.0.4"
  9739. show = "1" >
  9740. <productMenu id="protocol"
  9741. type="0">
  9742. </productMenu>
  9743. <productMenu id="sip"
  9744. type="1" >
  9745. <productMenuType version="1.0.2"
  9746. type="0"
  9747. />
  9748. </productMenu>
  9749. <productMenu id="bluetoothIntercom"
  9750. type="1" >
  9751. <productMenuType version="1.0.2"
  9752. type="0"
  9753. />
  9754. </productMenu>
  9755. <productMenu id="phone"
  9756. type="2" >
  9757. </productMenu>
  9758. <productMenu id="fmradio"
  9759. type="3" >
  9760. </productMenu>
  9761. <productMenu id="deviceSetting"
  9762. type="1"
  9763. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9764. <productMenuURL version="1.3.2"
  9765. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9766. />
  9767. <productMenuURL version="1.0.2"
  9768. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9769. />
  9770. </productMenu>
  9771. <productMenu id="quickGuide"
  9772. type="1"
  9773. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9774. size="689KB" >
  9775. </productMenu>
  9776. <productMenu id="userGuide"
  9777. type="1"
  9778. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9779. size="684KB" >
  9780. </productMenu>
  9781. <productMenu id="connectGuide"
  9782. type="1"
  9783. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9784. size="1.12MB" >
  9785. </productMenu>
  9786. <productID id="5611"
  9787. />
  9788. <productGroupable type="0"
  9789. />
  9790. </product>
  9791. <product id="10U_J_CRUISE"
  9792. name="10U J-Cruise"
  9793. series="10"
  9794. latestVersion="2.0.4"
  9795. show = "1" >
  9796. <productMenu id="protocol"
  9797. type="0">
  9798. </productMenu>
  9799. <productMenu id="sip"
  9800. type="1" >
  9801. <productMenuType version="1.0.2"
  9802. type="0"
  9803. />
  9804. </productMenu>
  9805. <productMenu id="bluetoothIntercom"
  9806. type="1" >
  9807. <productMenuType version="1.0.2"
  9808. type="0"
  9809. />
  9810. </productMenu>
  9811. <productMenu id="phone"
  9812. type="2" >
  9813. </productMenu>
  9814. <productMenu id="fmradio"
  9815. type="3" >
  9816. </productMenu>
  9817. <productMenu id="deviceSetting"
  9818. type="1"
  9819. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9820. <productMenuURL version="1.3.2"
  9821. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9822. />
  9823. <productMenuURL version="1.0.2"
  9824. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9825. />
  9826. </productMenu>
  9827. <productMenu id="quickGuide"
  9828. type="1"
  9829. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9830. size="686KB" >
  9831. </productMenu>
  9832. <productMenu id="userGuide"
  9833. type="1"
  9834. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9835. size="684KB" >
  9836. </productMenu>
  9837. <productMenu id="connectGuide"
  9838. type="1"
  9839. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9840. size="1.12MB" >
  9841. </productMenu>
  9842. <productID id="5612"
  9843. />
  9844. <productGroupable type="0"
  9845. />
  9846. </product>
  9847. <product id="10U_C3"
  9848. name="10U C3/C3Pro"
  9849. series="10"
  9850. latestVersion="2.0.4"
  9851. show = "1" >
  9852. <productMenu id="protocol"
  9853. type="0">
  9854. </productMenu>
  9855. <productMenu id="sip"
  9856. type="1" >
  9857. <productMenuType version="1.0.2"
  9858. type="0"
  9859. />
  9860. </productMenu>
  9861. <productMenu id="bluetoothIntercom"
  9862. type="1" >
  9863. <productMenuType version="1.0.2"
  9864. type="0"
  9865. />
  9866. </productMenu>
  9867. <productMenu id="phone"
  9868. type="2" >
  9869. </productMenu>
  9870. <productMenu id="fmradio"
  9871. type="3" >
  9872. </productMenu>
  9873. <productMenu id="deviceSetting"
  9874. type="1"
  9875. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9876. <productMenuURL version="1.3.2"
  9877. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9878. />
  9879. <productMenuURL version="1.0.2"
  9880. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9881. />
  9882. </productMenu>
  9883. <productMenu id="quickGuide"
  9884. type="1"
  9885. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9886. size="199KB" >
  9887. </productMenu>
  9888. <productMenu id="userGuide"
  9889. type="1"
  9890. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9891. size="684KB" >
  9892. </productMenu>
  9893. <productMenu id="connectGuide"
  9894. type="1"
  9895. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9896. size="1.12MB" >
  9897. </productMenu>
  9898. <productID id="5620"
  9899. />
  9900. <productGroupable type="0"
  9901. />
  9902. </product>
  9903. <product id="10U_ARAI"
  9904. name="10U Arai"
  9905. series="10"
  9906. latestVersion="2.0.4"
  9907. show = "1" >
  9908. <productMenu id="protocol"
  9909. type="0">
  9910. </productMenu>
  9911. <productMenu id="sip"
  9912. type="1" >
  9913. <productMenuType version="1.0.2"
  9914. type="0"
  9915. />
  9916. </productMenu>
  9917. <productMenu id="bluetoothIntercom"
  9918. type="1" >
  9919. <productMenuType version="1.0.2"
  9920. type="0"
  9921. />
  9922. </productMenu>
  9923. <productMenu id="phone"
  9924. type="2" >
  9925. </productMenu>
  9926. <productMenu id="fmradio"
  9927. type="3" >
  9928. </productMenu>
  9929. <productMenu id="deviceSetting"
  9930. type="1"
  9931. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9932. <productMenuURL version="1.3.2"
  9933. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9934. />
  9935. <productMenuURL version="1.0.2"
  9936. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9937. />
  9938. </productMenu>
  9939. <productMenu id="quickGuide"
  9940. type="1"
  9941. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9942. size="689KB" >
  9943. </productMenu>
  9944. <productMenu id="userGuide"
  9945. type="1"
  9946. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9947. size="684KB" >
  9948. </productMenu>
  9949. <productMenu id="connectGuide"
  9950. type="1"
  9951. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9952. size="1.12MB" >
  9953. </productMenu>
  9954. <productID id="5621"
  9955. />
  9956. <productGroupable type="0"
  9957. />
  9958. </product>
  9959. <product id="10Upad"
  9960. name="10Upad"
  9961. series="10"
  9962. latestVersion="2.0.3"
  9963. show = "1" >
  9964. <productMenu id="protocol"
  9965. type="0">
  9966. </productMenu>
  9967. <productMenu id="sip"
  9968. type="1" >
  9969. </productMenu>
  9970. <productMenu id="bluetoothIntercom"
  9971. type="1" >
  9972. </productMenu>
  9973. <productMenu id="phone"
  9974. type="2" >
  9975. </productMenu>
  9976. <productMenu id="fmradio"
  9977. type="3" >
  9978. </productMenu>
  9979. <productMenu id="deviceSetting"
  9980. type="1"
  9981. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9982. <productMenuURL version="1.0.3"
  9983. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9984. />
  9985. </productMenu>
  9986. <productMenu id="quickGuide"
  9987. type="1"
  9988. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9989. size="615KB" >
  9990. </productMenu>
  9991. <productMenu id="userGuide"
  9992. type="1"
  9993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9994. size="0.99MB" >
  9995. </productMenu>
  9996. <productMenu id="connectGuide"
  9997. type="1"
  9998. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9999. size="1.12MB" >
  10000. </productMenu>
  10001. <productID id="6210"
  10002. />
  10003. <productGroupable type="0"
  10004. />
  10005. </product>
  10006. <product id="5S"
  10007. name="5S"
  10008. series="5"
  10009. latestVersion="2.3.1"
  10010. show = "1" >
  10011. <productMenu id="protocol"
  10012. type="3" >
  10013. </productMenu>
  10014. <productMenu id="sip"
  10015. type="1" >
  10016. </productMenu>
  10017. <productMenu id="bluetoothIntercom"
  10018. type="1" >
  10019. </productMenu>
  10020. <productMenu id="phone"
  10021. type="1" >
  10022. </productMenu>
  10023. <productMenu id="fmradio"
  10024. type="0" >
  10025. </productMenu>
  10026. <productMenu id="deviceSetting"
  10027. type="1"
  10028. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10029. </productMenu>
  10030. <productMenu id="quickGuide"
  10031. type="0"
  10032. url=""
  10033. size="934KB" >
  10034. </productMenu>
  10035. <productMenu id="userGuide"
  10036. type="1"
  10037. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10038. size="1.14MB" >
  10039. </productMenu>
  10040. <productMenu id="connectGuide"
  10041. type="1"
  10042. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10043. size="1.12MB" >
  10044. </productMenu>
  10045. <productID id="5590"
  10046. />
  10047. <productGroupable type="0"
  10048. />
  10049. </product>
  10050. <product id="5S"
  10051. name="5S"
  10052. series="5"
  10053. latestVersion="1.2"
  10054. show = "-1" >
  10055. <productMenu id="protocol"
  10056. type="0">
  10057. </productMenu>
  10058. <productMenu id="sip"
  10059. type="1" >
  10060. </productMenu>
  10061. <productMenu id="bluetoothIntercom"
  10062. type="1" >
  10063. </productMenu>
  10064. <productMenu id="phone"
  10065. type="2" >
  10066. </productMenu>
  10067. <productMenu id="fmradio"
  10068. type="3" >
  10069. </productMenu>
  10070. <productMenu id="deviceSetting"
  10071. type="1"
  10072. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10073. </productMenu>
  10074. <productMenu id="quickGuide"
  10075. type="0"
  10076. url=""
  10077. size="970KB" >
  10078. </productMenu>
  10079. <productMenu id="userGuide"
  10080. type="1"
  10081. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10082. size="1.26MB" >
  10083. </productMenu>
  10084. <productID id="5534"
  10085. />
  10086. <productGroupable type="0"
  10087. />
  10088. </product>
  10089. <product id="5S"
  10090. name="5S"
  10091. series="5"
  10092. latestVersion="3.0.1"
  10093. show = "-1" >
  10094. <productMenu id="protocol"
  10095. type="0">
  10096. </productMenu>
  10097. <productMenu id="sip"
  10098. type="1" >
  10099. </productMenu>
  10100. <productMenu id="bluetoothIntercom"
  10101. type="1" >
  10102. </productMenu>
  10103. <productMenu id="phone"
  10104. type="2" >
  10105. </productMenu>
  10106. <productMenu id="fmradio"
  10107. type="0" >
  10108. </productMenu>
  10109. <productMenu id="deviceSetting"
  10110. type="1"
  10111. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10112. </productMenu>
  10113. <productMenu id="quickGuide"
  10114. type="0"
  10115. url=""
  10116. size="970KB" >
  10117. </productMenu>
  10118. <productMenu id="userGuide"
  10119. type="1"
  10120. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10121. size="1.26MB" >
  10122. </productMenu>
  10123. <productID id="5538"
  10124. />
  10125. <productGroupable type="0"
  10126. />
  10127. </product>
  10128. <product id="3SPLUS"
  10129. name="3S PLUS"
  10130. series="3"
  10131. latestVersion="2.2"
  10132. show = "1" >
  10133. <productMenu id="protocol"
  10134. type="3" >
  10135. </productMenu>
  10136. <productMenu id="sip"
  10137. type="1" >
  10138. </productMenu>
  10139. <productMenu id="bluetoothIntercom"
  10140. type="1" >
  10141. </productMenu>
  10142. <productMenu id="deviceSetting"
  10143. type="1"
  10144. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10145. <productMenuURL version="2.2.1"
  10146. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10147. />
  10148. </productMenu>
  10149. <productMenu id="quickGuide"
  10150. type="1"
  10151. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10152. size="344KB" >
  10153. </productMenu>
  10154. <productMenu id="userGuide"
  10155. type="1"
  10156. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10157. size="1.14MB" >
  10158. </productMenu>
  10159. <productMenu id="connectGuide"
  10160. type="1"
  10161. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10162. size="1.12MB" >
  10163. </productMenu>
  10164. <productID id="4023"
  10165. />
  10166. <productGroupable type="0"
  10167. />
  10168. </product>
  10169. <product id="3SPLUS"
  10170. name="3S PLUS"
  10171. series="3"
  10172. latestVersion="1.1"
  10173. show = "-1" >
  10174. <productMenu id="protocol"
  10175. type="0">
  10176. </productMenu>
  10177. <productMenu id="sip"
  10178. type="1" >
  10179. </productMenu>
  10180. <productMenu id="bluetoothIntercom"
  10181. type="1" >
  10182. </productMenu>
  10183. <productMenu id="deviceSetting"
  10184. type="1"
  10185. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10186. </productMenu>
  10187. <productMenu id="quickGuide"
  10188. type="1"
  10189. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10190. size="842KB" >
  10191. </productMenu>
  10192. <productMenu id="userGuide"
  10193. type="1"
  10194. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10195. size="1.02MB" >
  10196. </productMenu>
  10197. <productID id="6320"
  10198. />
  10199. <productGroupable type="0"
  10200. />
  10201. </product>
  10202. <product id="AConnect"
  10203. name="Alpinestars A-Connect"
  10204. series="60"
  10205. latestVersion="1.0.2"
  10206. latestVersionMesh="0.19"
  10207. latestVersionVoicePrompt="1.6"
  10208. show = "-1" >
  10209. <productMenu id="protocol"
  10210. type="2" >
  10211. </productMenu>
  10212. <productMenu id="ota"
  10213. type="2" >
  10214. <otaLanguages>
  10215. <otaLanguage
  10216. id="0"
  10217. name="English"
  10218. package="0"
  10219. />
  10220. <otaLanguage
  10221. id="0"
  10222. name="French"
  10223. package="1"
  10224. />
  10225. <otaLanguage
  10226. id="0"
  10227. name="Spanish"
  10228. package="2"
  10229. />
  10230. <otaLanguage
  10231. id="0"
  10232. name="Italian"
  10233. package="3"
  10234. />
  10235. <otaLanguage
  10236. id="0"
  10237. name="German"
  10238. package="4"
  10239. />
  10240. <otaLanguage
  10241. id="0"
  10242. name="Dutch"
  10243. package="5"
  10244. />
  10245. <otaLanguage
  10246. id="0"
  10247. name="Russian"
  10248. package="6"
  10249. />
  10250. <otaLanguage
  10251. id="0"
  10252. name="Chinese"
  10253. package="7"
  10254. />
  10255. <otaLanguage
  10256. id="0"
  10257. name="Korean"
  10258. package="8"
  10259. />
  10260. <otaLanguage
  10261. id="0"
  10262. name="Japanese"
  10263. package="9"
  10264. />
  10265. <otaLanguage
  10266. id="0"
  10267. name="Finnish"
  10268. package="10"
  10269. />
  10270. <otaLanguage
  10271. id="0"
  10272. name="Polish"
  10273. package="11"
  10274. />
  10275. </otaLanguages>
  10276. <otaPackages>
  10277. <package
  10278. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10279. size="5183988"
  10280. />
  10281. <package
  10282. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10283. size="5183988"
  10284. />
  10285. <package
  10286. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10287. size="5183988"
  10288. />
  10289. <package
  10290. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10291. size="5183988"
  10292. />
  10293. <package
  10294. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10295. size="5183988"
  10296. />
  10297. <package
  10298. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10299. size="5183988"
  10300. />
  10301. <package
  10302. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10303. size="5183988"
  10304. />
  10305. <package
  10306. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10307. size="5183988"
  10308. />
  10309. <package
  10310. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10311. size="5183988"
  10312. />
  10313. <package
  10314. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10315. size="5183988"
  10316. />
  10317. <package
  10318. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10319. size="5183988"
  10320. />
  10321. <package
  10322. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10323. size="5183988"
  10324. />
  10325. </otaPackages>
  10326. </productMenu>
  10327. <productMenu id="sip"
  10328. type="1" >
  10329. </productMenu>
  10330. <productMenu id="illusion"
  10331. type="0" >
  10332. </productMenu>
  10333. <productMenu id="meshIntercom+"
  10334. type="3"
  10335. url="2" >
  10336. </productMenu>
  10337. <productMenu id="waveIntercom"
  10338. type="1" >
  10339. </productMenu>
  10340. <productMenu id="bluetoothIntercom"
  10341. type="1"
  10342. url="2" >
  10343. </productMenu>
  10344. <productMenu id="bluetoothIntercomGrouping"
  10345. type="0" >
  10346. </productMenu>
  10347. <productMenu id="fmradio"
  10348. type="1"
  10349. url="1" >
  10350. </productMenu>
  10351. <productMenu id="phone"
  10352. type="1" >
  10353. </productMenu>
  10354. <productMenu id="music"
  10355. type="1" >
  10356. </productMenu>
  10357. <productMenu id="musicSharing"
  10358. type="0" >
  10359. </productMenu>
  10360. <productMenu id="deviceSetting"
  10361. type="1"
  10362. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10363. </productMenu>
  10364. <productMenu id="quickGuide"
  10365. type="0"
  10366. url=""
  10367. size="1.12MB" >
  10368. </productMenu>
  10369. <productMenu id="userGuide"
  10370. type="1"
  10371. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10372. size="2.0MB" >
  10373. </productMenu>
  10374. <productMenu id="videoGuide"
  10375. type="0"
  10376. url=""
  10377. size="3.41MB" >
  10378. </productMenu>
  10379. <productMenu id="volume"
  10380. type="16" >
  10381. </productMenu>
  10382. <productMenu id="volume+"
  10383. type="2"
  10384. url="0x6004" >
  10385. </productMenu>
  10386. <productMenu id="soundMode"
  10387. type="0" >
  10388. </productMenu>
  10389. <productMenu id="battery"
  10390. type="1" >
  10391. </productMenu>
  10392. <productID id="6A82"
  10393. />
  10394. <productGroupable type="0"
  10395. />
  10396. </product>
  10397. <product id="iCon"
  10398. name="iCon"
  10399. series="50"
  10400. latestVersion="1.2"
  10401. show = "0" >
  10402. <productMenu id="protocol"
  10403. type="2" >
  10404. </productMenu>
  10405. <productMenu id="alexa"
  10406. type="0" >
  10407. </productMenu>
  10408. <productMenu id="wa"
  10409. type="0" >
  10410. </productMenu>
  10411. <productMenu id="sip"
  10412. type="1" >
  10413. </productMenu>
  10414. <productMenu id="led"
  10415. type="3" >
  10416. </productMenu>
  10417. <productMenu id="meshIntercom"
  10418. type="20" >
  10419. </productMenu>
  10420. <productMenu id="meshIntercom+"
  10421. type="3"
  10422. url="0" >
  10423. <productMenuType version="1.0.9"
  10424. type="2"
  10425. />
  10426. </productMenu>
  10427. <productMenu id="bluetoothIntercom"
  10428. type="1" >
  10429. </productMenu>
  10430. <productMenu id="phone"
  10431. type="1" >
  10432. </productMenu>
  10433. <productMenu id="music"
  10434. type="1" >
  10435. </productMenu>
  10436. <productMenu id="fmradio"
  10437. type="1" >
  10438. </productMenu>
  10439. <productMenu id="deviceSetting"
  10440. type="1"
  10441. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10442. <productMenuURL version="1.0.9"
  10443. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10444. />
  10445. </productMenu>
  10446. <productMenu id="quickGuide"
  10447. type="1"
  10448. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10449. size="344KB" >
  10450. </productMenu>
  10451. <productMenu id="userGuide"
  10452. type="1"
  10453. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10454. size="3.41MB" >
  10455. </productMenu>
  10456. <productMenu id="volume"
  10457. type="11" >
  10458. </productMenu>
  10459. <productMenu id="battery"
  10460. type="1" >
  10461. </productMenu>
  10462. <productID id="3900"
  10463. />
  10464. <productGroupable type="0"
  10465. />
  10466. </product>
  10467. <product id="ICONHelmLinkSL"
  10468. name="ICON HelmLink SL"
  10469. series="50"
  10470. latestVersion="1.0"
  10471. latestVersionVoicePrompt="1.6"
  10472. show = "-1" >
  10473. <productMenu id="protocol"
  10474. type="2" >
  10475. </productMenu>
  10476. <productMenu id="alexa"
  10477. type="0" >
  10478. </productMenu>
  10479. <productMenu id="ota"
  10480. type="2" >
  10481. <otaPackages>
  10482. <package
  10483. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10484. size="2945812"
  10485. />
  10486. </otaPackages>
  10487. </productMenu>
  10488. <productMenu id="wa"
  10489. type="0" >
  10490. </productMenu>
  10491. <productMenu id="meshIntercom"
  10492. type="30" >
  10493. </productMenu>
  10494. <productMenu id="meshIntercom+"
  10495. type="3"
  10496. url="2" >
  10497. </productMenu>
  10498. <productMenu id="waveIntercom"
  10499. type="1" >
  10500. </productMenu>
  10501. <productMenu id="phone"
  10502. type="1" >
  10503. </productMenu>
  10504. <productMenu id="music"
  10505. type="1" >
  10506. </productMenu>
  10507. <productMenu id="musicSharing"
  10508. type="0" >
  10509. </productMenu>
  10510. <productMenu id="deviceSetting"
  10511. type="1"
  10512. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10513. </productMenu>
  10514. <productMenu id="quickGuide"
  10515. type="0"
  10516. url=""
  10517. size="1.12MB" >
  10518. </productMenu>
  10519. <productMenu id="userGuide"
  10520. type="1"
  10521. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10522. size="2.0MB" >
  10523. </productMenu>
  10524. <productMenu id="volume"
  10525. type="12" >
  10526. </productMenu>
  10527. <productMenu id="battery"
  10528. type="1" >
  10529. </productMenu>
  10530. <productID id="6842"
  10531. />
  10532. <productGroupable type="0"
  10533. />
  10534. </product>
  10535. <product id="HD50S"
  10536. name="H-D Audio 50S"
  10537. series="50"
  10538. latestVersion="1.0.1"
  10539. show = "-1" >
  10540. <productMenu id="protocol"
  10541. type="2" >
  10542. </productMenu>
  10543. <productMenu id="alexa"
  10544. type="0" >
  10545. </productMenu>
  10546. <productMenu id="ota"
  10547. type="0"
  10548. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10549. size="1150234" >
  10550. </productMenu>
  10551. <productMenu id="wa"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="sip"
  10555. type="1" >
  10556. </productMenu>
  10557. <productMenu id="meshIntercom"
  10558. type="20" >
  10559. </productMenu>
  10560. <productMenu id="meshIntercom+"
  10561. type="3"
  10562. url="0" >
  10563. <productMenuType version="1.0.9"
  10564. type="2"
  10565. />
  10566. </productMenu>
  10567. <productMenu id="bluetoothIntercom"
  10568. type="1" >
  10569. </productMenu>
  10570. <productMenu id="phone"
  10571. type="1" >
  10572. </productMenu>
  10573. <productMenu id="music"
  10574. type="1" >
  10575. </productMenu>
  10576. <productMenu id="fmradio"
  10577. type="1" >
  10578. </productMenu>
  10579. <productMenu id="deviceSetting"
  10580. type="1"
  10581. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10582. <productMenuURL version="1.0.9"
  10583. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10584. />
  10585. </productMenu>
  10586. <productMenu id="quickGuide"
  10587. type="1"
  10588. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10589. size="934KB" >
  10590. </productMenu>
  10591. <productMenu id="userGuide"
  10592. type="1"
  10593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10594. size="1.14MB" >
  10595. </productMenu>
  10596. <productMenu id="volume"
  10597. type="11" >
  10598. </productMenu>
  10599. <productMenu id="battery"
  10600. type="1" >
  10601. </productMenu>
  10602. <productID id="3156"
  10603. />
  10604. <productGroupable type="0"
  10605. />
  10606. </product>
  10607. <product id="HD50S"
  10608. name="H-D Audio 50S"
  10609. series="50"
  10610. latestVersion="2.0.2"
  10611. show = "0" >
  10612. <productMenu id="protocol"
  10613. type="2" >
  10614. </productMenu>
  10615. <productMenu id="alexa"
  10616. type="0" >
  10617. </productMenu>
  10618. <productMenu id="ota"
  10619. type="0"
  10620. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10621. size="1150234" >
  10622. </productMenu>
  10623. <productMenu id="wa"
  10624. type="1" >
  10625. </productMenu>
  10626. <productMenu id="sip"
  10627. type="1" >
  10628. </productMenu>
  10629. <productMenu id="meshIntercom"
  10630. type="20" >
  10631. </productMenu>
  10632. <productMenu id="meshIntercom+"
  10633. type="3"
  10634. url="0" >
  10635. <productMenuType version="2.0.9"
  10636. type="2"
  10637. />
  10638. </productMenu>
  10639. <productMenu id="bluetoothIntercom"
  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="fmradio"
  10649. type="1" >
  10650. </productMenu>
  10651. <productMenu id="deviceSetting"
  10652. type="1"
  10653. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10654. <productMenuURL version="2.0.9"
  10655. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10656. />
  10657. </productMenu>
  10658. <productMenu id="quickGuide"
  10659. type="1"
  10660. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10661. size="934KB" >
  10662. </productMenu>
  10663. <productMenu id="userGuide"
  10664. type="1"
  10665. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10666. size="1.14MB" >
  10667. </productMenu>
  10668. <productMenu id="volume"
  10669. type="11" >
  10670. </productMenu>
  10671. <productMenu id="battery"
  10672. type="1" >
  10673. </productMenu>
  10674. <productID id="3213"
  10675. />
  10676. <productGroupable type="0"
  10677. />
  10678. </product>
  10679. <product id="HD50C"
  10680. name="H-D Audio 50C"
  10681. series="50"
  10682. latestVersion="1.0.1"
  10683. show = "0" >
  10684. <productMenu id="protocol"
  10685. type="2" >
  10686. </productMenu>
  10687. <productMenu id="ota"
  10688. type="0" >
  10689. </productMenu>
  10690. <productMenu id="wa"
  10691. type="1" >
  10692. </productMenu>
  10693. <productMenu id="sip"
  10694. type="1" >
  10695. </productMenu>
  10696. <productMenu id="meshIntercom"
  10697. type="20" >
  10698. </productMenu>
  10699. <productMenu id="meshIntercom+"
  10700. type="3"
  10701. url="0" >
  10702. <productMenuType version="1.0.9"
  10703. type="2"
  10704. />
  10705. </productMenu>
  10706. <productMenu id="bluetoothIntercom"
  10707. type="1" >
  10708. </productMenu>
  10709. <productMenu id="phone"
  10710. type="1" >
  10711. </productMenu>
  10712. <productMenu id="music"
  10713. type="1" >
  10714. </productMenu>
  10715. <productMenu id="fmradio"
  10716. type="1" >
  10717. </productMenu>
  10718. <productMenu id="deviceSetting"
  10719. type="1"
  10720. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10721. <productMenuURL version="1.0.9"
  10722. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10723. />
  10724. </productMenu>
  10725. <productMenu id="quickGuide"
  10726. type="1"
  10727. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10728. size="344KB" >
  10729. </productMenu>
  10730. <productMenu id="userGuide"
  10731. type="1"
  10732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10733. size="3.41MB" >
  10734. </productMenu>
  10735. <productMenu id="volume"
  10736. type="11" >
  10737. </productMenu>
  10738. <productMenu id="battery"
  10739. type="1" >
  10740. </productMenu>
  10741. <productID id="3240"
  10742. />
  10743. <productGroupable type="0"
  10744. />
  10745. </product>
  10746. <product id="HD50S"
  10747. name="FURY N04"
  10748. series="Helmet"
  10749. latestVersion="1.0"
  10750. show = "0" >
  10751. <productMenu id="protocol"
  10752. type="2" >
  10753. </productMenu>
  10754. <productMenu id="alexa"
  10755. type="0" >
  10756. </productMenu>
  10757. <productMenu id="ota"
  10758. type="0" >
  10759. </productMenu>
  10760. <productMenu id="wa"
  10761. type="0" >
  10762. </productMenu>
  10763. <productMenu id="meshIntercom"
  10764. type="20" >
  10765. </productMenu>
  10766. <productMenu id="meshIntercom+"
  10767. type="3"
  10768. url="0" >
  10769. <productMenuType version="1.0.9"
  10770. type="2"
  10771. />
  10772. </productMenu>
  10773. <productMenu id="phone"
  10774. type="1" >
  10775. </productMenu>
  10776. <productMenu id="music"
  10777. type="1" >
  10778. </productMenu>
  10779. <productMenu id="fmradio"
  10780. type="1" >
  10781. </productMenu>
  10782. <productMenu id="deviceSetting"
  10783. type="1"
  10784. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10785. <productMenuURL version="1.0.9"
  10786. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10787. />
  10788. </productMenu>
  10789. <productMenu id="quickGuide"
  10790. type="1"
  10791. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10792. size="1.12MB" >
  10793. </productMenu>
  10794. <productMenu id="userGuide"
  10795. type="1"
  10796. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10797. size="2.0MB" >
  10798. </productMenu>
  10799. <productMenu id="volume"
  10800. type="13" >
  10801. </productMenu>
  10802. <productMenu id="battery"
  10803. type="1" >
  10804. </productMenu>
  10805. <productID id="5553"
  10806. />
  10807. <productGroupable type="0"
  10808. />
  10809. </product>
  10810. <product id="XCOM3Pro"
  10811. name="X-COM3 Pro"
  10812. series="50"
  10813. latestVersion="1.1"
  10814. show = "0" >
  10815. <productMenu id="protocol"
  10816. type="2" >
  10817. </productMenu>
  10818. <productMenu id="alexa"
  10819. type="0" >
  10820. </productMenu>
  10821. <productMenu id="ota"
  10822. type="0" >
  10823. </productMenu>
  10824. <productMenu id="wa"
  10825. type="0" >
  10826. </productMenu>
  10827. <productMenu id="sip"
  10828. type="1" >
  10829. </productMenu>
  10830. <productMenu id="meshIntercom"
  10831. type="30" >
  10832. </productMenu>
  10833. <productMenu id="meshIntercom+"
  10834. type="3"
  10835. url="2" >
  10836. <productMenuType version="1.1"
  10837. type="2"
  10838. />
  10839. </productMenu>
  10840. <productMenu id="waveIntercom"
  10841. type="1" >
  10842. <productMenuType version="1.1"
  10843. type="0"
  10844. />
  10845. </productMenu>
  10846. <productMenu id="bluetoothIntercom"
  10847. type="1" >
  10848. </productMenu>
  10849. <productMenu id="phone"
  10850. type="1" >
  10851. </productMenu>
  10852. <productMenu id="music"
  10853. type="1" >
  10854. </productMenu>
  10855. <productMenu id="fmradio"
  10856. type="1" >
  10857. </productMenu>
  10858. <productMenu id="deviceSetting"
  10859. type="1"
  10860. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10861. <productMenuURL version="1.1"
  10862. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10863. />
  10864. </productMenu>
  10865. <productMenu id="quickGuide"
  10866. type="0"
  10867. url=""
  10868. size="344KB" >
  10869. </productMenu>
  10870. <productMenu id="userGuide"
  10871. type="1"
  10872. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10873. size="3.41MB" >
  10874. </productMenu>
  10875. <productMenu id="volume"
  10876. type="11" >
  10877. </productMenu>
  10878. <productMenu id="battery"
  10879. type="1" >
  10880. </productMenu>
  10881. <productID id="321A"
  10882. />
  10883. <productGroupable type="0"
  10884. />
  10885. </product>
  10886. <product id="XCOM3"
  10887. name="X-COM3"
  10888. series="20"
  10889. latestVersion="1.0"
  10890. show = "0" >
  10891. <productMenu id="protocol"
  10892. type="2" >
  10893. </productMenu>
  10894. <productMenu id="sip"
  10895. type="1" >
  10896. </productMenu>
  10897. <productMenu id="bluetoothIntercom"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="phone"
  10901. type="1" >
  10902. </productMenu>
  10903. <productMenu id="music"
  10904. type="1" >
  10905. </productMenu>
  10906. <productMenu id="fmradio"
  10907. type="1" >
  10908. </productMenu>
  10909. <productMenu id="deviceSetting"
  10910. type="1"
  10911. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10912. </productMenu>
  10913. <productMenu id="quickGuide"
  10914. type="0"
  10915. url=""
  10916. size="934KB" >
  10917. </productMenu>
  10918. <productMenu id="userGuide"
  10919. type="1"
  10920. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10921. size="1.14MB" >
  10922. </productMenu>
  10923. <productMenu id="volume"
  10924. type="15" >
  10925. </productMenu>
  10926. <productID id="3410"
  10927. />
  10928. <productGroupable type="0"
  10929. />
  10930. </product>
  10931. <product id="X-COM2"
  10932. name="X-COM2"
  10933. series="20"
  10934. latestVersion="1.0.5"
  10935. show = "0" >
  10936. <productMenu id="protocol"
  10937. type="0">
  10938. </productMenu>
  10939. <productMenu id="sip"
  10940. type="1" >
  10941. </productMenu>
  10942. <productMenu id="bluetoothIntercom"
  10943. type="1" >
  10944. </productMenu>
  10945. <productMenu id="intercomSetting"
  10946. type="1" >
  10947. </productMenu>
  10948. <productMenu id="phone"
  10949. type="2" >
  10950. </productMenu>
  10951. <productMenu id="fmradio"
  10952. type="3" >
  10953. </productMenu>
  10954. <productMenu id="deviceSetting"
  10955. type="1"
  10956. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10957. </productMenu>
  10958. <productMenu id="quickGuide"
  10959. type="1"
  10960. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10961. size="796KB" >
  10962. </productMenu>
  10963. <productMenu id="userGuide"
  10964. type="1"
  10965. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10966. size="1.90MB" >
  10967. </productMenu>
  10968. <productID id="2030"
  10969. />
  10970. <productGroupable type="1"
  10971. />
  10972. </product>
  10973. <product id="AVAABC"
  10974. name="AVA ABC"
  10975. series="SPIDER"
  10976. latestVersion="1.1"
  10977. show = "0" >
  10978. <productMenu id="protocol"
  10979. type="2" >
  10980. </productMenu>
  10981. <productMenu id="alexa"
  10982. type="0" >
  10983. </productMenu>
  10984. <productMenu id="ota"
  10985. type="0" >
  10986. <productMenuType version="1.0"
  10987. type="0"
  10988. />
  10989. <otaPackages>
  10990. <package
  10991. url="https://api.sena.com/support/OTA/"
  10992. size="2945812"
  10993. />
  10994. </otaPackages>
  10995. </productMenu>
  10996. <productMenu id="wa"
  10997. type="0" >
  10998. </productMenu>
  10999. <productMenu id="meshIntercom"
  11000. type="30" >
  11001. <productMenuType version="1.0"
  11002. type="20"
  11003. />
  11004. </productMenu>
  11005. <productMenu id="meshIntercom+"
  11006. type="3"
  11007. url="2" >
  11008. <productMenuType version="1.0"
  11009. type="2"
  11010. />
  11011. <productMenuURL version="1.0"
  11012. url="0"
  11013. />
  11014. </productMenu>
  11015. <productMenu id="waveIntercom"
  11016. type="1" >
  11017. <productMenuType version="1.0"
  11018. type="0"
  11019. />
  11020. </productMenu>
  11021. <productMenu id="phone"
  11022. type="1" >
  11023. </productMenu>
  11024. <productMenu id="music"
  11025. type="1" >
  11026. </productMenu>
  11027. <productMenu id="musicSharing"
  11028. type="0" >
  11029. </productMenu>
  11030. <productMenu id="deviceSetting"
  11031. type="1"
  11032. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11033. <productMenuURL version="1.0"
  11034. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11035. />
  11036. </productMenu>
  11037. <productMenu id="quickGuide"
  11038. type="1"
  11039. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11040. size="1.12MB" >
  11041. </productMenu>
  11042. <productMenu id="userGuide"
  11043. type="1"
  11044. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11045. size="2.0MB" >
  11046. </productMenu>
  11047. <productMenu id="volume"
  11048. type="12" >
  11049. </productMenu>
  11050. <productMenu id="battery"
  11051. type="1" >
  11052. </productMenu>
  11053. <productID id="6808"
  11054. />
  11055. <productGroupable type="0"
  11056. />
  11057. </product>
  11058. <product id="ADVANCEProCOM2"
  11059. name="ADVANCE ProCOM 2"
  11060. series="Helmet"
  11061. latestVersion="0.5"
  11062. latestVersionVoicePrompt="0.3"
  11063. show = "-1" >
  11064. <productMenu id="protocol"
  11065. type="2" >
  11066. </productMenu>
  11067. <productMenu id="ota"
  11068. type="2" >
  11069. <otaLanguages>
  11070. <otaLanguage
  11071. id="0"
  11072. name="English"
  11073. package="0"
  11074. />
  11075. <otaLanguage
  11076. id="0"
  11077. name="French"
  11078. package="1"
  11079. />
  11080. <otaLanguage
  11081. id="0"
  11082. name="Spanish"
  11083. package="2"
  11084. />
  11085. <otaLanguage
  11086. id="0"
  11087. name="Italian"
  11088. package="3"
  11089. />
  11090. <otaLanguage
  11091. id="0"
  11092. name="German"
  11093. package="4"
  11094. />
  11095. <otaLanguage
  11096. id="0"
  11097. name="Dutch"
  11098. package="5"
  11099. />
  11100. <otaLanguage
  11101. id="0"
  11102. name="Russian"
  11103. package="6"
  11104. />
  11105. <otaLanguage
  11106. id="0"
  11107. name="Chinese"
  11108. package="7"
  11109. />
  11110. <otaLanguage
  11111. id="0"
  11112. name="Korean"
  11113. package="8"
  11114. />
  11115. <otaLanguage
  11116. id="0"
  11117. name="Japanese"
  11118. package="9"
  11119. />
  11120. <otaLanguage
  11121. id="0"
  11122. name="Finnish"
  11123. package="10"
  11124. />
  11125. <otaLanguage
  11126. id="0"
  11127. name="Polish"
  11128. package="11"
  11129. />
  11130. </otaLanguages>
  11131. <otaPackages>
  11132. <package
  11133. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11134. size="5183988"
  11135. />
  11136. <package
  11137. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11138. size="5183988"
  11139. />
  11140. <package
  11141. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11142. size="5183988"
  11143. />
  11144. <package
  11145. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11146. size="5183988"
  11147. />
  11148. <package
  11149. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11150. size="5183988"
  11151. />
  11152. <package
  11153. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11154. size="5183988"
  11155. />
  11156. <package
  11157. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11158. size="5183988"
  11159. />
  11160. <package
  11161. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11162. size="5183988"
  11163. />
  11164. <package
  11165. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11166. size="5183988"
  11167. />
  11168. <package
  11169. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11170. size="5183988"
  11171. />
  11172. <package
  11173. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11174. size="5183988"
  11175. />
  11176. <package
  11177. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11178. size="5183988"
  11179. />
  11180. </otaPackages>
  11181. </productMenu>
  11182. <productMenu id="wa"
  11183. type="0" >
  11184. </productMenu>
  11185. <productMenu id="meshIntercom"
  11186. type="30" >
  11187. </productMenu>
  11188. <productMenu id="meshIntercom+"
  11189. type="3"
  11190. url="2" >
  11191. </productMenu>
  11192. <productMenu id="waveIntercom"
  11193. type="1" >
  11194. </productMenu>
  11195. <productMenu id="fmradio"
  11196. type="1" >
  11197. </productMenu>
  11198. <productMenu id="phone"
  11199. type="0" >
  11200. </productMenu>
  11201. <productMenu id="music"
  11202. type="1" >
  11203. </productMenu>
  11204. <productMenu id="musicSharing"
  11205. type="0" >
  11206. </productMenu>
  11207. <productMenu id="deviceSetting"
  11208. type="1"
  11209. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11210. </productMenu>
  11211. <productMenu id="quickGuide"
  11212. type="0"
  11213. url=""
  11214. size="1.12MB" >
  11215. </productMenu>
  11216. <productMenu id="userGuide"
  11217. type="1"
  11218. url=""
  11219. size="2.0MB" >
  11220. </productMenu>
  11221. <productMenu id="videoGuide"
  11222. type="0"
  11223. url=""
  11224. size="3.41MB" >
  11225. </productMenu>
  11226. <productMenu id="connectGuide"
  11227. type="1"
  11228. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11229. size="1.12MB" >
  11230. </productMenu>
  11231. <productMenu id="volume"
  11232. type="16" >
  11233. </productMenu>
  11234. <productMenu id="battery"
  11235. type="1" >
  11236. </productMenu>
  11237. <productID id="6A85"
  11238. />
  11239. <productGroupable type="0"
  11240. />
  11241. </product>
  11242. <product id="TRIUMPH60X"
  11243. name="TRIUMPH 60X"
  11244. series="60"
  11245. latestVersion="1.0"
  11246. latestVersionMesh="0.19"
  11247. latestVersionVoicePrompt="1.7"
  11248. show = "-1" >
  11249. <productMenu id="protocol"
  11250. type="2" >
  11251. </productMenu>
  11252. <productMenu id="ota"
  11253. type="0" >
  11254. <otaLanguages>
  11255. <otaLanguage
  11256. id="0"
  11257. name="English"
  11258. package="0"
  11259. />
  11260. <otaLanguage
  11261. id="0"
  11262. name="French"
  11263. package="1"
  11264. />
  11265. <otaLanguage
  11266. id="0"
  11267. name="Spanish"
  11268. package="2"
  11269. />
  11270. <otaLanguage
  11271. id="0"
  11272. name="Italian"
  11273. package="3"
  11274. />
  11275. <otaLanguage
  11276. id="0"
  11277. name="German"
  11278. package="4"
  11279. />
  11280. <otaLanguage
  11281. id="0"
  11282. name="Dutch"
  11283. package="5"
  11284. />
  11285. <otaLanguage
  11286. id="0"
  11287. name="Russian"
  11288. package="6"
  11289. />
  11290. <otaLanguage
  11291. id="0"
  11292. name="Chinese"
  11293. package="7"
  11294. />
  11295. <otaLanguage
  11296. id="0"
  11297. name="Korean"
  11298. package="8"
  11299. />
  11300. <otaLanguage
  11301. id="0"
  11302. name="Japanese"
  11303. package="9"
  11304. />
  11305. <otaLanguage
  11306. id="0"
  11307. name="Finnish"
  11308. package="10"
  11309. />
  11310. <otaLanguage
  11311. id="0"
  11312. name="Polish"
  11313. package="11"
  11314. />
  11315. </otaLanguages>
  11316. <otaPackages>
  11317. <package
  11318. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11319. size="5183988"
  11320. />
  11321. <package
  11322. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11323. size="5183988"
  11324. />
  11325. <package
  11326. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11327. size="5183988"
  11328. />
  11329. <package
  11330. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11331. size="5183988"
  11332. />
  11333. <package
  11334. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11335. size="5183988"
  11336. />
  11337. <package
  11338. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11339. size="5183988"
  11340. />
  11341. <package
  11342. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11343. size="5183988"
  11344. />
  11345. <package
  11346. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11347. size="5183988"
  11348. />
  11349. <package
  11350. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11351. size="5183988"
  11352. />
  11353. <package
  11354. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11355. size="5183988"
  11356. />
  11357. <package
  11358. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11359. size="5183988"
  11360. />
  11361. <package
  11362. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11363. size="5183988"
  11364. />
  11365. </otaPackages>
  11366. </productMenu>
  11367. <productMenu id="wa"
  11368. type="0" >
  11369. </productMenu>
  11370. <productMenu id="sip"
  11371. type="1" >
  11372. </productMenu>
  11373. <productMenu id="led"
  11374. type="1" >
  11375. </productMenu>
  11376. <productMenu id="illusion"
  11377. type="1" >
  11378. </productMenu>
  11379. <productMenu id="meshIntercom"
  11380. type="30" >
  11381. </productMenu>
  11382. <productMenu id="meshIntercom+"
  11383. type="3"
  11384. url="2" >
  11385. </productMenu>
  11386. <productMenu id="bluetoothIntercom"
  11387. type="1" >
  11388. </productMenu>
  11389. <productMenu id="fmradio"
  11390. type="1"
  11391. url="1" >
  11392. </productMenu>
  11393. <productMenu id="mic"
  11394. type="0" >
  11395. </productMenu>
  11396. <productMenu id="phone"
  11397. type="1" >
  11398. </productMenu>
  11399. <productMenu id="music"
  11400. type="1" >
  11401. </productMenu>
  11402. <productMenu id="musicSharing"
  11403. type="0" >
  11404. </productMenu>
  11405. <productMenu id="deviceSetting"
  11406. type="1"
  11407. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11408. </productMenu>
  11409. <productMenu id="quickGuide"
  11410. type="0"
  11411. url=""
  11412. size="1.12MB" >
  11413. </productMenu>
  11414. <productMenu id="userGuide"
  11415. type="1"
  11416. url=""
  11417. size="2.0MB" >
  11418. </productMenu>
  11419. <productMenu id="videoGuide"
  11420. type="0"
  11421. url=""
  11422. size="3.41MB" >
  11423. </productMenu>
  11424. <productMenu id="keySettings"
  11425. type="1"
  11426. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11427. </productMenu>
  11428. <productMenu id="volume"
  11429. type="13" >
  11430. </productMenu>
  11431. <productMenu id="volume+"
  11432. type="2"
  11433. url="0x6004" >
  11434. </productMenu>
  11435. <productMenu id="battery"
  11436. type="1" >
  11437. </productMenu>
  11438. <productID id="6A1C"
  11439. />
  11440. <productGroupable type="0"
  11441. />
  11442. </product>
  11443. <product id="Triumph_50S"
  11444. name="Triumph 50S"
  11445. series="50"
  11446. latestVersion="1.5"
  11447. show = "0" >
  11448. <productMenu id="protocol"
  11449. type="2" >
  11450. </productMenu>
  11451. <productMenu id="alexa"
  11452. type="0" >
  11453. </productMenu>
  11454. <productMenu id="ota"
  11455. type="0"
  11456. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11457. size="1150234" >
  11458. </productMenu>
  11459. <productMenu id="wa"
  11460. type="1" >
  11461. </productMenu>
  11462. <productMenu id="sip"
  11463. type="1" >
  11464. </productMenu>
  11465. <productMenu id="meshIntercom"
  11466. type="20" >
  11467. </productMenu>
  11468. <productMenu id="bluetoothIntercom"
  11469. type="1" >
  11470. </productMenu>
  11471. <productMenu id="meshIntercom+"
  11472. type="3"
  11473. url="2" >
  11474. <productMenuType version="1.2.9"
  11475. type="2"
  11476. />
  11477. <productMenuURL version="1.2.9"
  11478. url="0"
  11479. />
  11480. </productMenu>
  11481. <productMenu id="waveIntercom"
  11482. type="1" >
  11483. <productMenuType version="1.2.9"
  11484. type="0"
  11485. />
  11486. </productMenu>
  11487. <productMenu id="phone"
  11488. type="1" >
  11489. </productMenu>
  11490. <productMenu id="music"
  11491. type="1" >
  11492. </productMenu>
  11493. <productMenu id="fmradio"
  11494. type="1" >
  11495. </productMenu>
  11496. <productMenu id="deviceSetting"
  11497. type="1"
  11498. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11499. <productMenuURL version="1.2.9"
  11500. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11501. />
  11502. <productMenuURL version="1.0"
  11503. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11504. />
  11505. </productMenu>
  11506. <productMenu id="quickGuide"
  11507. type="1"
  11508. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11509. size="934KB" >
  11510. </productMenu>
  11511. <productMenu id="userGuide"
  11512. type="1"
  11513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11514. size="1.14MB" >
  11515. </productMenu>
  11516. <productMenu id="volume"
  11517. type="11" >
  11518. </productMenu>
  11519. <productMenu id="battery"
  11520. type="1" >
  11521. </productMenu>
  11522. <productID id="3264"
  11523. />
  11524. <productGroupable type="0"
  11525. />
  11526. </product>
  11527. <product id="RE50S"
  11528. name="RE 50S"
  11529. series="50"
  11530. latestVersion="2.7"
  11531. show = "0" >
  11532. <productMenu id="protocol"
  11533. type="2" >
  11534. </productMenu>
  11535. <productMenu id="alexa"
  11536. type="0" >
  11537. </productMenu>
  11538. <productMenu id="ota"
  11539. type="0"
  11540. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11541. size="1150234" >
  11542. </productMenu>
  11543. <productMenu id="wa"
  11544. type="1" >
  11545. </productMenu>
  11546. <productMenu id="sip"
  11547. type="1" >
  11548. </productMenu>
  11549. <productMenu id="meshIntercom"
  11550. type="30" >
  11551. </productMenu>
  11552. <productMenu id="meshIntercom+"
  11553. type="3"
  11554. url="2" >
  11555. <productMenuType version="2.5"
  11556. type="2"
  11557. />
  11558. </productMenu>
  11559. <productMenu id="waveIntercom"
  11560. type="1" >
  11561. <productMenuType version="2.5"
  11562. type="0"
  11563. />
  11564. </productMenu>
  11565. <productMenu id="bluetoothIntercom"
  11566. type="1" >
  11567. </productMenu>
  11568. <productMenu id="phone"
  11569. type="1" >
  11570. </productMenu>
  11571. <productMenu id="music"
  11572. type="1" >
  11573. </productMenu>
  11574. <productMenu id="fmradio"
  11575. type="1" >
  11576. </productMenu>
  11577. <productMenu id="deviceSetting"
  11578. type="1"
  11579. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11580. <productMenuURL version="2.5.9"
  11581. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11582. />
  11583. </productMenu>
  11584. <productMenu id="quickGuide"
  11585. type="1"
  11586. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11587. size="934KB" >
  11588. </productMenu>
  11589. <productMenu id="userGuide"
  11590. type="1"
  11591. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11592. size="1.14MB" >
  11593. </productMenu>
  11594. <productMenu id="videoGuide"
  11595. type="0"
  11596. url=""
  11597. size="3.41MB" >
  11598. </productMenu>
  11599. <productMenu id="volume"
  11600. type="11" >
  11601. </productMenu>
  11602. <productMenu id="battery"
  11603. type="1" >
  11604. </productMenu>
  11605. <productID id="321C"
  11606. />
  11607. <productGroupable type="0"
  11608. />
  11609. </product>
  11610. <product id="BMW_HELMET_II_U1"
  11611. name="BMW HELMET II U1"
  11612. series="50"
  11613. latestVersion="1.0"
  11614. show = "0" >
  11615. <productMenu id="protocol"
  11616. type="2" >
  11617. </productMenu>
  11618. <productMenu id="alexa"
  11619. type="0" >
  11620. </productMenu>
  11621. <productMenu id="sip"
  11622. type="1" >
  11623. </productMenu>
  11624. <productMenu id="meshIntercom"
  11625. type="20" >
  11626. </productMenu>
  11627. <productMenu id="bluetoothIntercom"
  11628. type="1" >
  11629. </productMenu>
  11630. <productMenu id="bluetoothIntercom2"
  11631. type="1" >
  11632. </productMenu>
  11633. <productMenu id="phone"
  11634. type="1" >
  11635. </productMenu>
  11636. <productMenu id="music"
  11637. type="1" >
  11638. </productMenu>
  11639. <productMenu id="fmradio"
  11640. type="1" >
  11641. </productMenu>
  11642. <productMenu id="deviceSetting"
  11643. type="1"
  11644. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11645. </productMenu>
  11646. <productMenu id="quickGuide"
  11647. type="1"
  11648. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11649. size="934KB" >
  11650. </productMenu>
  11651. <productMenu id="userGuide"
  11652. type="1"
  11653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11654. size="1.14MB" >
  11655. </productMenu>
  11656. <productMenu id="volume"
  11657. type="11" >
  11658. </productMenu>
  11659. <productMenu id="battery"
  11660. type="1" >
  11661. </productMenu>
  11662. <productID id="3260"
  11663. />
  11664. <productGroupable type="0"
  11665. />
  11666. </product>
  11667. <product id="OUTRUSHR"
  11668. name="CX935"
  11669. series="Helmet"
  11670. latestVersion="2.1"
  11671. show = "-1" >
  11672. <productMenu id="protocol"
  11673. type="3">
  11674. </productMenu>
  11675. <productMenu id="sip"
  11676. type="1" >
  11677. </productMenu>
  11678. <productMenu id="bluetoothIntercom"
  11679. type="1" >
  11680. </productMenu>
  11681. <productMenu id="phone"
  11682. type="1" >
  11683. </productMenu>
  11684. <productMenu id="fmradio"
  11685. type="0" >
  11686. </productMenu>
  11687. <productMenu id="deviceSetting"
  11688. type="1"
  11689. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11690. </productMenu>
  11691. <productMenu id="userGuide"
  11692. type="1"
  11693. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11694. size="660KB" >
  11695. </productMenu>
  11696. <productID id="5446"
  11697. />
  11698. <productGroupable type="0"
  11699. />
  11700. </product>
  11701. <product id="LSE_01"
  11702. name="LSE-01"
  11703. series="SF"
  11704. latestVersion="1.2.3"
  11705. show = "0" >
  11706. <productMenu id="protocol"
  11707. type="1"
  11708. url="3">
  11709. </productMenu>
  11710. <productMenu id="sip"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="bluetoothIntercom"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="phone"
  11717. type="1" >
  11718. </productMenu>
  11719. <productMenu id="music"
  11720. type="1" >
  11721. </productMenu>
  11722. <productMenu id="fmradio"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="deviceSetting"
  11726. type="1"
  11727. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11728. <productMenuURL version="1.1"
  11729. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11730. />
  11731. <productMenuURL version="1.0"
  11732. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11733. />
  11734. </productMenu>
  11735. <productMenu id="quickGuide"
  11736. type="1"
  11737. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11738. size="607KB" >
  11739. </productMenu>
  11740. <productMenu id="userGuide"
  11741. type="1"
  11742. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11743. size="1.91MB" >
  11744. </productMenu>
  11745. <productMenu id="volume"
  11746. type="4" >
  11747. </productMenu>
  11748. <productID id="5416"
  11749. />
  11750. <productGroupable type="0"
  11751. />
  11752. </product>
  11753. <product id="AGV_ARK"
  11754. name="AGV ARK"
  11755. series="SF"
  11756. latestVersion="1.0.3"
  11757. show = "0" >
  11758. <productMenu id="protocol"
  11759. type="1"
  11760. url="3">
  11761. </productMenu>
  11762. <productMenu id="sip"
  11763. type="1" >
  11764. </productMenu>
  11765. <productMenu id="bluetoothIntercom"
  11766. type="1" >
  11767. </productMenu>
  11768. <productMenu id="phone"
  11769. type="1" >
  11770. </productMenu>
  11771. <productMenu id="music"
  11772. type="1" >
  11773. </productMenu>
  11774. <productMenu id="fmradio"
  11775. type="1" >
  11776. </productMenu>
  11777. <productMenu id="deviceSetting"
  11778. type="1"
  11779. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11780. </productMenu>
  11781. <productMenu id="quickGuide"
  11782. type="1"
  11783. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11784. size="607KB" >
  11785. </productMenu>
  11786. <productMenu id="userGuide"
  11787. type="1"
  11788. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11789. size="1.91MB" >
  11790. </productMenu>
  11791. <productMenu id="volume"
  11792. type="4" >
  11793. </productMenu>
  11794. <productID id="5420"
  11795. />
  11796. <productGroupable type="0"
  11797. />
  11798. </product>
  11799. <product id="KLIM_KRIOS"
  11800. name="KLIM Krios"
  11801. series="10"
  11802. latestVersion="1.1.2"
  11803. show = "0" >
  11804. <productMenu id="protocol"
  11805. type="0">
  11806. </productMenu>
  11807. <productMenu id="sip"
  11808. type="1" >
  11809. </productMenu>
  11810. <productMenu id="bluetoothIntercom"
  11811. type="1" >
  11812. </productMenu>
  11813. <productMenu id="phone"
  11814. type="2" >
  11815. </productMenu>
  11816. <productMenu id="fmradio"
  11817. type="3" >
  11818. </productMenu>
  11819. <productMenu id="deviceSetting"
  11820. type="1"
  11821. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11822. <productMenuURL version="1.0"
  11823. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11824. />
  11825. </productMenu>
  11826. <productMenu id="quickGuide"
  11827. type="1"
  11828. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11829. size="649KB" >
  11830. </productMenu>
  11831. <productMenu id="userGuide"
  11832. type="1"
  11833. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11834. size="1.43MB" >
  11835. </productMenu>
  11836. <productID id="5910"
  11837. />
  11838. <productGroupable type="0"
  11839. />
  11840. </product>
  11841. <product id="POLARIS_SLINGSHOT"
  11842. name="Polaris Slingshot"
  11843. series="10"
  11844. latestVersion="1.1.2"
  11845. show = "0" >
  11846. <productMenu id="protocol"
  11847. type="0">
  11848. </productMenu>
  11849. <productMenu id="sip"
  11850. type="1" >
  11851. </productMenu>
  11852. <productMenu id="bluetoothIntercom"
  11853. type="1" >
  11854. </productMenu>
  11855. <productMenu id="phone"
  11856. type="2" >
  11857. </productMenu>
  11858. <productMenu id="fmradio"
  11859. type="3" >
  11860. </productMenu>
  11861. <productMenu id="deviceSetting"
  11862. type="1"
  11863. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11864. <productMenuURL version="1.0"
  11865. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11866. />
  11867. </productMenu>
  11868. <productMenu id="quickGuide"
  11869. type="1"
  11870. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11871. size="689KB" >
  11872. </productMenu>
  11873. <productMenu id="userGuide"
  11874. type="1"
  11875. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11876. size="1.43MB" >
  11877. </productMenu>
  11878. <productID id="5920"
  11879. />
  11880. <productGroupable type="0"
  11881. />
  11882. </product>
  11883. <product id="DWO6"
  11884. name="SEDICI DWO6-PRO"
  11885. series="10"
  11886. latestVersion="1.0.2"
  11887. show = "0" >
  11888. <productMenu id="protocol"
  11889. type="0">
  11890. </productMenu>
  11891. <productMenu id="sip"
  11892. type="1" >
  11893. </productMenu>
  11894. <productMenu id="bluetoothIntercom"
  11895. type="1" >
  11896. </productMenu>
  11897. <productMenu id="phone"
  11898. type="2" >
  11899. </productMenu>
  11900. <productMenu id="fmradio"
  11901. type="3" >
  11902. </productMenu>
  11903. <productMenu id="deviceSetting"
  11904. type="1"
  11905. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11906. </productMenu>
  11907. <productMenu id="quickGuide"
  11908. type="1"
  11909. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11910. size="529KB" >
  11911. </productMenu>
  11912. <productMenu id="userGuide"
  11913. type="1"
  11914. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11915. size="4.09MB" >
  11916. </productMenu>
  11917. <productID id="6112"
  11918. />
  11919. <productGroupable type="0"
  11920. />
  11921. </product>
  11922. <product id="DWO6A"
  11923. name="SEDICI DWO-6"
  11924. series="10"
  11925. latestVersion="1.0.2"
  11926. show = "0" >
  11927. <productMenu id="protocol"
  11928. type="0">
  11929. </productMenu>
  11930. <productMenu id="sip"
  11931. type="1" >
  11932. </productMenu>
  11933. <productMenu id="bluetoothIntercom"
  11934. type="1" >
  11935. </productMenu>
  11936. <productMenu id="phone"
  11937. type="2" >
  11938. </productMenu>
  11939. <productMenu id="fmradio"
  11940. type="3" >
  11941. </productMenu>
  11942. <productMenu id="deviceSetting"
  11943. type="1"
  11944. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11945. </productMenu>
  11946. <productMenu id="quickGuide"
  11947. type="1"
  11948. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11949. size="522KB" >
  11950. </productMenu>
  11951. <productMenu id="userGuide"
  11952. type="1"
  11953. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11954. size="2.71MB" >
  11955. </productMenu>
  11956. <productID id="6114"
  11957. />
  11958. <productGroupable type="0"
  11959. />
  11960. </product>
  11961. <product id="3SPLUS"
  11962. name="ZILL"
  11963. series="3"
  11964. latestVersion="1.0.4"
  11965. show = "0" >
  11966. <productMenu id="protocol"
  11967. type="0">
  11968. </productMenu>
  11969. <productMenu id="sip"
  11970. type="1" >
  11971. </productMenu>
  11972. <productMenu id="bluetoothIntercom"
  11973. type="1" >
  11974. </productMenu>
  11975. <productMenu id="deviceSetting"
  11976. type="1"
  11977. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11978. </productMenu>
  11979. <productMenu id="quickGuide"
  11980. type="1"
  11981. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11982. size="842KB" >
  11983. </productMenu>
  11984. <productMenu id="userGuide"
  11985. type="1"
  11986. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11987. size="1.02MB" >
  11988. </productMenu>
  11989. <productID id="6335"
  11990. />
  11991. <productGroupable type="0"
  11992. />
  11993. </product>
  11994. <product id="HD50S"
  11995. name="Boom! Audio 30K"
  11996. series="30"
  11997. latestVersion="3.4"
  11998. show = "0" >
  11999. <productMenu id="protocol"
  12000. type="1"
  12001. url="0">
  12002. </productMenu>
  12003. <productMenu id="wa"
  12004. type="0" >
  12005. </productMenu>
  12006. <productMenu id="sip"
  12007. type="1" >
  12008. </productMenu>
  12009. <productMenu id="meshIntercom"
  12010. type="20" >
  12011. <productMenuType version="2.9.9"
  12012. type="10"
  12013. />
  12014. </productMenu>
  12015. <productMenu id="bluetoothIntercom"
  12016. type="1" >
  12017. </productMenu>
  12018. <productMenu id="phone"
  12019. type="1" >
  12020. </productMenu>
  12021. <productMenu id="music"
  12022. type="1" >
  12023. </productMenu>
  12024. <productMenu id="fmradio"
  12025. type="1" >
  12026. </productMenu>
  12027. <productMenu id="deviceSetting"
  12028. type="1"
  12029. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12030. <productMenuURL version="3.2"
  12031. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12032. />
  12033. <productMenuURL version="3.0"
  12034. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12035. />
  12036. <productMenuURL version="2.2"
  12037. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12038. />
  12039. </productMenu>
  12040. <productMenu id="quickGuide"
  12041. type="1"
  12042. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12043. size="1.06MB" >
  12044. </productMenu>
  12045. <productMenu id="userGuide"
  12046. type="1"
  12047. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12048. size="3.15MB" >
  12049. </productMenu>
  12050. <productMenu id="volume"
  12051. type="1" >
  12052. </productMenu>
  12053. <productID id="3112"
  12054. />
  12055. <productGroupable type="0"
  12056. />
  12057. </product>
  12058. <product id="HD50S"
  12059. name="Boom! Audio N02"
  12060. series="30"
  12061. latestVersion="3.1"
  12062. show = "0" >
  12063. <productMenu id="protocol"
  12064. type="1"
  12065. url="0">
  12066. </productMenu>
  12067. <productMenu id="wa"
  12068. type="2" >
  12069. </productMenu>
  12070. <productMenu id="sip"
  12071. type="1" >
  12072. </productMenu>
  12073. <productMenu id="meshIntercom"
  12074. type="20" >
  12075. <productMenuType version="2.9.9"
  12076. type="10"
  12077. />
  12078. </productMenu>
  12079. <productMenu id="bluetoothIntercom"
  12080. type="1" >
  12081. </productMenu>
  12082. <productMenu id="phone"
  12083. type="1" >
  12084. </productMenu>
  12085. <productMenu id="music"
  12086. type="1" >
  12087. </productMenu>
  12088. <productMenu id="fmradio"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="deviceSetting"
  12092. type="1"
  12093. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12094. <productMenuURL version="2.2"
  12095. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12096. />
  12097. </productMenu>
  12098. <productMenu id="quickGuide"
  12099. type="1"
  12100. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12101. size="1.06MB" >
  12102. </productMenu>
  12103. <productMenu id="userGuide"
  12104. type="1"
  12105. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12106. size="3.15MB" >
  12107. </productMenu>
  12108. <productMenu id="volume"
  12109. type="2" >
  12110. </productMenu>
  12111. <productID id="3114"
  12112. />
  12113. <productGroupable type="0"
  12114. />
  12115. </product>
  12116. <product id="HD50S"
  12117. name="Boom Audio 20S"
  12118. series="50"
  12119. latestVersion="2.5.2"
  12120. show = "0" >
  12121. <productMenu id="protocol"
  12122. type="0">
  12123. </productMenu>
  12124. <productMenu id="sip"
  12125. type="1" >
  12126. <productMenuType version="1.0"
  12127. type="0"
  12128. />
  12129. </productMenu>
  12130. <productMenu id="bluetoothIntercom"
  12131. type="1" >
  12132. <productMenuType version="1.0"
  12133. type="0"
  12134. />
  12135. </productMenu>
  12136. <productMenu id="intercomSetting"
  12137. type="1" >
  12138. </productMenu>
  12139. <productMenu id="phone"
  12140. type="2" >
  12141. </productMenu>
  12142. <productMenu id="fmradio"
  12143. type="3" >
  12144. </productMenu>
  12145. <productMenu id="deviceSetting"
  12146. type="1"
  12147. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12148. <productMenuURL version="2.4"
  12149. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12150. />
  12151. <productMenuURL version="1.5"
  12152. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12153. />
  12154. <productMenuURL version="1.4.1"
  12155. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12156. />
  12157. <productMenuURL version="1.1"
  12158. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12159. />
  12160. <productMenuURL version="1.0"
  12161. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12162. />
  12163. </productMenu>
  12164. <productMenu id="quickGuide"
  12165. type="1"
  12166. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12167. size="264KB" >
  12168. </productMenu>
  12169. <productMenu id="userGuide"
  12170. type="1"
  12171. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12172. size="3.09MB" >
  12173. </productMenu>
  12174. <productMenu id="connectGuide"
  12175. type="1"
  12176. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12177. size="1.12MB" >
  12178. </productMenu>
  12179. <productID id="4210"
  12180. />
  12181. <productProductKey key="11"
  12182. />
  12183. <productID id="4230"
  12184. />
  12185. <productProductKey key="11"
  12186. />
  12187. <productGroupable type="1"
  12188. />
  12189. </product>
  12190. <product id="HD50S"
  12191. name="Boom Audio 20S EVO"
  12192. series="50"
  12193. latestVersion="2.5.2"
  12194. show = "0" >
  12195. <productMenu id="protocol"
  12196. type="0">
  12197. </productMenu>
  12198. <productMenu id="sip"
  12199. type="1" >
  12200. <productMenuType version="1.0"
  12201. type="0"
  12202. />
  12203. </productMenu>
  12204. <productMenu id="bluetoothIntercom"
  12205. type="1" >
  12206. <productMenuType version="1.0"
  12207. type="0"
  12208. />
  12209. </productMenu>
  12210. <productMenu id="intercomSetting"
  12211. type="1" >
  12212. </productMenu>
  12213. <productMenu id="phone"
  12214. type="2" >
  12215. </productMenu>
  12216. <productMenu id="fmradio"
  12217. type="3" >
  12218. </productMenu>
  12219. <productMenu id="deviceSetting"
  12220. type="1"
  12221. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12222. <productMenuURL version="2.4"
  12223. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12224. />
  12225. <productMenuURL version="1.5"
  12226. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12227. />
  12228. <productMenuURL version="1.4.1"
  12229. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12230. />
  12231. <productMenuURL version="1.1"
  12232. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12233. />
  12234. <productMenuURL version="1.0"
  12235. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12236. />
  12237. </productMenu>
  12238. <productMenu id="quickGuide"
  12239. type="1"
  12240. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12241. size="321KB" >
  12242. </productMenu>
  12243. <productMenu id="userGuide"
  12244. type="1"
  12245. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12246. size="2.46MB" >
  12247. </productMenu>
  12248. <productID id="4230"
  12249. />
  12250. <productProductKey key="27"
  12251. />
  12252. <productGroupable type="1"
  12253. />
  12254. </product>
  12255. <product id="HD50S"
  12256. name="Boom! Audio 10S"
  12257. series="50"
  12258. latestVersion="1.1.3"
  12259. show = "0" >
  12260. <productMenu id="protocol"
  12261. type="0">
  12262. </productMenu>
  12263. <productMenu id="sip"
  12264. type="1" >
  12265. </productMenu>
  12266. <productMenu id="bluetoothIntercom"
  12267. type="1" >
  12268. </productMenu>
  12269. <productMenu id="phone"
  12270. type="2" >
  12271. </productMenu>
  12272. <productMenu id="fmradio"
  12273. type="3" >
  12274. </productMenu>
  12275. <productMenu id="deviceSetting"
  12276. type="1"
  12277. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12278. </productMenu>
  12279. <productMenu id="quickGuide"
  12280. type="1"
  12281. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12282. size="538KB" >
  12283. </productMenu>
  12284. <productMenu id="userGuide"
  12285. type="1"
  12286. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12287. size="1.55MB" >
  12288. </productMenu>
  12289. <productID id="5532"
  12290. />
  12291. <productGroupable type="0"
  12292. />
  12293. </product>
  12294. <product id="HD50S"
  12295. name="Boom! Audio N01 10R"
  12296. series="50"
  12297. latestVersion="1.1.3"
  12298. show = "0" >
  12299. <productMenu id="protocol"
  12300. type="0">
  12301. </productMenu>
  12302. <productMenu id="sip"
  12303. type="1" >
  12304. </productMenu>
  12305. <productMenu id="bluetoothIntercom"
  12306. type="1" >
  12307. </productMenu>
  12308. <productMenu id="phone"
  12309. type="2" >
  12310. </productMenu>
  12311. <productMenu id="fmradio"
  12312. type="3" >
  12313. </productMenu>
  12314. <productMenu id="deviceSetting"
  12315. type="1"
  12316. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12317. </productMenu>
  12318. <productMenu id="quickGuide"
  12319. type="1"
  12320. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12321. size="766KB" >
  12322. </productMenu>
  12323. <productMenu id="userGuide"
  12324. type="1"
  12325. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12326. size="1.45MB" >
  12327. </productMenu>
  12328. <productID id="5522"
  12329. />
  12330. <productGroupable type="0"
  12331. />
  12332. </product>
  12333. <product id="HD50S"
  12334. name="OUTRUSH-R N03"
  12335. series="50"
  12336. latestVersion="1.2.1"
  12337. show = "-1" >
  12338. <productMenu id="protocol"
  12339. type="0">
  12340. </productMenu>
  12341. <productMenu id="sip"
  12342. type="1" >
  12343. </productMenu>
  12344. <productMenu id="bluetoothIntercom"
  12345. type="1" >
  12346. </productMenu>
  12347. <productMenu id="phone"
  12348. type="2" >
  12349. </productMenu>
  12350. <productMenu id="fmradio"
  12351. type="3" >
  12352. </productMenu>
  12353. <productMenu id="deviceSetting"
  12354. type="1"
  12355. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12356. </productMenu>
  12357. <productMenu id="userGuide"
  12358. type="1"
  12359. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12360. size="660KB" >
  12361. </productMenu>
  12362. <productID id="5434"
  12363. />
  12364. <productGroupable type="0"
  12365. />
  12366. </product>
  12367. <product id="HD50S"
  12368. name="OUTRUSH-R N03"
  12369. series="50"
  12370. latestVersion="2.0"
  12371. show = "0" >
  12372. <productMenu id="protocol"
  12373. type="3" >
  12374. </productMenu>
  12375. <productMenu id="sip"
  12376. type="1" >
  12377. </productMenu>
  12378. <productMenu id="bluetoothIntercom"
  12379. type="1" >
  12380. </productMenu>
  12381. <productMenu id="phone"
  12382. type="1" >
  12383. </productMenu>
  12384. <productMenu id="fmradio"
  12385. type="1" >
  12386. </productMenu>
  12387. <productMenu id="deviceSetting"
  12388. type="1"
  12389. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12390. </productMenu>
  12391. <productMenu id="userGuide"
  12392. type="1"
  12393. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12394. size="1.14MB" >
  12395. </productMenu>
  12396. <productID id="5441"
  12397. />
  12398. <productGroupable type="0"
  12399. />
  12400. </product>
  12401. <product id="5R"
  12402. name="5R"
  12403. series="5"
  12404. latestVersion="1.0.1"
  12405. show = "1" >
  12406. <productMenu id="protocol"
  12407. type="3" >
  12408. </productMenu>
  12409. <productMenu id="sip"
  12410. type="1" >
  12411. </productMenu>
  12412. <productMenu id="bluetoothIntercom"
  12413. type="1" >
  12414. </productMenu>
  12415. <productMenu id="phone"
  12416. type="1" >
  12417. </productMenu>
  12418. <productMenu id="fmradio"
  12419. type="1" >
  12420. </productMenu>
  12421. <productMenu id="deviceSetting"
  12422. type="1"
  12423. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12424. </productMenu>
  12425. <productMenu id="quickGuide"
  12426. type="0"
  12427. url=""
  12428. size="934KB" >
  12429. </productMenu>
  12430. <productMenu id="userGuide"
  12431. type="1"
  12432. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12433. size="1.14MB" >
  12434. </productMenu>
  12435. <productMenu id="connectGuide"
  12436. type="1"
  12437. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12438. size="1.12MB" >
  12439. </productMenu>
  12440. <productID id="5591"
  12441. />
  12442. <productGroupable type="0"
  12443. />
  12444. </product>
  12445. <product id="5R"
  12446. name="5R LITE"
  12447. series="5"
  12448. latestVersion="1.0.1"
  12449. show = "1" >
  12450. <productMenu id="protocol"
  12451. type="3" >
  12452. </productMenu>
  12453. <productMenu id="sip"
  12454. type="1" >
  12455. </productMenu>
  12456. <productMenu id="bluetoothIntercom"
  12457. type="1" >
  12458. </productMenu>
  12459. <productMenu id="phone"
  12460. type="1" >
  12461. </productMenu>
  12462. <productMenu id="fmradio"
  12463. type="1" >
  12464. </productMenu>
  12465. <productMenu id="deviceSetting"
  12466. type="1"
  12467. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12468. </productMenu>
  12469. <productMenu id="quickGuide"
  12470. type="0"
  12471. url=""
  12472. size="934KB" >
  12473. </productMenu>
  12474. <productMenu id="userGuide"
  12475. type="1"
  12476. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12477. size="1.14MB" >
  12478. </productMenu>
  12479. <productMenu id="connectGuide"
  12480. type="1"
  12481. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12482. size="1.12MB" >
  12483. </productMenu>
  12484. <productID id="5592"
  12485. />
  12486. <productGroupable type="0"
  12487. />
  12488. </product>
  12489. <product id="50RLE"
  12490. name="50R LE"
  12491. series="50"
  12492. latestVersion="1.1"
  12493. show = "0" >
  12494. <productMenu id="protocol"
  12495. type="2" >
  12496. </productMenu>
  12497. <productMenu id="alexa"
  12498. type="0" >
  12499. </productMenu>
  12500. <productMenu id="sip"
  12501. type="1" >
  12502. </productMenu>
  12503. <productMenu id="meshIntercom"
  12504. type="30" >
  12505. </productMenu>
  12506. <productMenu id="meshIntercom+"
  12507. type="3"
  12508. url="2" >
  12509. <productMenuType version="1.0.9"
  12510. type="2"
  12511. />
  12512. </productMenu>
  12513. <productMenu id="waveIntercom"
  12514. type="1" >
  12515. <productMenuType version="1.0.9"
  12516. type="0"
  12517. />
  12518. </productMenu>
  12519. <productMenu id="bluetoothIntercom"
  12520. type="1" >
  12521. </productMenu>
  12522. <productMenu id="phone"
  12523. type="1" >
  12524. </productMenu>
  12525. <productMenu id="music"
  12526. type="1" >
  12527. </productMenu>
  12528. <productMenu id="fmradio"
  12529. type="0" >
  12530. </productMenu>
  12531. <productMenu id="deviceSetting"
  12532. type="1"
  12533. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12534. <productMenuURL version="1.0.9"
  12535. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12536. />
  12537. </productMenu>
  12538. <productMenu id="quickGuide"
  12539. type="0"
  12540. url=""
  12541. size="344KB" >
  12542. </productMenu>
  12543. <productMenu id="userGuide"
  12544. type="0"
  12545. url=""
  12546. size="3.41MB" >
  12547. </productMenu>
  12548. <productMenu id="volume"
  12549. type="11" >
  12550. </productMenu>
  12551. <productMenu id="battery"
  12552. type="1" >
  12553. </productMenu>
  12554. <productID id="3223"
  12555. />
  12556. <productGroupable type="0"
  12557. />
  12558. </product>
  12559. <product id="5RLOUIS"
  12560. name="5R LOUIS EDITION"
  12561. series="5"
  12562. latestVersion="1.0"
  12563. show = "-1" >
  12564. <productMenu id="protocol"
  12565. type="3" >
  12566. </productMenu>
  12567. <productMenu id="sip"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="bluetoothIntercom"
  12571. type="1" >
  12572. </productMenu>
  12573. <productMenu id="phone"
  12574. type="1" >
  12575. </productMenu>
  12576. <productMenu id="fmradio"
  12577. type="1" >
  12578. </productMenu>
  12579. <productMenu id="deviceSetting"
  12580. type="1"
  12581. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12582. </productMenu>
  12583. <productMenu id="quickGuide"
  12584. type="0"
  12585. url=""
  12586. size="934KB" >
  12587. </productMenu>
  12588. <productMenu id="userGuide"
  12589. type="0"
  12590. url=""
  12591. size="1.14MB" >
  12592. </productMenu>
  12593. <productID id="5597"
  12594. />
  12595. <productGroupable type="0"
  12596. />
  12597. </product>
  12598. <product id="5S"
  12599. name="Ridekont 5S"
  12600. series="5"
  12601. latestVersion="2.3"
  12602. show = "-1" >
  12603. <productMenu id="protocol"
  12604. type="3" >
  12605. </productMenu>
  12606. <productMenu id="sip"
  12607. type="1" >
  12608. </productMenu>
  12609. <productMenu id="bluetoothIntercom"
  12610. type="1" >
  12611. </productMenu>
  12612. <productMenu id="phone"
  12613. type="1" >
  12614. </productMenu>
  12615. <productMenu id="fmradio"
  12616. type="0" >
  12617. </productMenu>
  12618. <productMenu id="deviceSetting"
  12619. type="1"
  12620. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12621. </productMenu>
  12622. <productMenu id="quickGuide"
  12623. type="0"
  12624. url=""
  12625. size="934KB" >
  12626. </productMenu>
  12627. <productMenu id="userGuide"
  12628. type="1"
  12629. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12630. size="1.14MB" >
  12631. </productMenu>
  12632. <productID id="5589"
  12633. />
  12634. <productGroupable type="0"
  12635. />
  12636. </product>
  12637. <product id="5R"
  12638. name="Ridekont 5R"
  12639. series="5"
  12640. latestVersion="1.0"
  12641. show = "0" >
  12642. <productMenu id="protocol"
  12643. type="3" >
  12644. </productMenu>
  12645. <productMenu id="sip"
  12646. type="1" >
  12647. </productMenu>
  12648. <productMenu id="bluetoothIntercom"
  12649. type="1" >
  12650. </productMenu>
  12651. <productMenu id="phone"
  12652. type="1" >
  12653. </productMenu>
  12654. <productMenu id="fmradio"
  12655. type="1" >
  12656. </productMenu>
  12657. <productMenu id="deviceSetting"
  12658. type="1"
  12659. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12660. </productMenu>
  12661. <productMenu id="quickGuide"
  12662. type="1"
  12663. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12664. size="934KB" >
  12665. </productMenu>
  12666. <productMenu id="userGuide"
  12667. type="1"
  12668. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12669. size="1.14MB" >
  12670. </productMenu>
  12671. <productID id="5593"
  12672. />
  12673. <productGroupable type="0"
  12674. />
  12675. </product>
  12676. <product id="5R"
  12677. name="Ridekont 5R LITE"
  12678. series="5"
  12679. latestVersion="1.0"
  12680. show = "0" >
  12681. <productMenu id="protocol"
  12682. type="3" >
  12683. </productMenu>
  12684. <productMenu id="sip"
  12685. type="1" >
  12686. </productMenu>
  12687. <productMenu id="bluetoothIntercom"
  12688. type="1" >
  12689. </productMenu>
  12690. <productMenu id="phone"
  12691. type="1" >
  12692. </productMenu>
  12693. <productMenu id="fmradio"
  12694. type="1" >
  12695. </productMenu>
  12696. <productMenu id="deviceSetting"
  12697. type="1"
  12698. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12699. </productMenu>
  12700. <productMenu id="quickGuide"
  12701. type="0"
  12702. url=""
  12703. size="934KB" >
  12704. </productMenu>
  12705. <productMenu id="userGuide"
  12706. type="1"
  12707. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12708. size="1.14MB" >
  12709. </productMenu>
  12710. <productID id="5594"
  12711. />
  12712. <productGroupable type="0"
  12713. />
  12714. </product>
  12715. <product id="SA30"
  12716. name="SA30"
  12717. series="SA"
  12718. latestVersion="1.0.3"
  12719. latestVersionVoicePrompt="0.15"
  12720. show = "-1" >
  12721. <productMenu id="protocol"
  12722. type="2" >
  12723. </productMenu>
  12724. <productMenu id="ota"
  12725. type="2" >
  12726. <otaPackages>
  12727. <package
  12728. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12729. size="3144148"
  12730. />
  12731. </otaPackages>
  12732. </productMenu>
  12733. <productMenu id="meshIntercom"
  12734. type="30" >
  12735. </productMenu>
  12736. <productMenu id="meshIntercom+"
  12737. type="3"
  12738. url="2" >
  12739. </productMenu>
  12740. <productMenu id="phone"
  12741. type="1" >
  12742. </productMenu>
  12743. <productMenu id="music"
  12744. type="1" >
  12745. </productMenu>
  12746. <productMenu id="musicSharing"
  12747. type="0" >
  12748. </productMenu>
  12749. <productMenu id="deviceSetting"
  12750. type="1"
  12751. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12752. </productMenu>
  12753. <productMenu id="quickGuide"
  12754. type="0"
  12755. url=""
  12756. size="1.12MB" >
  12757. </productMenu>
  12758. <productMenu id="userGuide"
  12759. type="1"
  12760. url=""
  12761. size="2.0MB" >
  12762. </productMenu>
  12763. <productMenu id="videoGuide"
  12764. type="0"
  12765. url=""
  12766. size="3.41MB" >
  12767. </productMenu>
  12768. <productMenu id="volume"
  12769. type="12" >
  12770. </productMenu>
  12771. <productMenu id="battery"
  12772. type="1" >
  12773. </productMenu>
  12774. <productID id="6852"
  12775. />
  12776. <productGroupable type="0"
  12777. />
  12778. </product>
  12779. <product id="I30"
  12780. name="I30"
  12781. series="I"
  12782. latestVersion="1.0.3"
  12783. latestVersionVoicePrompt="0.2"
  12784. show = "-1" >
  12785. <productMenu id="protocol"
  12786. type="2" >
  12787. </productMenu>
  12788. <productMenu id="ota"
  12789. type="2" >
  12790. <otaPackages>
  12791. <package
  12792. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12793. size="3144148"
  12794. />
  12795. </otaPackages>
  12796. </productMenu>
  12797. <productMenu id="meshIntercom"
  12798. type="30" >
  12799. </productMenu>
  12800. <productMenu id="meshIntercom+"
  12801. type="3"
  12802. url="2" >
  12803. </productMenu>
  12804. <productMenu id="phone"
  12805. type="1" >
  12806. </productMenu>
  12807. <productMenu id="music"
  12808. type="1" >
  12809. </productMenu>
  12810. <productMenu id="musicSharing"
  12811. type="0" >
  12812. </productMenu>
  12813. <productMenu id="deviceSetting"
  12814. type="1"
  12815. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12816. </productMenu>
  12817. <productMenu id="quickGuide"
  12818. type="0"
  12819. url=""
  12820. size="1.12MB" >
  12821. </productMenu>
  12822. <productMenu id="userGuide"
  12823. type="1"
  12824. url=""
  12825. size="2.10MB" >
  12826. </productMenu>
  12827. <productMenu id="videoGuide"
  12828. type="0"
  12829. url=""
  12830. size="3.11MB" >
  12831. </productMenu>
  12832. <productMenu id="volume"
  12833. type="12" >
  12834. </productMenu>
  12835. <productMenu id="battery"
  12836. type="1" >
  12837. </productMenu>
  12838. <productID id="6853"
  12839. />
  12840. <productGroupable type="0"
  12841. />
  12842. </product>
  12843. <product id="LS2C30"
  12844. name="LS2-C30"
  12845. series="C"
  12846. latestVersion="1.0"
  12847. latestVersionVoicePrompt="0.13"
  12848. show = "-1" >
  12849. <productMenu id="protocol"
  12850. type="2" >
  12851. </productMenu>
  12852. <productMenu id="ota"
  12853. type="0" >
  12854. <otaPackages>
  12855. <package
  12856. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12857. size="3144148"
  12858. />
  12859. </otaPackages>
  12860. </productMenu>
  12861. <productMenu id="meshIntercom+"
  12862. type="3"
  12863. url="2" >
  12864. </productMenu>
  12865. <productMenu id="waveIntercom"
  12866. type="1" >
  12867. </productMenu>
  12868. <productMenu id="phone"
  12869. type="1" >
  12870. </productMenu>
  12871. <productMenu id="music"
  12872. type="1" >
  12873. </productMenu>
  12874. <productMenu id="musicSharing"
  12875. type="0" >
  12876. </productMenu>
  12877. <productMenu id="deviceSetting"
  12878. type="1"
  12879. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12880. </productMenu>
  12881. <productMenu id="quickGuide"
  12882. type="0"
  12883. url=""
  12884. size="1.17MB" >
  12885. </productMenu>
  12886. <productMenu id="userGuide"
  12887. type="1"
  12888. url=""
  12889. size="2.0MB" >
  12890. </productMenu>
  12891. <productMenu id="videoGuide"
  12892. type="0"
  12893. url=""
  12894. size="3.41MB" >
  12895. </productMenu>
  12896. <productMenu id="volume"
  12897. type="12" >
  12898. </productMenu>
  12899. <productMenu id="battery"
  12900. type="1" >
  12901. </productMenu>
  12902. <productID id="685E"
  12903. />
  12904. <productGroupable type="0"
  12905. />
  12906. </product>
  12907. <product id="C30EVO"
  12908. name="C30 EVO"
  12909. series="C"
  12910. latestVersion="1.0"
  12911. latestVersionVoicePrompt="0.13"
  12912. show = "-1" >
  12913. <productMenu id="protocol"
  12914. type="2" >
  12915. </productMenu>
  12916. <productMenu id="ota"
  12917. type="0" >
  12918. <otaPackages>
  12919. <package
  12920. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12921. size="3144148"
  12922. />
  12923. </otaPackages>
  12924. </productMenu>
  12925. <productMenu id="meshIntercom+"
  12926. type="3"
  12927. url="2" >
  12928. </productMenu>
  12929. <productMenu id="waveIntercom"
  12930. type="1" >
  12931. </productMenu>
  12932. <productMenu id="phone"
  12933. type="1" >
  12934. </productMenu>
  12935. <productMenu id="music"
  12936. type="1" >
  12937. </productMenu>
  12938. <productMenu id="musicSharing"
  12939. type="0" >
  12940. </productMenu>
  12941. <productMenu id="deviceSetting"
  12942. type="1"
  12943. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12944. </productMenu>
  12945. <productMenu id="quickGuide"
  12946. type="0"
  12947. url=""
  12948. size="1.17MB" >
  12949. </productMenu>
  12950. <productMenu id="userGuide"
  12951. type="1"
  12952. url=""
  12953. size="2.0MB" >
  12954. </productMenu>
  12955. <productMenu id="videoGuide"
  12956. type="0"
  12957. url=""
  12958. size="3.41MB" >
  12959. </productMenu>
  12960. <productMenu id="volume"
  12961. type="12" >
  12962. </productMenu>
  12963. <productMenu id="battery"
  12964. type="1" >
  12965. </productMenu>
  12966. <productID id="685B"
  12967. />
  12968. <productGroupable type="0"
  12969. />
  12970. </product>
  12971. <product id="C30"
  12972. name="SENA C30"
  12973. series="C"
  12974. latestVersion="1.2.4"
  12975. latestVersionVoicePrompt="0.13"
  12976. show = "1" >
  12977. <productMenu id="protocol"
  12978. type="2" >
  12979. </productMenu>
  12980. <productMenu id="alexa"
  12981. type="0" >
  12982. </productMenu>
  12983. <productMenu id="ota"
  12984. type="2" >
  12985. <otaPackages>
  12986. <package
  12987. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  12988. size="3144148"
  12989. />
  12990. </otaPackages>
  12991. </productMenu>
  12992. <productMenu id="wa"
  12993. type="0" >
  12994. </productMenu>
  12995. <productMenu id="meshIntercom"
  12996. type="30" >
  12997. </productMenu>
  12998. <productMenu id="meshIntercom+"
  12999. type="3"
  13000. url="2" >
  13001. <productMenuType version="1.0.9"
  13002. type="2"
  13003. />
  13004. </productMenu>
  13005. <productMenu id="waveIntercom"
  13006. type="1" >
  13007. <productMenuType version="1.1.9"
  13008. type="0"
  13009. />
  13010. </productMenu>
  13011. <productMenu id="phone"
  13012. type="1" >
  13013. </productMenu>
  13014. <productMenu id="music"
  13015. type="1" >
  13016. </productMenu>
  13017. <productMenu id="musicSharing"
  13018. type="0" >
  13019. </productMenu>
  13020. <productMenu id="deviceSetting"
  13021. type="1"
  13022. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13023. <productMenuURL version="1.1.3"
  13024. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13025. />
  13026. <productMenuURL version="1.0.9"
  13027. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13028. />
  13029. </productMenu>
  13030. <productMenu id="quickGuide"
  13031. type="1"
  13032. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13033. size="1.12MB" >
  13034. </productMenu>
  13035. <productMenu id="userGuide"
  13036. type="0"
  13037. url=""
  13038. size="2.0MB" >
  13039. </productMenu>
  13040. <productMenu id="videoGuide"
  13041. type="0"
  13042. url=""
  13043. size="3.41MB" >
  13044. </productMenu>
  13045. <productMenu id="volume"
  13046. type="12" >
  13047. </productMenu>
  13048. <productMenu id="battery"
  13049. type="1" >
  13050. </productMenu>
  13051. <productID id="683A"
  13052. />
  13053. <productGroupable type="0"
  13054. />
  13055. </product>
  13056. <product id="C20"
  13057. name="C20"
  13058. series="C"
  13059. latestVersion="1.0"
  13060. show = "1" >
  13061. <productMenu id="protocol"
  13062. type="3" >
  13063. </productMenu>
  13064. <productMenu id="sip"
  13065. type="1" >
  13066. </productMenu>
  13067. <productMenu id="bluetoothIntercom"
  13068. type="1" >
  13069. </productMenu>
  13070. <productMenu id="phone"
  13071. type="1" >
  13072. </productMenu>
  13073. <productMenu id="deviceSetting"
  13074. type="1"
  13075. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13076. </productMenu>
  13077. <productMenu id="quickGuide"
  13078. type="1"
  13079. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13080. size="934KB" >
  13081. </productMenu>
  13082. <productMenu id="userGuide"
  13083. type="1"
  13084. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13085. size="1.14MB" >
  13086. </productMenu>
  13087. <productID id="3701"
  13088. />
  13089. <productGroupable type="0"
  13090. />
  13091. </product>
  13092. <product id="C10"
  13093. name="C10"
  13094. series="C"
  13095. latestVersion="1.4.4"
  13096. show = "1" >
  13097. <productMenu id="protocol"
  13098. type="3" >
  13099. </productMenu>
  13100. <productMenu id="sip"
  13101. type="1" >
  13102. </productMenu>
  13103. <productMenu id="bluetoothIntercom"
  13104. type="1" >
  13105. </productMenu>
  13106. <productMenu id="phone"
  13107. type="1" >
  13108. </productMenu>
  13109. <productMenu id="fmradio"
  13110. type="0" >
  13111. </productMenu>
  13112. <productMenu id="deviceSetting"
  13113. type="1"
  13114. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13115. </productMenu>
  13116. <productMenu id="userGuide"
  13117. type="1"
  13118. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13119. size="1.14MB" >
  13120. </productMenu>
  13121. <productID id="5595"
  13122. />
  13123. <productGroupable type="0"
  13124. />
  13125. </product>
  13126. <product id="CA1"
  13127. name="CA1"
  13128. series="C"
  13129. latestVersion="0.2"
  13130. show = "-1" >
  13131. <productMenu id="protocol"
  13132. type="2" >
  13133. </productMenu>
  13134. <productMenu id="ota"
  13135. type="2" >
  13136. <otaPackages>
  13137. <package
  13138. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13139. size="3144148"
  13140. />
  13141. </otaPackages>
  13142. </productMenu>
  13143. <productMenu id="phone"
  13144. type="1" >
  13145. </productMenu>
  13146. <productMenu id="music"
  13147. type="1" >
  13148. </productMenu>
  13149. <productMenu id="musicSharing"
  13150. type="0" >
  13151. </productMenu>
  13152. <productMenu id="deviceSetting"
  13153. type="1"
  13154. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13155. </productMenu>
  13156. <productMenu id="quickGuide"
  13157. type="1"
  13158. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13159. size="1.12MB" >
  13160. </productMenu>
  13161. <productMenu id="userGuide"
  13162. type="0"
  13163. url=""
  13164. size="2.0MB" >
  13165. </productMenu>
  13166. <productMenu id="videoGuide"
  13167. type="1"
  13168. url=""
  13169. size="3.41MB" >
  13170. </productMenu>
  13171. <productMenu id="volume"
  13172. type="12" >
  13173. </productMenu>
  13174. <productMenu id="battery"
  13175. type="1" >
  13176. </productMenu>
  13177. <productID id="5F01"
  13178. />
  13179. <productGroupable type="0"
  13180. />
  13181. </product>
  13182. <product id="J30"
  13183. name="J30"
  13184. series="J"
  13185. latestVersion="1.2.4"
  13186. latestVersionVoicePrompt="0.14"
  13187. show = "0" >
  13188. <productMenu id="protocol"
  13189. type="2" >
  13190. </productMenu>
  13191. <productMenu id="alexa"
  13192. type="0" >
  13193. </productMenu>
  13194. <productMenu id="ota"
  13195. type="2" >
  13196. <otaPackages>
  13197. <package
  13198. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13199. size="3144148"
  13200. />
  13201. </otaPackages>
  13202. </productMenu>
  13203. <productMenu id="wa"
  13204. type="0" >
  13205. </productMenu>
  13206. <productMenu id="meshIntercom"
  13207. type="30" >
  13208. </productMenu>
  13209. <productMenu id="meshIntercom+"
  13210. type="3"
  13211. url="2" >
  13212. <productMenuType version="1.0.9"
  13213. type="2"
  13214. />
  13215. </productMenu>
  13216. <productMenu id="waveIntercom"
  13217. type="1" >
  13218. <productMenuType version="1.1.9"
  13219. type="0"
  13220. />
  13221. </productMenu>
  13222. <productMenu id="phone"
  13223. type="1" >
  13224. </productMenu>
  13225. <productMenu id="music"
  13226. type="1" >
  13227. </productMenu>
  13228. <productMenu id="musicSharing"
  13229. type="0" >
  13230. </productMenu>
  13231. <productMenu id="deviceSetting"
  13232. type="1"
  13233. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13234. <productMenuURL version="1.0.9"
  13235. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13236. />
  13237. </productMenu>
  13238. <productMenu id="quickGuide"
  13239. type="0"
  13240. url=""
  13241. size="1.12MB" >
  13242. </productMenu>
  13243. <productMenu id="userGuide"
  13244. type="1"
  13245. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13246. size="2.0MB" >
  13247. </productMenu>
  13248. <productMenu id="videoGuide"
  13249. type="0"
  13250. url=""
  13251. size="3.41MB" >
  13252. </productMenu>
  13253. <productMenu id="volume"
  13254. type="12" >
  13255. </productMenu>
  13256. <productMenu id="battery"
  13257. type="1" >
  13258. </productMenu>
  13259. <productID id="6848"
  13260. />
  13261. <productGroupable type="0"
  13262. />
  13263. </product>
  13264. <product id="J10"
  13265. name="J10"
  13266. series="5"
  13267. latestVersion="1.1.4"
  13268. show = "0" >
  13269. <productMenu id="protocol"
  13270. type="3" >
  13271. </productMenu>
  13272. <productMenu id="sip"
  13273. type="1" >
  13274. </productMenu>
  13275. <productMenu id="bluetoothIntercom"
  13276. type="1" >
  13277. </productMenu>
  13278. <productMenu id="phone"
  13279. type="1" >
  13280. </productMenu>
  13281. <productMenu id="fmradio"
  13282. type="0" >
  13283. </productMenu>
  13284. <productMenu id="deviceSetting"
  13285. type="1"
  13286. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13287. </productMenu>
  13288. <productMenu id="userGuide"
  13289. type="1"
  13290. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13291. size="1.14MB" >
  13292. </productMenu>
  13293. <productID id="5598"
  13294. />
  13295. <productGroupable type="0"
  13296. />
  13297. </product>
  13298. <product id="B20"
  13299. name="B20"
  13300. series="B"
  13301. latestVersion="1.1.4"
  13302. latestVersionVoicePrompt="0.14"
  13303. show = "0" >
  13304. <productMenu id="protocol"
  13305. type="2" >
  13306. </productMenu>
  13307. <productMenu id="alexa"
  13308. type="0" >
  13309. </productMenu>
  13310. <productMenu id="ota"
  13311. type="2" >
  13312. <otaPackages>
  13313. <package
  13314. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13315. size="3144148"
  13316. />
  13317. </otaPackages>
  13318. </productMenu>
  13319. <productMenu id="wa"
  13320. type="0" >
  13321. </productMenu>
  13322. <productMenu id="meshIntercom"
  13323. type="30" >
  13324. </productMenu>
  13325. <productMenu id="phone"
  13326. type="1" >
  13327. </productMenu>
  13328. <productMenu id="music"
  13329. type="1" >
  13330. </productMenu>
  13331. <productMenu id="musicSharing"
  13332. type="0" >
  13333. </productMenu>
  13334. <productMenu id="deviceSetting"
  13335. type="1"
  13336. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13337. <productMenuURL version="1.0.9"
  13338. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13339. />
  13340. </productMenu>
  13341. <productMenu id="quickGuide"
  13342. type="0"
  13343. url=""
  13344. size="1.12MB" >
  13345. </productMenu>
  13346. <productMenu id="userGuide"
  13347. type="1"
  13348. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13349. size="2.0MB" >
  13350. </productMenu>
  13351. <productMenu id="videoGuide"
  13352. type="0"
  13353. url=""
  13354. size="3.41MB" >
  13355. </productMenu>
  13356. <productMenu id="volume"
  13357. type="12" >
  13358. </productMenu>
  13359. <productMenu id="battery"
  13360. type="1" >
  13361. </productMenu>
  13362. <productID id="6847"
  13363. />
  13364. <productGroupable type="0"
  13365. />
  13366. </product>
  13367. <product id="B10"
  13368. name="B10"
  13369. series="5"
  13370. latestVersion="1.2.4"
  13371. show = "0" >
  13372. <productMenu id="protocol"
  13373. type="3" >
  13374. </productMenu>
  13375. <productMenu id="sip"
  13376. type="1" >
  13377. </productMenu>
  13378. <productMenu id="bluetoothIntercom"
  13379. type="1" >
  13380. </productMenu>
  13381. <productMenu id="phone"
  13382. type="1" >
  13383. </productMenu>
  13384. <productMenu id="fmradio"
  13385. type="0" >
  13386. </productMenu>
  13387. <productMenu id="deviceSetting"
  13388. type="1"
  13389. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13390. </productMenu>
  13391. <productMenu id="userGuide"
  13392. type="1"
  13393. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13394. size="1.14MB" >
  13395. </productMenu>
  13396. <productID id="5596"
  13397. />
  13398. <productGroupable type="0"
  13399. />
  13400. </product>
  13401. <product id="E30"
  13402. name="E30"
  13403. series="E"
  13404. latestVersion="1.1.4"
  13405. latestVersionVoicePrompt="0.14"
  13406. show = "0" >
  13407. <productMenu id="protocol"
  13408. type="2" >
  13409. </productMenu>
  13410. <productMenu id="alexa"
  13411. type="0" >
  13412. </productMenu>
  13413. <productMenu id="ota"
  13414. type="2" >
  13415. <otaPackages>
  13416. <package
  13417. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13418. size="3144148"
  13419. />
  13420. </otaPackages>
  13421. </productMenu>
  13422. <productMenu id="wa"
  13423. type="0" >
  13424. </productMenu>
  13425. <productMenu id="meshIntercom"
  13426. type="30" >
  13427. </productMenu>
  13428. <productMenu id="meshIntercom+"
  13429. type="3"
  13430. url="2" >
  13431. </productMenu>
  13432. <productMenu id="waveIntercom"
  13433. type="1" >
  13434. <productMenuType version="1.0.9"
  13435. type="0"
  13436. />
  13437. </productMenu>
  13438. <productMenu id="phone"
  13439. type="1" >
  13440. </productMenu>
  13441. <productMenu id="music"
  13442. type="1" >
  13443. </productMenu>
  13444. <productMenu id="musicSharing"
  13445. type="0" >
  13446. </productMenu>
  13447. <productMenu id="deviceSetting"
  13448. type="1"
  13449. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13450. </productMenu>
  13451. <productMenu id="quickGuide"
  13452. type="0"
  13453. url=""
  13454. size="1.12MB" >
  13455. </productMenu>
  13456. <productMenu id="userGuide"
  13457. type="1"
  13458. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13459. size="2.0MB" >
  13460. </productMenu>
  13461. <productMenu id="videoGuide"
  13462. type="0"
  13463. url=""
  13464. size="3.41MB" >
  13465. </productMenu>
  13466. <productMenu id="volume"
  13467. type="12" >
  13468. </productMenu>
  13469. <productMenu id="battery"
  13470. type="1" >
  13471. </productMenu>
  13472. <productID id="6846"
  13473. />
  13474. <productGroupable type="0"
  13475. />
  13476. </product>
  13477. <product id="ACSRAM"
  13478. name="ACS-RAM"
  13479. series="ACS"
  13480. latestVersion="1.0.5"
  13481. show = "1" >
  13482. <productMenu id="protocol"
  13483. type="3" >
  13484. </productMenu>
  13485. <productMenu id="sip"
  13486. type="1" >
  13487. </productMenu>
  13488. <productMenu id="bluetoothIntercom"
  13489. type="1" >
  13490. </productMenu>
  13491. <productMenu id="deviceSetting"
  13492. type="1"
  13493. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13494. <productMenuURL version="1.0.9"
  13495. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13496. />
  13497. </productMenu>
  13498. <productMenu id="quickGuide"
  13499. type="1"
  13500. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13501. size="344KB" >
  13502. </productMenu>
  13503. <productMenu id="userGuide"
  13504. type="1"
  13505. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13506. size="1.14MB" >
  13507. </productMenu>
  13508. <productMenu id="connectGuide"
  13509. type="1"
  13510. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13511. size="1.12MB" >
  13512. </productMenu>
  13513. <productID id="3400"
  13514. />
  13515. <productGroupable type="0"
  13516. />
  13517. </product>
  13518. <product id="ACS10"
  13519. name="ACS10"
  13520. series="ACS"
  13521. latestVersion="1.0.2"
  13522. show = "1" >
  13523. <productMenu id="protocol"
  13524. type="0">
  13525. </productMenu>
  13526. <productMenu id="sip"
  13527. type="1" >
  13528. </productMenu>
  13529. <productMenu id="bluetoothIntercom"
  13530. type="1" >
  13531. </productMenu>
  13532. <productMenu id="phone"
  13533. type="2" >
  13534. </productMenu>
  13535. <productMenu id="deviceSetting"
  13536. type="1"
  13537. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13538. </productMenu>
  13539. <productMenu id="quickGuide"
  13540. type="1"
  13541. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13542. size="970KB" >
  13543. </productMenu>
  13544. <productMenu id="userGuide"
  13545. type="1"
  13546. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13547. size="1.26MB" >
  13548. </productMenu>
  13549. <productMenu id="connectGuide"
  13550. type="1"
  13551. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13552. size="1.12MB" >
  13553. </productMenu>
  13554. <productID id="3300"
  13555. />
  13556. <productGroupable type="0"
  13557. />
  13558. </product>
  13559. <product id="DWO7ProMesh"
  13560. name="DWO 7 Pro Mesh"
  13561. series="50"
  13562. latestVersion="1.1"
  13563. latestVersionVoicePrompt="0.9"
  13564. show = "0" >
  13565. <productMenu id="protocol"
  13566. type="2" >
  13567. </productMenu>
  13568. <productMenu id="alexa"
  13569. type="0" >
  13570. </productMenu>
  13571. <productMenu id="ota"
  13572. type="2" >
  13573. <otaPackages>
  13574. <package
  13575. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13576. size="2945812"
  13577. />
  13578. </otaPackages>
  13579. </productMenu>
  13580. <productMenu id="wa"
  13581. type="0" >
  13582. </productMenu>
  13583. <productMenu id="meshIntercom"
  13584. type="20" >
  13585. </productMenu>
  13586. <productMenu id="meshIntercom+"
  13587. type="3"
  13588. url="2" >
  13589. <productMenuType version="1.0.9"
  13590. type="2"
  13591. />
  13592. <productMenuURL version="2.1.1"
  13593. url="0"
  13594. />
  13595. </productMenu>
  13596. <productMenu id="waveIntercom"
  13597. type="1" >
  13598. <productMenuType version="1.0.9"
  13599. type="0"
  13600. />
  13601. </productMenu>
  13602. <productMenu id="phone"
  13603. type="1" >
  13604. </productMenu>
  13605. <productMenu id="music"
  13606. type="1" >
  13607. </productMenu>
  13608. <productMenu id="fmradio"
  13609. type="1" >
  13610. </productMenu>
  13611. <productMenu id="musicSharing"
  13612. type="0" >
  13613. </productMenu>
  13614. <productMenu id="deviceSetting"
  13615. type="1"
  13616. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13617. <productMenuURL version="1.0.9"
  13618. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13619. />
  13620. </productMenu>
  13621. <productMenu id="quickGuide"
  13622. type="1"
  13623. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13624. size="1.12MB" >
  13625. </productMenu>
  13626. <productMenu id="userGuide"
  13627. type="1"
  13628. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13629. size="2.0MB" >
  13630. </productMenu>
  13631. <productMenu id="volume"
  13632. type="12" >
  13633. </productMenu>
  13634. <productMenu id="battery"
  13635. type="1" >
  13636. </productMenu>
  13637. <productID id="6806"
  13638. />
  13639. <productGroupable type="0"
  13640. />
  13641. </product>
  13642. <product id="ERA1X"
  13643. name="ERA 1 X"
  13644. series="UCOM"
  13645. latestVersion="0.2.1"
  13646. latestVersionMesh="0.19"
  13647. latestVersionVoicePrompt="1.2"
  13648. show = "-1" >
  13649. <productMenu id="protocol"
  13650. type="2" >
  13651. </productMenu>
  13652. <productMenu id="ota"
  13653. type="2" >
  13654. <otaLanguages>
  13655. <otaLanguage
  13656. id="0"
  13657. name="English"
  13658. package="0"
  13659. />
  13660. <otaLanguage
  13661. id="0"
  13662. name="French"
  13663. package="1"
  13664. />
  13665. <otaLanguage
  13666. id="0"
  13667. name="Spanish"
  13668. package="2"
  13669. />
  13670. <otaLanguage
  13671. id="0"
  13672. name="Italian"
  13673. package="3"
  13674. />
  13675. <otaLanguage
  13676. id="0"
  13677. name="German"
  13678. package="4"
  13679. />
  13680. <otaLanguage
  13681. id="0"
  13682. name="Dutch"
  13683. package="5"
  13684. />
  13685. <otaLanguage
  13686. id="0"
  13687. name="Russian"
  13688. package="6"
  13689. />
  13690. <otaLanguage
  13691. id="0"
  13692. name="Chinese"
  13693. package="7"
  13694. />
  13695. <otaLanguage
  13696. id="0"
  13697. name="Korean"
  13698. package="8"
  13699. />
  13700. <otaLanguage
  13701. id="0"
  13702. name="Japanese"
  13703. package="9"
  13704. />
  13705. <otaLanguage
  13706. id="0"
  13707. name="Finnish"
  13708. package="10"
  13709. />
  13710. <otaLanguage
  13711. id="0"
  13712. name="Polish"
  13713. package="11"
  13714. />
  13715. <otaLanguage
  13716. id="0"
  13717. name="Czech"
  13718. package="12"
  13719. />
  13720. <otaLanguage
  13721. id="0"
  13722. name="Danish"
  13723. package="13"
  13724. />
  13725. <otaLanguage
  13726. id="0"
  13727. name="Norwegian"
  13728. package="14"
  13729. />
  13730. <otaLanguage
  13731. id="0"
  13732. name="Swedish"
  13733. package="15"
  13734. />
  13735. <otaLanguage
  13736. id="0"
  13737. name="Turkish"
  13738. package="16"
  13739. />
  13740. <otaLanguage
  13741. id="0"
  13742. name="Hungarian"
  13743. package="17"
  13744. />
  13745. <otaLanguage
  13746. id="0"
  13747. name="Portuguese"
  13748. package="18"
  13749. />
  13750. <otaLanguage
  13751. id="0"
  13752. name="Hebrew"
  13753. package="19"
  13754. />
  13755. <otaLanguage
  13756. id="0"
  13757. name="Greek"
  13758. package="20"
  13759. />
  13760. </otaLanguages>
  13761. <otaPackages>
  13762. <package
  13763. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13764. size="5183988"
  13765. />
  13766. <package
  13767. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13768. size="5183988"
  13769. />
  13770. <package
  13771. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13772. size="5183988"
  13773. />
  13774. <package
  13775. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13776. size="5183988"
  13777. />
  13778. <package
  13779. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13780. size="5183988"
  13781. />
  13782. <package
  13783. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13784. size="5183988"
  13785. />
  13786. <package
  13787. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13788. size="5183988"
  13789. />
  13790. <package
  13791. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13792. size="5183988"
  13793. />
  13794. <package
  13795. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13796. size="5183988"
  13797. />
  13798. <package
  13799. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13800. size="5183988"
  13801. />
  13802. <package
  13803. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13804. size="5183988"
  13805. />
  13806. <package
  13807. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13808. size="5183988"
  13809. />
  13810. <package
  13811. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13812. size="5183988"
  13813. />
  13814. <package
  13815. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13816. size="5183988"
  13817. />
  13818. <package
  13819. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13820. size="5183988"
  13821. />
  13822. <package
  13823. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13824. size="5183988"
  13825. />
  13826. <package
  13827. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13828. size="5183988"
  13829. />
  13830. <package
  13831. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13832. size="5183988"
  13833. />
  13834. <package
  13835. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13836. size="5183988"
  13837. />
  13838. <package
  13839. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13840. size="5183988"
  13841. />
  13842. <package
  13843. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13844. size="5183988"
  13845. />
  13846. </otaPackages>
  13847. </productMenu>
  13848. <productMenu id="wa"
  13849. type="0" >
  13850. </productMenu>
  13851. <productMenu id="sip"
  13852. type="1" >
  13853. </productMenu>
  13854. <productMenu id="led"
  13855. type="0" >
  13856. </productMenu>
  13857. <productMenu id="illusion"
  13858. type="1" >
  13859. </productMenu>
  13860. <productMenu id="meshIntercom"
  13861. type="30" >
  13862. </productMenu>
  13863. <productMenu id="meshIntercom+"
  13864. type="3"
  13865. url="2" >
  13866. </productMenu>
  13867. <productMenu id="waveIntercom"
  13868. type="0" >
  13869. </productMenu>
  13870. <productMenu id="bluetoothIntercom"
  13871. type="1" >
  13872. </productMenu>
  13873. <productMenu id="bluetoothIntercomGrouping"
  13874. type="0" >
  13875. </productMenu>
  13876. <productMenu id="fmradio"
  13877. type="1"
  13878. url="1" >
  13879. </productMenu>
  13880. <productMenu id="phone"
  13881. type="1" >
  13882. </productMenu>
  13883. <productMenu id="music"
  13884. type="1" >
  13885. </productMenu>
  13886. <productMenu id="musicSharing"
  13887. type="0" >
  13888. </productMenu>
  13889. <productMenu id="deviceSetting"
  13890. type="1"
  13891. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13892. </productMenu>
  13893. <productMenu id="quickGuide"
  13894. type="0"
  13895. url=""
  13896. size="1.12MB" >
  13897. </productMenu>
  13898. <productMenu id="userGuide"
  13899. type="1"
  13900. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13901. size="2.0MB" >
  13902. </productMenu>
  13903. <productMenu id="videoGuide"
  13904. type="0"
  13905. url=""
  13906. size="3.41MB" >
  13907. </productMenu>
  13908. <productMenu id="volume"
  13909. type="16" >
  13910. </productMenu>
  13911. <productMenu id="soundMode"
  13912. type="1" >
  13913. </productMenu>
  13914. <productMenu id="battery"
  13915. type="1" >
  13916. </productMenu>
  13917. <productID id="6A83"
  13918. />
  13919. <productGroupable type="0"
  13920. />
  13921. </product>
  13922. <product id="MeshStation"
  13923. name="Mesh Station"
  13924. series="50"
  13925. latestVersion="0.9"
  13926. show = "-1" >
  13927. <productMenu id="protocol"
  13928. type="2" >
  13929. </productMenu>
  13930. <productMenu id="meshIntercom"
  13931. type="20"
  13932. url="99" >
  13933. </productMenu>
  13934. <productID id="3161"
  13935. />
  13936. <productGroupable type="0"
  13937. />
  13938. </product>
  13939. </products>
  13940. </sna>