snm.xml 473 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260089" 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="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="C"
  109. name="C Series"
  110. show="1"
  111. />
  112. <!--
  113. <series id="smh"
  114. name="SMH"
  115. />
  116. <series id="cavalry"
  117. name="CAVALRY"
  118. show="0"
  119. />
  120. -->
  121. </serieses>
  122. <products>
  123. <product id="60SPRO"
  124. name="60S PRO"
  125. series="60"
  126. latestVersion="0.1"
  127. latestVersionMesh="0.19"
  128. latestVersionVoicePrompt="1.2"
  129. show = "-1" >
  130. <productMenu id="protocol"
  131. type="2" >
  132. </productMenu>
  133. <productMenu id="ota"
  134. type="0" >
  135. <otaLanguages>
  136. <otaLanguage
  137. id="0"
  138. name="English"
  139. package="0"
  140. />
  141. <otaLanguage
  142. id="0"
  143. name="French"
  144. package="1"
  145. />
  146. <otaLanguage
  147. id="0"
  148. name="Spanish"
  149. package="2"
  150. />
  151. <otaLanguage
  152. id="0"
  153. name="Italian"
  154. package="3"
  155. />
  156. <otaLanguage
  157. id="0"
  158. name="German"
  159. package="4"
  160. />
  161. <otaLanguage
  162. id="0"
  163. name="Dutch"
  164. package="5"
  165. />
  166. <otaLanguage
  167. id="0"
  168. name="Russian"
  169. package="6"
  170. />
  171. <otaLanguage
  172. id="0"
  173. name="Chinese"
  174. package="7"
  175. />
  176. <otaLanguage
  177. id="0"
  178. name="Korean"
  179. package="8"
  180. />
  181. <otaLanguage
  182. id="0"
  183. name="Japanese"
  184. package="9"
  185. />
  186. <otaLanguage
  187. id="0"
  188. name="Finnish"
  189. package="10"
  190. />
  191. <otaLanguage
  192. id="0"
  193. name="Polish"
  194. package="11"
  195. />
  196. </otaLanguages>
  197. <otaPackages>
  198. <package
  199. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  200. size="5183988"
  201. />
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  244. size="5183988"
  245. />
  246. </otaPackages>
  247. </productMenu>
  248. <productMenu id="sip"
  249. type="1" >
  250. </productMenu>
  251. <productMenu id="illusion"
  252. type="1" >
  253. </productMenu>
  254. <productMenu id="meshIntercom"
  255. type="30" >
  256. </productMenu>
  257. <productMenu id="meshIntercom+"
  258. type="3"
  259. url="2" >
  260. </productMenu>
  261. <productMenu id="waveIntercom"
  262. type="1" >
  263. </productMenu>
  264. <productMenu id="bluetoothIntercom"
  265. type="1"
  266. url="2" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercomGrouping"
  269. type="0" >
  270. </productMenu>
  271. <productMenu id="fmradio"
  272. type="1"
  273. url="1" >
  274. </productMenu>
  275. <productMenu id="phone"
  276. type="1" >
  277. </productMenu>
  278. <productMenu id="music"
  279. type="1" >
  280. </productMenu>
  281. <productMenu id="musicSharing"
  282. type="0" >
  283. </productMenu>
  284. <productMenu id="deviceSetting"
  285. type="1"
  286. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  287. </productMenu>
  288. <productMenu id="quickGuide"
  289. type="0"
  290. url=""
  291. size="1.12MB" >
  292. </productMenu>
  293. <productMenu id="userGuide"
  294. type="1"
  295. url=""
  296. size="2.0MB" >
  297. </productMenu>
  298. <productMenu id="videoGuide"
  299. type="0"
  300. url=""
  301. size="3.41MB" >
  302. </productMenu>
  303. <productMenu id="connectGuide"
  304. type="0"
  305. url=""
  306. size="1.12MB" >
  307. </productMenu>
  308. <productMenu id="volume"
  309. type="16" >
  310. </productMenu>
  311. <productMenu id="soundMode"
  312. type="1" >
  313. </productMenu>
  314. <productMenu id="battery"
  315. type="1" >
  316. </productMenu>
  317. <productID id="6A1A"
  318. />
  319. <productGroupable type="0"
  320. />
  321. </product>
  322. <product id="60SEVO"
  323. name="60S EVO"
  324. series="60"
  325. latestVersion="1.0.2"
  326. latestVersionMesh="0.19"
  327. latestVersionVoicePrompt="1.7"
  328. show = "-1" >
  329. <productMenu id="protocol"
  330. type="2" >
  331. </productMenu>
  332. <productMenu id="warranty"
  333. type="1" >
  334. </productMenu>
  335. <productMenu id="serialNumber"
  336. type="1" >
  337. </productMenu>
  338. <productMenu id="ota"
  339. type="2" >
  340. <otaLanguages>
  341. <otaLanguage
  342. id="0"
  343. name="English"
  344. package="0"
  345. />
  346. <otaLanguage
  347. id="0"
  348. name="French"
  349. package="1"
  350. />
  351. <otaLanguage
  352. id="0"
  353. name="Spanish"
  354. package="2"
  355. />
  356. <otaLanguage
  357. id="0"
  358. name="Italian"
  359. package="3"
  360. />
  361. <otaLanguage
  362. id="0"
  363. name="German"
  364. package="4"
  365. />
  366. <otaLanguage
  367. id="0"
  368. name="Dutch"
  369. package="5"
  370. />
  371. <otaLanguage
  372. id="0"
  373. name="Russian"
  374. package="6"
  375. />
  376. <otaLanguage
  377. id="0"
  378. name="Chinese"
  379. package="7"
  380. />
  381. <otaLanguage
  382. id="0"
  383. name="Korean"
  384. package="8"
  385. />
  386. <otaLanguage
  387. id="0"
  388. name="Japanese"
  389. package="9"
  390. />
  391. <otaLanguage
  392. id="0"
  393. name="Finnish"
  394. package="10"
  395. />
  396. <otaLanguage
  397. id="0"
  398. name="Polish"
  399. package="11"
  400. />
  401. </otaLanguages>
  402. <otaPackages>
  403. <package
  404. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  449. size="5183988"
  450. />
  451. </otaPackages>
  452. </productMenu>
  453. <productMenu id="sip"
  454. type="1" >
  455. </productMenu>
  456. <productMenu id="illusion"
  457. type="1" >
  458. </productMenu>
  459. <productMenu id="meshIntercom"
  460. type="30" >
  461. </productMenu>
  462. <productMenu id="meshIntercom+"
  463. type="3"
  464. url="2" >
  465. </productMenu>
  466. <productMenu id="waveIntercom"
  467. type="1" >
  468. </productMenu>
  469. <productMenu id="bluetoothIntercom"
  470. type="1"
  471. url="2" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercomGrouping"
  474. type="0" >
  475. </productMenu>
  476. <productMenu id="fmradio"
  477. type="1"
  478. url="1" >
  479. </productMenu>
  480. <productMenu id="phone"
  481. type="1" >
  482. </productMenu>
  483. <productMenu id="music"
  484. type="1" >
  485. </productMenu>
  486. <productMenu id="musicSharing"
  487. type="0" >
  488. </productMenu>
  489. <productMenu id="deviceSetting"
  490. type="1"
  491. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  492. </productMenu>
  493. <productMenu id="quickGuide"
  494. type="0"
  495. url=""
  496. size="1.12MB" >
  497. </productMenu>
  498. <productMenu id="userGuide"
  499. type="1"
  500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  501. size="2.0MB" >
  502. </productMenu>
  503. <productMenu id="videoGuide"
  504. type="0"
  505. url=""
  506. size="3.41MB" >
  507. </productMenu>
  508. <productMenu id="connectGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="volume"
  514. type="16" >
  515. </productMenu>
  516. <productMenu id="volume+"
  517. type="2"
  518. url="0x6004" >
  519. </productMenu>
  520. <productMenu id="soundMode"
  521. type="1" >
  522. </productMenu>
  523. <productMenu id="appearance"
  524. type="1"
  525. url="1|white,silver,black,glossy_black" >
  526. </productMenu>
  527. <productMenu id="battery"
  528. type="1" >
  529. </productMenu>
  530. <productID id="6A15"
  531. />
  532. <productGroupable type="0"
  533. />
  534. </product>
  535. <product id="60S"
  536. name="60S"
  537. series="60"
  538. latestVersion="1.2.8"
  539. latestVersionMesh="1.2"
  540. latestVersionVoicePrompt="1.5"
  541. show = "1" >
  542. <productMenu id="protocol"
  543. type="2" >
  544. </productMenu>
  545. <productMenu id="ota"
  546. type="2" >
  547. <otaLanguages>
  548. <otaLanguage
  549. id="0"
  550. name="English"
  551. package="0"
  552. />
  553. <otaLanguage
  554. id="0"
  555. name="French"
  556. package="1"
  557. />
  558. <otaLanguage
  559. id="0"
  560. name="Spanish"
  561. package="2"
  562. />
  563. <otaLanguage
  564. id="0"
  565. name="Italian"
  566. package="3"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="German"
  571. package="4"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Dutch"
  576. package="5"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Russian"
  581. package="6"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="Chinese"
  586. package="7"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Korean"
  591. package="8"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Japanese"
  596. package="9"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Finnish"
  601. package="10"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Polish"
  606. package="11"
  607. />
  608. </otaLanguages>
  609. <otaPackages>
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  656. size="5183988"
  657. />
  658. </otaPackages>
  659. </productMenu>
  660. <productMenu id="sip"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="illusion"
  664. type="1" >
  665. </productMenu>
  666. <productMenu id="meshIntercom"
  667. type="30" >
  668. </productMenu>
  669. <productMenu id="meshIntercom+"
  670. type="3"
  671. url="2" >
  672. </productMenu>
  673. <productMenu id="waveIntercom"
  674. type="1" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercom"
  677. type="1"
  678. url="2" >
  679. </productMenu>
  680. <productMenu id="bluetoothIntercomGrouping"
  681. type="0" >
  682. </productMenu>
  683. <productMenu id="fmradio"
  684. type="1"
  685. url="1" >
  686. </productMenu>
  687. <productMenu id="phone"
  688. type="1" >
  689. </productMenu>
  690. <productMenu id="music"
  691. type="1" >
  692. </productMenu>
  693. <productMenu id="musicSharing"
  694. type="0" >
  695. </productMenu>
  696. <productMenu id="deviceSetting"
  697. type="1"
  698. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  699. <productMenuURL version="1.2.6"
  700. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  701. />
  702. <productMenuURL version="1.2.3"
  703. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  704. />
  705. </productMenu>
  706. <productMenu id="quickGuide"
  707. type="0"
  708. url=""
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="userGuide"
  712. type="1"
  713. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  714. size="2.0MB" >
  715. </productMenu>
  716. <productMenu id="videoGuide"
  717. type="0"
  718. url=""
  719. size="3.41MB" >
  720. </productMenu>
  721. <productMenu id="connectGuide"
  722. type="1"
  723. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  724. size="1.12MB" >
  725. </productMenu>
  726. <productMenu id="volume"
  727. type="16" >
  728. </productMenu>
  729. <productMenu id="volume+"
  730. type="2"
  731. url="0x6004" >
  732. <productMenuURL version="1.2.3"
  733. url="0x6004"
  734. />
  735. </productMenu>
  736. <productMenu id="soundMode"
  737. type="0" >
  738. </productMenu>
  739. <productMenu id="appearance"
  740. type="1"
  741. url="2|white,silver,chrome,black" >
  742. </productMenu>
  743. <productMenu id="battery"
  744. type="1" >
  745. </productMenu>
  746. <productID id="6A0D"
  747. />
  748. <productGroupable type="0"
  749. />
  750. </product>
  751. <product id="60S"
  752. name="60S"
  753. series="60"
  754. latestVersion="1.2.8"
  755. latestVersionMesh="1.2"
  756. latestVersionVoicePrompt="1.5"
  757. show = "-1" >
  758. <productMenu id="protocol"
  759. type="2" >
  760. </productMenu>
  761. <productMenu id="ota"
  762. type="2" >
  763. <otaLanguages>
  764. <otaLanguage
  765. id="0"
  766. name="English"
  767. package="0"
  768. />
  769. <otaLanguage
  770. id="0"
  771. name="French"
  772. package="1"
  773. />
  774. <otaLanguage
  775. id="0"
  776. name="Spanish"
  777. package="2"
  778. />
  779. <otaLanguage
  780. id="0"
  781. name="Italian"
  782. package="3"
  783. />
  784. <otaLanguage
  785. id="0"
  786. name="German"
  787. package="4"
  788. />
  789. <otaLanguage
  790. id="0"
  791. name="Dutch"
  792. package="5"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Russian"
  797. package="6"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Chinese"
  802. package="7"
  803. />
  804. <otaLanguage
  805. id="0"
  806. name="Korean"
  807. package="8"
  808. />
  809. <otaLanguage
  810. id="0"
  811. name="Japanese"
  812. package="9"
  813. />
  814. <otaLanguage
  815. id="0"
  816. name="Finnish"
  817. package="10"
  818. />
  819. <otaLanguage
  820. id="0"
  821. name="Polish"
  822. package="11"
  823. />
  824. </otaLanguages>
  825. <otaPackages>
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  872. size="5183988"
  873. />
  874. </otaPackages>
  875. </productMenu>
  876. <productMenu id="wa"
  877. type="0" >
  878. </productMenu>
  879. <productMenu id="sip"
  880. type="1" >
  881. </productMenu>
  882. <productMenu id="led"
  883. type="0" >
  884. </productMenu>
  885. <productMenu id="illusion"
  886. type="1" >
  887. </productMenu>
  888. <productMenu id="meshIntercom"
  889. type="30" >
  890. </productMenu>
  891. <productMenu id="meshIntercom+"
  892. type="3"
  893. url="2" >
  894. <productMenuURL version="1.0.2"
  895. url="10"
  896. />
  897. </productMenu>
  898. <productMenu id="waveIntercom"
  899. type="1" >
  900. <productMenuType version="1.0.9"
  901. type="0"
  902. />
  903. </productMenu>
  904. <productMenu id="bluetoothIntercom"
  905. type="1"
  906. url="2" >
  907. </productMenu>
  908. <productMenu id="bluetoothIntercomGrouping"
  909. type="0" >
  910. </productMenu>
  911. <productMenu id="fmradio"
  912. type="1"
  913. url="1" >
  914. </productMenu>
  915. <productMenu id="phone"
  916. type="1" >
  917. </productMenu>
  918. <productMenu id="music"
  919. type="1" >
  920. </productMenu>
  921. <productMenu id="musicSharing"
  922. type="0" >
  923. </productMenu>
  924. <productMenu id="deviceSetting"
  925. type="1"
  926. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  927. <productMenuURL version="1.2.6"
  928. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  929. />
  930. <productMenuURL version="1.2.3"
  931. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  932. />
  933. <productMenuURL version="1.0.2"
  934. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  935. />
  936. <productMenuURL version="1.0"
  937. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  938. />
  939. <productMenuURL version="0.9.11"
  940. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  941. />
  942. </productMenu>
  943. <productMenu id="quickGuide"
  944. type="0"
  945. url=""
  946. size="1.12MB" >
  947. </productMenu>
  948. <productMenu id="userGuide"
  949. type="1"
  950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  951. size="2.0MB" >
  952. </productMenu>
  953. <productMenu id="videoGuide"
  954. type="0"
  955. url=""
  956. size="3.41MB" >
  957. </productMenu>
  958. <productMenu id="connectGuide"
  959. type="1"
  960. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  961. size="1.12MB" >
  962. </productMenu>
  963. <productMenu id="volume"
  964. type="16" >
  965. <productMenuType version="0.9.11"
  966. type="13"
  967. />
  968. </productMenu>
  969. <productMenu id="volume+"
  970. type="2"
  971. url="0x6004" >
  972. <productMenuURL version="1.2.3"
  973. url="0x6004"
  974. />
  975. </productMenu>
  976. <productMenu id="soundMode"
  977. type="0" >
  978. <productMenuType version="0.9.11"
  979. type="0"
  980. />
  981. </productMenu>
  982. <productMenu id="appearance"
  983. type="1"
  984. url="2|white,silver,chrome,black" >
  985. </productMenu>
  986. <productMenu id="battery"
  987. type="1" >
  988. </productMenu>
  989. <productID id="6A02"
  990. />
  991. <productGroupable type="0"
  992. />
  993. </product>
  994. <product id="60X"
  995. name="60X"
  996. series="60"
  997. latestVersion="1.0"
  998. latestVersionMesh="0.19"
  999. latestVersionVoicePrompt="1.7"
  1000. show = "-1" >
  1001. <productMenu id="protocol"
  1002. type="2" >
  1003. </productMenu>
  1004. <productMenu id="ota"
  1005. type="2" >
  1006. <otaLanguages>
  1007. <otaLanguage
  1008. id="0"
  1009. name="English"
  1010. package="0"
  1011. />
  1012. <otaLanguage
  1013. id="0"
  1014. name="French"
  1015. package="1"
  1016. />
  1017. <otaLanguage
  1018. id="0"
  1019. name="Spanish"
  1020. package="2"
  1021. />
  1022. <otaLanguage
  1023. id="0"
  1024. name="Italian"
  1025. package="3"
  1026. />
  1027. <otaLanguage
  1028. id="0"
  1029. name="German"
  1030. package="4"
  1031. />
  1032. <otaLanguage
  1033. id="0"
  1034. name="Dutch"
  1035. package="5"
  1036. />
  1037. <otaLanguage
  1038. id="0"
  1039. name="Russian"
  1040. package="6"
  1041. />
  1042. <otaLanguage
  1043. id="0"
  1044. name="Chinese"
  1045. package="7"
  1046. />
  1047. <otaLanguage
  1048. id="0"
  1049. name="Korean"
  1050. package="8"
  1051. />
  1052. <otaLanguage
  1053. id="0"
  1054. name="Japanese"
  1055. package="9"
  1056. />
  1057. <otaLanguage
  1058. id="0"
  1059. name="Finnish"
  1060. package="10"
  1061. />
  1062. <otaLanguage
  1063. id="0"
  1064. name="Polish"
  1065. package="11"
  1066. />
  1067. </otaLanguages>
  1068. <otaPackages>
  1069. <package
  1070. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1099. size="5183988"
  1100. />
  1101. <package
  1102. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1103. size="5183988"
  1104. />
  1105. <package
  1106. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1107. size="5183988"
  1108. />
  1109. <package
  1110. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1111. size="5183988"
  1112. />
  1113. <package
  1114. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1115. size="5183988"
  1116. />
  1117. </otaPackages>
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="0" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="led"
  1126. type="1" >
  1127. </productMenu>
  1128. <productMenu id="illusion"
  1129. type="1" >
  1130. </productMenu>
  1131. <productMenu id="meshIntercom"
  1132. type="30" >
  1133. </productMenu>
  1134. <productMenu id="meshIntercom+"
  1135. type="3"
  1136. url="2" >
  1137. </productMenu>
  1138. <productMenu id="bluetoothIntercom"
  1139. type="1" >
  1140. </productMenu>
  1141. <productMenu id="fmradio"
  1142. type="1"
  1143. url="1" >
  1144. </productMenu>
  1145. <productMenu id="mic"
  1146. type="0" >
  1147. </productMenu>
  1148. <productMenu id="phone"
  1149. type="1" >
  1150. </productMenu>
  1151. <productMenu id="music"
  1152. type="1" >
  1153. </productMenu>
  1154. <productMenu id="musicSharing"
  1155. type="0" >
  1156. </productMenu>
  1157. <productMenu id="deviceSetting"
  1158. type="1"
  1159. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1160. </productMenu>
  1161. <productMenu id="quickGuide"
  1162. type="0"
  1163. url=""
  1164. size="1.12MB" >
  1165. </productMenu>
  1166. <productMenu id="userGuide"
  1167. type="0"
  1168. url=""
  1169. size="2.0MB" >
  1170. </productMenu>
  1171. <productMenu id="videoGuide"
  1172. type="0"
  1173. url=""
  1174. size="3.41MB" >
  1175. </productMenu>
  1176. <productMenu id="keySettings"
  1177. type="1"
  1178. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1179. </productMenu>
  1180. <productMenu id="volume"
  1181. type="13" >
  1182. </productMenu>
  1183. <productMenu id="volume+"
  1184. type="2"
  1185. url="0x6004" >
  1186. </productMenu>
  1187. <productMenu id="appearance"
  1188. type="1"
  1189. url="1|white,silver,black,glossy_black" >
  1190. </productMenu>
  1191. <productMenu id="battery"
  1192. type="1" >
  1193. </productMenu>
  1194. <productID id="6A03"
  1195. />
  1196. <productGroupable type="0"
  1197. />
  1198. </product>
  1199. <product id="R35"
  1200. name="R35"
  1201. series="R"
  1202. latestVersion="1.1"
  1203. latestVersionVoicePrompt="1.5"
  1204. show = "-1" >
  1205. <productMenu id="protocol"
  1206. type="2" >
  1207. </productMenu>
  1208. <productMenu id="ota"
  1209. type="2" >
  1210. <otaLanguages>
  1211. <otaLanguage
  1212. id="0"
  1213. name="English"
  1214. package="0"
  1215. />
  1216. <otaLanguage
  1217. id="0"
  1218. name="Chinese"
  1219. package="1"
  1220. />
  1221. <otaLanguage
  1222. id="0"
  1223. name="Chinese Singapore"
  1224. package="2"
  1225. />
  1226. <otaLanguage
  1227. id="0"
  1228. name="Filipino"
  1229. package="3"
  1230. />
  1231. <otaLanguage
  1232. id="0"
  1233. name="Hebrew"
  1234. package="4"
  1235. />
  1236. <otaLanguage
  1237. id="0"
  1238. name="Hindi"
  1239. package="5"
  1240. />
  1241. <otaLanguage
  1242. id="0"
  1243. name="Indonesian"
  1244. package="6"
  1245. />
  1246. <otaLanguage
  1247. id="0"
  1248. name="Japanese"
  1249. package="7"
  1250. />
  1251. <otaLanguage
  1252. id="0"
  1253. name="Korean"
  1254. package="8"
  1255. />
  1256. <otaLanguage
  1257. id="0"
  1258. name="Malay"
  1259. package="9"
  1260. />
  1261. <otaLanguage
  1262. id="0"
  1263. name="Modern Standard Arabic"
  1264. package="10"
  1265. />
  1266. <otaLanguage
  1267. id="0"
  1268. name="Taiwanese"
  1269. package="11"
  1270. />
  1271. <otaLanguage
  1272. id="0"
  1273. name="Tamil"
  1274. package="12"
  1275. />
  1276. <otaLanguage
  1277. id="0"
  1278. name="Thai"
  1279. package="13"
  1280. />
  1281. <otaLanguage
  1282. id="0"
  1283. name="东北话"
  1284. package="14"
  1285. />
  1286. <otaLanguage
  1287. id="0"
  1288. name="广东话"
  1289. package="15"
  1290. />
  1291. <otaLanguage
  1292. id="0"
  1293. name="江浙沪"
  1294. package="16"
  1295. />
  1296. <otaLanguage
  1297. id="0"
  1298. name="四川话"
  1299. package="17"
  1300. />
  1301. <otaLanguage
  1302. id="0"
  1303. name="陕西话"
  1304. package="18"
  1305. />
  1306. </otaLanguages>
  1307. <otaPackages>
  1308. <package
  1309. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1310. size="5183988"
  1311. />
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1346. size="5183988"
  1347. />
  1348. <package
  1349. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1350. size="5183988"
  1351. />
  1352. <package
  1353. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1354. size="5183988"
  1355. />
  1356. <package
  1357. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1358. size="5183988"
  1359. />
  1360. <package
  1361. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1362. size="5183988"
  1363. />
  1364. <package
  1365. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1366. size="5183988"
  1367. />
  1368. <package
  1369. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1370. size="5183988"
  1371. />
  1372. <package
  1373. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1374. size="5183988"
  1375. />
  1376. <package
  1377. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1378. size="5183988"
  1379. />
  1380. <package
  1381. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1382. size="5183988"
  1383. />
  1384. </otaPackages>
  1385. </productMenu>
  1386. <productMenu id="sip"
  1387. type="1" >
  1388. </productMenu>
  1389. <productMenu id="illusion"
  1390. type="1" >
  1391. </productMenu>
  1392. <productMenu id="meshIntercom"
  1393. type="30" >
  1394. </productMenu>
  1395. <productMenu id="meshIntercom+"
  1396. type="3"
  1397. url="2" >
  1398. </productMenu>
  1399. <productMenu id="waveIntercom"
  1400. type="1" >
  1401. </productMenu>
  1402. <productMenu id="phone"
  1403. type="1" >
  1404. </productMenu>
  1405. <productMenu id="music"
  1406. type="1" >
  1407. </productMenu>
  1408. <productMenu id="musicSharing"
  1409. type="0" >
  1410. </productMenu>
  1411. <productMenu id="deviceSetting"
  1412. type="1"
  1413. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1414. <productMenuURL version="1.0.3"
  1415. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1416. />
  1417. </productMenu>
  1418. <productMenu id="quickGuide"
  1419. type="0"
  1420. url=""
  1421. size="1.12MB" >
  1422. </productMenu>
  1423. <productMenu id="userGuide"
  1424. type="1"
  1425. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1426. size="2.0MB" >
  1427. </productMenu>
  1428. <productMenu id="videoGuide"
  1429. type="0"
  1430. url=""
  1431. size="3.41MB" >
  1432. </productMenu>
  1433. <productMenu id="connectGuide"
  1434. type="0"
  1435. url=""
  1436. size="1.12MB" >
  1437. </productMenu>
  1438. <productMenu id="volume"
  1439. type="16" >
  1440. </productMenu>
  1441. <productMenu id="volume+"
  1442. type="2"
  1443. url="0x6004" >
  1444. </productMenu>
  1445. <productMenu id="soundMode"
  1446. type="0" >
  1447. </productMenu>
  1448. <productMenu id="appearance"
  1449. type="1"
  1450. url="1|white,silver,chrome,black" >
  1451. </productMenu>
  1452. <productMenu id="battery"
  1453. type="1" >
  1454. </productMenu>
  1455. <productID id="6A06"
  1456. />
  1457. <productGroupable type="0"
  1458. />
  1459. </product>
  1460. <product id="COM60X"
  1461. name="BMW MOTORRAD COM 60X"
  1462. series="60"
  1463. latestVersion="1.0"
  1464. latestVersionMesh="0.19"
  1465. latestVersionVoicePrompt="1.7"
  1466. show = "-1" >
  1467. <productMenu id="protocol"
  1468. type="2" >
  1469. </productMenu>
  1470. <productMenu id="ota"
  1471. type="0" >
  1472. <otaLanguages>
  1473. <otaLanguage
  1474. id="0"
  1475. name="English"
  1476. package="0"
  1477. />
  1478. <otaLanguage
  1479. id="0"
  1480. name="French"
  1481. package="1"
  1482. />
  1483. <otaLanguage
  1484. id="0"
  1485. name="Spanish"
  1486. package="2"
  1487. />
  1488. <otaLanguage
  1489. id="0"
  1490. name="Italian"
  1491. package="3"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="German"
  1496. package="4"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Dutch"
  1501. package="5"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Russian"
  1506. package="6"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="Chinese"
  1511. package="7"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Korean"
  1516. package="8"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Japanese"
  1521. package="9"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Finnish"
  1526. package="10"
  1527. />
  1528. <otaLanguage
  1529. id="0"
  1530. name="Polish"
  1531. package="11"
  1532. />
  1533. </otaLanguages>
  1534. <otaPackages>
  1535. <package
  1536. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1537. size="5183988"
  1538. />
  1539. <package
  1540. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1541. size="5183988"
  1542. />
  1543. <package
  1544. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1545. size="5183988"
  1546. />
  1547. <package
  1548. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1549. size="5183988"
  1550. />
  1551. <package
  1552. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1553. size="5183988"
  1554. />
  1555. <package
  1556. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1557. size="5183988"
  1558. />
  1559. <package
  1560. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1561. size="5183988"
  1562. />
  1563. <package
  1564. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1565. size="5183988"
  1566. />
  1567. <package
  1568. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1569. size="5183988"
  1570. />
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1581. size="5183988"
  1582. />
  1583. </otaPackages>
  1584. </productMenu>
  1585. <productMenu id="wa"
  1586. type="0" >
  1587. </productMenu>
  1588. <productMenu id="sip"
  1589. type="1" >
  1590. </productMenu>
  1591. <productMenu id="led"
  1592. type="1" >
  1593. </productMenu>
  1594. <productMenu id="illusion"
  1595. type="1" >
  1596. </productMenu>
  1597. <productMenu id="meshIntercom"
  1598. type="30" >
  1599. </productMenu>
  1600. <productMenu id="meshIntercom+"
  1601. type="3"
  1602. url="2" >
  1603. </productMenu>
  1604. <productMenu id="bluetoothIntercom"
  1605. type="1" >
  1606. </productMenu>
  1607. <productMenu id="fmradio"
  1608. type="1"
  1609. url="1" >
  1610. </productMenu>
  1611. <productMenu id="mic"
  1612. type="0" >
  1613. </productMenu>
  1614. <productMenu id="phone"
  1615. type="1" >
  1616. </productMenu>
  1617. <productMenu id="music"
  1618. type="1" >
  1619. </productMenu>
  1620. <productMenu id="musicSharing"
  1621. type="0" >
  1622. </productMenu>
  1623. <productMenu id="deviceSetting"
  1624. type="1"
  1625. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1626. </productMenu>
  1627. <productMenu id="quickGuide"
  1628. type="0"
  1629. url=""
  1630. size="1.12MB" >
  1631. </productMenu>
  1632. <productMenu id="userGuide"
  1633. type="1"
  1634. url=""
  1635. size="2.0MB" >
  1636. </productMenu>
  1637. <productMenu id="videoGuide"
  1638. type="0"
  1639. url=""
  1640. size="3.41MB" >
  1641. </productMenu>
  1642. <productMenu id="keySettings"
  1643. type="1"
  1644. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1645. </productMenu>
  1646. <productMenu id="volume"
  1647. type="13" >
  1648. </productMenu>
  1649. <productMenu id="volume+"
  1650. type="2"
  1651. url="0x6004" >
  1652. </productMenu>
  1653. <productMenu id="battery"
  1654. type="1" >
  1655. </productMenu>
  1656. <productID id="6A1B"
  1657. />
  1658. <productGroupable type="0"
  1659. />
  1660. </product>
  1661. <product id="COMP1"
  1662. name="BMW COM P1"
  1663. series="60"
  1664. latestVersion="1.0.6"
  1665. latestVersionMesh="0.19"
  1666. latestVersionVoicePrompt="1.0"
  1667. show = "-1" >
  1668. <productMenu id="protocol"
  1669. type="2" >
  1670. </productMenu>
  1671. <productMenu id="ota"
  1672. type="2" >
  1673. <otaLanguages>
  1674. <otaLanguage
  1675. id="0"
  1676. name="English"
  1677. package="0"
  1678. />
  1679. <otaLanguage
  1680. id="0"
  1681. name="French"
  1682. package="1"
  1683. />
  1684. <otaLanguage
  1685. id="0"
  1686. name="Spanish"
  1687. package="2"
  1688. />
  1689. <otaLanguage
  1690. id="0"
  1691. name="Italian"
  1692. package="3"
  1693. />
  1694. <otaLanguage
  1695. id="0"
  1696. name="German"
  1697. package="4"
  1698. />
  1699. <otaLanguage
  1700. id="0"
  1701. name="Dutch"
  1702. package="5"
  1703. />
  1704. <otaLanguage
  1705. id="0"
  1706. name="Russian"
  1707. package="6"
  1708. />
  1709. <otaLanguage
  1710. id="0"
  1711. name="Chinese"
  1712. package="7"
  1713. />
  1714. <otaLanguage
  1715. id="0"
  1716. name="Korean"
  1717. package="8"
  1718. />
  1719. <otaLanguage
  1720. id="0"
  1721. name="Japanese"
  1722. package="9"
  1723. />
  1724. <otaLanguage
  1725. id="0"
  1726. name="Finnish"
  1727. package="10"
  1728. />
  1729. </otaLanguages>
  1730. <otaPackages>
  1731. <package
  1732. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1733. size="5183988"
  1734. />
  1735. <package
  1736. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1737. size="5183988"
  1738. />
  1739. <package
  1740. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1741. size="5183988"
  1742. />
  1743. <package
  1744. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1745. size="5183988"
  1746. />
  1747. <package
  1748. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1749. size="5183988"
  1750. />
  1751. <package
  1752. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1753. size="5183988"
  1754. />
  1755. <package
  1756. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1757. size="5183988"
  1758. />
  1759. <package
  1760. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1761. size="5183988"
  1762. />
  1763. <package
  1764. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1765. size="5183988"
  1766. />
  1767. <package
  1768. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1773. size="5183988"
  1774. />
  1775. </otaPackages>
  1776. </productMenu>
  1777. <productMenu id="wa"
  1778. type="0" >
  1779. </productMenu>
  1780. <productMenu id="sip"
  1781. type="1" >
  1782. </productMenu>
  1783. <productMenu id="led"
  1784. type="0" >
  1785. </productMenu>
  1786. <productMenu id="illusion"
  1787. type="0" >
  1788. </productMenu>
  1789. <productMenu id="meshIntercom"
  1790. type="30" >
  1791. </productMenu>
  1792. <productMenu id="bluetoothIntercom"
  1793. type="1" >
  1794. </productMenu>
  1795. <productMenu id="bluetoothIntercomGrouping"
  1796. type="0" >
  1797. </productMenu>
  1798. <productMenu id="fmradio"
  1799. type="0" >
  1800. </productMenu>
  1801. <productMenu id="phone"
  1802. type="1" >
  1803. </productMenu>
  1804. <productMenu id="music"
  1805. type="1" >
  1806. </productMenu>
  1807. <productMenu id="musicSharing"
  1808. type="0" >
  1809. </productMenu>
  1810. <productMenu id="deviceSetting"
  1811. type="1"
  1812. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1813. </productMenu>
  1814. <productMenu id="quickGuide"
  1815. type="0"
  1816. url=""
  1817. size="1.12MB" >
  1818. </productMenu>
  1819. <productMenu id="userGuide"
  1820. type="0"
  1821. url=""
  1822. size="2.0MB" >
  1823. </productMenu>
  1824. <productMenu id="videoGuide"
  1825. type="0"
  1826. url=""
  1827. size="3.41MB" >
  1828. </productMenu>
  1829. <productMenu id="volume"
  1830. type="16" >
  1831. </productMenu>
  1832. <productMenu id="battery"
  1833. type="1" >
  1834. </productMenu>
  1835. <productID id="6A80"
  1836. />
  1837. <productGroupable type="0"
  1838. />
  1839. </product>
  1840. <product id="50S"
  1841. name="50S"
  1842. series="50"
  1843. latestVersion="2.7.2"
  1844. show = "1" >
  1845. <productMenu id="protocol"
  1846. type="2" >
  1847. </productMenu>
  1848. <productMenu id="alexa"
  1849. type="0" >
  1850. </productMenu>
  1851. <productMenu id="ota"
  1852. type="0"
  1853. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1854. size="1150234" >
  1855. </productMenu>
  1856. <productMenu id="wa"
  1857. type="1" >
  1858. </productMenu>
  1859. <productMenu id="sip"
  1860. type="1" >
  1861. </productMenu>
  1862. <productMenu id="meshIntercom"
  1863. type="30" >
  1864. <productMenuType version="2.1.1"
  1865. type="20"
  1866. />
  1867. </productMenu>
  1868. <productMenu id="meshIntercom+"
  1869. type="3"
  1870. url="2" >
  1871. <productMenuType version="2.5.9"
  1872. type="2"
  1873. />
  1874. <productMenuURL version="2.1.1"
  1875. url="0"
  1876. />
  1877. </productMenu>
  1878. <productMenu id="waveIntercom"
  1879. type="1" >
  1880. <productMenuType version="2.6"
  1881. type="0"
  1882. />
  1883. </productMenu>
  1884. <productMenu id="bluetoothIntercom"
  1885. type="1" >
  1886. </productMenu>
  1887. <productMenu id="phone"
  1888. type="1" >
  1889. </productMenu>
  1890. <productMenu id="music"
  1891. type="1" >
  1892. </productMenu>
  1893. <productMenu id="fmradio"
  1894. type="1" >
  1895. </productMenu>
  1896. <productMenu id="deviceSetting"
  1897. type="1"
  1898. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1899. <productMenuURL version="2.5.9"
  1900. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1901. />
  1902. <productMenuURL version="2.1.1"
  1903. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1904. />
  1905. <productMenuURL version="2.0.3"
  1906. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1907. />
  1908. </productMenu>
  1909. <productMenu id="quickGuide"
  1910. type="0"
  1911. url=""
  1912. size="934KB" >
  1913. </productMenu>
  1914. <productMenu id="userGuide"
  1915. type="1"
  1916. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1917. size="1.14MB" >
  1918. </productMenu>
  1919. <productMenu id="videoGuide"
  1920. type="1"
  1921. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1922. size="3.41MB" >
  1923. </productMenu>
  1924. <productMenu id="connectGuide"
  1925. type="1"
  1926. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1927. size="1.12MB" >
  1928. </productMenu>
  1929. <productMenu id="volume"
  1930. type="11" >
  1931. </productMenu>
  1932. <productMenu id="battery"
  1933. type="1" >
  1934. </productMenu>
  1935. <productID id="3210"
  1936. />
  1937. <productGroupable type="0"
  1938. />
  1939. </product>
  1940. <product id="50S"
  1941. name="50S"
  1942. series="50"
  1943. latestVersion="1.5.1"
  1944. show = "-1" >
  1945. <productMenu id="protocol"
  1946. type="2" >
  1947. </productMenu>
  1948. <productMenu id="alexa"
  1949. type="0" >
  1950. </productMenu>
  1951. <productMenu id="wa"
  1952. type="1" >
  1953. </productMenu>
  1954. <productMenu id="sip"
  1955. type="1" >
  1956. </productMenu>
  1957. <productMenu id="meshIntercom"
  1958. type="30" >
  1959. <productMenuType version="1.2.2"
  1960. type="20"
  1961. />
  1962. </productMenu>
  1963. <productMenu id="meshIntercom+"
  1964. type="3"
  1965. url="2" >
  1966. <productMenuType version="1.4.9"
  1967. type="2"
  1968. />
  1969. <productMenuURL version="1.2.2"
  1970. url="0"
  1971. />
  1972. </productMenu>
  1973. <productMenu id="waveIntercom"
  1974. type="1" >
  1975. <productMenuType version="1.3.9"
  1976. type="0"
  1977. />
  1978. </productMenu>
  1979. <productMenu id="bluetoothIntercom"
  1980. type="1" >
  1981. </productMenu>
  1982. <productMenu id="phone"
  1983. type="1" >
  1984. </productMenu>
  1985. <productMenu id="music"
  1986. type="1" >
  1987. </productMenu>
  1988. <productMenu id="fmradio"
  1989. type="1" >
  1990. </productMenu>
  1991. <productMenu id="deviceSetting"
  1992. type="1"
  1993. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1994. <productMenuURL version="1.4.9"
  1995. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1996. />
  1997. <productMenuURL version="1.3.9"
  1998. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1999. />
  2000. <productMenuURL version="1.2.2"
  2001. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2002. />
  2003. <productMenuURL version="1.1.1"
  2004. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2005. />
  2006. </productMenu>
  2007. <productMenu id="quickGuide"
  2008. type="0"
  2009. url=""
  2010. size="934KB" >
  2011. </productMenu>
  2012. <productMenu id="userGuide"
  2013. type="1"
  2014. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2015. size="1.14MB" >
  2016. </productMenu>
  2017. <productMenu id="videoGuide"
  2018. type="1"
  2019. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2020. size="3.41MB" >
  2021. </productMenu>
  2022. <productMenu id="volume"
  2023. type="11" >
  2024. </productMenu>
  2025. <productMenu id="battery"
  2026. type="1" >
  2027. </productMenu>
  2028. <productID id="3132"
  2029. />
  2030. <productGroupable type="0"
  2031. />
  2032. </product>
  2033. <product id="50R"
  2034. name="50R"
  2035. series="50"
  2036. latestVersion="2.7.1"
  2037. show = "1" >
  2038. <productMenu id="protocol"
  2039. type="2" >
  2040. </productMenu>
  2041. <productMenu id="alexa"
  2042. type="0" >
  2043. </productMenu>
  2044. <productMenu id="ota"
  2045. type="0"
  2046. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2047. size="1150234" >
  2048. </productMenu>
  2049. <productMenu id="wa"
  2050. type="1" >
  2051. </productMenu>
  2052. <productMenu id="sip"
  2053. type="1" >
  2054. </productMenu>
  2055. <productMenu id="meshIntercom"
  2056. type="30" >
  2057. <productMenuType version="2.1.1"
  2058. type="20"
  2059. />
  2060. </productMenu>
  2061. <productMenu id="meshIntercom+"
  2062. type="3"
  2063. url="2" >
  2064. <productMenuType version="2.5.9"
  2065. type="2"
  2066. />
  2067. <productMenuURL version="2.1.1"
  2068. url="0"
  2069. />
  2070. </productMenu>
  2071. <productMenu id="waveIntercom"
  2072. type="1" >
  2073. <productMenuType version="2.6"
  2074. type="0"
  2075. />
  2076. </productMenu>
  2077. <productMenu id="bluetoothIntercom"
  2078. type="1" >
  2079. </productMenu>
  2080. <productMenu id="phone"
  2081. type="1" >
  2082. </productMenu>
  2083. <productMenu id="music"
  2084. type="1" >
  2085. </productMenu>
  2086. <productMenu id="fmradio"
  2087. type="1" >
  2088. </productMenu>
  2089. <productMenu id="deviceSetting"
  2090. type="1"
  2091. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2092. <productMenuURL version="2.5.9"
  2093. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2094. />
  2095. <productMenuURL version="2.1.1"
  2096. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2097. />
  2098. <productMenuURL version="2.0"
  2099. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2100. />
  2101. </productMenu>
  2102. <productMenu id="quickGuide"
  2103. type="0"
  2104. url=""
  2105. size="344KB" >
  2106. </productMenu>
  2107. <productMenu id="userGuide"
  2108. type="1"
  2109. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2110. size="3.41MB" >
  2111. </productMenu>
  2112. <productMenu id="videoGuide"
  2113. type="1"
  2114. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2115. size="3.41MB" >
  2116. </productMenu>
  2117. <productMenu id="connectGuide"
  2118. type="1"
  2119. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2120. size="1.12MB" >
  2121. </productMenu>
  2122. <productMenu id="volume"
  2123. type="11" >
  2124. </productMenu>
  2125. <productMenu id="battery"
  2126. type="1" >
  2127. </productMenu>
  2128. <productID id="3218"
  2129. />
  2130. <productGroupable type="0"
  2131. />
  2132. </product>
  2133. <product id="50R"
  2134. name="50R"
  2135. series="50"
  2136. latestVersion="1.5.1"
  2137. show = "-1" >
  2138. <productMenu id="protocol"
  2139. type="2" >
  2140. </productMenu>
  2141. <productMenu id="alexa"
  2142. type="0" >
  2143. </productMenu>
  2144. <productMenu id="wa"
  2145. type="1" >
  2146. </productMenu>
  2147. <productMenu id="sip"
  2148. type="1" >
  2149. </productMenu>
  2150. <productMenu id="meshIntercom"
  2151. type="30" >
  2152. <productMenuType version="1.2.2"
  2153. type="20"
  2154. />
  2155. </productMenu>
  2156. <productMenu id="meshIntercom+"
  2157. type="3"
  2158. url="2" >
  2159. <productMenuType version="1.4.9"
  2160. type="2"
  2161. />
  2162. <productMenuURL version="1.2.2"
  2163. url="0"
  2164. />
  2165. </productMenu>
  2166. <productMenu id="waveIntercom"
  2167. type="1" >
  2168. <productMenuType version="1.3.9"
  2169. type="0"
  2170. />
  2171. </productMenu>
  2172. <productMenu id="bluetoothIntercom"
  2173. type="1" >
  2174. </productMenu>
  2175. <productMenu id="phone"
  2176. type="1" >
  2177. </productMenu>
  2178. <productMenu id="music"
  2179. type="1" >
  2180. </productMenu>
  2181. <productMenu id="fmradio"
  2182. type="1" >
  2183. </productMenu>
  2184. <productMenu id="deviceSetting"
  2185. type="1"
  2186. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2187. <productMenuURL version="1.4.9"
  2188. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2189. />
  2190. <productMenuURL version="1.3.9"
  2191. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2192. />
  2193. <productMenuURL version="1.2.2"
  2194. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2195. />
  2196. <productMenuURL version="1.1.1"
  2197. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2198. />
  2199. </productMenu>
  2200. <productMenu id="quickGuide"
  2201. type="0"
  2202. url=""
  2203. size="344KB" >
  2204. </productMenu>
  2205. <productMenu id="userGuide"
  2206. type="1"
  2207. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2208. size="3.41MB" >
  2209. </productMenu>
  2210. <productMenu id="videoGuide"
  2211. type="1"
  2212. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2213. size="3.41MB" >
  2214. </productMenu>
  2215. <productMenu id="volume"
  2216. type="11" >
  2217. </productMenu>
  2218. <productMenu id="battery"
  2219. type="1" >
  2220. </productMenu>
  2221. <productID id="3134"
  2222. />
  2223. <productGroupable type="0"
  2224. />
  2225. </product>
  2226. <product id="50C"
  2227. name="50C"
  2228. series="50"
  2229. latestVersion="1.4.3"
  2230. show = "1" >
  2231. <productMenu id="protocol"
  2232. type="2" >
  2233. </productMenu>
  2234. <productMenu id="ota"
  2235. type="0" >
  2236. </productMenu>
  2237. <productMenu id="wa"
  2238. type="1" >
  2239. </productMenu>
  2240. <productMenu id="sip"
  2241. type="1" >
  2242. </productMenu>
  2243. <productMenu id="meshIntercom"
  2244. type="30" >
  2245. <productMenuType version="1.1.1"
  2246. type="20"
  2247. />
  2248. </productMenu>
  2249. <productMenu id="meshIntercom+"
  2250. type="3"
  2251. url="2" >
  2252. <productMenuType version="1.3.9"
  2253. type="2"
  2254. />
  2255. <productMenuURL version="1.1.1"
  2256. url="0"
  2257. />
  2258. </productMenu>
  2259. <productMenu id="waveIntercom"
  2260. type="1" >
  2261. <productMenuType version="1.2.9"
  2262. type="0"
  2263. />
  2264. </productMenu>
  2265. <productMenu id="bluetoothIntercom"
  2266. type="1" >
  2267. </productMenu>
  2268. <productMenu id="phone"
  2269. type="1" >
  2270. </productMenu>
  2271. <productMenu id="music"
  2272. type="1" >
  2273. </productMenu>
  2274. <productMenu id="fmradio"
  2275. type="1" >
  2276. </productMenu>
  2277. <productMenu id="deviceSetting"
  2278. type="1"
  2279. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2280. <productMenuURL version="1.3.9"
  2281. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2282. />
  2283. <productMenuURL version="1.1.1"
  2284. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2285. />
  2286. <productMenuURL version="1.0.1"
  2287. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2288. />
  2289. </productMenu>
  2290. <productMenu id="quickGuide"
  2291. type="0"
  2292. url=""
  2293. size="344KB" >
  2294. </productMenu>
  2295. <productMenu id="userGuide"
  2296. type="1"
  2297. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2298. size="3.41MB" >
  2299. </productMenu>
  2300. <productMenu id="connectGuide"
  2301. type="1"
  2302. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2303. size="1.12MB" >
  2304. </productMenu>
  2305. <productMenu id="volume"
  2306. type="11" >
  2307. </productMenu>
  2308. <productMenu id="battery"
  2309. type="1" >
  2310. </productMenu>
  2311. <productID id="3232"
  2312. />
  2313. <productGroupable type="0"
  2314. />
  2315. </product>
  2316. <product id="PHANTOMXB"
  2317. name="PHANTOM XB"
  2318. series="Helmet"
  2319. latestVersion="1.2.7"
  2320. latestVersionVoicePrompt="1.5"
  2321. show = "-1" >
  2322. <productMenu id="protocol"
  2323. type="2" >
  2324. </productMenu>
  2325. <productMenu id="ota"
  2326. type="2" >
  2327. <otaLanguages>
  2328. <otaLanguage
  2329. id="0"
  2330. name="English"
  2331. package="0"
  2332. />
  2333. <otaLanguage
  2334. id="0"
  2335. name="French"
  2336. package="1"
  2337. />
  2338. <otaLanguage
  2339. id="0"
  2340. name="Spanish"
  2341. package="2"
  2342. />
  2343. <otaLanguage
  2344. id="0"
  2345. name="Italian"
  2346. package="3"
  2347. />
  2348. <otaLanguage
  2349. id="0"
  2350. name="German"
  2351. package="4"
  2352. />
  2353. <otaLanguage
  2354. id="0"
  2355. name="Dutch"
  2356. package="5"
  2357. />
  2358. <otaLanguage
  2359. id="0"
  2360. name="Russian"
  2361. package="6"
  2362. />
  2363. <otaLanguage
  2364. id="0"
  2365. name="Chinese"
  2366. package="7"
  2367. />
  2368. <otaLanguage
  2369. id="0"
  2370. name="Korean"
  2371. package="8"
  2372. />
  2373. <otaLanguage
  2374. id="0"
  2375. name="Japanese"
  2376. package="9"
  2377. />
  2378. <otaLanguage
  2379. id="0"
  2380. name="Finnish"
  2381. package="10"
  2382. />
  2383. <otaLanguage
  2384. id="0"
  2385. name="Polish"
  2386. package="11"
  2387. />
  2388. </otaLanguages>
  2389. <otaPackages>
  2390. <package
  2391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2392. size="5183988"
  2393. />
  2394. <package
  2395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2396. size="5183988"
  2397. />
  2398. <package
  2399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2400. size="5183988"
  2401. />
  2402. <package
  2403. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2404. size="5183988"
  2405. />
  2406. <package
  2407. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2408. size="5183988"
  2409. />
  2410. <package
  2411. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2412. size="5183988"
  2413. />
  2414. <package
  2415. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2416. size="5183988"
  2417. />
  2418. <package
  2419. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2420. size="5183988"
  2421. />
  2422. <package
  2423. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2424. size="5183988"
  2425. />
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2436. size="5183988"
  2437. />
  2438. </otaPackages>
  2439. </productMenu>
  2440. <productMenu id="wa"
  2441. type="0" >
  2442. </productMenu>
  2443. <productMenu id="led"
  2444. type="5" >
  2445. </productMenu>
  2446. <productMenu id="led+"
  2447. type="2"
  2448. url="1" >
  2449. </productMenu>
  2450. <productMenu id="meshIntercom"
  2451. type="30" >
  2452. </productMenu>
  2453. <productMenu id="meshIntercom+"
  2454. type="3"
  2455. url="2" >
  2456. </productMenu>
  2457. <productMenu id="waveIntercom"
  2458. type="1" >
  2459. </productMenu>
  2460. <productMenu id="fmradio"
  2461. type="0" >
  2462. </productMenu>
  2463. <productMenu id="phone"
  2464. type="1" >
  2465. </productMenu>
  2466. <productMenu id="music"
  2467. type="1" >
  2468. </productMenu>
  2469. <productMenu id="musicSharing"
  2470. type="0" >
  2471. </productMenu>
  2472. <productMenu id="deviceSetting"
  2473. type="1"
  2474. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2475. <productMenuURL version="1.2.4"
  2476. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2477. />
  2478. </productMenu>
  2479. <productMenu id="quickGuide"
  2480. type="0"
  2481. url=""
  2482. size="1.12MB" >
  2483. </productMenu>
  2484. <productMenu id="userGuide"
  2485. type="1"
  2486. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2487. size="2.0MB" >
  2488. </productMenu>
  2489. <productMenu id="videoGuide"
  2490. type="0"
  2491. url=""
  2492. size="3.41MB" >
  2493. </productMenu>
  2494. <productMenu id="volume"
  2495. type="16" >
  2496. </productMenu>
  2497. <productMenu id="volume+"
  2498. type="2"
  2499. url="0x6004" >
  2500. </productMenu>
  2501. <productMenu id="battery"
  2502. type="1" >
  2503. </productMenu>
  2504. <productID id="6A0F"
  2505. />
  2506. <productGroupable type="0"
  2507. />
  2508. </product>
  2509. <product id="PHANTOMXB"
  2510. name="PHANTOM XB"
  2511. series="Helmet"
  2512. latestVersion="1.2.7"
  2513. latestVersionVoicePrompt="1.5"
  2514. show = "-1" >
  2515. <productMenu id="protocol"
  2516. type="2" >
  2517. </productMenu>
  2518. <productMenu id="ota"
  2519. type="2" >
  2520. <otaLanguages>
  2521. <otaLanguage
  2522. id="0"
  2523. name="English"
  2524. package="0"
  2525. />
  2526. <otaLanguage
  2527. id="0"
  2528. name="French"
  2529. package="1"
  2530. />
  2531. <otaLanguage
  2532. id="0"
  2533. name="Spanish"
  2534. package="2"
  2535. />
  2536. <otaLanguage
  2537. id="0"
  2538. name="Italian"
  2539. package="3"
  2540. />
  2541. <otaLanguage
  2542. id="0"
  2543. name="German"
  2544. package="4"
  2545. />
  2546. <otaLanguage
  2547. id="0"
  2548. name="Dutch"
  2549. package="5"
  2550. />
  2551. <otaLanguage
  2552. id="0"
  2553. name="Russian"
  2554. package="6"
  2555. />
  2556. <otaLanguage
  2557. id="0"
  2558. name="Chinese"
  2559. package="7"
  2560. />
  2561. <otaLanguage
  2562. id="0"
  2563. name="Korean"
  2564. package="8"
  2565. />
  2566. <otaLanguage
  2567. id="0"
  2568. name="Japanese"
  2569. package="9"
  2570. />
  2571. <otaLanguage
  2572. id="0"
  2573. name="Finnish"
  2574. package="10"
  2575. />
  2576. <otaLanguage
  2577. id="0"
  2578. name="Polish"
  2579. package="11"
  2580. />
  2581. </otaLanguages>
  2582. <otaPackages>
  2583. <package
  2584. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2585. size="5183988"
  2586. />
  2587. <package
  2588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2589. size="5183988"
  2590. />
  2591. <package
  2592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2593. size="5183988"
  2594. />
  2595. <package
  2596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2597. size="5183988"
  2598. />
  2599. <package
  2600. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2601. size="5183988"
  2602. />
  2603. <package
  2604. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2605. size="5183988"
  2606. />
  2607. <package
  2608. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2609. size="5183988"
  2610. />
  2611. <package
  2612. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2613. size="5183988"
  2614. />
  2615. <package
  2616. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2617. size="5183988"
  2618. />
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2629. size="5183988"
  2630. />
  2631. </otaPackages>
  2632. </productMenu>
  2633. <productMenu id="wa"
  2634. type="0" >
  2635. </productMenu>
  2636. <productMenu id="led"
  2637. type="5" >
  2638. </productMenu>
  2639. <productMenu id="led+"
  2640. type="2"
  2641. url="1" >
  2642. </productMenu>
  2643. <productMenu id="meshIntercom"
  2644. type="30" >
  2645. </productMenu>
  2646. <productMenu id="meshIntercom+"
  2647. type="3"
  2648. url="2" >
  2649. </productMenu>
  2650. <productMenu id="waveIntercom"
  2651. type="1" >
  2652. </productMenu>
  2653. <productMenu id="fmradio"
  2654. type="0" >
  2655. </productMenu>
  2656. <productMenu id="phone"
  2657. type="1" >
  2658. </productMenu>
  2659. <productMenu id="music"
  2660. type="1" >
  2661. </productMenu>
  2662. <productMenu id="musicSharing"
  2663. type="0" >
  2664. </productMenu>
  2665. <productMenu id="deviceSetting"
  2666. type="1"
  2667. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2668. <productMenuURL version="1.2.4"
  2669. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2670. />
  2671. <productMenuURL version="1.2.1"
  2672. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2673. />
  2674. </productMenu>
  2675. <productMenu id="quickGuide"
  2676. type="0"
  2677. url=""
  2678. size="1.12MB" >
  2679. </productMenu>
  2680. <productMenu id="userGuide"
  2681. type="1"
  2682. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2683. size="2.0MB" >
  2684. </productMenu>
  2685. <productMenu id="videoGuide"
  2686. type="0"
  2687. url=""
  2688. size="3.41MB" >
  2689. </productMenu>
  2690. <productMenu id="volume"
  2691. type="16" >
  2692. </productMenu>
  2693. <productMenu id="volume+"
  2694. type="2"
  2695. url="0x6004" >
  2696. </productMenu>
  2697. <productMenu id="battery"
  2698. type="1" >
  2699. </productMenu>
  2700. <productID id="6A0C"
  2701. />
  2702. <productGroupable type="0"
  2703. />
  2704. </product>
  2705. <product id="PHANTOMKV"
  2706. name="PHANTOM KV"
  2707. series="Helmet"
  2708. latestVersion="1.2.2"
  2709. latestVersionVoicePrompt="1.0"
  2710. show = "-1" >
  2711. <productMenu id="protocol"
  2712. type="2" >
  2713. </productMenu>
  2714. <productMenu id="ota"
  2715. type="0" >
  2716. <otaLanguages>
  2717. <otaLanguage
  2718. id="0"
  2719. name="English"
  2720. package="0"
  2721. />
  2722. <otaLanguage
  2723. id="0"
  2724. name="French"
  2725. package="1"
  2726. />
  2727. <otaLanguage
  2728. id="0"
  2729. name="Spanish"
  2730. package="2"
  2731. />
  2732. <otaLanguage
  2733. id="0"
  2734. name="Italian"
  2735. package="3"
  2736. />
  2737. <otaLanguage
  2738. id="0"
  2739. name="German"
  2740. package="4"
  2741. />
  2742. <otaLanguage
  2743. id="0"
  2744. name="Dutch"
  2745. package="5"
  2746. />
  2747. <otaLanguage
  2748. id="0"
  2749. name="Russian"
  2750. package="6"
  2751. />
  2752. <otaLanguage
  2753. id="0"
  2754. name="Chinese"
  2755. package="7"
  2756. />
  2757. <otaLanguage
  2758. id="0"
  2759. name="Korean"
  2760. package="8"
  2761. />
  2762. <otaLanguage
  2763. id="0"
  2764. name="Japanese"
  2765. package="9"
  2766. />
  2767. <otaLanguage
  2768. id="0"
  2769. name="Finnish"
  2770. package="10"
  2771. />
  2772. <otaLanguage
  2773. id="0"
  2774. name="Polish"
  2775. package="11"
  2776. />
  2777. </otaLanguages>
  2778. <otaPackages>
  2779. <package
  2780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2781. size="5183988"
  2782. />
  2783. <package
  2784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2785. size="5183988"
  2786. />
  2787. <package
  2788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2789. size="5183988"
  2790. />
  2791. <package
  2792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2793. size="5183988"
  2794. />
  2795. <package
  2796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2797. size="5183988"
  2798. />
  2799. <package
  2800. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2801. size="5183988"
  2802. />
  2803. <package
  2804. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2805. size="5183988"
  2806. />
  2807. <package
  2808. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2809. size="5183988"
  2810. />
  2811. <package
  2812. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2813. size="5183988"
  2814. />
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2825. size="5183988"
  2826. />
  2827. </otaPackages>
  2828. </productMenu>
  2829. <productMenu id="wa"
  2830. type="0" >
  2831. </productMenu>
  2832. <productMenu id="led"
  2833. type="5" >
  2834. </productMenu>
  2835. <productMenu id="led+"
  2836. type="2"
  2837. url="1" >
  2838. </productMenu>
  2839. <productMenu id="meshIntercom"
  2840. type="30" >
  2841. </productMenu>
  2842. <productMenu id="meshIntercom+"
  2843. type="3"
  2844. url="2" >
  2845. </productMenu>
  2846. <productMenu id="waveIntercom"
  2847. type="1" >
  2848. </productMenu>
  2849. <productMenu id="fmradio"
  2850. type="0" >
  2851. </productMenu>
  2852. <productMenu id="phone"
  2853. type="1" >
  2854. </productMenu>
  2855. <productMenu id="music"
  2856. type="1" >
  2857. </productMenu>
  2858. <productMenu id="musicSharing"
  2859. type="0" >
  2860. </productMenu>
  2861. <productMenu id="deviceSetting"
  2862. type="1"
  2863. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2864. <productMenuURL version="1.2.4"
  2865. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2866. />
  2867. </productMenu>
  2868. <productMenu id="quickGuide"
  2869. type="0"
  2870. url=""
  2871. size="1.12MB" >
  2872. </productMenu>
  2873. <productMenu id="userGuide"
  2874. type="1"
  2875. url=""
  2876. size="2.0MB" >
  2877. </productMenu>
  2878. <productMenu id="videoGuide"
  2879. type="0"
  2880. url=""
  2881. size="3.41MB" >
  2882. </productMenu>
  2883. <productMenu id="volume"
  2884. type="16" >
  2885. </productMenu>
  2886. <productMenu id="volume+"
  2887. type="2"
  2888. url="0x6004" >
  2889. </productMenu>
  2890. <productMenu id="soundMode"
  2891. type="1" >
  2892. </productMenu>
  2893. <productMenu id="battery"
  2894. type="1" >
  2895. </productMenu>
  2896. <productID id="6A13"
  2897. />
  2898. <productGroupable type="0"
  2899. />
  2900. </product>
  2901. <product id="PHANTOMCamera"
  2902. name="PHANTOM Camera"
  2903. series="Helmet"
  2904. latestVersion="1.0.1"
  2905. latestVersionVoicePrompt="0.4"
  2906. show = "-1" >
  2907. <productMenu id="protocol"
  2908. type="2" >
  2909. </productMenu>
  2910. <productMenu id="ota"
  2911. type="3" >
  2912. <otaLanguages>
  2913. <otaLanguage
  2914. id="0"
  2915. name="English"
  2916. package="0"
  2917. />
  2918. <otaLanguage
  2919. id="0"
  2920. name="French"
  2921. package="1"
  2922. />
  2923. <otaLanguage
  2924. id="0"
  2925. name="Spanish"
  2926. package="2"
  2927. />
  2928. <otaLanguage
  2929. id="0"
  2930. name="Italian"
  2931. package="3"
  2932. />
  2933. <otaLanguage
  2934. id="0"
  2935. name="German"
  2936. package="4"
  2937. />
  2938. <otaLanguage
  2939. id="0"
  2940. name="Dutch"
  2941. package="5"
  2942. />
  2943. <otaLanguage
  2944. id="0"
  2945. name="Russian"
  2946. package="6"
  2947. />
  2948. <otaLanguage
  2949. id="0"
  2950. name="Chinese"
  2951. package="7"
  2952. />
  2953. <otaLanguage
  2954. id="0"
  2955. name="Korean"
  2956. package="8"
  2957. />
  2958. <otaLanguage
  2959. id="0"
  2960. name="Japanese"
  2961. package="9"
  2962. />
  2963. <otaLanguage
  2964. id="0"
  2965. name="Finnish"
  2966. package="10"
  2967. />
  2968. <otaLanguage
  2969. id="0"
  2970. name="Polish"
  2971. package="11"
  2972. />
  2973. </otaLanguages>
  2974. <otaPackages>
  2975. <package
  2976. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2977. size="5183988"
  2978. />
  2979. <package
  2980. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2981. size="5183988"
  2982. />
  2983. <package
  2984. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2985. size="5183988"
  2986. />
  2987. <package
  2988. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2989. size="5183988"
  2990. />
  2991. <package
  2992. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2993. size="5183988"
  2994. />
  2995. <package
  2996. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2997. size="5183988"
  2998. />
  2999. <package
  3000. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3001. size="5183988"
  3002. />
  3003. <package
  3004. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3005. size="5183988"
  3006. />
  3007. <package
  3008. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3009. size="5183988"
  3010. />
  3011. <package
  3012. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3013. size="5183988"
  3014. />
  3015. <package
  3016. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3017. size="5183988"
  3018. />
  3019. <package
  3020. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3021. size="5183988"
  3022. />
  3023. </otaPackages>
  3024. </productMenu>
  3025. <productMenu id="wa"
  3026. type="0" >
  3027. </productMenu>
  3028. <productMenu id="led"
  3029. type="5" >
  3030. </productMenu>
  3031. <productMenu id="led+"
  3032. type="2"
  3033. url="1" >
  3034. </productMenu>
  3035. <productMenu id="meshIntercom"
  3036. type="30" >
  3037. </productMenu>
  3038. <productMenu id="meshIntercom+"
  3039. type="3"
  3040. url="2" >
  3041. </productMenu>
  3042. <productMenu id="waveIntercom"
  3043. type="1" >
  3044. </productMenu>
  3045. <productMenu id="fmradio"
  3046. type="0" >
  3047. </productMenu>
  3048. <productMenu id="phone"
  3049. type="1" >
  3050. </productMenu>
  3051. <productMenu id="music"
  3052. type="1" >
  3053. </productMenu>
  3054. <productMenu id="musicSharing"
  3055. type="0" >
  3056. </productMenu>
  3057. <productMenu id="deviceSetting"
  3058. type="1"
  3059. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3060. </productMenu>
  3061. <productMenu id="quickGuide"
  3062. type="0"
  3063. url=""
  3064. size="1.12MB" >
  3065. </productMenu>
  3066. <productMenu id="userGuide"
  3067. type="1"
  3068. url=""
  3069. size="2.0MB" >
  3070. </productMenu>
  3071. <productMenu id="videoGuide"
  3072. type="0"
  3073. url=""
  3074. size="3.41MB" >
  3075. </productMenu>
  3076. <productMenu id="volume"
  3077. type="16" >
  3078. </productMenu>
  3079. <productMenu id="battery"
  3080. type="1" >
  3081. </productMenu>
  3082. <productID id="6A10"
  3083. />
  3084. <productGroupable type="0"
  3085. />
  3086. </product>
  3087. <product id="PHANTOMCamera"
  3088. name="PHANTOM Camera"
  3089. series="Helmet"
  3090. latestVersion="1.0.1"
  3091. latestVersionVoicePrompt="0.4"
  3092. show = "-1" >
  3093. <productMenu id="protocol"
  3094. type="2" >
  3095. </productMenu>
  3096. <productMenu id="ota"
  3097. type="3" >
  3098. <otaLanguages>
  3099. <otaLanguage
  3100. id="0"
  3101. name="English"
  3102. package="0"
  3103. />
  3104. <otaLanguage
  3105. id="0"
  3106. name="French"
  3107. package="1"
  3108. />
  3109. <otaLanguage
  3110. id="0"
  3111. name="Spanish"
  3112. package="2"
  3113. />
  3114. <otaLanguage
  3115. id="0"
  3116. name="Italian"
  3117. package="3"
  3118. />
  3119. <otaLanguage
  3120. id="0"
  3121. name="German"
  3122. package="4"
  3123. />
  3124. <otaLanguage
  3125. id="0"
  3126. name="Dutch"
  3127. package="5"
  3128. />
  3129. <otaLanguage
  3130. id="0"
  3131. name="Russian"
  3132. package="6"
  3133. />
  3134. <otaLanguage
  3135. id="0"
  3136. name="Chinese"
  3137. package="7"
  3138. />
  3139. <otaLanguage
  3140. id="0"
  3141. name="Korean"
  3142. package="8"
  3143. />
  3144. <otaLanguage
  3145. id="0"
  3146. name="Japanese"
  3147. package="9"
  3148. />
  3149. <otaLanguage
  3150. id="0"
  3151. name="Finnish"
  3152. package="10"
  3153. />
  3154. <otaLanguage
  3155. id="0"
  3156. name="Polish"
  3157. package="11"
  3158. />
  3159. </otaLanguages>
  3160. <otaPackages>
  3161. <package
  3162. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3163. size="5183988"
  3164. />
  3165. <package
  3166. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3167. size="5183988"
  3168. />
  3169. <package
  3170. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3171. size="5183988"
  3172. />
  3173. <package
  3174. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3175. size="5183988"
  3176. />
  3177. <package
  3178. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3179. size="5183988"
  3180. />
  3181. <package
  3182. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3183. size="5183988"
  3184. />
  3185. <package
  3186. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3187. size="5183988"
  3188. />
  3189. <package
  3190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3191. size="5183988"
  3192. />
  3193. <package
  3194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3195. size="5183988"
  3196. />
  3197. <package
  3198. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3199. size="5183988"
  3200. />
  3201. <package
  3202. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3203. size="5183988"
  3204. />
  3205. <package
  3206. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3207. size="5183988"
  3208. />
  3209. </otaPackages>
  3210. </productMenu>
  3211. <productMenu id="wa"
  3212. type="0" >
  3213. </productMenu>
  3214. <productMenu id="led"
  3215. type="5" >
  3216. </productMenu>
  3217. <productMenu id="led+"
  3218. type="2"
  3219. url="1" >
  3220. </productMenu>
  3221. <productMenu id="meshIntercom"
  3222. type="30" >
  3223. </productMenu>
  3224. <productMenu id="meshIntercom+"
  3225. type="3"
  3226. url="2" >
  3227. </productMenu>
  3228. <productMenu id="waveIntercom"
  3229. type="1" >
  3230. </productMenu>
  3231. <productMenu id="fmradio"
  3232. type="0" >
  3233. </productMenu>
  3234. <productMenu id="phone"
  3235. type="1" >
  3236. </productMenu>
  3237. <productMenu id="music"
  3238. type="1" >
  3239. </productMenu>
  3240. <productMenu id="musicSharing"
  3241. type="0" >
  3242. </productMenu>
  3243. <productMenu id="deviceSetting"
  3244. type="1"
  3245. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3246. </productMenu>
  3247. <productMenu id="quickGuide"
  3248. type="0"
  3249. url=""
  3250. size="1.12MB" >
  3251. </productMenu>
  3252. <productMenu id="userGuide"
  3253. type="1"
  3254. url=""
  3255. size="2.0MB" >
  3256. </productMenu>
  3257. <productMenu id="videoGuide"
  3258. type="0"
  3259. url=""
  3260. size="3.41MB" >
  3261. </productMenu>
  3262. <productMenu id="volume"
  3263. type="16" >
  3264. </productMenu>
  3265. <productMenu id="battery"
  3266. type="1" >
  3267. </productMenu>
  3268. <productID id="6A09"
  3269. />
  3270. <productGroupable type="0"
  3271. />
  3272. </product>
  3273. <product id="PHANTOM"
  3274. name="PHANTOM ANC"
  3275. series="Helmet"
  3276. latestVersion="1.2.7"
  3277. latestVersionVoicePrompt="1.5"
  3278. show = "1" >
  3279. <productMenu id="protocol"
  3280. type="2" >
  3281. </productMenu>
  3282. <productMenu id="ota"
  3283. type="2" >
  3284. <productMenuType version="0.6.9"
  3285. type="0"
  3286. />
  3287. <otaLanguages>
  3288. <otaLanguage
  3289. id="0"
  3290. name="English"
  3291. package="0"
  3292. />
  3293. <otaLanguage
  3294. id="0"
  3295. name="French"
  3296. package="1"
  3297. />
  3298. <otaLanguage
  3299. id="0"
  3300. name="Spanish"
  3301. package="2"
  3302. />
  3303. <otaLanguage
  3304. id="0"
  3305. name="Italian"
  3306. package="3"
  3307. />
  3308. <otaLanguage
  3309. id="0"
  3310. name="German"
  3311. package="4"
  3312. />
  3313. <otaLanguage
  3314. id="0"
  3315. name="Dutch"
  3316. package="5"
  3317. />
  3318. <otaLanguage
  3319. id="0"
  3320. name="Russian"
  3321. package="6"
  3322. />
  3323. <otaLanguage
  3324. id="0"
  3325. name="Chinese"
  3326. package="7"
  3327. />
  3328. <otaLanguage
  3329. id="0"
  3330. name="Korean"
  3331. package="8"
  3332. />
  3333. <otaLanguage
  3334. id="0"
  3335. name="Japanese"
  3336. package="9"
  3337. />
  3338. <otaLanguage
  3339. id="0"
  3340. name="Finnish"
  3341. package="10"
  3342. />
  3343. <otaLanguage
  3344. id="0"
  3345. name="Polish"
  3346. package="11"
  3347. />
  3348. </otaLanguages>
  3349. <otaPackages>
  3350. <package
  3351. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3352. size="5183988"
  3353. />
  3354. <package
  3355. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3356. size="5183988"
  3357. />
  3358. <package
  3359. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3360. size="5183988"
  3361. />
  3362. <package
  3363. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3364. size="5183988"
  3365. />
  3366. <package
  3367. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3368. size="5183988"
  3369. />
  3370. <package
  3371. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3372. size="5183988"
  3373. />
  3374. <package
  3375. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3376. size="5183988"
  3377. />
  3378. <package
  3379. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3380. size="5183988"
  3381. />
  3382. <package
  3383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3384. size="5183988"
  3385. />
  3386. <package
  3387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3388. size="5183988"
  3389. />
  3390. <package
  3391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3392. size="5183988"
  3393. />
  3394. <package
  3395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3396. size="5183988"
  3397. />
  3398. </otaPackages>
  3399. </productMenu>
  3400. <productMenu id="wa"
  3401. type="0" >
  3402. </productMenu>
  3403. <productMenu id="led"
  3404. type="5" >
  3405. </productMenu>
  3406. <productMenu id="led+"
  3407. type="2"
  3408. url="1" >
  3409. </productMenu>
  3410. <productMenu id="meshIntercom"
  3411. type="30" >
  3412. </productMenu>
  3413. <productMenu id="meshIntercom+"
  3414. type="3"
  3415. url="2" >
  3416. <productMenuURL version="1.0.4"
  3417. url="10"
  3418. />
  3419. </productMenu>
  3420. <productMenu id="waveIntercom"
  3421. type="1" >
  3422. <productMenuType version="1.0.9"
  3423. type="0"
  3424. />
  3425. </productMenu>
  3426. <productMenu id="fmradio"
  3427. type="0" >
  3428. </productMenu>
  3429. <productMenu id="phone"
  3430. type="1" >
  3431. </productMenu>
  3432. <productMenu id="music"
  3433. type="1" >
  3434. </productMenu>
  3435. <productMenu id="musicSharing"
  3436. type="0" >
  3437. </productMenu>
  3438. <productMenu id="deviceSetting"
  3439. type="1"
  3440. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3441. <productMenuURL version="1.2.4"
  3442. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3443. />
  3444. <productMenuURL version="1.2.1"
  3445. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3446. />
  3447. <productMenuURL version="1.1.2"
  3448. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3449. />
  3450. <productMenuURL version="1.0.4"
  3451. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3452. />
  3453. </productMenu>
  3454. <productMenu id="quickGuide"
  3455. type="0"
  3456. url=""
  3457. size="1.12MB" >
  3458. </productMenu>
  3459. <productMenu id="userGuide"
  3460. type="1"
  3461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3462. size="2.0MB" >
  3463. </productMenu>
  3464. <productMenu id="videoGuide"
  3465. type="0"
  3466. url=""
  3467. size="3.41MB" >
  3468. </productMenu>
  3469. <productMenu id="volume"
  3470. type="16" >
  3471. </productMenu>
  3472. <productMenu id="volume+"
  3473. type="2"
  3474. url="0x6004" >
  3475. </productMenu>
  3476. <productMenu id="soundMode"
  3477. type="1" >
  3478. <productMenuType version="0.9.11"
  3479. type="0"
  3480. />
  3481. </productMenu>
  3482. <productMenu id="battery"
  3483. type="1" >
  3484. </productMenu>
  3485. <productID id="6A01"
  3486. />
  3487. <productGroupable type="0"
  3488. />
  3489. </product>
  3490. <product id="PHANTOM"
  3491. name="PHANTOM ANC"
  3492. series="Helmet"
  3493. latestVersion="1.2.7"
  3494. latestVersionVoicePrompt="1.5"
  3495. show = "-1" >
  3496. <productMenu id="protocol"
  3497. type="2" >
  3498. </productMenu>
  3499. <productMenu id="ota"
  3500. type="2" >
  3501. <otaLanguages>
  3502. <otaLanguage
  3503. id="0"
  3504. name="English"
  3505. package="0"
  3506. />
  3507. <otaLanguage
  3508. id="0"
  3509. name="French"
  3510. package="1"
  3511. />
  3512. <otaLanguage
  3513. id="0"
  3514. name="Spanish"
  3515. package="2"
  3516. />
  3517. <otaLanguage
  3518. id="0"
  3519. name="Italian"
  3520. package="3"
  3521. />
  3522. <otaLanguage
  3523. id="0"
  3524. name="German"
  3525. package="4"
  3526. />
  3527. <otaLanguage
  3528. id="0"
  3529. name="Dutch"
  3530. package="5"
  3531. />
  3532. <otaLanguage
  3533. id="0"
  3534. name="Russian"
  3535. package="6"
  3536. />
  3537. <otaLanguage
  3538. id="0"
  3539. name="Chinese"
  3540. package="7"
  3541. />
  3542. <otaLanguage
  3543. id="0"
  3544. name="Korean"
  3545. package="8"
  3546. />
  3547. <otaLanguage
  3548. id="0"
  3549. name="Japanese"
  3550. package="9"
  3551. />
  3552. <otaLanguage
  3553. id="0"
  3554. name="Finnish"
  3555. package="10"
  3556. />
  3557. <otaLanguage
  3558. id="0"
  3559. name="Polish"
  3560. package="11"
  3561. />
  3562. </otaLanguages>
  3563. <otaPackages>
  3564. <package
  3565. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3566. size="5183988"
  3567. />
  3568. <package
  3569. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3570. size="5183988"
  3571. />
  3572. <package
  3573. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3574. size="5183988"
  3575. />
  3576. <package
  3577. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3578. size="5183988"
  3579. />
  3580. <package
  3581. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3582. size="5183988"
  3583. />
  3584. <package
  3585. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3586. size="5183988"
  3587. />
  3588. <package
  3589. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3590. size="5183988"
  3591. />
  3592. <package
  3593. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3594. size="5183988"
  3595. />
  3596. <package
  3597. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3598. size="5183988"
  3599. />
  3600. <package
  3601. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3602. size="5183988"
  3603. />
  3604. <package
  3605. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3606. size="5183988"
  3607. />
  3608. <package
  3609. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3610. size="5183988"
  3611. />
  3612. </otaPackages>
  3613. </productMenu>
  3614. <productMenu id="led"
  3615. type="5" >
  3616. </productMenu>
  3617. <productMenu id="led+"
  3618. type="2"
  3619. url="1" >
  3620. </productMenu>
  3621. <productMenu id="meshIntercom"
  3622. type="30" >
  3623. </productMenu>
  3624. <productMenu id="meshIntercom+"
  3625. type="3"
  3626. url="2" >
  3627. </productMenu>
  3628. <productMenu id="waveIntercom"
  3629. type="1" >
  3630. </productMenu>
  3631. <productMenu id="fmradio"
  3632. type="0" >
  3633. </productMenu>
  3634. <productMenu id="phone"
  3635. type="1" >
  3636. </productMenu>
  3637. <productMenu id="music"
  3638. type="1" >
  3639. </productMenu>
  3640. <productMenu id="musicSharing"
  3641. type="0" >
  3642. </productMenu>
  3643. <productMenu id="deviceSetting"
  3644. type="1"
  3645. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3646. <productMenuURL version="1.2.4"
  3647. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3648. />
  3649. </productMenu>
  3650. <productMenu id="quickGuide"
  3651. type="0"
  3652. url=""
  3653. size="1.12MB" >
  3654. </productMenu>
  3655. <productMenu id="userGuide"
  3656. type="1"
  3657. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3658. size="2.0MB" >
  3659. </productMenu>
  3660. <productMenu id="videoGuide"
  3661. type="0"
  3662. url=""
  3663. size="3.41MB" >
  3664. </productMenu>
  3665. <productMenu id="volume"
  3666. type="16" >
  3667. </productMenu>
  3668. <productMenu id="volume+"
  3669. type="2"
  3670. url="0x6004" >
  3671. </productMenu>
  3672. <productMenu id="soundMode"
  3673. type="1" >
  3674. </productMenu>
  3675. <productMenu id="battery"
  3676. type="1" >
  3677. </productMenu>
  3678. <productID id="6A19"
  3679. />
  3680. <productGroupable type="0"
  3681. />
  3682. </product>
  3683. <product id="PHANTOM"
  3684. name="PHANTOM"
  3685. series="Helmet"
  3686. latestVersion="1.2.7"
  3687. latestVersionVoicePrompt="1.5"
  3688. show = "-1" >
  3689. <productMenu id="protocol"
  3690. type="2" >
  3691. </productMenu>
  3692. <productMenu id="ota"
  3693. type="2" >
  3694. <otaLanguages>
  3695. <otaLanguage
  3696. id="0"
  3697. name="English"
  3698. package="0"
  3699. />
  3700. <otaLanguage
  3701. id="0"
  3702. name="French"
  3703. package="1"
  3704. />
  3705. <otaLanguage
  3706. id="0"
  3707. name="Spanish"
  3708. package="2"
  3709. />
  3710. <otaLanguage
  3711. id="0"
  3712. name="Italian"
  3713. package="3"
  3714. />
  3715. <otaLanguage
  3716. id="0"
  3717. name="German"
  3718. package="4"
  3719. />
  3720. <otaLanguage
  3721. id="0"
  3722. name="Dutch"
  3723. package="5"
  3724. />
  3725. <otaLanguage
  3726. id="0"
  3727. name="Russian"
  3728. package="6"
  3729. />
  3730. <otaLanguage
  3731. id="0"
  3732. name="Chinese"
  3733. package="7"
  3734. />
  3735. <otaLanguage
  3736. id="0"
  3737. name="Korean"
  3738. package="8"
  3739. />
  3740. <otaLanguage
  3741. id="0"
  3742. name="Japanese"
  3743. package="9"
  3744. />
  3745. <otaLanguage
  3746. id="0"
  3747. name="Finnish"
  3748. package="10"
  3749. />
  3750. <otaLanguage
  3751. id="0"
  3752. name="Polish"
  3753. package="11"
  3754. />
  3755. </otaLanguages>
  3756. <otaPackages>
  3757. <package
  3758. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3759. size="5183988"
  3760. />
  3761. <package
  3762. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3763. size="5183988"
  3764. />
  3765. <package
  3766. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3767. size="5183988"
  3768. />
  3769. <package
  3770. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3771. size="5183988"
  3772. />
  3773. <package
  3774. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3775. size="5183988"
  3776. />
  3777. <package
  3778. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3779. size="5183988"
  3780. />
  3781. <package
  3782. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3783. size="5183988"
  3784. />
  3785. <package
  3786. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3787. size="5183988"
  3788. />
  3789. <package
  3790. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3791. size="5183988"
  3792. />
  3793. <package
  3794. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3795. size="5183988"
  3796. />
  3797. <package
  3798. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3799. size="5183988"
  3800. />
  3801. <package
  3802. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3803. size="5183988"
  3804. />
  3805. </otaPackages>
  3806. </productMenu>
  3807. <productMenu id="wa"
  3808. type="0" >
  3809. </productMenu>
  3810. <productMenu id="led"
  3811. type="5" >
  3812. </productMenu>
  3813. <productMenu id="led+"
  3814. type="2"
  3815. url="1" >
  3816. </productMenu>
  3817. <productMenu id="meshIntercom"
  3818. type="30" >
  3819. </productMenu>
  3820. <productMenu id="meshIntercom+"
  3821. type="3"
  3822. url="2" >
  3823. </productMenu>
  3824. <productMenu id="waveIntercom"
  3825. type="1" >
  3826. </productMenu>
  3827. <productMenu id="fmradio"
  3828. type="0" >
  3829. </productMenu>
  3830. <productMenu id="phone"
  3831. type="1" >
  3832. </productMenu>
  3833. <productMenu id="music"
  3834. type="1" >
  3835. </productMenu>
  3836. <productMenu id="musicSharing"
  3837. type="0" >
  3838. </productMenu>
  3839. <productMenu id="deviceSetting"
  3840. type="1"
  3841. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3842. <productMenuURL version="1.2.4"
  3843. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3844. />
  3845. </productMenu>
  3846. <productMenu id="quickGuide"
  3847. type="0"
  3848. url=""
  3849. size="1.52MB" >
  3850. </productMenu>
  3851. <productMenu id="userGuide"
  3852. type="1"
  3853. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3854. size="2.01MB" >
  3855. </productMenu>
  3856. <productMenu id="videoGuide"
  3857. type="0"
  3858. url=""
  3859. size="3.46MB" >
  3860. </productMenu>
  3861. <productMenu id="connectGuide"
  3862. type="1"
  3863. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3864. size="1.1MB" >
  3865. </productMenu>
  3866. <productMenu id="volume"
  3867. type="16" >
  3868. </productMenu>
  3869. <productMenu id="volume+"
  3870. type="2"
  3871. url="0x6004" >
  3872. </productMenu>
  3873. <productMenu id="battery"
  3874. type="1" >
  3875. </productMenu>
  3876. <productID id="6A0E"
  3877. />
  3878. <productGroupable type="0"
  3879. />
  3880. </product>
  3881. <product id="PHANTOM"
  3882. name="PHANTOM"
  3883. series="Helmet"
  3884. latestVersion="1.2.7"
  3885. latestVersionVoicePrompt="1.5"
  3886. show = "1" >
  3887. <productMenu id="protocol"
  3888. type="2" >
  3889. </productMenu>
  3890. <productMenu id="ota"
  3891. type="2" >
  3892. <otaLanguages>
  3893. <otaLanguage
  3894. id="0"
  3895. name="English"
  3896. package="0"
  3897. />
  3898. <otaLanguage
  3899. id="0"
  3900. name="French"
  3901. package="1"
  3902. />
  3903. <otaLanguage
  3904. id="0"
  3905. name="Spanish"
  3906. package="2"
  3907. />
  3908. <otaLanguage
  3909. id="0"
  3910. name="Italian"
  3911. package="3"
  3912. />
  3913. <otaLanguage
  3914. id="0"
  3915. name="German"
  3916. package="4"
  3917. />
  3918. <otaLanguage
  3919. id="0"
  3920. name="Dutch"
  3921. package="5"
  3922. />
  3923. <otaLanguage
  3924. id="0"
  3925. name="Russian"
  3926. package="6"
  3927. />
  3928. <otaLanguage
  3929. id="0"
  3930. name="Chinese"
  3931. package="7"
  3932. />
  3933. <otaLanguage
  3934. id="0"
  3935. name="Korean"
  3936. package="8"
  3937. />
  3938. <otaLanguage
  3939. id="0"
  3940. name="Japanese"
  3941. package="9"
  3942. />
  3943. <otaLanguage
  3944. id="0"
  3945. name="Finnish"
  3946. package="10"
  3947. />
  3948. <otaLanguage
  3949. id="0"
  3950. name="Polish"
  3951. package="11"
  3952. />
  3953. </otaLanguages>
  3954. <otaPackages>
  3955. <package
  3956. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3957. size="5183988"
  3958. />
  3959. <package
  3960. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3961. size="5183988"
  3962. />
  3963. <package
  3964. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3965. size="5183988"
  3966. />
  3967. <package
  3968. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3969. size="5183988"
  3970. />
  3971. <package
  3972. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3973. size="5183988"
  3974. />
  3975. <package
  3976. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3977. size="5183988"
  3978. />
  3979. <package
  3980. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3981. size="5183988"
  3982. />
  3983. <package
  3984. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3985. size="5183988"
  3986. />
  3987. <package
  3988. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3989. size="5183988"
  3990. />
  3991. <package
  3992. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3993. size="5183988"
  3994. />
  3995. <package
  3996. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3997. size="5183988"
  3998. />
  3999. <package
  4000. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  4001. size="5183988"
  4002. />
  4003. </otaPackages>
  4004. </productMenu>
  4005. <productMenu id="wa"
  4006. type="0" >
  4007. </productMenu>
  4008. <productMenu id="led"
  4009. type="5" >
  4010. <productMenuType version="1.0.1"
  4011. type="4"
  4012. />
  4013. </productMenu>
  4014. <productMenu id="led+"
  4015. type="2"
  4016. url="1" >
  4017. <productMenuType version="1.0.1"
  4018. type="-1"
  4019. />
  4020. </productMenu>
  4021. <productMenu id="meshIntercom"
  4022. type="30" >
  4023. </productMenu>
  4024. <productMenu id="meshIntercom+"
  4025. type="3"
  4026. url="2" >
  4027. <productMenuURL version="1.0.4"
  4028. url="10"
  4029. />
  4030. </productMenu>
  4031. <productMenu id="waveIntercom"
  4032. type="1" >
  4033. <productMenuType version="1.0.9"
  4034. type="0"
  4035. />
  4036. </productMenu>
  4037. <productMenu id="fmradio"
  4038. type="0" >
  4039. </productMenu>
  4040. <productMenu id="phone"
  4041. type="1" >
  4042. </productMenu>
  4043. <productMenu id="music"
  4044. type="1" >
  4045. </productMenu>
  4046. <productMenu id="musicSharing"
  4047. type="0" >
  4048. </productMenu>
  4049. <productMenu id="deviceSetting"
  4050. type="1"
  4051. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4052. <productMenuURL version="1.2.4"
  4053. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4054. />
  4055. <productMenuURL version="1.2.1"
  4056. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4057. />
  4058. <productMenuURL version="1.0.4"
  4059. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4060. />
  4061. <productMenuURL version="1.0.1"
  4062. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="quickGuide"
  4066. type="0"
  4067. url=""
  4068. size="1.12MB" >
  4069. </productMenu>
  4070. <productMenu id="userGuide"
  4071. type="1"
  4072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4073. size="2.0MB" >
  4074. </productMenu>
  4075. <productMenu id="videoGuide"
  4076. type="0"
  4077. url=""
  4078. size="3.41MB" >
  4079. </productMenu>
  4080. <productMenu id="connectGuide"
  4081. type="1"
  4082. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4083. size="1.12MB" >
  4084. </productMenu>
  4085. <productMenu id="volume"
  4086. type="16" >
  4087. <productMenuType version="1.0"
  4088. type="13"
  4089. />
  4090. </productMenu>
  4091. <productMenu id="volume+"
  4092. type="2"
  4093. url="0x6004" >
  4094. </productMenu>
  4095. <productMenu id="battery"
  4096. type="1" >
  4097. </productMenu>
  4098. <productID id="6A04"
  4099. />
  4100. <productGroupable type="0"
  4101. />
  4102. </product>
  4103. <product id="PHANTOMEasyLink"
  4104. name="PHANTOM EasyLink"
  4105. series="Helmet"
  4106. latestVersion="0.1"
  4107. latestVersionVoicePrompt="1.2"
  4108. show = "-1" >
  4109. <productMenu id="protocol"
  4110. type="2" >
  4111. </productMenu>
  4112. <productMenu id="ota"
  4113. type="0" >
  4114. <otaLanguages>
  4115. <otaLanguage
  4116. id="0"
  4117. name="English"
  4118. package="0"
  4119. />
  4120. <otaLanguage
  4121. id="0"
  4122. name="French"
  4123. package="1"
  4124. />
  4125. <otaLanguage
  4126. id="0"
  4127. name="Spanish"
  4128. package="2"
  4129. />
  4130. <otaLanguage
  4131. id="0"
  4132. name="Italian"
  4133. package="3"
  4134. />
  4135. <otaLanguage
  4136. id="0"
  4137. name="German"
  4138. package="4"
  4139. />
  4140. <otaLanguage
  4141. id="0"
  4142. name="Dutch"
  4143. package="5"
  4144. />
  4145. <otaLanguage
  4146. id="0"
  4147. name="Russian"
  4148. package="6"
  4149. />
  4150. <otaLanguage
  4151. id="0"
  4152. name="Chinese"
  4153. package="7"
  4154. />
  4155. <otaLanguage
  4156. id="0"
  4157. name="Korean"
  4158. package="8"
  4159. />
  4160. <otaLanguage
  4161. id="0"
  4162. name="Japanese"
  4163. package="9"
  4164. />
  4165. <otaLanguage
  4166. id="0"
  4167. name="Finnish"
  4168. package="10"
  4169. />
  4170. <otaLanguage
  4171. id="0"
  4172. name="Polish"
  4173. package="11"
  4174. />
  4175. </otaLanguages>
  4176. <otaPackages>
  4177. <package
  4178. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4179. size="5183988"
  4180. />
  4181. <package
  4182. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4183. size="5183988"
  4184. />
  4185. <package
  4186. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4187. size="5183988"
  4188. />
  4189. <package
  4190. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4191. size="5183988"
  4192. />
  4193. <package
  4194. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4195. size="5183988"
  4196. />
  4197. <package
  4198. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4199. size="5183988"
  4200. />
  4201. <package
  4202. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4203. size="5183988"
  4204. />
  4205. <package
  4206. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4207. size="5183988"
  4208. />
  4209. <package
  4210. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4211. size="5183988"
  4212. />
  4213. <package
  4214. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4215. size="5183988"
  4216. />
  4217. <package
  4218. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4219. size="5183988"
  4220. />
  4221. <package
  4222. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4223. size="5183988"
  4224. />
  4225. </otaPackages>
  4226. </productMenu>
  4227. <productMenu id="meshIntercom"
  4228. type="30" >
  4229. </productMenu>
  4230. <productMenu id="meshIntercom+"
  4231. type="3"
  4232. url="2" >
  4233. </productMenu>
  4234. <productMenu id="waveIntercom"
  4235. type="1" >
  4236. </productMenu>
  4237. <productMenu id="fmradio"
  4238. type="0" >
  4239. </productMenu>
  4240. <productMenu id="phone"
  4241. type="1" >
  4242. </productMenu>
  4243. <productMenu id="music"
  4244. type="1" >
  4245. </productMenu>
  4246. <productMenu id="musicSharing"
  4247. type="0" >
  4248. </productMenu>
  4249. <productMenu id="deviceSetting"
  4250. type="1"
  4251. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4252. </productMenu>
  4253. <productMenu id="quickGuide"
  4254. type="0"
  4255. url=""
  4256. size="1.12MB" >
  4257. </productMenu>
  4258. <productMenu id="userGuide"
  4259. type="1"
  4260. url=""
  4261. size="2.0MB" >
  4262. </productMenu>
  4263. <productMenu id="videoGuide"
  4264. type="0"
  4265. url=""
  4266. size="3.41MB" >
  4267. </productMenu>
  4268. <productMenu id="connectGuide"
  4269. type="0"
  4270. url=""
  4271. size="1.12MB" >
  4272. </productMenu>
  4273. <productMenu id="volume"
  4274. type="16" >
  4275. </productMenu>
  4276. <productMenu id="battery"
  4277. type="1" >
  4278. </productMenu>
  4279. <productID id="6A18"
  4280. />
  4281. <productGroupable type="0"
  4282. />
  4283. </product>
  4284. <product id="SPIDERXSlim"
  4285. name="SPIDER X Slim"
  4286. series="SPIDER"
  4287. latestVersion="0.9"
  4288. latestVersionVoicePrompt="1.2"
  4289. show = "-1" >
  4290. <productMenu id="protocol"
  4291. type="2" >
  4292. </productMenu>
  4293. <productMenu id="ota"
  4294. type="2" >
  4295. <otaLanguages>
  4296. <otaLanguage
  4297. id="0"
  4298. name="English"
  4299. package="0"
  4300. />
  4301. <otaLanguage
  4302. id="0"
  4303. name="French"
  4304. package="1"
  4305. />
  4306. <otaLanguage
  4307. id="0"
  4308. name="Spanish"
  4309. package="2"
  4310. />
  4311. <otaLanguage
  4312. id="0"
  4313. name="Italian"
  4314. package="3"
  4315. />
  4316. <otaLanguage
  4317. id="0"
  4318. name="German"
  4319. package="4"
  4320. />
  4321. <otaLanguage
  4322. id="0"
  4323. name="Dutch"
  4324. package="5"
  4325. />
  4326. <otaLanguage
  4327. id="0"
  4328. name="Russian"
  4329. package="6"
  4330. />
  4331. <otaLanguage
  4332. id="0"
  4333. name="Chinese"
  4334. package="7"
  4335. />
  4336. <otaLanguage
  4337. id="0"
  4338. name="Korean"
  4339. package="8"
  4340. />
  4341. <otaLanguage
  4342. id="0"
  4343. name="Japanese"
  4344. package="9"
  4345. />
  4346. <otaLanguage
  4347. id="0"
  4348. name="Finnish"
  4349. package="10"
  4350. />
  4351. <otaLanguage
  4352. id="0"
  4353. name="Polish"
  4354. package="11"
  4355. />
  4356. </otaLanguages>
  4357. <otaPackages>
  4358. <package
  4359. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4360. size="5183988"
  4361. />
  4362. <package
  4363. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4364. size="5183988"
  4365. />
  4366. <package
  4367. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4368. size="5183988"
  4369. />
  4370. <package
  4371. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4372. size="5183988"
  4373. />
  4374. <package
  4375. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4376. size="5183988"
  4377. />
  4378. <package
  4379. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4380. size="5183988"
  4381. />
  4382. <package
  4383. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4384. size="5183988"
  4385. />
  4386. <package
  4387. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4388. size="5183988"
  4389. />
  4390. <package
  4391. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4392. size="5183988"
  4393. />
  4394. <package
  4395. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4396. size="5183988"
  4397. />
  4398. <package
  4399. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4400. size="5183988"
  4401. />
  4402. <package
  4403. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4404. size="5183988"
  4405. />
  4406. </otaPackages>
  4407. </productMenu>
  4408. <productMenu id="meshIntercom"
  4409. type="30" >
  4410. </productMenu>
  4411. <productMenu id="meshIntercom+"
  4412. type="3"
  4413. url="2" >
  4414. </productMenu>
  4415. <productMenu id="waveIntercom"
  4416. type="1" >
  4417. </productMenu>
  4418. <productMenu id="fmradio"
  4419. type="1"
  4420. url="1" >
  4421. </productMenu>
  4422. <productMenu id="phone"
  4423. type="1" >
  4424. </productMenu>
  4425. <productMenu id="music"
  4426. type="1" >
  4427. </productMenu>
  4428. <productMenu id="musicSharing"
  4429. type="0" >
  4430. </productMenu>
  4431. <productMenu id="deviceSetting"
  4432. type="1"
  4433. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4434. </productMenu>
  4435. <productMenu id="quickGuide"
  4436. type="0"
  4437. url=""
  4438. size="1.12MB" >
  4439. </productMenu>
  4440. <productMenu id="userGuide"
  4441. type="1"
  4442. url=""
  4443. size="2.0MB" >
  4444. </productMenu>
  4445. <productMenu id="videoGuide"
  4446. type="0"
  4447. url=""
  4448. size="3.41MB" >
  4449. </productMenu>
  4450. <productMenu id="volume"
  4451. type="16" >
  4452. </productMenu>
  4453. <productMenu id="volume+"
  4454. type="2"
  4455. url="0x6004" >
  4456. </productMenu>
  4457. <productMenu id="appearance"
  4458. type="1"
  4459. url="2|white,silver,chrome,black" >
  4460. </productMenu>
  4461. <productMenu id="battery"
  4462. type="1" >
  4463. </productMenu>
  4464. <productID id="6A07"
  4465. />
  4466. <productGroupable type="0"
  4467. />
  4468. </product>
  4469. <product id="XFITM"
  4470. name="X-FIT M"
  4471. series="SPIDER"
  4472. latestVersion="0.1.11"
  4473. latestVersionVoicePrompt="1.1"
  4474. show = "-1" >
  4475. <productMenu id="protocol"
  4476. type="2" >
  4477. </productMenu>
  4478. <productMenu id="ota"
  4479. type="0" >
  4480. <otaLanguages>
  4481. <otaLanguage
  4482. id="0"
  4483. name="English"
  4484. package="0"
  4485. />
  4486. <otaLanguage
  4487. id="0"
  4488. name="French"
  4489. package="1"
  4490. />
  4491. <otaLanguage
  4492. id="0"
  4493. name="Spanish"
  4494. package="2"
  4495. />
  4496. <otaLanguage
  4497. id="0"
  4498. name="Italian"
  4499. package="3"
  4500. />
  4501. <otaLanguage
  4502. id="0"
  4503. name="German"
  4504. package="4"
  4505. />
  4506. <otaLanguage
  4507. id="0"
  4508. name="Dutch"
  4509. package="5"
  4510. />
  4511. <otaLanguage
  4512. id="0"
  4513. name="Russian"
  4514. package="6"
  4515. />
  4516. <otaLanguage
  4517. id="0"
  4518. name="Chinese"
  4519. package="7"
  4520. />
  4521. <otaLanguage
  4522. id="0"
  4523. name="Korean"
  4524. package="8"
  4525. />
  4526. <otaLanguage
  4527. id="0"
  4528. name="Japanese"
  4529. package="9"
  4530. />
  4531. <otaLanguage
  4532. id="0"
  4533. name="Finnish"
  4534. package="10"
  4535. />
  4536. <otaLanguage
  4537. id="0"
  4538. name="Polish"
  4539. package="11"
  4540. />
  4541. </otaLanguages>
  4542. <otaPackages>
  4543. <package
  4544. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4545. size="5183988"
  4546. />
  4547. <package
  4548. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4549. size="5183988"
  4550. />
  4551. <package
  4552. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4553. size="5183988"
  4554. />
  4555. <package
  4556. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4557. size="5183988"
  4558. />
  4559. <package
  4560. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4561. size="5183988"
  4562. />
  4563. <package
  4564. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4565. size="5183988"
  4566. />
  4567. <package
  4568. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4569. size="5183988"
  4570. />
  4571. <package
  4572. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4573. size="5183988"
  4574. />
  4575. <package
  4576. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4577. size="5183988"
  4578. />
  4579. <package
  4580. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4581. size="5183988"
  4582. />
  4583. <package
  4584. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4585. size="5183988"
  4586. />
  4587. <package
  4588. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4589. size="5183988"
  4590. />
  4591. </otaPackages>
  4592. </productMenu>
  4593. <productMenu id="meshIntercom"
  4594. type="30" >
  4595. </productMenu>
  4596. <productMenu id="meshIntercom+"
  4597. type="3"
  4598. url="2" >
  4599. </productMenu>
  4600. <productMenu id="waveIntercom"
  4601. type="1" >
  4602. </productMenu>
  4603. <productMenu id="fmradio"
  4604. type="1"
  4605. url="1" >
  4606. </productMenu>
  4607. <productMenu id="phone"
  4608. type="1" >
  4609. </productMenu>
  4610. <productMenu id="music"
  4611. type="1" >
  4612. </productMenu>
  4613. <productMenu id="musicSharing"
  4614. type="0" >
  4615. </productMenu>
  4616. <productMenu id="deviceSetting"
  4617. type="1"
  4618. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4619. </productMenu>
  4620. <productMenu id="quickGuide"
  4621. type="0"
  4622. url=""
  4623. size="1.12MB" >
  4624. </productMenu>
  4625. <productMenu id="userGuide"
  4626. type="1"
  4627. url=""
  4628. size="2.0MB" >
  4629. </productMenu>
  4630. <productMenu id="videoGuide"
  4631. type="0"
  4632. url=""
  4633. size="3.41MB" >
  4634. </productMenu>
  4635. <productMenu id="volume"
  4636. type="16" >
  4637. </productMenu>
  4638. <productMenu id="volume+"
  4639. type="2"
  4640. url="0x6004" >
  4641. </productMenu>
  4642. <productMenu id="battery"
  4643. type="1" >
  4644. </productMenu>
  4645. <productID id="6A17"
  4646. />
  4647. <productGroupable type="0"
  4648. />
  4649. </product>
  4650. <product id="VORTEXMESH"
  4651. name="VORTEX MESH"
  4652. series="Helmet"
  4653. latestVersion="0.1.11"
  4654. latestVersionVoicePrompt="1.1"
  4655. show = "-1" >
  4656. <productMenu id="protocol"
  4657. type="2" >
  4658. </productMenu>
  4659. <productMenu id="ota"
  4660. type="0" >
  4661. <otaLanguages>
  4662. <otaLanguage
  4663. id="0"
  4664. name="English"
  4665. package="0"
  4666. />
  4667. <otaLanguage
  4668. id="0"
  4669. name="French"
  4670. package="1"
  4671. />
  4672. <otaLanguage
  4673. id="0"
  4674. name="Spanish"
  4675. package="2"
  4676. />
  4677. <otaLanguage
  4678. id="0"
  4679. name="Italian"
  4680. package="3"
  4681. />
  4682. <otaLanguage
  4683. id="0"
  4684. name="German"
  4685. package="4"
  4686. />
  4687. <otaLanguage
  4688. id="0"
  4689. name="Dutch"
  4690. package="5"
  4691. />
  4692. <otaLanguage
  4693. id="0"
  4694. name="Russian"
  4695. package="6"
  4696. />
  4697. <otaLanguage
  4698. id="0"
  4699. name="Chinese"
  4700. package="7"
  4701. />
  4702. <otaLanguage
  4703. id="0"
  4704. name="Korean"
  4705. package="8"
  4706. />
  4707. <otaLanguage
  4708. id="0"
  4709. name="Japanese"
  4710. package="9"
  4711. />
  4712. <otaLanguage
  4713. id="0"
  4714. name="Finnish"
  4715. package="10"
  4716. />
  4717. <otaLanguage
  4718. id="0"
  4719. name="Polish"
  4720. package="11"
  4721. />
  4722. </otaLanguages>
  4723. <otaPackages>
  4724. <package
  4725. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4726. size="5183988"
  4727. />
  4728. <package
  4729. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4730. size="5183988"
  4731. />
  4732. <package
  4733. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4734. size="5183988"
  4735. />
  4736. <package
  4737. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4738. size="5183988"
  4739. />
  4740. <package
  4741. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4742. size="5183988"
  4743. />
  4744. <package
  4745. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4746. size="5183988"
  4747. />
  4748. <package
  4749. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4750. size="5183988"
  4751. />
  4752. <package
  4753. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4754. size="5183988"
  4755. />
  4756. <package
  4757. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4758. size="5183988"
  4759. />
  4760. <package
  4761. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4762. size="5183988"
  4763. />
  4764. <package
  4765. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4766. size="5183988"
  4767. />
  4768. <package
  4769. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4770. size="5183988"
  4771. />
  4772. </otaPackages>
  4773. </productMenu>
  4774. <productMenu id="wa"
  4775. type="0" >
  4776. </productMenu>
  4777. <productMenu id="led"
  4778. type="5" >
  4779. </productMenu>
  4780. <productMenu id="led+"
  4781. type="2"
  4782. url="1" >
  4783. </productMenu>
  4784. <productMenu id="meshIntercom"
  4785. type="30" >
  4786. </productMenu>
  4787. <productMenu id="meshIntercom+"
  4788. type="3"
  4789. url="2" >
  4790. </productMenu>
  4791. <productMenu id="waveIntercom"
  4792. type="1" >
  4793. </productMenu>
  4794. <productMenu id="fmradio"
  4795. type="0" >
  4796. </productMenu>
  4797. <productMenu id="phone"
  4798. type="1" >
  4799. </productMenu>
  4800. <productMenu id="music"
  4801. type="1" >
  4802. </productMenu>
  4803. <productMenu id="musicSharing"
  4804. type="0" >
  4805. </productMenu>
  4806. <productMenu id="deviceSetting"
  4807. type="1"
  4808. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4809. </productMenu>
  4810. <productMenu id="quickGuide"
  4811. type="0"
  4812. url=""
  4813. size="1.12MB" >
  4814. </productMenu>
  4815. <productMenu id="userGuide"
  4816. type="1"
  4817. url=""
  4818. size="2.0MB" >
  4819. </productMenu>
  4820. <productMenu id="videoGuide"
  4821. type="0"
  4822. url=""
  4823. size="3.41MB" >
  4824. </productMenu>
  4825. <productMenu id="volume"
  4826. type="16" >
  4827. </productMenu>
  4828. <productMenu id="battery"
  4829. type="1" >
  4830. </productMenu>
  4831. <productID id="6A12"
  4832. />
  4833. <productGroupable type="0"
  4834. />
  4835. </product>
  4836. <product id="MeshOn"
  4837. name="Mesh ON"
  4838. series="60"
  4839. latestVersion="1.0.1"
  4840. latestVersionVoicePrompt="0.7"
  4841. show = "-1" >
  4842. <productMenu id="protocol"
  4843. type="2" >
  4844. </productMenu>
  4845. <productMenu id="ota"
  4846. type="2" >
  4847. <otaPackages>
  4848. <package
  4849. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4850. size="2945812"
  4851. />
  4852. </otaPackages>
  4853. </productMenu>
  4854. <productMenu id="meshIntercom+"
  4855. type="3"
  4856. url="4" >
  4857. </productMenu>
  4858. <productMenu id="waveIntercom"
  4859. type="0" >
  4860. </productMenu>
  4861. <productMenu id="phone"
  4862. type="0" >
  4863. </productMenu>
  4864. <productMenu id="music"
  4865. type="0" >
  4866. </productMenu>
  4867. <productMenu id="musicSharing"
  4868. type="0" >
  4869. </productMenu>
  4870. <productMenu id="deviceSetting"
  4871. type="1"
  4872. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4873. </productMenu>
  4874. <productMenu id="userGuide"
  4875. type="1"
  4876. url=""
  4877. size="2.0MB" >
  4878. </productMenu>
  4879. <productMenu id="bluetoothHeadset"
  4880. type="1"
  4881. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4882. </productMenu>
  4883. <productMenu id="volume"
  4884. type="0" >
  4885. </productMenu>
  4886. <productMenu id="battery"
  4887. type="1" >
  4888. </productMenu>
  4889. <productID id="684E"
  4890. />
  4891. <productGroupable type="0"
  4892. />
  4893. </product>
  4894. <product id="Impulse"
  4895. name="Impulse"
  4896. series="Helmet"
  4897. latestVersion="1.4.1"
  4898. show = "1" >
  4899. <productMenu id="protocol"
  4900. type="2" >
  4901. </productMenu>
  4902. <productMenu id="alexa"
  4903. type="0" >
  4904. </productMenu>
  4905. <productMenu id="ota"
  4906. type="0" >
  4907. </productMenu>
  4908. <productMenu id="wa"
  4909. type="24" >
  4910. </productMenu>
  4911. <productMenu id="manager"
  4912. type="0" >
  4913. </productMenu>
  4914. <productMenu id="sip"
  4915. type="1" >
  4916. </productMenu>
  4917. <productMenu id="led"
  4918. type="1" >
  4919. <productMenuType version="1.0.1"
  4920. type="2"
  4921. />
  4922. <productMenuType version="1.0"
  4923. type="1"
  4924. />
  4925. </productMenu>
  4926. <productMenu id="meshIntercom"
  4927. type="30" >
  4928. <productMenuType version="1.1.1"
  4929. type="20"
  4930. />
  4931. </productMenu>
  4932. <productMenu id="meshIntercom+"
  4933. type="3"
  4934. url="2" >
  4935. <productMenuType version="1.3.9"
  4936. type="2"
  4937. />
  4938. <productMenuURL version="1.1.1"
  4939. url="0"
  4940. />
  4941. </productMenu>
  4942. <productMenu id="waveIntercom"
  4943. type="1" >
  4944. <productMenuType version="1.3.9"
  4945. type="0"
  4946. />
  4947. </productMenu>
  4948. <productMenu id="bluetoothIntercom"
  4949. type="1" >
  4950. </productMenu>
  4951. <productMenu id="phone"
  4952. type="1" >
  4953. </productMenu>
  4954. <productMenu id="music"
  4955. type="1" >
  4956. </productMenu>
  4957. <productMenu id="fmradio"
  4958. type="1" >
  4959. </productMenu>
  4960. <productMenu id="deviceSetting"
  4961. type="1"
  4962. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4963. <productMenuURL version="1.3.9"
  4964. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4965. />
  4966. <productMenuURL version="1.1.1"
  4967. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4968. />
  4969. <productMenuURL version="1.0.4"
  4970. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4971. />
  4972. </productMenu>
  4973. <productMenu id="quickGuide"
  4974. type="0"
  4975. url=""
  4976. size="344KB" >
  4977. </productMenu>
  4978. <productMenu id="userGuide"
  4979. type="1"
  4980. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4981. size="3.41MB" >
  4982. </productMenu>
  4983. <productMenu id="connectGuide"
  4984. type="1"
  4985. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4986. size="1.12MB" >
  4987. </productMenu>
  4988. <productMenu id="volume"
  4989. type="11" >
  4990. </productMenu>
  4991. <productMenu id="battery"
  4992. type="1" >
  4993. </productMenu>
  4994. <productID id="3148"
  4995. />
  4996. <productGroupable type="0"
  4997. />
  4998. </product>
  4999. <product id="Impulse"
  5000. name="Impulse"
  5001. series="Helmet"
  5002. latestVersion="2.0"
  5003. show = "-1" >
  5004. <productMenu id="protocol"
  5005. type="2" >
  5006. </productMenu>
  5007. <productMenu id="alexa"
  5008. type="0" >
  5009. </productMenu>
  5010. <productMenu id="ota"
  5011. type="0" >
  5012. </productMenu>
  5013. <productMenu id="wa"
  5014. type="8" >
  5015. </productMenu>
  5016. <productMenu id="manager"
  5017. type="0" >
  5018. </productMenu>
  5019. <productMenu id="sip"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="led"
  5023. type="3" >
  5024. </productMenu>
  5025. <productMenu id="meshIntercom"
  5026. type="20" >
  5027. </productMenu>
  5028. <productMenu id="bluetoothIntercom"
  5029. type="1" >
  5030. </productMenu>
  5031. <productMenu id="phone"
  5032. type="1" >
  5033. </productMenu>
  5034. <productMenu id="music"
  5035. type="1" >
  5036. </productMenu>
  5037. <productMenu id="fmradio"
  5038. type="1" >
  5039. </productMenu>
  5040. <productMenu id="deviceSetting"
  5041. type="1"
  5042. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5043. </productMenu>
  5044. <productMenu id="quickGuide"
  5045. type="1"
  5046. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5047. size="344KB" >
  5048. </productMenu>
  5049. <productMenu id="userGuide"
  5050. type="1"
  5051. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5052. size="3.41MB" >
  5053. </productMenu>
  5054. <productMenu id="volume"
  5055. type="11" >
  5056. </productMenu>
  5057. <productMenu id="battery"
  5058. type="1" >
  5059. </productMenu>
  5060. <productID id="3221"
  5061. />
  5062. <productGroupable type="0"
  5063. />
  5064. </product>
  5065. <product id="Stryker"
  5066. name="Stryker"
  5067. series="Helmet"
  5068. latestVersion="1.4.1"
  5069. show = "1" >
  5070. <productMenu id="protocol"
  5071. type="2" >
  5072. </productMenu>
  5073. <productMenu id="alexa"
  5074. type="0" >
  5075. </productMenu>
  5076. <productMenu id="ota"
  5077. type="0" >
  5078. </productMenu>
  5079. <productMenu id="wa"
  5080. type="40" >
  5081. </productMenu>
  5082. <productMenu id="manager"
  5083. type="0" >
  5084. </productMenu>
  5085. <productMenu id="sip"
  5086. type="1" >
  5087. </productMenu>
  5088. <productMenu id="led"
  5089. type="1" >
  5090. <productMenuType version="1.0.1"
  5091. type="2"
  5092. />
  5093. <productMenuType version="1.0"
  5094. type="1"
  5095. />
  5096. </productMenu>
  5097. <productMenu id="meshIntercom"
  5098. type="30" >
  5099. <productMenuType version="1.1.1"
  5100. type="20"
  5101. />
  5102. </productMenu>
  5103. <productMenu id="meshIntercom+"
  5104. type="3"
  5105. url="2" >
  5106. <productMenuType version="1.3.9"
  5107. type="2"
  5108. />
  5109. <productMenuURL version="1.1.1"
  5110. url="0"
  5111. />
  5112. </productMenu>
  5113. <productMenu id="waveIntercom"
  5114. type="1" >
  5115. <productMenuType version="1.2.9"
  5116. type="0"
  5117. />
  5118. </productMenu>
  5119. <productMenu id="bluetoothIntercom"
  5120. type="1" >
  5121. </productMenu>
  5122. <productMenu id="phone"
  5123. type="1" >
  5124. </productMenu>
  5125. <productMenu id="music"
  5126. type="1" >
  5127. </productMenu>
  5128. <productMenu id="fmradio"
  5129. type="1" >
  5130. </productMenu>
  5131. <productMenu id="deviceSetting"
  5132. type="1"
  5133. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5134. <productMenuURL version="1.3.9"
  5135. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5136. />
  5137. <productMenuURL version="1.1.1"
  5138. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5139. />
  5140. <productMenuURL version="1.0.4"
  5141. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5142. />
  5143. </productMenu>
  5144. <productMenu id="quickGuide"
  5145. type="0"
  5146. url=""
  5147. size="344KB" >
  5148. </productMenu>
  5149. <productMenu id="userGuide"
  5150. type="1"
  5151. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5152. size="3.41MB" >
  5153. </productMenu>
  5154. <productMenu id="connectGuide"
  5155. type="1"
  5156. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5157. size="1.12MB" >
  5158. </productMenu>
  5159. <productMenu id="volume"
  5160. type="11" >
  5161. </productMenu>
  5162. <productMenu id="battery"
  5163. type="1" >
  5164. </productMenu>
  5165. <productID id="3154"
  5166. />
  5167. <productGroupable type="0"
  5168. />
  5169. </product>
  5170. <product id="SRL3Plus"
  5171. name="SRL3 Plus"
  5172. series="60"
  5173. latestVersion="0.9.5"
  5174. latestVersionMesh="0.19"
  5175. latestVersionVoicePrompt="1.2"
  5176. show = "-1" >
  5177. <productMenu id="protocol"
  5178. type="2" >
  5179. </productMenu>
  5180. <productMenu id="ota"
  5181. type="2" >
  5182. <otaLanguages>
  5183. <otaLanguage
  5184. id="0"
  5185. name="English"
  5186. package="0"
  5187. />
  5188. <otaLanguage
  5189. id="0"
  5190. name="French"
  5191. package="1"
  5192. />
  5193. <otaLanguage
  5194. id="0"
  5195. name="Spanish"
  5196. package="2"
  5197. />
  5198. <otaLanguage
  5199. id="0"
  5200. name="Italian"
  5201. package="3"
  5202. />
  5203. <otaLanguage
  5204. id="0"
  5205. name="German"
  5206. package="4"
  5207. />
  5208. <otaLanguage
  5209. id="0"
  5210. name="Dutch"
  5211. package="5"
  5212. />
  5213. <otaLanguage
  5214. id="0"
  5215. name="Russian"
  5216. package="6"
  5217. />
  5218. <otaLanguage
  5219. id="0"
  5220. name="Chinese"
  5221. package="7"
  5222. />
  5223. <otaLanguage
  5224. id="0"
  5225. name="Korean"
  5226. package="8"
  5227. />
  5228. <otaLanguage
  5229. id="0"
  5230. name="Japanese"
  5231. package="9"
  5232. />
  5233. <otaLanguage
  5234. id="0"
  5235. name="Finnish"
  5236. package="10"
  5237. />
  5238. </otaLanguages>
  5239. <otaPackages>
  5240. <package
  5241. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5242. size="5183988"
  5243. />
  5244. <package
  5245. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5246. size="5183988"
  5247. />
  5248. <package
  5249. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5250. size="5183988"
  5251. />
  5252. <package
  5253. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5254. size="5183988"
  5255. />
  5256. <package
  5257. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5258. size="5183988"
  5259. />
  5260. <package
  5261. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5262. size="5183988"
  5263. />
  5264. <package
  5265. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5266. size="5183988"
  5267. />
  5268. <package
  5269. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5270. size="5183988"
  5271. />
  5272. <package
  5273. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5274. size="5183988"
  5275. />
  5276. <package
  5277. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5278. size="5183988"
  5279. />
  5280. <package
  5281. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5282. size="5183988"
  5283. />
  5284. </otaPackages>
  5285. </productMenu>
  5286. <productMenu id="sip"
  5287. type="1" >
  5288. </productMenu>
  5289. <productMenu id="illusion"
  5290. type="1" >
  5291. </productMenu>
  5292. <productMenu id="meshIntercom+"
  5293. type="3"
  5294. url="2" >
  5295. </productMenu>
  5296. <productMenu id="waveIntercom"
  5297. type="1" >
  5298. </productMenu>
  5299. <productMenu id="bluetoothIntercom"
  5300. type="1"
  5301. url="2" >
  5302. </productMenu>
  5303. <productMenu id="bluetoothIntercomGrouping"
  5304. type="0" >
  5305. </productMenu>
  5306. <productMenu id="fmradio"
  5307. type="1"
  5308. url="1" >
  5309. </productMenu>
  5310. <productMenu id="phone"
  5311. type="1" >
  5312. </productMenu>
  5313. <productMenu id="music"
  5314. type="1" >
  5315. </productMenu>
  5316. <productMenu id="musicSharing"
  5317. type="0" >
  5318. </productMenu>
  5319. <productMenu id="deviceSetting"
  5320. type="1"
  5321. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5322. </productMenu>
  5323. <productMenu id="quickGuide"
  5324. type="0"
  5325. url=""
  5326. size="1.12MB" >
  5327. </productMenu>
  5328. <productMenu id="userGuide"
  5329. type="0"
  5330. url=""
  5331. size="2.0MB" >
  5332. </productMenu>
  5333. <productMenu id="videoGuide"
  5334. type="0"
  5335. url=""
  5336. size="3.41MB" >
  5337. </productMenu>
  5338. <productMenu id="volume"
  5339. type="16" >
  5340. </productMenu>
  5341. <productMenu id="soundMode"
  5342. type="1" >
  5343. </productMenu>
  5344. <productMenu id="battery"
  5345. type="1" >
  5346. </productMenu>
  5347. <productID id="6A08"
  5348. />
  5349. <productGroupable type="0"
  5350. />
  5351. </product>
  5352. <product id="SRL3"
  5353. name="SRL3"
  5354. series="SRL"
  5355. latestVersion="1.5"
  5356. show = "1" >
  5357. <productMenu id="protocol"
  5358. type="2" >
  5359. </productMenu>
  5360. <productMenu id="alexa"
  5361. type="0" >
  5362. </productMenu>
  5363. <productMenu id="ota"
  5364. type="0" >
  5365. </productMenu>
  5366. <productMenu id="wa"
  5367. type="1" >
  5368. </productMenu>
  5369. <productMenu id="sip"
  5370. type="1" >
  5371. </productMenu>
  5372. <productMenu id="meshIntercom"
  5373. type="30" >
  5374. </productMenu>
  5375. <productMenu id="meshIntercom+"
  5376. type="3"
  5377. url="2" >
  5378. <productMenuType version="1.3.9"
  5379. type="2"
  5380. />
  5381. </productMenu>
  5382. <productMenu id="waveIntercom"
  5383. type="1" >
  5384. <productMenuType version="1.4.9"
  5385. type="0"
  5386. />
  5387. </productMenu>
  5388. <productMenu id="bluetoothIntercom"
  5389. type="1" >
  5390. </productMenu>
  5391. <productMenu id="phone"
  5392. type="1" >
  5393. </productMenu>
  5394. <productMenu id="music"
  5395. type="1" >
  5396. </productMenu>
  5397. <productMenu id="fmradio"
  5398. type="1" >
  5399. </productMenu>
  5400. <productMenu id="deviceSetting"
  5401. type="1"
  5402. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5403. <productMenuURL version="1.3"
  5404. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5405. />
  5406. </productMenu>
  5407. <productMenu id="quickGuide"
  5408. type="0"
  5409. url=""
  5410. size="344KB" >
  5411. </productMenu>
  5412. <productMenu id="userGuide"
  5413. type="1"
  5414. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5415. size="3.41MB" >
  5416. </productMenu>
  5417. <productMenu id="connectGuide"
  5418. type="1"
  5419. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5420. size="1.12MB" >
  5421. </productMenu>
  5422. <productMenu id="volume"
  5423. type="11" >
  5424. </productMenu>
  5425. <productMenu id="battery"
  5426. type="1" >
  5427. </productMenu>
  5428. <productID id="3219"
  5429. />
  5430. <productGroupable type="0"
  5431. />
  5432. </product>
  5433. <product id="SRL_Mesh"
  5434. name="SRL-Mesh"
  5435. series="SRL"
  5436. latestVersion="1.7.1"
  5437. show = "1" >
  5438. <productMenu id="protocol"
  5439. type="2" >
  5440. </productMenu>
  5441. <productMenu id="alexa"
  5442. type="0" >
  5443. </productMenu>
  5444. <productMenu id="ota"
  5445. type="0" >
  5446. </productMenu>
  5447. <productMenu id="wa"
  5448. type="1" >
  5449. </productMenu>
  5450. <productMenu id="sip"
  5451. type="1" >
  5452. </productMenu>
  5453. <productMenu id="meshIntercom"
  5454. type="30" >
  5455. <productMenuType version="1.1.1"
  5456. type="20"
  5457. />
  5458. </productMenu>
  5459. <productMenu id="meshIntercom+"
  5460. type="3"
  5461. url="2" >
  5462. <productMenuType version="1.5.9"
  5463. type="2"
  5464. />
  5465. <productMenuURL version="1.1.1"
  5466. url="0"
  5467. />
  5468. </productMenu>
  5469. <productMenu id="waveIntercom"
  5470. type="1" >
  5471. <productMenuType version="1.6.9"
  5472. type="0"
  5473. />
  5474. </productMenu>
  5475. <productMenu id="bluetoothIntercom"
  5476. type="1" >
  5477. </productMenu>
  5478. <productMenu id="phone"
  5479. type="1" >
  5480. </productMenu>
  5481. <productMenu id="music"
  5482. type="1" >
  5483. </productMenu>
  5484. <productMenu id="fmradio"
  5485. type="1" >
  5486. </productMenu>
  5487. <productMenu id="deviceSetting"
  5488. type="1"
  5489. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5490. <productMenuURL version="1.5"
  5491. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5492. />
  5493. <productMenuURL version="1.1.1"
  5494. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5495. />
  5496. <productMenuURL version="1.0.3"
  5497. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5498. />
  5499. </productMenu>
  5500. <productMenu id="quickGuide"
  5501. type="0"
  5502. url=""
  5503. size="344KB" >
  5504. </productMenu>
  5505. <productMenu id="userGuide"
  5506. type="1"
  5507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5508. size="3.41MB" >
  5509. </productMenu>
  5510. <productMenu id="connectGuide"
  5511. type="1"
  5512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5513. size="1.12MB" >
  5514. </productMenu>
  5515. <productMenu id="volume"
  5516. type="11" >
  5517. </productMenu>
  5518. <productMenu id="battery"
  5519. type="1" >
  5520. </productMenu>
  5521. <productID id="3216"
  5522. />
  5523. <productGroupable type="0"
  5524. />
  5525. </product>
  5526. <product id="SRL_EXT"
  5527. name="SRL-EXT"
  5528. series="SRL"
  5529. latestVersion="1.7.1"
  5530. show = "1" >
  5531. <productMenu id="protocol"
  5532. type="2" >
  5533. </productMenu>
  5534. <productMenu id="alexa"
  5535. type="0" >
  5536. </productMenu>
  5537. <productMenu id="ota"
  5538. type="0" >
  5539. </productMenu>
  5540. <productMenu id="wa"
  5541. type="0" >
  5542. </productMenu>
  5543. <productMenu id="sip"
  5544. type="1" >
  5545. </productMenu>
  5546. <productMenu id="meshIntercom"
  5547. type="30" >
  5548. <productMenuType version="1.1.1"
  5549. type="20"
  5550. />
  5551. </productMenu>
  5552. <productMenu id="meshIntercom+"
  5553. type="3"
  5554. url="2" >
  5555. <productMenuType version="1.5.9"
  5556. type="2"
  5557. />
  5558. <productMenuURL version="1.1.1"
  5559. url="0"
  5560. />
  5561. </productMenu>
  5562. <productMenu id="waveIntercom"
  5563. type="1" >
  5564. <productMenuType version="1.6.9"
  5565. type="0"
  5566. />
  5567. </productMenu>
  5568. <productMenu id="bluetoothIntercom"
  5569. type="1" >
  5570. </productMenu>
  5571. <productMenu id="phone"
  5572. type="1" >
  5573. </productMenu>
  5574. <productMenu id="music"
  5575. type="1" >
  5576. </productMenu>
  5577. <productMenu id="fmradio"
  5578. type="1" >
  5579. </productMenu>
  5580. <productMenu id="deviceSetting"
  5581. type="1"
  5582. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5583. <productMenuURL version="1.5"
  5584. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5585. />
  5586. <productMenuURL version="1.1.1"
  5587. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5588. />
  5589. <productMenuURL version="1.0.3"
  5590. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5591. />
  5592. </productMenu>
  5593. <productMenu id="quickGuide"
  5594. type="0"
  5595. url=""
  5596. size="344KB" >
  5597. </productMenu>
  5598. <productMenu id="userGuide"
  5599. type="1"
  5600. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5601. size="3.41MB" >
  5602. </productMenu>
  5603. <productMenu id="connectGuide"
  5604. type="1"
  5605. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5606. size="1.12MB" >
  5607. </productMenu>
  5608. <productMenu id="volume"
  5609. type="11" >
  5610. </productMenu>
  5611. <productMenu id="battery"
  5612. type="1" >
  5613. </productMenu>
  5614. <productID id="3212"
  5615. />
  5616. <productGroupable type="0"
  5617. />
  5618. </product>
  5619. <product id="SRL2"
  5620. name="SRL2"
  5621. series="SRL"
  5622. latestVersion="1.0.9"
  5623. show = "1" >
  5624. <productMenu id="protocol"
  5625. type="0">
  5626. </productMenu>
  5627. <productMenu id="sip"
  5628. type="1" >
  5629. </productMenu>
  5630. <productMenu id="bluetoothIntercom"
  5631. type="1" >
  5632. </productMenu>
  5633. <productMenu id="intercomSetting"
  5634. type="1" >
  5635. </productMenu>
  5636. <productMenu id="phone"
  5637. type="2" >
  5638. </productMenu>
  5639. <productMenu id="fmradio"
  5640. type="3" >
  5641. </productMenu>
  5642. <productMenu id="deviceSetting"
  5643. type="1"
  5644. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5645. </productMenu>
  5646. <productMenu id="quickGuide"
  5647. type="1"
  5648. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5649. size="846KB" >
  5650. </productMenu>
  5651. <productMenu id="userGuide"
  5652. type="1"
  5653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5654. size="1.18MB" >
  5655. </productMenu>
  5656. <productMenu id="connectGuide"
  5657. type="1"
  5658. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5659. size="1.12MB" >
  5660. </productMenu>
  5661. <productID id="4530"
  5662. />
  5663. <productGroupable type="1"
  5664. />
  5665. </product>
  5666. <product id="Neotec2"
  5667. name="SRL Neotec2"
  5668. series="SRL"
  5669. latestVersion="1.1.5"
  5670. show = "1" >
  5671. <productMenu id="protocol"
  5672. type="0">
  5673. </productMenu>
  5674. <productMenu id="sip"
  5675. type="1" >
  5676. </productMenu>
  5677. <productMenu id="bluetoothIntercom"
  5678. type="1" >
  5679. </productMenu>
  5680. <productMenu id="intercomSetting"
  5681. type="1" >
  5682. </productMenu>
  5683. <productMenu id="phone"
  5684. type="2" >
  5685. </productMenu>
  5686. <productMenu id="fmradio"
  5687. type="3" >
  5688. </productMenu>
  5689. <productMenu id="deviceSetting"
  5690. type="1"
  5691. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5692. </productMenu>
  5693. <productMenu id="quickGuide"
  5694. type="0"
  5695. url=""
  5696. size="796KB" >
  5697. </productMenu>
  5698. <productMenu id="userGuide"
  5699. type="1"
  5700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5701. size="1.90MB" >
  5702. </productMenu>
  5703. <productMenu id="connectGuide"
  5704. type="1"
  5705. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5706. size="1.12MB" >
  5707. </productMenu>
  5708. <productID id="4510"
  5709. />
  5710. <productGroupable type="1"
  5711. />
  5712. </product>
  5713. <product id="SPIDERST2ANC"
  5714. name="SPIDER ST2 ANC"
  5715. series="SPIDER"
  5716. latestVersion="0.5.1"
  5717. latestVersionVoicePrompt="0.2"
  5718. latestVersionMesh="0.8"
  5719. show = "-1" >
  5720. <productMenu id="protocol"
  5721. type="2" >
  5722. </productMenu>
  5723. <productMenu id="ota"
  5724. type="0" >
  5725. <otaPackages>
  5726. <package
  5727. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5728. size="2945812"
  5729. />
  5730. </otaPackages>
  5731. </productMenu>
  5732. <productMenu id="wa"
  5733. type="0" >
  5734. </productMenu>
  5735. <productMenu id="led"
  5736. type="1" >
  5737. </productMenu>
  5738. <productMenu id="meshIntercom"
  5739. type="30" >
  5740. </productMenu>
  5741. <productMenu id="fmradio"
  5742. type="1" >
  5743. </productMenu>
  5744. <productMenu id="phone"
  5745. type="1" >
  5746. </productMenu>
  5747. <productMenu id="music"
  5748. type="1" >
  5749. </productMenu>
  5750. <productMenu id="musicSharing"
  5751. type="0" >
  5752. </productMenu>
  5753. <productMenu id="deviceSetting"
  5754. type="1"
  5755. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5756. </productMenu>
  5757. <productMenu id="quickGuide"
  5758. type="1"
  5759. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5760. size="1.12MB" >
  5761. </productMenu>
  5762. <productMenu id="userGuide"
  5763. type="1"
  5764. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5765. size="2.0MB" >
  5766. </productMenu>
  5767. <productMenu id="videoGuide"
  5768. type="1"
  5769. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5770. size="3.41MB" >
  5771. </productMenu>
  5772. <productMenu id="volume"
  5773. type="12" >
  5774. </productMenu>
  5775. <productMenu id="battery"
  5776. type="1" >
  5777. </productMenu>
  5778. <productID id="6A00"
  5779. />
  5780. <productGroupable type="0"
  5781. />
  5782. </product>
  5783. <product id="SPIDER_ST1"
  5784. name="SPIDER ST1"
  5785. series="SPIDER"
  5786. latestVersion="2.5.2"
  5787. latestVersionVoicePrompt="1.6"
  5788. show = "1" >
  5789. <productMenu id="protocol"
  5790. type="2" >
  5791. </productMenu>
  5792. <productMenu id="alexa"
  5793. type="0" >
  5794. </productMenu>
  5795. <productMenu id="ota"
  5796. type="2" >
  5797. <productMenuType version="2.1.9"
  5798. type="0"
  5799. />
  5800. <otaPackages>
  5801. <package
  5802. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5803. size="2945812"
  5804. />
  5805. </otaPackages>
  5806. </productMenu>
  5807. <productMenu id="wa"
  5808. type="0" >
  5809. </productMenu>
  5810. <productMenu id="meshIntercom"
  5811. type="30" >
  5812. <productMenuType version="2.1.1"
  5813. type="20"
  5814. />
  5815. </productMenu>
  5816. <productMenu id="meshIntercom+"
  5817. type="3"
  5818. url="2" >
  5819. <productMenuType version="2.2.9"
  5820. type="2"
  5821. />
  5822. <productMenuURL version="2.1.1"
  5823. url="0"
  5824. />
  5825. </productMenu>
  5826. <productMenu id="waveIntercom"
  5827. type="1" >
  5828. <productMenuType version="2.3.9"
  5829. type="0"
  5830. />
  5831. </productMenu>
  5832. <productMenu id="phone"
  5833. type="1" >
  5834. </productMenu>
  5835. <productMenu id="music"
  5836. type="1" >
  5837. </productMenu>
  5838. <productMenu id="musicSharing"
  5839. type="0" >
  5840. </productMenu>
  5841. <productMenu id="deviceSetting"
  5842. type="1"
  5843. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5844. <productMenuURL version="2.4.9"
  5845. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5846. />
  5847. <productMenuURL version="2.2.2"
  5848. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5849. />
  5850. <productMenuURL version="2.1.1"
  5851. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5852. />
  5853. </productMenu>
  5854. <productMenu id="quickGuide"
  5855. type="0"
  5856. url=""
  5857. size="1.12MB" >
  5858. </productMenu>
  5859. <productMenu id="userGuide"
  5860. type="1"
  5861. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5862. size="2.0MB" >
  5863. </productMenu>
  5864. <productMenu id="videoGuide"
  5865. type="1"
  5866. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5867. size="3.41MB" >
  5868. </productMenu>
  5869. <productMenu id="connectGuide"
  5870. type="1"
  5871. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5872. size="1.12MB" >
  5873. </productMenu>
  5874. <productMenu id="volume"
  5875. type="12" >
  5876. </productMenu>
  5877. <productMenu id="battery"
  5878. type="1" >
  5879. </productMenu>
  5880. <productID id="6800"
  5881. />
  5882. <productGroupable type="0"
  5883. />
  5884. </product>
  5885. <product id="SPIDER_ST1"
  5886. name="SPIDER ST1"
  5887. series="SPIDER"
  5888. latestVersion="1.2.2"
  5889. show = "-1" >
  5890. <productMenu id="protocol"
  5891. type="2" >
  5892. </productMenu>
  5893. <productMenu id="alexa"
  5894. type="0" >
  5895. </productMenu>
  5896. <productMenu id="ota"
  5897. type="0" >
  5898. </productMenu>
  5899. <productMenu id="wa"
  5900. type="0" >
  5901. </productMenu>
  5902. <productMenu id="meshIntercom"
  5903. type="20" >
  5904. </productMenu>
  5905. <productMenu id="phone"
  5906. type="1" >
  5907. </productMenu>
  5908. <productMenu id="music"
  5909. type="1" >
  5910. </productMenu>
  5911. <productMenu id="deviceSetting"
  5912. type="1"
  5913. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5914. </productMenu>
  5915. <productMenu id="quickGuide"
  5916. type="0"
  5917. url=""
  5918. size="1.12MB" >
  5919. </productMenu>
  5920. <productMenu id="userGuide"
  5921. type="1"
  5922. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5923. size="2.0MB" >
  5924. </productMenu>
  5925. <productMenu id="videoGuide"
  5926. type="1"
  5927. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5928. size="3.41MB" >
  5929. </productMenu>
  5930. <productMenu id="volume"
  5931. type="13" >
  5932. <productMenuType version="1.1.6"
  5933. type="14"/>
  5934. </productMenu>
  5935. <productMenu id="battery"
  5936. type="1" >
  5937. </productMenu>
  5938. <productID id="6510"
  5939. />
  5940. <productGroupable type="0"
  5941. />
  5942. </product>
  5943. <product id="SPIDER_RT1"
  5944. name="SPIDER RT1"
  5945. series="SPIDER"
  5946. latestVersion="2.5.2"
  5947. latestVersionVoicePrompt="1.6"
  5948. show = "1" >
  5949. <productMenu id="protocol"
  5950. type="2" >
  5951. </productMenu>
  5952. <productMenu id="alexa"
  5953. type="0" >
  5954. </productMenu>
  5955. <productMenu id="ota"
  5956. type="2" >
  5957. <productMenuType version="2.1.9"
  5958. type="0"
  5959. />
  5960. <otaPackages>
  5961. <package
  5962. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5963. size="2945812"
  5964. />
  5965. </otaPackages>
  5966. </productMenu>
  5967. <productMenu id="wa"
  5968. type="0" >
  5969. </productMenu>
  5970. <productMenu id="meshIntercom"
  5971. type="30" >
  5972. <productMenuType version="2.1.1"
  5973. type="20"
  5974. />
  5975. </productMenu>
  5976. <productMenu id="meshIntercom+"
  5977. type="3"
  5978. url="2" >
  5979. <productMenuType version="2.2.9"
  5980. type="2"
  5981. />
  5982. <productMenuURL version="2.1.1"
  5983. url="0"
  5984. />
  5985. </productMenu>
  5986. <productMenu id="waveIntercom"
  5987. type="1" >
  5988. <productMenuType version="2.3.9"
  5989. type="0"
  5990. />
  5991. </productMenu>
  5992. <productMenu id="phone"
  5993. type="1" >
  5994. </productMenu>
  5995. <productMenu id="music"
  5996. type="1" >
  5997. </productMenu>
  5998. <productMenu id="musicSharing"
  5999. type="0" >
  6000. </productMenu>
  6001. <productMenu id="deviceSetting"
  6002. type="1"
  6003. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6004. <productMenuURL version="2.4.9"
  6005. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6006. />
  6007. <productMenuURL version="2.2.2"
  6008. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6009. />
  6010. <productMenuURL version="2.1.1"
  6011. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6012. />
  6013. </productMenu>
  6014. <productMenu id="quickGuide"
  6015. type="0"
  6016. url=""
  6017. size="1.12MB" >
  6018. </productMenu>
  6019. <productMenu id="userGuide"
  6020. type="1"
  6021. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6022. size="2.0MB" >
  6023. </productMenu>
  6024. <productMenu id="videoGuide"
  6025. type="1"
  6026. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6027. size="3.41MB" >
  6028. </productMenu>
  6029. <productMenu id="connectGuide"
  6030. type="1"
  6031. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6032. size="1.12MB" >
  6033. </productMenu>
  6034. <productMenu id="volume"
  6035. type="12" >
  6036. </productMenu>
  6037. <productMenu id="battery"
  6038. type="1" >
  6039. </productMenu>
  6040. <productID id="6810"
  6041. />
  6042. <productGroupable type="0"
  6043. />
  6044. </product>
  6045. <product id="SPIDER_RT1"
  6046. name="SPIDER RT1"
  6047. series="SPIDER"
  6048. latestVersion="1.2.2"
  6049. show = "-1" >
  6050. <productMenu id="protocol"
  6051. type="2" >
  6052. </productMenu>
  6053. <productMenu id="alexa"
  6054. type="0" >
  6055. </productMenu>
  6056. <productMenu id="ota"
  6057. type="0" >
  6058. </productMenu>
  6059. <productMenu id="wa"
  6060. type="0" >
  6061. </productMenu>
  6062. <productMenu id="meshIntercom"
  6063. type="20" >
  6064. </productMenu>
  6065. <productMenu id="phone"
  6066. type="1" >
  6067. </productMenu>
  6068. <productMenu id="music"
  6069. type="1" >
  6070. </productMenu>
  6071. <productMenu id="deviceSetting"
  6072. type="1"
  6073. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6074. </productMenu>
  6075. <productMenu id="quickGuide"
  6076. type="0"
  6077. url=""
  6078. size="1.32MB" >
  6079. </productMenu>
  6080. <productMenu id="userGuide"
  6081. type="1"
  6082. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6083. size="1.79MB" >
  6084. </productMenu>
  6085. <productMenu id="videoGuide"
  6086. type="1"
  6087. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6088. size="3.41MB" >
  6089. </productMenu>
  6090. <productMenu id="volume"
  6091. type="13" >
  6092. <productMenuType version="1.1.6"
  6093. type="14"/>
  6094. </productMenu>
  6095. <productMenu id="battery"
  6096. type="1" >
  6097. </productMenu>
  6098. <productID id="6500"
  6099. />
  6100. <productGroupable type="0"
  6101. />
  6102. </product>
  6103. <product id="30K"
  6104. name="30K"
  6105. series="30"
  6106. latestVersion="4.5.1"
  6107. show = "1" >
  6108. <productMenu id="protocol"
  6109. type="2" >
  6110. </productMenu>
  6111. <productMenu id="alexa"
  6112. type="0" >
  6113. </productMenu>
  6114. <productMenu id="wa"
  6115. type="1" >
  6116. </productMenu>
  6117. <productMenu id="sip"
  6118. type="1" >
  6119. </productMenu>
  6120. <productMenu id="meshIntercom"
  6121. type="30" >
  6122. <productMenuType version="4.0.4"
  6123. type="20"
  6124. />
  6125. </productMenu>
  6126. <productMenu id="meshIntercom+"
  6127. type="3"
  6128. url="2" >
  6129. <productMenuType version="4.3.9"
  6130. type="2"
  6131. />
  6132. <productMenuURL version="4.0.4"
  6133. url="0"
  6134. />
  6135. </productMenu>
  6136. <productMenu id="waveIntercom"
  6137. type="1" >
  6138. <productMenuType version="4.4.9"
  6139. type="0"
  6140. />
  6141. </productMenu>
  6142. <productMenu id="bluetoothIntercom"
  6143. type="1" >
  6144. </productMenu>
  6145. <productMenu id="phone"
  6146. type="1" >
  6147. </productMenu>
  6148. <productMenu id="music"
  6149. type="1" >
  6150. </productMenu>
  6151. <productMenu id="fmradio"
  6152. type="1" >
  6153. </productMenu>
  6154. <productMenu id="deviceSetting"
  6155. type="1"
  6156. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6157. <productMenuURL version="4.3"
  6158. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6159. />
  6160. <productMenuURL version="4.2"
  6161. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6162. />
  6163. <productMenuURL version="4.0.4"
  6164. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6165. />
  6166. </productMenu>
  6167. <productMenu id="quickGuide"
  6168. type="0"
  6169. url=""
  6170. size="934KB" >
  6171. </productMenu>
  6172. <productMenu id="userGuide"
  6173. type="1"
  6174. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6175. size="1.14MB" >
  6176. </productMenu>
  6177. <productMenu id="connectGuide"
  6178. type="1"
  6179. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6180. size="1.12MB" >
  6181. </productMenu>
  6182. <productMenu id="volume"
  6183. type="11" >
  6184. </productMenu>
  6185. <productMenu id="battery"
  6186. type="1" >
  6187. </productMenu>
  6188. <productID id="3211"
  6189. />
  6190. <productGroupable type="0"
  6191. />
  6192. </product>
  6193. <product id="30K"
  6194. name="30K"
  6195. series="30"
  6196. latestVersion="3.5"
  6197. show = "-1" >
  6198. <productMenu id="protocol"
  6199. type="1"
  6200. url="0">
  6201. </productMenu>
  6202. <productMenu id="wa"
  6203. type="7" >
  6204. </productMenu>
  6205. <productMenu id="sip"
  6206. type="1" >
  6207. </productMenu>
  6208. <productMenu id="meshIntercom"
  6209. type="20" >
  6210. <productMenuType version="2.9.9"
  6211. type="10"
  6212. />
  6213. </productMenu>
  6214. <productMenu id="meshIntercom+"
  6215. type="3"
  6216. url="2" >
  6217. <productMenuType version="3.4.9"
  6218. type="2"
  6219. />
  6220. <productMenuType version="2.9.9"
  6221. type="1"
  6222. />
  6223. <productMenuURL version="3.3.1"
  6224. url="0"
  6225. />
  6226. </productMenu>
  6227. <productMenu id="bluetoothIntercom"
  6228. type="1" >
  6229. </productMenu>
  6230. <productMenu id="phone"
  6231. type="1" >
  6232. </productMenu>
  6233. <productMenu id="music"
  6234. type="1" >
  6235. </productMenu>
  6236. <productMenu id="fmradio"
  6237. type="1" >
  6238. </productMenu>
  6239. <productMenu id="deviceSetting"
  6240. type="1"
  6241. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6242. <productMenuURL version="3.4.9"
  6243. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6244. />
  6245. <productMenuURL version="3.3.1"
  6246. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6247. />
  6248. <productMenuURL version="3.0.1"
  6249. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6250. />
  6251. <productMenuURL version="2.3.1"
  6252. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6253. />
  6254. <productMenuURL version="2.0"
  6255. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6256. />
  6257. <productMenuURL version="1.0.3"
  6258. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6259. />
  6260. </productMenu>
  6261. <productMenu id="quickGuide"
  6262. type="0"
  6263. url=""
  6264. size="1.06MB" >
  6265. </productMenu>
  6266. <productMenu id="userGuide"
  6267. type="1"
  6268. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6269. size="3.15MB" >
  6270. </productMenu>
  6271. <productMenu id="volume"
  6272. type="1" >
  6273. </productMenu>
  6274. <productID id="3110"
  6275. />
  6276. <productGroupable type="0"
  6277. />
  6278. </product>
  6279. <product id="FURY"
  6280. name="FURY"
  6281. series="Helmet"
  6282. latestVersion="1.0"
  6283. show = "-1" >
  6284. <productMenu id="protocol"
  6285. type="2" >
  6286. </productMenu>
  6287. <productMenu id="alexa"
  6288. type="0" >
  6289. </productMenu>
  6290. <productMenu id="ota"
  6291. type="0" >
  6292. </productMenu>
  6293. <productMenu id="wa"
  6294. type="0" >
  6295. </productMenu>
  6296. <productMenu id="meshIntercom"
  6297. type="20" >
  6298. </productMenu>
  6299. <productMenu id="phone"
  6300. type="1" >
  6301. </productMenu>
  6302. <productMenu id="music"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="fmradio"
  6306. type="1" >
  6307. </productMenu>
  6308. <productMenu id="deviceSetting"
  6309. type="1"
  6310. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6311. </productMenu>
  6312. <productMenu id="quickGuide"
  6313. type="1"
  6314. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6315. size="1.12MB" >
  6316. </productMenu>
  6317. <productMenu id="userGuide"
  6318. type="1"
  6319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6320. size="2.0MB" >
  6321. </productMenu>
  6322. <productMenu id="volume"
  6323. type="13" >
  6324. </productMenu>
  6325. <productMenu id="battery"
  6326. type="1" >
  6327. </productMenu>
  6328. <productID id="5552"
  6329. />
  6330. <productGroupable type="0"
  6331. />
  6332. </product>
  6333. <product id="MomentumM"
  6334. name="Momentum EVO"
  6335. series="Helmet"
  6336. latestVersion="2.1.2"
  6337. show = "1" >
  6338. <productMenu id="protocol"
  6339. type="1"
  6340. url="0">
  6341. </productMenu>
  6342. <productMenu id="wa"
  6343. type="3" >
  6344. </productMenu>
  6345. <productMenu id="sip"
  6346. type="1" >
  6347. </productMenu>
  6348. <productMenu id="meshIntercom"
  6349. type="20" >
  6350. <productMenuType version="1.9.9"
  6351. type="10"
  6352. />
  6353. </productMenu>
  6354. <productMenu id="bluetoothIntercom"
  6355. type="1" >
  6356. </productMenu>
  6357. <productMenu id="phone"
  6358. type="1" >
  6359. </productMenu>
  6360. <productMenu id="music"
  6361. type="1" >
  6362. </productMenu>
  6363. <productMenu id="fmradio"
  6364. type="1" >
  6365. </productMenu>
  6366. <productMenu id="deviceSetting"
  6367. type="1"
  6368. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6369. <productMenuURL version="1.0.1"
  6370. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6371. />
  6372. </productMenu>
  6373. <productMenu id="quickGuide"
  6374. type="1"
  6375. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6376. size="1.06MB" >
  6377. </productMenu>
  6378. <productMenu id="userGuide"
  6379. type="1"
  6380. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6381. size="3.15MB" >
  6382. </productMenu>
  6383. <productMenu id="connectGuide"
  6384. type="1"
  6385. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6386. size="1.12MB" >
  6387. </productMenu>
  6388. <productMenu id="volume"
  6389. type="2" >
  6390. </productMenu>
  6391. <productID id="3116"
  6392. />
  6393. <productGroupable type="0"
  6394. />
  6395. </product>
  6396. <product id="Momentum"
  6397. name="Momentum"
  6398. series="Helmet"
  6399. latestVersion="1.0.9"
  6400. show = "1" >
  6401. <productMenu id="protocol"
  6402. type="0">
  6403. </productMenu>
  6404. <productMenu id="sip"
  6405. type="1" >
  6406. </productMenu>
  6407. <productMenu id="bluetoothIntercom"
  6408. type="1" >
  6409. </productMenu>
  6410. <productMenu id="intercomSetting"
  6411. type="1" >
  6412. </productMenu>
  6413. <productMenu id="phone"
  6414. type="2" >
  6415. </productMenu>
  6416. <productMenu id="fmradio"
  6417. type="3" >
  6418. </productMenu>
  6419. <productMenu id="deviceSetting"
  6420. type="1"
  6421. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6422. </productMenu>
  6423. <productMenu id="quickGuide"
  6424. type="1"
  6425. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6426. size="796KB" >
  6427. </productMenu>
  6428. <productMenu id="userGuide"
  6429. type="1"
  6430. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6431. size="1.90MB" >
  6432. </productMenu>
  6433. <productMenu id="connectGuide"
  6434. type="1"
  6435. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6436. size="1.12MB" >
  6437. </productMenu>
  6438. <productID id="4310"
  6439. />
  6440. <productGroupable type="1"
  6441. />
  6442. </product>
  6443. <product id="Momentum_Pro"
  6444. name="Momentum Pro"
  6445. series="Helmet"
  6446. latestVersion="1.0.6"
  6447. show = "1" >
  6448. <productMenu id="protocol"
  6449. type="0">
  6450. </productMenu>
  6451. <productMenu id="sip"
  6452. type="1" >
  6453. </productMenu>
  6454. <productMenu id="bluetoothIntercom"
  6455. type="1" >
  6456. </productMenu>
  6457. <productMenu id="intercomSetting"
  6458. type="1" >
  6459. </productMenu>
  6460. <productMenu id="phone"
  6461. type="2" >
  6462. </productMenu>
  6463. <productMenu id="fmradio"
  6464. type="3" >
  6465. </productMenu>
  6466. <productMenu id="deviceSetting"
  6467. type="1"
  6468. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6469. </productMenu>
  6470. <productMenu id="quickGuide"
  6471. type="1"
  6472. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6473. size="796KB" >
  6474. </productMenu>
  6475. <productMenu id="userGuide"
  6476. type="1"
  6477. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6478. size="1.90MB" >
  6479. </productMenu>
  6480. <productMenu id="connectGuide"
  6481. type="1"
  6482. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6483. size="1.12MB" >
  6484. </productMenu>
  6485. <productID id="4330"
  6486. />
  6487. <productGroupable type="1"
  6488. />
  6489. </product>
  6490. <product id="Momentum_INC"
  6491. name="Momentum INC"
  6492. series="Helmet"
  6493. latestVersion="1.0.7"
  6494. show = "1" >
  6495. <productMenu id="protocol"
  6496. type="0">
  6497. </productMenu>
  6498. <productMenu id="sip"
  6499. type="1" >
  6500. </productMenu>
  6501. <productMenu id="bluetoothIntercom"
  6502. type="1" >
  6503. </productMenu>
  6504. <productMenu id="intercomSetting"
  6505. type="1" >
  6506. </productMenu>
  6507. <productMenu id="phone"
  6508. type="2" >
  6509. </productMenu>
  6510. <productMenu id="fmradio"
  6511. type="3" >
  6512. </productMenu>
  6513. <productMenu id="deviceSetting"
  6514. type="1"
  6515. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6516. </productMenu>
  6517. <productMenu id="quickGuide"
  6518. type="1"
  6519. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6520. size="794KB" >
  6521. </productMenu>
  6522. <productMenu id="userGuide"
  6523. type="1"
  6524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6525. size="1.53MB" >
  6526. </productMenu>
  6527. <productMenu id="connectGuide"
  6528. type="1"
  6529. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6530. size="1.12MB" >
  6531. </productMenu>
  6532. <productID id="4410"
  6533. />
  6534. <productGroupable type="1"
  6535. />
  6536. </product>
  6537. <product id="Momentum_INCP"
  6538. name="Momentum INC Pro"
  6539. series="Helmet"
  6540. latestVersion="1.0.4"
  6541. show = "1" >
  6542. <productMenu id="protocol"
  6543. type="0">
  6544. </productMenu>
  6545. <productMenu id="sip"
  6546. type="1" >
  6547. </productMenu>
  6548. <productMenu id="bluetoothIntercom"
  6549. type="1" >
  6550. </productMenu>
  6551. <productMenu id="intercomSetting"
  6552. type="1" >
  6553. </productMenu>
  6554. <productMenu id="phone"
  6555. type="2" >
  6556. </productMenu>
  6557. <productMenu id="fmradio"
  6558. type="3" >
  6559. </productMenu>
  6560. <productMenu id="deviceSetting"
  6561. type="1"
  6562. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6563. </productMenu>
  6564. <productMenu id="quickGuide"
  6565. type="1"
  6566. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6567. size="794KB" >
  6568. </productMenu>
  6569. <productMenu id="userGuide"
  6570. type="1"
  6571. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6572. size="1.53MB" >
  6573. </productMenu>
  6574. <productMenu id="connectGuide"
  6575. type="1"
  6576. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6577. size="1.12MB" >
  6578. </productMenu>
  6579. <productID id="4430"
  6580. />
  6581. <productGroupable type="1"
  6582. />
  6583. </product>
  6584. <product id="Momentum_Lite"
  6585. name="Momentum Lite"
  6586. series="Helmet"
  6587. latestVersion="2.0.3"
  6588. show = "1" >
  6589. <productMenu id="protocol"
  6590. type="0">
  6591. </productMenu>
  6592. <productMenu id="sip"
  6593. type="1" >
  6594. </productMenu>
  6595. <productMenu id="bluetoothIntercom"
  6596. type="1" >
  6597. </productMenu>
  6598. <productMenu id="phone"
  6599. type="2" >
  6600. </productMenu>
  6601. <productMenu id="fmradio"
  6602. type="3" >
  6603. </productMenu>
  6604. <productMenu id="deviceSetting"
  6605. type="1"
  6606. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6607. <productMenuURL version="1.1"
  6608. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6609. />
  6610. </productMenu>
  6611. <productMenu id="quickGuide"
  6612. type="1"
  6613. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6614. size="790KB" >
  6615. </productMenu>
  6616. <productMenu id="userGuide"
  6617. type="1"
  6618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6619. size="1.42MB" >
  6620. </productMenu>
  6621. <productMenu id="connectGuide"
  6622. type="1"
  6623. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6624. size="1.12MB" >
  6625. </productMenu>
  6626. <productID id="5526"
  6627. />
  6628. <productGroupable type="0"
  6629. />
  6630. </product>
  6631. <product id="OUTRUSHM"
  6632. name="OUTRUSH M"
  6633. series="Helmet"
  6634. latestVersion="1.0"
  6635. show = "-1" >
  6636. <productMenu id="protocol"
  6637. type="2" >
  6638. </productMenu>
  6639. <productMenu id="alexa"
  6640. type="0" >
  6641. </productMenu>
  6642. <productMenu id="ota"
  6643. type="0" >
  6644. </productMenu>
  6645. <productMenu id="wa"
  6646. type="0" >
  6647. </productMenu>
  6648. <productMenu id="meshIntercom"
  6649. type="30" >
  6650. </productMenu>
  6651. <productMenu id="phone"
  6652. type="1" >
  6653. </productMenu>
  6654. <productMenu id="music"
  6655. type="1" >
  6656. </productMenu>
  6657. <productMenu id="fmradio"
  6658. type="1" >
  6659. </productMenu>
  6660. <productMenu id="deviceSetting"
  6661. type="1"
  6662. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6663. </productMenu>
  6664. <productMenu id="quickGuide"
  6665. type="1"
  6666. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6667. size="1.12MB" >
  6668. </productMenu>
  6669. <productMenu id="userGuide"
  6670. type="1"
  6671. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6672. size="2.0MB" >
  6673. </productMenu>
  6674. <productMenu id="volume"
  6675. type="13" >
  6676. </productMenu>
  6677. <productMenu id="battery"
  6678. type="1" >
  6679. </productMenu>
  6680. <productID id="5600"
  6681. />
  6682. <productGroupable type="0"
  6683. />
  6684. </product>
  6685. <product id="ProRideEVO"
  6686. name="ProRide EVO"
  6687. series="Helmet"
  6688. latestVersion="1.1.2"
  6689. show = "1" >
  6690. <productMenu id="protocol"
  6691. type="0">
  6692. </productMenu>
  6693. <productMenu id="sip"
  6694. type="1" >
  6695. </productMenu>
  6696. <productMenu id="bluetoothIntercom"
  6697. type="1" >
  6698. </productMenu>
  6699. <productMenu id="phone"
  6700. type="2" >
  6701. </productMenu>
  6702. <productMenu id="fmradio"
  6703. type="3" >
  6704. </productMenu>
  6705. <productMenu id="deviceSetting"
  6706. type="1"
  6707. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6708. </productMenu>
  6709. <productMenu id="userGuide"
  6710. type="1"
  6711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6712. size="778KB" >
  6713. </productMenu>
  6714. <productMenu id="connectGuide"
  6715. type="1"
  6716. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6717. size="1.12MB" >
  6718. </productMenu>
  6719. <productID id="5426"
  6720. />
  6721. <productGroupable type="0"
  6722. />
  6723. </product>
  6724. <product id="OUTRUSHR"
  6725. name="OUTRUSH R"
  6726. series="Helmet"
  6727. latestVersion="2.1"
  6728. show = "1" >
  6729. <productMenu id="protocol"
  6730. type="3" >
  6731. </productMenu>
  6732. <productMenu id="sip"
  6733. type="1" >
  6734. </productMenu>
  6735. <productMenu id="bluetoothIntercom"
  6736. type="1" >
  6737. </productMenu>
  6738. <productMenu id="phone"
  6739. type="1" >
  6740. </productMenu>
  6741. <productMenu id="fmradio"
  6742. type="0" >
  6743. </productMenu>
  6744. <productMenu id="deviceSetting"
  6745. type="1"
  6746. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6747. </productMenu>
  6748. <productMenu id="userGuide"
  6749. type="1"
  6750. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6751. size="1.14MB" >
  6752. </productMenu>
  6753. <productMenu id="connectGuide"
  6754. type="1"
  6755. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6756. size="1.12MB" >
  6757. </productMenu>
  6758. <productID id="5440"
  6759. />
  6760. <productGroupable type="0"
  6761. />
  6762. </product>
  6763. <product id="OUTRUSHR"
  6764. name="OUTRUSH R"
  6765. series="Helmet"
  6766. latestVersion="1.1.4"
  6767. show = "-1" >
  6768. <productMenu id="protocol"
  6769. type="0">
  6770. </productMenu>
  6771. <productMenu id="sip"
  6772. type="1" >
  6773. </productMenu>
  6774. <productMenu id="bluetoothIntercom"
  6775. type="1" >
  6776. </productMenu>
  6777. <productMenu id="phone"
  6778. type="2" >
  6779. </productMenu>
  6780. <productMenu id="fmradio"
  6781. type="3" >
  6782. </productMenu>
  6783. <productMenu id="deviceSetting"
  6784. type="1"
  6785. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6786. </productMenu>
  6787. <productMenu id="userGuide"
  6788. type="1"
  6789. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6790. size="660KB" >
  6791. </productMenu>
  6792. <productMenu id="connectGuide"
  6793. type="1"
  6794. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6795. size="1.12MB" >
  6796. </productMenu>
  6797. <productID id="5424"
  6798. />
  6799. <productGroupable type="0"
  6800. />
  6801. </product>
  6802. <product id="OUTSTARS"
  6803. name="OUTSTAR S"
  6804. series="Helmet"
  6805. latestVersion="2.0.1"
  6806. show = "-1" >
  6807. <productMenu id="protocol"
  6808. type="3" >
  6809. </productMenu>
  6810. <productMenu id="sip"
  6811. type="1" >
  6812. </productMenu>
  6813. <productMenu id="bluetoothIntercom"
  6814. type="1" >
  6815. </productMenu>
  6816. <productMenu id="phone"
  6817. type="1" >
  6818. </productMenu>
  6819. <productMenu id="fmradio"
  6820. type="0" >
  6821. </productMenu>
  6822. <productMenu id="deviceSetting"
  6823. type="1"
  6824. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6825. </productMenu>
  6826. <productMenu id="userGuide"
  6827. type="0"
  6828. url=""
  6829. size="1.14MB" >
  6830. </productMenu>
  6831. <productID id="5443"
  6832. />
  6833. <productGroupable type="0"
  6834. />
  6835. </product>
  6836. <product id="OUTSTARS"
  6837. name="OUTSTAR S"
  6838. series="Helmet"
  6839. latestVersion="1.1.4"
  6840. show = "1" >
  6841. <productMenu id="protocol"
  6842. type="0">
  6843. </productMenu>
  6844. <productMenu id="sip"
  6845. type="1" >
  6846. </productMenu>
  6847. <productMenu id="bluetoothIntercom"
  6848. type="1" >
  6849. </productMenu>
  6850. <productMenu id="phone"
  6851. type="2" >
  6852. </productMenu>
  6853. <productMenu id="fmradio"
  6854. type="3" >
  6855. </productMenu>
  6856. <productMenu id="deviceSetting"
  6857. type="1"
  6858. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6859. </productMenu>
  6860. <productMenu id="quickGuide"
  6861. type="1"
  6862. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6863. size="643KB" >
  6864. </productMenu>
  6865. <productMenu id="userGuide"
  6866. type="1"
  6867. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6868. size="1.15MB" >
  6869. </productMenu>
  6870. <productMenu id="connectGuide"
  6871. type="1"
  6872. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6873. size="1.12MB" >
  6874. </productMenu>
  6875. <productID id="5428"
  6876. />
  6877. <productGroupable type="0"
  6878. />
  6879. </product>
  6880. <product id="OUTRIDE"
  6881. name="OUTRIDE"
  6882. series="Helmet"
  6883. latestVersion="1.0.1"
  6884. show = "1" >
  6885. <productMenu id="protocol"
  6886. type="0">
  6887. </productMenu>
  6888. <productMenu id="sip"
  6889. type="1" >
  6890. </productMenu>
  6891. <productMenu id="bluetoothIntercom"
  6892. type="1" >
  6893. </productMenu>
  6894. <productMenu id="phone"
  6895. type="2" >
  6896. </productMenu>
  6897. <productMenu id="fmradio"
  6898. type="3" >
  6899. </productMenu>
  6900. <productMenu id="deviceSetting"
  6901. type="1"
  6902. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6903. </productMenu>
  6904. <productMenu id="quickGuide"
  6905. type="1"
  6906. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6907. size="643KB" >
  6908. </productMenu>
  6909. <productMenu id="userGuide"
  6910. type="1"
  6911. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6912. size="660KB" >
  6913. </productMenu>
  6914. <productMenu id="connectGuide"
  6915. type="1"
  6916. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6917. size="1.12MB" >
  6918. </productMenu>
  6919. <productID id="5432"
  6920. />
  6921. <productGroupable type="0"
  6922. />
  6923. </product>
  6924. <product id="OUTFORCE"
  6925. name="OUTFORCE"
  6926. series="Helmet"
  6927. latestVersion="1.0.1"
  6928. show = "1" >
  6929. <productMenu id="protocol"
  6930. type="0">
  6931. </productMenu>
  6932. <productMenu id="sip"
  6933. type="1" >
  6934. </productMenu>
  6935. <productMenu id="bluetoothIntercom"
  6936. type="1" >
  6937. </productMenu>
  6938. <productMenu id="phone"
  6939. type="2" >
  6940. </productMenu>
  6941. <productMenu id="fmradio"
  6942. type="3" >
  6943. </productMenu>
  6944. <productMenu id="deviceSetting"
  6945. type="1"
  6946. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6947. </productMenu>
  6948. <productMenu id="quickGuide"
  6949. type="1"
  6950. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6951. size="643KB" >
  6952. </productMenu>
  6953. <productMenu id="userGuide"
  6954. type="1"
  6955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6956. size="660KB" >
  6957. </productMenu>
  6958. <productMenu id="connectGuide"
  6959. type="1"
  6960. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6961. size="1.12MB" >
  6962. </productMenu>
  6963. <productID id="5430"
  6964. />
  6965. <productGroupable type="0"
  6966. />
  6967. </product>
  6968. <product id="Rumba"
  6969. name="Rumba"
  6970. series="30"
  6971. latestVersion="2.0"
  6972. show = "-1" >
  6973. <productMenu id="protocol"
  6974. type="3" >
  6975. </productMenu>
  6976. <productMenu id="sip"
  6977. type="1" >
  6978. </productMenu>
  6979. <productMenu id="bluetoothIntercom"
  6980. type="1" >
  6981. </productMenu>
  6982. <productMenu id="deviceSetting"
  6983. type="1"
  6984. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6985. </productMenu>
  6986. <productMenu id="quickGuide"
  6987. type="1"
  6988. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6989. size="344KB" >
  6990. </productMenu>
  6991. <productMenu id="userGuide"
  6992. type="1"
  6993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6994. size="1.14MB" >
  6995. </productMenu>
  6996. <productID id="6322"
  6997. />
  6998. <productGroupable type="0"
  6999. />
  7000. </product>
  7001. <product id="Savage"
  7002. name="Savage"
  7003. series="Helmet"
  7004. latestVersion="1.2.2"
  7005. show = "1" >
  7006. <productMenu id="protocol"
  7007. type="0">
  7008. </productMenu>
  7009. <productMenu id="sip"
  7010. type="1" >
  7011. </productMenu>
  7012. <productMenu id="bluetoothIntercom"
  7013. type="1" >
  7014. </productMenu>
  7015. <productMenu id="phone"
  7016. type="2" >
  7017. </productMenu>
  7018. <productMenu id="fmradio"
  7019. type="3" >
  7020. </productMenu>
  7021. <productMenu id="deviceSetting"
  7022. type="1"
  7023. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7024. <productMenuURL version="1.9"
  7025. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7026. />
  7027. <productMenuURL version="1.1"
  7028. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7029. />
  7030. </productMenu>
  7031. <productMenu id="quickGuide"
  7032. type="1"
  7033. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7034. size="796KB" >
  7035. </productMenu>
  7036. <productMenu id="userGuide"
  7037. type="1"
  7038. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7039. size="910KB" >
  7040. </productMenu>
  7041. <productMenu id="connectGuide"
  7042. type="1"
  7043. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7044. size="1.12MB" >
  7045. </productMenu>
  7046. <productID id="5550"
  7047. />
  7048. <productGroupable type="0"
  7049. />
  7050. </product>
  7051. <product id="SPECTER"
  7052. name="SPECTER"
  7053. series="Helmet"
  7054. latestVersion="1.0.7"
  7055. latestVersionVoicePrompt="1.5"
  7056. show = "1" >
  7057. <productMenu id="protocol"
  7058. type="2" >
  7059. </productMenu>
  7060. <productMenu id="ota"
  7061. type="2" >
  7062. <otaLanguages>
  7063. <otaLanguage
  7064. id="0"
  7065. name="English"
  7066. package="0"
  7067. />
  7068. <otaLanguage
  7069. id="0"
  7070. name="French"
  7071. package="1"
  7072. />
  7073. <otaLanguage
  7074. id="0"
  7075. name="Spanish"
  7076. package="2"
  7077. />
  7078. <otaLanguage
  7079. id="0"
  7080. name="Italian"
  7081. package="3"
  7082. />
  7083. <otaLanguage
  7084. id="0"
  7085. name="German"
  7086. package="4"
  7087. />
  7088. <otaLanguage
  7089. id="0"
  7090. name="Dutch"
  7091. package="5"
  7092. />
  7093. <otaLanguage
  7094. id="0"
  7095. name="Russian"
  7096. package="6"
  7097. />
  7098. <otaLanguage
  7099. id="0"
  7100. name="Chinese"
  7101. package="7"
  7102. />
  7103. <otaLanguage
  7104. id="0"
  7105. name="Korean"
  7106. package="8"
  7107. />
  7108. <otaLanguage
  7109. id="0"
  7110. name="Japanese"
  7111. package="9"
  7112. />
  7113. <otaLanguage
  7114. id="0"
  7115. name="Finnish"
  7116. package="10"
  7117. />
  7118. <otaLanguage
  7119. id="0"
  7120. name="Polish"
  7121. package="11"
  7122. />
  7123. </otaLanguages>
  7124. <otaPackages>
  7125. <package
  7126. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7127. size="5183988"
  7128. />
  7129. <package
  7130. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7131. size="5183988"
  7132. />
  7133. <package
  7134. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7135. size="5183988"
  7136. />
  7137. <package
  7138. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7139. size="5183988"
  7140. />
  7141. <package
  7142. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7143. size="5183988"
  7144. />
  7145. <package
  7146. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7147. size="5183988"
  7148. />
  7149. <package
  7150. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7151. size="5183988"
  7152. />
  7153. <package
  7154. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7155. size="5183988"
  7156. />
  7157. <package
  7158. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7159. size="5183988"
  7160. />
  7161. <package
  7162. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7163. size="5183988"
  7164. />
  7165. <package
  7166. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7167. size="5183988"
  7168. />
  7169. <package
  7170. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7171. size="5183988"
  7172. />
  7173. </otaPackages>
  7174. </productMenu>
  7175. <productMenu id="wa"
  7176. type="0" >
  7177. </productMenu>
  7178. <productMenu id="led"
  7179. type="5" >
  7180. </productMenu>
  7181. <productMenu id="led+"
  7182. type="2"
  7183. url="1" >
  7184. </productMenu>
  7185. <productMenu id="meshIntercom+"
  7186. type="3"
  7187. url="2" >
  7188. </productMenu>
  7189. <productMenu id="waveIntercom"
  7190. type="1" >
  7191. </productMenu>
  7192. <productMenu id="fmradio"
  7193. type="0" >
  7194. </productMenu>
  7195. <productMenu id="phone"
  7196. type="1" >
  7197. </productMenu>
  7198. <productMenu id="music"
  7199. type="1" >
  7200. </productMenu>
  7201. <productMenu id="musicSharing"
  7202. type="0" >
  7203. </productMenu>
  7204. <productMenu id="deviceSetting"
  7205. type="1"
  7206. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7207. <productMenuURL version="1.0.4"
  7208. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7209. />
  7210. </productMenu>
  7211. <productMenu id="quickGuide"
  7212. type="0"
  7213. url=""
  7214. size="1.12MB" >
  7215. </productMenu>
  7216. <productMenu id="userGuide"
  7217. type="1"
  7218. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7219. size="2.0MB" >
  7220. </productMenu>
  7221. <productMenu id="videoGuide"
  7222. type="0"
  7223. url=""
  7224. size="3.41MB" >
  7225. </productMenu>
  7226. <productMenu id="volume"
  7227. type="16" >
  7228. </productMenu>
  7229. <productMenu id="volume+"
  7230. type="2"
  7231. url="0x6004" >
  7232. </productMenu>
  7233. <productMenu id="battery"
  7234. type="1" >
  7235. </productMenu>
  7236. <productID id="6A11"
  7237. />
  7238. <productGroupable type="0"
  7239. />
  7240. </product>
  7241. <product id="SPECTER"
  7242. name="SPECTER"
  7243. series="Helmet"
  7244. latestVersion="1.0.7"
  7245. latestVersionVoicePrompt="1.5"
  7246. show = "-1" >
  7247. <productMenu id="protocol"
  7248. type="2" >
  7249. </productMenu>
  7250. <productMenu id="ota"
  7251. type="2" >
  7252. <otaLanguages>
  7253. <otaLanguage
  7254. id="0"
  7255. name="English"
  7256. package="0"
  7257. />
  7258. <otaLanguage
  7259. id="0"
  7260. name="French"
  7261. package="1"
  7262. />
  7263. <otaLanguage
  7264. id="0"
  7265. name="Spanish"
  7266. package="2"
  7267. />
  7268. <otaLanguage
  7269. id="0"
  7270. name="Italian"
  7271. package="3"
  7272. />
  7273. <otaLanguage
  7274. id="0"
  7275. name="German"
  7276. package="4"
  7277. />
  7278. <otaLanguage
  7279. id="0"
  7280. name="Dutch"
  7281. package="5"
  7282. />
  7283. <otaLanguage
  7284. id="0"
  7285. name="Russian"
  7286. package="6"
  7287. />
  7288. <otaLanguage
  7289. id="0"
  7290. name="Chinese"
  7291. package="7"
  7292. />
  7293. <otaLanguage
  7294. id="0"
  7295. name="Korean"
  7296. package="8"
  7297. />
  7298. <otaLanguage
  7299. id="0"
  7300. name="Japanese"
  7301. package="9"
  7302. />
  7303. <otaLanguage
  7304. id="0"
  7305. name="Finnish"
  7306. package="10"
  7307. />
  7308. <otaLanguage
  7309. id="0"
  7310. name="Polish"
  7311. package="11"
  7312. />
  7313. </otaLanguages>
  7314. <otaPackages>
  7315. <package
  7316. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7317. size="5183988"
  7318. />
  7319. <package
  7320. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7321. size="5183988"
  7322. />
  7323. <package
  7324. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7325. size="5183988"
  7326. />
  7327. <package
  7328. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7329. size="5183988"
  7330. />
  7331. <package
  7332. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7333. size="5183988"
  7334. />
  7335. <package
  7336. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7337. size="5183988"
  7338. />
  7339. <package
  7340. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7341. size="5183988"
  7342. />
  7343. <package
  7344. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7345. size="5183988"
  7346. />
  7347. <package
  7348. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7349. size="5183988"
  7350. />
  7351. <package
  7352. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7353. size="5183988"
  7354. />
  7355. <package
  7356. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7357. size="5183988"
  7358. />
  7359. <package
  7360. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7361. size="5183988"
  7362. />
  7363. </otaPackages>
  7364. </productMenu>
  7365. <productMenu id="wa"
  7366. type="0" >
  7367. </productMenu>
  7368. <productMenu id="led"
  7369. type="5" >
  7370. </productMenu>
  7371. <productMenu id="led+"
  7372. type="2"
  7373. url="1" >
  7374. </productMenu>
  7375. <productMenu id="meshIntercom+"
  7376. type="3"
  7377. url="2" >
  7378. </productMenu>
  7379. <productMenu id="waveIntercom"
  7380. type="1" >
  7381. </productMenu>
  7382. <productMenu id="fmradio"
  7383. type="0" >
  7384. </productMenu>
  7385. <productMenu id="phone"
  7386. type="1" >
  7387. </productMenu>
  7388. <productMenu id="music"
  7389. type="1" >
  7390. </productMenu>
  7391. <productMenu id="musicSharing"
  7392. type="0" >
  7393. </productMenu>
  7394. <productMenu id="deviceSetting"
  7395. type="1"
  7396. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7397. <productMenuURL version="1.0.4"
  7398. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7399. />
  7400. <productMenuURL version="1.0"
  7401. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7402. />
  7403. </productMenu>
  7404. <productMenu id="quickGuide"
  7405. type="0"
  7406. url=""
  7407. size="1.12MB" >
  7408. </productMenu>
  7409. <productMenu id="userGuide"
  7410. type="1"
  7411. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7412. size="2.0MB" >
  7413. </productMenu>
  7414. <productMenu id="videoGuide"
  7415. type="0"
  7416. url=""
  7417. size="3.41MB" >
  7418. </productMenu>
  7419. <productMenu id="volume"
  7420. type="16" >
  7421. </productMenu>
  7422. <productMenu id="volume+"
  7423. type="2"
  7424. url="0x6004" >
  7425. </productMenu>
  7426. <productMenu id="battery"
  7427. type="1" >
  7428. </productMenu>
  7429. <productID id="6A0A"
  7430. />
  7431. <productGroupable type="0"
  7432. />
  7433. </product>
  7434. <product id="OUTLANDER"
  7435. name="OUTLANDER"
  7436. series="Helmet"
  7437. latestVersion="1.0.7"
  7438. latestVersionVoicePrompt="1.5"
  7439. show = "1" >
  7440. <productMenu id="protocol"
  7441. type="2" >
  7442. </productMenu>
  7443. <productMenu id="ota"
  7444. type="2" >
  7445. <otaLanguages>
  7446. <otaLanguage
  7447. id="0"
  7448. name="English"
  7449. package="0"
  7450. />
  7451. <otaLanguage
  7452. id="0"
  7453. name="French"
  7454. package="1"
  7455. />
  7456. <otaLanguage
  7457. id="0"
  7458. name="Spanish"
  7459. package="2"
  7460. />
  7461. <otaLanguage
  7462. id="0"
  7463. name="Italian"
  7464. package="3"
  7465. />
  7466. <otaLanguage
  7467. id="0"
  7468. name="German"
  7469. package="4"
  7470. />
  7471. <otaLanguage
  7472. id="0"
  7473. name="Dutch"
  7474. package="5"
  7475. />
  7476. <otaLanguage
  7477. id="0"
  7478. name="Russian"
  7479. package="6"
  7480. />
  7481. <otaLanguage
  7482. id="0"
  7483. name="Chinese"
  7484. package="7"
  7485. />
  7486. <otaLanguage
  7487. id="0"
  7488. name="Korean"
  7489. package="8"
  7490. />
  7491. <otaLanguage
  7492. id="0"
  7493. name="Japanese"
  7494. package="9"
  7495. />
  7496. <otaLanguage
  7497. id="0"
  7498. name="Finnish"
  7499. package="10"
  7500. />
  7501. <otaLanguage
  7502. id="0"
  7503. name="Polish"
  7504. package="11"
  7505. />
  7506. </otaLanguages>
  7507. <otaPackages>
  7508. <package
  7509. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7510. size="5183988"
  7511. />
  7512. <package
  7513. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7514. size="5183988"
  7515. />
  7516. <package
  7517. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7518. size="5183988"
  7519. />
  7520. <package
  7521. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7522. size="5183988"
  7523. />
  7524. <package
  7525. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7526. size="5183988"
  7527. />
  7528. <package
  7529. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7530. size="5183988"
  7531. />
  7532. <package
  7533. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7534. size="5183988"
  7535. />
  7536. <package
  7537. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7538. size="5183988"
  7539. />
  7540. <package
  7541. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7542. size="5183988"
  7543. />
  7544. <package
  7545. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7546. size="5183988"
  7547. />
  7548. <package
  7549. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7550. size="5183988"
  7551. />
  7552. <package
  7553. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7554. size="5183988"
  7555. />
  7556. </otaPackages>
  7557. </productMenu>
  7558. <productMenu id="wa"
  7559. type="0" >
  7560. </productMenu>
  7561. <productMenu id="led"
  7562. type="5" >
  7563. </productMenu>
  7564. <productMenu id="led+"
  7565. type="2"
  7566. url="1" >
  7567. </productMenu>
  7568. <productMenu id="meshIntercom+"
  7569. type="3"
  7570. url="2" >
  7571. </productMenu>
  7572. <productMenu id="waveIntercom"
  7573. type="1" >
  7574. </productMenu>
  7575. <productMenu id="fmradio"
  7576. type="0" >
  7577. </productMenu>
  7578. <productMenu id="phone"
  7579. type="1" >
  7580. </productMenu>
  7581. <productMenu id="music"
  7582. type="1" >
  7583. </productMenu>
  7584. <productMenu id="musicSharing"
  7585. type="0" >
  7586. </productMenu>
  7587. <productMenu id="deviceSetting"
  7588. type="1"
  7589. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7590. <productMenuURL version="1.0.4"
  7591. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7592. />
  7593. </productMenu>
  7594. <productMenu id="quickGuide"
  7595. type="0"
  7596. url=""
  7597. size="1.12MB" >
  7598. </productMenu>
  7599. <productMenu id="userGuide"
  7600. type="1"
  7601. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7602. size="2.0MB" >
  7603. </productMenu>
  7604. <productMenu id="videoGuide"
  7605. type="0"
  7606. url=""
  7607. size="3.41MB" >
  7608. </productMenu>
  7609. <productMenu id="volume"
  7610. type="16" >
  7611. </productMenu>
  7612. <productMenu id="volume+"
  7613. type="2"
  7614. url="0x6004" >
  7615. </productMenu>
  7616. <productMenu id="battery"
  7617. type="1" >
  7618. </productMenu>
  7619. <productID id="6A05"
  7620. />
  7621. <productGroupable type="0"
  7622. />
  7623. </product>
  7624. <product id="OUTRUSH2"
  7625. name="OUTRUSH 2"
  7626. series="Helmet"
  7627. latestVersion="1.0.2"
  7628. latestVersionVoicePrompt="1.1"
  7629. show = "1" >
  7630. <productMenu id="protocol"
  7631. type="2" >
  7632. </productMenu>
  7633. <productMenu id="alexa"
  7634. type="0" >
  7635. </productMenu>
  7636. <productMenu id="ota"
  7637. type="2" >
  7638. <otaPackages>
  7639. <package
  7640. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7641. size="2945812"
  7642. />
  7643. </otaPackages>
  7644. </productMenu>
  7645. <productMenu id="meshIntercom+"
  7646. type="3"
  7647. url="2" >
  7648. </productMenu>
  7649. <productMenu id="waveIntercom"
  7650. type="1" >
  7651. </productMenu>
  7652. <productMenu id="phone"
  7653. type="1" >
  7654. </productMenu>
  7655. <productMenu id="music"
  7656. type="1" >
  7657. </productMenu>
  7658. <productMenu id="musicSharing"
  7659. type="0" >
  7660. </productMenu>
  7661. <productMenu id="deviceSetting"
  7662. type="1"
  7663. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7664. <productMenuURL version="1.0"
  7665. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7666. />
  7667. </productMenu>
  7668. <productMenu id="quickGuide"
  7669. type="0"
  7670. url=""
  7671. size="1.12MB" >
  7672. </productMenu>
  7673. <productMenu id="userGuide"
  7674. type="1"
  7675. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7676. size="2.0MB" >
  7677. </productMenu>
  7678. <productMenu id="volume"
  7679. type="12" >
  7680. </productMenu>
  7681. <productMenu id="battery"
  7682. type="1" >
  7683. </productMenu>
  7684. <productID id="684A"
  7685. />
  7686. <productGroupable type="0"
  7687. />
  7688. </product>
  7689. <product id="OUTSTAR2"
  7690. name="OUTSTAR 2"
  7691. series="Helmet"
  7692. latestVersion="1.0.1"
  7693. latestVersionVoicePrompt="1.1"
  7694. show = "1" >
  7695. <productMenu id="protocol"
  7696. type="2" >
  7697. </productMenu>
  7698. <productMenu id="alexa"
  7699. type="0" >
  7700. </productMenu>
  7701. <productMenu id="ota"
  7702. type="2" >
  7703. <otaPackages>
  7704. <package
  7705. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7706. size="2945812"
  7707. />
  7708. </otaPackages>
  7709. </productMenu>
  7710. <productMenu id="meshIntercom+"
  7711. type="3"
  7712. url="2" >
  7713. </productMenu>
  7714. <productMenu id="waveIntercom"
  7715. type="1" >
  7716. </productMenu>
  7717. <productMenu id="phone"
  7718. type="1" >
  7719. </productMenu>
  7720. <productMenu id="music"
  7721. type="1" >
  7722. </productMenu>
  7723. <productMenu id="musicSharing"
  7724. type="0" >
  7725. </productMenu>
  7726. <productMenu id="deviceSetting"
  7727. type="1"
  7728. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7729. </productMenu>
  7730. <productMenu id="quickGuide"
  7731. type="0"
  7732. url=""
  7733. size="1.12MB" >
  7734. </productMenu>
  7735. <productMenu id="userGuide"
  7736. type="1"
  7737. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7738. size="2.0MB" >
  7739. </productMenu>
  7740. <productMenu id="volume"
  7741. type="12" >
  7742. </productMenu>
  7743. <productMenu id="battery"
  7744. type="1" >
  7745. </productMenu>
  7746. <productID id="684B"
  7747. />
  7748. <productGroupable type="0"
  7749. />
  7750. </product>
  7751. <product id="SURGE"
  7752. name="SURGE"
  7753. series="Helmet"
  7754. latestVersion="1.2"
  7755. latestVersionVoicePrompt="1.3"
  7756. show = "1" >
  7757. <productMenu id="protocol"
  7758. type="2" >
  7759. </productMenu>
  7760. <productMenu id="alexa"
  7761. type="0" >
  7762. </productMenu>
  7763. <productMenu id="ota"
  7764. type="2" >
  7765. <otaPackages>
  7766. <package
  7767. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7768. size="2945812"
  7769. />
  7770. </otaPackages>
  7771. </productMenu>
  7772. <productMenu id="meshIntercom"
  7773. type="30" >
  7774. </productMenu>
  7775. <productMenu id="meshIntercom+"
  7776. type="3"
  7777. url="2" >
  7778. <productMenuType version="1.0.1"
  7779. type="2"
  7780. />
  7781. </productMenu>
  7782. <productMenu id="waveIntercom"
  7783. type="1" >
  7784. <productMenuType version="1.0.9"
  7785. type="0"
  7786. />
  7787. </productMenu>
  7788. <productMenu id="phone"
  7789. type="1" >
  7790. </productMenu>
  7791. <productMenu id="music"
  7792. type="1" >
  7793. </productMenu>
  7794. <productMenu id="musicSharing"
  7795. type="0" >
  7796. </productMenu>
  7797. <productMenu id="deviceSetting"
  7798. type="1"
  7799. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7800. <productMenuURL version="1.1.9"
  7801. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7802. />
  7803. <productMenuURL version="1.0.1"
  7804. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7805. />
  7806. </productMenu>
  7807. <productMenu id="quickGuide"
  7808. type="0"
  7809. url=""
  7810. size="1.12MB" >
  7811. </productMenu>
  7812. <productMenu id="userGuide"
  7813. type="1"
  7814. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7815. size="2.0MB" >
  7816. </productMenu>
  7817. <productMenu id="volume"
  7818. type="12" >
  7819. </productMenu>
  7820. <productMenu id="battery"
  7821. type="1" >
  7822. </productMenu>
  7823. <productID id="6840"
  7824. />
  7825. <productGroupable type="0"
  7826. />
  7827. </product>
  7828. <product id="Cavalry2"
  7829. name="Cavalry 2"
  7830. series="Helmet"
  7831. latestVersion="1.2"
  7832. latestVersionVoicePrompt="1.3"
  7833. show = "1" >
  7834. <productMenu id="protocol"
  7835. type="2" >
  7836. </productMenu>
  7837. <productMenu id="alexa"
  7838. type="0" >
  7839. </productMenu>
  7840. <productMenu id="ota"
  7841. type="2" >
  7842. <otaPackages>
  7843. <package
  7844. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7845. size="3144148"
  7846. />
  7847. </otaPackages>
  7848. </productMenu>
  7849. <productMenu id="wa"
  7850. type="0" >
  7851. </productMenu>
  7852. <productMenu id="meshIntercom"
  7853. type="30" >
  7854. </productMenu>
  7855. <productMenu id="meshIntercom+"
  7856. type="3"
  7857. url="2" >
  7858. <productMenuType version="1.0"
  7859. type="2"
  7860. />
  7861. </productMenu>
  7862. <productMenu id="waveIntercom"
  7863. type="1" >
  7864. <productMenuType version="1.0.9"
  7865. type="0"
  7866. />
  7867. </productMenu>
  7868. <productMenu id="phone"
  7869. type="1" >
  7870. </productMenu>
  7871. <productMenu id="music"
  7872. type="1" >
  7873. </productMenu>
  7874. <productMenu id="musicSharing"
  7875. type="0" >
  7876. </productMenu>
  7877. <productMenu id="deviceSetting"
  7878. type="1"
  7879. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7880. <productMenuURL version="1.1.9"
  7881. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7882. />
  7883. <productMenuURL version="1.0"
  7884. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7885. />
  7886. </productMenu>
  7887. <productMenu id="quickGuide"
  7888. type="0"
  7889. url=""
  7890. size="1.12MB" >
  7891. </productMenu>
  7892. <productMenu id="userGuide"
  7893. type="1"
  7894. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7895. size="2.0MB" >
  7896. </productMenu>
  7897. <productMenu id="connectGuide"
  7898. type="1"
  7899. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7900. size="1.12MB" >
  7901. </productMenu>
  7902. <productMenu id="volume"
  7903. type="12" >
  7904. </productMenu>
  7905. <productMenu id="battery"
  7906. type="1" >
  7907. </productMenu>
  7908. <productID id="6839"
  7909. />
  7910. <productGroupable type="0"
  7911. />
  7912. </product>
  7913. <product id="Cavalry"
  7914. name="Cavalry"
  7915. series="Helmet"
  7916. latestVersion="1.2.2"
  7917. show = "1" >
  7918. <productMenu id="protocol"
  7919. type="0">
  7920. </productMenu>
  7921. <productMenu id="sip"
  7922. type="1" >
  7923. </productMenu>
  7924. <productMenu id="bluetoothIntercom"
  7925. type="1" >
  7926. </productMenu>
  7927. <productMenu id="phone"
  7928. type="2" >
  7929. </productMenu>
  7930. <productMenu id="fmradio"
  7931. type="3" >
  7932. </productMenu>
  7933. <productMenu id="deviceSetting"
  7934. type="1"
  7935. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7936. <productMenuURL version="1.9"
  7937. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7938. />
  7939. <productMenuURL version="1.0.1"
  7940. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7941. />
  7942. </productMenu>
  7943. <productMenu id="quickGuide"
  7944. type="1"
  7945. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7946. size="795KB" >
  7947. </productMenu>
  7948. <productMenu id="userGuide"
  7949. type="1"
  7950. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7951. size="1.87MB" >
  7952. </productMenu>
  7953. <productMenu id="connectGuide"
  7954. type="1"
  7955. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7956. size="1.12MB" >
  7957. </productMenu>
  7958. <productID id="5524"
  7959. />
  7960. <productGroupable type="0"
  7961. />
  7962. </product>
  7963. <product id="Cavalry_Lite"
  7964. name="Cavalry Lite"
  7965. series="Helmet"
  7966. latestVersion="1.0.2"
  7967. show = "1" >
  7968. <productMenu id="protocol"
  7969. type="0">
  7970. </productMenu>
  7971. <productMenu id="sip"
  7972. type="1" >
  7973. </productMenu>
  7974. <productMenu id="bluetoothIntercom"
  7975. type="1" >
  7976. </productMenu>
  7977. <productMenu id="phone"
  7978. type="2" >
  7979. </productMenu>
  7980. <productMenu id="fmradio"
  7981. type="3" >
  7982. </productMenu>
  7983. <productMenu id="deviceSetting"
  7984. type="1"
  7985. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7986. </productMenu>
  7987. <productMenu id="userGuide"
  7988. type="1"
  7989. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7990. size="1.74MB" >
  7991. </productMenu>
  7992. <productMenu id="connectGuide"
  7993. type="1"
  7994. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7995. size="1.12MB" >
  7996. </productMenu>
  7997. <productID id="5536"
  7998. />
  7999. <productGroupable type="0"
  8000. />
  8001. </product>
  8002. <product id="VORTEX"
  8003. name="VORTEX"
  8004. series="VORTEX"
  8005. latestVersion="1.0"
  8006. latestVersionVoicePrompt="1.0"
  8007. show = "-1" >
  8008. <productMenu id="protocol"
  8009. type="2" >
  8010. </productMenu>
  8011. <productMenu id="ota"
  8012. type="2" >
  8013. <otaLanguages>
  8014. <otaLanguage
  8015. id="0"
  8016. name="English"
  8017. package="0"
  8018. />
  8019. <otaLanguage
  8020. id="0"
  8021. name="French"
  8022. package="1"
  8023. />
  8024. <otaLanguage
  8025. id="0"
  8026. name="Spanish"
  8027. package="2"
  8028. />
  8029. <otaLanguage
  8030. id="0"
  8031. name="Italian"
  8032. package="3"
  8033. />
  8034. <otaLanguage
  8035. id="0"
  8036. name="German"
  8037. package="4"
  8038. />
  8039. <otaLanguage
  8040. id="0"
  8041. name="Dutch"
  8042. package="5"
  8043. />
  8044. <otaLanguage
  8045. id="0"
  8046. name="Russian"
  8047. package="6"
  8048. />
  8049. <otaLanguage
  8050. id="0"
  8051. name="Chinese"
  8052. package="7"
  8053. />
  8054. <otaLanguage
  8055. id="0"
  8056. name="Korean"
  8057. package="8"
  8058. />
  8059. <otaLanguage
  8060. id="0"
  8061. name="Japanese"
  8062. package="9"
  8063. />
  8064. <otaLanguage
  8065. id="0"
  8066. name="Finnish"
  8067. package="10"
  8068. />
  8069. <otaLanguage
  8070. id="0"
  8071. name="Polish"
  8072. package="11"
  8073. />
  8074. </otaLanguages>
  8075. <otaPackages>
  8076. <package
  8077. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8078. size="5183988"
  8079. />
  8080. <package
  8081. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8082. size="5183988"
  8083. />
  8084. <package
  8085. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8086. size="5183988"
  8087. />
  8088. <package
  8089. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8090. size="5183988"
  8091. />
  8092. <package
  8093. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8094. size="5183988"
  8095. />
  8096. <package
  8097. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8098. size="5183988"
  8099. />
  8100. <package
  8101. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8102. size="5183988"
  8103. />
  8104. <package
  8105. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8106. size="5183988"
  8107. />
  8108. <package
  8109. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8110. size="5183988"
  8111. />
  8112. <package
  8113. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8114. size="5183988"
  8115. />
  8116. <package
  8117. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8118. size="5183988"
  8119. />
  8120. <package
  8121. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8122. size="5183988"
  8123. />
  8124. </otaPackages>
  8125. </productMenu>
  8126. <productMenu id="sip"
  8127. type="1" >
  8128. </productMenu>
  8129. <productMenu id="bluetoothIntercom"
  8130. type="1" >
  8131. </productMenu>
  8132. <productMenu id="phone"
  8133. type="1" >
  8134. </productMenu>
  8135. <productMenu id="music"
  8136. type="1" >
  8137. </productMenu>
  8138. <productMenu id="fmradio"
  8139. type="1"
  8140. url="1" >
  8141. </productMenu>
  8142. <productMenu id="deviceSetting"
  8143. type="1"
  8144. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8145. </productMenu>
  8146. <productMenu id="quickGuide"
  8147. type="0"
  8148. url=""
  8149. size="934KB" >
  8150. </productMenu>
  8151. <productMenu id="userGuide"
  8152. type="1"
  8153. url=""
  8154. size="1.14MB" >
  8155. </productMenu>
  8156. <productMenu id="connectGuide"
  8157. type="0"
  8158. url=""
  8159. size="1.12MB" >
  8160. </productMenu>
  8161. <productMenu id="volume"
  8162. type="15" >
  8163. </productMenu>
  8164. <productMenu id="appearance"
  8165. type="1"
  8166. url="1|white,silver,black" >
  8167. </productMenu>
  8168. <productID id="3451"
  8169. />
  8170. <productGroupable type="0"
  8171. />
  8172. </product>
  8173. <product id="SF4"
  8174. name="SF4"
  8175. series="SF"
  8176. latestVersion="1.1.5"
  8177. show = "-1" >
  8178. <productMenu id="protocol"
  8179. type="1"
  8180. url="3">
  8181. </productMenu>
  8182. <productMenu id="sip"
  8183. type="1" >
  8184. </productMenu>
  8185. <productMenu id="bluetoothIntercom"
  8186. type="1" >
  8187. </productMenu>
  8188. <productMenu id="phone"
  8189. type="1" >
  8190. </productMenu>
  8191. <productMenu id="music"
  8192. type="1" >
  8193. </productMenu>
  8194. <productMenu id="fmradio"
  8195. type="1" >
  8196. </productMenu>
  8197. <productMenu id="deviceSetting"
  8198. type="1"
  8199. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8200. <productMenuURL version="1.0.1"
  8201. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8202. />
  8203. </productMenu>
  8204. <productMenu id="quickGuide"
  8205. type="1"
  8206. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8207. size="607KB" >
  8208. </productMenu>
  8209. <productMenu id="userGuide"
  8210. type="1"
  8211. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8212. size="1.91MB" >
  8213. </productMenu>
  8214. <productMenu id="volume"
  8215. type="4" >
  8216. </productMenu>
  8217. <productID id="5414"
  8218. />
  8219. <productGroupable type="0"
  8220. />
  8221. </product>
  8222. <product id="SF4"
  8223. name="SF4"
  8224. series="SF"
  8225. latestVersion="3.4.4"
  8226. show = "1" >
  8227. <productMenu id="protocol"
  8228. type="2" >
  8229. </productMenu>
  8230. <productMenu id="sip"
  8231. type="1" >
  8232. </productMenu>
  8233. <productMenu id="bluetoothIntercom"
  8234. type="1" >
  8235. </productMenu>
  8236. <productMenu id="phone"
  8237. type="1" >
  8238. </productMenu>
  8239. <productMenu id="music"
  8240. type="1" >
  8241. </productMenu>
  8242. <productMenu id="fmradio"
  8243. type="1" >
  8244. </productMenu>
  8245. <productMenu id="deviceSetting"
  8246. type="1"
  8247. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8248. <productMenuURL version="3.0"
  8249. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8250. />
  8251. </productMenu>
  8252. <productMenu id="quickGuide"
  8253. type="0"
  8254. url=""
  8255. size="934KB" >
  8256. </productMenu>
  8257. <productMenu id="userGuide"
  8258. type="1"
  8259. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8260. size="1.14MB" >
  8261. </productMenu>
  8262. <productMenu id="connectGuide"
  8263. type="1"
  8264. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8265. size="1.12MB" >
  8266. </productMenu>
  8267. <productMenu id="volume"
  8268. type="15" >
  8269. </productMenu>
  8270. <productID id="3370"
  8271. />
  8272. <productGroupable type="0"
  8273. />
  8274. </product>
  8275. <product id="SF2"
  8276. name="SF2"
  8277. series="SF"
  8278. latestVersion="1.2.1"
  8279. show = "-1" >
  8280. <productMenu id="protocol"
  8281. type="1"
  8282. url="2">
  8283. </productMenu>
  8284. <productMenu id="sip"
  8285. type="1" >
  8286. </productMenu>
  8287. <productMenu id="bluetoothIntercom"
  8288. type="1" >
  8289. </productMenu>
  8290. <productMenu id="phone"
  8291. type="1" >
  8292. </productMenu>
  8293. <productMenu id="music"
  8294. type="1" >
  8295. </productMenu>
  8296. <productMenu id="fmradio"
  8297. type="1" >
  8298. </productMenu>
  8299. <productMenu id="deviceSetting"
  8300. type="1"
  8301. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8302. <productMenuURL version="1.0.1"
  8303. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8304. />
  8305. </productMenu>
  8306. <productMenu id="quickGuide"
  8307. type="1"
  8308. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8309. size="607KB" >
  8310. </productMenu>
  8311. <productMenu id="userGuide"
  8312. type="1"
  8313. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8314. size="1.91MB" >
  8315. </productMenu>
  8316. <productMenu id="volume"
  8317. type="4" >
  8318. </productMenu>
  8319. <productID id="5412"
  8320. />
  8321. <productGroupable type="0"
  8322. />
  8323. </product>
  8324. <product id="SF2"
  8325. name="SF2"
  8326. series="SF"
  8327. latestVersion="3.3.4"
  8328. show = "1" >
  8329. <productMenu id="protocol"
  8330. type="2" >
  8331. </productMenu>
  8332. <productMenu id="sip"
  8333. type="1" >
  8334. </productMenu>
  8335. <productMenu id="bluetoothIntercom"
  8336. type="1" >
  8337. </productMenu>
  8338. <productMenu id="phone"
  8339. type="1" >
  8340. </productMenu>
  8341. <productMenu id="music"
  8342. type="1" >
  8343. </productMenu>
  8344. <productMenu id="fmradio"
  8345. type="0" >
  8346. </productMenu>
  8347. <productMenu id="deviceSetting"
  8348. type="1"
  8349. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8350. <productMenuURL version="3.0"
  8351. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8352. />
  8353. </productMenu>
  8354. <productMenu id="quickGuide"
  8355. type="0"
  8356. url=""
  8357. size="934KB" >
  8358. </productMenu>
  8359. <productMenu id="userGuide"
  8360. type="1"
  8361. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8362. size="1.14MB" >
  8363. </productMenu>
  8364. <productMenu id="connectGuide"
  8365. type="1"
  8366. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8367. size="1.12MB" >
  8368. </productMenu>
  8369. <productMenu id="volume"
  8370. type="15" >
  8371. </productMenu>
  8372. <productID id="3360"
  8373. />
  8374. <productGroupable type="0"
  8375. />
  8376. </product>
  8377. <product id="SF1"
  8378. name="SF1"
  8379. series="SF"
  8380. latestVersion="2.0.5"
  8381. show = "-1" >
  8382. <productMenu id="protocol"
  8383. type="1"
  8384. url="1">
  8385. </productMenu>
  8386. <productMenu id="sip"
  8387. type="1" >
  8388. </productMenu>
  8389. <productMenu id="bluetoothIntercom"
  8390. type="1" >
  8391. <productMenuType version="1.1"
  8392. type="0"
  8393. />
  8394. </productMenu>
  8395. <productMenu id="phone"
  8396. type="1" >
  8397. </productMenu>
  8398. <productMenu id="music"
  8399. type="1" >
  8400. </productMenu>
  8401. <productMenu id="deviceSetting"
  8402. type="1"
  8403. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8404. <productMenuURL version="1.1"
  8405. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8406. />
  8407. <productMenuURL version="1.0"
  8408. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8409. />
  8410. </productMenu>
  8411. <productMenu id="quickGuide"
  8412. type="1"
  8413. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8414. size="401KB" >
  8415. </productMenu>
  8416. <productMenu id="userGuide"
  8417. type="1"
  8418. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8419. size="1.91MB" >
  8420. </productMenu>
  8421. <productMenu id="volume"
  8422. type="3" >
  8423. </productMenu>
  8424. <productID id="5410"
  8425. />
  8426. <productGroupable type="0"
  8427. />
  8428. </product>
  8429. <product id="SF1"
  8430. name="SF1"
  8431. series="SF"
  8432. latestVersion="3.3.4"
  8433. show = "1" >
  8434. <productMenu id="protocol"
  8435. type="2" >
  8436. </productMenu>
  8437. <productMenu id="sip"
  8438. type="1" >
  8439. </productMenu>
  8440. <productMenu id="bluetoothIntercom"
  8441. type="1" >
  8442. </productMenu>
  8443. <productMenu id="phone"
  8444. type="1" >
  8445. </productMenu>
  8446. <productMenu id="music"
  8447. type="1" >
  8448. </productMenu>
  8449. <productMenu id="fmradio"
  8450. type="0" >
  8451. </productMenu>
  8452. <productMenu id="deviceSetting"
  8453. type="1"
  8454. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8455. <productMenuURL version="3.0"
  8456. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8457. />
  8458. </productMenu>
  8459. <productMenu id="quickGuide"
  8460. type="0"
  8461. url=""
  8462. size="934KB" >
  8463. </productMenu>
  8464. <productMenu id="userGuide"
  8465. type="1"
  8466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8467. size="1.14MB" >
  8468. </productMenu>
  8469. <productMenu id="connectGuide"
  8470. type="1"
  8471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8472. size="1.12MB" >
  8473. </productMenu>
  8474. <productMenu id="volume"
  8475. type="15" >
  8476. </productMenu>
  8477. <productID id="3350"
  8478. />
  8479. <productGroupable type="0"
  8480. />
  8481. </product>
  8482. <product id="SFR"
  8483. name="SFR"
  8484. series="SF"
  8485. latestVersion="1.1.1"
  8486. show = "1" >
  8487. <productMenu id="protocol"
  8488. type="1"
  8489. url="3">
  8490. </productMenu>
  8491. <productMenu id="sip"
  8492. type="1" >
  8493. </productMenu>
  8494. <productMenu id="bluetoothIntercom"
  8495. type="1" >
  8496. </productMenu>
  8497. <productMenu id="phone"
  8498. type="1" >
  8499. </productMenu>
  8500. <productMenu id="music"
  8501. type="1" >
  8502. </productMenu>
  8503. <productMenu id="fmradio"
  8504. type="1" >
  8505. </productMenu>
  8506. <productMenu id="deviceSetting"
  8507. type="1"
  8508. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8509. </productMenu>
  8510. <productMenu id="quickGuide"
  8511. type="1"
  8512. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8513. size="607KB" >
  8514. </productMenu>
  8515. <productMenu id="userGuide"
  8516. type="1"
  8517. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8518. size="1.91MB" >
  8519. </productMenu>
  8520. <productMenu id="volume"
  8521. type="4" >
  8522. </productMenu>
  8523. <productID id="5418"
  8524. />
  8525. <productGroupable type="0"
  8526. />
  8527. </product>
  8528. <product id="20S"
  8529. name="20S"
  8530. series="20"
  8531. latestVersion="2.2.3"
  8532. show = "1" >
  8533. <productMenu id="protocol"
  8534. type="0">
  8535. </productMenu>
  8536. <productMenu id="wa"
  8537. type="5" >
  8538. </productMenu>
  8539. <productMenu id="sip"
  8540. type="1" >
  8541. <productMenuType version="1.0"
  8542. type="0"
  8543. />
  8544. </productMenu>
  8545. <productMenu id="bluetoothIntercom"
  8546. type="1" >
  8547. <productMenuType version="1.0"
  8548. type="0"
  8549. />
  8550. </productMenu>
  8551. <productMenu id="intercomSetting"
  8552. type="1" >
  8553. </productMenu>
  8554. <productMenu id="phone"
  8555. type="2" >
  8556. </productMenu>
  8557. <productMenu id="fmradio"
  8558. type="3" >
  8559. </productMenu>
  8560. <productMenu id="deviceSetting"
  8561. type="1"
  8562. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8563. <productMenuURL version="2.0.2"
  8564. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8565. />
  8566. <productMenuURL version="1.5"
  8567. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8568. />
  8569. <productMenuURL version="1.4.1"
  8570. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8571. />
  8572. <productMenuURL version="1.1"
  8573. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8574. />
  8575. <productMenuURL version="1.0"
  8576. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8577. />
  8578. </productMenu>
  8579. <productMenu id="quickGuide"
  8580. type="0"
  8581. url=""
  8582. size="264KB" >
  8583. </productMenu>
  8584. <productMenu id="userGuide"
  8585. type="1"
  8586. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8587. size="3.09MB" >
  8588. </productMenu>
  8589. <productMenu id="connectGuide"
  8590. type="1"
  8591. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8592. size="1.12MB" >
  8593. </productMenu>
  8594. <productID id="4210"
  8595. />
  8596. <productGroupable type="1"
  8597. />
  8598. </product>
  8599. <product id="20S_EVO"
  8600. name="20S EVO"
  8601. series="20"
  8602. latestVersion="2.2.3"
  8603. show = "1" >
  8604. <productMenu id="protocol"
  8605. type="0">
  8606. </productMenu>
  8607. <productMenu id="wa"
  8608. type="5" >
  8609. </productMenu>
  8610. <productMenu id="sip"
  8611. type="1" >
  8612. <productMenuType version="1.0"
  8613. type="0"
  8614. />
  8615. </productMenu>
  8616. <productMenu id="bluetoothIntercom"
  8617. type="1" >
  8618. <productMenuType version="1.0"
  8619. type="0"
  8620. />
  8621. </productMenu>
  8622. <productMenu id="intercomSetting"
  8623. type="1" >
  8624. </productMenu>
  8625. <productMenu id="phone"
  8626. type="2" >
  8627. </productMenu>
  8628. <productMenu id="fmradio"
  8629. type="3" >
  8630. </productMenu>
  8631. <productMenu id="deviceSetting"
  8632. type="1"
  8633. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8634. <productMenuURL version="2.0.2"
  8635. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8636. />
  8637. <productMenuURL version="1.5"
  8638. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8639. />
  8640. <productMenuURL version="1.4.1"
  8641. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8642. />
  8643. <productMenuURL version="1.1"
  8644. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8645. />
  8646. <productMenuURL version="1.0"
  8647. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8648. />
  8649. </productMenu>
  8650. <productMenu id="quickGuide"
  8651. type="0"
  8652. url=""
  8653. size="264KB" >
  8654. </productMenu>
  8655. <productMenu id="userGuide"
  8656. type="1"
  8657. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8658. size="3.09MB" >
  8659. </productMenu>
  8660. <productMenu id="connectGuide"
  8661. type="1"
  8662. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8663. size="1.12MB" >
  8664. </productMenu>
  8665. <productID id="4210"
  8666. />
  8667. <productProductKey key="16"
  8668. />
  8669. <productGroupable type="1"
  8670. />
  8671. </product>
  8672. <product id="10S"
  8673. name="10S"
  8674. series="10"
  8675. latestVersion="3.0.2"
  8676. show = "1" >
  8677. <productMenu id="protocol"
  8678. type="3" >
  8679. </productMenu>
  8680. <productMenu id="sip"
  8681. type="1" >
  8682. </productMenu>
  8683. <productMenu id="bluetoothIntercom"
  8684. type="1" >
  8685. </productMenu>
  8686. <productMenu id="phone"
  8687. type="1" >
  8688. </productMenu>
  8689. <productMenu id="deviceSetting"
  8690. type="1"
  8691. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8692. </productMenu>
  8693. <productMenu id="quickGuide"
  8694. type="1"
  8695. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8696. size="934KB" >
  8697. </productMenu>
  8698. <productMenu id="userGuide"
  8699. type="1"
  8700. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8701. size="1.14MB" >
  8702. </productMenu>
  8703. <productMenu id="connectGuide"
  8704. type="1"
  8705. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8706. size="1.12MB" >
  8707. </productMenu>
  8708. <productID id="3380"
  8709. />
  8710. <productGroupable type="0"
  8711. />
  8712. </product>
  8713. <product id="10S"
  8714. name="10S"
  8715. series="10"
  8716. latestVersion="2.1.1"
  8717. show = "-1" >
  8718. <productMenu id="protocol"
  8719. type="0">
  8720. </productMenu>
  8721. <productMenu id="sip"
  8722. type="1" >
  8723. </productMenu>
  8724. <productMenu id="bluetoothIntercom"
  8725. type="1" >
  8726. </productMenu>
  8727. <productMenu id="phone"
  8728. type="2" >
  8729. </productMenu>
  8730. <productMenu id="fmradio"
  8731. type="3" >
  8732. </productMenu>
  8733. <productMenu id="deviceSetting"
  8734. type="1"
  8735. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8736. <productMenuURL version="1.5"
  8737. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8738. />
  8739. <productMenuURL version="1.3.1"
  8740. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8741. />
  8742. </productMenu>
  8743. <productMenu id="quickGuide"
  8744. type="1"
  8745. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8746. size="310KB" >
  8747. </productMenu>
  8748. <productMenu id="userGuide"
  8749. type="1"
  8750. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8751. size="1.57MB" >
  8752. </productMenu>
  8753. <productID id="5530"
  8754. />
  8755. <productGroupable type="0"
  8756. />
  8757. </product>
  8758. <product id="Apex"
  8759. name="Apex"
  8760. series="Apex"
  8761. latestVersion="1.0"
  8762. latestVersionVoicePrompt="1.0"
  8763. show = "-1" >
  8764. <productMenu id="protocol"
  8765. type="2" >
  8766. </productMenu>
  8767. <productMenu id="serialNumber"
  8768. type="1" >
  8769. </productMenu>
  8770. <productMenu id="ota"
  8771. type="0" >
  8772. <otaLanguages>
  8773. <otaLanguage
  8774. id="0"
  8775. name="English"
  8776. package="0"
  8777. />
  8778. <otaLanguage
  8779. id="0"
  8780. name="French"
  8781. package="1"
  8782. />
  8783. <otaLanguage
  8784. id="0"
  8785. name="Spanish"
  8786. package="2"
  8787. />
  8788. <otaLanguage
  8789. id="0"
  8790. name="Italian"
  8791. package="3"
  8792. />
  8793. <otaLanguage
  8794. id="0"
  8795. name="German"
  8796. package="4"
  8797. />
  8798. <otaLanguage
  8799. id="0"
  8800. name="Dutch"
  8801. package="5"
  8802. />
  8803. <otaLanguage
  8804. id="0"
  8805. name="Russian"
  8806. package="6"
  8807. />
  8808. <otaLanguage
  8809. id="0"
  8810. name="Chinese"
  8811. package="7"
  8812. />
  8813. <otaLanguage
  8814. id="0"
  8815. name="Korean"
  8816. package="8"
  8817. />
  8818. <otaLanguage
  8819. id="0"
  8820. name="Japanese"
  8821. package="9"
  8822. />
  8823. <otaLanguage
  8824. id="0"
  8825. name="Finnish"
  8826. package="10"
  8827. />
  8828. <otaLanguage
  8829. id="0"
  8830. name="Polish"
  8831. package="11"
  8832. />
  8833. </otaLanguages>
  8834. <otaPackages>
  8835. <package
  8836. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8837. size="5183988"
  8838. />
  8839. <package
  8840. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8841. size="5183988"
  8842. />
  8843. <package
  8844. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8845. size="5183988"
  8846. />
  8847. <package
  8848. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8849. size="5183988"
  8850. />
  8851. <package
  8852. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8853. size="5183988"
  8854. />
  8855. <package
  8856. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8857. size="5183988"
  8858. />
  8859. <package
  8860. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8861. size="5183988"
  8862. />
  8863. <package
  8864. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8865. size="5183988"
  8866. />
  8867. <package
  8868. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8869. size="5183988"
  8870. />
  8871. <package
  8872. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8873. size="5183988"
  8874. />
  8875. <package
  8876. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8877. size="5183988"
  8878. />
  8879. <package
  8880. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8881. size="5183988"
  8882. />
  8883. </otaPackages>
  8884. </productMenu>
  8885. <productMenu id="sip"
  8886. type="1" >
  8887. </productMenu>
  8888. <productMenu id="bluetoothIntercom"
  8889. type="1" >
  8890. </productMenu>
  8891. <productMenu id="phone"
  8892. type="1" >
  8893. </productMenu>
  8894. <productMenu id="music"
  8895. type="1" >
  8896. </productMenu>
  8897. <productMenu id="fmradio"
  8898. type="1"
  8899. url="1" >
  8900. </productMenu>
  8901. <productMenu id="deviceSetting"
  8902. type="1"
  8903. url="https://api.sena.com/support/test/xml/NS_Apex_test_02.xml" >
  8904. </productMenu>
  8905. <productMenu id="quickGuide"
  8906. type="0"
  8907. url=""
  8908. size="934KB" >
  8909. </productMenu>
  8910. <productMenu id="userGuide"
  8911. type="1"
  8912. url=""
  8913. size="1.14MB" >
  8914. </productMenu>
  8915. <productMenu id="volume"
  8916. type="15" >
  8917. </productMenu>
  8918. <productID id="3452"
  8919. />
  8920. <productGroupable type="0"
  8921. />
  8922. </product>
  8923. <product id="ApexPlus"
  8924. name="Apex Plus"
  8925. series="Apex"
  8926. latestVersion="1.0"
  8927. latestVersionVoicePrompt="1.0"
  8928. show = "-1" >
  8929. <productMenu id="protocol"
  8930. type="2" >
  8931. </productMenu>
  8932. <productMenu id="serialNumber"
  8933. type="1" >
  8934. </productMenu>
  8935. <productMenu id="ota"
  8936. type="0" >
  8937. <otaLanguages>
  8938. <otaLanguage
  8939. id="0"
  8940. name="English"
  8941. package="0"
  8942. />
  8943. <otaLanguage
  8944. id="0"
  8945. name="French"
  8946. package="1"
  8947. />
  8948. <otaLanguage
  8949. id="0"
  8950. name="Spanish"
  8951. package="2"
  8952. />
  8953. <otaLanguage
  8954. id="0"
  8955. name="Italian"
  8956. package="3"
  8957. />
  8958. <otaLanguage
  8959. id="0"
  8960. name="German"
  8961. package="4"
  8962. />
  8963. <otaLanguage
  8964. id="0"
  8965. name="Dutch"
  8966. package="5"
  8967. />
  8968. <otaLanguage
  8969. id="0"
  8970. name="Russian"
  8971. package="6"
  8972. />
  8973. <otaLanguage
  8974. id="0"
  8975. name="Chinese"
  8976. package="7"
  8977. />
  8978. <otaLanguage
  8979. id="0"
  8980. name="Korean"
  8981. package="8"
  8982. />
  8983. <otaLanguage
  8984. id="0"
  8985. name="Japanese"
  8986. package="9"
  8987. />
  8988. <otaLanguage
  8989. id="0"
  8990. name="Finnish"
  8991. package="10"
  8992. />
  8993. <otaLanguage
  8994. id="0"
  8995. name="Polish"
  8996. package="11"
  8997. />
  8998. </otaLanguages>
  8999. <otaPackages>
  9000. <package
  9001. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  9002. size="5183988"
  9003. />
  9004. <package
  9005. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  9006. size="5183988"
  9007. />
  9008. <package
  9009. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  9010. size="5183988"
  9011. />
  9012. <package
  9013. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  9014. size="5183988"
  9015. />
  9016. <package
  9017. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  9018. size="5183988"
  9019. />
  9020. <package
  9021. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  9022. size="5183988"
  9023. />
  9024. <package
  9025. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  9026. size="5183988"
  9027. />
  9028. <package
  9029. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  9030. size="5183988"
  9031. />
  9032. <package
  9033. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  9034. size="5183988"
  9035. />
  9036. <package
  9037. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  9038. size="5183988"
  9039. />
  9040. <package
  9041. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9042. size="5183988"
  9043. />
  9044. <package
  9045. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9046. size="5183988"
  9047. />
  9048. </otaPackages>
  9049. </productMenu>
  9050. <productMenu id="sip"
  9051. type="1" >
  9052. </productMenu>
  9053. <productMenu id="bluetoothIntercom"
  9054. type="1" >
  9055. </productMenu>
  9056. <productMenu id="phone"
  9057. type="1" >
  9058. </productMenu>
  9059. <productMenu id="music"
  9060. type="1" >
  9061. </productMenu>
  9062. <productMenu id="fmradio"
  9063. type="1"
  9064. url="1" >
  9065. </productMenu>
  9066. <productMenu id="deviceSetting"
  9067. type="1"
  9068. url="https://api.sena.com/support/test/xml/NS_Apex_test_02.xml" >
  9069. </productMenu>
  9070. <productMenu id="quickGuide"
  9071. type="0"
  9072. url=""
  9073. size="934KB" >
  9074. </productMenu>
  9075. <productMenu id="userGuide"
  9076. type="1"
  9077. url=""
  9078. size="1.14MB" >
  9079. </productMenu>
  9080. <productMenu id="volume"
  9081. type="15" >
  9082. </productMenu>
  9083. <productID id="3453"
  9084. />
  9085. <productGroupable type="0"
  9086. />
  9087. </product>
  9088. <product id="10R2"
  9089. name="10R 2"
  9090. series="10"
  9091. latestVersion="0.9"
  9092. latestVersionVoicePrompt="1.1"
  9093. show = "-1" >
  9094. <productMenu id="protocol"
  9095. type="2" >
  9096. </productMenu>
  9097. <productMenu id="ota"
  9098. type="2" >
  9099. <otaPackages>
  9100. <package
  9101. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9102. size="2945812"
  9103. />
  9104. </otaPackages>
  9105. </productMenu>
  9106. <productMenu id="sip"
  9107. type="1" >
  9108. </productMenu>
  9109. <productMenu id="bluetoothIntercom"
  9110. type="1" >
  9111. </productMenu>
  9112. <productMenu id="phone"
  9113. type="1" >
  9114. </productMenu>
  9115. <productMenu id="music"
  9116. type="1" >
  9117. </productMenu>
  9118. <productMenu id="fmradio"
  9119. type="1"
  9120. url="1" >
  9121. </productMenu>
  9122. <productMenu id="deviceSetting"
  9123. type="1"
  9124. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9125. </productMenu>
  9126. <productMenu id="quickGuide"
  9127. type="1"
  9128. url=""
  9129. size="934KB" >
  9130. </productMenu>
  9131. <productMenu id="userGuide"
  9132. type="0"
  9133. url=""
  9134. size="1.14MB" >
  9135. </productMenu>
  9136. <productMenu id="volume"
  9137. type="15" >
  9138. </productMenu>
  9139. <productID id="4000"
  9140. />
  9141. <productGroupable type="0"
  9142. />
  9143. </product>
  9144. <product id="10R"
  9145. name="10R"
  9146. series="10"
  9147. latestVersion="2.1.1"
  9148. show = "1" >
  9149. <productMenu id="protocol"
  9150. type="0">
  9151. </productMenu>
  9152. <productMenu id="sip"
  9153. type="1" >
  9154. <productMenuType version="1.0.2"
  9155. type="0"
  9156. />
  9157. </productMenu>
  9158. <productMenu id="bluetoothIntercom"
  9159. type="1" >
  9160. <productMenuType version="1.0.2"
  9161. type="0"
  9162. />
  9163. </productMenu>
  9164. <productMenu id="phone"
  9165. type="2" >
  9166. </productMenu>
  9167. <productMenu id="fmradio"
  9168. type="3" >
  9169. </productMenu>
  9170. <productMenu id="deviceSetting"
  9171. type="1"
  9172. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9173. <productMenuURL version="1.4"
  9174. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9175. />
  9176. <productMenuURL version="1.2.1"
  9177. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9178. />
  9179. <productMenuURL version="1.0.2"
  9180. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9181. />
  9182. <productMenuURL version="1.0"
  9183. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9184. />
  9185. </productMenu>
  9186. <productMenu id="quickGuide"
  9187. type="1"
  9188. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9189. size="400KB" >
  9190. </productMenu>
  9191. <productMenu id="userGuide"
  9192. type="1"
  9193. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9194. size="2.75MB" >
  9195. </productMenu>
  9196. <productMenu id="connectGuide"
  9197. type="1"
  9198. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9199. size="1.12MB" >
  9200. </productMenu>
  9201. <productID id="5520"
  9202. />
  9203. <productGroupable type="0"
  9204. />
  9205. </product>
  9206. <product id="10C_EVO"
  9207. name="10C EVO"
  9208. series="10"
  9209. latestVersion="1.7"
  9210. show = "1" >
  9211. <productMenu id="protocol"
  9212. type="0">
  9213. </productMenu>
  9214. <productMenu id="sip"
  9215. type="1" >
  9216. </productMenu>
  9217. <productMenu id="bluetoothIntercom"
  9218. type="1" >
  9219. </productMenu>
  9220. <productMenu id="phone"
  9221. type="2" >
  9222. </productMenu>
  9223. <productMenu id="fmradio"
  9224. type="3" >
  9225. </productMenu>
  9226. <productMenu id="deviceSetting"
  9227. type="1"
  9228. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9229. <productMenuURL version="1.3.1"
  9230. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9231. />
  9232. </productMenu>
  9233. <productMenu id="quickGuide"
  9234. type="1"
  9235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9236. size="1.32MB" >
  9237. </productMenu>
  9238. <productMenu id="userGuide"
  9239. type="1"
  9240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9241. size="1.68MB" >
  9242. </productMenu>
  9243. <productMenu id="connectGuide"
  9244. type="1"
  9245. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9246. size="1.12MB" >
  9247. </productMenu>
  9248. <productID id="5570"
  9249. />
  9250. <productGroupable type="0"
  9251. />
  9252. </product>
  9253. <product id="10C_Pro"
  9254. name="10C Pro"
  9255. series="10"
  9256. latestVersion="2.7.1"
  9257. show = "1" >
  9258. <productMenu id="protocol"
  9259. type="0">
  9260. </productMenu>
  9261. <productMenu id="sip"
  9262. type="1" >
  9263. </productMenu>
  9264. <productMenu id="bluetoothIntercom"
  9265. type="1" >
  9266. </productMenu>
  9267. <productMenu id="phone"
  9268. type="2" >
  9269. </productMenu>
  9270. <productMenu id="fmradio"
  9271. type="3" >
  9272. </productMenu>
  9273. <productMenu id="deviceSetting"
  9274. type="1"
  9275. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9276. <productMenuURL version="2.5.1"
  9277. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9278. />
  9279. <productMenuURL version="1.0"
  9280. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9281. />
  9282. </productMenu>
  9283. <productMenu id="quickGuide"
  9284. type="1"
  9285. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9286. size="651KB" >
  9287. </productMenu>
  9288. <productMenu id="userGuide"
  9289. type="1"
  9290. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9291. size="2.34MB" >
  9292. </productMenu>
  9293. <productMenu id="connectGuide"
  9294. type="1"
  9295. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9296. size="1.12MB" >
  9297. </productMenu>
  9298. <productID id="5580"
  9299. />
  9300. <productGroupable type="0"
  9301. />
  9302. </product>
  9303. <product id="10C"
  9304. name="10C"
  9305. series="10"
  9306. latestVersion="3.0.4"
  9307. show = "1" >
  9308. <productMenu id="protocol"
  9309. type="0">
  9310. </productMenu>
  9311. <productMenu id="sip"
  9312. type="1" >
  9313. <productMenuType version="1.0.4"
  9314. type="0"
  9315. />
  9316. </productMenu>
  9317. <productMenu id="bluetoothIntercom"
  9318. type="1" >
  9319. <productMenuType version="1.0.4"
  9320. type="0"
  9321. />
  9322. </productMenu>
  9323. <productMenu id="phone"
  9324. type="2" >
  9325. </productMenu>
  9326. <productMenu id="fmradio"
  9327. type="3" >
  9328. </productMenu>
  9329. <productMenu id="deviceSetting"
  9330. type="1"
  9331. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9332. <productMenuURL version="2.3"
  9333. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9334. />
  9335. <productMenuURL version="2.1.1"
  9336. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9337. />
  9338. <productMenuURL version="1.0.4"
  9339. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9340. />
  9341. <productMenuURL version="1.0.2"
  9342. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9343. />
  9344. </productMenu>
  9345. <productMenu id="quickGuide"
  9346. type="1"
  9347. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9348. size="935KB" >
  9349. </productMenu>
  9350. <productMenu id="userGuide"
  9351. type="1"
  9352. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9353. size="2.82MB" >
  9354. </productMenu>
  9355. <productMenu id="connectGuide"
  9356. type="1"
  9357. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9358. size="1.12MB" >
  9359. </productMenu>
  9360. <productID id="5510"
  9361. />
  9362. <productGroupable type="0"
  9363. />
  9364. </product>
  9365. <product id="10U_GT_AIR"
  9366. name="10U GT-Air"
  9367. series="10"
  9368. latestVersion="2.0.4"
  9369. show = "1" >
  9370. <productMenu id="protocol"
  9371. type="0">
  9372. </productMenu>
  9373. <productMenu id="sip"
  9374. type="1" >
  9375. <productMenuType version="1.0.2"
  9376. type="0"
  9377. />
  9378. </productMenu>
  9379. <productMenu id="bluetoothIntercom"
  9380. type="1" >
  9381. <productMenuType version="1.0.2"
  9382. type="0"
  9383. />
  9384. </productMenu>
  9385. <productMenu id="phone"
  9386. type="2" >
  9387. </productMenu>
  9388. <productMenu id="fmradio"
  9389. type="3" >
  9390. </productMenu>
  9391. <productMenu id="deviceSetting"
  9392. type="1"
  9393. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9394. <productMenuURL version="1.3.2"
  9395. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9396. />
  9397. <productMenuURL version="1.0.2"
  9398. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9399. />
  9400. </productMenu>
  9401. <productMenu id="quickGuide"
  9402. type="1"
  9403. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9404. size="685KB" >
  9405. </productMenu>
  9406. <productMenu id="userGuide"
  9407. type="1"
  9408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9409. size="684KB" >
  9410. </productMenu>
  9411. <productMenu id="connectGuide"
  9412. type="1"
  9413. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9414. size="1.12MB" >
  9415. </productMenu>
  9416. <productID id="5610"
  9417. />
  9418. <productGroupable type="0"
  9419. />
  9420. </product>
  9421. <product id="10U_NEOTEC"
  9422. name="10U Neotec"
  9423. series="10"
  9424. latestVersion="2.0.4"
  9425. show = "1" >
  9426. <productMenu id="protocol"
  9427. type="0">
  9428. </productMenu>
  9429. <productMenu id="sip"
  9430. type="1" >
  9431. <productMenuType version="1.0.2"
  9432. type="0"
  9433. />
  9434. </productMenu>
  9435. <productMenu id="bluetoothIntercom"
  9436. type="1" >
  9437. <productMenuType version="1.0.2"
  9438. type="0"
  9439. />
  9440. </productMenu>
  9441. <productMenu id="phone"
  9442. type="2" >
  9443. </productMenu>
  9444. <productMenu id="fmradio"
  9445. type="3" >
  9446. </productMenu>
  9447. <productMenu id="deviceSetting"
  9448. type="1"
  9449. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9450. <productMenuURL version="1.3.2"
  9451. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9452. />
  9453. <productMenuURL version="1.0.2"
  9454. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9455. />
  9456. </productMenu>
  9457. <productMenu id="quickGuide"
  9458. type="1"
  9459. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9460. size="689KB" >
  9461. </productMenu>
  9462. <productMenu id="userGuide"
  9463. type="1"
  9464. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9465. size="684KB" >
  9466. </productMenu>
  9467. <productMenu id="connectGuide"
  9468. type="1"
  9469. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9470. size="1.12MB" >
  9471. </productMenu>
  9472. <productID id="5611"
  9473. />
  9474. <productGroupable type="0"
  9475. />
  9476. </product>
  9477. <product id="10U_J_CRUISE"
  9478. name="10U J-Cruise"
  9479. series="10"
  9480. latestVersion="2.0.4"
  9481. show = "1" >
  9482. <productMenu id="protocol"
  9483. type="0">
  9484. </productMenu>
  9485. <productMenu id="sip"
  9486. type="1" >
  9487. <productMenuType version="1.0.2"
  9488. type="0"
  9489. />
  9490. </productMenu>
  9491. <productMenu id="bluetoothIntercom"
  9492. type="1" >
  9493. <productMenuType version="1.0.2"
  9494. type="0"
  9495. />
  9496. </productMenu>
  9497. <productMenu id="phone"
  9498. type="2" >
  9499. </productMenu>
  9500. <productMenu id="fmradio"
  9501. type="3" >
  9502. </productMenu>
  9503. <productMenu id="deviceSetting"
  9504. type="1"
  9505. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9506. <productMenuURL version="1.3.2"
  9507. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9508. />
  9509. <productMenuURL version="1.0.2"
  9510. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9511. />
  9512. </productMenu>
  9513. <productMenu id="quickGuide"
  9514. type="1"
  9515. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9516. size="686KB" >
  9517. </productMenu>
  9518. <productMenu id="userGuide"
  9519. type="1"
  9520. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9521. size="684KB" >
  9522. </productMenu>
  9523. <productMenu id="connectGuide"
  9524. type="1"
  9525. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9526. size="1.12MB" >
  9527. </productMenu>
  9528. <productID id="5612"
  9529. />
  9530. <productGroupable type="0"
  9531. />
  9532. </product>
  9533. <product id="10U_C3"
  9534. name="10U C3/C3Pro"
  9535. series="10"
  9536. latestVersion="2.0.4"
  9537. show = "1" >
  9538. <productMenu id="protocol"
  9539. type="0">
  9540. </productMenu>
  9541. <productMenu id="sip"
  9542. type="1" >
  9543. <productMenuType version="1.0.2"
  9544. type="0"
  9545. />
  9546. </productMenu>
  9547. <productMenu id="bluetoothIntercom"
  9548. type="1" >
  9549. <productMenuType version="1.0.2"
  9550. type="0"
  9551. />
  9552. </productMenu>
  9553. <productMenu id="phone"
  9554. type="2" >
  9555. </productMenu>
  9556. <productMenu id="fmradio"
  9557. type="3" >
  9558. </productMenu>
  9559. <productMenu id="deviceSetting"
  9560. type="1"
  9561. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9562. <productMenuURL version="1.3.2"
  9563. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9564. />
  9565. <productMenuURL version="1.0.2"
  9566. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9567. />
  9568. </productMenu>
  9569. <productMenu id="quickGuide"
  9570. type="1"
  9571. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9572. size="199KB" >
  9573. </productMenu>
  9574. <productMenu id="userGuide"
  9575. type="1"
  9576. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9577. size="684KB" >
  9578. </productMenu>
  9579. <productMenu id="connectGuide"
  9580. type="1"
  9581. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9582. size="1.12MB" >
  9583. </productMenu>
  9584. <productID id="5620"
  9585. />
  9586. <productGroupable type="0"
  9587. />
  9588. </product>
  9589. <product id="10U_ARAI"
  9590. name="10U Arai"
  9591. series="10"
  9592. latestVersion="2.0.4"
  9593. show = "1" >
  9594. <productMenu id="protocol"
  9595. type="0">
  9596. </productMenu>
  9597. <productMenu id="sip"
  9598. type="1" >
  9599. <productMenuType version="1.0.2"
  9600. type="0"
  9601. />
  9602. </productMenu>
  9603. <productMenu id="bluetoothIntercom"
  9604. type="1" >
  9605. <productMenuType version="1.0.2"
  9606. type="0"
  9607. />
  9608. </productMenu>
  9609. <productMenu id="phone"
  9610. type="2" >
  9611. </productMenu>
  9612. <productMenu id="fmradio"
  9613. type="3" >
  9614. </productMenu>
  9615. <productMenu id="deviceSetting"
  9616. type="1"
  9617. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9618. <productMenuURL version="1.3.2"
  9619. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9620. />
  9621. <productMenuURL version="1.0.2"
  9622. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9623. />
  9624. </productMenu>
  9625. <productMenu id="quickGuide"
  9626. type="1"
  9627. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9628. size="689KB" >
  9629. </productMenu>
  9630. <productMenu id="userGuide"
  9631. type="1"
  9632. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9633. size="684KB" >
  9634. </productMenu>
  9635. <productMenu id="connectGuide"
  9636. type="1"
  9637. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9638. size="1.12MB" >
  9639. </productMenu>
  9640. <productID id="5621"
  9641. />
  9642. <productGroupable type="0"
  9643. />
  9644. </product>
  9645. <product id="10Upad"
  9646. name="10Upad"
  9647. series="10"
  9648. latestVersion="2.0.3"
  9649. show = "1" >
  9650. <productMenu id="protocol"
  9651. type="0">
  9652. </productMenu>
  9653. <productMenu id="sip"
  9654. type="1" >
  9655. </productMenu>
  9656. <productMenu id="bluetoothIntercom"
  9657. type="1" >
  9658. </productMenu>
  9659. <productMenu id="phone"
  9660. type="2" >
  9661. </productMenu>
  9662. <productMenu id="fmradio"
  9663. type="3" >
  9664. </productMenu>
  9665. <productMenu id="deviceSetting"
  9666. type="1"
  9667. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9668. <productMenuURL version="1.0.3"
  9669. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9670. />
  9671. </productMenu>
  9672. <productMenu id="quickGuide"
  9673. type="1"
  9674. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9675. size="615KB" >
  9676. </productMenu>
  9677. <productMenu id="userGuide"
  9678. type="1"
  9679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9680. size="0.99MB" >
  9681. </productMenu>
  9682. <productMenu id="connectGuide"
  9683. type="1"
  9684. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9685. size="1.12MB" >
  9686. </productMenu>
  9687. <productID id="6210"
  9688. />
  9689. <productGroupable type="0"
  9690. />
  9691. </product>
  9692. <product id="5S"
  9693. name="5S"
  9694. series="5"
  9695. latestVersion="2.3.1"
  9696. show = "1" >
  9697. <productMenu id="protocol"
  9698. type="3" >
  9699. </productMenu>
  9700. <productMenu id="sip"
  9701. type="1" >
  9702. </productMenu>
  9703. <productMenu id="bluetoothIntercom"
  9704. type="1" >
  9705. </productMenu>
  9706. <productMenu id="phone"
  9707. type="1" >
  9708. </productMenu>
  9709. <productMenu id="fmradio"
  9710. type="0" >
  9711. </productMenu>
  9712. <productMenu id="deviceSetting"
  9713. type="1"
  9714. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9715. </productMenu>
  9716. <productMenu id="quickGuide"
  9717. type="0"
  9718. url=""
  9719. size="934KB" >
  9720. </productMenu>
  9721. <productMenu id="userGuide"
  9722. type="1"
  9723. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9724. size="1.14MB" >
  9725. </productMenu>
  9726. <productMenu id="connectGuide"
  9727. type="1"
  9728. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9729. size="1.12MB" >
  9730. </productMenu>
  9731. <productID id="5590"
  9732. />
  9733. <productGroupable type="0"
  9734. />
  9735. </product>
  9736. <product id="5S"
  9737. name="5S"
  9738. series="5"
  9739. latestVersion="1.2"
  9740. show = "-1" >
  9741. <productMenu id="protocol"
  9742. type="0">
  9743. </productMenu>
  9744. <productMenu id="sip"
  9745. type="1" >
  9746. </productMenu>
  9747. <productMenu id="bluetoothIntercom"
  9748. type="1" >
  9749. </productMenu>
  9750. <productMenu id="phone"
  9751. type="2" >
  9752. </productMenu>
  9753. <productMenu id="fmradio"
  9754. type="3" >
  9755. </productMenu>
  9756. <productMenu id="deviceSetting"
  9757. type="1"
  9758. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9759. </productMenu>
  9760. <productMenu id="quickGuide"
  9761. type="0"
  9762. url=""
  9763. size="970KB" >
  9764. </productMenu>
  9765. <productMenu id="userGuide"
  9766. type="1"
  9767. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9768. size="1.26MB" >
  9769. </productMenu>
  9770. <productID id="5534"
  9771. />
  9772. <productGroupable type="0"
  9773. />
  9774. </product>
  9775. <product id="5S"
  9776. name="5S"
  9777. series="5"
  9778. latestVersion="3.0.1"
  9779. show = "-1" >
  9780. <productMenu id="protocol"
  9781. type="0">
  9782. </productMenu>
  9783. <productMenu id="sip"
  9784. type="1" >
  9785. </productMenu>
  9786. <productMenu id="bluetoothIntercom"
  9787. type="1" >
  9788. </productMenu>
  9789. <productMenu id="phone"
  9790. type="2" >
  9791. </productMenu>
  9792. <productMenu id="fmradio"
  9793. type="0" >
  9794. </productMenu>
  9795. <productMenu id="deviceSetting"
  9796. type="1"
  9797. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9798. </productMenu>
  9799. <productMenu id="quickGuide"
  9800. type="0"
  9801. url=""
  9802. size="970KB" >
  9803. </productMenu>
  9804. <productMenu id="userGuide"
  9805. type="1"
  9806. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9807. size="1.26MB" >
  9808. </productMenu>
  9809. <productID id="5538"
  9810. />
  9811. <productGroupable type="0"
  9812. />
  9813. </product>
  9814. <product id="3SPLUS"
  9815. name="3S PLUS"
  9816. series="3"
  9817. latestVersion="2.2"
  9818. show = "1" >
  9819. <productMenu id="protocol"
  9820. type="3" >
  9821. </productMenu>
  9822. <productMenu id="sip"
  9823. type="1" >
  9824. </productMenu>
  9825. <productMenu id="bluetoothIntercom"
  9826. type="1" >
  9827. </productMenu>
  9828. <productMenu id="deviceSetting"
  9829. type="1"
  9830. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9831. <productMenuURL version="2.2.1"
  9832. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9833. />
  9834. </productMenu>
  9835. <productMenu id="quickGuide"
  9836. type="1"
  9837. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9838. size="344KB" >
  9839. </productMenu>
  9840. <productMenu id="userGuide"
  9841. type="1"
  9842. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9843. size="1.14MB" >
  9844. </productMenu>
  9845. <productMenu id="connectGuide"
  9846. type="1"
  9847. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9848. size="1.12MB" >
  9849. </productMenu>
  9850. <productID id="4023"
  9851. />
  9852. <productGroupable type="0"
  9853. />
  9854. </product>
  9855. <product id="3SPLUS"
  9856. name="3S PLUS"
  9857. series="3"
  9858. latestVersion="1.1"
  9859. show = "-1" >
  9860. <productMenu id="protocol"
  9861. type="0">
  9862. </productMenu>
  9863. <productMenu id="sip"
  9864. type="1" >
  9865. </productMenu>
  9866. <productMenu id="bluetoothIntercom"
  9867. type="1" >
  9868. </productMenu>
  9869. <productMenu id="deviceSetting"
  9870. type="1"
  9871. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9872. </productMenu>
  9873. <productMenu id="quickGuide"
  9874. type="1"
  9875. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9876. size="842KB" >
  9877. </productMenu>
  9878. <productMenu id="userGuide"
  9879. type="1"
  9880. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9881. size="1.02MB" >
  9882. </productMenu>
  9883. <productID id="6320"
  9884. />
  9885. <productGroupable type="0"
  9886. />
  9887. </product>
  9888. <product id="AConnect"
  9889. name="Alpinestars A-Connect"
  9890. series="60"
  9891. latestVersion="1.0.2"
  9892. latestVersionMesh="0.19"
  9893. latestVersionVoicePrompt="1.6"
  9894. show = "-1" >
  9895. <productMenu id="protocol"
  9896. type="2" >
  9897. </productMenu>
  9898. <productMenu id="ota"
  9899. type="2" >
  9900. <otaLanguages>
  9901. <otaLanguage
  9902. id="0"
  9903. name="English"
  9904. package="0"
  9905. />
  9906. <otaLanguage
  9907. id="0"
  9908. name="French"
  9909. package="1"
  9910. />
  9911. <otaLanguage
  9912. id="0"
  9913. name="Spanish"
  9914. package="2"
  9915. />
  9916. <otaLanguage
  9917. id="0"
  9918. name="Italian"
  9919. package="3"
  9920. />
  9921. <otaLanguage
  9922. id="0"
  9923. name="German"
  9924. package="4"
  9925. />
  9926. <otaLanguage
  9927. id="0"
  9928. name="Dutch"
  9929. package="5"
  9930. />
  9931. <otaLanguage
  9932. id="0"
  9933. name="Russian"
  9934. package="6"
  9935. />
  9936. <otaLanguage
  9937. id="0"
  9938. name="Chinese"
  9939. package="7"
  9940. />
  9941. <otaLanguage
  9942. id="0"
  9943. name="Korean"
  9944. package="8"
  9945. />
  9946. <otaLanguage
  9947. id="0"
  9948. name="Japanese"
  9949. package="9"
  9950. />
  9951. <otaLanguage
  9952. id="0"
  9953. name="Finnish"
  9954. package="10"
  9955. />
  9956. <otaLanguage
  9957. id="0"
  9958. name="Polish"
  9959. package="11"
  9960. />
  9961. </otaLanguages>
  9962. <otaPackages>
  9963. <package
  9964. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9965. size="5183988"
  9966. />
  9967. <package
  9968. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9969. size="5183988"
  9970. />
  9971. <package
  9972. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9973. size="5183988"
  9974. />
  9975. <package
  9976. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9977. size="5183988"
  9978. />
  9979. <package
  9980. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9981. size="5183988"
  9982. />
  9983. <package
  9984. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9985. size="5183988"
  9986. />
  9987. <package
  9988. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9989. size="5183988"
  9990. />
  9991. <package
  9992. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9993. size="5183988"
  9994. />
  9995. <package
  9996. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9997. size="5183988"
  9998. />
  9999. <package
  10000. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10001. size="5183988"
  10002. />
  10003. <package
  10004. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10005. size="5183988"
  10006. />
  10007. <package
  10008. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10009. size="5183988"
  10010. />
  10011. </otaPackages>
  10012. </productMenu>
  10013. <productMenu id="sip"
  10014. type="1" >
  10015. </productMenu>
  10016. <productMenu id="illusion"
  10017. type="0" >
  10018. </productMenu>
  10019. <productMenu id="meshIntercom+"
  10020. type="3"
  10021. url="2" >
  10022. </productMenu>
  10023. <productMenu id="waveIntercom"
  10024. type="1" >
  10025. </productMenu>
  10026. <productMenu id="bluetoothIntercom"
  10027. type="1"
  10028. url="2" >
  10029. </productMenu>
  10030. <productMenu id="bluetoothIntercomGrouping"
  10031. type="0" >
  10032. </productMenu>
  10033. <productMenu id="fmradio"
  10034. type="1"
  10035. url="1" >
  10036. </productMenu>
  10037. <productMenu id="phone"
  10038. type="1" >
  10039. </productMenu>
  10040. <productMenu id="music"
  10041. type="1" >
  10042. </productMenu>
  10043. <productMenu id="musicSharing"
  10044. type="0" >
  10045. </productMenu>
  10046. <productMenu id="deviceSetting"
  10047. type="1"
  10048. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10049. </productMenu>
  10050. <productMenu id="quickGuide"
  10051. type="0"
  10052. url=""
  10053. size="1.12MB" >
  10054. </productMenu>
  10055. <productMenu id="userGuide"
  10056. type="0"
  10057. url=""
  10058. size="2.0MB" >
  10059. </productMenu>
  10060. <productMenu id="videoGuide"
  10061. type="0"
  10062. url=""
  10063. size="3.41MB" >
  10064. </productMenu>
  10065. <productMenu id="volume"
  10066. type="16" >
  10067. </productMenu>
  10068. <productMenu id="volume+"
  10069. type="2"
  10070. url="0x6004" >
  10071. </productMenu>
  10072. <productMenu id="soundMode"
  10073. type="0" >
  10074. </productMenu>
  10075. <productMenu id="battery"
  10076. type="1" >
  10077. </productMenu>
  10078. <productID id="6A82"
  10079. />
  10080. <productGroupable type="0"
  10081. />
  10082. </product>
  10083. <product id="iCon"
  10084. name="iCon"
  10085. series="50"
  10086. latestVersion="1.2"
  10087. show = "0" >
  10088. <productMenu id="protocol"
  10089. type="2" >
  10090. </productMenu>
  10091. <productMenu id="alexa"
  10092. type="0" >
  10093. </productMenu>
  10094. <productMenu id="wa"
  10095. type="0" >
  10096. </productMenu>
  10097. <productMenu id="sip"
  10098. type="1" >
  10099. </productMenu>
  10100. <productMenu id="led"
  10101. type="3" >
  10102. </productMenu>
  10103. <productMenu id="meshIntercom"
  10104. type="20" >
  10105. </productMenu>
  10106. <productMenu id="meshIntercom+"
  10107. type="3"
  10108. url="0" >
  10109. <productMenuType version="1.0.9"
  10110. type="2"
  10111. />
  10112. </productMenu>
  10113. <productMenu id="bluetoothIntercom"
  10114. type="1" >
  10115. </productMenu>
  10116. <productMenu id="phone"
  10117. type="1" >
  10118. </productMenu>
  10119. <productMenu id="music"
  10120. type="1" >
  10121. </productMenu>
  10122. <productMenu id="fmradio"
  10123. type="1" >
  10124. </productMenu>
  10125. <productMenu id="deviceSetting"
  10126. type="1"
  10127. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10128. <productMenuURL version="1.0.9"
  10129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10130. />
  10131. </productMenu>
  10132. <productMenu id="quickGuide"
  10133. type="1"
  10134. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10135. size="344KB" >
  10136. </productMenu>
  10137. <productMenu id="userGuide"
  10138. type="1"
  10139. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10140. size="3.41MB" >
  10141. </productMenu>
  10142. <productMenu id="volume"
  10143. type="11" >
  10144. </productMenu>
  10145. <productMenu id="battery"
  10146. type="1" >
  10147. </productMenu>
  10148. <productID id="3900"
  10149. />
  10150. <productGroupable type="0"
  10151. />
  10152. </product>
  10153. <product id="ICONHelmLinkSL"
  10154. name="ICON HelmLink SL"
  10155. series="50"
  10156. latestVersion="1.0"
  10157. latestVersionVoicePrompt="1.6"
  10158. show = "-1" >
  10159. <productMenu id="protocol"
  10160. type="2" >
  10161. </productMenu>
  10162. <productMenu id="alexa"
  10163. type="0" >
  10164. </productMenu>
  10165. <productMenu id="ota"
  10166. type="0" >
  10167. <otaPackages>
  10168. <package
  10169. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10170. size="2945812"
  10171. />
  10172. </otaPackages>
  10173. </productMenu>
  10174. <productMenu id="wa"
  10175. type="0" >
  10176. </productMenu>
  10177. <productMenu id="meshIntercom"
  10178. type="30" >
  10179. </productMenu>
  10180. <productMenu id="meshIntercom+"
  10181. type="3"
  10182. url="2" >
  10183. </productMenu>
  10184. <productMenu id="waveIntercom"
  10185. type="1" >
  10186. </productMenu>
  10187. <productMenu id="phone"
  10188. type="1" >
  10189. </productMenu>
  10190. <productMenu id="music"
  10191. type="1" >
  10192. </productMenu>
  10193. <productMenu id="musicSharing"
  10194. type="0" >
  10195. </productMenu>
  10196. <productMenu id="deviceSetting"
  10197. type="1"
  10198. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10199. </productMenu>
  10200. <productMenu id="quickGuide"
  10201. type="0"
  10202. url=""
  10203. size="1.12MB" >
  10204. </productMenu>
  10205. <productMenu id="userGuide"
  10206. type="1"
  10207. url=""
  10208. size="2.0MB" >
  10209. </productMenu>
  10210. <productMenu id="volume"
  10211. type="12" >
  10212. </productMenu>
  10213. <productMenu id="battery"
  10214. type="1" >
  10215. </productMenu>
  10216. <productID id="6842"
  10217. />
  10218. <productGroupable type="0"
  10219. />
  10220. </product>
  10221. <product id="HD50S"
  10222. name="H-D Audio 50S"
  10223. series="50"
  10224. latestVersion="1.0.1"
  10225. show = "-1" >
  10226. <productMenu id="protocol"
  10227. type="2" >
  10228. </productMenu>
  10229. <productMenu id="alexa"
  10230. type="0" >
  10231. </productMenu>
  10232. <productMenu id="ota"
  10233. type="0"
  10234. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10235. size="1150234" >
  10236. </productMenu>
  10237. <productMenu id="wa"
  10238. type="1" >
  10239. </productMenu>
  10240. <productMenu id="sip"
  10241. type="1" >
  10242. </productMenu>
  10243. <productMenu id="meshIntercom"
  10244. type="20" >
  10245. </productMenu>
  10246. <productMenu id="meshIntercom+"
  10247. type="3"
  10248. url="0" >
  10249. <productMenuType version="1.0.9"
  10250. type="2"
  10251. />
  10252. </productMenu>
  10253. <productMenu id="bluetoothIntercom"
  10254. type="1" >
  10255. </productMenu>
  10256. <productMenu id="phone"
  10257. type="1" >
  10258. </productMenu>
  10259. <productMenu id="music"
  10260. type="1" >
  10261. </productMenu>
  10262. <productMenu id="fmradio"
  10263. type="1" >
  10264. </productMenu>
  10265. <productMenu id="deviceSetting"
  10266. type="1"
  10267. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10268. <productMenuURL version="1.0.9"
  10269. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10270. />
  10271. </productMenu>
  10272. <productMenu id="quickGuide"
  10273. type="1"
  10274. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10275. size="934KB" >
  10276. </productMenu>
  10277. <productMenu id="userGuide"
  10278. type="1"
  10279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10280. size="1.14MB" >
  10281. </productMenu>
  10282. <productMenu id="volume"
  10283. type="11" >
  10284. </productMenu>
  10285. <productMenu id="battery"
  10286. type="1" >
  10287. </productMenu>
  10288. <productID id="3156"
  10289. />
  10290. <productGroupable type="0"
  10291. />
  10292. </product>
  10293. <product id="HD50S"
  10294. name="H-D Audio 50S"
  10295. series="50"
  10296. latestVersion="2.0.2"
  10297. show = "0" >
  10298. <productMenu id="protocol"
  10299. type="2" >
  10300. </productMenu>
  10301. <productMenu id="alexa"
  10302. type="0" >
  10303. </productMenu>
  10304. <productMenu id="ota"
  10305. type="0"
  10306. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10307. size="1150234" >
  10308. </productMenu>
  10309. <productMenu id="wa"
  10310. type="1" >
  10311. </productMenu>
  10312. <productMenu id="sip"
  10313. type="1" >
  10314. </productMenu>
  10315. <productMenu id="meshIntercom"
  10316. type="20" >
  10317. </productMenu>
  10318. <productMenu id="meshIntercom+"
  10319. type="3"
  10320. url="0" >
  10321. <productMenuType version="2.0.9"
  10322. type="2"
  10323. />
  10324. </productMenu>
  10325. <productMenu id="bluetoothIntercom"
  10326. type="1" >
  10327. </productMenu>
  10328. <productMenu id="phone"
  10329. type="1" >
  10330. </productMenu>
  10331. <productMenu id="music"
  10332. type="1" >
  10333. </productMenu>
  10334. <productMenu id="fmradio"
  10335. type="1" >
  10336. </productMenu>
  10337. <productMenu id="deviceSetting"
  10338. type="1"
  10339. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10340. <productMenuURL version="2.0.9"
  10341. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10342. />
  10343. </productMenu>
  10344. <productMenu id="quickGuide"
  10345. type="1"
  10346. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10347. size="934KB" >
  10348. </productMenu>
  10349. <productMenu id="userGuide"
  10350. type="1"
  10351. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10352. size="1.14MB" >
  10353. </productMenu>
  10354. <productMenu id="volume"
  10355. type="11" >
  10356. </productMenu>
  10357. <productMenu id="battery"
  10358. type="1" >
  10359. </productMenu>
  10360. <productID id="3213"
  10361. />
  10362. <productGroupable type="0"
  10363. />
  10364. </product>
  10365. <product id="HD50C"
  10366. name="H-D Audio 50C"
  10367. series="50"
  10368. latestVersion="1.0.1"
  10369. show = "0" >
  10370. <productMenu id="protocol"
  10371. type="2" >
  10372. </productMenu>
  10373. <productMenu id="ota"
  10374. type="0" >
  10375. </productMenu>
  10376. <productMenu id="wa"
  10377. type="1" >
  10378. </productMenu>
  10379. <productMenu id="sip"
  10380. type="1" >
  10381. </productMenu>
  10382. <productMenu id="meshIntercom"
  10383. type="20" >
  10384. </productMenu>
  10385. <productMenu id="meshIntercom+"
  10386. type="3"
  10387. url="0" >
  10388. <productMenuType version="1.0.9"
  10389. type="2"
  10390. />
  10391. </productMenu>
  10392. <productMenu id="bluetoothIntercom"
  10393. type="1" >
  10394. </productMenu>
  10395. <productMenu id="phone"
  10396. type="1" >
  10397. </productMenu>
  10398. <productMenu id="music"
  10399. type="1" >
  10400. </productMenu>
  10401. <productMenu id="fmradio"
  10402. type="1" >
  10403. </productMenu>
  10404. <productMenu id="deviceSetting"
  10405. type="1"
  10406. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10407. <productMenuURL version="1.0.9"
  10408. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10409. />
  10410. </productMenu>
  10411. <productMenu id="quickGuide"
  10412. type="1"
  10413. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10414. size="344KB" >
  10415. </productMenu>
  10416. <productMenu id="userGuide"
  10417. type="1"
  10418. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10419. size="3.41MB" >
  10420. </productMenu>
  10421. <productMenu id="volume"
  10422. type="11" >
  10423. </productMenu>
  10424. <productMenu id="battery"
  10425. type="1" >
  10426. </productMenu>
  10427. <productID id="3240"
  10428. />
  10429. <productGroupable type="0"
  10430. />
  10431. </product>
  10432. <product id="HD50S"
  10433. name="FURY N04"
  10434. series="Helmet"
  10435. latestVersion="1.0"
  10436. show = "0" >
  10437. <productMenu id="protocol"
  10438. type="2" >
  10439. </productMenu>
  10440. <productMenu id="alexa"
  10441. type="0" >
  10442. </productMenu>
  10443. <productMenu id="ota"
  10444. type="0" >
  10445. </productMenu>
  10446. <productMenu id="wa"
  10447. type="0" >
  10448. </productMenu>
  10449. <productMenu id="meshIntercom"
  10450. type="20" >
  10451. </productMenu>
  10452. <productMenu id="meshIntercom+"
  10453. type="3"
  10454. url="0" >
  10455. <productMenuType version="1.0.9"
  10456. type="2"
  10457. />
  10458. </productMenu>
  10459. <productMenu id="phone"
  10460. type="1" >
  10461. </productMenu>
  10462. <productMenu id="music"
  10463. type="1" >
  10464. </productMenu>
  10465. <productMenu id="fmradio"
  10466. type="1" >
  10467. </productMenu>
  10468. <productMenu id="deviceSetting"
  10469. type="1"
  10470. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10471. <productMenuURL version="1.0.9"
  10472. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10473. />
  10474. </productMenu>
  10475. <productMenu id="quickGuide"
  10476. type="1"
  10477. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10478. size="1.12MB" >
  10479. </productMenu>
  10480. <productMenu id="userGuide"
  10481. type="1"
  10482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10483. size="2.0MB" >
  10484. </productMenu>
  10485. <productMenu id="volume"
  10486. type="13" >
  10487. </productMenu>
  10488. <productMenu id="battery"
  10489. type="1" >
  10490. </productMenu>
  10491. <productID id="5553"
  10492. />
  10493. <productGroupable type="0"
  10494. />
  10495. </product>
  10496. <product id="XCOM3Pro"
  10497. name="X-COM3 Pro"
  10498. series="50"
  10499. latestVersion="1.1"
  10500. show = "0" >
  10501. <productMenu id="protocol"
  10502. type="2" >
  10503. </productMenu>
  10504. <productMenu id="alexa"
  10505. type="0" >
  10506. </productMenu>
  10507. <productMenu id="ota"
  10508. type="0" >
  10509. </productMenu>
  10510. <productMenu id="wa"
  10511. type="0" >
  10512. </productMenu>
  10513. <productMenu id="sip"
  10514. type="1" >
  10515. </productMenu>
  10516. <productMenu id="meshIntercom"
  10517. type="30" >
  10518. </productMenu>
  10519. <productMenu id="meshIntercom+"
  10520. type="3"
  10521. url="2" >
  10522. <productMenuType version="1.1"
  10523. type="2"
  10524. />
  10525. </productMenu>
  10526. <productMenu id="waveIntercom"
  10527. type="1" >
  10528. <productMenuType version="1.1"
  10529. type="0"
  10530. />
  10531. </productMenu>
  10532. <productMenu id="bluetoothIntercom"
  10533. type="1" >
  10534. </productMenu>
  10535. <productMenu id="phone"
  10536. type="1" >
  10537. </productMenu>
  10538. <productMenu id="music"
  10539. type="1" >
  10540. </productMenu>
  10541. <productMenu id="fmradio"
  10542. type="1" >
  10543. </productMenu>
  10544. <productMenu id="deviceSetting"
  10545. type="1"
  10546. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10547. <productMenuURL version="1.1"
  10548. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10549. />
  10550. </productMenu>
  10551. <productMenu id="quickGuide"
  10552. type="0"
  10553. url=""
  10554. size="344KB" >
  10555. </productMenu>
  10556. <productMenu id="userGuide"
  10557. type="1"
  10558. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10559. size="3.41MB" >
  10560. </productMenu>
  10561. <productMenu id="volume"
  10562. type="11" >
  10563. </productMenu>
  10564. <productMenu id="battery"
  10565. type="1" >
  10566. </productMenu>
  10567. <productID id="321A"
  10568. />
  10569. <productGroupable type="0"
  10570. />
  10571. </product>
  10572. <product id="XCOM3"
  10573. name="X-COM3"
  10574. series="20"
  10575. latestVersion="1.0"
  10576. show = "0" >
  10577. <productMenu id="protocol"
  10578. type="2" >
  10579. </productMenu>
  10580. <productMenu id="sip"
  10581. type="1" >
  10582. </productMenu>
  10583. <productMenu id="bluetoothIntercom"
  10584. type="1" >
  10585. </productMenu>
  10586. <productMenu id="phone"
  10587. type="1" >
  10588. </productMenu>
  10589. <productMenu id="music"
  10590. type="1" >
  10591. </productMenu>
  10592. <productMenu id="fmradio"
  10593. type="1" >
  10594. </productMenu>
  10595. <productMenu id="deviceSetting"
  10596. type="1"
  10597. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10598. </productMenu>
  10599. <productMenu id="quickGuide"
  10600. type="0"
  10601. url=""
  10602. size="934KB" >
  10603. </productMenu>
  10604. <productMenu id="userGuide"
  10605. type="1"
  10606. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10607. size="1.14MB" >
  10608. </productMenu>
  10609. <productMenu id="volume"
  10610. type="15" >
  10611. </productMenu>
  10612. <productID id="3410"
  10613. />
  10614. <productGroupable type="0"
  10615. />
  10616. </product>
  10617. <product id="X-COM2"
  10618. name="X-COM2"
  10619. series="20"
  10620. latestVersion="1.0.5"
  10621. show = "0" >
  10622. <productMenu id="protocol"
  10623. type="0">
  10624. </productMenu>
  10625. <productMenu id="sip"
  10626. type="1" >
  10627. </productMenu>
  10628. <productMenu id="bluetoothIntercom"
  10629. type="1" >
  10630. </productMenu>
  10631. <productMenu id="intercomSetting"
  10632. type="1" >
  10633. </productMenu>
  10634. <productMenu id="phone"
  10635. type="2" >
  10636. </productMenu>
  10637. <productMenu id="fmradio"
  10638. type="3" >
  10639. </productMenu>
  10640. <productMenu id="deviceSetting"
  10641. type="1"
  10642. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10643. </productMenu>
  10644. <productMenu id="quickGuide"
  10645. type="1"
  10646. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10647. size="796KB" >
  10648. </productMenu>
  10649. <productMenu id="userGuide"
  10650. type="1"
  10651. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10652. size="1.90MB" >
  10653. </productMenu>
  10654. <productID id="2030"
  10655. />
  10656. <productGroupable type="1"
  10657. />
  10658. </product>
  10659. <product id="AVAABC"
  10660. name="AVA ABC"
  10661. series="SPIDER"
  10662. latestVersion="1.1"
  10663. show = "0" >
  10664. <productMenu id="protocol"
  10665. type="2" >
  10666. </productMenu>
  10667. <productMenu id="alexa"
  10668. type="0" >
  10669. </productMenu>
  10670. <productMenu id="ota"
  10671. type="0" >
  10672. <productMenuType version="1.0"
  10673. type="0"
  10674. />
  10675. <otaPackages>
  10676. <package
  10677. url="https://api.sena.com/support/OTA/"
  10678. size="2945812"
  10679. />
  10680. </otaPackages>
  10681. </productMenu>
  10682. <productMenu id="wa"
  10683. type="0" >
  10684. </productMenu>
  10685. <productMenu id="meshIntercom"
  10686. type="30" >
  10687. <productMenuType version="1.0"
  10688. type="20"
  10689. />
  10690. </productMenu>
  10691. <productMenu id="meshIntercom+"
  10692. type="3"
  10693. url="2" >
  10694. <productMenuType version="1.0"
  10695. type="2"
  10696. />
  10697. <productMenuURL version="1.0"
  10698. url="0"
  10699. />
  10700. </productMenu>
  10701. <productMenu id="waveIntercom"
  10702. type="1" >
  10703. <productMenuType version="1.0"
  10704. type="0"
  10705. />
  10706. </productMenu>
  10707. <productMenu id="phone"
  10708. type="1" >
  10709. </productMenu>
  10710. <productMenu id="music"
  10711. type="1" >
  10712. </productMenu>
  10713. <productMenu id="musicSharing"
  10714. type="0" >
  10715. </productMenu>
  10716. <productMenu id="deviceSetting"
  10717. type="1"
  10718. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10719. <productMenuURL version="1.0"
  10720. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10721. />
  10722. </productMenu>
  10723. <productMenu id="quickGuide"
  10724. type="1"
  10725. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10726. size="1.12MB" >
  10727. </productMenu>
  10728. <productMenu id="userGuide"
  10729. type="1"
  10730. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10731. size="2.0MB" >
  10732. </productMenu>
  10733. <productMenu id="volume"
  10734. type="12" >
  10735. </productMenu>
  10736. <productMenu id="battery"
  10737. type="1" >
  10738. </productMenu>
  10739. <productID id="6808"
  10740. />
  10741. <productGroupable type="0"
  10742. />
  10743. </product>
  10744. <product id="ADVANCEProCOM2"
  10745. name="ADVANCE ProCOM 2"
  10746. series="Helmet"
  10747. latestVersion="0.5"
  10748. latestVersionVoicePrompt="0.3"
  10749. show = "-1" >
  10750. <productMenu id="protocol"
  10751. type="2" >
  10752. </productMenu>
  10753. <productMenu id="ota"
  10754. type="2" >
  10755. <otaLanguages>
  10756. <otaLanguage
  10757. id="0"
  10758. name="English"
  10759. package="0"
  10760. />
  10761. <otaLanguage
  10762. id="0"
  10763. name="French"
  10764. package="1"
  10765. />
  10766. <otaLanguage
  10767. id="0"
  10768. name="Spanish"
  10769. package="2"
  10770. />
  10771. <otaLanguage
  10772. id="0"
  10773. name="Italian"
  10774. package="3"
  10775. />
  10776. <otaLanguage
  10777. id="0"
  10778. name="German"
  10779. package="4"
  10780. />
  10781. <otaLanguage
  10782. id="0"
  10783. name="Dutch"
  10784. package="5"
  10785. />
  10786. <otaLanguage
  10787. id="0"
  10788. name="Russian"
  10789. package="6"
  10790. />
  10791. <otaLanguage
  10792. id="0"
  10793. name="Chinese"
  10794. package="7"
  10795. />
  10796. <otaLanguage
  10797. id="0"
  10798. name="Korean"
  10799. package="8"
  10800. />
  10801. <otaLanguage
  10802. id="0"
  10803. name="Japanese"
  10804. package="9"
  10805. />
  10806. <otaLanguage
  10807. id="0"
  10808. name="Finnish"
  10809. package="10"
  10810. />
  10811. <otaLanguage
  10812. id="0"
  10813. name="Polish"
  10814. package="11"
  10815. />
  10816. </otaLanguages>
  10817. <otaPackages>
  10818. <package
  10819. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10820. size="5183988"
  10821. />
  10822. <package
  10823. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10824. size="5183988"
  10825. />
  10826. <package
  10827. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10828. size="5183988"
  10829. />
  10830. <package
  10831. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10832. size="5183988"
  10833. />
  10834. <package
  10835. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10836. size="5183988"
  10837. />
  10838. <package
  10839. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10840. size="5183988"
  10841. />
  10842. <package
  10843. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10844. size="5183988"
  10845. />
  10846. <package
  10847. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10848. size="5183988"
  10849. />
  10850. <package
  10851. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10852. size="5183988"
  10853. />
  10854. <package
  10855. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10856. size="5183988"
  10857. />
  10858. <package
  10859. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10860. size="5183988"
  10861. />
  10862. <package
  10863. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10864. size="5183988"
  10865. />
  10866. </otaPackages>
  10867. </productMenu>
  10868. <productMenu id="wa"
  10869. type="0" >
  10870. </productMenu>
  10871. <productMenu id="meshIntercom"
  10872. type="30" >
  10873. </productMenu>
  10874. <productMenu id="meshIntercom+"
  10875. type="3"
  10876. url="2" >
  10877. </productMenu>
  10878. <productMenu id="waveIntercom"
  10879. type="1" >
  10880. </productMenu>
  10881. <productMenu id="fmradio"
  10882. type="1" >
  10883. </productMenu>
  10884. <productMenu id="phone"
  10885. type="0" >
  10886. </productMenu>
  10887. <productMenu id="music"
  10888. type="1" >
  10889. </productMenu>
  10890. <productMenu id="musicSharing"
  10891. type="0" >
  10892. </productMenu>
  10893. <productMenu id="deviceSetting"
  10894. type="1"
  10895. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10896. </productMenu>
  10897. <productMenu id="quickGuide"
  10898. type="0"
  10899. url=""
  10900. size="1.12MB" >
  10901. </productMenu>
  10902. <productMenu id="userGuide"
  10903. type="1"
  10904. url=""
  10905. size="2.0MB" >
  10906. </productMenu>
  10907. <productMenu id="videoGuide"
  10908. type="0"
  10909. url=""
  10910. size="3.41MB" >
  10911. </productMenu>
  10912. <productMenu id="connectGuide"
  10913. type="1"
  10914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10915. size="1.12MB" >
  10916. </productMenu>
  10917. <productMenu id="volume"
  10918. type="16" >
  10919. </productMenu>
  10920. <productMenu id="battery"
  10921. type="1" >
  10922. </productMenu>
  10923. <productID id="6A85"
  10924. />
  10925. <productGroupable type="0"
  10926. />
  10927. </product>
  10928. <product id="TRIUMPH60X"
  10929. name="TRIUMPH 60X"
  10930. series="60"
  10931. latestVersion="1.0"
  10932. latestVersionMesh="0.19"
  10933. latestVersionVoicePrompt="1.7"
  10934. show = "-1" >
  10935. <productMenu id="protocol"
  10936. type="2" >
  10937. </productMenu>
  10938. <productMenu id="ota"
  10939. type="0" >
  10940. <otaLanguages>
  10941. <otaLanguage
  10942. id="0"
  10943. name="English"
  10944. package="0"
  10945. />
  10946. <otaLanguage
  10947. id="0"
  10948. name="French"
  10949. package="1"
  10950. />
  10951. <otaLanguage
  10952. id="0"
  10953. name="Spanish"
  10954. package="2"
  10955. />
  10956. <otaLanguage
  10957. id="0"
  10958. name="Italian"
  10959. package="3"
  10960. />
  10961. <otaLanguage
  10962. id="0"
  10963. name="German"
  10964. package="4"
  10965. />
  10966. <otaLanguage
  10967. id="0"
  10968. name="Dutch"
  10969. package="5"
  10970. />
  10971. <otaLanguage
  10972. id="0"
  10973. name="Russian"
  10974. package="6"
  10975. />
  10976. <otaLanguage
  10977. id="0"
  10978. name="Chinese"
  10979. package="7"
  10980. />
  10981. <otaLanguage
  10982. id="0"
  10983. name="Korean"
  10984. package="8"
  10985. />
  10986. <otaLanguage
  10987. id="0"
  10988. name="Japanese"
  10989. package="9"
  10990. />
  10991. <otaLanguage
  10992. id="0"
  10993. name="Finnish"
  10994. package="10"
  10995. />
  10996. <otaLanguage
  10997. id="0"
  10998. name="Polish"
  10999. package="11"
  11000. />
  11001. </otaLanguages>
  11002. <otaPackages>
  11003. <package
  11004. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11005. size="5183988"
  11006. />
  11007. <package
  11008. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11009. size="5183988"
  11010. />
  11011. <package
  11012. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11013. size="5183988"
  11014. />
  11015. <package
  11016. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11017. size="5183988"
  11018. />
  11019. <package
  11020. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11021. size="5183988"
  11022. />
  11023. <package
  11024. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11025. size="5183988"
  11026. />
  11027. <package
  11028. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11029. size="5183988"
  11030. />
  11031. <package
  11032. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11033. size="5183988"
  11034. />
  11035. <package
  11036. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11037. size="5183988"
  11038. />
  11039. <package
  11040. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11041. size="5183988"
  11042. />
  11043. <package
  11044. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11045. size="5183988"
  11046. />
  11047. <package
  11048. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11049. size="5183988"
  11050. />
  11051. </otaPackages>
  11052. </productMenu>
  11053. <productMenu id="wa"
  11054. type="0" >
  11055. </productMenu>
  11056. <productMenu id="sip"
  11057. type="1" >
  11058. </productMenu>
  11059. <productMenu id="led"
  11060. type="1" >
  11061. </productMenu>
  11062. <productMenu id="illusion"
  11063. type="1" >
  11064. </productMenu>
  11065. <productMenu id="meshIntercom"
  11066. type="30" >
  11067. </productMenu>
  11068. <productMenu id="meshIntercom+"
  11069. type="3"
  11070. url="2" >
  11071. </productMenu>
  11072. <productMenu id="bluetoothIntercom"
  11073. type="1" >
  11074. </productMenu>
  11075. <productMenu id="fmradio"
  11076. type="1"
  11077. url="1" >
  11078. </productMenu>
  11079. <productMenu id="mic"
  11080. type="0" >
  11081. </productMenu>
  11082. <productMenu id="phone"
  11083. type="1" >
  11084. </productMenu>
  11085. <productMenu id="music"
  11086. type="1" >
  11087. </productMenu>
  11088. <productMenu id="musicSharing"
  11089. type="0" >
  11090. </productMenu>
  11091. <productMenu id="deviceSetting"
  11092. type="1"
  11093. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11094. </productMenu>
  11095. <productMenu id="quickGuide"
  11096. type="0"
  11097. url=""
  11098. size="1.12MB" >
  11099. </productMenu>
  11100. <productMenu id="userGuide"
  11101. type="1"
  11102. url=""
  11103. size="2.0MB" >
  11104. </productMenu>
  11105. <productMenu id="videoGuide"
  11106. type="0"
  11107. url=""
  11108. size="3.41MB" >
  11109. </productMenu>
  11110. <productMenu id="keySettings"
  11111. type="1"
  11112. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11113. </productMenu>
  11114. <productMenu id="volume"
  11115. type="13" >
  11116. </productMenu>
  11117. <productMenu id="volume+"
  11118. type="2"
  11119. url="0x6004" >
  11120. </productMenu>
  11121. <productMenu id="battery"
  11122. type="1" >
  11123. </productMenu>
  11124. <productID id="6A1C"
  11125. />
  11126. <productGroupable type="0"
  11127. />
  11128. </product>
  11129. <product id="Triumph_50S"
  11130. name="Triumph 50S"
  11131. series="50"
  11132. latestVersion="1.5"
  11133. show = "0" >
  11134. <productMenu id="protocol"
  11135. type="2" >
  11136. </productMenu>
  11137. <productMenu id="alexa"
  11138. type="0" >
  11139. </productMenu>
  11140. <productMenu id="ota"
  11141. type="0"
  11142. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11143. size="1150234" >
  11144. </productMenu>
  11145. <productMenu id="wa"
  11146. type="1" >
  11147. </productMenu>
  11148. <productMenu id="sip"
  11149. type="1" >
  11150. </productMenu>
  11151. <productMenu id="meshIntercom"
  11152. type="20" >
  11153. </productMenu>
  11154. <productMenu id="bluetoothIntercom"
  11155. type="1" >
  11156. </productMenu>
  11157. <productMenu id="meshIntercom+"
  11158. type="3"
  11159. url="2" >
  11160. <productMenuType version="1.2.9"
  11161. type="2"
  11162. />
  11163. <productMenuURL version="1.2.9"
  11164. url="0"
  11165. />
  11166. </productMenu>
  11167. <productMenu id="waveIntercom"
  11168. type="1" >
  11169. <productMenuType version="1.2.9"
  11170. type="0"
  11171. />
  11172. </productMenu>
  11173. <productMenu id="phone"
  11174. type="1" >
  11175. </productMenu>
  11176. <productMenu id="music"
  11177. type="1" >
  11178. </productMenu>
  11179. <productMenu id="fmradio"
  11180. type="1" >
  11181. </productMenu>
  11182. <productMenu id="deviceSetting"
  11183. type="1"
  11184. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11185. <productMenuURL version="1.2.9"
  11186. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11187. />
  11188. <productMenuURL version="1.0"
  11189. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11190. />
  11191. </productMenu>
  11192. <productMenu id="quickGuide"
  11193. type="1"
  11194. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11195. size="934KB" >
  11196. </productMenu>
  11197. <productMenu id="userGuide"
  11198. type="1"
  11199. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11200. size="1.14MB" >
  11201. </productMenu>
  11202. <productMenu id="volume"
  11203. type="11" >
  11204. </productMenu>
  11205. <productMenu id="battery"
  11206. type="1" >
  11207. </productMenu>
  11208. <productID id="3264"
  11209. />
  11210. <productGroupable type="0"
  11211. />
  11212. </product>
  11213. <product id="RE50S"
  11214. name="RE 50S"
  11215. series="50"
  11216. latestVersion="2.7"
  11217. show = "0" >
  11218. <productMenu id="protocol"
  11219. type="2" >
  11220. </productMenu>
  11221. <productMenu id="alexa"
  11222. type="0" >
  11223. </productMenu>
  11224. <productMenu id="ota"
  11225. type="0"
  11226. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11227. size="1150234" >
  11228. </productMenu>
  11229. <productMenu id="wa"
  11230. type="1" >
  11231. </productMenu>
  11232. <productMenu id="sip"
  11233. type="1" >
  11234. </productMenu>
  11235. <productMenu id="meshIntercom"
  11236. type="30" >
  11237. </productMenu>
  11238. <productMenu id="meshIntercom+"
  11239. type="3"
  11240. url="2" >
  11241. <productMenuType version="2.5"
  11242. type="2"
  11243. />
  11244. </productMenu>
  11245. <productMenu id="waveIntercom"
  11246. type="1" >
  11247. <productMenuType version="2.5"
  11248. type="0"
  11249. />
  11250. </productMenu>
  11251. <productMenu id="bluetoothIntercom"
  11252. type="1" >
  11253. </productMenu>
  11254. <productMenu id="phone"
  11255. type="1" >
  11256. </productMenu>
  11257. <productMenu id="music"
  11258. type="1" >
  11259. </productMenu>
  11260. <productMenu id="fmradio"
  11261. type="1" >
  11262. </productMenu>
  11263. <productMenu id="deviceSetting"
  11264. type="1"
  11265. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11266. <productMenuURL version="2.5.9"
  11267. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11268. />
  11269. </productMenu>
  11270. <productMenu id="quickGuide"
  11271. type="1"
  11272. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11273. size="934KB" >
  11274. </productMenu>
  11275. <productMenu id="userGuide"
  11276. type="1"
  11277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11278. size="1.14MB" >
  11279. </productMenu>
  11280. <productMenu id="videoGuide"
  11281. type="0"
  11282. url=""
  11283. size="3.41MB" >
  11284. </productMenu>
  11285. <productMenu id="volume"
  11286. type="11" >
  11287. </productMenu>
  11288. <productMenu id="battery"
  11289. type="1" >
  11290. </productMenu>
  11291. <productID id="321C"
  11292. />
  11293. <productGroupable type="0"
  11294. />
  11295. </product>
  11296. <product id="BMW_HELMET_II_U1"
  11297. name="BMW HELMET II U1"
  11298. series="50"
  11299. latestVersion="1.0"
  11300. show = "0" >
  11301. <productMenu id="protocol"
  11302. type="2" >
  11303. </productMenu>
  11304. <productMenu id="alexa"
  11305. type="0" >
  11306. </productMenu>
  11307. <productMenu id="sip"
  11308. type="1" >
  11309. </productMenu>
  11310. <productMenu id="meshIntercom"
  11311. type="20" >
  11312. </productMenu>
  11313. <productMenu id="bluetoothIntercom"
  11314. type="1" >
  11315. </productMenu>
  11316. <productMenu id="bluetoothIntercom2"
  11317. type="1" >
  11318. </productMenu>
  11319. <productMenu id="phone"
  11320. type="1" >
  11321. </productMenu>
  11322. <productMenu id="music"
  11323. type="1" >
  11324. </productMenu>
  11325. <productMenu id="fmradio"
  11326. type="1" >
  11327. </productMenu>
  11328. <productMenu id="deviceSetting"
  11329. type="1"
  11330. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11331. </productMenu>
  11332. <productMenu id="quickGuide"
  11333. type="1"
  11334. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11335. size="934KB" >
  11336. </productMenu>
  11337. <productMenu id="userGuide"
  11338. type="1"
  11339. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11340. size="1.14MB" >
  11341. </productMenu>
  11342. <productMenu id="volume"
  11343. type="11" >
  11344. </productMenu>
  11345. <productMenu id="battery"
  11346. type="1" >
  11347. </productMenu>
  11348. <productID id="3260"
  11349. />
  11350. <productGroupable type="0"
  11351. />
  11352. </product>
  11353. <product id="OUTRUSHR"
  11354. name="CX935"
  11355. series="Helmet"
  11356. latestVersion="2.1"
  11357. show = "-1" >
  11358. <productMenu id="protocol"
  11359. type="3">
  11360. </productMenu>
  11361. <productMenu id="sip"
  11362. type="1" >
  11363. </productMenu>
  11364. <productMenu id="bluetoothIntercom"
  11365. type="1" >
  11366. </productMenu>
  11367. <productMenu id="phone"
  11368. type="1" >
  11369. </productMenu>
  11370. <productMenu id="fmradio"
  11371. type="0" >
  11372. </productMenu>
  11373. <productMenu id="deviceSetting"
  11374. type="1"
  11375. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11376. </productMenu>
  11377. <productMenu id="userGuide"
  11378. type="1"
  11379. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11380. size="660KB" >
  11381. </productMenu>
  11382. <productID id="5446"
  11383. />
  11384. <productGroupable type="0"
  11385. />
  11386. </product>
  11387. <product id="LSE_01"
  11388. name="LSE-01"
  11389. series="SF"
  11390. latestVersion="1.2.3"
  11391. show = "0" >
  11392. <productMenu id="protocol"
  11393. type="1"
  11394. url="3">
  11395. </productMenu>
  11396. <productMenu id="sip"
  11397. type="1" >
  11398. </productMenu>
  11399. <productMenu id="bluetoothIntercom"
  11400. type="1" >
  11401. </productMenu>
  11402. <productMenu id="phone"
  11403. type="1" >
  11404. </productMenu>
  11405. <productMenu id="music"
  11406. type="1" >
  11407. </productMenu>
  11408. <productMenu id="fmradio"
  11409. type="1" >
  11410. </productMenu>
  11411. <productMenu id="deviceSetting"
  11412. type="1"
  11413. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11414. <productMenuURL version="1.1"
  11415. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11416. />
  11417. <productMenuURL version="1.0"
  11418. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11419. />
  11420. </productMenu>
  11421. <productMenu id="quickGuide"
  11422. type="1"
  11423. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11424. size="607KB" >
  11425. </productMenu>
  11426. <productMenu id="userGuide"
  11427. type="1"
  11428. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11429. size="1.91MB" >
  11430. </productMenu>
  11431. <productMenu id="volume"
  11432. type="4" >
  11433. </productMenu>
  11434. <productID id="5416"
  11435. />
  11436. <productGroupable type="0"
  11437. />
  11438. </product>
  11439. <product id="AGV_ARK"
  11440. name="AGV ARK"
  11441. series="SF"
  11442. latestVersion="1.0.3"
  11443. show = "0" >
  11444. <productMenu id="protocol"
  11445. type="1"
  11446. url="3">
  11447. </productMenu>
  11448. <productMenu id="sip"
  11449. type="1" >
  11450. </productMenu>
  11451. <productMenu id="bluetoothIntercom"
  11452. type="1" >
  11453. </productMenu>
  11454. <productMenu id="phone"
  11455. type="1" >
  11456. </productMenu>
  11457. <productMenu id="music"
  11458. type="1" >
  11459. </productMenu>
  11460. <productMenu id="fmradio"
  11461. type="1" >
  11462. </productMenu>
  11463. <productMenu id="deviceSetting"
  11464. type="1"
  11465. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11466. </productMenu>
  11467. <productMenu id="quickGuide"
  11468. type="1"
  11469. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11470. size="607KB" >
  11471. </productMenu>
  11472. <productMenu id="userGuide"
  11473. type="1"
  11474. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11475. size="1.91MB" >
  11476. </productMenu>
  11477. <productMenu id="volume"
  11478. type="4" >
  11479. </productMenu>
  11480. <productID id="5420"
  11481. />
  11482. <productGroupable type="0"
  11483. />
  11484. </product>
  11485. <product id="KLIM_KRIOS"
  11486. name="KLIM Krios"
  11487. series="10"
  11488. latestVersion="1.1.2"
  11489. show = "0" >
  11490. <productMenu id="protocol"
  11491. type="0">
  11492. </productMenu>
  11493. <productMenu id="sip"
  11494. type="1" >
  11495. </productMenu>
  11496. <productMenu id="bluetoothIntercom"
  11497. type="1" >
  11498. </productMenu>
  11499. <productMenu id="phone"
  11500. type="2" >
  11501. </productMenu>
  11502. <productMenu id="fmradio"
  11503. type="3" >
  11504. </productMenu>
  11505. <productMenu id="deviceSetting"
  11506. type="1"
  11507. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11508. <productMenuURL version="1.0"
  11509. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11510. />
  11511. </productMenu>
  11512. <productMenu id="quickGuide"
  11513. type="1"
  11514. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11515. size="649KB" >
  11516. </productMenu>
  11517. <productMenu id="userGuide"
  11518. type="1"
  11519. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11520. size="1.43MB" >
  11521. </productMenu>
  11522. <productID id="5910"
  11523. />
  11524. <productGroupable type="0"
  11525. />
  11526. </product>
  11527. <product id="POLARIS_SLINGSHOT"
  11528. name="Polaris Slingshot"
  11529. series="10"
  11530. latestVersion="1.1.2"
  11531. show = "0" >
  11532. <productMenu id="protocol"
  11533. type="0">
  11534. </productMenu>
  11535. <productMenu id="sip"
  11536. type="1" >
  11537. </productMenu>
  11538. <productMenu id="bluetoothIntercom"
  11539. type="1" >
  11540. </productMenu>
  11541. <productMenu id="phone"
  11542. type="2" >
  11543. </productMenu>
  11544. <productMenu id="fmradio"
  11545. type="3" >
  11546. </productMenu>
  11547. <productMenu id="deviceSetting"
  11548. type="1"
  11549. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11550. <productMenuURL version="1.0"
  11551. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11552. />
  11553. </productMenu>
  11554. <productMenu id="quickGuide"
  11555. type="1"
  11556. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11557. size="689KB" >
  11558. </productMenu>
  11559. <productMenu id="userGuide"
  11560. type="1"
  11561. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11562. size="1.43MB" >
  11563. </productMenu>
  11564. <productID id="5920"
  11565. />
  11566. <productGroupable type="0"
  11567. />
  11568. </product>
  11569. <product id="DWO6"
  11570. name="SEDICI DWO6-PRO"
  11571. series="10"
  11572. latestVersion="1.0.2"
  11573. show = "0" >
  11574. <productMenu id="protocol"
  11575. type="0">
  11576. </productMenu>
  11577. <productMenu id="sip"
  11578. type="1" >
  11579. </productMenu>
  11580. <productMenu id="bluetoothIntercom"
  11581. type="1" >
  11582. </productMenu>
  11583. <productMenu id="phone"
  11584. type="2" >
  11585. </productMenu>
  11586. <productMenu id="fmradio"
  11587. type="3" >
  11588. </productMenu>
  11589. <productMenu id="deviceSetting"
  11590. type="1"
  11591. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11592. </productMenu>
  11593. <productMenu id="quickGuide"
  11594. type="1"
  11595. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11596. size="529KB" >
  11597. </productMenu>
  11598. <productMenu id="userGuide"
  11599. type="1"
  11600. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11601. size="4.09MB" >
  11602. </productMenu>
  11603. <productID id="6112"
  11604. />
  11605. <productGroupable type="0"
  11606. />
  11607. </product>
  11608. <product id="DWO6A"
  11609. name="SEDICI DWO-6"
  11610. series="10"
  11611. latestVersion="1.0.2"
  11612. show = "0" >
  11613. <productMenu id="protocol"
  11614. type="0">
  11615. </productMenu>
  11616. <productMenu id="sip"
  11617. type="1" >
  11618. </productMenu>
  11619. <productMenu id="bluetoothIntercom"
  11620. type="1" >
  11621. </productMenu>
  11622. <productMenu id="phone"
  11623. type="2" >
  11624. </productMenu>
  11625. <productMenu id="fmradio"
  11626. type="3" >
  11627. </productMenu>
  11628. <productMenu id="deviceSetting"
  11629. type="1"
  11630. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11631. </productMenu>
  11632. <productMenu id="quickGuide"
  11633. type="1"
  11634. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11635. size="522KB" >
  11636. </productMenu>
  11637. <productMenu id="userGuide"
  11638. type="1"
  11639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11640. size="2.71MB" >
  11641. </productMenu>
  11642. <productID id="6114"
  11643. />
  11644. <productGroupable type="0"
  11645. />
  11646. </product>
  11647. <product id="3SPLUS"
  11648. name="ZILL"
  11649. series="3"
  11650. latestVersion="1.0.4"
  11651. show = "0" >
  11652. <productMenu id="protocol"
  11653. type="0">
  11654. </productMenu>
  11655. <productMenu id="sip"
  11656. type="1" >
  11657. </productMenu>
  11658. <productMenu id="bluetoothIntercom"
  11659. type="1" >
  11660. </productMenu>
  11661. <productMenu id="deviceSetting"
  11662. type="1"
  11663. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11664. </productMenu>
  11665. <productMenu id="quickGuide"
  11666. type="1"
  11667. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11668. size="842KB" >
  11669. </productMenu>
  11670. <productMenu id="userGuide"
  11671. type="1"
  11672. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11673. size="1.02MB" >
  11674. </productMenu>
  11675. <productID id="6335"
  11676. />
  11677. <productGroupable type="0"
  11678. />
  11679. </product>
  11680. <product id="HD50S"
  11681. name="Boom! Audio 30K"
  11682. series="30"
  11683. latestVersion="3.4"
  11684. show = "0" >
  11685. <productMenu id="protocol"
  11686. type="1"
  11687. url="0">
  11688. </productMenu>
  11689. <productMenu id="wa"
  11690. type="0" >
  11691. </productMenu>
  11692. <productMenu id="sip"
  11693. type="1" >
  11694. </productMenu>
  11695. <productMenu id="meshIntercom"
  11696. type="20" >
  11697. <productMenuType version="2.9.9"
  11698. type="10"
  11699. />
  11700. </productMenu>
  11701. <productMenu id="bluetoothIntercom"
  11702. type="1" >
  11703. </productMenu>
  11704. <productMenu id="phone"
  11705. type="1" >
  11706. </productMenu>
  11707. <productMenu id="music"
  11708. type="1" >
  11709. </productMenu>
  11710. <productMenu id="fmradio"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="deviceSetting"
  11714. type="1"
  11715. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11716. <productMenuURL version="3.2"
  11717. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11718. />
  11719. <productMenuURL version="3.0"
  11720. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11721. />
  11722. <productMenuURL version="2.2"
  11723. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11724. />
  11725. </productMenu>
  11726. <productMenu id="quickGuide"
  11727. type="1"
  11728. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11729. size="1.06MB" >
  11730. </productMenu>
  11731. <productMenu id="userGuide"
  11732. type="1"
  11733. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11734. size="3.15MB" >
  11735. </productMenu>
  11736. <productMenu id="volume"
  11737. type="1" >
  11738. </productMenu>
  11739. <productID id="3112"
  11740. />
  11741. <productGroupable type="0"
  11742. />
  11743. </product>
  11744. <product id="HD50S"
  11745. name="Boom! Audio N02"
  11746. series="30"
  11747. latestVersion="3.1"
  11748. show = "0" >
  11749. <productMenu id="protocol"
  11750. type="1"
  11751. url="0">
  11752. </productMenu>
  11753. <productMenu id="wa"
  11754. type="2" >
  11755. </productMenu>
  11756. <productMenu id="sip"
  11757. type="1" >
  11758. </productMenu>
  11759. <productMenu id="meshIntercom"
  11760. type="20" >
  11761. <productMenuType version="2.9.9"
  11762. type="10"
  11763. />
  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/30K/DSup_HD30K_v0300.xml">
  11780. <productMenuURL version="2.2"
  11781. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11782. />
  11783. </productMenu>
  11784. <productMenu id="quickGuide"
  11785. type="1"
  11786. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11787. size="1.06MB" >
  11788. </productMenu>
  11789. <productMenu id="userGuide"
  11790. type="1"
  11791. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11792. size="3.15MB" >
  11793. </productMenu>
  11794. <productMenu id="volume"
  11795. type="2" >
  11796. </productMenu>
  11797. <productID id="3114"
  11798. />
  11799. <productGroupable type="0"
  11800. />
  11801. </product>
  11802. <product id="HD50S"
  11803. name="Boom Audio 20S"
  11804. series="50"
  11805. latestVersion="2.5.2"
  11806. show = "0" >
  11807. <productMenu id="protocol"
  11808. type="0">
  11809. </productMenu>
  11810. <productMenu id="sip"
  11811. type="1" >
  11812. <productMenuType version="1.0"
  11813. type="0"
  11814. />
  11815. </productMenu>
  11816. <productMenu id="bluetoothIntercom"
  11817. type="1" >
  11818. <productMenuType version="1.0"
  11819. type="0"
  11820. />
  11821. </productMenu>
  11822. <productMenu id="intercomSetting"
  11823. type="1" >
  11824. </productMenu>
  11825. <productMenu id="phone"
  11826. type="2" >
  11827. </productMenu>
  11828. <productMenu id="fmradio"
  11829. type="3" >
  11830. </productMenu>
  11831. <productMenu id="deviceSetting"
  11832. type="1"
  11833. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11834. <productMenuURL version="2.4"
  11835. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11836. />
  11837. <productMenuURL version="1.5"
  11838. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11839. />
  11840. <productMenuURL version="1.4.1"
  11841. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11842. />
  11843. <productMenuURL version="1.1"
  11844. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11845. />
  11846. <productMenuURL version="1.0"
  11847. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11848. />
  11849. </productMenu>
  11850. <productMenu id="quickGuide"
  11851. type="1"
  11852. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11853. size="264KB" >
  11854. </productMenu>
  11855. <productMenu id="userGuide"
  11856. type="1"
  11857. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11858. size="3.09MB" >
  11859. </productMenu>
  11860. <productMenu id="connectGuide"
  11861. type="1"
  11862. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11863. size="1.12MB" >
  11864. </productMenu>
  11865. <productID id="4210"
  11866. />
  11867. <productProductKey key="11"
  11868. />
  11869. <productID id="4230"
  11870. />
  11871. <productProductKey key="11"
  11872. />
  11873. <productGroupable type="1"
  11874. />
  11875. </product>
  11876. <product id="HD50S"
  11877. name="Boom Audio 20S EVO"
  11878. series="50"
  11879. latestVersion="2.5.2"
  11880. show = "0" >
  11881. <productMenu id="protocol"
  11882. type="0">
  11883. </productMenu>
  11884. <productMenu id="sip"
  11885. type="1" >
  11886. <productMenuType version="1.0"
  11887. type="0"
  11888. />
  11889. </productMenu>
  11890. <productMenu id="bluetoothIntercom"
  11891. type="1" >
  11892. <productMenuType version="1.0"
  11893. type="0"
  11894. />
  11895. </productMenu>
  11896. <productMenu id="intercomSetting"
  11897. type="1" >
  11898. </productMenu>
  11899. <productMenu id="phone"
  11900. type="2" >
  11901. </productMenu>
  11902. <productMenu id="fmradio"
  11903. type="3" >
  11904. </productMenu>
  11905. <productMenu id="deviceSetting"
  11906. type="1"
  11907. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11908. <productMenuURL version="2.4"
  11909. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11910. />
  11911. <productMenuURL version="1.5"
  11912. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11913. />
  11914. <productMenuURL version="1.4.1"
  11915. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11916. />
  11917. <productMenuURL version="1.1"
  11918. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11919. />
  11920. <productMenuURL version="1.0"
  11921. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11922. />
  11923. </productMenu>
  11924. <productMenu id="quickGuide"
  11925. type="1"
  11926. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11927. size="321KB" >
  11928. </productMenu>
  11929. <productMenu id="userGuide"
  11930. type="1"
  11931. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11932. size="2.46MB" >
  11933. </productMenu>
  11934. <productID id="4230"
  11935. />
  11936. <productProductKey key="27"
  11937. />
  11938. <productGroupable type="1"
  11939. />
  11940. </product>
  11941. <product id="HD50S"
  11942. name="Boom! Audio 10S"
  11943. series="50"
  11944. latestVersion="1.1.3"
  11945. show = "0" >
  11946. <productMenu id="protocol"
  11947. type="0">
  11948. </productMenu>
  11949. <productMenu id="sip"
  11950. type="1" >
  11951. </productMenu>
  11952. <productMenu id="bluetoothIntercom"
  11953. type="1" >
  11954. </productMenu>
  11955. <productMenu id="phone"
  11956. type="2" >
  11957. </productMenu>
  11958. <productMenu id="fmradio"
  11959. type="3" >
  11960. </productMenu>
  11961. <productMenu id="deviceSetting"
  11962. type="1"
  11963. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11964. </productMenu>
  11965. <productMenu id="quickGuide"
  11966. type="1"
  11967. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11968. size="538KB" >
  11969. </productMenu>
  11970. <productMenu id="userGuide"
  11971. type="1"
  11972. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11973. size="1.55MB" >
  11974. </productMenu>
  11975. <productID id="5532"
  11976. />
  11977. <productGroupable type="0"
  11978. />
  11979. </product>
  11980. <product id="HD50S"
  11981. name="Boom! Audio N01 10R"
  11982. series="50"
  11983. latestVersion="1.1.3"
  11984. show = "0" >
  11985. <productMenu id="protocol"
  11986. type="0">
  11987. </productMenu>
  11988. <productMenu id="sip"
  11989. type="1" >
  11990. </productMenu>
  11991. <productMenu id="bluetoothIntercom"
  11992. type="1" >
  11993. </productMenu>
  11994. <productMenu id="phone"
  11995. type="2" >
  11996. </productMenu>
  11997. <productMenu id="fmradio"
  11998. type="3" >
  11999. </productMenu>
  12000. <productMenu id="deviceSetting"
  12001. type="1"
  12002. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12003. </productMenu>
  12004. <productMenu id="quickGuide"
  12005. type="1"
  12006. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12007. size="766KB" >
  12008. </productMenu>
  12009. <productMenu id="userGuide"
  12010. type="1"
  12011. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12012. size="1.45MB" >
  12013. </productMenu>
  12014. <productID id="5522"
  12015. />
  12016. <productGroupable type="0"
  12017. />
  12018. </product>
  12019. <product id="HD50S"
  12020. name="OUTRUSH-R N03"
  12021. series="50"
  12022. latestVersion="1.2.1"
  12023. show = "-1" >
  12024. <productMenu id="protocol"
  12025. type="0">
  12026. </productMenu>
  12027. <productMenu id="sip"
  12028. type="1" >
  12029. </productMenu>
  12030. <productMenu id="bluetoothIntercom"
  12031. type="1" >
  12032. </productMenu>
  12033. <productMenu id="phone"
  12034. type="2" >
  12035. </productMenu>
  12036. <productMenu id="fmradio"
  12037. type="3" >
  12038. </productMenu>
  12039. <productMenu id="deviceSetting"
  12040. type="1"
  12041. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12042. </productMenu>
  12043. <productMenu id="userGuide"
  12044. type="1"
  12045. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12046. size="660KB" >
  12047. </productMenu>
  12048. <productID id="5434"
  12049. />
  12050. <productGroupable type="0"
  12051. />
  12052. </product>
  12053. <product id="HD50S"
  12054. name="OUTRUSH-R N03"
  12055. series="50"
  12056. latestVersion="2.0"
  12057. show = "0" >
  12058. <productMenu id="protocol"
  12059. type="3" >
  12060. </productMenu>
  12061. <productMenu id="sip"
  12062. type="1" >
  12063. </productMenu>
  12064. <productMenu id="bluetoothIntercom"
  12065. type="1" >
  12066. </productMenu>
  12067. <productMenu id="phone"
  12068. type="1" >
  12069. </productMenu>
  12070. <productMenu id="fmradio"
  12071. type="1" >
  12072. </productMenu>
  12073. <productMenu id="deviceSetting"
  12074. type="1"
  12075. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12076. </productMenu>
  12077. <productMenu id="userGuide"
  12078. type="1"
  12079. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12080. size="1.14MB" >
  12081. </productMenu>
  12082. <productID id="5441"
  12083. />
  12084. <productGroupable type="0"
  12085. />
  12086. </product>
  12087. <product id="5R"
  12088. name="5R"
  12089. series="5"
  12090. latestVersion="1.0.1"
  12091. show = "1" >
  12092. <productMenu id="protocol"
  12093. type="3" >
  12094. </productMenu>
  12095. <productMenu id="sip"
  12096. type="1" >
  12097. </productMenu>
  12098. <productMenu id="bluetoothIntercom"
  12099. type="1" >
  12100. </productMenu>
  12101. <productMenu id="phone"
  12102. type="1" >
  12103. </productMenu>
  12104. <productMenu id="fmradio"
  12105. type="1" >
  12106. </productMenu>
  12107. <productMenu id="deviceSetting"
  12108. type="1"
  12109. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12110. </productMenu>
  12111. <productMenu id="quickGuide"
  12112. type="0"
  12113. url=""
  12114. size="934KB" >
  12115. </productMenu>
  12116. <productMenu id="userGuide"
  12117. type="1"
  12118. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12119. size="1.14MB" >
  12120. </productMenu>
  12121. <productMenu id="connectGuide"
  12122. type="1"
  12123. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12124. size="1.12MB" >
  12125. </productMenu>
  12126. <productID id="5591"
  12127. />
  12128. <productGroupable type="0"
  12129. />
  12130. </product>
  12131. <product id="5R"
  12132. name="5R LITE"
  12133. series="5"
  12134. latestVersion="1.0.1"
  12135. show = "1" >
  12136. <productMenu id="protocol"
  12137. type="3" >
  12138. </productMenu>
  12139. <productMenu id="sip"
  12140. type="1" >
  12141. </productMenu>
  12142. <productMenu id="bluetoothIntercom"
  12143. type="1" >
  12144. </productMenu>
  12145. <productMenu id="phone"
  12146. type="1" >
  12147. </productMenu>
  12148. <productMenu id="fmradio"
  12149. type="1" >
  12150. </productMenu>
  12151. <productMenu id="deviceSetting"
  12152. type="1"
  12153. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12154. </productMenu>
  12155. <productMenu id="quickGuide"
  12156. type="0"
  12157. url=""
  12158. size="934KB" >
  12159. </productMenu>
  12160. <productMenu id="userGuide"
  12161. type="1"
  12162. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12163. size="1.14MB" >
  12164. </productMenu>
  12165. <productMenu id="connectGuide"
  12166. type="1"
  12167. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12168. size="1.12MB" >
  12169. </productMenu>
  12170. <productID id="5592"
  12171. />
  12172. <productGroupable type="0"
  12173. />
  12174. </product>
  12175. <product id="50RLE"
  12176. name="50R LE"
  12177. series="50"
  12178. latestVersion="1.1"
  12179. show = "0" >
  12180. <productMenu id="protocol"
  12181. type="2" >
  12182. </productMenu>
  12183. <productMenu id="alexa"
  12184. type="0" >
  12185. </productMenu>
  12186. <productMenu id="sip"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="meshIntercom"
  12190. type="30" >
  12191. </productMenu>
  12192. <productMenu id="meshIntercom+"
  12193. type="3"
  12194. url="2" >
  12195. <productMenuType version="1.0.9"
  12196. type="2"
  12197. />
  12198. </productMenu>
  12199. <productMenu id="waveIntercom"
  12200. type="1" >
  12201. <productMenuType version="1.0.9"
  12202. type="0"
  12203. />
  12204. </productMenu>
  12205. <productMenu id="bluetoothIntercom"
  12206. type="1" >
  12207. </productMenu>
  12208. <productMenu id="phone"
  12209. type="1" >
  12210. </productMenu>
  12211. <productMenu id="music"
  12212. type="1" >
  12213. </productMenu>
  12214. <productMenu id="fmradio"
  12215. type="0" >
  12216. </productMenu>
  12217. <productMenu id="deviceSetting"
  12218. type="1"
  12219. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12220. <productMenuURL version="1.0.9"
  12221. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12222. />
  12223. </productMenu>
  12224. <productMenu id="quickGuide"
  12225. type="0"
  12226. url=""
  12227. size="344KB" >
  12228. </productMenu>
  12229. <productMenu id="userGuide"
  12230. type="0"
  12231. url=""
  12232. size="3.41MB" >
  12233. </productMenu>
  12234. <productMenu id="volume"
  12235. type="11" >
  12236. </productMenu>
  12237. <productMenu id="battery"
  12238. type="1" >
  12239. </productMenu>
  12240. <productID id="3223"
  12241. />
  12242. <productGroupable type="0"
  12243. />
  12244. </product>
  12245. <product id="5RLOUIS"
  12246. name="5R LOUIS EDITION"
  12247. series="5"
  12248. latestVersion="1.0"
  12249. show = "-1" >
  12250. <productMenu id="protocol"
  12251. type="3" >
  12252. </productMenu>
  12253. <productMenu id="sip"
  12254. type="1" >
  12255. </productMenu>
  12256. <productMenu id="bluetoothIntercom"
  12257. type="1" >
  12258. </productMenu>
  12259. <productMenu id="phone"
  12260. type="1" >
  12261. </productMenu>
  12262. <productMenu id="fmradio"
  12263. type="1" >
  12264. </productMenu>
  12265. <productMenu id="deviceSetting"
  12266. type="1"
  12267. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12268. </productMenu>
  12269. <productMenu id="quickGuide"
  12270. type="0"
  12271. url=""
  12272. size="934KB" >
  12273. </productMenu>
  12274. <productMenu id="userGuide"
  12275. type="0"
  12276. url=""
  12277. size="1.14MB" >
  12278. </productMenu>
  12279. <productID id="5597"
  12280. />
  12281. <productGroupable type="0"
  12282. />
  12283. </product>
  12284. <product id="5S"
  12285. name="Ridekont 5S"
  12286. series="5"
  12287. latestVersion="2.3"
  12288. show = "-1" >
  12289. <productMenu id="protocol"
  12290. type="3" >
  12291. </productMenu>
  12292. <productMenu id="sip"
  12293. type="1" >
  12294. </productMenu>
  12295. <productMenu id="bluetoothIntercom"
  12296. type="1" >
  12297. </productMenu>
  12298. <productMenu id="phone"
  12299. type="1" >
  12300. </productMenu>
  12301. <productMenu id="fmradio"
  12302. type="0" >
  12303. </productMenu>
  12304. <productMenu id="deviceSetting"
  12305. type="1"
  12306. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12307. </productMenu>
  12308. <productMenu id="quickGuide"
  12309. type="0"
  12310. url=""
  12311. size="934KB" >
  12312. </productMenu>
  12313. <productMenu id="userGuide"
  12314. type="1"
  12315. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12316. size="1.14MB" >
  12317. </productMenu>
  12318. <productID id="5589"
  12319. />
  12320. <productGroupable type="0"
  12321. />
  12322. </product>
  12323. <product id="5R"
  12324. name="Ridekont 5R"
  12325. series="5"
  12326. latestVersion="1.0"
  12327. show = "0" >
  12328. <productMenu id="protocol"
  12329. type="3" >
  12330. </productMenu>
  12331. <productMenu id="sip"
  12332. type="1" >
  12333. </productMenu>
  12334. <productMenu id="bluetoothIntercom"
  12335. type="1" >
  12336. </productMenu>
  12337. <productMenu id="phone"
  12338. type="1" >
  12339. </productMenu>
  12340. <productMenu id="fmradio"
  12341. type="1" >
  12342. </productMenu>
  12343. <productMenu id="deviceSetting"
  12344. type="1"
  12345. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12346. </productMenu>
  12347. <productMenu id="quickGuide"
  12348. type="1"
  12349. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12350. size="934KB" >
  12351. </productMenu>
  12352. <productMenu id="userGuide"
  12353. type="1"
  12354. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12355. size="1.14MB" >
  12356. </productMenu>
  12357. <productID id="5593"
  12358. />
  12359. <productGroupable type="0"
  12360. />
  12361. </product>
  12362. <product id="5R"
  12363. name="Ridekont 5R LITE"
  12364. series="5"
  12365. latestVersion="1.0"
  12366. show = "0" >
  12367. <productMenu id="protocol"
  12368. type="3" >
  12369. </productMenu>
  12370. <productMenu id="sip"
  12371. type="1" >
  12372. </productMenu>
  12373. <productMenu id="bluetoothIntercom"
  12374. type="1" >
  12375. </productMenu>
  12376. <productMenu id="phone"
  12377. type="1" >
  12378. </productMenu>
  12379. <productMenu id="fmradio"
  12380. type="1" >
  12381. </productMenu>
  12382. <productMenu id="deviceSetting"
  12383. type="1"
  12384. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12385. </productMenu>
  12386. <productMenu id="quickGuide"
  12387. type="0"
  12388. url=""
  12389. size="934KB" >
  12390. </productMenu>
  12391. <productMenu id="userGuide"
  12392. type="1"
  12393. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12394. size="1.14MB" >
  12395. </productMenu>
  12396. <productID id="5594"
  12397. />
  12398. <productGroupable type="0"
  12399. />
  12400. </product>
  12401. <product id="SA30"
  12402. name="SA30"
  12403. series="SA"
  12404. latestVersion="1.0.1"
  12405. latestVersionVoicePrompt="0.15"
  12406. show = "-1" >
  12407. <productMenu id="protocol"
  12408. type="2" >
  12409. </productMenu>
  12410. <productMenu id="ota"
  12411. type="2" >
  12412. <otaPackages>
  12413. <package
  12414. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12415. size="3144148"
  12416. />
  12417. </otaPackages>
  12418. </productMenu>
  12419. <productMenu id="meshIntercom"
  12420. type="30" >
  12421. </productMenu>
  12422. <productMenu id="meshIntercom+"
  12423. type="3"
  12424. url="2" >
  12425. </productMenu>
  12426. <productMenu id="phone"
  12427. type="1" >
  12428. </productMenu>
  12429. <productMenu id="music"
  12430. type="1" >
  12431. </productMenu>
  12432. <productMenu id="musicSharing"
  12433. type="0" >
  12434. </productMenu>
  12435. <productMenu id="deviceSetting"
  12436. type="1"
  12437. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12438. </productMenu>
  12439. <productMenu id="quickGuide"
  12440. type="0"
  12441. url=""
  12442. size="1.12MB" >
  12443. </productMenu>
  12444. <productMenu id="userGuide"
  12445. type="1"
  12446. url=""
  12447. size="2.0MB" >
  12448. </productMenu>
  12449. <productMenu id="videoGuide"
  12450. type="0"
  12451. url=""
  12452. size="3.41MB" >
  12453. </productMenu>
  12454. <productMenu id="volume"
  12455. type="12" >
  12456. </productMenu>
  12457. <productMenu id="battery"
  12458. type="1" >
  12459. </productMenu>
  12460. <productID id="6852"
  12461. />
  12462. <productGroupable type="0"
  12463. />
  12464. </product>
  12465. <product id="I30"
  12466. name="I30"
  12467. series="I"
  12468. latestVersion="1.0.1"
  12469. latestVersionVoicePrompt="0.2"
  12470. show = "-1" >
  12471. <productMenu id="protocol"
  12472. type="2" >
  12473. </productMenu>
  12474. <productMenu id="ota"
  12475. type="2" >
  12476. <otaPackages>
  12477. <package
  12478. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12479. size="3144148"
  12480. />
  12481. </otaPackages>
  12482. </productMenu>
  12483. <productMenu id="meshIntercom"
  12484. type="30" >
  12485. </productMenu>
  12486. <productMenu id="meshIntercom+"
  12487. type="3"
  12488. url="2" >
  12489. </productMenu>
  12490. <productMenu id="phone"
  12491. type="1" >
  12492. </productMenu>
  12493. <productMenu id="music"
  12494. type="1" >
  12495. </productMenu>
  12496. <productMenu id="musicSharing"
  12497. type="0" >
  12498. </productMenu>
  12499. <productMenu id="deviceSetting"
  12500. type="1"
  12501. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12502. </productMenu>
  12503. <productMenu id="quickGuide"
  12504. type="0"
  12505. url=""
  12506. size="1.12MB" >
  12507. </productMenu>
  12508. <productMenu id="userGuide"
  12509. type="1"
  12510. url=""
  12511. size="2.10MB" >
  12512. </productMenu>
  12513. <productMenu id="videoGuide"
  12514. type="0"
  12515. url=""
  12516. size="3.11MB" >
  12517. </productMenu>
  12518. <productMenu id="volume"
  12519. type="12" >
  12520. </productMenu>
  12521. <productMenu id="battery"
  12522. type="1" >
  12523. </productMenu>
  12524. <productID id="6853"
  12525. />
  12526. <productGroupable type="0"
  12527. />
  12528. </product>
  12529. <product id="C30"
  12530. name="SENA C30"
  12531. series="C"
  12532. latestVersion="1.2.2"
  12533. latestVersionVoicePrompt="0.13"
  12534. show = "1" >
  12535. <productMenu id="protocol"
  12536. type="2" >
  12537. </productMenu>
  12538. <productMenu id="alexa"
  12539. type="0" >
  12540. </productMenu>
  12541. <productMenu id="ota"
  12542. type="2" >
  12543. <otaPackages>
  12544. <package
  12545. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12546. size="3144148"
  12547. />
  12548. </otaPackages>
  12549. </productMenu>
  12550. <productMenu id="wa"
  12551. type="0" >
  12552. </productMenu>
  12553. <productMenu id="meshIntercom"
  12554. type="30" >
  12555. </productMenu>
  12556. <productMenu id="meshIntercom+"
  12557. type="3"
  12558. url="2" >
  12559. <productMenuType version="1.0.9"
  12560. type="2"
  12561. />
  12562. </productMenu>
  12563. <productMenu id="waveIntercom"
  12564. type="1" >
  12565. <productMenuType version="1.1.9"
  12566. type="0"
  12567. />
  12568. </productMenu>
  12569. <productMenu id="phone"
  12570. type="1" >
  12571. </productMenu>
  12572. <productMenu id="music"
  12573. type="1" >
  12574. </productMenu>
  12575. <productMenu id="musicSharing"
  12576. type="0" >
  12577. </productMenu>
  12578. <productMenu id="deviceSetting"
  12579. type="1"
  12580. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12581. <productMenuURL version="1.1.3"
  12582. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12583. />
  12584. <productMenuURL version="1.0.9"
  12585. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12586. />
  12587. </productMenu>
  12588. <productMenu id="quickGuide"
  12589. type="1"
  12590. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12591. size="1.12MB" >
  12592. </productMenu>
  12593. <productMenu id="userGuide"
  12594. type="0"
  12595. url=""
  12596. size="2.0MB" >
  12597. </productMenu>
  12598. <productMenu id="videoGuide"
  12599. type="0"
  12600. url=""
  12601. size="3.41MB" >
  12602. </productMenu>
  12603. <productMenu id="volume"
  12604. type="12" >
  12605. </productMenu>
  12606. <productMenu id="battery"
  12607. type="1" >
  12608. </productMenu>
  12609. <productID id="683A"
  12610. />
  12611. <productGroupable type="0"
  12612. />
  12613. </product>
  12614. <product id="C20"
  12615. name="C20"
  12616. series="C"
  12617. latestVersion="1.0"
  12618. show = "1" >
  12619. <productMenu id="protocol"
  12620. type="3" >
  12621. </productMenu>
  12622. <productMenu id="sip"
  12623. type="1" >
  12624. </productMenu>
  12625. <productMenu id="bluetoothIntercom"
  12626. type="1" >
  12627. </productMenu>
  12628. <productMenu id="phone"
  12629. type="1" >
  12630. </productMenu>
  12631. <productMenu id="deviceSetting"
  12632. type="1"
  12633. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12634. </productMenu>
  12635. <productMenu id="quickGuide"
  12636. type="1"
  12637. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12638. size="934KB" >
  12639. </productMenu>
  12640. <productMenu id="userGuide"
  12641. type="1"
  12642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12643. size="1.14MB" >
  12644. </productMenu>
  12645. <productID id="3701"
  12646. />
  12647. <productGroupable type="0"
  12648. />
  12649. </product>
  12650. <product id="C10"
  12651. name="C10"
  12652. series="C"
  12653. latestVersion="1.4.4"
  12654. show = "1" >
  12655. <productMenu id="protocol"
  12656. type="3" >
  12657. </productMenu>
  12658. <productMenu id="sip"
  12659. type="1" >
  12660. </productMenu>
  12661. <productMenu id="bluetoothIntercom"
  12662. type="1" >
  12663. </productMenu>
  12664. <productMenu id="phone"
  12665. type="1" >
  12666. </productMenu>
  12667. <productMenu id="fmradio"
  12668. type="0" >
  12669. </productMenu>
  12670. <productMenu id="deviceSetting"
  12671. type="1"
  12672. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12673. </productMenu>
  12674. <productMenu id="userGuide"
  12675. type="1"
  12676. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12677. size="1.14MB" >
  12678. </productMenu>
  12679. <productID id="5595"
  12680. />
  12681. <productGroupable type="0"
  12682. />
  12683. </product>
  12684. <product id="J30"
  12685. name="J30"
  12686. series="J"
  12687. latestVersion="1.2.2"
  12688. latestVersionVoicePrompt="0.14"
  12689. show = "0" >
  12690. <productMenu id="protocol"
  12691. type="2" >
  12692. </productMenu>
  12693. <productMenu id="alexa"
  12694. type="0" >
  12695. </productMenu>
  12696. <productMenu id="ota"
  12697. type="2" >
  12698. <otaPackages>
  12699. <package
  12700. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12701. size="3144148"
  12702. />
  12703. </otaPackages>
  12704. </productMenu>
  12705. <productMenu id="wa"
  12706. type="0" >
  12707. </productMenu>
  12708. <productMenu id="meshIntercom"
  12709. type="30" >
  12710. </productMenu>
  12711. <productMenu id="meshIntercom+"
  12712. type="3"
  12713. url="2" >
  12714. <productMenuType version="1.0.9"
  12715. type="2"
  12716. />
  12717. </productMenu>
  12718. <productMenu id="waveIntercom"
  12719. type="1" >
  12720. <productMenuType version="1.1.9"
  12721. type="0"
  12722. />
  12723. </productMenu>
  12724. <productMenu id="phone"
  12725. type="1" >
  12726. </productMenu>
  12727. <productMenu id="music"
  12728. type="1" >
  12729. </productMenu>
  12730. <productMenu id="musicSharing"
  12731. type="0" >
  12732. </productMenu>
  12733. <productMenu id="deviceSetting"
  12734. type="1"
  12735. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12736. <productMenuURL version="1.0.9"
  12737. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12738. />
  12739. </productMenu>
  12740. <productMenu id="quickGuide"
  12741. type="0"
  12742. url=""
  12743. size="1.12MB" >
  12744. </productMenu>
  12745. <productMenu id="userGuide"
  12746. type="1"
  12747. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12748. size="2.0MB" >
  12749. </productMenu>
  12750. <productMenu id="videoGuide"
  12751. type="0"
  12752. url=""
  12753. size="3.41MB" >
  12754. </productMenu>
  12755. <productMenu id="volume"
  12756. type="12" >
  12757. </productMenu>
  12758. <productMenu id="battery"
  12759. type="1" >
  12760. </productMenu>
  12761. <productID id="6848"
  12762. />
  12763. <productGroupable type="0"
  12764. />
  12765. </product>
  12766. <product id="J10"
  12767. name="J10"
  12768. series="5"
  12769. latestVersion="1.1.4"
  12770. show = "0" >
  12771. <productMenu id="protocol"
  12772. type="3" >
  12773. </productMenu>
  12774. <productMenu id="sip"
  12775. type="1" >
  12776. </productMenu>
  12777. <productMenu id="bluetoothIntercom"
  12778. type="1" >
  12779. </productMenu>
  12780. <productMenu id="phone"
  12781. type="1" >
  12782. </productMenu>
  12783. <productMenu id="fmradio"
  12784. type="0" >
  12785. </productMenu>
  12786. <productMenu id="deviceSetting"
  12787. type="1"
  12788. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12789. </productMenu>
  12790. <productMenu id="userGuide"
  12791. type="1"
  12792. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12793. size="1.14MB" >
  12794. </productMenu>
  12795. <productID id="5598"
  12796. />
  12797. <productGroupable type="0"
  12798. />
  12799. </product>
  12800. <product id="B20"
  12801. name="B20"
  12802. series="B"
  12803. latestVersion="1.1.2"
  12804. latestVersionVoicePrompt="0.14"
  12805. show = "0" >
  12806. <productMenu id="protocol"
  12807. type="2" >
  12808. </productMenu>
  12809. <productMenu id="alexa"
  12810. type="0" >
  12811. </productMenu>
  12812. <productMenu id="ota"
  12813. type="2" >
  12814. <otaPackages>
  12815. <package
  12816. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12817. size="3144148"
  12818. />
  12819. </otaPackages>
  12820. </productMenu>
  12821. <productMenu id="wa"
  12822. type="0" >
  12823. </productMenu>
  12824. <productMenu id="meshIntercom"
  12825. type="30" >
  12826. </productMenu>
  12827. <productMenu id="phone"
  12828. type="1" >
  12829. </productMenu>
  12830. <productMenu id="music"
  12831. type="1" >
  12832. </productMenu>
  12833. <productMenu id="musicSharing"
  12834. type="0" >
  12835. </productMenu>
  12836. <productMenu id="deviceSetting"
  12837. type="1"
  12838. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12839. <productMenuURL version="1.0.9"
  12840. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12841. />
  12842. </productMenu>
  12843. <productMenu id="quickGuide"
  12844. type="0"
  12845. url=""
  12846. size="1.12MB" >
  12847. </productMenu>
  12848. <productMenu id="userGuide"
  12849. type="1"
  12850. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12851. size="2.0MB" >
  12852. </productMenu>
  12853. <productMenu id="videoGuide"
  12854. type="0"
  12855. url=""
  12856. size="3.41MB" >
  12857. </productMenu>
  12858. <productMenu id="volume"
  12859. type="12" >
  12860. </productMenu>
  12861. <productMenu id="battery"
  12862. type="1" >
  12863. </productMenu>
  12864. <productID id="6847"
  12865. />
  12866. <productGroupable type="0"
  12867. />
  12868. </product>
  12869. <product id="B10"
  12870. name="B10"
  12871. series="5"
  12872. latestVersion="1.2.4"
  12873. show = "0" >
  12874. <productMenu id="protocol"
  12875. type="3" >
  12876. </productMenu>
  12877. <productMenu id="sip"
  12878. type="1" >
  12879. </productMenu>
  12880. <productMenu id="bluetoothIntercom"
  12881. type="1" >
  12882. </productMenu>
  12883. <productMenu id="phone"
  12884. type="1" >
  12885. </productMenu>
  12886. <productMenu id="fmradio"
  12887. type="0" >
  12888. </productMenu>
  12889. <productMenu id="deviceSetting"
  12890. type="1"
  12891. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12892. </productMenu>
  12893. <productMenu id="userGuide"
  12894. type="1"
  12895. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12896. size="1.14MB" >
  12897. </productMenu>
  12898. <productID id="5596"
  12899. />
  12900. <productGroupable type="0"
  12901. />
  12902. </product>
  12903. <product id="E30"
  12904. name="E30"
  12905. series="E"
  12906. latestVersion="1.1.2"
  12907. latestVersionVoicePrompt="0.14"
  12908. show = "0" >
  12909. <productMenu id="protocol"
  12910. type="2" >
  12911. </productMenu>
  12912. <productMenu id="alexa"
  12913. type="0" >
  12914. </productMenu>
  12915. <productMenu id="ota"
  12916. type="2" >
  12917. <otaPackages>
  12918. <package
  12919. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12920. size="3144148"
  12921. />
  12922. </otaPackages>
  12923. </productMenu>
  12924. <productMenu id="wa"
  12925. type="0" >
  12926. </productMenu>
  12927. <productMenu id="meshIntercom"
  12928. type="30" >
  12929. </productMenu>
  12930. <productMenu id="meshIntercom+"
  12931. type="3"
  12932. url="2" >
  12933. </productMenu>
  12934. <productMenu id="waveIntercom"
  12935. type="1" >
  12936. <productMenuType version="1.0.9"
  12937. type="0"
  12938. />
  12939. </productMenu>
  12940. <productMenu id="phone"
  12941. type="1" >
  12942. </productMenu>
  12943. <productMenu id="music"
  12944. type="1" >
  12945. </productMenu>
  12946. <productMenu id="musicSharing"
  12947. type="0" >
  12948. </productMenu>
  12949. <productMenu id="deviceSetting"
  12950. type="1"
  12951. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12952. </productMenu>
  12953. <productMenu id="quickGuide"
  12954. type="0"
  12955. url=""
  12956. size="1.12MB" >
  12957. </productMenu>
  12958. <productMenu id="userGuide"
  12959. type="1"
  12960. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12961. size="2.0MB" >
  12962. </productMenu>
  12963. <productMenu id="videoGuide"
  12964. type="0"
  12965. url=""
  12966. size="3.41MB" >
  12967. </productMenu>
  12968. <productMenu id="volume"
  12969. type="12" >
  12970. </productMenu>
  12971. <productMenu id="battery"
  12972. type="1" >
  12973. </productMenu>
  12974. <productID id="6846"
  12975. />
  12976. <productGroupable type="0"
  12977. />
  12978. </product>
  12979. <product id="ACSRAM"
  12980. name="ACS-RAM"
  12981. series="ACS"
  12982. latestVersion="1.0.5"
  12983. show = "1" >
  12984. <productMenu id="protocol"
  12985. type="3" >
  12986. </productMenu>
  12987. <productMenu id="sip"
  12988. type="1" >
  12989. </productMenu>
  12990. <productMenu id="bluetoothIntercom"
  12991. type="1" >
  12992. </productMenu>
  12993. <productMenu id="deviceSetting"
  12994. type="1"
  12995. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12996. </productMenu>
  12997. <productMenu id="quickGuide"
  12998. type="1"
  12999. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13000. size="344KB" >
  13001. </productMenu>
  13002. <productMenu id="userGuide"
  13003. type="1"
  13004. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13005. size="1.14MB" >
  13006. </productMenu>
  13007. <productMenu id="connectGuide"
  13008. type="1"
  13009. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13010. size="1.12MB" >
  13011. </productMenu>
  13012. <productID id="3400"
  13013. />
  13014. <productGroupable type="0"
  13015. />
  13016. </product>
  13017. <product id="ACS10"
  13018. name="ACS10"
  13019. series="ACS"
  13020. latestVersion="1.0.2"
  13021. show = "1" >
  13022. <productMenu id="protocol"
  13023. type="0">
  13024. </productMenu>
  13025. <productMenu id="sip"
  13026. type="1" >
  13027. </productMenu>
  13028. <productMenu id="bluetoothIntercom"
  13029. type="1" >
  13030. </productMenu>
  13031. <productMenu id="phone"
  13032. type="2" >
  13033. </productMenu>
  13034. <productMenu id="deviceSetting"
  13035. type="1"
  13036. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13037. </productMenu>
  13038. <productMenu id="quickGuide"
  13039. type="1"
  13040. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13041. size="970KB" >
  13042. </productMenu>
  13043. <productMenu id="userGuide"
  13044. type="1"
  13045. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13046. size="1.26MB" >
  13047. </productMenu>
  13048. <productMenu id="connectGuide"
  13049. type="1"
  13050. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13051. size="1.12MB" >
  13052. </productMenu>
  13053. <productID id="3300"
  13054. />
  13055. <productGroupable type="0"
  13056. />
  13057. </product>
  13058. <product id="DWO7ProMesh"
  13059. name="DWO 7 Pro Mesh"
  13060. series="50"
  13061. latestVersion="1.1"
  13062. latestVersionVoicePrompt="0.9"
  13063. show = "0" >
  13064. <productMenu id="protocol"
  13065. type="2" >
  13066. </productMenu>
  13067. <productMenu id="alexa"
  13068. type="0" >
  13069. </productMenu>
  13070. <productMenu id="ota"
  13071. type="2" >
  13072. <otaPackages>
  13073. <package
  13074. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13075. size="2945812"
  13076. />
  13077. </otaPackages>
  13078. </productMenu>
  13079. <productMenu id="wa"
  13080. type="0" >
  13081. </productMenu>
  13082. <productMenu id="meshIntercom"
  13083. type="20" >
  13084. </productMenu>
  13085. <productMenu id="meshIntercom+"
  13086. type="3"
  13087. url="2" >
  13088. <productMenuType version="1.0.9"
  13089. type="2"
  13090. />
  13091. <productMenuURL version="2.1.1"
  13092. url="0"
  13093. />
  13094. </productMenu>
  13095. <productMenu id="waveIntercom"
  13096. type="1" >
  13097. <productMenuType version="1.0.9"
  13098. type="0"
  13099. />
  13100. </productMenu>
  13101. <productMenu id="phone"
  13102. type="1" >
  13103. </productMenu>
  13104. <productMenu id="music"
  13105. type="1" >
  13106. </productMenu>
  13107. <productMenu id="fmradio"
  13108. type="1" >
  13109. </productMenu>
  13110. <productMenu id="musicSharing"
  13111. type="0" >
  13112. </productMenu>
  13113. <productMenu id="deviceSetting"
  13114. type="1"
  13115. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13116. <productMenuURL version="1.0.9"
  13117. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13118. />
  13119. </productMenu>
  13120. <productMenu id="quickGuide"
  13121. type="1"
  13122. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13123. size="1.12MB" >
  13124. </productMenu>
  13125. <productMenu id="userGuide"
  13126. type="1"
  13127. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13128. size="2.0MB" >
  13129. </productMenu>
  13130. <productMenu id="volume"
  13131. type="12" >
  13132. </productMenu>
  13133. <productMenu id="battery"
  13134. type="1" >
  13135. </productMenu>
  13136. <productID id="6806"
  13137. />
  13138. <productGroupable type="0"
  13139. />
  13140. </product>
  13141. <product id="ERA1X"
  13142. name="ERA 1 X"
  13143. series="UCOM"
  13144. latestVersion="0.2.1"
  13145. latestVersionMesh="0.19"
  13146. latestVersionVoicePrompt="1.2"
  13147. show = "-1" >
  13148. <productMenu id="protocol"
  13149. type="2" >
  13150. </productMenu>
  13151. <productMenu id="ota"
  13152. type="2" >
  13153. <otaLanguages>
  13154. <otaLanguage
  13155. id="0"
  13156. name="English"
  13157. package="0"
  13158. />
  13159. <otaLanguage
  13160. id="0"
  13161. name="French"
  13162. package="1"
  13163. />
  13164. <otaLanguage
  13165. id="0"
  13166. name="Spanish"
  13167. package="2"
  13168. />
  13169. <otaLanguage
  13170. id="0"
  13171. name="Italian"
  13172. package="3"
  13173. />
  13174. <otaLanguage
  13175. id="0"
  13176. name="German"
  13177. package="4"
  13178. />
  13179. <otaLanguage
  13180. id="0"
  13181. name="Dutch"
  13182. package="5"
  13183. />
  13184. <otaLanguage
  13185. id="0"
  13186. name="Russian"
  13187. package="6"
  13188. />
  13189. <otaLanguage
  13190. id="0"
  13191. name="Chinese"
  13192. package="7"
  13193. />
  13194. <otaLanguage
  13195. id="0"
  13196. name="Korean"
  13197. package="8"
  13198. />
  13199. <otaLanguage
  13200. id="0"
  13201. name="Japanese"
  13202. package="9"
  13203. />
  13204. <otaLanguage
  13205. id="0"
  13206. name="Finnish"
  13207. package="10"
  13208. />
  13209. <otaLanguage
  13210. id="0"
  13211. name="Polish"
  13212. package="11"
  13213. />
  13214. <otaLanguage
  13215. id="0"
  13216. name="Czech"
  13217. package="12"
  13218. />
  13219. <otaLanguage
  13220. id="0"
  13221. name="Danish"
  13222. package="13"
  13223. />
  13224. <otaLanguage
  13225. id="0"
  13226. name="Norwegian"
  13227. package="14"
  13228. />
  13229. <otaLanguage
  13230. id="0"
  13231. name="Swedish"
  13232. package="15"
  13233. />
  13234. <otaLanguage
  13235. id="0"
  13236. name="Turkish"
  13237. package="16"
  13238. />
  13239. <otaLanguage
  13240. id="0"
  13241. name="Hungarian"
  13242. package="17"
  13243. />
  13244. <otaLanguage
  13245. id="0"
  13246. name="Portuguese"
  13247. package="18"
  13248. />
  13249. <otaLanguage
  13250. id="0"
  13251. name="Hebrew"
  13252. package="19"
  13253. />
  13254. <otaLanguage
  13255. id="0"
  13256. name="Greek"
  13257. package="20"
  13258. />
  13259. </otaLanguages>
  13260. <otaPackages>
  13261. <package
  13262. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13263. size="5183988"
  13264. />
  13265. <package
  13266. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13267. size="5183988"
  13268. />
  13269. <package
  13270. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13271. size="5183988"
  13272. />
  13273. <package
  13274. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13275. size="5183988"
  13276. />
  13277. <package
  13278. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13279. size="5183988"
  13280. />
  13281. <package
  13282. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13283. size="5183988"
  13284. />
  13285. <package
  13286. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13287. size="5183988"
  13288. />
  13289. <package
  13290. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13291. size="5183988"
  13292. />
  13293. <package
  13294. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13295. size="5183988"
  13296. />
  13297. <package
  13298. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13299. size="5183988"
  13300. />
  13301. <package
  13302. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13303. size="5183988"
  13304. />
  13305. <package
  13306. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13307. size="5183988"
  13308. />
  13309. <package
  13310. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13311. size="5183988"
  13312. />
  13313. <package
  13314. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13315. size="5183988"
  13316. />
  13317. <package
  13318. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13319. size="5183988"
  13320. />
  13321. <package
  13322. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13323. size="5183988"
  13324. />
  13325. <package
  13326. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13327. size="5183988"
  13328. />
  13329. <package
  13330. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13331. size="5183988"
  13332. />
  13333. <package
  13334. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13335. size="5183988"
  13336. />
  13337. <package
  13338. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13339. size="5183988"
  13340. />
  13341. <package
  13342. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13343. size="5183988"
  13344. />
  13345. </otaPackages>
  13346. </productMenu>
  13347. <productMenu id="wa"
  13348. type="0" >
  13349. </productMenu>
  13350. <productMenu id="sip"
  13351. type="1" >
  13352. </productMenu>
  13353. <productMenu id="led"
  13354. type="0" >
  13355. </productMenu>
  13356. <productMenu id="illusion"
  13357. type="1" >
  13358. </productMenu>
  13359. <productMenu id="meshIntercom"
  13360. type="30" >
  13361. </productMenu>
  13362. <productMenu id="meshIntercom+"
  13363. type="3"
  13364. url="2" >
  13365. </productMenu>
  13366. <productMenu id="waveIntercom"
  13367. type="0" >
  13368. </productMenu>
  13369. <productMenu id="bluetoothIntercom"
  13370. type="1" >
  13371. </productMenu>
  13372. <productMenu id="bluetoothIntercomGrouping"
  13373. type="0" >
  13374. </productMenu>
  13375. <productMenu id="fmradio"
  13376. type="1"
  13377. url="1" >
  13378. </productMenu>
  13379. <productMenu id="phone"
  13380. type="1" >
  13381. </productMenu>
  13382. <productMenu id="music"
  13383. type="1" >
  13384. </productMenu>
  13385. <productMenu id="musicSharing"
  13386. type="0" >
  13387. </productMenu>
  13388. <productMenu id="deviceSetting"
  13389. type="1"
  13390. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13391. </productMenu>
  13392. <productMenu id="quickGuide"
  13393. type="0"
  13394. url=""
  13395. size="1.12MB" >
  13396. </productMenu>
  13397. <productMenu id="userGuide"
  13398. type="1"
  13399. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13400. size="2.0MB" >
  13401. </productMenu>
  13402. <productMenu id="videoGuide"
  13403. type="0"
  13404. url=""
  13405. size="3.41MB" >
  13406. </productMenu>
  13407. <productMenu id="volume"
  13408. type="16" >
  13409. </productMenu>
  13410. <productMenu id="soundMode"
  13411. type="1" >
  13412. </productMenu>
  13413. <productMenu id="battery"
  13414. type="1" >
  13415. </productMenu>
  13416. <productID id="6A83"
  13417. />
  13418. <productGroupable type="0"
  13419. />
  13420. </product>
  13421. <product id="MeshStation"
  13422. name="Mesh Station"
  13423. series="50"
  13424. latestVersion="0.9"
  13425. show = "-1" >
  13426. <productMenu id="protocol"
  13427. type="2" >
  13428. </productMenu>
  13429. <productMenu id="meshIntercom"
  13430. type="20"
  13431. url="99" >
  13432. </productMenu>
  13433. <productID id="3161"
  13434. />
  13435. <productGroupable type="0"
  13436. />
  13437. </product>
  13438. </products>
  13439. </sna>