snm.xml 491 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260149" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="0"
  525. url=""
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.9"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.7"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.9"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.7"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.7"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="0"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.0_en_260729.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="0"
  1471. url=""
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2511. <productMenuURL version="1.2.4"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2513. />
  2514. </productMenu>
  2515. <productMenu id="quickGuide"
  2516. type="0"
  2517. url=""
  2518. size="1.12MB" >
  2519. </productMenu>
  2520. <productMenu id="userGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2523. size="2.0MB" >
  2524. </productMenu>
  2525. <productMenu id="videoGuide"
  2526. type="0"
  2527. url=""
  2528. size="3.41MB" >
  2529. </productMenu>
  2530. <productMenu id="volume"
  2531. type="16" >
  2532. </productMenu>
  2533. <productMenu id="volume+"
  2534. type="2"
  2535. url="0x6004" >
  2536. </productMenu>
  2537. <productMenu id="battery"
  2538. type="1" >
  2539. </productMenu>
  2540. <productID id="6A0F"
  2541. />
  2542. <productGroupable type="0"
  2543. />
  2544. </product>
  2545. <product id="PHANTOMXB"
  2546. name="PHANTOM XB"
  2547. series="Helmet"
  2548. latestVersion="1.2.9"
  2549. latestVersionVoicePrompt="1.6"
  2550. show = "-1" >
  2551. <productMenu id="protocol"
  2552. type="2" >
  2553. </productMenu>
  2554. <productMenu id="ota"
  2555. type="2" >
  2556. <otaLanguages>
  2557. <otaLanguage
  2558. id="0"
  2559. name="English"
  2560. package="0"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="French"
  2565. package="1"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Spanish"
  2570. package="2"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Italian"
  2575. package="3"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="German"
  2580. package="4"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Dutch"
  2585. package="5"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Russian"
  2590. package="6"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Chinese"
  2595. package="7"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Korean"
  2600. package="8"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Japanese"
  2605. package="9"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Finnish"
  2610. package="10"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Polish"
  2615. package="11"
  2616. />
  2617. </otaLanguages>
  2618. <otaPackages>
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2665. size="5183988"
  2666. />
  2667. </otaPackages>
  2668. </productMenu>
  2669. <productMenu id="wa"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="led"
  2673. type="5" >
  2674. </productMenu>
  2675. <productMenu id="led+"
  2676. type="2"
  2677. url="1" >
  2678. </productMenu>
  2679. <productMenu id="meshIntercom"
  2680. type="30" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom+"
  2683. type="3"
  2684. url="2" >
  2685. </productMenu>
  2686. <productMenu id="waveIntercom"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="fmradio"
  2690. type="0" >
  2691. </productMenu>
  2692. <productMenu id="phone"
  2693. type="1" >
  2694. </productMenu>
  2695. <productMenu id="music"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="musicSharing"
  2699. type="0" >
  2700. </productMenu>
  2701. <productMenu id="deviceSetting"
  2702. type="1"
  2703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2704. <productMenuURL version="1.2.4"
  2705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2706. />
  2707. <productMenuURL version="1.2.1"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2709. />
  2710. </productMenu>
  2711. <productMenu id="quickGuide"
  2712. type="0"
  2713. url=""
  2714. size="1.12MB" >
  2715. </productMenu>
  2716. <productMenu id="userGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2719. size="2.0MB" >
  2720. </productMenu>
  2721. <productMenu id="videoGuide"
  2722. type="0"
  2723. url=""
  2724. size="3.41MB" >
  2725. </productMenu>
  2726. <productMenu id="volume"
  2727. type="16" >
  2728. </productMenu>
  2729. <productMenu id="volume+"
  2730. type="2"
  2731. url="0x6004" >
  2732. </productMenu>
  2733. <productMenu id="battery"
  2734. type="1" >
  2735. </productMenu>
  2736. <productID id="6A0C"
  2737. />
  2738. <productGroupable type="0"
  2739. />
  2740. </product>
  2741. <product id="PHANTOMKV"
  2742. name="PHANTOM KV"
  2743. series="Helmet"
  2744. latestVersion="1.2.10"
  2745. latestVersionVoicePrompt="1.7"
  2746. show = "1" >
  2747. <productMenu id="protocol"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="ota"
  2751. type="2" >
  2752. <otaLanguages>
  2753. <otaLanguage
  2754. id="0"
  2755. name="English"
  2756. package="0"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="French"
  2761. package="1"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Spanish"
  2766. package="2"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Italian"
  2771. package="3"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="German"
  2776. package="4"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Dutch"
  2781. package="5"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Russian"
  2786. package="6"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Chinese"
  2791. package="7"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Korean"
  2796. package="8"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Japanese"
  2801. package="9"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Finnish"
  2806. package="10"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Polish"
  2811. package="11"
  2812. />
  2813. </otaLanguages>
  2814. <otaPackages>
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2861. size="5183988"
  2862. />
  2863. </otaPackages>
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="led"
  2869. type="5" >
  2870. </productMenu>
  2871. <productMenu id="led+"
  2872. type="2"
  2873. url="1" >
  2874. </productMenu>
  2875. <productMenu id="meshIntercom"
  2876. type="30" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom+"
  2879. type="3"
  2880. url="2" >
  2881. </productMenu>
  2882. <productMenu id="waveIntercom"
  2883. type="1" >
  2884. </productMenu>
  2885. <productMenu id="fmradio"
  2886. type="0" >
  2887. </productMenu>
  2888. <productMenu id="phone"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="music"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="musicSharing"
  2895. type="0" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2900. <productMenuURL version="1.2.4"
  2901. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2902. />
  2903. </productMenu>
  2904. <productMenu id="quickGuide"
  2905. type="0"
  2906. url=""
  2907. size="1.12MB" >
  2908. </productMenu>
  2909. <productMenu id="userGuide"
  2910. type="1"
  2911. url=""
  2912. size="2.0MB" >
  2913. </productMenu>
  2914. <productMenu id="videoGuide"
  2915. type="0"
  2916. url=""
  2917. size="3.41MB" >
  2918. </productMenu>
  2919. <productMenu id="connectGuide"
  2920. type="1"
  2921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2922. size="1.1MB" >
  2923. </productMenu>
  2924. <productMenu id="volume"
  2925. type="16" >
  2926. </productMenu>
  2927. <productMenu id="volume+"
  2928. type="2"
  2929. url="0x6004" >
  2930. </productMenu>
  2931. <productMenu id="soundMode"
  2932. type="1" >
  2933. </productMenu>
  2934. <productMenu id="battery"
  2935. type="1" >
  2936. </productMenu>
  2937. <productID id="6A13"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="PHANTOMCamera"
  2943. name="PHANTOM Camera"
  2944. series="Helmet"
  2945. latestVersion="1.0.1"
  2946. latestVersionVoicePrompt="0.4"
  2947. show = "-1" >
  2948. <productMenu id="protocol"
  2949. type="2" >
  2950. </productMenu>
  2951. <productMenu id="ota"
  2952. type="3" >
  2953. <otaLanguages>
  2954. <otaLanguage
  2955. id="0"
  2956. name="English"
  2957. package="0"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="French"
  2962. package="1"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Spanish"
  2967. package="2"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Italian"
  2972. package="3"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="German"
  2977. package="4"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Dutch"
  2982. package="5"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Russian"
  2987. package="6"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Chinese"
  2992. package="7"
  2993. />
  2994. <otaLanguage
  2995. id="0"
  2996. name="Korean"
  2997. package="8"
  2998. />
  2999. <otaLanguage
  3000. id="0"
  3001. name="Japanese"
  3002. package="9"
  3003. />
  3004. <otaLanguage
  3005. id="0"
  3006. name="Finnish"
  3007. package="10"
  3008. />
  3009. <otaLanguage
  3010. id="0"
  3011. name="Polish"
  3012. package="11"
  3013. />
  3014. </otaLanguages>
  3015. <otaPackages>
  3016. <package
  3017. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  3042. size="5183988"
  3043. />
  3044. <package
  3045. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  3046. size="5183988"
  3047. />
  3048. <package
  3049. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  3050. size="5183988"
  3051. />
  3052. <package
  3053. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  3054. size="5183988"
  3055. />
  3056. <package
  3057. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  3058. size="5183988"
  3059. />
  3060. <package
  3061. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  3062. size="5183988"
  3063. />
  3064. </otaPackages>
  3065. </productMenu>
  3066. <productMenu id="wa"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="led"
  3070. type="5" >
  3071. </productMenu>
  3072. <productMenu id="led+"
  3073. type="2"
  3074. url="1" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom"
  3077. type="30" >
  3078. </productMenu>
  3079. <productMenu id="meshIntercom+"
  3080. type="3"
  3081. url="2" >
  3082. </productMenu>
  3083. <productMenu id="waveIntercom"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="fmradio"
  3087. type="0" >
  3088. </productMenu>
  3089. <productMenu id="phone"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="music"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="musicSharing"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="deviceSetting"
  3099. type="1"
  3100. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3101. </productMenu>
  3102. <productMenu id="quickGuide"
  3103. type="0"
  3104. url=""
  3105. size="1.12MB" >
  3106. </productMenu>
  3107. <productMenu id="userGuide"
  3108. type="1"
  3109. url=""
  3110. size="2.0MB" >
  3111. </productMenu>
  3112. <productMenu id="videoGuide"
  3113. type="0"
  3114. url=""
  3115. size="3.41MB" >
  3116. </productMenu>
  3117. <productMenu id="volume"
  3118. type="16" >
  3119. </productMenu>
  3120. <productMenu id="battery"
  3121. type="1" >
  3122. </productMenu>
  3123. <productID id="6A10"
  3124. />
  3125. <productGroupable type="0"
  3126. />
  3127. </product>
  3128. <product id="PHANTOMCamera"
  3129. name="PHANTOM Camera"
  3130. series="Helmet"
  3131. latestVersion="1.0.1"
  3132. latestVersionVoicePrompt="0.4"
  3133. show = "-1" >
  3134. <productMenu id="protocol"
  3135. type="2" >
  3136. </productMenu>
  3137. <productMenu id="ota"
  3138. type="3" >
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. </productMenu>
  3269. <productMenu id="waveIntercom"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="fmradio"
  3273. type="0" >
  3274. </productMenu>
  3275. <productMenu id="phone"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="music"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="musicSharing"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="0"
  3290. url=""
  3291. size="1.12MB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url=""
  3296. size="2.0MB" >
  3297. </productMenu>
  3298. <productMenu id="videoGuide"
  3299. type="0"
  3300. url=""
  3301. size="3.41MB" >
  3302. </productMenu>
  3303. <productMenu id="volume"
  3304. type="16" >
  3305. </productMenu>
  3306. <productMenu id="battery"
  3307. type="1" >
  3308. </productMenu>
  3309. <productID id="6A09"
  3310. />
  3311. <productGroupable type="0"
  3312. />
  3313. </product>
  3314. <product id="PHANTOM"
  3315. name="PHANTOM ANC"
  3316. series="Helmet"
  3317. latestVersion="1.2.9"
  3318. latestVersionVoicePrompt="1.7"
  3319. show = "1" >
  3320. <productMenu id="protocol"
  3321. type="2" >
  3322. </productMenu>
  3323. <productMenu id="ota"
  3324. type="2" >
  3325. <productMenuType version="0.6.9"
  3326. type="0"
  3327. />
  3328. <otaLanguages>
  3329. <otaLanguage
  3330. id="0"
  3331. name="English"
  3332. package="0"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="French"
  3337. package="1"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Spanish"
  3342. package="2"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Italian"
  3347. package="3"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="German"
  3352. package="4"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Dutch"
  3357. package="5"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Russian"
  3362. package="6"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Chinese"
  3367. package="7"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Korean"
  3372. package="8"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="Japanese"
  3377. package="9"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Finnish"
  3382. package="10"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Polish"
  3387. package="11"
  3388. />
  3389. </otaLanguages>
  3390. <otaPackages>
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3417. size="5183988"
  3418. />
  3419. <package
  3420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3421. size="5183988"
  3422. />
  3423. <package
  3424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3425. size="5183988"
  3426. />
  3427. <package
  3428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3429. size="5183988"
  3430. />
  3431. <package
  3432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3433. size="5183988"
  3434. />
  3435. <package
  3436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3437. size="5183988"
  3438. />
  3439. </otaPackages>
  3440. </productMenu>
  3441. <productMenu id="wa"
  3442. type="0" >
  3443. </productMenu>
  3444. <productMenu id="led"
  3445. type="5" >
  3446. </productMenu>
  3447. <productMenu id="led+"
  3448. type="2"
  3449. url="1" >
  3450. </productMenu>
  3451. <productMenu id="meshIntercom"
  3452. type="30" >
  3453. </productMenu>
  3454. <productMenu id="meshIntercom+"
  3455. type="3"
  3456. url="2" >
  3457. <productMenuURL version="1.0.4"
  3458. url="10"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="waveIntercom"
  3462. type="1" >
  3463. <productMenuType version="1.0.9"
  3464. type="0"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="fmradio"
  3468. type="0" >
  3469. </productMenu>
  3470. <productMenu id="phone"
  3471. type="1" >
  3472. </productMenu>
  3473. <productMenu id="music"
  3474. type="1" >
  3475. </productMenu>
  3476. <productMenu id="musicSharing"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="deviceSetting"
  3480. type="1"
  3481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3482. <productMenuURL version="1.2.4"
  3483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3484. />
  3485. <productMenuURL version="1.2.1"
  3486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3487. />
  3488. <productMenuURL version="1.1.2"
  3489. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3490. />
  3491. <productMenuURL version="1.0.4"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="quickGuide"
  3496. type="0"
  3497. url=""
  3498. size="1.12MB" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3503. size="2.0MB" >
  3504. </productMenu>
  3505. <productMenu id="videoGuide"
  3506. type="0"
  3507. url=""
  3508. size="3.41MB" >
  3509. </productMenu>
  3510. <productMenu id="connectGuide"
  3511. type="1"
  3512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3513. size="1.1MB" >
  3514. </productMenu>
  3515. <productMenu id="volume"
  3516. type="16" >
  3517. </productMenu>
  3518. <productMenu id="volume+"
  3519. type="2"
  3520. url="0x6004" >
  3521. </productMenu>
  3522. <productMenu id="soundMode"
  3523. type="1" >
  3524. <productMenuType version="0.9.11"
  3525. type="0"
  3526. />
  3527. </productMenu>
  3528. <productMenu id="battery"
  3529. type="1" >
  3530. </productMenu>
  3531. <productID id="6A01"
  3532. />
  3533. <productGroupable type="0"
  3534. />
  3535. </product>
  3536. <product id="PHANTOM"
  3537. name="PHANTOM ANC"
  3538. series="Helmet"
  3539. latestVersion="1.2.9"
  3540. latestVersionVoicePrompt="1.7"
  3541. show = "-1" >
  3542. <productMenu id="protocol"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="ota"
  3546. type="2" >
  3547. <otaLanguages>
  3548. <otaLanguage
  3549. id="0"
  3550. name="English"
  3551. package="0"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="French"
  3556. package="1"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Spanish"
  3561. package="2"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Italian"
  3566. package="3"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="German"
  3571. package="4"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Dutch"
  3576. package="5"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Russian"
  3581. package="6"
  3582. />
  3583. <otaLanguage
  3584. id="0"
  3585. name="Chinese"
  3586. package="7"
  3587. />
  3588. <otaLanguage
  3589. id="0"
  3590. name="Korean"
  3591. package="8"
  3592. />
  3593. <otaLanguage
  3594. id="0"
  3595. name="Japanese"
  3596. package="9"
  3597. />
  3598. <otaLanguage
  3599. id="0"
  3600. name="Finnish"
  3601. package="10"
  3602. />
  3603. <otaLanguage
  3604. id="0"
  3605. name="Polish"
  3606. package="11"
  3607. />
  3608. </otaLanguages>
  3609. <otaPackages>
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3620. size="5183988"
  3621. />
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3656. size="5183988"
  3657. />
  3658. </otaPackages>
  3659. </productMenu>
  3660. <productMenu id="led"
  3661. type="5" >
  3662. </productMenu>
  3663. <productMenu id="led+"
  3664. type="2"
  3665. url="1" >
  3666. </productMenu>
  3667. <productMenu id="meshIntercom"
  3668. type="30" >
  3669. </productMenu>
  3670. <productMenu id="meshIntercom+"
  3671. type="3"
  3672. url="2" >
  3673. </productMenu>
  3674. <productMenu id="waveIntercom"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="fmradio"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="phone"
  3681. type="1" >
  3682. </productMenu>
  3683. <productMenu id="music"
  3684. type="1" >
  3685. </productMenu>
  3686. <productMenu id="musicSharing"
  3687. type="0" >
  3688. </productMenu>
  3689. <productMenu id="deviceSetting"
  3690. type="1"
  3691. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3692. <productMenuURL version="1.2.4"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3694. />
  3695. </productMenu>
  3696. <productMenu id="quickGuide"
  3697. type="0"
  3698. url=""
  3699. size="1.12MB" >
  3700. </productMenu>
  3701. <productMenu id="userGuide"
  3702. type="1"
  3703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3704. size="2.0MB" >
  3705. </productMenu>
  3706. <productMenu id="videoGuide"
  3707. type="0"
  3708. url=""
  3709. size="3.41MB" >
  3710. </productMenu>
  3711. <productMenu id="connectGuide"
  3712. type="1"
  3713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3714. size="1.1MB" >
  3715. </productMenu>
  3716. <productMenu id="volume"
  3717. type="16" >
  3718. </productMenu>
  3719. <productMenu id="volume+"
  3720. type="2"
  3721. url="0x6004" >
  3722. </productMenu>
  3723. <productMenu id="soundMode"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="battery"
  3727. type="1" >
  3728. </productMenu>
  3729. <productID id="6A19"
  3730. />
  3731. <productGroupable type="0"
  3732. />
  3733. </product>
  3734. <product id="PHANTOM"
  3735. name="PHANTOM"
  3736. series="Helmet"
  3737. latestVersion="1.2.9"
  3738. latestVersionVoicePrompt="1.7"
  3739. show = "-1" >
  3740. <productMenu id="protocol"
  3741. type="2" >
  3742. </productMenu>
  3743. <productMenu id="ota"
  3744. type="2" >
  3745. <otaLanguages>
  3746. <otaLanguage
  3747. id="0"
  3748. name="English"
  3749. package="0"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="French"
  3754. package="1"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Spanish"
  3759. package="2"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Italian"
  3764. package="3"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="German"
  3769. package="4"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Dutch"
  3774. package="5"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Russian"
  3779. package="6"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Chinese"
  3784. package="7"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Korean"
  3789. package="8"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Japanese"
  3794. package="9"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Finnish"
  3799. package="10"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Polish"
  3804. package="11"
  3805. />
  3806. </otaLanguages>
  3807. <otaPackages>
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3810. size="5183988"
  3811. />
  3812. <package
  3813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3814. size="5183988"
  3815. />
  3816. <package
  3817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3818. size="5183988"
  3819. />
  3820. <package
  3821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3822. size="5183988"
  3823. />
  3824. <package
  3825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3826. size="5183988"
  3827. />
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3854. size="5183988"
  3855. />
  3856. </otaPackages>
  3857. </productMenu>
  3858. <productMenu id="wa"
  3859. type="0" >
  3860. </productMenu>
  3861. <productMenu id="led"
  3862. type="5" >
  3863. </productMenu>
  3864. <productMenu id="led+"
  3865. type="2"
  3866. url="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. </productMenu>
  3871. <productMenu id="meshIntercom+"
  3872. type="3"
  3873. url="2" >
  3874. </productMenu>
  3875. <productMenu id="waveIntercom"
  3876. type="1" >
  3877. </productMenu>
  3878. <productMenu id="fmradio"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="phone"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="music"
  3885. type="1" >
  3886. </productMenu>
  3887. <productMenu id="musicSharing"
  3888. type="0" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3893. <productMenuURL version="1.2.4"
  3894. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3895. />
  3896. </productMenu>
  3897. <productMenu id="quickGuide"
  3898. type="0"
  3899. url=""
  3900. size="1.52MB" >
  3901. </productMenu>
  3902. <productMenu id="userGuide"
  3903. type="1"
  3904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3905. size="2.01MB" >
  3906. </productMenu>
  3907. <productMenu id="videoGuide"
  3908. type="0"
  3909. url=""
  3910. size="3.46MB" >
  3911. </productMenu>
  3912. <productMenu id="connectGuide"
  3913. type="1"
  3914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3915. size="1.1MB" >
  3916. </productMenu>
  3917. <productMenu id="volume"
  3918. type="16" >
  3919. </productMenu>
  3920. <productMenu id="volume+"
  3921. type="2"
  3922. url="0x6004" >
  3923. </productMenu>
  3924. <productMenu id="battery"
  3925. type="1" >
  3926. </productMenu>
  3927. <productID id="6A0E"
  3928. />
  3929. <productGroupable type="0"
  3930. />
  3931. </product>
  3932. <product id="PHANTOM"
  3933. name="PHANTOM"
  3934. series="Helmet"
  3935. latestVersion="1.2.9"
  3936. latestVersionVoicePrompt="1.7"
  3937. show = "1" >
  3938. <productMenu id="protocol"
  3939. type="2" >
  3940. </productMenu>
  3941. <productMenu id="ota"
  3942. type="2" >
  3943. <otaLanguages>
  3944. <otaLanguage
  3945. id="0"
  3946. name="English"
  3947. package="0"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="French"
  3952. package="1"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Spanish"
  3957. package="2"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Italian"
  3962. package="3"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="German"
  3967. package="4"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Dutch"
  3972. package="5"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Russian"
  3977. package="6"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Chinese"
  3982. package="7"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Korean"
  3987. package="8"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Japanese"
  3992. package="9"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Finnish"
  3997. package="10"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Polish"
  4002. package="11"
  4003. />
  4004. </otaLanguages>
  4005. <otaPackages>
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4008. size="5183988"
  4009. />
  4010. <package
  4011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4012. size="5183988"
  4013. />
  4014. <package
  4015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4016. size="5183988"
  4017. />
  4018. <package
  4019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4020. size="5183988"
  4021. />
  4022. <package
  4023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4024. size="5183988"
  4025. />
  4026. <package
  4027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4028. size="5183988"
  4029. />
  4030. <package
  4031. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4032. size="5183988"
  4033. />
  4034. <package
  4035. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4036. size="5183988"
  4037. />
  4038. <package
  4039. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4040. size="5183988"
  4041. />
  4042. <package
  4043. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4044. size="5183988"
  4045. />
  4046. <package
  4047. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4048. size="5183988"
  4049. />
  4050. <package
  4051. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4052. size="5183988"
  4053. />
  4054. </otaPackages>
  4055. </productMenu>
  4056. <productMenu id="wa"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="5" >
  4061. <productMenuType version="1.0.1"
  4062. type="4"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="led+"
  4066. type="2"
  4067. url="1" >
  4068. <productMenuType version="1.0.1"
  4069. type="-1"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="meshIntercom"
  4073. type="30" >
  4074. </productMenu>
  4075. <productMenu id="meshIntercom+"
  4076. type="3"
  4077. url="2" >
  4078. <productMenuURL version="1.0.4"
  4079. url="10"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="waveIntercom"
  4083. type="1" >
  4084. <productMenuType version="1.0.9"
  4085. type="0"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4103. <productMenuURL version="1.2.4"
  4104. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4105. />
  4106. <productMenuURL version="1.2.1"
  4107. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4108. />
  4109. <productMenuURL version="1.0.4"
  4110. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4111. />
  4112. <productMenuURL version="1.0.1"
  4113. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4114. />
  4115. </productMenu>
  4116. <productMenu id="quickGuide"
  4117. type="0"
  4118. url=""
  4119. size="1.12MB" >
  4120. </productMenu>
  4121. <productMenu id="userGuide"
  4122. type="1"
  4123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4124. size="2.0MB" >
  4125. </productMenu>
  4126. <productMenu id="videoGuide"
  4127. type="0"
  4128. url=""
  4129. size="3.41MB" >
  4130. </productMenu>
  4131. <productMenu id="connectGuide"
  4132. type="1"
  4133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4134. size="1.12MB" >
  4135. </productMenu>
  4136. <productMenu id="volume"
  4137. type="16" >
  4138. <productMenuType version="1.0"
  4139. type="13"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="volume+"
  4143. type="2"
  4144. url="0x6004" >
  4145. </productMenu>
  4146. <productMenu id="battery"
  4147. type="1" >
  4148. </productMenu>
  4149. <productID id="6A04"
  4150. />
  4151. <productGroupable type="0"
  4152. />
  4153. </product>
  4154. <product id="PHANTOMEasyLink"
  4155. name="PHANTOM EasyLink"
  4156. series="Helmet"
  4157. latestVersion="0.1"
  4158. latestVersionVoicePrompt="1.2"
  4159. show = "-1" >
  4160. <productMenu id="protocol"
  4161. type="2" >
  4162. </productMenu>
  4163. <productMenu id="ota"
  4164. type="0" >
  4165. <otaLanguages>
  4166. <otaLanguage
  4167. id="0"
  4168. name="English"
  4169. package="0"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="French"
  4174. package="1"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Spanish"
  4179. package="2"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Italian"
  4184. package="3"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="German"
  4189. package="4"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Dutch"
  4194. package="5"
  4195. />
  4196. <otaLanguage
  4197. id="0"
  4198. name="Russian"
  4199. package="6"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Chinese"
  4204. package="7"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Korean"
  4209. package="8"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Japanese"
  4214. package="9"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Finnish"
  4219. package="10"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Polish"
  4224. package="11"
  4225. />
  4226. </otaLanguages>
  4227. <otaPackages>
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4250. size="5183988"
  4251. />
  4252. <package
  4253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4254. size="5183988"
  4255. />
  4256. <package
  4257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4258. size="5183988"
  4259. />
  4260. <package
  4261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4262. size="5183988"
  4263. />
  4264. <package
  4265. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4266. size="5183988"
  4267. />
  4268. <package
  4269. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4270. size="5183988"
  4271. />
  4272. <package
  4273. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4274. size="5183988"
  4275. />
  4276. </otaPackages>
  4277. </productMenu>
  4278. <productMenu id="meshIntercom"
  4279. type="30" >
  4280. </productMenu>
  4281. <productMenu id="meshIntercom+"
  4282. type="3"
  4283. url="2" >
  4284. </productMenu>
  4285. <productMenu id="waveIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="fmradio"
  4289. type="0" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="musicSharing"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="0"
  4306. url=""
  4307. size="1.12MB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url=""
  4312. size="2.0MB" >
  4313. </productMenu>
  4314. <productMenu id="videoGuide"
  4315. type="0"
  4316. url=""
  4317. size="3.41MB" >
  4318. </productMenu>
  4319. <productMenu id="connectGuide"
  4320. type="0"
  4321. url=""
  4322. size="1.12MB" >
  4323. </productMenu>
  4324. <productMenu id="volume"
  4325. type="16" >
  4326. </productMenu>
  4327. <productMenu id="battery"
  4328. type="1" >
  4329. </productMenu>
  4330. <productID id="6A18"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="SPIDERXSlim"
  4336. name="SPIDER X Slim"
  4337. series="SPIDER"
  4338. latestVersion="1.0"
  4339. latestVersionVoicePrompt="1.7"
  4340. show = "1" >
  4341. <productMenu id="protocol"
  4342. type="2" >
  4343. </productMenu>
  4344. <productMenu id="warranty"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="serialNumber"
  4348. type="1" >
  4349. </productMenu>
  4350. <productMenu id="ota"
  4351. type="2" >
  4352. <otaLanguages>
  4353. <otaLanguage
  4354. id="0"
  4355. name="English"
  4356. package="0"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="French"
  4361. package="1"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Spanish"
  4366. package="2"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Italian"
  4371. package="3"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="German"
  4376. package="4"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Dutch"
  4381. package="5"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Russian"
  4386. package="6"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="Chinese"
  4391. package="7"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Korean"
  4396. package="8"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Japanese"
  4401. package="9"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="Finnish"
  4406. package="10"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Polish"
  4411. package="11"
  4412. />
  4413. </otaLanguages>
  4414. <otaPackages>
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4437. size="5183988"
  4438. />
  4439. <package
  4440. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4441. size="5183988"
  4442. />
  4443. <package
  4444. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4445. size="5183988"
  4446. />
  4447. <package
  4448. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4449. size="5183988"
  4450. />
  4451. <package
  4452. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4453. size="5183988"
  4454. />
  4455. <package
  4456. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4457. size="5183988"
  4458. />
  4459. <package
  4460. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4461. size="5183988"
  4462. />
  4463. </otaPackages>
  4464. </productMenu>
  4465. <productMenu id="meshIntercom"
  4466. type="30" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom+"
  4469. type="3"
  4470. url="2" >
  4471. </productMenu>
  4472. <productMenu id="waveIntercom"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1"
  4477. url="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="music"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="musicSharing"
  4486. type="0" >
  4487. </productMenu>
  4488. <productMenu id="deviceSetting"
  4489. type="1"
  4490. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_02.xml" >
  4491. <productMenuURL version="1.0"
  4492. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4493. />
  4494. </productMenu>
  4495. <productMenu id="quickGuide"
  4496. type="0"
  4497. url=""
  4498. size="1.12MB" >
  4499. </productMenu>
  4500. <productMenu id="userGuide"
  4501. type="1"
  4502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4503. size="2.0MB" >
  4504. </productMenu>
  4505. <productMenu id="videoGuide"
  4506. type="0"
  4507. url=""
  4508. size="3.41MB" >
  4509. </productMenu>
  4510. <productMenu id="volume"
  4511. type="16" >
  4512. </productMenu>
  4513. <productMenu id="volume+"
  4514. type="2"
  4515. url="0x6004" >
  4516. </productMenu>
  4517. <productMenu id="appearance"
  4518. type="1"
  4519. url="2|white,silver,chrome,black" >
  4520. </productMenu>
  4521. <productMenu id="battery"
  4522. type="1" >
  4523. </productMenu>
  4524. <productID id="6A07"
  4525. />
  4526. <productGroupable type="0"
  4527. />
  4528. </product>
  4529. <product id="XFITM"
  4530. name="X-FIT M"
  4531. series="SPIDER"
  4532. latestVersion="0.1.11"
  4533. latestVersionVoicePrompt="1.1"
  4534. show = "-1" >
  4535. <productMenu id="protocol"
  4536. type="2" >
  4537. </productMenu>
  4538. <productMenu id="ota"
  4539. type="0" >
  4540. <otaLanguages>
  4541. <otaLanguage
  4542. id="0"
  4543. name="English"
  4544. package="0"
  4545. />
  4546. <otaLanguage
  4547. id="0"
  4548. name="French"
  4549. package="1"
  4550. />
  4551. <otaLanguage
  4552. id="0"
  4553. name="Spanish"
  4554. package="2"
  4555. />
  4556. <otaLanguage
  4557. id="0"
  4558. name="Italian"
  4559. package="3"
  4560. />
  4561. <otaLanguage
  4562. id="0"
  4563. name="German"
  4564. package="4"
  4565. />
  4566. <otaLanguage
  4567. id="0"
  4568. name="Dutch"
  4569. package="5"
  4570. />
  4571. <otaLanguage
  4572. id="0"
  4573. name="Russian"
  4574. package="6"
  4575. />
  4576. <otaLanguage
  4577. id="0"
  4578. name="Chinese"
  4579. package="7"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="Korean"
  4584. package="8"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Japanese"
  4589. package="9"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Finnish"
  4594. package="10"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="Polish"
  4599. package="11"
  4600. />
  4601. </otaLanguages>
  4602. <otaPackages>
  4603. <package
  4604. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4605. size="5183988"
  4606. />
  4607. <package
  4608. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4609. size="5183988"
  4610. />
  4611. <package
  4612. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4613. size="5183988"
  4614. />
  4615. <package
  4616. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4617. size="5183988"
  4618. />
  4619. <package
  4620. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4621. size="5183988"
  4622. />
  4623. <package
  4624. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4625. size="5183988"
  4626. />
  4627. <package
  4628. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4629. size="5183988"
  4630. />
  4631. <package
  4632. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4633. size="5183988"
  4634. />
  4635. <package
  4636. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4637. size="5183988"
  4638. />
  4639. <package
  4640. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4641. size="5183988"
  4642. />
  4643. <package
  4644. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4645. size="5183988"
  4646. />
  4647. <package
  4648. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4649. size="5183988"
  4650. />
  4651. </otaPackages>
  4652. </productMenu>
  4653. <productMenu id="meshIntercom"
  4654. type="30" >
  4655. </productMenu>
  4656. <productMenu id="meshIntercom+"
  4657. type="3"
  4658. url="2" >
  4659. </productMenu>
  4660. <productMenu id="waveIntercom"
  4661. type="1" >
  4662. </productMenu>
  4663. <productMenu id="fmradio"
  4664. type="1"
  4665. url="1" >
  4666. </productMenu>
  4667. <productMenu id="phone"
  4668. type="1" >
  4669. </productMenu>
  4670. <productMenu id="music"
  4671. type="1" >
  4672. </productMenu>
  4673. <productMenu id="musicSharing"
  4674. type="0" >
  4675. </productMenu>
  4676. <productMenu id="deviceSetting"
  4677. type="1"
  4678. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4679. </productMenu>
  4680. <productMenu id="quickGuide"
  4681. type="0"
  4682. url=""
  4683. size="1.12MB" >
  4684. </productMenu>
  4685. <productMenu id="userGuide"
  4686. type="1"
  4687. url=""
  4688. size="2.0MB" >
  4689. </productMenu>
  4690. <productMenu id="videoGuide"
  4691. type="0"
  4692. url=""
  4693. size="3.41MB" >
  4694. </productMenu>
  4695. <productMenu id="volume"
  4696. type="16" >
  4697. </productMenu>
  4698. <productMenu id="volume+"
  4699. type="2"
  4700. url="0x6004" >
  4701. </productMenu>
  4702. <productMenu id="battery"
  4703. type="1" >
  4704. </productMenu>
  4705. <productID id="6A17"
  4706. />
  4707. <productGroupable type="0"
  4708. />
  4709. </product>
  4710. <product id="VORTEXMESH"
  4711. name="VORTEX MESH"
  4712. series="Helmet"
  4713. latestVersion="0.1.11"
  4714. latestVersionVoicePrompt="1.1"
  4715. show = "-1" >
  4716. <productMenu id="protocol"
  4717. type="2" >
  4718. </productMenu>
  4719. <productMenu id="ota"
  4720. type="0" >
  4721. <otaLanguages>
  4722. <otaLanguage
  4723. id="0"
  4724. name="English"
  4725. package="0"
  4726. />
  4727. <otaLanguage
  4728. id="0"
  4729. name="French"
  4730. package="1"
  4731. />
  4732. <otaLanguage
  4733. id="0"
  4734. name="Spanish"
  4735. package="2"
  4736. />
  4737. <otaLanguage
  4738. id="0"
  4739. name="Italian"
  4740. package="3"
  4741. />
  4742. <otaLanguage
  4743. id="0"
  4744. name="German"
  4745. package="4"
  4746. />
  4747. <otaLanguage
  4748. id="0"
  4749. name="Dutch"
  4750. package="5"
  4751. />
  4752. <otaLanguage
  4753. id="0"
  4754. name="Russian"
  4755. package="6"
  4756. />
  4757. <otaLanguage
  4758. id="0"
  4759. name="Chinese"
  4760. package="7"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="Korean"
  4765. package="8"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Japanese"
  4770. package="9"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Finnish"
  4775. package="10"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="Polish"
  4780. package="11"
  4781. />
  4782. </otaLanguages>
  4783. <otaPackages>
  4784. <package
  4785. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4786. size="5183988"
  4787. />
  4788. <package
  4789. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4790. size="5183988"
  4791. />
  4792. <package
  4793. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4794. size="5183988"
  4795. />
  4796. <package
  4797. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4798. size="5183988"
  4799. />
  4800. <package
  4801. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4802. size="5183988"
  4803. />
  4804. <package
  4805. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4806. size="5183988"
  4807. />
  4808. <package
  4809. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4810. size="5183988"
  4811. />
  4812. <package
  4813. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4814. size="5183988"
  4815. />
  4816. <package
  4817. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4818. size="5183988"
  4819. />
  4820. <package
  4821. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4822. size="5183988"
  4823. />
  4824. <package
  4825. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4826. size="5183988"
  4827. />
  4828. <package
  4829. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4830. size="5183988"
  4831. />
  4832. </otaPackages>
  4833. </productMenu>
  4834. <productMenu id="wa"
  4835. type="0" >
  4836. </productMenu>
  4837. <productMenu id="led"
  4838. type="5" >
  4839. </productMenu>
  4840. <productMenu id="led+"
  4841. type="2"
  4842. url="1" >
  4843. </productMenu>
  4844. <productMenu id="meshIntercom"
  4845. type="30" >
  4846. </productMenu>
  4847. <productMenu id="meshIntercom+"
  4848. type="3"
  4849. url="2" >
  4850. </productMenu>
  4851. <productMenu id="waveIntercom"
  4852. type="1" >
  4853. </productMenu>
  4854. <productMenu id="fmradio"
  4855. type="0" >
  4856. </productMenu>
  4857. <productMenu id="phone"
  4858. type="1" >
  4859. </productMenu>
  4860. <productMenu id="music"
  4861. type="1" >
  4862. </productMenu>
  4863. <productMenu id="musicSharing"
  4864. type="0" >
  4865. </productMenu>
  4866. <productMenu id="deviceSetting"
  4867. type="1"
  4868. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4869. </productMenu>
  4870. <productMenu id="quickGuide"
  4871. type="0"
  4872. url=""
  4873. size="1.12MB" >
  4874. </productMenu>
  4875. <productMenu id="userGuide"
  4876. type="1"
  4877. url=""
  4878. size="2.0MB" >
  4879. </productMenu>
  4880. <productMenu id="videoGuide"
  4881. type="0"
  4882. url=""
  4883. size="3.41MB" >
  4884. </productMenu>
  4885. <productMenu id="volume"
  4886. type="16" >
  4887. </productMenu>
  4888. <productMenu id="battery"
  4889. type="1" >
  4890. </productMenu>
  4891. <productID id="6A12"
  4892. />
  4893. <productGroupable type="0"
  4894. />
  4895. </product>
  4896. <product id="MeshOn"
  4897. name="Mesh ON"
  4898. series="Other"
  4899. latestVersion="1.0.1"
  4900. latestVersionVoicePrompt="0.7"
  4901. show = "1" >
  4902. <productMenu id="protocol"
  4903. type="2" >
  4904. </productMenu>
  4905. <productMenu id="ota"
  4906. type="2" >
  4907. <otaPackages>
  4908. <package
  4909. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4910. size="2945812"
  4911. />
  4912. </otaPackages>
  4913. </productMenu>
  4914. <productMenu id="meshIntercom+"
  4915. type="3"
  4916. url="4" >
  4917. </productMenu>
  4918. <productMenu id="waveIntercom"
  4919. type="0" >
  4920. </productMenu>
  4921. <productMenu id="phone"
  4922. type="0" >
  4923. </productMenu>
  4924. <productMenu id="music"
  4925. type="0" >
  4926. </productMenu>
  4927. <productMenu id="musicSharing"
  4928. type="0" >
  4929. </productMenu>
  4930. <productMenu id="deviceSetting"
  4931. type="1"
  4932. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4933. </productMenu>
  4934. <productMenu id="userGuide"
  4935. type="1"
  4936. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4937. size="2.0MB" >
  4938. </productMenu>
  4939. <productMenu id="bluetoothHeadset"
  4940. type="1"
  4941. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4942. </productMenu>
  4943. <productMenu id="volume"
  4944. type="0" >
  4945. </productMenu>
  4946. <productMenu id="battery"
  4947. type="1" >
  4948. </productMenu>
  4949. <productID id="684E"
  4950. />
  4951. <productGroupable type="0"
  4952. />
  4953. </product>
  4954. <product id="Impulse"
  4955. name="Impulse"
  4956. series="Helmet"
  4957. latestVersion="1.4.1"
  4958. show = "1" >
  4959. <productMenu id="protocol"
  4960. type="2" >
  4961. </productMenu>
  4962. <productMenu id="alexa"
  4963. type="0" >
  4964. </productMenu>
  4965. <productMenu id="ota"
  4966. type="0" >
  4967. </productMenu>
  4968. <productMenu id="wa"
  4969. type="24" >
  4970. </productMenu>
  4971. <productMenu id="manager"
  4972. type="0" >
  4973. </productMenu>
  4974. <productMenu id="sip"
  4975. type="1" >
  4976. </productMenu>
  4977. <productMenu id="led"
  4978. type="1" >
  4979. <productMenuType version="1.0.1"
  4980. type="2"
  4981. />
  4982. <productMenuType version="1.0"
  4983. type="1"
  4984. />
  4985. </productMenu>
  4986. <productMenu id="meshIntercom"
  4987. type="30" >
  4988. <productMenuType version="1.1.1"
  4989. type="20"
  4990. />
  4991. </productMenu>
  4992. <productMenu id="meshIntercom+"
  4993. type="3"
  4994. url="2" >
  4995. <productMenuType version="1.3.9"
  4996. type="2"
  4997. />
  4998. <productMenuURL version="1.1.1"
  4999. url="0"
  5000. />
  5001. </productMenu>
  5002. <productMenu id="waveIntercom"
  5003. type="1" >
  5004. <productMenuType version="1.3.9"
  5005. type="0"
  5006. />
  5007. </productMenu>
  5008. <productMenu id="bluetoothIntercom"
  5009. type="1" >
  5010. </productMenu>
  5011. <productMenu id="phone"
  5012. type="1" >
  5013. </productMenu>
  5014. <productMenu id="music"
  5015. type="1" >
  5016. </productMenu>
  5017. <productMenu id="fmradio"
  5018. type="1" >
  5019. </productMenu>
  5020. <productMenu id="deviceSetting"
  5021. type="1"
  5022. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5023. <productMenuURL version="1.3.9"
  5024. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5025. />
  5026. <productMenuURL version="1.1.1"
  5027. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5028. />
  5029. <productMenuURL version="1.0.4"
  5030. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5031. />
  5032. </productMenu>
  5033. <productMenu id="quickGuide"
  5034. type="0"
  5035. url=""
  5036. size="344KB" >
  5037. </productMenu>
  5038. <productMenu id="userGuide"
  5039. type="1"
  5040. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5041. size="3.41MB" >
  5042. </productMenu>
  5043. <productMenu id="connectGuide"
  5044. type="1"
  5045. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5046. size="1.12MB" >
  5047. </productMenu>
  5048. <productMenu id="volume"
  5049. type="11" >
  5050. </productMenu>
  5051. <productMenu id="battery"
  5052. type="1" >
  5053. </productMenu>
  5054. <productID id="3148"
  5055. />
  5056. <productGroupable type="0"
  5057. />
  5058. </product>
  5059. <product id="Impulse"
  5060. name="Impulse"
  5061. series="Helmet"
  5062. latestVersion="2.0"
  5063. show = "-1" >
  5064. <productMenu id="protocol"
  5065. type="2" >
  5066. </productMenu>
  5067. <productMenu id="alexa"
  5068. type="0" >
  5069. </productMenu>
  5070. <productMenu id="ota"
  5071. type="0" >
  5072. </productMenu>
  5073. <productMenu id="wa"
  5074. type="8" >
  5075. </productMenu>
  5076. <productMenu id="manager"
  5077. type="0" >
  5078. </productMenu>
  5079. <productMenu id="sip"
  5080. type="1" >
  5081. </productMenu>
  5082. <productMenu id="led"
  5083. type="3" >
  5084. </productMenu>
  5085. <productMenu id="meshIntercom"
  5086. type="20" >
  5087. </productMenu>
  5088. <productMenu id="bluetoothIntercom"
  5089. type="1" >
  5090. </productMenu>
  5091. <productMenu id="phone"
  5092. type="1" >
  5093. </productMenu>
  5094. <productMenu id="music"
  5095. type="1" >
  5096. </productMenu>
  5097. <productMenu id="fmradio"
  5098. type="1" >
  5099. </productMenu>
  5100. <productMenu id="deviceSetting"
  5101. type="1"
  5102. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5103. </productMenu>
  5104. <productMenu id="quickGuide"
  5105. type="1"
  5106. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5107. size="344KB" >
  5108. </productMenu>
  5109. <productMenu id="userGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5112. size="3.41MB" >
  5113. </productMenu>
  5114. <productMenu id="volume"
  5115. type="11" >
  5116. </productMenu>
  5117. <productMenu id="battery"
  5118. type="1" >
  5119. </productMenu>
  5120. <productID id="3221"
  5121. />
  5122. <productGroupable type="0"
  5123. />
  5124. </product>
  5125. <product id="Stryker"
  5126. name="Stryker"
  5127. series="Helmet"
  5128. latestVersion="1.4.1"
  5129. show = "1" >
  5130. <productMenu id="protocol"
  5131. type="2" >
  5132. </productMenu>
  5133. <productMenu id="alexa"
  5134. type="0" >
  5135. </productMenu>
  5136. <productMenu id="ota"
  5137. type="0" >
  5138. </productMenu>
  5139. <productMenu id="wa"
  5140. type="40" >
  5141. </productMenu>
  5142. <productMenu id="manager"
  5143. type="0" >
  5144. </productMenu>
  5145. <productMenu id="sip"
  5146. type="1" >
  5147. </productMenu>
  5148. <productMenu id="led"
  5149. type="1" >
  5150. <productMenuType version="1.0.1"
  5151. type="2"
  5152. />
  5153. <productMenuType version="1.0"
  5154. type="1"
  5155. />
  5156. </productMenu>
  5157. <productMenu id="meshIntercom"
  5158. type="30" >
  5159. <productMenuType version="1.1.1"
  5160. type="20"
  5161. />
  5162. </productMenu>
  5163. <productMenu id="meshIntercom+"
  5164. type="3"
  5165. url="2" >
  5166. <productMenuType version="1.3.9"
  5167. type="2"
  5168. />
  5169. <productMenuURL version="1.1.1"
  5170. url="0"
  5171. />
  5172. </productMenu>
  5173. <productMenu id="waveIntercom"
  5174. type="1" >
  5175. <productMenuType version="1.2.9"
  5176. type="0"
  5177. />
  5178. </productMenu>
  5179. <productMenu id="bluetoothIntercom"
  5180. type="1" >
  5181. </productMenu>
  5182. <productMenu id="phone"
  5183. type="1" >
  5184. </productMenu>
  5185. <productMenu id="music"
  5186. type="1" >
  5187. </productMenu>
  5188. <productMenu id="fmradio"
  5189. type="1" >
  5190. </productMenu>
  5191. <productMenu id="deviceSetting"
  5192. type="1"
  5193. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5194. <productMenuURL version="1.3.9"
  5195. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5196. />
  5197. <productMenuURL version="1.1.1"
  5198. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5199. />
  5200. <productMenuURL version="1.0.4"
  5201. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5202. />
  5203. </productMenu>
  5204. <productMenu id="quickGuide"
  5205. type="0"
  5206. url=""
  5207. size="344KB" >
  5208. </productMenu>
  5209. <productMenu id="userGuide"
  5210. type="1"
  5211. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5212. size="3.41MB" >
  5213. </productMenu>
  5214. <productMenu id="connectGuide"
  5215. type="1"
  5216. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5217. size="1.12MB" >
  5218. </productMenu>
  5219. <productMenu id="volume"
  5220. type="11" >
  5221. </productMenu>
  5222. <productMenu id="battery"
  5223. type="1" >
  5224. </productMenu>
  5225. <productID id="3154"
  5226. />
  5227. <productGroupable type="0"
  5228. />
  5229. </product>
  5230. <product id="SRL3Plus"
  5231. name="SRL3 Plus"
  5232. series="60"
  5233. latestVersion="0.9.5"
  5234. latestVersionMesh="0.19"
  5235. latestVersionVoicePrompt="1.2"
  5236. show = "-1" >
  5237. <productMenu id="protocol"
  5238. type="2" >
  5239. </productMenu>
  5240. <productMenu id="ota"
  5241. type="2" >
  5242. <otaLanguages>
  5243. <otaLanguage
  5244. id="0"
  5245. name="English"
  5246. package="0"
  5247. />
  5248. <otaLanguage
  5249. id="0"
  5250. name="French"
  5251. package="1"
  5252. />
  5253. <otaLanguage
  5254. id="0"
  5255. name="Spanish"
  5256. package="2"
  5257. />
  5258. <otaLanguage
  5259. id="0"
  5260. name="Italian"
  5261. package="3"
  5262. />
  5263. <otaLanguage
  5264. id="0"
  5265. name="German"
  5266. package="4"
  5267. />
  5268. <otaLanguage
  5269. id="0"
  5270. name="Dutch"
  5271. package="5"
  5272. />
  5273. <otaLanguage
  5274. id="0"
  5275. name="Russian"
  5276. package="6"
  5277. />
  5278. <otaLanguage
  5279. id="0"
  5280. name="Chinese"
  5281. package="7"
  5282. />
  5283. <otaLanguage
  5284. id="0"
  5285. name="Korean"
  5286. package="8"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="Japanese"
  5291. package="9"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Finnish"
  5296. package="10"
  5297. />
  5298. </otaLanguages>
  5299. <otaPackages>
  5300. <package
  5301. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5302. size="5183988"
  5303. />
  5304. <package
  5305. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5306. size="5183988"
  5307. />
  5308. <package
  5309. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5310. size="5183988"
  5311. />
  5312. <package
  5313. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5314. size="5183988"
  5315. />
  5316. <package
  5317. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5318. size="5183988"
  5319. />
  5320. <package
  5321. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5322. size="5183988"
  5323. />
  5324. <package
  5325. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5326. size="5183988"
  5327. />
  5328. <package
  5329. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5330. size="5183988"
  5331. />
  5332. <package
  5333. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5334. size="5183988"
  5335. />
  5336. <package
  5337. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5338. size="5183988"
  5339. />
  5340. <package
  5341. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5342. size="5183988"
  5343. />
  5344. </otaPackages>
  5345. </productMenu>
  5346. <productMenu id="sip"
  5347. type="1" >
  5348. </productMenu>
  5349. <productMenu id="illusion"
  5350. type="1" >
  5351. </productMenu>
  5352. <productMenu id="meshIntercom+"
  5353. type="3"
  5354. url="2" >
  5355. </productMenu>
  5356. <productMenu id="waveIntercom"
  5357. type="1" >
  5358. </productMenu>
  5359. <productMenu id="bluetoothIntercom"
  5360. type="1"
  5361. url="2" >
  5362. </productMenu>
  5363. <productMenu id="bluetoothIntercomGrouping"
  5364. type="0" >
  5365. </productMenu>
  5366. <productMenu id="fmradio"
  5367. type="1"
  5368. url="1" >
  5369. </productMenu>
  5370. <productMenu id="phone"
  5371. type="1" >
  5372. </productMenu>
  5373. <productMenu id="music"
  5374. type="1" >
  5375. </productMenu>
  5376. <productMenu id="musicSharing"
  5377. type="0" >
  5378. </productMenu>
  5379. <productMenu id="deviceSetting"
  5380. type="1"
  5381. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5382. </productMenu>
  5383. <productMenu id="quickGuide"
  5384. type="0"
  5385. url=""
  5386. size="1.12MB" >
  5387. </productMenu>
  5388. <productMenu id="userGuide"
  5389. type="0"
  5390. url=""
  5391. size="2.0MB" >
  5392. </productMenu>
  5393. <productMenu id="videoGuide"
  5394. type="0"
  5395. url=""
  5396. size="3.41MB" >
  5397. </productMenu>
  5398. <productMenu id="volume"
  5399. type="16" >
  5400. </productMenu>
  5401. <productMenu id="soundMode"
  5402. type="1" >
  5403. </productMenu>
  5404. <productMenu id="battery"
  5405. type="1" >
  5406. </productMenu>
  5407. <productID id="6A08"
  5408. />
  5409. <productGroupable type="0"
  5410. />
  5411. </product>
  5412. <product id="SRL3"
  5413. name="SRL3"
  5414. series="SRL"
  5415. latestVersion="1.5"
  5416. show = "1" >
  5417. <productMenu id="protocol"
  5418. type="2" >
  5419. </productMenu>
  5420. <productMenu id="alexa"
  5421. type="0" >
  5422. </productMenu>
  5423. <productMenu id="ota"
  5424. type="0" >
  5425. </productMenu>
  5426. <productMenu id="wa"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="sip"
  5430. type="1" >
  5431. </productMenu>
  5432. <productMenu id="meshIntercom"
  5433. type="30" >
  5434. </productMenu>
  5435. <productMenu id="meshIntercom+"
  5436. type="3"
  5437. url="2" >
  5438. <productMenuType version="1.3.9"
  5439. type="2"
  5440. />
  5441. </productMenu>
  5442. <productMenu id="waveIntercom"
  5443. type="1" >
  5444. <productMenuType version="1.4.9"
  5445. type="0"
  5446. />
  5447. </productMenu>
  5448. <productMenu id="bluetoothIntercom"
  5449. type="1" >
  5450. </productMenu>
  5451. <productMenu id="phone"
  5452. type="1" >
  5453. </productMenu>
  5454. <productMenu id="music"
  5455. type="1" >
  5456. </productMenu>
  5457. <productMenu id="fmradio"
  5458. type="1" >
  5459. </productMenu>
  5460. <productMenu id="deviceSetting"
  5461. type="1"
  5462. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5463. <productMenuURL version="1.3"
  5464. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5465. />
  5466. </productMenu>
  5467. <productMenu id="quickGuide"
  5468. type="0"
  5469. url=""
  5470. size="344KB" >
  5471. </productMenu>
  5472. <productMenu id="userGuide"
  5473. type="1"
  5474. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5475. size="3.41MB" >
  5476. </productMenu>
  5477. <productMenu id="connectGuide"
  5478. type="1"
  5479. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5480. size="1.12MB" >
  5481. </productMenu>
  5482. <productMenu id="volume"
  5483. type="11" >
  5484. </productMenu>
  5485. <productMenu id="battery"
  5486. type="1" >
  5487. </productMenu>
  5488. <productID id="3219"
  5489. />
  5490. <productGroupable type="0"
  5491. />
  5492. </product>
  5493. <product id="SRL_Mesh"
  5494. name="SRL-Mesh"
  5495. series="SRL"
  5496. latestVersion="1.7.1"
  5497. show = "1" >
  5498. <productMenu id="protocol"
  5499. type="2" >
  5500. </productMenu>
  5501. <productMenu id="alexa"
  5502. type="0" >
  5503. </productMenu>
  5504. <productMenu id="ota"
  5505. type="0" >
  5506. </productMenu>
  5507. <productMenu id="wa"
  5508. type="1" >
  5509. </productMenu>
  5510. <productMenu id="sip"
  5511. type="1" >
  5512. </productMenu>
  5513. <productMenu id="meshIntercom"
  5514. type="30" >
  5515. <productMenuType version="1.1.1"
  5516. type="20"
  5517. />
  5518. </productMenu>
  5519. <productMenu id="meshIntercom+"
  5520. type="3"
  5521. url="2" >
  5522. <productMenuType version="1.5.9"
  5523. type="2"
  5524. />
  5525. <productMenuURL version="1.1.1"
  5526. url="0"
  5527. />
  5528. </productMenu>
  5529. <productMenu id="waveIntercom"
  5530. type="1" >
  5531. <productMenuType version="1.6.9"
  5532. type="0"
  5533. />
  5534. </productMenu>
  5535. <productMenu id="bluetoothIntercom"
  5536. type="1" >
  5537. </productMenu>
  5538. <productMenu id="phone"
  5539. type="1" >
  5540. </productMenu>
  5541. <productMenu id="music"
  5542. type="1" >
  5543. </productMenu>
  5544. <productMenu id="fmradio"
  5545. type="1" >
  5546. </productMenu>
  5547. <productMenu id="deviceSetting"
  5548. type="1"
  5549. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5550. <productMenuURL version="1.5"
  5551. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5552. />
  5553. <productMenuURL version="1.1.1"
  5554. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5555. />
  5556. <productMenuURL version="1.0.3"
  5557. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5558. />
  5559. </productMenu>
  5560. <productMenu id="quickGuide"
  5561. type="0"
  5562. url=""
  5563. size="344KB" >
  5564. </productMenu>
  5565. <productMenu id="userGuide"
  5566. type="1"
  5567. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5568. size="3.41MB" >
  5569. </productMenu>
  5570. <productMenu id="connectGuide"
  5571. type="1"
  5572. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5573. size="1.12MB" >
  5574. </productMenu>
  5575. <productMenu id="volume"
  5576. type="11" >
  5577. </productMenu>
  5578. <productMenu id="battery"
  5579. type="1" >
  5580. </productMenu>
  5581. <productID id="3216"
  5582. />
  5583. <productGroupable type="0"
  5584. />
  5585. </product>
  5586. <product id="SRL_EXT"
  5587. name="SRL-EXT"
  5588. series="SRL"
  5589. latestVersion="1.7.1"
  5590. show = "1" >
  5591. <productMenu id="protocol"
  5592. type="2" >
  5593. </productMenu>
  5594. <productMenu id="alexa"
  5595. type="0" >
  5596. </productMenu>
  5597. <productMenu id="ota"
  5598. type="0" >
  5599. </productMenu>
  5600. <productMenu id="wa"
  5601. type="0" >
  5602. </productMenu>
  5603. <productMenu id="sip"
  5604. type="1" >
  5605. </productMenu>
  5606. <productMenu id="meshIntercom"
  5607. type="30" >
  5608. <productMenuType version="1.1.1"
  5609. type="20"
  5610. />
  5611. </productMenu>
  5612. <productMenu id="meshIntercom+"
  5613. type="3"
  5614. url="2" >
  5615. <productMenuType version="1.5.9"
  5616. type="2"
  5617. />
  5618. <productMenuURL version="1.1.1"
  5619. url="0"
  5620. />
  5621. </productMenu>
  5622. <productMenu id="waveIntercom"
  5623. type="1" >
  5624. <productMenuType version="1.6.9"
  5625. type="0"
  5626. />
  5627. </productMenu>
  5628. <productMenu id="bluetoothIntercom"
  5629. type="1" >
  5630. </productMenu>
  5631. <productMenu id="phone"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="music"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="fmradio"
  5638. type="1" >
  5639. </productMenu>
  5640. <productMenu id="deviceSetting"
  5641. type="1"
  5642. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5643. <productMenuURL version="1.5"
  5644. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5645. />
  5646. <productMenuURL version="1.1.1"
  5647. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5648. />
  5649. <productMenuURL version="1.0.3"
  5650. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5651. />
  5652. </productMenu>
  5653. <productMenu id="quickGuide"
  5654. type="0"
  5655. url=""
  5656. size="344KB" >
  5657. </productMenu>
  5658. <productMenu id="userGuide"
  5659. type="1"
  5660. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5661. size="3.41MB" >
  5662. </productMenu>
  5663. <productMenu id="connectGuide"
  5664. type="1"
  5665. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5666. size="1.12MB" >
  5667. </productMenu>
  5668. <productMenu id="volume"
  5669. type="11" >
  5670. </productMenu>
  5671. <productMenu id="battery"
  5672. type="1" >
  5673. </productMenu>
  5674. <productID id="3212"
  5675. />
  5676. <productGroupable type="0"
  5677. />
  5678. </product>
  5679. <product id="SRL2"
  5680. name="SRL2"
  5681. series="SRL"
  5682. latestVersion="1.0.9"
  5683. show = "1" >
  5684. <productMenu id="protocol"
  5685. type="0">
  5686. </productMenu>
  5687. <productMenu id="sip"
  5688. type="1" >
  5689. </productMenu>
  5690. <productMenu id="bluetoothIntercom"
  5691. type="1" >
  5692. </productMenu>
  5693. <productMenu id="intercomSetting"
  5694. type="1" >
  5695. </productMenu>
  5696. <productMenu id="phone"
  5697. type="2" >
  5698. </productMenu>
  5699. <productMenu id="fmradio"
  5700. type="3" >
  5701. </productMenu>
  5702. <productMenu id="deviceSetting"
  5703. type="1"
  5704. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5705. </productMenu>
  5706. <productMenu id="quickGuide"
  5707. type="1"
  5708. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5709. size="846KB" >
  5710. </productMenu>
  5711. <productMenu id="userGuide"
  5712. type="1"
  5713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5714. size="1.18MB" >
  5715. </productMenu>
  5716. <productMenu id="connectGuide"
  5717. type="1"
  5718. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5719. size="1.12MB" >
  5720. </productMenu>
  5721. <productID id="4530"
  5722. />
  5723. <productGroupable type="1"
  5724. />
  5725. </product>
  5726. <product id="Neotec2"
  5727. name="SRL Neotec2"
  5728. series="SRL"
  5729. latestVersion="1.1.5"
  5730. show = "1" >
  5731. <productMenu id="protocol"
  5732. type="0">
  5733. </productMenu>
  5734. <productMenu id="sip"
  5735. type="1" >
  5736. </productMenu>
  5737. <productMenu id="bluetoothIntercom"
  5738. type="1" >
  5739. </productMenu>
  5740. <productMenu id="intercomSetting"
  5741. type="1" >
  5742. </productMenu>
  5743. <productMenu id="phone"
  5744. type="2" >
  5745. </productMenu>
  5746. <productMenu id="fmradio"
  5747. type="3" >
  5748. </productMenu>
  5749. <productMenu id="deviceSetting"
  5750. type="1"
  5751. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5752. </productMenu>
  5753. <productMenu id="quickGuide"
  5754. type="0"
  5755. url=""
  5756. size="796KB" >
  5757. </productMenu>
  5758. <productMenu id="userGuide"
  5759. type="1"
  5760. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5761. size="1.90MB" >
  5762. </productMenu>
  5763. <productMenu id="connectGuide"
  5764. type="1"
  5765. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5766. size="1.12MB" >
  5767. </productMenu>
  5768. <productID id="4510"
  5769. />
  5770. <productGroupable type="1"
  5771. />
  5772. </product>
  5773. <product id="SPIDERST2ANC"
  5774. name="SPIDER ST2 ANC"
  5775. series="SPIDER"
  5776. latestVersion="0.5.1"
  5777. latestVersionVoicePrompt="0.2"
  5778. latestVersionMesh="0.8"
  5779. show = "-1" >
  5780. <productMenu id="protocol"
  5781. type="2" >
  5782. </productMenu>
  5783. <productMenu id="ota"
  5784. type="0" >
  5785. <otaPackages>
  5786. <package
  5787. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5788. size="2945812"
  5789. />
  5790. </otaPackages>
  5791. </productMenu>
  5792. <productMenu id="wa"
  5793. type="0" >
  5794. </productMenu>
  5795. <productMenu id="led"
  5796. type="1" >
  5797. </productMenu>
  5798. <productMenu id="meshIntercom"
  5799. type="30" >
  5800. </productMenu>
  5801. <productMenu id="fmradio"
  5802. type="1" >
  5803. </productMenu>
  5804. <productMenu id="phone"
  5805. type="1" >
  5806. </productMenu>
  5807. <productMenu id="music"
  5808. type="1" >
  5809. </productMenu>
  5810. <productMenu id="musicSharing"
  5811. type="0" >
  5812. </productMenu>
  5813. <productMenu id="deviceSetting"
  5814. type="1"
  5815. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5816. </productMenu>
  5817. <productMenu id="quickGuide"
  5818. type="1"
  5819. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5820. size="1.12MB" >
  5821. </productMenu>
  5822. <productMenu id="userGuide"
  5823. type="1"
  5824. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5825. size="2.0MB" >
  5826. </productMenu>
  5827. <productMenu id="videoGuide"
  5828. type="1"
  5829. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5830. size="3.41MB" >
  5831. </productMenu>
  5832. <productMenu id="volume"
  5833. type="12" >
  5834. </productMenu>
  5835. <productMenu id="battery"
  5836. type="1" >
  5837. </productMenu>
  5838. <productID id="6A00"
  5839. />
  5840. <productGroupable type="0"
  5841. />
  5842. </product>
  5843. <product id="SPIDER_ST1"
  5844. name="SPIDER ST1"
  5845. series="SPIDER"
  5846. latestVersion="2.5.3"
  5847. latestVersionVoicePrompt="1.6"
  5848. show = "1" >
  5849. <productMenu id="protocol"
  5850. type="2" >
  5851. </productMenu>
  5852. <productMenu id="alexa"
  5853. type="0" >
  5854. </productMenu>
  5855. <productMenu id="ota"
  5856. type="2" >
  5857. <productMenuType version="2.1.9"
  5858. type="0"
  5859. />
  5860. <otaPackages>
  5861. <package
  5862. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5863. size="2945812"
  5864. />
  5865. </otaPackages>
  5866. </productMenu>
  5867. <productMenu id="wa"
  5868. type="0" >
  5869. </productMenu>
  5870. <productMenu id="meshIntercom"
  5871. type="30" >
  5872. <productMenuType version="2.1.1"
  5873. type="20"
  5874. />
  5875. </productMenu>
  5876. <productMenu id="meshIntercom+"
  5877. type="3"
  5878. url="2" >
  5879. <productMenuType version="2.2.9"
  5880. type="2"
  5881. />
  5882. <productMenuURL version="2.1.1"
  5883. url="0"
  5884. />
  5885. </productMenu>
  5886. <productMenu id="waveIntercom"
  5887. type="1" >
  5888. <productMenuType version="2.3.9"
  5889. type="0"
  5890. />
  5891. </productMenu>
  5892. <productMenu id="phone"
  5893. type="1" >
  5894. </productMenu>
  5895. <productMenu id="music"
  5896. type="1" >
  5897. </productMenu>
  5898. <productMenu id="musicSharing"
  5899. type="0" >
  5900. </productMenu>
  5901. <productMenu id="deviceSetting"
  5902. type="1"
  5903. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5904. <productMenuURL version="2.4.9"
  5905. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5906. />
  5907. <productMenuURL version="2.2.2"
  5908. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5909. />
  5910. <productMenuURL version="2.1.1"
  5911. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5912. />
  5913. </productMenu>
  5914. <productMenu id="quickGuide"
  5915. type="0"
  5916. url=""
  5917. size="1.12MB" >
  5918. </productMenu>
  5919. <productMenu id="userGuide"
  5920. type="1"
  5921. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5922. size="2.0MB" >
  5923. </productMenu>
  5924. <productMenu id="videoGuide"
  5925. type="1"
  5926. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5927. size="3.41MB" >
  5928. </productMenu>
  5929. <productMenu id="connectGuide"
  5930. type="1"
  5931. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5932. size="1.12MB" >
  5933. </productMenu>
  5934. <productMenu id="volume"
  5935. type="12" >
  5936. </productMenu>
  5937. <productMenu id="volume+"
  5938. type="2"
  5939. url="0x2000" >
  5940. </productMenu>
  5941. <productMenu id="battery"
  5942. type="1" >
  5943. </productMenu>
  5944. <productID id="6800"
  5945. />
  5946. <productGroupable type="0"
  5947. />
  5948. </product>
  5949. <product id="SPIDER_ST1"
  5950. name="SPIDER ST1"
  5951. series="SPIDER"
  5952. latestVersion="1.2.2"
  5953. show = "-1" >
  5954. <productMenu id="protocol"
  5955. type="2" >
  5956. </productMenu>
  5957. <productMenu id="alexa"
  5958. type="0" >
  5959. </productMenu>
  5960. <productMenu id="ota"
  5961. type="0" >
  5962. </productMenu>
  5963. <productMenu id="wa"
  5964. type="0" >
  5965. </productMenu>
  5966. <productMenu id="meshIntercom"
  5967. type="20" >
  5968. </productMenu>
  5969. <productMenu id="phone"
  5970. type="1" >
  5971. </productMenu>
  5972. <productMenu id="music"
  5973. type="1" >
  5974. </productMenu>
  5975. <productMenu id="deviceSetting"
  5976. type="1"
  5977. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5978. </productMenu>
  5979. <productMenu id="quickGuide"
  5980. type="0"
  5981. url=""
  5982. size="1.12MB" >
  5983. </productMenu>
  5984. <productMenu id="userGuide"
  5985. type="1"
  5986. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5987. size="2.0MB" >
  5988. </productMenu>
  5989. <productMenu id="videoGuide"
  5990. type="1"
  5991. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5992. size="3.41MB" >
  5993. </productMenu>
  5994. <productMenu id="volume"
  5995. type="13" >
  5996. <productMenuType version="1.1.6"
  5997. type="14"/>
  5998. </productMenu>
  5999. <productMenu id="battery"
  6000. type="1" >
  6001. </productMenu>
  6002. <productID id="6510"
  6003. />
  6004. <productGroupable type="0"
  6005. />
  6006. </product>
  6007. <product id="SPIDER_RT1"
  6008. name="SPIDER RT1"
  6009. series="SPIDER"
  6010. latestVersion="2.5.3"
  6011. latestVersionVoicePrompt="1.6"
  6012. show = "1" >
  6013. <productMenu id="protocol"
  6014. type="2" >
  6015. </productMenu>
  6016. <productMenu id="alexa"
  6017. type="0" >
  6018. </productMenu>
  6019. <productMenu id="ota"
  6020. type="2" >
  6021. <productMenuType version="2.1.9"
  6022. type="0"
  6023. />
  6024. <otaPackages>
  6025. <package
  6026. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6027. size="2945812"
  6028. />
  6029. </otaPackages>
  6030. </productMenu>
  6031. <productMenu id="wa"
  6032. type="0" >
  6033. </productMenu>
  6034. <productMenu id="meshIntercom"
  6035. type="30" >
  6036. <productMenuType version="2.1.1"
  6037. type="20"
  6038. />
  6039. </productMenu>
  6040. <productMenu id="meshIntercom+"
  6041. type="3"
  6042. url="2" >
  6043. <productMenuType version="2.2.9"
  6044. type="2"
  6045. />
  6046. <productMenuURL version="2.1.1"
  6047. url="0"
  6048. />
  6049. </productMenu>
  6050. <productMenu id="waveIntercom"
  6051. type="1" >
  6052. <productMenuType version="2.3.9"
  6053. type="0"
  6054. />
  6055. </productMenu>
  6056. <productMenu id="phone"
  6057. type="1" >
  6058. </productMenu>
  6059. <productMenu id="music"
  6060. type="1" >
  6061. </productMenu>
  6062. <productMenu id="musicSharing"
  6063. type="0" >
  6064. </productMenu>
  6065. <productMenu id="deviceSetting"
  6066. type="1"
  6067. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6068. <productMenuURL version="2.4.9"
  6069. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6070. />
  6071. <productMenuURL version="2.2.2"
  6072. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6073. />
  6074. <productMenuURL version="2.1.1"
  6075. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6076. />
  6077. </productMenu>
  6078. <productMenu id="quickGuide"
  6079. type="0"
  6080. url=""
  6081. size="1.12MB" >
  6082. </productMenu>
  6083. <productMenu id="userGuide"
  6084. type="1"
  6085. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6086. size="2.0MB" >
  6087. </productMenu>
  6088. <productMenu id="videoGuide"
  6089. type="1"
  6090. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6091. size="3.41MB" >
  6092. </productMenu>
  6093. <productMenu id="connectGuide"
  6094. type="1"
  6095. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6096. size="1.12MB" >
  6097. </productMenu>
  6098. <productMenu id="volume"
  6099. type="12" >
  6100. </productMenu>
  6101. <productMenu id="volume+"
  6102. type="2"
  6103. url="0x2000" >
  6104. </productMenu>
  6105. <productMenu id="battery"
  6106. type="1" >
  6107. </productMenu>
  6108. <productID id="6810"
  6109. />
  6110. <productGroupable type="0"
  6111. />
  6112. </product>
  6113. <product id="SPIDER_RT1"
  6114. name="SPIDER RT1"
  6115. series="SPIDER"
  6116. latestVersion="1.2.2"
  6117. show = "-1" >
  6118. <productMenu id="protocol"
  6119. type="2" >
  6120. </productMenu>
  6121. <productMenu id="alexa"
  6122. type="0" >
  6123. </productMenu>
  6124. <productMenu id="ota"
  6125. type="0" >
  6126. </productMenu>
  6127. <productMenu id="wa"
  6128. type="0" >
  6129. </productMenu>
  6130. <productMenu id="meshIntercom"
  6131. type="20" >
  6132. </productMenu>
  6133. <productMenu id="phone"
  6134. type="1" >
  6135. </productMenu>
  6136. <productMenu id="music"
  6137. type="1" >
  6138. </productMenu>
  6139. <productMenu id="deviceSetting"
  6140. type="1"
  6141. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6142. </productMenu>
  6143. <productMenu id="quickGuide"
  6144. type="0"
  6145. url=""
  6146. size="1.32MB" >
  6147. </productMenu>
  6148. <productMenu id="userGuide"
  6149. type="1"
  6150. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6151. size="1.79MB" >
  6152. </productMenu>
  6153. <productMenu id="videoGuide"
  6154. type="1"
  6155. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6156. size="3.41MB" >
  6157. </productMenu>
  6158. <productMenu id="volume"
  6159. type="13" >
  6160. <productMenuType version="1.1.6"
  6161. type="14"/>
  6162. </productMenu>
  6163. <productMenu id="battery"
  6164. type="1" >
  6165. </productMenu>
  6166. <productID id="6500"
  6167. />
  6168. <productGroupable type="0"
  6169. />
  6170. </product>
  6171. <product id="30K"
  6172. name="30K"
  6173. series="30"
  6174. latestVersion="4.5.1"
  6175. show = "1" >
  6176. <productMenu id="protocol"
  6177. type="2" >
  6178. </productMenu>
  6179. <productMenu id="alexa"
  6180. type="0" >
  6181. </productMenu>
  6182. <productMenu id="wa"
  6183. type="1" >
  6184. </productMenu>
  6185. <productMenu id="sip"
  6186. type="1" >
  6187. </productMenu>
  6188. <productMenu id="meshIntercom"
  6189. type="30" >
  6190. <productMenuType version="4.0.4"
  6191. type="20"
  6192. />
  6193. </productMenu>
  6194. <productMenu id="meshIntercom+"
  6195. type="3"
  6196. url="2" >
  6197. <productMenuType version="4.3.9"
  6198. type="2"
  6199. />
  6200. <productMenuURL version="4.0.4"
  6201. url="0"
  6202. />
  6203. </productMenu>
  6204. <productMenu id="waveIntercom"
  6205. type="1" >
  6206. <productMenuType version="4.4.9"
  6207. type="0"
  6208. />
  6209. </productMenu>
  6210. <productMenu id="bluetoothIntercom"
  6211. type="1" >
  6212. </productMenu>
  6213. <productMenu id="phone"
  6214. type="1" >
  6215. </productMenu>
  6216. <productMenu id="music"
  6217. type="1" >
  6218. </productMenu>
  6219. <productMenu id="fmradio"
  6220. type="1" >
  6221. </productMenu>
  6222. <productMenu id="deviceSetting"
  6223. type="1"
  6224. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6225. <productMenuURL version="4.3"
  6226. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6227. />
  6228. <productMenuURL version="4.2"
  6229. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6230. />
  6231. <productMenuURL version="4.0.4"
  6232. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6233. />
  6234. </productMenu>
  6235. <productMenu id="quickGuide"
  6236. type="0"
  6237. url=""
  6238. size="934KB" >
  6239. </productMenu>
  6240. <productMenu id="userGuide"
  6241. type="1"
  6242. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6243. size="1.14MB" >
  6244. </productMenu>
  6245. <productMenu id="connectGuide"
  6246. type="1"
  6247. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6248. size="1.12MB" >
  6249. </productMenu>
  6250. <productMenu id="volume"
  6251. type="11" >
  6252. </productMenu>
  6253. <productMenu id="battery"
  6254. type="1" >
  6255. </productMenu>
  6256. <productID id="3211"
  6257. />
  6258. <productGroupable type="0"
  6259. />
  6260. </product>
  6261. <product id="30K"
  6262. name="30K"
  6263. series="30"
  6264. latestVersion="3.5"
  6265. show = "-1" >
  6266. <productMenu id="protocol"
  6267. type="1"
  6268. url="0">
  6269. </productMenu>
  6270. <productMenu id="wa"
  6271. type="7" >
  6272. </productMenu>
  6273. <productMenu id="sip"
  6274. type="1" >
  6275. </productMenu>
  6276. <productMenu id="meshIntercom"
  6277. type="20" >
  6278. <productMenuType version="2.9.9"
  6279. type="10"
  6280. />
  6281. </productMenu>
  6282. <productMenu id="meshIntercom+"
  6283. type="3"
  6284. url="2" >
  6285. <productMenuType version="3.4.9"
  6286. type="2"
  6287. />
  6288. <productMenuType version="2.9.9"
  6289. type="1"
  6290. />
  6291. <productMenuURL version="3.3.1"
  6292. url="0"
  6293. />
  6294. </productMenu>
  6295. <productMenu id="bluetoothIntercom"
  6296. type="1" >
  6297. </productMenu>
  6298. <productMenu id="phone"
  6299. type="1" >
  6300. </productMenu>
  6301. <productMenu id="music"
  6302. type="1" >
  6303. </productMenu>
  6304. <productMenu id="fmradio"
  6305. type="1" >
  6306. </productMenu>
  6307. <productMenu id="deviceSetting"
  6308. type="1"
  6309. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6310. <productMenuURL version="3.4.9"
  6311. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6312. />
  6313. <productMenuURL version="3.3.1"
  6314. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6315. />
  6316. <productMenuURL version="3.0.1"
  6317. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6318. />
  6319. <productMenuURL version="2.3.1"
  6320. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6321. />
  6322. <productMenuURL version="2.0"
  6323. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6324. />
  6325. <productMenuURL version="1.0.3"
  6326. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6327. />
  6328. </productMenu>
  6329. <productMenu id="quickGuide"
  6330. type="0"
  6331. url=""
  6332. size="1.06MB" >
  6333. </productMenu>
  6334. <productMenu id="userGuide"
  6335. type="1"
  6336. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6337. size="3.15MB" >
  6338. </productMenu>
  6339. <productMenu id="volume"
  6340. type="1" >
  6341. </productMenu>
  6342. <productID id="3110"
  6343. />
  6344. <productGroupable type="0"
  6345. />
  6346. </product>
  6347. <product id="FURY"
  6348. name="FURY"
  6349. series="Helmet"
  6350. latestVersion="1.0"
  6351. show = "-1" >
  6352. <productMenu id="protocol"
  6353. type="2" >
  6354. </productMenu>
  6355. <productMenu id="alexa"
  6356. type="0" >
  6357. </productMenu>
  6358. <productMenu id="ota"
  6359. type="0" >
  6360. </productMenu>
  6361. <productMenu id="wa"
  6362. type="0" >
  6363. </productMenu>
  6364. <productMenu id="meshIntercom"
  6365. type="20" >
  6366. </productMenu>
  6367. <productMenu id="phone"
  6368. type="1" >
  6369. </productMenu>
  6370. <productMenu id="music"
  6371. type="1" >
  6372. </productMenu>
  6373. <productMenu id="fmradio"
  6374. type="1" >
  6375. </productMenu>
  6376. <productMenu id="deviceSetting"
  6377. type="1"
  6378. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6379. </productMenu>
  6380. <productMenu id="quickGuide"
  6381. type="1"
  6382. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6383. size="1.12MB" >
  6384. </productMenu>
  6385. <productMenu id="userGuide"
  6386. type="1"
  6387. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6388. size="2.0MB" >
  6389. </productMenu>
  6390. <productMenu id="volume"
  6391. type="13" >
  6392. </productMenu>
  6393. <productMenu id="battery"
  6394. type="1" >
  6395. </productMenu>
  6396. <productID id="5552"
  6397. />
  6398. <productGroupable type="0"
  6399. />
  6400. </product>
  6401. <product id="MomentumM"
  6402. name="Momentum EVO"
  6403. series="Helmet"
  6404. latestVersion="2.1.2"
  6405. show = "1" >
  6406. <productMenu id="protocol"
  6407. type="1"
  6408. url="0">
  6409. </productMenu>
  6410. <productMenu id="wa"
  6411. type="3" >
  6412. </productMenu>
  6413. <productMenu id="sip"
  6414. type="1" >
  6415. </productMenu>
  6416. <productMenu id="meshIntercom"
  6417. type="20" >
  6418. <productMenuType version="1.9.9"
  6419. type="10"
  6420. />
  6421. </productMenu>
  6422. <productMenu id="bluetoothIntercom"
  6423. type="1" >
  6424. </productMenu>
  6425. <productMenu id="phone"
  6426. type="1" >
  6427. </productMenu>
  6428. <productMenu id="music"
  6429. type="1" >
  6430. </productMenu>
  6431. <productMenu id="fmradio"
  6432. type="1" >
  6433. </productMenu>
  6434. <productMenu id="deviceSetting"
  6435. type="1"
  6436. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6437. <productMenuURL version="1.0.1"
  6438. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6439. />
  6440. </productMenu>
  6441. <productMenu id="quickGuide"
  6442. type="1"
  6443. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6444. size="1.06MB" >
  6445. </productMenu>
  6446. <productMenu id="userGuide"
  6447. type="1"
  6448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6449. size="3.15MB" >
  6450. </productMenu>
  6451. <productMenu id="connectGuide"
  6452. type="1"
  6453. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6454. size="1.12MB" >
  6455. </productMenu>
  6456. <productMenu id="volume"
  6457. type="2" >
  6458. </productMenu>
  6459. <productID id="3116"
  6460. />
  6461. <productGroupable type="0"
  6462. />
  6463. </product>
  6464. <product id="Momentum"
  6465. name="Momentum"
  6466. series="Helmet"
  6467. latestVersion="1.0.9"
  6468. show = "1" >
  6469. <productMenu id="protocol"
  6470. type="0">
  6471. </productMenu>
  6472. <productMenu id="sip"
  6473. type="1" >
  6474. </productMenu>
  6475. <productMenu id="bluetoothIntercom"
  6476. type="1" >
  6477. </productMenu>
  6478. <productMenu id="intercomSetting"
  6479. type="1" >
  6480. </productMenu>
  6481. <productMenu id="phone"
  6482. type="2" >
  6483. </productMenu>
  6484. <productMenu id="fmradio"
  6485. type="3" >
  6486. </productMenu>
  6487. <productMenu id="deviceSetting"
  6488. type="1"
  6489. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6490. </productMenu>
  6491. <productMenu id="quickGuide"
  6492. type="1"
  6493. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6494. size="796KB" >
  6495. </productMenu>
  6496. <productMenu id="userGuide"
  6497. type="1"
  6498. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6499. size="1.90MB" >
  6500. </productMenu>
  6501. <productMenu id="connectGuide"
  6502. type="1"
  6503. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6504. size="1.12MB" >
  6505. </productMenu>
  6506. <productID id="4310"
  6507. />
  6508. <productGroupable type="1"
  6509. />
  6510. </product>
  6511. <product id="Momentum_Pro"
  6512. name="Momentum Pro"
  6513. series="Helmet"
  6514. latestVersion="1.0.6"
  6515. show = "1" >
  6516. <productMenu id="protocol"
  6517. type="0">
  6518. </productMenu>
  6519. <productMenu id="sip"
  6520. type="1" >
  6521. </productMenu>
  6522. <productMenu id="bluetoothIntercom"
  6523. type="1" >
  6524. </productMenu>
  6525. <productMenu id="intercomSetting"
  6526. type="1" >
  6527. </productMenu>
  6528. <productMenu id="phone"
  6529. type="2" >
  6530. </productMenu>
  6531. <productMenu id="fmradio"
  6532. type="3" >
  6533. </productMenu>
  6534. <productMenu id="deviceSetting"
  6535. type="1"
  6536. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6537. </productMenu>
  6538. <productMenu id="quickGuide"
  6539. type="1"
  6540. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6541. size="796KB" >
  6542. </productMenu>
  6543. <productMenu id="userGuide"
  6544. type="1"
  6545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6546. size="1.90MB" >
  6547. </productMenu>
  6548. <productMenu id="connectGuide"
  6549. type="1"
  6550. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6551. size="1.12MB" >
  6552. </productMenu>
  6553. <productID id="4330"
  6554. />
  6555. <productGroupable type="1"
  6556. />
  6557. </product>
  6558. <product id="Momentum_INC"
  6559. name="Momentum INC"
  6560. series="Helmet"
  6561. latestVersion="1.0.7"
  6562. show = "1" >
  6563. <productMenu id="protocol"
  6564. type="0">
  6565. </productMenu>
  6566. <productMenu id="sip"
  6567. type="1" >
  6568. </productMenu>
  6569. <productMenu id="bluetoothIntercom"
  6570. type="1" >
  6571. </productMenu>
  6572. <productMenu id="intercomSetting"
  6573. type="1" >
  6574. </productMenu>
  6575. <productMenu id="phone"
  6576. type="2" >
  6577. </productMenu>
  6578. <productMenu id="fmradio"
  6579. type="3" >
  6580. </productMenu>
  6581. <productMenu id="deviceSetting"
  6582. type="1"
  6583. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6584. </productMenu>
  6585. <productMenu id="quickGuide"
  6586. type="1"
  6587. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6588. size="794KB" >
  6589. </productMenu>
  6590. <productMenu id="userGuide"
  6591. type="1"
  6592. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6593. size="1.53MB" >
  6594. </productMenu>
  6595. <productMenu id="connectGuide"
  6596. type="1"
  6597. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6598. size="1.12MB" >
  6599. </productMenu>
  6600. <productID id="4410"
  6601. />
  6602. <productGroupable type="1"
  6603. />
  6604. </product>
  6605. <product id="Momentum_INCP"
  6606. name="Momentum INC Pro"
  6607. series="Helmet"
  6608. latestVersion="1.0.4"
  6609. show = "1" >
  6610. <productMenu id="protocol"
  6611. type="0">
  6612. </productMenu>
  6613. <productMenu id="sip"
  6614. type="1" >
  6615. </productMenu>
  6616. <productMenu id="bluetoothIntercom"
  6617. type="1" >
  6618. </productMenu>
  6619. <productMenu id="intercomSetting"
  6620. type="1" >
  6621. </productMenu>
  6622. <productMenu id="phone"
  6623. type="2" >
  6624. </productMenu>
  6625. <productMenu id="fmradio"
  6626. type="3" >
  6627. </productMenu>
  6628. <productMenu id="deviceSetting"
  6629. type="1"
  6630. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6631. </productMenu>
  6632. <productMenu id="quickGuide"
  6633. type="1"
  6634. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6635. size="794KB" >
  6636. </productMenu>
  6637. <productMenu id="userGuide"
  6638. type="1"
  6639. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6640. size="1.53MB" >
  6641. </productMenu>
  6642. <productMenu id="connectGuide"
  6643. type="1"
  6644. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6645. size="1.12MB" >
  6646. </productMenu>
  6647. <productID id="4430"
  6648. />
  6649. <productGroupable type="1"
  6650. />
  6651. </product>
  6652. <product id="Momentum_Lite"
  6653. name="Momentum Lite"
  6654. series="Helmet"
  6655. latestVersion="2.0.3"
  6656. show = "1" >
  6657. <productMenu id="protocol"
  6658. type="0">
  6659. </productMenu>
  6660. <productMenu id="sip"
  6661. type="1" >
  6662. </productMenu>
  6663. <productMenu id="bluetoothIntercom"
  6664. type="1" >
  6665. </productMenu>
  6666. <productMenu id="phone"
  6667. type="2" >
  6668. </productMenu>
  6669. <productMenu id="fmradio"
  6670. type="3" >
  6671. </productMenu>
  6672. <productMenu id="deviceSetting"
  6673. type="1"
  6674. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6675. <productMenuURL version="1.1"
  6676. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6677. />
  6678. </productMenu>
  6679. <productMenu id="quickGuide"
  6680. type="1"
  6681. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6682. size="790KB" >
  6683. </productMenu>
  6684. <productMenu id="userGuide"
  6685. type="1"
  6686. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6687. size="1.42MB" >
  6688. </productMenu>
  6689. <productMenu id="connectGuide"
  6690. type="1"
  6691. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6692. size="1.12MB" >
  6693. </productMenu>
  6694. <productID id="5526"
  6695. />
  6696. <productGroupable type="0"
  6697. />
  6698. </product>
  6699. <product id="OUTRUSHM"
  6700. name="OUTRUSH M"
  6701. series="Helmet"
  6702. latestVersion="1.0"
  6703. show = "-1" >
  6704. <productMenu id="protocol"
  6705. type="2" >
  6706. </productMenu>
  6707. <productMenu id="alexa"
  6708. type="0" >
  6709. </productMenu>
  6710. <productMenu id="ota"
  6711. type="0" >
  6712. </productMenu>
  6713. <productMenu id="wa"
  6714. type="0" >
  6715. </productMenu>
  6716. <productMenu id="meshIntercom"
  6717. type="30" >
  6718. </productMenu>
  6719. <productMenu id="phone"
  6720. type="1" >
  6721. </productMenu>
  6722. <productMenu id="music"
  6723. type="1" >
  6724. </productMenu>
  6725. <productMenu id="fmradio"
  6726. type="1" >
  6727. </productMenu>
  6728. <productMenu id="deviceSetting"
  6729. type="1"
  6730. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6731. </productMenu>
  6732. <productMenu id="quickGuide"
  6733. type="1"
  6734. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6735. size="1.12MB" >
  6736. </productMenu>
  6737. <productMenu id="userGuide"
  6738. type="1"
  6739. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6740. size="2.0MB" >
  6741. </productMenu>
  6742. <productMenu id="volume"
  6743. type="13" >
  6744. </productMenu>
  6745. <productMenu id="battery"
  6746. type="1" >
  6747. </productMenu>
  6748. <productID id="5600"
  6749. />
  6750. <productGroupable type="0"
  6751. />
  6752. </product>
  6753. <product id="ProRideEVO"
  6754. name="ProRide EVO"
  6755. series="Helmet"
  6756. latestVersion="1.1.2"
  6757. show = "1" >
  6758. <productMenu id="protocol"
  6759. type="0">
  6760. </productMenu>
  6761. <productMenu id="sip"
  6762. type="1" >
  6763. </productMenu>
  6764. <productMenu id="bluetoothIntercom"
  6765. type="1" >
  6766. </productMenu>
  6767. <productMenu id="phone"
  6768. type="2" >
  6769. </productMenu>
  6770. <productMenu id="fmradio"
  6771. type="3" >
  6772. </productMenu>
  6773. <productMenu id="deviceSetting"
  6774. type="1"
  6775. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6776. </productMenu>
  6777. <productMenu id="userGuide"
  6778. type="1"
  6779. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6780. size="778KB" >
  6781. </productMenu>
  6782. <productMenu id="connectGuide"
  6783. type="1"
  6784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6785. size="1.12MB" >
  6786. </productMenu>
  6787. <productID id="5426"
  6788. />
  6789. <productGroupable type="0"
  6790. />
  6791. </product>
  6792. <product id="OUTRUSHR"
  6793. name="OUTRUSH R"
  6794. series="Helmet"
  6795. latestVersion="2.1"
  6796. show = "1" >
  6797. <productMenu id="protocol"
  6798. type="3" >
  6799. </productMenu>
  6800. <productMenu id="sip"
  6801. type="1" >
  6802. </productMenu>
  6803. <productMenu id="bluetoothIntercom"
  6804. type="1" >
  6805. </productMenu>
  6806. <productMenu id="phone"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="fmradio"
  6810. type="0" >
  6811. </productMenu>
  6812. <productMenu id="deviceSetting"
  6813. type="1"
  6814. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6815. </productMenu>
  6816. <productMenu id="userGuide"
  6817. type="1"
  6818. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6819. size="1.14MB" >
  6820. </productMenu>
  6821. <productMenu id="connectGuide"
  6822. type="1"
  6823. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6824. size="1.12MB" >
  6825. </productMenu>
  6826. <productID id="5440"
  6827. />
  6828. <productGroupable type="0"
  6829. />
  6830. </product>
  6831. <product id="OUTRUSHR"
  6832. name="OUTRUSH R"
  6833. series="Helmet"
  6834. latestVersion="1.1.4"
  6835. show = "-1" >
  6836. <productMenu id="protocol"
  6837. type="0">
  6838. </productMenu>
  6839. <productMenu id="sip"
  6840. type="1" >
  6841. </productMenu>
  6842. <productMenu id="bluetoothIntercom"
  6843. type="1" >
  6844. </productMenu>
  6845. <productMenu id="phone"
  6846. type="2" >
  6847. </productMenu>
  6848. <productMenu id="fmradio"
  6849. type="3" >
  6850. </productMenu>
  6851. <productMenu id="deviceSetting"
  6852. type="1"
  6853. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6854. </productMenu>
  6855. <productMenu id="userGuide"
  6856. type="1"
  6857. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6858. size="660KB" >
  6859. </productMenu>
  6860. <productMenu id="connectGuide"
  6861. type="1"
  6862. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6863. size="1.12MB" >
  6864. </productMenu>
  6865. <productID id="5424"
  6866. />
  6867. <productGroupable type="0"
  6868. />
  6869. </product>
  6870. <product id="OUTSTARS"
  6871. name="OUTSTAR S"
  6872. series="Helmet"
  6873. latestVersion="2.0.1"
  6874. show = "-1" >
  6875. <productMenu id="protocol"
  6876. type="3" >
  6877. </productMenu>
  6878. <productMenu id="sip"
  6879. type="1" >
  6880. </productMenu>
  6881. <productMenu id="bluetoothIntercom"
  6882. type="1" >
  6883. </productMenu>
  6884. <productMenu id="phone"
  6885. type="1" >
  6886. </productMenu>
  6887. <productMenu id="fmradio"
  6888. type="0" >
  6889. </productMenu>
  6890. <productMenu id="deviceSetting"
  6891. type="1"
  6892. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6893. </productMenu>
  6894. <productMenu id="userGuide"
  6895. type="0"
  6896. url=""
  6897. size="1.14MB" >
  6898. </productMenu>
  6899. <productID id="5443"
  6900. />
  6901. <productGroupable type="0"
  6902. />
  6903. </product>
  6904. <product id="OUTSTARS"
  6905. name="OUTSTAR S"
  6906. series="Helmet"
  6907. latestVersion="1.1.4"
  6908. show = "1" >
  6909. <productMenu id="protocol"
  6910. type="0">
  6911. </productMenu>
  6912. <productMenu id="sip"
  6913. type="1" >
  6914. </productMenu>
  6915. <productMenu id="bluetoothIntercom"
  6916. type="1" >
  6917. </productMenu>
  6918. <productMenu id="phone"
  6919. type="2" >
  6920. </productMenu>
  6921. <productMenu id="fmradio"
  6922. type="3" >
  6923. </productMenu>
  6924. <productMenu id="deviceSetting"
  6925. type="1"
  6926. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6927. </productMenu>
  6928. <productMenu id="quickGuide"
  6929. type="1"
  6930. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6931. size="643KB" >
  6932. </productMenu>
  6933. <productMenu id="userGuide"
  6934. type="1"
  6935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6936. size="1.15MB" >
  6937. </productMenu>
  6938. <productMenu id="connectGuide"
  6939. type="1"
  6940. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6941. size="1.12MB" >
  6942. </productMenu>
  6943. <productID id="5428"
  6944. />
  6945. <productGroupable type="0"
  6946. />
  6947. </product>
  6948. <product id="OUTRIDE"
  6949. name="OUTRIDE"
  6950. series="Helmet"
  6951. latestVersion="1.0.1"
  6952. show = "1" >
  6953. <productMenu id="protocol"
  6954. type="0">
  6955. </productMenu>
  6956. <productMenu id="sip"
  6957. type="1" >
  6958. </productMenu>
  6959. <productMenu id="bluetoothIntercom"
  6960. type="1" >
  6961. </productMenu>
  6962. <productMenu id="phone"
  6963. type="2" >
  6964. </productMenu>
  6965. <productMenu id="fmradio"
  6966. type="3" >
  6967. </productMenu>
  6968. <productMenu id="deviceSetting"
  6969. type="1"
  6970. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6971. </productMenu>
  6972. <productMenu id="quickGuide"
  6973. type="1"
  6974. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6975. size="643KB" >
  6976. </productMenu>
  6977. <productMenu id="userGuide"
  6978. type="1"
  6979. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6980. size="660KB" >
  6981. </productMenu>
  6982. <productMenu id="connectGuide"
  6983. type="1"
  6984. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6985. size="1.12MB" >
  6986. </productMenu>
  6987. <productID id="5432"
  6988. />
  6989. <productGroupable type="0"
  6990. />
  6991. </product>
  6992. <product id="OUTFORCE"
  6993. name="OUTFORCE"
  6994. series="Helmet"
  6995. latestVersion="1.0.1"
  6996. show = "1" >
  6997. <productMenu id="protocol"
  6998. type="0">
  6999. </productMenu>
  7000. <productMenu id="sip"
  7001. type="1" >
  7002. </productMenu>
  7003. <productMenu id="bluetoothIntercom"
  7004. type="1" >
  7005. </productMenu>
  7006. <productMenu id="phone"
  7007. type="2" >
  7008. </productMenu>
  7009. <productMenu id="fmradio"
  7010. type="3" >
  7011. </productMenu>
  7012. <productMenu id="deviceSetting"
  7013. type="1"
  7014. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7015. </productMenu>
  7016. <productMenu id="quickGuide"
  7017. type="1"
  7018. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7019. size="643KB" >
  7020. </productMenu>
  7021. <productMenu id="userGuide"
  7022. type="1"
  7023. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7024. size="660KB" >
  7025. </productMenu>
  7026. <productMenu id="connectGuide"
  7027. type="1"
  7028. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7029. size="1.12MB" >
  7030. </productMenu>
  7031. <productID id="5430"
  7032. />
  7033. <productGroupable type="0"
  7034. />
  7035. </product>
  7036. <product id="Rumba"
  7037. name="Rumba"
  7038. series="30"
  7039. latestVersion="2.0"
  7040. show = "-1" >
  7041. <productMenu id="protocol"
  7042. type="3" >
  7043. </productMenu>
  7044. <productMenu id="sip"
  7045. type="1" >
  7046. </productMenu>
  7047. <productMenu id="bluetoothIntercom"
  7048. type="1" >
  7049. </productMenu>
  7050. <productMenu id="deviceSetting"
  7051. type="1"
  7052. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7053. </productMenu>
  7054. <productMenu id="quickGuide"
  7055. type="1"
  7056. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7057. size="344KB" >
  7058. </productMenu>
  7059. <productMenu id="userGuide"
  7060. type="1"
  7061. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7062. size="1.14MB" >
  7063. </productMenu>
  7064. <productID id="6322"
  7065. />
  7066. <productGroupable type="0"
  7067. />
  7068. </product>
  7069. <product id="Savage"
  7070. name="Savage"
  7071. series="Helmet"
  7072. latestVersion="1.2.2"
  7073. show = "1" >
  7074. <productMenu id="protocol"
  7075. type="0">
  7076. </productMenu>
  7077. <productMenu id="sip"
  7078. type="1" >
  7079. </productMenu>
  7080. <productMenu id="bluetoothIntercom"
  7081. type="1" >
  7082. </productMenu>
  7083. <productMenu id="phone"
  7084. type="2" >
  7085. </productMenu>
  7086. <productMenu id="fmradio"
  7087. type="3" >
  7088. </productMenu>
  7089. <productMenu id="deviceSetting"
  7090. type="1"
  7091. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7092. <productMenuURL version="1.9"
  7093. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7094. />
  7095. <productMenuURL version="1.1"
  7096. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7097. />
  7098. </productMenu>
  7099. <productMenu id="quickGuide"
  7100. type="1"
  7101. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7102. size="796KB" >
  7103. </productMenu>
  7104. <productMenu id="userGuide"
  7105. type="1"
  7106. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7107. size="910KB" >
  7108. </productMenu>
  7109. <productMenu id="connectGuide"
  7110. type="1"
  7111. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7112. size="1.12MB" >
  7113. </productMenu>
  7114. <productID id="5550"
  7115. />
  7116. <productGroupable type="0"
  7117. />
  7118. </product>
  7119. <product id="RECON"
  7120. name="RECON"
  7121. series="Helmet"
  7122. latestVersion="1.0"
  7123. latestVersionVoicePrompt="1.7"
  7124. show = "-1" >
  7125. <productMenu id="protocol"
  7126. type="2" >
  7127. </productMenu>
  7128. <productMenu id="ota"
  7129. type="0" >
  7130. <otaLanguages>
  7131. <otaLanguage
  7132. id="0"
  7133. name="English"
  7134. package="0"
  7135. />
  7136. <otaLanguage
  7137. id="0"
  7138. name="French"
  7139. package="1"
  7140. />
  7141. <otaLanguage
  7142. id="0"
  7143. name="Spanish"
  7144. package="2"
  7145. />
  7146. <otaLanguage
  7147. id="0"
  7148. name="Italian"
  7149. package="3"
  7150. />
  7151. <otaLanguage
  7152. id="0"
  7153. name="German"
  7154. package="4"
  7155. />
  7156. <otaLanguage
  7157. id="0"
  7158. name="Dutch"
  7159. package="5"
  7160. />
  7161. <otaLanguage
  7162. id="0"
  7163. name="Russian"
  7164. package="6"
  7165. />
  7166. <otaLanguage
  7167. id="0"
  7168. name="Chinese"
  7169. package="7"
  7170. />
  7171. <otaLanguage
  7172. id="0"
  7173. name="Korean"
  7174. package="8"
  7175. />
  7176. <otaLanguage
  7177. id="0"
  7178. name="Japanese"
  7179. package="9"
  7180. />
  7181. <otaLanguage
  7182. id="0"
  7183. name="Finnish"
  7184. package="10"
  7185. />
  7186. <otaLanguage
  7187. id="0"
  7188. name="Polish"
  7189. package="11"
  7190. />
  7191. </otaLanguages>
  7192. <otaPackages>
  7193. <package
  7194. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0.img"
  7195. size="5183988"
  7196. />
  7197. <package
  7198. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fr-FR.img"
  7199. size="5183988"
  7200. />
  7201. <package
  7202. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-es-ES.img"
  7203. size="5183988"
  7204. />
  7205. <package
  7206. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-it-IT.img"
  7207. size="5183988"
  7208. />
  7209. <package
  7210. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-de-DE.img"
  7211. size="5183988"
  7212. />
  7213. <package
  7214. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-nl-NL.img"
  7215. size="5183988"
  7216. />
  7217. <package
  7218. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ru-RU.img"
  7219. size="5183988"
  7220. />
  7221. <package
  7222. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-cmn-CN.img"
  7223. size="5183988"
  7224. />
  7225. <package
  7226. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ko-KR.img"
  7227. size="5183988"
  7228. />
  7229. <package
  7230. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-ja-JP.img"
  7231. size="5183988"
  7232. />
  7233. <package
  7234. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-fi-FI.img"
  7235. size="5183988"
  7236. />
  7237. <package
  7238. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/RECON-v1.0.9-build0-pl-PL.img"
  7239. size="5183988"
  7240. />
  7241. </otaPackages>
  7242. </productMenu>
  7243. <productMenu id="wa"
  7244. type="0" >
  7245. </productMenu>
  7246. <productMenu id="led"
  7247. type="5" >
  7248. </productMenu>
  7249. <productMenu id="led+"
  7250. type="2"
  7251. url="1" >
  7252. </productMenu>
  7253. <productMenu id="meshIntercom+"
  7254. type="3"
  7255. url="2" >
  7256. </productMenu>
  7257. <productMenu id="waveIntercom"
  7258. type="1" >
  7259. </productMenu>
  7260. <productMenu id="fmradio"
  7261. type="0" >
  7262. </productMenu>
  7263. <productMenu id="phone"
  7264. type="1" >
  7265. </productMenu>
  7266. <productMenu id="music"
  7267. type="1" >
  7268. </productMenu>
  7269. <productMenu id="musicSharing"
  7270. type="0" >
  7271. </productMenu>
  7272. <productMenu id="deviceSetting"
  7273. type="1"
  7274. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON.xml" >
  7275. </productMenu>
  7276. <productMenu id="quickGuide"
  7277. type="0"
  7278. url=""
  7279. size="1.12MB" >
  7280. </productMenu>
  7281. <productMenu id="userGuide"
  7282. type="1"
  7283. url=""
  7284. size="2.28MB" >
  7285. </productMenu>
  7286. <productMenu id="videoGuide"
  7287. type="0"
  7288. url=""
  7289. size="3.41MB" >
  7290. </productMenu>
  7291. <productMenu id="volume"
  7292. type="16" >
  7293. </productMenu>
  7294. <productMenu id="volume+"
  7295. type="2"
  7296. url="0x6004" >
  7297. </productMenu>
  7298. <productMenu id="battery"
  7299. type="1" >
  7300. </productMenu>
  7301. <productID id="6A1D"
  7302. />
  7303. <productGroupable type="0"
  7304. />
  7305. </product>
  7306. <product id="SPECTER"
  7307. name="SPECTER"
  7308. series="Helmet"
  7309. latestVersion="1.0.9"
  7310. latestVersionVoicePrompt="1.7"
  7311. show = "1" >
  7312. <productMenu id="protocol"
  7313. type="2" >
  7314. </productMenu>
  7315. <productMenu id="ota"
  7316. type="2" >
  7317. <otaLanguages>
  7318. <otaLanguage
  7319. id="0"
  7320. name="English"
  7321. package="0"
  7322. />
  7323. <otaLanguage
  7324. id="0"
  7325. name="French"
  7326. package="1"
  7327. />
  7328. <otaLanguage
  7329. id="0"
  7330. name="Spanish"
  7331. package="2"
  7332. />
  7333. <otaLanguage
  7334. id="0"
  7335. name="Italian"
  7336. package="3"
  7337. />
  7338. <otaLanguage
  7339. id="0"
  7340. name="German"
  7341. package="4"
  7342. />
  7343. <otaLanguage
  7344. id="0"
  7345. name="Dutch"
  7346. package="5"
  7347. />
  7348. <otaLanguage
  7349. id="0"
  7350. name="Russian"
  7351. package="6"
  7352. />
  7353. <otaLanguage
  7354. id="0"
  7355. name="Chinese"
  7356. package="7"
  7357. />
  7358. <otaLanguage
  7359. id="0"
  7360. name="Korean"
  7361. package="8"
  7362. />
  7363. <otaLanguage
  7364. id="0"
  7365. name="Japanese"
  7366. package="9"
  7367. />
  7368. <otaLanguage
  7369. id="0"
  7370. name="Finnish"
  7371. package="10"
  7372. />
  7373. <otaLanguage
  7374. id="0"
  7375. name="Polish"
  7376. package="11"
  7377. />
  7378. </otaLanguages>
  7379. <otaPackages>
  7380. <package
  7381. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7382. size="5183988"
  7383. />
  7384. <package
  7385. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7386. size="5183988"
  7387. />
  7388. <package
  7389. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7390. size="5183988"
  7391. />
  7392. <package
  7393. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7394. size="5183988"
  7395. />
  7396. <package
  7397. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7398. size="5183988"
  7399. />
  7400. <package
  7401. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7402. size="5183988"
  7403. />
  7404. <package
  7405. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7406. size="5183988"
  7407. />
  7408. <package
  7409. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7410. size="5183988"
  7411. />
  7412. <package
  7413. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7414. size="5183988"
  7415. />
  7416. <package
  7417. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7418. size="5183988"
  7419. />
  7420. <package
  7421. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7422. size="5183988"
  7423. />
  7424. <package
  7425. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7426. size="5183988"
  7427. />
  7428. </otaPackages>
  7429. </productMenu>
  7430. <productMenu id="wa"
  7431. type="0" >
  7432. </productMenu>
  7433. <productMenu id="led"
  7434. type="5" >
  7435. </productMenu>
  7436. <productMenu id="led+"
  7437. type="2"
  7438. url="1" >
  7439. </productMenu>
  7440. <productMenu id="meshIntercom+"
  7441. type="3"
  7442. url="2" >
  7443. </productMenu>
  7444. <productMenu id="waveIntercom"
  7445. type="1" >
  7446. </productMenu>
  7447. <productMenu id="fmradio"
  7448. type="0" >
  7449. </productMenu>
  7450. <productMenu id="phone"
  7451. type="1" >
  7452. </productMenu>
  7453. <productMenu id="music"
  7454. type="1" >
  7455. </productMenu>
  7456. <productMenu id="musicSharing"
  7457. type="0" >
  7458. </productMenu>
  7459. <productMenu id="deviceSetting"
  7460. type="1"
  7461. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7462. <productMenuURL version="1.0.4"
  7463. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7464. />
  7465. </productMenu>
  7466. <productMenu id="quickGuide"
  7467. type="0"
  7468. url=""
  7469. size="1.12MB" >
  7470. </productMenu>
  7471. <productMenu id="userGuide"
  7472. type="1"
  7473. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7474. size="2.0MB" >
  7475. </productMenu>
  7476. <productMenu id="videoGuide"
  7477. type="0"
  7478. url=""
  7479. size="3.41MB" >
  7480. </productMenu>
  7481. <productMenu id="volume"
  7482. type="16" >
  7483. </productMenu>
  7484. <productMenu id="volume+"
  7485. type="2"
  7486. url="0x6004" >
  7487. </productMenu>
  7488. <productMenu id="battery"
  7489. type="1" >
  7490. </productMenu>
  7491. <productID id="6A11"
  7492. />
  7493. <productGroupable type="0"
  7494. />
  7495. </product>
  7496. <product id="SPECTER"
  7497. name="SPECTER"
  7498. series="Helmet"
  7499. latestVersion="1.0.9"
  7500. latestVersionVoicePrompt="1.7"
  7501. show = "-1" >
  7502. <productMenu id="protocol"
  7503. type="2" >
  7504. </productMenu>
  7505. <productMenu id="ota"
  7506. type="2" >
  7507. <otaLanguages>
  7508. <otaLanguage
  7509. id="0"
  7510. name="English"
  7511. package="0"
  7512. />
  7513. <otaLanguage
  7514. id="0"
  7515. name="French"
  7516. package="1"
  7517. />
  7518. <otaLanguage
  7519. id="0"
  7520. name="Spanish"
  7521. package="2"
  7522. />
  7523. <otaLanguage
  7524. id="0"
  7525. name="Italian"
  7526. package="3"
  7527. />
  7528. <otaLanguage
  7529. id="0"
  7530. name="German"
  7531. package="4"
  7532. />
  7533. <otaLanguage
  7534. id="0"
  7535. name="Dutch"
  7536. package="5"
  7537. />
  7538. <otaLanguage
  7539. id="0"
  7540. name="Russian"
  7541. package="6"
  7542. />
  7543. <otaLanguage
  7544. id="0"
  7545. name="Chinese"
  7546. package="7"
  7547. />
  7548. <otaLanguage
  7549. id="0"
  7550. name="Korean"
  7551. package="8"
  7552. />
  7553. <otaLanguage
  7554. id="0"
  7555. name="Japanese"
  7556. package="9"
  7557. />
  7558. <otaLanguage
  7559. id="0"
  7560. name="Finnish"
  7561. package="10"
  7562. />
  7563. <otaLanguage
  7564. id="0"
  7565. name="Polish"
  7566. package="11"
  7567. />
  7568. </otaLanguages>
  7569. <otaPackages>
  7570. <package
  7571. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7572. size="5183988"
  7573. />
  7574. <package
  7575. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7576. size="5183988"
  7577. />
  7578. <package
  7579. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7580. size="5183988"
  7581. />
  7582. <package
  7583. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7584. size="5183988"
  7585. />
  7586. <package
  7587. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7588. size="5183988"
  7589. />
  7590. <package
  7591. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7592. size="5183988"
  7593. />
  7594. <package
  7595. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7596. size="5183988"
  7597. />
  7598. <package
  7599. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7600. size="5183988"
  7601. />
  7602. <package
  7603. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7604. size="5183988"
  7605. />
  7606. <package
  7607. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7608. size="5183988"
  7609. />
  7610. <package
  7611. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7612. size="5183988"
  7613. />
  7614. <package
  7615. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7616. size="5183988"
  7617. />
  7618. </otaPackages>
  7619. </productMenu>
  7620. <productMenu id="wa"
  7621. type="0" >
  7622. </productMenu>
  7623. <productMenu id="led"
  7624. type="5" >
  7625. </productMenu>
  7626. <productMenu id="led+"
  7627. type="2"
  7628. url="1" >
  7629. </productMenu>
  7630. <productMenu id="meshIntercom+"
  7631. type="3"
  7632. url="2" >
  7633. </productMenu>
  7634. <productMenu id="waveIntercom"
  7635. type="1" >
  7636. </productMenu>
  7637. <productMenu id="fmradio"
  7638. type="0" >
  7639. </productMenu>
  7640. <productMenu id="phone"
  7641. type="1" >
  7642. </productMenu>
  7643. <productMenu id="music"
  7644. type="1" >
  7645. </productMenu>
  7646. <productMenu id="musicSharing"
  7647. type="0" >
  7648. </productMenu>
  7649. <productMenu id="deviceSetting"
  7650. type="1"
  7651. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7652. <productMenuURL version="1.0.4"
  7653. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7654. />
  7655. <productMenuURL version="1.0"
  7656. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7657. />
  7658. </productMenu>
  7659. <productMenu id="quickGuide"
  7660. type="0"
  7661. url=""
  7662. size="1.12MB" >
  7663. </productMenu>
  7664. <productMenu id="userGuide"
  7665. type="1"
  7666. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7667. size="2.0MB" >
  7668. </productMenu>
  7669. <productMenu id="videoGuide"
  7670. type="0"
  7671. url=""
  7672. size="3.41MB" >
  7673. </productMenu>
  7674. <productMenu id="volume"
  7675. type="16" >
  7676. </productMenu>
  7677. <productMenu id="volume+"
  7678. type="2"
  7679. url="0x6004" >
  7680. </productMenu>
  7681. <productMenu id="battery"
  7682. type="1" >
  7683. </productMenu>
  7684. <productID id="6A0A"
  7685. />
  7686. <productGroupable type="0"
  7687. />
  7688. </product>
  7689. <product id="OUTLANDER"
  7690. name="OUTLANDER"
  7691. series="Helmet"
  7692. latestVersion="1.0.9"
  7693. latestVersionVoicePrompt="1.7"
  7694. show = "1" >
  7695. <productMenu id="protocol"
  7696. type="2" >
  7697. </productMenu>
  7698. <productMenu id="ota"
  7699. type="2" >
  7700. <otaLanguages>
  7701. <otaLanguage
  7702. id="0"
  7703. name="English"
  7704. package="0"
  7705. />
  7706. <otaLanguage
  7707. id="0"
  7708. name="French"
  7709. package="1"
  7710. />
  7711. <otaLanguage
  7712. id="0"
  7713. name="Spanish"
  7714. package="2"
  7715. />
  7716. <otaLanguage
  7717. id="0"
  7718. name="Italian"
  7719. package="3"
  7720. />
  7721. <otaLanguage
  7722. id="0"
  7723. name="German"
  7724. package="4"
  7725. />
  7726. <otaLanguage
  7727. id="0"
  7728. name="Dutch"
  7729. package="5"
  7730. />
  7731. <otaLanguage
  7732. id="0"
  7733. name="Russian"
  7734. package="6"
  7735. />
  7736. <otaLanguage
  7737. id="0"
  7738. name="Chinese"
  7739. package="7"
  7740. />
  7741. <otaLanguage
  7742. id="0"
  7743. name="Korean"
  7744. package="8"
  7745. />
  7746. <otaLanguage
  7747. id="0"
  7748. name="Japanese"
  7749. package="9"
  7750. />
  7751. <otaLanguage
  7752. id="0"
  7753. name="Finnish"
  7754. package="10"
  7755. />
  7756. <otaLanguage
  7757. id="0"
  7758. name="Polish"
  7759. package="11"
  7760. />
  7761. </otaLanguages>
  7762. <otaPackages>
  7763. <package
  7764. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7765. size="5183988"
  7766. />
  7767. <package
  7768. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7769. size="5183988"
  7770. />
  7771. <package
  7772. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7773. size="5183988"
  7774. />
  7775. <package
  7776. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7777. size="5183988"
  7778. />
  7779. <package
  7780. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7781. size="5183988"
  7782. />
  7783. <package
  7784. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7785. size="5183988"
  7786. />
  7787. <package
  7788. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7789. size="5183988"
  7790. />
  7791. <package
  7792. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7793. size="5183988"
  7794. />
  7795. <package
  7796. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7797. size="5183988"
  7798. />
  7799. <package
  7800. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7801. size="5183988"
  7802. />
  7803. <package
  7804. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7805. size="5183988"
  7806. />
  7807. <package
  7808. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7809. size="5183988"
  7810. />
  7811. </otaPackages>
  7812. </productMenu>
  7813. <productMenu id="wa"
  7814. type="0" >
  7815. </productMenu>
  7816. <productMenu id="led"
  7817. type="5" >
  7818. </productMenu>
  7819. <productMenu id="led+"
  7820. type="2"
  7821. url="1" >
  7822. </productMenu>
  7823. <productMenu id="meshIntercom+"
  7824. type="3"
  7825. url="2" >
  7826. </productMenu>
  7827. <productMenu id="waveIntercom"
  7828. type="1" >
  7829. </productMenu>
  7830. <productMenu id="fmradio"
  7831. type="0" >
  7832. </productMenu>
  7833. <productMenu id="phone"
  7834. type="1" >
  7835. </productMenu>
  7836. <productMenu id="music"
  7837. type="1" >
  7838. </productMenu>
  7839. <productMenu id="musicSharing"
  7840. type="0" >
  7841. </productMenu>
  7842. <productMenu id="deviceSetting"
  7843. type="1"
  7844. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7845. <productMenuURL version="1.0.4"
  7846. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7847. />
  7848. </productMenu>
  7849. <productMenu id="quickGuide"
  7850. type="0"
  7851. url=""
  7852. size="1.12MB" >
  7853. </productMenu>
  7854. <productMenu id="userGuide"
  7855. type="1"
  7856. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7857. size="2.0MB" >
  7858. </productMenu>
  7859. <productMenu id="videoGuide"
  7860. type="0"
  7861. url=""
  7862. size="3.41MB" >
  7863. </productMenu>
  7864. <productMenu id="volume"
  7865. type="16" >
  7866. </productMenu>
  7867. <productMenu id="volume+"
  7868. type="2"
  7869. url="0x6004" >
  7870. </productMenu>
  7871. <productMenu id="battery"
  7872. type="1" >
  7873. </productMenu>
  7874. <productID id="6A05"
  7875. />
  7876. <productGroupable type="0"
  7877. />
  7878. </product>
  7879. <product id="OUTRUSH2"
  7880. name="OUTRUSH 2"
  7881. series="Helmet"
  7882. latestVersion="1.0.3"
  7883. latestVersionVoicePrompt="1.6"
  7884. show = "1" >
  7885. <productMenu id="protocol"
  7886. type="2" >
  7887. </productMenu>
  7888. <productMenu id="alexa"
  7889. type="0" >
  7890. </productMenu>
  7891. <productMenu id="ota"
  7892. type="2" >
  7893. <otaPackages>
  7894. <package
  7895. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7896. size="2945812"
  7897. />
  7898. </otaPackages>
  7899. </productMenu>
  7900. <productMenu id="meshIntercom+"
  7901. type="3"
  7902. url="2" >
  7903. </productMenu>
  7904. <productMenu id="waveIntercom"
  7905. type="1" >
  7906. </productMenu>
  7907. <productMenu id="phone"
  7908. type="1" >
  7909. </productMenu>
  7910. <productMenu id="music"
  7911. type="1" >
  7912. </productMenu>
  7913. <productMenu id="musicSharing"
  7914. type="0" >
  7915. </productMenu>
  7916. <productMenu id="deviceSetting"
  7917. type="1"
  7918. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7919. <productMenuURL version="1.0"
  7920. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7921. />
  7922. </productMenu>
  7923. <productMenu id="quickGuide"
  7924. type="0"
  7925. url=""
  7926. size="1.12MB" >
  7927. </productMenu>
  7928. <productMenu id="userGuide"
  7929. type="1"
  7930. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7931. size="2.0MB" >
  7932. </productMenu>
  7933. <productMenu id="volume"
  7934. type="12" >
  7935. </productMenu>
  7936. <productMenu id="battery"
  7937. type="1" >
  7938. </productMenu>
  7939. <productID id="684A"
  7940. />
  7941. <productGroupable type="0"
  7942. />
  7943. </product>
  7944. <product id="OUTSTAR2"
  7945. name="OUTSTAR 2"
  7946. series="Helmet"
  7947. latestVersion="1.0.2"
  7948. latestVersionVoicePrompt="1.6"
  7949. show = "1" >
  7950. <productMenu id="protocol"
  7951. type="2" >
  7952. </productMenu>
  7953. <productMenu id="alexa"
  7954. type="0" >
  7955. </productMenu>
  7956. <productMenu id="ota"
  7957. type="2" >
  7958. <otaPackages>
  7959. <package
  7960. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7961. size="2945812"
  7962. />
  7963. </otaPackages>
  7964. </productMenu>
  7965. <productMenu id="meshIntercom+"
  7966. type="3"
  7967. url="2" >
  7968. </productMenu>
  7969. <productMenu id="waveIntercom"
  7970. type="1" >
  7971. </productMenu>
  7972. <productMenu id="phone"
  7973. type="1" >
  7974. </productMenu>
  7975. <productMenu id="music"
  7976. type="1" >
  7977. </productMenu>
  7978. <productMenu id="musicSharing"
  7979. type="0" >
  7980. </productMenu>
  7981. <productMenu id="deviceSetting"
  7982. type="1"
  7983. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7984. </productMenu>
  7985. <productMenu id="quickGuide"
  7986. type="0"
  7987. url=""
  7988. size="1.12MB" >
  7989. </productMenu>
  7990. <productMenu id="userGuide"
  7991. type="1"
  7992. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7993. size="2.0MB" >
  7994. </productMenu>
  7995. <productMenu id="volume"
  7996. type="12" >
  7997. </productMenu>
  7998. <productMenu id="battery"
  7999. type="1" >
  8000. </productMenu>
  8001. <productID id="684B"
  8002. />
  8003. <productGroupable type="0"
  8004. />
  8005. </product>
  8006. <product id="SURGE"
  8007. name="SURGE"
  8008. series="Helmet"
  8009. latestVersion="1.2"
  8010. latestVersionVoicePrompt="1.3"
  8011. show = "1" >
  8012. <productMenu id="protocol"
  8013. type="2" >
  8014. </productMenu>
  8015. <productMenu id="alexa"
  8016. type="0" >
  8017. </productMenu>
  8018. <productMenu id="ota"
  8019. type="2" >
  8020. <otaPackages>
  8021. <package
  8022. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8023. size="2945812"
  8024. />
  8025. </otaPackages>
  8026. </productMenu>
  8027. <productMenu id="meshIntercom"
  8028. type="30" >
  8029. </productMenu>
  8030. <productMenu id="meshIntercom+"
  8031. type="3"
  8032. url="2" >
  8033. <productMenuType version="1.0.1"
  8034. type="2"
  8035. />
  8036. </productMenu>
  8037. <productMenu id="waveIntercom"
  8038. type="1" >
  8039. <productMenuType version="1.0.9"
  8040. type="0"
  8041. />
  8042. </productMenu>
  8043. <productMenu id="phone"
  8044. type="1" >
  8045. </productMenu>
  8046. <productMenu id="music"
  8047. type="1" >
  8048. </productMenu>
  8049. <productMenu id="musicSharing"
  8050. type="0" >
  8051. </productMenu>
  8052. <productMenu id="deviceSetting"
  8053. type="1"
  8054. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8055. <productMenuURL version="1.1.9"
  8056. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8057. />
  8058. <productMenuURL version="1.0.1"
  8059. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8060. />
  8061. </productMenu>
  8062. <productMenu id="quickGuide"
  8063. type="0"
  8064. url=""
  8065. size="1.12MB" >
  8066. </productMenu>
  8067. <productMenu id="userGuide"
  8068. type="1"
  8069. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8070. size="2.0MB" >
  8071. </productMenu>
  8072. <productMenu id="volume"
  8073. type="12" >
  8074. </productMenu>
  8075. <productMenu id="battery"
  8076. type="1" >
  8077. </productMenu>
  8078. <productID id="6840"
  8079. />
  8080. <productGroupable type="0"
  8081. />
  8082. </product>
  8083. <product id="Cavalry2"
  8084. name="Cavalry 2"
  8085. series="Helmet"
  8086. latestVersion="1.2"
  8087. latestVersionVoicePrompt="1.3"
  8088. show = "1" >
  8089. <productMenu id="protocol"
  8090. type="2" >
  8091. </productMenu>
  8092. <productMenu id="alexa"
  8093. type="0" >
  8094. </productMenu>
  8095. <productMenu id="ota"
  8096. type="2" >
  8097. <otaPackages>
  8098. <package
  8099. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8100. size="3144148"
  8101. />
  8102. </otaPackages>
  8103. </productMenu>
  8104. <productMenu id="wa"
  8105. type="0" >
  8106. </productMenu>
  8107. <productMenu id="meshIntercom"
  8108. type="30" >
  8109. </productMenu>
  8110. <productMenu id="meshIntercom+"
  8111. type="3"
  8112. url="2" >
  8113. <productMenuType version="1.0"
  8114. type="2"
  8115. />
  8116. </productMenu>
  8117. <productMenu id="waveIntercom"
  8118. type="1" >
  8119. <productMenuType version="1.0.9"
  8120. type="0"
  8121. />
  8122. </productMenu>
  8123. <productMenu id="phone"
  8124. type="1" >
  8125. </productMenu>
  8126. <productMenu id="music"
  8127. type="1" >
  8128. </productMenu>
  8129. <productMenu id="musicSharing"
  8130. type="0" >
  8131. </productMenu>
  8132. <productMenu id="deviceSetting"
  8133. type="1"
  8134. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8135. <productMenuURL version="1.1.9"
  8136. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8137. />
  8138. <productMenuURL version="1.0"
  8139. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8140. />
  8141. </productMenu>
  8142. <productMenu id="quickGuide"
  8143. type="0"
  8144. url=""
  8145. size="1.12MB" >
  8146. </productMenu>
  8147. <productMenu id="userGuide"
  8148. type="1"
  8149. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8150. size="2.0MB" >
  8151. </productMenu>
  8152. <productMenu id="connectGuide"
  8153. type="1"
  8154. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8155. size="1.12MB" >
  8156. </productMenu>
  8157. <productMenu id="volume"
  8158. type="12" >
  8159. </productMenu>
  8160. <productMenu id="battery"
  8161. type="1" >
  8162. </productMenu>
  8163. <productID id="6839"
  8164. />
  8165. <productGroupable type="0"
  8166. />
  8167. </product>
  8168. <product id="Cavalry"
  8169. name="Cavalry"
  8170. series="Helmet"
  8171. latestVersion="1.2.2"
  8172. show = "1" >
  8173. <productMenu id="protocol"
  8174. type="0">
  8175. </productMenu>
  8176. <productMenu id="sip"
  8177. type="1" >
  8178. </productMenu>
  8179. <productMenu id="bluetoothIntercom"
  8180. type="1" >
  8181. </productMenu>
  8182. <productMenu id="phone"
  8183. type="2" >
  8184. </productMenu>
  8185. <productMenu id="fmradio"
  8186. type="3" >
  8187. </productMenu>
  8188. <productMenu id="deviceSetting"
  8189. type="1"
  8190. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8191. <productMenuURL version="1.9"
  8192. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8193. />
  8194. <productMenuURL version="1.0.1"
  8195. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8196. />
  8197. </productMenu>
  8198. <productMenu id="quickGuide"
  8199. type="1"
  8200. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8201. size="795KB" >
  8202. </productMenu>
  8203. <productMenu id="userGuide"
  8204. type="1"
  8205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8206. size="1.87MB" >
  8207. </productMenu>
  8208. <productMenu id="connectGuide"
  8209. type="1"
  8210. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8211. size="1.12MB" >
  8212. </productMenu>
  8213. <productID id="5524"
  8214. />
  8215. <productGroupable type="0"
  8216. />
  8217. </product>
  8218. <product id="Cavalry_Lite"
  8219. name="Cavalry Lite"
  8220. series="Helmet"
  8221. latestVersion="1.0.2"
  8222. show = "1" >
  8223. <productMenu id="protocol"
  8224. type="0">
  8225. </productMenu>
  8226. <productMenu id="sip"
  8227. type="1" >
  8228. </productMenu>
  8229. <productMenu id="bluetoothIntercom"
  8230. type="1" >
  8231. </productMenu>
  8232. <productMenu id="phone"
  8233. type="2" >
  8234. </productMenu>
  8235. <productMenu id="fmradio"
  8236. type="3" >
  8237. </productMenu>
  8238. <productMenu id="deviceSetting"
  8239. type="1"
  8240. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8241. </productMenu>
  8242. <productMenu id="userGuide"
  8243. type="1"
  8244. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8245. size="1.74MB" >
  8246. </productMenu>
  8247. <productMenu id="connectGuide"
  8248. type="1"
  8249. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8250. size="1.12MB" >
  8251. </productMenu>
  8252. <productID id="5536"
  8253. />
  8254. <productGroupable type="0"
  8255. />
  8256. </product>
  8257. <product id="VORTEX"
  8258. name="VORTEX"
  8259. series="VORTEX"
  8260. latestVersion="1.0.2"
  8261. latestVersionVoicePrompt="1.0"
  8262. show = "1" >
  8263. <productMenu id="protocol"
  8264. type="2" >
  8265. </productMenu>
  8266. <productMenu id="warranty"
  8267. type="1" >
  8268. </productMenu>
  8269. <productMenu id="serialNumber"
  8270. type="1" >
  8271. </productMenu>
  8272. <productMenu id="ota"
  8273. type="2" >
  8274. <otaLanguages>
  8275. <otaLanguage
  8276. id="0"
  8277. name="English"
  8278. package="0"
  8279. />
  8280. <otaLanguage
  8281. id="0"
  8282. name="French"
  8283. package="1"
  8284. />
  8285. <otaLanguage
  8286. id="0"
  8287. name="Spanish"
  8288. package="2"
  8289. />
  8290. <otaLanguage
  8291. id="0"
  8292. name="Italian"
  8293. package="3"
  8294. />
  8295. <otaLanguage
  8296. id="0"
  8297. name="German"
  8298. package="4"
  8299. />
  8300. <otaLanguage
  8301. id="0"
  8302. name="Dutch"
  8303. package="5"
  8304. />
  8305. <otaLanguage
  8306. id="0"
  8307. name="Russian"
  8308. package="6"
  8309. />
  8310. <otaLanguage
  8311. id="0"
  8312. name="Chinese"
  8313. package="7"
  8314. />
  8315. <otaLanguage
  8316. id="0"
  8317. name="Korean"
  8318. package="8"
  8319. />
  8320. <otaLanguage
  8321. id="0"
  8322. name="Japanese"
  8323. package="9"
  8324. />
  8325. <otaLanguage
  8326. id="0"
  8327. name="Finnish"
  8328. package="10"
  8329. />
  8330. <otaLanguage
  8331. id="0"
  8332. name="Polish"
  8333. package="11"
  8334. />
  8335. </otaLanguages>
  8336. <otaPackages>
  8337. <package
  8338. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8339. size="5183988"
  8340. />
  8341. <package
  8342. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8343. size="5183988"
  8344. />
  8345. <package
  8346. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8347. size="5183988"
  8348. />
  8349. <package
  8350. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8351. size="5183988"
  8352. />
  8353. <package
  8354. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8355. size="5183988"
  8356. />
  8357. <package
  8358. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8359. size="5183988"
  8360. />
  8361. <package
  8362. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8363. size="5183988"
  8364. />
  8365. <package
  8366. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8367. size="5183988"
  8368. />
  8369. <package
  8370. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8371. size="5183988"
  8372. />
  8373. <package
  8374. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8375. size="5183988"
  8376. />
  8377. <package
  8378. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8379. size="5183988"
  8380. />
  8381. <package
  8382. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8383. size="5183988"
  8384. />
  8385. </otaPackages>
  8386. </productMenu>
  8387. <productMenu id="sip"
  8388. type="1" >
  8389. </productMenu>
  8390. <productMenu id="bluetoothIntercom"
  8391. type="1" >
  8392. </productMenu>
  8393. <productMenu id="phone"
  8394. type="1" >
  8395. </productMenu>
  8396. <productMenu id="music"
  8397. type="1" >
  8398. </productMenu>
  8399. <productMenu id="fmradio"
  8400. type="1"
  8401. url="1" >
  8402. </productMenu>
  8403. <productMenu id="deviceSetting"
  8404. type="1"
  8405. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8406. </productMenu>
  8407. <productMenu id="quickGuide"
  8408. type="0"
  8409. url=""
  8410. size="934KB" >
  8411. </productMenu>
  8412. <productMenu id="userGuide"
  8413. type="1"
  8414. url=""
  8415. size="1.14MB" >
  8416. </productMenu>
  8417. <productMenu id="connectGuide"
  8418. type="0"
  8419. url=""
  8420. size="1.12MB" >
  8421. </productMenu>
  8422. <productMenu id="volume"
  8423. type="15" >
  8424. </productMenu>
  8425. <productMenu id="volume+"
  8426. type="2"
  8427. url="0x0018" >
  8428. </productMenu>
  8429. <productMenu id="appearance"
  8430. type="1"
  8431. url="1|white,silver,black" >
  8432. </productMenu>
  8433. <productID id="3451"
  8434. />
  8435. <productGroupable type="0"
  8436. />
  8437. </product>
  8438. <product id="SF4"
  8439. name="SF4"
  8440. series="SF"
  8441. latestVersion="1.1.5"
  8442. show = "-1" >
  8443. <productMenu id="protocol"
  8444. type="1"
  8445. url="3">
  8446. </productMenu>
  8447. <productMenu id="sip"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="bluetoothIntercom"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="phone"
  8454. type="1" >
  8455. </productMenu>
  8456. <productMenu id="music"
  8457. type="1" >
  8458. </productMenu>
  8459. <productMenu id="fmradio"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="deviceSetting"
  8463. type="1"
  8464. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8465. <productMenuURL version="1.0.1"
  8466. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8467. />
  8468. </productMenu>
  8469. <productMenu id="quickGuide"
  8470. type="1"
  8471. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8472. size="607KB" >
  8473. </productMenu>
  8474. <productMenu id="userGuide"
  8475. type="1"
  8476. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8477. size="1.91MB" >
  8478. </productMenu>
  8479. <productMenu id="volume"
  8480. type="4" >
  8481. </productMenu>
  8482. <productID id="5414"
  8483. />
  8484. <productGroupable type="0"
  8485. />
  8486. </product>
  8487. <product id="SF4"
  8488. name="SF4"
  8489. series="SF"
  8490. latestVersion="3.4.4"
  8491. show = "1" >
  8492. <productMenu id="protocol"
  8493. type="2" >
  8494. </productMenu>
  8495. <productMenu id="sip"
  8496. type="1" >
  8497. </productMenu>
  8498. <productMenu id="bluetoothIntercom"
  8499. type="1" >
  8500. </productMenu>
  8501. <productMenu id="phone"
  8502. type="1" >
  8503. </productMenu>
  8504. <productMenu id="music"
  8505. type="1" >
  8506. </productMenu>
  8507. <productMenu id="fmradio"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="deviceSetting"
  8511. type="1"
  8512. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8513. <productMenuURL version="3.0"
  8514. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8515. />
  8516. </productMenu>
  8517. <productMenu id="quickGuide"
  8518. type="0"
  8519. url=""
  8520. size="934KB" >
  8521. </productMenu>
  8522. <productMenu id="userGuide"
  8523. type="1"
  8524. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8525. size="1.14MB" >
  8526. </productMenu>
  8527. <productMenu id="connectGuide"
  8528. type="1"
  8529. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8530. size="1.12MB" >
  8531. </productMenu>
  8532. <productMenu id="volume"
  8533. type="15" >
  8534. </productMenu>
  8535. <productID id="3370"
  8536. />
  8537. <productGroupable type="0"
  8538. />
  8539. </product>
  8540. <product id="SF2"
  8541. name="SF2"
  8542. series="SF"
  8543. latestVersion="1.2.1"
  8544. show = "-1" >
  8545. <productMenu id="protocol"
  8546. type="1"
  8547. url="2">
  8548. </productMenu>
  8549. <productMenu id="sip"
  8550. type="1" >
  8551. </productMenu>
  8552. <productMenu id="bluetoothIntercom"
  8553. type="1" >
  8554. </productMenu>
  8555. <productMenu id="phone"
  8556. type="1" >
  8557. </productMenu>
  8558. <productMenu id="music"
  8559. type="1" >
  8560. </productMenu>
  8561. <productMenu id="fmradio"
  8562. type="1" >
  8563. </productMenu>
  8564. <productMenu id="deviceSetting"
  8565. type="1"
  8566. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8567. <productMenuURL version="1.0.1"
  8568. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8569. />
  8570. </productMenu>
  8571. <productMenu id="quickGuide"
  8572. type="1"
  8573. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8574. size="607KB" >
  8575. </productMenu>
  8576. <productMenu id="userGuide"
  8577. type="1"
  8578. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8579. size="1.91MB" >
  8580. </productMenu>
  8581. <productMenu id="volume"
  8582. type="4" >
  8583. </productMenu>
  8584. <productID id="5412"
  8585. />
  8586. <productGroupable type="0"
  8587. />
  8588. </product>
  8589. <product id="SF2"
  8590. name="SF2"
  8591. series="SF"
  8592. latestVersion="3.3.4"
  8593. show = "1" >
  8594. <productMenu id="protocol"
  8595. type="2" >
  8596. </productMenu>
  8597. <productMenu id="sip"
  8598. type="1" >
  8599. </productMenu>
  8600. <productMenu id="bluetoothIntercom"
  8601. type="1" >
  8602. </productMenu>
  8603. <productMenu id="phone"
  8604. type="1" >
  8605. </productMenu>
  8606. <productMenu id="music"
  8607. type="1" >
  8608. </productMenu>
  8609. <productMenu id="fmradio"
  8610. type="0" >
  8611. </productMenu>
  8612. <productMenu id="deviceSetting"
  8613. type="1"
  8614. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8615. <productMenuURL version="3.0"
  8616. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8617. />
  8618. </productMenu>
  8619. <productMenu id="quickGuide"
  8620. type="0"
  8621. url=""
  8622. size="934KB" >
  8623. </productMenu>
  8624. <productMenu id="userGuide"
  8625. type="1"
  8626. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8627. size="1.14MB" >
  8628. </productMenu>
  8629. <productMenu id="connectGuide"
  8630. type="1"
  8631. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8632. size="1.12MB" >
  8633. </productMenu>
  8634. <productMenu id="volume"
  8635. type="15" >
  8636. </productMenu>
  8637. <productID id="3360"
  8638. />
  8639. <productGroupable type="0"
  8640. />
  8641. </product>
  8642. <product id="SF1"
  8643. name="SF1"
  8644. series="SF"
  8645. latestVersion="2.0.5"
  8646. show = "-1" >
  8647. <productMenu id="protocol"
  8648. type="1"
  8649. url="1">
  8650. </productMenu>
  8651. <productMenu id="sip"
  8652. type="1" >
  8653. </productMenu>
  8654. <productMenu id="bluetoothIntercom"
  8655. type="1" >
  8656. <productMenuType version="1.1"
  8657. type="0"
  8658. />
  8659. </productMenu>
  8660. <productMenu id="phone"
  8661. type="1" >
  8662. </productMenu>
  8663. <productMenu id="music"
  8664. type="1" >
  8665. </productMenu>
  8666. <productMenu id="deviceSetting"
  8667. type="1"
  8668. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8669. <productMenuURL version="1.1"
  8670. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8671. />
  8672. <productMenuURL version="1.0"
  8673. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8674. />
  8675. </productMenu>
  8676. <productMenu id="quickGuide"
  8677. type="1"
  8678. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8679. size="401KB" >
  8680. </productMenu>
  8681. <productMenu id="userGuide"
  8682. type="1"
  8683. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8684. size="1.91MB" >
  8685. </productMenu>
  8686. <productMenu id="volume"
  8687. type="3" >
  8688. </productMenu>
  8689. <productID id="5410"
  8690. />
  8691. <productGroupable type="0"
  8692. />
  8693. </product>
  8694. <product id="SF1"
  8695. name="SF1"
  8696. series="SF"
  8697. latestVersion="3.3.4"
  8698. show = "1" >
  8699. <productMenu id="protocol"
  8700. type="2" >
  8701. </productMenu>
  8702. <productMenu id="sip"
  8703. type="1" >
  8704. </productMenu>
  8705. <productMenu id="bluetoothIntercom"
  8706. type="1" >
  8707. </productMenu>
  8708. <productMenu id="phone"
  8709. type="1" >
  8710. </productMenu>
  8711. <productMenu id="music"
  8712. type="1" >
  8713. </productMenu>
  8714. <productMenu id="fmradio"
  8715. type="0" >
  8716. </productMenu>
  8717. <productMenu id="deviceSetting"
  8718. type="1"
  8719. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8720. <productMenuURL version="3.0"
  8721. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8722. />
  8723. </productMenu>
  8724. <productMenu id="quickGuide"
  8725. type="0"
  8726. url=""
  8727. size="934KB" >
  8728. </productMenu>
  8729. <productMenu id="userGuide"
  8730. type="1"
  8731. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8732. size="1.14MB" >
  8733. </productMenu>
  8734. <productMenu id="connectGuide"
  8735. type="1"
  8736. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8737. size="1.12MB" >
  8738. </productMenu>
  8739. <productMenu id="volume"
  8740. type="15" >
  8741. </productMenu>
  8742. <productID id="3350"
  8743. />
  8744. <productGroupable type="0"
  8745. />
  8746. </product>
  8747. <product id="SFR"
  8748. name="SFR"
  8749. series="SF"
  8750. latestVersion="1.1.1"
  8751. show = "1" >
  8752. <productMenu id="protocol"
  8753. type="1"
  8754. url="3">
  8755. </productMenu>
  8756. <productMenu id="sip"
  8757. type="1" >
  8758. </productMenu>
  8759. <productMenu id="bluetoothIntercom"
  8760. type="1" >
  8761. </productMenu>
  8762. <productMenu id="phone"
  8763. type="1" >
  8764. </productMenu>
  8765. <productMenu id="music"
  8766. type="1" >
  8767. </productMenu>
  8768. <productMenu id="fmradio"
  8769. type="1" >
  8770. </productMenu>
  8771. <productMenu id="deviceSetting"
  8772. type="1"
  8773. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8774. </productMenu>
  8775. <productMenu id="quickGuide"
  8776. type="1"
  8777. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8778. size="607KB" >
  8779. </productMenu>
  8780. <productMenu id="userGuide"
  8781. type="1"
  8782. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8783. size="1.91MB" >
  8784. </productMenu>
  8785. <productMenu id="volume"
  8786. type="4" >
  8787. </productMenu>
  8788. <productID id="5418"
  8789. />
  8790. <productGroupable type="0"
  8791. />
  8792. </product>
  8793. <product id="20S"
  8794. name="20S"
  8795. series="20"
  8796. latestVersion="2.2.3"
  8797. show = "1" >
  8798. <productMenu id="protocol"
  8799. type="0">
  8800. </productMenu>
  8801. <productMenu id="wa"
  8802. type="5" >
  8803. </productMenu>
  8804. <productMenu id="sip"
  8805. type="1" >
  8806. <productMenuType version="1.0"
  8807. type="0"
  8808. />
  8809. </productMenu>
  8810. <productMenu id="bluetoothIntercom"
  8811. type="1" >
  8812. <productMenuType version="1.0"
  8813. type="0"
  8814. />
  8815. </productMenu>
  8816. <productMenu id="intercomSetting"
  8817. type="1" >
  8818. </productMenu>
  8819. <productMenu id="phone"
  8820. type="2" >
  8821. </productMenu>
  8822. <productMenu id="fmradio"
  8823. type="3" >
  8824. </productMenu>
  8825. <productMenu id="deviceSetting"
  8826. type="1"
  8827. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8828. <productMenuURL version="2.0.2"
  8829. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8830. />
  8831. <productMenuURL version="1.5"
  8832. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8833. />
  8834. <productMenuURL version="1.4.1"
  8835. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8836. />
  8837. <productMenuURL version="1.1"
  8838. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8839. />
  8840. <productMenuURL version="1.0"
  8841. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8842. />
  8843. </productMenu>
  8844. <productMenu id="quickGuide"
  8845. type="0"
  8846. url=""
  8847. size="264KB" >
  8848. </productMenu>
  8849. <productMenu id="userGuide"
  8850. type="1"
  8851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8852. size="3.09MB" >
  8853. </productMenu>
  8854. <productMenu id="connectGuide"
  8855. type="1"
  8856. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8857. size="1.12MB" >
  8858. </productMenu>
  8859. <productID id="4210"
  8860. />
  8861. <productGroupable type="1"
  8862. />
  8863. </product>
  8864. <product id="20S_EVO"
  8865. name="20S EVO"
  8866. series="20"
  8867. latestVersion="2.2.3"
  8868. show = "1" >
  8869. <productMenu id="protocol"
  8870. type="0">
  8871. </productMenu>
  8872. <productMenu id="wa"
  8873. type="5" >
  8874. </productMenu>
  8875. <productMenu id="sip"
  8876. type="1" >
  8877. <productMenuType version="1.0"
  8878. type="0"
  8879. />
  8880. </productMenu>
  8881. <productMenu id="bluetoothIntercom"
  8882. type="1" >
  8883. <productMenuType version="1.0"
  8884. type="0"
  8885. />
  8886. </productMenu>
  8887. <productMenu id="intercomSetting"
  8888. type="1" >
  8889. </productMenu>
  8890. <productMenu id="phone"
  8891. type="2" >
  8892. </productMenu>
  8893. <productMenu id="fmradio"
  8894. type="3" >
  8895. </productMenu>
  8896. <productMenu id="deviceSetting"
  8897. type="1"
  8898. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8899. <productMenuURL version="2.0.2"
  8900. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8901. />
  8902. <productMenuURL version="1.5"
  8903. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8904. />
  8905. <productMenuURL version="1.4.1"
  8906. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8907. />
  8908. <productMenuURL version="1.1"
  8909. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8910. />
  8911. <productMenuURL version="1.0"
  8912. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8913. />
  8914. </productMenu>
  8915. <productMenu id="quickGuide"
  8916. type="0"
  8917. url=""
  8918. size="264KB" >
  8919. </productMenu>
  8920. <productMenu id="userGuide"
  8921. type="1"
  8922. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8923. size="3.09MB" >
  8924. </productMenu>
  8925. <productMenu id="connectGuide"
  8926. type="1"
  8927. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8928. size="1.12MB" >
  8929. </productMenu>
  8930. <productID id="4210"
  8931. />
  8932. <productProductKey key="16"
  8933. />
  8934. <productGroupable type="1"
  8935. />
  8936. </product>
  8937. <product id="10S"
  8938. name="10S"
  8939. series="10"
  8940. latestVersion="3.0.2"
  8941. show = "1" >
  8942. <productMenu id="protocol"
  8943. type="3" >
  8944. </productMenu>
  8945. <productMenu id="sip"
  8946. type="1" >
  8947. </productMenu>
  8948. <productMenu id="bluetoothIntercom"
  8949. type="1" >
  8950. </productMenu>
  8951. <productMenu id="phone"
  8952. type="1" >
  8953. </productMenu>
  8954. <productMenu id="deviceSetting"
  8955. type="1"
  8956. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8957. </productMenu>
  8958. <productMenu id="quickGuide"
  8959. type="1"
  8960. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8961. size="934KB" >
  8962. </productMenu>
  8963. <productMenu id="userGuide"
  8964. type="1"
  8965. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8966. size="1.14MB" >
  8967. </productMenu>
  8968. <productMenu id="connectGuide"
  8969. type="1"
  8970. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8971. size="1.12MB" >
  8972. </productMenu>
  8973. <productID id="3380"
  8974. />
  8975. <productGroupable type="0"
  8976. />
  8977. </product>
  8978. <product id="10S"
  8979. name="10S"
  8980. series="10"
  8981. latestVersion="2.1.1"
  8982. show = "-1" >
  8983. <productMenu id="protocol"
  8984. type="0">
  8985. </productMenu>
  8986. <productMenu id="sip"
  8987. type="1" >
  8988. </productMenu>
  8989. <productMenu id="bluetoothIntercom"
  8990. type="1" >
  8991. </productMenu>
  8992. <productMenu id="phone"
  8993. type="2" >
  8994. </productMenu>
  8995. <productMenu id="fmradio"
  8996. type="3" >
  8997. </productMenu>
  8998. <productMenu id="deviceSetting"
  8999. type="1"
  9000. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9001. <productMenuURL version="1.5"
  9002. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9003. />
  9004. <productMenuURL version="1.3.1"
  9005. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9006. />
  9007. </productMenu>
  9008. <productMenu id="quickGuide"
  9009. type="1"
  9010. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9011. size="310KB" >
  9012. </productMenu>
  9013. <productMenu id="userGuide"
  9014. type="1"
  9015. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9016. size="1.57MB" >
  9017. </productMenu>
  9018. <productID id="5530"
  9019. />
  9020. <productGroupable type="0"
  9021. />
  9022. </product>
  9023. <product id="Apex"
  9024. name="Apex"
  9025. series="Apex"
  9026. latestVersion="1.0"
  9027. latestVersionVoicePrompt="0.2"
  9028. show = "-1" >
  9029. <productMenu id="protocol"
  9030. type="2" >
  9031. </productMenu>
  9032. <productMenu id="warranty"
  9033. type="1" >
  9034. </productMenu>
  9035. <productMenu id="serialNumber"
  9036. type="1" >
  9037. </productMenu>
  9038. <productMenu id="ota"
  9039. type="2" >
  9040. <otaLanguages>
  9041. <otaLanguage
  9042. id="0"
  9043. name="English"
  9044. package="0"
  9045. />
  9046. <otaLanguage
  9047. id="0"
  9048. name="French"
  9049. package="1"
  9050. />
  9051. <otaLanguage
  9052. id="0"
  9053. name="Spanish"
  9054. package="2"
  9055. />
  9056. <otaLanguage
  9057. id="0"
  9058. name="Italian"
  9059. package="3"
  9060. />
  9061. <otaLanguage
  9062. id="0"
  9063. name="German"
  9064. package="4"
  9065. />
  9066. <otaLanguage
  9067. id="0"
  9068. name="Dutch"
  9069. package="5"
  9070. />
  9071. <otaLanguage
  9072. id="0"
  9073. name="Russian"
  9074. package="6"
  9075. />
  9076. <otaLanguage
  9077. id="0"
  9078. name="Chinese"
  9079. package="7"
  9080. />
  9081. <otaLanguage
  9082. id="0"
  9083. name="Korean"
  9084. package="8"
  9085. />
  9086. <otaLanguage
  9087. id="0"
  9088. name="Japanese"
  9089. package="9"
  9090. />
  9091. <otaLanguage
  9092. id="0"
  9093. name="Finnish"
  9094. package="10"
  9095. />
  9096. <otaLanguage
  9097. id="0"
  9098. name="Polish"
  9099. package="11"
  9100. />
  9101. </otaLanguages>
  9102. <otaPackages>
  9103. <package
  9104. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9105. size="5183988"
  9106. />
  9107. <package
  9108. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9109. size="5183988"
  9110. />
  9111. <package
  9112. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9113. size="5183988"
  9114. />
  9115. <package
  9116. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9117. size="5183988"
  9118. />
  9119. <package
  9120. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9121. size="5183988"
  9122. />
  9123. <package
  9124. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9125. size="5183988"
  9126. />
  9127. <package
  9128. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9129. size="5183988"
  9130. />
  9131. <package
  9132. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9133. size="5183988"
  9134. />
  9135. <package
  9136. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9137. size="5183988"
  9138. />
  9139. <package
  9140. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9141. size="5183988"
  9142. />
  9143. <package
  9144. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9145. size="5183988"
  9146. />
  9147. <package
  9148. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9149. size="5183988"
  9150. />
  9151. </otaPackages>
  9152. </productMenu>
  9153. <productMenu id="sip"
  9154. type="1" >
  9155. </productMenu>
  9156. <productMenu id="bluetoothIntercom"
  9157. type="1" >
  9158. </productMenu>
  9159. <productMenu id="phone"
  9160. type="1" >
  9161. </productMenu>
  9162. <productMenu id="music"
  9163. type="1" >
  9164. </productMenu>
  9165. <productMenu id="fmradio"
  9166. type="1"
  9167. url="1" >
  9168. </productMenu>
  9169. <productMenu id="deviceSetting"
  9170. type="1"
  9171. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9172. <productMenuURL version="1.0"
  9173. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9174. />
  9175. </productMenu>
  9176. <productMenu id="quickGuide"
  9177. type="0"
  9178. url=""
  9179. size="934KB" >
  9180. </productMenu>
  9181. <productMenu id="userGuide"
  9182. type="1"
  9183. url=""
  9184. size="1.14MB" >
  9185. </productMenu>
  9186. <productMenu id="volume+"
  9187. type="2"
  9188. url="0x0000" >
  9189. </productMenu>
  9190. <productMenu id="appearance"
  9191. type="1"
  9192. url="1|white,silver,black" >
  9193. </productMenu>
  9194. <productMenu id="battery"
  9195. type="1" >
  9196. </productMenu>
  9197. <productID id="3452"
  9198. />
  9199. <productGroupable type="0"
  9200. />
  9201. </product>
  9202. <product id="ApexPlus"
  9203. name="Apex Plus"
  9204. series="Apex"
  9205. latestVersion="1.0"
  9206. latestVersionVoicePrompt="0.2"
  9207. show = "-1" >
  9208. <productMenu id="protocol"
  9209. type="2" >
  9210. </productMenu>
  9211. <productMenu id="warranty"
  9212. type="1" >
  9213. </productMenu>
  9214. <productMenu id="serialNumber"
  9215. type="1" >
  9216. </productMenu>
  9217. <productMenu id="ota"
  9218. type="2" >
  9219. <otaLanguages>
  9220. <otaLanguage
  9221. id="0"
  9222. name="English"
  9223. package="0"
  9224. />
  9225. <otaLanguage
  9226. id="0"
  9227. name="French"
  9228. package="1"
  9229. />
  9230. <otaLanguage
  9231. id="0"
  9232. name="Spanish"
  9233. package="2"
  9234. />
  9235. <otaLanguage
  9236. id="0"
  9237. name="Italian"
  9238. package="3"
  9239. />
  9240. <otaLanguage
  9241. id="0"
  9242. name="German"
  9243. package="4"
  9244. />
  9245. <otaLanguage
  9246. id="0"
  9247. name="Dutch"
  9248. package="5"
  9249. />
  9250. <otaLanguage
  9251. id="0"
  9252. name="Russian"
  9253. package="6"
  9254. />
  9255. <otaLanguage
  9256. id="0"
  9257. name="Chinese"
  9258. package="7"
  9259. />
  9260. <otaLanguage
  9261. id="0"
  9262. name="Korean"
  9263. package="8"
  9264. />
  9265. <otaLanguage
  9266. id="0"
  9267. name="Japanese"
  9268. package="9"
  9269. />
  9270. <otaLanguage
  9271. id="0"
  9272. name="Finnish"
  9273. package="10"
  9274. />
  9275. <otaLanguage
  9276. id="0"
  9277. name="Polish"
  9278. package="11"
  9279. />
  9280. </otaLanguages>
  9281. <otaPackages>
  9282. <package
  9283. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9284. size="5183988"
  9285. />
  9286. <package
  9287. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9288. size="5183988"
  9289. />
  9290. <package
  9291. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9292. size="5183988"
  9293. />
  9294. <package
  9295. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9296. size="5183988"
  9297. />
  9298. <package
  9299. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9300. size="5183988"
  9301. />
  9302. <package
  9303. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9304. size="5183988"
  9305. />
  9306. <package
  9307. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9308. size="5183988"
  9309. />
  9310. <package
  9311. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9312. size="5183988"
  9313. />
  9314. <package
  9315. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9316. size="5183988"
  9317. />
  9318. <package
  9319. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9320. size="5183988"
  9321. />
  9322. <package
  9323. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9324. size="5183988"
  9325. />
  9326. <package
  9327. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9328. size="5183988"
  9329. />
  9330. </otaPackages>
  9331. </productMenu>
  9332. <productMenu id="sip"
  9333. type="1" >
  9334. </productMenu>
  9335. <productMenu id="bluetoothIntercom"
  9336. type="1" >
  9337. </productMenu>
  9338. <productMenu id="phone"
  9339. type="1" >
  9340. </productMenu>
  9341. <productMenu id="music"
  9342. type="1" >
  9343. </productMenu>
  9344. <productMenu id="fmradio"
  9345. type="1"
  9346. url="1" >
  9347. </productMenu>
  9348. <productMenu id="deviceSetting"
  9349. type="1"
  9350. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9351. <productMenuURL version="1.0"
  9352. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9353. />
  9354. </productMenu>
  9355. <productMenu id="quickGuide"
  9356. type="0"
  9357. url=""
  9358. size="934KB" >
  9359. </productMenu>
  9360. <productMenu id="userGuide"
  9361. type="1"
  9362. url=""
  9363. size="1.14MB" >
  9364. </productMenu>
  9365. <productMenu id="volume+"
  9366. type="2"
  9367. url="0x0000" >
  9368. </productMenu>
  9369. <productMenu id="appearance"
  9370. type="1"
  9371. url="1|white,silver,black" >
  9372. </productMenu>
  9373. <productMenu id="battery"
  9374. type="1" >
  9375. </productMenu>
  9376. <productID id="3453"
  9377. />
  9378. <productGroupable type="0"
  9379. />
  9380. </product>
  9381. <product id="10R2"
  9382. name="10R 2"
  9383. series="10"
  9384. latestVersion="0.9"
  9385. latestVersionVoicePrompt="1.1"
  9386. show = "-1" >
  9387. <productMenu id="protocol"
  9388. type="2" >
  9389. </productMenu>
  9390. <productMenu id="ota"
  9391. type="2" >
  9392. <otaPackages>
  9393. <package
  9394. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9395. size="2945812"
  9396. />
  9397. </otaPackages>
  9398. </productMenu>
  9399. <productMenu id="sip"
  9400. type="1" >
  9401. </productMenu>
  9402. <productMenu id="bluetoothIntercom"
  9403. type="1" >
  9404. </productMenu>
  9405. <productMenu id="phone"
  9406. type="1" >
  9407. </productMenu>
  9408. <productMenu id="music"
  9409. type="1" >
  9410. </productMenu>
  9411. <productMenu id="fmradio"
  9412. type="1"
  9413. url="1" >
  9414. </productMenu>
  9415. <productMenu id="deviceSetting"
  9416. type="1"
  9417. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9418. </productMenu>
  9419. <productMenu id="quickGuide"
  9420. type="1"
  9421. url=""
  9422. size="934KB" >
  9423. </productMenu>
  9424. <productMenu id="userGuide"
  9425. type="0"
  9426. url=""
  9427. size="1.14MB" >
  9428. </productMenu>
  9429. <productMenu id="volume"
  9430. type="15" >
  9431. </productMenu>
  9432. <productID id="4000"
  9433. />
  9434. <productGroupable type="0"
  9435. />
  9436. </product>
  9437. <product id="10R"
  9438. name="10R"
  9439. series="10"
  9440. latestVersion="2.1.1"
  9441. show = "1" >
  9442. <productMenu id="protocol"
  9443. type="0">
  9444. </productMenu>
  9445. <productMenu id="sip"
  9446. type="1" >
  9447. <productMenuType version="1.0.2"
  9448. type="0"
  9449. />
  9450. </productMenu>
  9451. <productMenu id="bluetoothIntercom"
  9452. type="1" >
  9453. <productMenuType version="1.0.2"
  9454. type="0"
  9455. />
  9456. </productMenu>
  9457. <productMenu id="phone"
  9458. type="2" >
  9459. </productMenu>
  9460. <productMenu id="fmradio"
  9461. type="3" >
  9462. </productMenu>
  9463. <productMenu id="deviceSetting"
  9464. type="1"
  9465. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9466. <productMenuURL version="1.4"
  9467. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9468. />
  9469. <productMenuURL version="1.2.1"
  9470. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9471. />
  9472. <productMenuURL version="1.0.2"
  9473. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9474. />
  9475. <productMenuURL version="1.0"
  9476. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9477. />
  9478. </productMenu>
  9479. <productMenu id="quickGuide"
  9480. type="1"
  9481. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9482. size="400KB" >
  9483. </productMenu>
  9484. <productMenu id="userGuide"
  9485. type="1"
  9486. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9487. size="2.75MB" >
  9488. </productMenu>
  9489. <productMenu id="connectGuide"
  9490. type="1"
  9491. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9492. size="1.12MB" >
  9493. </productMenu>
  9494. <productID id="5520"
  9495. />
  9496. <productGroupable type="0"
  9497. />
  9498. </product>
  9499. <product id="10C_EVO"
  9500. name="10C EVO"
  9501. series="10"
  9502. latestVersion="1.7"
  9503. show = "1" >
  9504. <productMenu id="protocol"
  9505. type="0">
  9506. </productMenu>
  9507. <productMenu id="sip"
  9508. type="1" >
  9509. </productMenu>
  9510. <productMenu id="bluetoothIntercom"
  9511. type="1" >
  9512. </productMenu>
  9513. <productMenu id="phone"
  9514. type="2" >
  9515. </productMenu>
  9516. <productMenu id="fmradio"
  9517. type="3" >
  9518. </productMenu>
  9519. <productMenu id="deviceSetting"
  9520. type="1"
  9521. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9522. <productMenuURL version="1.3.1"
  9523. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9524. />
  9525. </productMenu>
  9526. <productMenu id="quickGuide"
  9527. type="1"
  9528. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9529. size="1.32MB" >
  9530. </productMenu>
  9531. <productMenu id="userGuide"
  9532. type="1"
  9533. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9534. size="1.68MB" >
  9535. </productMenu>
  9536. <productMenu id="connectGuide"
  9537. type="1"
  9538. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9539. size="1.12MB" >
  9540. </productMenu>
  9541. <productID id="5570"
  9542. />
  9543. <productGroupable type="0"
  9544. />
  9545. </product>
  9546. <product id="10C_Pro"
  9547. name="10C Pro"
  9548. series="10"
  9549. latestVersion="2.7.1"
  9550. show = "1" >
  9551. <productMenu id="protocol"
  9552. type="0">
  9553. </productMenu>
  9554. <productMenu id="sip"
  9555. type="1" >
  9556. </productMenu>
  9557. <productMenu id="bluetoothIntercom"
  9558. type="1" >
  9559. </productMenu>
  9560. <productMenu id="phone"
  9561. type="2" >
  9562. </productMenu>
  9563. <productMenu id="fmradio"
  9564. type="3" >
  9565. </productMenu>
  9566. <productMenu id="deviceSetting"
  9567. type="1"
  9568. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9569. <productMenuURL version="2.5.1"
  9570. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9571. />
  9572. <productMenuURL version="1.0"
  9573. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9574. />
  9575. </productMenu>
  9576. <productMenu id="quickGuide"
  9577. type="1"
  9578. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9579. size="651KB" >
  9580. </productMenu>
  9581. <productMenu id="userGuide"
  9582. type="1"
  9583. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9584. size="2.34MB" >
  9585. </productMenu>
  9586. <productMenu id="connectGuide"
  9587. type="1"
  9588. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9589. size="1.12MB" >
  9590. </productMenu>
  9591. <productID id="5580"
  9592. />
  9593. <productGroupable type="0"
  9594. />
  9595. </product>
  9596. <product id="10C"
  9597. name="10C"
  9598. series="10"
  9599. latestVersion="3.0.4"
  9600. show = "1" >
  9601. <productMenu id="protocol"
  9602. type="0">
  9603. </productMenu>
  9604. <productMenu id="sip"
  9605. type="1" >
  9606. <productMenuType version="1.0.4"
  9607. type="0"
  9608. />
  9609. </productMenu>
  9610. <productMenu id="bluetoothIntercom"
  9611. type="1" >
  9612. <productMenuType version="1.0.4"
  9613. type="0"
  9614. />
  9615. </productMenu>
  9616. <productMenu id="phone"
  9617. type="2" >
  9618. </productMenu>
  9619. <productMenu id="fmradio"
  9620. type="3" >
  9621. </productMenu>
  9622. <productMenu id="deviceSetting"
  9623. type="1"
  9624. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9625. <productMenuURL version="2.3"
  9626. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9627. />
  9628. <productMenuURL version="2.1.1"
  9629. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9630. />
  9631. <productMenuURL version="1.0.4"
  9632. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9633. />
  9634. <productMenuURL version="1.0.2"
  9635. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9636. />
  9637. </productMenu>
  9638. <productMenu id="quickGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9641. size="935KB" >
  9642. </productMenu>
  9643. <productMenu id="userGuide"
  9644. type="1"
  9645. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9646. size="2.82MB" >
  9647. </productMenu>
  9648. <productMenu id="connectGuide"
  9649. type="1"
  9650. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9651. size="1.12MB" >
  9652. </productMenu>
  9653. <productID id="5510"
  9654. />
  9655. <productGroupable type="0"
  9656. />
  9657. </product>
  9658. <product id="10U_GT_AIR"
  9659. name="10U GT-Air"
  9660. series="10"
  9661. latestVersion="2.0.4"
  9662. show = "1" >
  9663. <productMenu id="protocol"
  9664. type="0">
  9665. </productMenu>
  9666. <productMenu id="sip"
  9667. type="1" >
  9668. <productMenuType version="1.0.2"
  9669. type="0"
  9670. />
  9671. </productMenu>
  9672. <productMenu id="bluetoothIntercom"
  9673. type="1" >
  9674. <productMenuType version="1.0.2"
  9675. type="0"
  9676. />
  9677. </productMenu>
  9678. <productMenu id="phone"
  9679. type="2" >
  9680. </productMenu>
  9681. <productMenu id="fmradio"
  9682. type="3" >
  9683. </productMenu>
  9684. <productMenu id="deviceSetting"
  9685. type="1"
  9686. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9687. <productMenuURL version="1.3.2"
  9688. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9689. />
  9690. <productMenuURL version="1.0.2"
  9691. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9692. />
  9693. </productMenu>
  9694. <productMenu id="quickGuide"
  9695. type="1"
  9696. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9697. size="685KB" >
  9698. </productMenu>
  9699. <productMenu id="userGuide"
  9700. type="1"
  9701. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9702. size="684KB" >
  9703. </productMenu>
  9704. <productMenu id="connectGuide"
  9705. type="1"
  9706. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9707. size="1.12MB" >
  9708. </productMenu>
  9709. <productID id="5610"
  9710. />
  9711. <productGroupable type="0"
  9712. />
  9713. </product>
  9714. <product id="10U_NEOTEC"
  9715. name="10U Neotec"
  9716. series="10"
  9717. latestVersion="2.0.4"
  9718. show = "1" >
  9719. <productMenu id="protocol"
  9720. type="0">
  9721. </productMenu>
  9722. <productMenu id="sip"
  9723. type="1" >
  9724. <productMenuType version="1.0.2"
  9725. type="0"
  9726. />
  9727. </productMenu>
  9728. <productMenu id="bluetoothIntercom"
  9729. type="1" >
  9730. <productMenuType version="1.0.2"
  9731. type="0"
  9732. />
  9733. </productMenu>
  9734. <productMenu id="phone"
  9735. type="2" >
  9736. </productMenu>
  9737. <productMenu id="fmradio"
  9738. type="3" >
  9739. </productMenu>
  9740. <productMenu id="deviceSetting"
  9741. type="1"
  9742. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9743. <productMenuURL version="1.3.2"
  9744. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9745. />
  9746. <productMenuURL version="1.0.2"
  9747. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9748. />
  9749. </productMenu>
  9750. <productMenu id="quickGuide"
  9751. type="1"
  9752. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9753. size="689KB" >
  9754. </productMenu>
  9755. <productMenu id="userGuide"
  9756. type="1"
  9757. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9758. size="684KB" >
  9759. </productMenu>
  9760. <productMenu id="connectGuide"
  9761. type="1"
  9762. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9763. size="1.12MB" >
  9764. </productMenu>
  9765. <productID id="5611"
  9766. />
  9767. <productGroupable type="0"
  9768. />
  9769. </product>
  9770. <product id="10U_J_CRUISE"
  9771. name="10U J-Cruise"
  9772. series="10"
  9773. latestVersion="2.0.4"
  9774. show = "1" >
  9775. <productMenu id="protocol"
  9776. type="0">
  9777. </productMenu>
  9778. <productMenu id="sip"
  9779. type="1" >
  9780. <productMenuType version="1.0.2"
  9781. type="0"
  9782. />
  9783. </productMenu>
  9784. <productMenu id="bluetoothIntercom"
  9785. type="1" >
  9786. <productMenuType version="1.0.2"
  9787. type="0"
  9788. />
  9789. </productMenu>
  9790. <productMenu id="phone"
  9791. type="2" >
  9792. </productMenu>
  9793. <productMenu id="fmradio"
  9794. type="3" >
  9795. </productMenu>
  9796. <productMenu id="deviceSetting"
  9797. type="1"
  9798. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9799. <productMenuURL version="1.3.2"
  9800. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9801. />
  9802. <productMenuURL version="1.0.2"
  9803. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9804. />
  9805. </productMenu>
  9806. <productMenu id="quickGuide"
  9807. type="1"
  9808. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9809. size="686KB" >
  9810. </productMenu>
  9811. <productMenu id="userGuide"
  9812. type="1"
  9813. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9814. size="684KB" >
  9815. </productMenu>
  9816. <productMenu id="connectGuide"
  9817. type="1"
  9818. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9819. size="1.12MB" >
  9820. </productMenu>
  9821. <productID id="5612"
  9822. />
  9823. <productGroupable type="0"
  9824. />
  9825. </product>
  9826. <product id="10U_C3"
  9827. name="10U C3/C3Pro"
  9828. series="10"
  9829. latestVersion="2.0.4"
  9830. show = "1" >
  9831. <productMenu id="protocol"
  9832. type="0">
  9833. </productMenu>
  9834. <productMenu id="sip"
  9835. type="1" >
  9836. <productMenuType version="1.0.2"
  9837. type="0"
  9838. />
  9839. </productMenu>
  9840. <productMenu id="bluetoothIntercom"
  9841. type="1" >
  9842. <productMenuType version="1.0.2"
  9843. type="0"
  9844. />
  9845. </productMenu>
  9846. <productMenu id="phone"
  9847. type="2" >
  9848. </productMenu>
  9849. <productMenu id="fmradio"
  9850. type="3" >
  9851. </productMenu>
  9852. <productMenu id="deviceSetting"
  9853. type="1"
  9854. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9855. <productMenuURL version="1.3.2"
  9856. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9857. />
  9858. <productMenuURL version="1.0.2"
  9859. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9860. />
  9861. </productMenu>
  9862. <productMenu id="quickGuide"
  9863. type="1"
  9864. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9865. size="199KB" >
  9866. </productMenu>
  9867. <productMenu id="userGuide"
  9868. type="1"
  9869. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9870. size="684KB" >
  9871. </productMenu>
  9872. <productMenu id="connectGuide"
  9873. type="1"
  9874. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9875. size="1.12MB" >
  9876. </productMenu>
  9877. <productID id="5620"
  9878. />
  9879. <productGroupable type="0"
  9880. />
  9881. </product>
  9882. <product id="10U_ARAI"
  9883. name="10U Arai"
  9884. series="10"
  9885. latestVersion="2.0.4"
  9886. show = "1" >
  9887. <productMenu id="protocol"
  9888. type="0">
  9889. </productMenu>
  9890. <productMenu id="sip"
  9891. type="1" >
  9892. <productMenuType version="1.0.2"
  9893. type="0"
  9894. />
  9895. </productMenu>
  9896. <productMenu id="bluetoothIntercom"
  9897. type="1" >
  9898. <productMenuType version="1.0.2"
  9899. type="0"
  9900. />
  9901. </productMenu>
  9902. <productMenu id="phone"
  9903. type="2" >
  9904. </productMenu>
  9905. <productMenu id="fmradio"
  9906. type="3" >
  9907. </productMenu>
  9908. <productMenu id="deviceSetting"
  9909. type="1"
  9910. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9911. <productMenuURL version="1.3.2"
  9912. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9913. />
  9914. <productMenuURL version="1.0.2"
  9915. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9916. />
  9917. </productMenu>
  9918. <productMenu id="quickGuide"
  9919. type="1"
  9920. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9921. size="689KB" >
  9922. </productMenu>
  9923. <productMenu id="userGuide"
  9924. type="1"
  9925. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9926. size="684KB" >
  9927. </productMenu>
  9928. <productMenu id="connectGuide"
  9929. type="1"
  9930. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9931. size="1.12MB" >
  9932. </productMenu>
  9933. <productID id="5621"
  9934. />
  9935. <productGroupable type="0"
  9936. />
  9937. </product>
  9938. <product id="10Upad"
  9939. name="10Upad"
  9940. series="10"
  9941. latestVersion="2.0.3"
  9942. show = "1" >
  9943. <productMenu id="protocol"
  9944. type="0">
  9945. </productMenu>
  9946. <productMenu id="sip"
  9947. type="1" >
  9948. </productMenu>
  9949. <productMenu id="bluetoothIntercom"
  9950. type="1" >
  9951. </productMenu>
  9952. <productMenu id="phone"
  9953. type="2" >
  9954. </productMenu>
  9955. <productMenu id="fmradio"
  9956. type="3" >
  9957. </productMenu>
  9958. <productMenu id="deviceSetting"
  9959. type="1"
  9960. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9961. <productMenuURL version="1.0.3"
  9962. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9963. />
  9964. </productMenu>
  9965. <productMenu id="quickGuide"
  9966. type="1"
  9967. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9968. size="615KB" >
  9969. </productMenu>
  9970. <productMenu id="userGuide"
  9971. type="1"
  9972. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9973. size="0.99MB" >
  9974. </productMenu>
  9975. <productMenu id="connectGuide"
  9976. type="1"
  9977. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9978. size="1.12MB" >
  9979. </productMenu>
  9980. <productID id="6210"
  9981. />
  9982. <productGroupable type="0"
  9983. />
  9984. </product>
  9985. <product id="5S"
  9986. name="5S"
  9987. series="5"
  9988. latestVersion="2.3.1"
  9989. show = "1" >
  9990. <productMenu id="protocol"
  9991. type="3" >
  9992. </productMenu>
  9993. <productMenu id="sip"
  9994. type="1" >
  9995. </productMenu>
  9996. <productMenu id="bluetoothIntercom"
  9997. type="1" >
  9998. </productMenu>
  9999. <productMenu id="phone"
  10000. type="1" >
  10001. </productMenu>
  10002. <productMenu id="fmradio"
  10003. type="0" >
  10004. </productMenu>
  10005. <productMenu id="deviceSetting"
  10006. type="1"
  10007. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10008. </productMenu>
  10009. <productMenu id="quickGuide"
  10010. type="0"
  10011. url=""
  10012. size="934KB" >
  10013. </productMenu>
  10014. <productMenu id="userGuide"
  10015. type="1"
  10016. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10017. size="1.14MB" >
  10018. </productMenu>
  10019. <productMenu id="connectGuide"
  10020. type="1"
  10021. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10022. size="1.12MB" >
  10023. </productMenu>
  10024. <productID id="5590"
  10025. />
  10026. <productGroupable type="0"
  10027. />
  10028. </product>
  10029. <product id="5S"
  10030. name="5S"
  10031. series="5"
  10032. latestVersion="1.2"
  10033. show = "-1" >
  10034. <productMenu id="protocol"
  10035. type="0">
  10036. </productMenu>
  10037. <productMenu id="sip"
  10038. type="1" >
  10039. </productMenu>
  10040. <productMenu id="bluetoothIntercom"
  10041. type="1" >
  10042. </productMenu>
  10043. <productMenu id="phone"
  10044. type="2" >
  10045. </productMenu>
  10046. <productMenu id="fmradio"
  10047. type="3" >
  10048. </productMenu>
  10049. <productMenu id="deviceSetting"
  10050. type="1"
  10051. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10052. </productMenu>
  10053. <productMenu id="quickGuide"
  10054. type="0"
  10055. url=""
  10056. size="970KB" >
  10057. </productMenu>
  10058. <productMenu id="userGuide"
  10059. type="1"
  10060. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10061. size="1.26MB" >
  10062. </productMenu>
  10063. <productID id="5534"
  10064. />
  10065. <productGroupable type="0"
  10066. />
  10067. </product>
  10068. <product id="5S"
  10069. name="5S"
  10070. series="5"
  10071. latestVersion="3.0.1"
  10072. show = "-1" >
  10073. <productMenu id="protocol"
  10074. type="0">
  10075. </productMenu>
  10076. <productMenu id="sip"
  10077. type="1" >
  10078. </productMenu>
  10079. <productMenu id="bluetoothIntercom"
  10080. type="1" >
  10081. </productMenu>
  10082. <productMenu id="phone"
  10083. type="2" >
  10084. </productMenu>
  10085. <productMenu id="fmradio"
  10086. type="0" >
  10087. </productMenu>
  10088. <productMenu id="deviceSetting"
  10089. type="1"
  10090. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10091. </productMenu>
  10092. <productMenu id="quickGuide"
  10093. type="0"
  10094. url=""
  10095. size="970KB" >
  10096. </productMenu>
  10097. <productMenu id="userGuide"
  10098. type="1"
  10099. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10100. size="1.26MB" >
  10101. </productMenu>
  10102. <productID id="5538"
  10103. />
  10104. <productGroupable type="0"
  10105. />
  10106. </product>
  10107. <product id="3SPLUS"
  10108. name="3S PLUS"
  10109. series="3"
  10110. latestVersion="2.2"
  10111. show = "1" >
  10112. <productMenu id="protocol"
  10113. type="3" >
  10114. </productMenu>
  10115. <productMenu id="sip"
  10116. type="1" >
  10117. </productMenu>
  10118. <productMenu id="bluetoothIntercom"
  10119. type="1" >
  10120. </productMenu>
  10121. <productMenu id="deviceSetting"
  10122. type="1"
  10123. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10124. <productMenuURL version="2.2.1"
  10125. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10126. />
  10127. </productMenu>
  10128. <productMenu id="quickGuide"
  10129. type="1"
  10130. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10131. size="344KB" >
  10132. </productMenu>
  10133. <productMenu id="userGuide"
  10134. type="1"
  10135. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10136. size="1.14MB" >
  10137. </productMenu>
  10138. <productMenu id="connectGuide"
  10139. type="1"
  10140. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10141. size="1.12MB" >
  10142. </productMenu>
  10143. <productID id="4023"
  10144. />
  10145. <productGroupable type="0"
  10146. />
  10147. </product>
  10148. <product id="3SPLUS"
  10149. name="3S PLUS"
  10150. series="3"
  10151. latestVersion="1.1"
  10152. show = "-1" >
  10153. <productMenu id="protocol"
  10154. type="0">
  10155. </productMenu>
  10156. <productMenu id="sip"
  10157. type="1" >
  10158. </productMenu>
  10159. <productMenu id="bluetoothIntercom"
  10160. type="1" >
  10161. </productMenu>
  10162. <productMenu id="deviceSetting"
  10163. type="1"
  10164. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10165. </productMenu>
  10166. <productMenu id="quickGuide"
  10167. type="1"
  10168. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10169. size="842KB" >
  10170. </productMenu>
  10171. <productMenu id="userGuide"
  10172. type="1"
  10173. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10174. size="1.02MB" >
  10175. </productMenu>
  10176. <productID id="6320"
  10177. />
  10178. <productGroupable type="0"
  10179. />
  10180. </product>
  10181. <product id="AConnect"
  10182. name="Alpinestars A-Connect"
  10183. series="60"
  10184. latestVersion="1.0.2"
  10185. latestVersionMesh="0.19"
  10186. latestVersionVoicePrompt="1.6"
  10187. show = "-1" >
  10188. <productMenu id="protocol"
  10189. type="2" >
  10190. </productMenu>
  10191. <productMenu id="ota"
  10192. type="2" >
  10193. <otaLanguages>
  10194. <otaLanguage
  10195. id="0"
  10196. name="English"
  10197. package="0"
  10198. />
  10199. <otaLanguage
  10200. id="0"
  10201. name="French"
  10202. package="1"
  10203. />
  10204. <otaLanguage
  10205. id="0"
  10206. name="Spanish"
  10207. package="2"
  10208. />
  10209. <otaLanguage
  10210. id="0"
  10211. name="Italian"
  10212. package="3"
  10213. />
  10214. <otaLanguage
  10215. id="0"
  10216. name="German"
  10217. package="4"
  10218. />
  10219. <otaLanguage
  10220. id="0"
  10221. name="Dutch"
  10222. package="5"
  10223. />
  10224. <otaLanguage
  10225. id="0"
  10226. name="Russian"
  10227. package="6"
  10228. />
  10229. <otaLanguage
  10230. id="0"
  10231. name="Chinese"
  10232. package="7"
  10233. />
  10234. <otaLanguage
  10235. id="0"
  10236. name="Korean"
  10237. package="8"
  10238. />
  10239. <otaLanguage
  10240. id="0"
  10241. name="Japanese"
  10242. package="9"
  10243. />
  10244. <otaLanguage
  10245. id="0"
  10246. name="Finnish"
  10247. package="10"
  10248. />
  10249. <otaLanguage
  10250. id="0"
  10251. name="Polish"
  10252. package="11"
  10253. />
  10254. </otaLanguages>
  10255. <otaPackages>
  10256. <package
  10257. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10258. size="5183988"
  10259. />
  10260. <package
  10261. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10262. size="5183988"
  10263. />
  10264. <package
  10265. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10266. size="5183988"
  10267. />
  10268. <package
  10269. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10270. size="5183988"
  10271. />
  10272. <package
  10273. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10274. size="5183988"
  10275. />
  10276. <package
  10277. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10278. size="5183988"
  10279. />
  10280. <package
  10281. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10282. size="5183988"
  10283. />
  10284. <package
  10285. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10286. size="5183988"
  10287. />
  10288. <package
  10289. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10290. size="5183988"
  10291. />
  10292. <package
  10293. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10294. size="5183988"
  10295. />
  10296. <package
  10297. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10298. size="5183988"
  10299. />
  10300. <package
  10301. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10302. size="5183988"
  10303. />
  10304. </otaPackages>
  10305. </productMenu>
  10306. <productMenu id="sip"
  10307. type="1" >
  10308. </productMenu>
  10309. <productMenu id="illusion"
  10310. type="0" >
  10311. </productMenu>
  10312. <productMenu id="meshIntercom+"
  10313. type="3"
  10314. url="2" >
  10315. </productMenu>
  10316. <productMenu id="waveIntercom"
  10317. type="1" >
  10318. </productMenu>
  10319. <productMenu id="bluetoothIntercom"
  10320. type="1"
  10321. url="2" >
  10322. </productMenu>
  10323. <productMenu id="bluetoothIntercomGrouping"
  10324. type="0" >
  10325. </productMenu>
  10326. <productMenu id="fmradio"
  10327. type="1"
  10328. url="1" >
  10329. </productMenu>
  10330. <productMenu id="phone"
  10331. type="1" >
  10332. </productMenu>
  10333. <productMenu id="music"
  10334. type="1" >
  10335. </productMenu>
  10336. <productMenu id="musicSharing"
  10337. type="0" >
  10338. </productMenu>
  10339. <productMenu id="deviceSetting"
  10340. type="1"
  10341. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10342. </productMenu>
  10343. <productMenu id="quickGuide"
  10344. type="0"
  10345. url=""
  10346. size="1.12MB" >
  10347. </productMenu>
  10348. <productMenu id="userGuide"
  10349. type="1"
  10350. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10351. size="2.0MB" >
  10352. </productMenu>
  10353. <productMenu id="videoGuide"
  10354. type="0"
  10355. url=""
  10356. size="3.41MB" >
  10357. </productMenu>
  10358. <productMenu id="volume"
  10359. type="16" >
  10360. </productMenu>
  10361. <productMenu id="volume+"
  10362. type="2"
  10363. url="0x6004" >
  10364. </productMenu>
  10365. <productMenu id="soundMode"
  10366. type="0" >
  10367. </productMenu>
  10368. <productMenu id="battery"
  10369. type="1" >
  10370. </productMenu>
  10371. <productID id="6A82"
  10372. />
  10373. <productGroupable type="0"
  10374. />
  10375. </product>
  10376. <product id="iCon"
  10377. name="iCon"
  10378. series="50"
  10379. latestVersion="1.2"
  10380. show = "0" >
  10381. <productMenu id="protocol"
  10382. type="2" >
  10383. </productMenu>
  10384. <productMenu id="alexa"
  10385. type="0" >
  10386. </productMenu>
  10387. <productMenu id="wa"
  10388. type="0" >
  10389. </productMenu>
  10390. <productMenu id="sip"
  10391. type="1" >
  10392. </productMenu>
  10393. <productMenu id="led"
  10394. type="3" >
  10395. </productMenu>
  10396. <productMenu id="meshIntercom"
  10397. type="20" >
  10398. </productMenu>
  10399. <productMenu id="meshIntercom+"
  10400. type="3"
  10401. url="0" >
  10402. <productMenuType version="1.0.9"
  10403. type="2"
  10404. />
  10405. </productMenu>
  10406. <productMenu id="bluetoothIntercom"
  10407. type="1" >
  10408. </productMenu>
  10409. <productMenu id="phone"
  10410. type="1" >
  10411. </productMenu>
  10412. <productMenu id="music"
  10413. type="1" >
  10414. </productMenu>
  10415. <productMenu id="fmradio"
  10416. type="1" >
  10417. </productMenu>
  10418. <productMenu id="deviceSetting"
  10419. type="1"
  10420. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10421. <productMenuURL version="1.0.9"
  10422. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10423. />
  10424. </productMenu>
  10425. <productMenu id="quickGuide"
  10426. type="1"
  10427. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10428. size="344KB" >
  10429. </productMenu>
  10430. <productMenu id="userGuide"
  10431. type="1"
  10432. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10433. size="3.41MB" >
  10434. </productMenu>
  10435. <productMenu id="volume"
  10436. type="11" >
  10437. </productMenu>
  10438. <productMenu id="battery"
  10439. type="1" >
  10440. </productMenu>
  10441. <productID id="3900"
  10442. />
  10443. <productGroupable type="0"
  10444. />
  10445. </product>
  10446. <product id="ICONHelmLinkSL"
  10447. name="ICON HelmLink SL"
  10448. series="50"
  10449. latestVersion="1.0"
  10450. latestVersionVoicePrompt="1.6"
  10451. show = "-1" >
  10452. <productMenu id="protocol"
  10453. type="2" >
  10454. </productMenu>
  10455. <productMenu id="alexa"
  10456. type="0" >
  10457. </productMenu>
  10458. <productMenu id="ota"
  10459. type="2" >
  10460. <otaPackages>
  10461. <package
  10462. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10463. size="2945812"
  10464. />
  10465. </otaPackages>
  10466. </productMenu>
  10467. <productMenu id="wa"
  10468. type="0" >
  10469. </productMenu>
  10470. <productMenu id="meshIntercom"
  10471. type="30" >
  10472. </productMenu>
  10473. <productMenu id="meshIntercom+"
  10474. type="3"
  10475. url="2" >
  10476. </productMenu>
  10477. <productMenu id="waveIntercom"
  10478. type="1" >
  10479. </productMenu>
  10480. <productMenu id="phone"
  10481. type="1" >
  10482. </productMenu>
  10483. <productMenu id="music"
  10484. type="1" >
  10485. </productMenu>
  10486. <productMenu id="musicSharing"
  10487. type="0" >
  10488. </productMenu>
  10489. <productMenu id="deviceSetting"
  10490. type="1"
  10491. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10492. </productMenu>
  10493. <productMenu id="quickGuide"
  10494. type="0"
  10495. url=""
  10496. size="1.12MB" >
  10497. </productMenu>
  10498. <productMenu id="userGuide"
  10499. type="1"
  10500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10501. size="2.0MB" >
  10502. </productMenu>
  10503. <productMenu id="volume"
  10504. type="12" >
  10505. </productMenu>
  10506. <productMenu id="battery"
  10507. type="1" >
  10508. </productMenu>
  10509. <productID id="6842"
  10510. />
  10511. <productGroupable type="0"
  10512. />
  10513. </product>
  10514. <product id="HD50S"
  10515. name="H-D Audio 50S"
  10516. series="50"
  10517. latestVersion="1.0.1"
  10518. show = "-1" >
  10519. <productMenu id="protocol"
  10520. type="2" >
  10521. </productMenu>
  10522. <productMenu id="alexa"
  10523. type="0" >
  10524. </productMenu>
  10525. <productMenu id="ota"
  10526. type="0"
  10527. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10528. size="1150234" >
  10529. </productMenu>
  10530. <productMenu id="wa"
  10531. type="1" >
  10532. </productMenu>
  10533. <productMenu id="sip"
  10534. type="1" >
  10535. </productMenu>
  10536. <productMenu id="meshIntercom"
  10537. type="20" >
  10538. </productMenu>
  10539. <productMenu id="meshIntercom+"
  10540. type="3"
  10541. url="0" >
  10542. <productMenuType version="1.0.9"
  10543. type="2"
  10544. />
  10545. </productMenu>
  10546. <productMenu id="bluetoothIntercom"
  10547. type="1" >
  10548. </productMenu>
  10549. <productMenu id="phone"
  10550. type="1" >
  10551. </productMenu>
  10552. <productMenu id="music"
  10553. type="1" >
  10554. </productMenu>
  10555. <productMenu id="fmradio"
  10556. type="1" >
  10557. </productMenu>
  10558. <productMenu id="deviceSetting"
  10559. type="1"
  10560. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10561. <productMenuURL version="1.0.9"
  10562. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10563. />
  10564. </productMenu>
  10565. <productMenu id="quickGuide"
  10566. type="1"
  10567. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10568. size="934KB" >
  10569. </productMenu>
  10570. <productMenu id="userGuide"
  10571. type="1"
  10572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10573. size="1.14MB" >
  10574. </productMenu>
  10575. <productMenu id="volume"
  10576. type="11" >
  10577. </productMenu>
  10578. <productMenu id="battery"
  10579. type="1" >
  10580. </productMenu>
  10581. <productID id="3156"
  10582. />
  10583. <productGroupable type="0"
  10584. />
  10585. </product>
  10586. <product id="HD50S"
  10587. name="H-D Audio 50S"
  10588. series="50"
  10589. latestVersion="2.0.2"
  10590. show = "0" >
  10591. <productMenu id="protocol"
  10592. type="2" >
  10593. </productMenu>
  10594. <productMenu id="alexa"
  10595. type="0" >
  10596. </productMenu>
  10597. <productMenu id="ota"
  10598. type="0"
  10599. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10600. size="1150234" >
  10601. </productMenu>
  10602. <productMenu id="wa"
  10603. type="1" >
  10604. </productMenu>
  10605. <productMenu id="sip"
  10606. type="1" >
  10607. </productMenu>
  10608. <productMenu id="meshIntercom"
  10609. type="20" >
  10610. </productMenu>
  10611. <productMenu id="meshIntercom+"
  10612. type="3"
  10613. url="0" >
  10614. <productMenuType version="2.0.9"
  10615. type="2"
  10616. />
  10617. </productMenu>
  10618. <productMenu id="bluetoothIntercom"
  10619. type="1" >
  10620. </productMenu>
  10621. <productMenu id="phone"
  10622. type="1" >
  10623. </productMenu>
  10624. <productMenu id="music"
  10625. type="1" >
  10626. </productMenu>
  10627. <productMenu id="fmradio"
  10628. type="1" >
  10629. </productMenu>
  10630. <productMenu id="deviceSetting"
  10631. type="1"
  10632. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10633. <productMenuURL version="2.0.9"
  10634. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10635. />
  10636. </productMenu>
  10637. <productMenu id="quickGuide"
  10638. type="1"
  10639. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10640. size="934KB" >
  10641. </productMenu>
  10642. <productMenu id="userGuide"
  10643. type="1"
  10644. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10645. size="1.14MB" >
  10646. </productMenu>
  10647. <productMenu id="volume"
  10648. type="11" >
  10649. </productMenu>
  10650. <productMenu id="battery"
  10651. type="1" >
  10652. </productMenu>
  10653. <productID id="3213"
  10654. />
  10655. <productGroupable type="0"
  10656. />
  10657. </product>
  10658. <product id="HD50C"
  10659. name="H-D Audio 50C"
  10660. series="50"
  10661. latestVersion="1.0.1"
  10662. show = "0" >
  10663. <productMenu id="protocol"
  10664. type="2" >
  10665. </productMenu>
  10666. <productMenu id="ota"
  10667. type="0" >
  10668. </productMenu>
  10669. <productMenu id="wa"
  10670. type="1" >
  10671. </productMenu>
  10672. <productMenu id="sip"
  10673. type="1" >
  10674. </productMenu>
  10675. <productMenu id="meshIntercom"
  10676. type="20" >
  10677. </productMenu>
  10678. <productMenu id="meshIntercom+"
  10679. type="3"
  10680. url="0" >
  10681. <productMenuType version="1.0.9"
  10682. type="2"
  10683. />
  10684. </productMenu>
  10685. <productMenu id="bluetoothIntercom"
  10686. type="1" >
  10687. </productMenu>
  10688. <productMenu id="phone"
  10689. type="1" >
  10690. </productMenu>
  10691. <productMenu id="music"
  10692. type="1" >
  10693. </productMenu>
  10694. <productMenu id="fmradio"
  10695. type="1" >
  10696. </productMenu>
  10697. <productMenu id="deviceSetting"
  10698. type="1"
  10699. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10700. <productMenuURL version="1.0.9"
  10701. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10702. />
  10703. </productMenu>
  10704. <productMenu id="quickGuide"
  10705. type="1"
  10706. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10707. size="344KB" >
  10708. </productMenu>
  10709. <productMenu id="userGuide"
  10710. type="1"
  10711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10712. size="3.41MB" >
  10713. </productMenu>
  10714. <productMenu id="volume"
  10715. type="11" >
  10716. </productMenu>
  10717. <productMenu id="battery"
  10718. type="1" >
  10719. </productMenu>
  10720. <productID id="3240"
  10721. />
  10722. <productGroupable type="0"
  10723. />
  10724. </product>
  10725. <product id="HD50S"
  10726. name="FURY N04"
  10727. series="Helmet"
  10728. latestVersion="1.0"
  10729. show = "0" >
  10730. <productMenu id="protocol"
  10731. type="2" >
  10732. </productMenu>
  10733. <productMenu id="alexa"
  10734. type="0" >
  10735. </productMenu>
  10736. <productMenu id="ota"
  10737. type="0" >
  10738. </productMenu>
  10739. <productMenu id="wa"
  10740. type="0" >
  10741. </productMenu>
  10742. <productMenu id="meshIntercom"
  10743. type="20" >
  10744. </productMenu>
  10745. <productMenu id="meshIntercom+"
  10746. type="3"
  10747. url="0" >
  10748. <productMenuType version="1.0.9"
  10749. type="2"
  10750. />
  10751. </productMenu>
  10752. <productMenu id="phone"
  10753. type="1" >
  10754. </productMenu>
  10755. <productMenu id="music"
  10756. type="1" >
  10757. </productMenu>
  10758. <productMenu id="fmradio"
  10759. type="1" >
  10760. </productMenu>
  10761. <productMenu id="deviceSetting"
  10762. type="1"
  10763. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10764. <productMenuURL version="1.0.9"
  10765. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10766. />
  10767. </productMenu>
  10768. <productMenu id="quickGuide"
  10769. type="1"
  10770. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10771. size="1.12MB" >
  10772. </productMenu>
  10773. <productMenu id="userGuide"
  10774. type="1"
  10775. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10776. size="2.0MB" >
  10777. </productMenu>
  10778. <productMenu id="volume"
  10779. type="13" >
  10780. </productMenu>
  10781. <productMenu id="battery"
  10782. type="1" >
  10783. </productMenu>
  10784. <productID id="5553"
  10785. />
  10786. <productGroupable type="0"
  10787. />
  10788. </product>
  10789. <product id="XCOM3Pro"
  10790. name="X-COM3 Pro"
  10791. series="50"
  10792. latestVersion="1.1"
  10793. show = "0" >
  10794. <productMenu id="protocol"
  10795. type="2" >
  10796. </productMenu>
  10797. <productMenu id="alexa"
  10798. type="0" >
  10799. </productMenu>
  10800. <productMenu id="ota"
  10801. type="0" >
  10802. </productMenu>
  10803. <productMenu id="wa"
  10804. type="0" >
  10805. </productMenu>
  10806. <productMenu id="sip"
  10807. type="1" >
  10808. </productMenu>
  10809. <productMenu id="meshIntercom"
  10810. type="30" >
  10811. </productMenu>
  10812. <productMenu id="meshIntercom+"
  10813. type="3"
  10814. url="2" >
  10815. <productMenuType version="1.1"
  10816. type="2"
  10817. />
  10818. </productMenu>
  10819. <productMenu id="waveIntercom"
  10820. type="1" >
  10821. <productMenuType version="1.1"
  10822. type="0"
  10823. />
  10824. </productMenu>
  10825. <productMenu id="bluetoothIntercom"
  10826. type="1" >
  10827. </productMenu>
  10828. <productMenu id="phone"
  10829. type="1" >
  10830. </productMenu>
  10831. <productMenu id="music"
  10832. type="1" >
  10833. </productMenu>
  10834. <productMenu id="fmradio"
  10835. type="1" >
  10836. </productMenu>
  10837. <productMenu id="deviceSetting"
  10838. type="1"
  10839. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10840. <productMenuURL version="1.1"
  10841. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10842. />
  10843. </productMenu>
  10844. <productMenu id="quickGuide"
  10845. type="0"
  10846. url=""
  10847. size="344KB" >
  10848. </productMenu>
  10849. <productMenu id="userGuide"
  10850. type="1"
  10851. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10852. size="3.41MB" >
  10853. </productMenu>
  10854. <productMenu id="volume"
  10855. type="11" >
  10856. </productMenu>
  10857. <productMenu id="battery"
  10858. type="1" >
  10859. </productMenu>
  10860. <productID id="321A"
  10861. />
  10862. <productGroupable type="0"
  10863. />
  10864. </product>
  10865. <product id="XCOM3"
  10866. name="X-COM3"
  10867. series="20"
  10868. latestVersion="1.0"
  10869. show = "0" >
  10870. <productMenu id="protocol"
  10871. type="2" >
  10872. </productMenu>
  10873. <productMenu id="sip"
  10874. type="1" >
  10875. </productMenu>
  10876. <productMenu id="bluetoothIntercom"
  10877. type="1" >
  10878. </productMenu>
  10879. <productMenu id="phone"
  10880. type="1" >
  10881. </productMenu>
  10882. <productMenu id="music"
  10883. type="1" >
  10884. </productMenu>
  10885. <productMenu id="fmradio"
  10886. type="1" >
  10887. </productMenu>
  10888. <productMenu id="deviceSetting"
  10889. type="1"
  10890. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10891. </productMenu>
  10892. <productMenu id="quickGuide"
  10893. type="0"
  10894. url=""
  10895. size="934KB" >
  10896. </productMenu>
  10897. <productMenu id="userGuide"
  10898. type="1"
  10899. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10900. size="1.14MB" >
  10901. </productMenu>
  10902. <productMenu id="volume"
  10903. type="15" >
  10904. </productMenu>
  10905. <productID id="3410"
  10906. />
  10907. <productGroupable type="0"
  10908. />
  10909. </product>
  10910. <product id="X-COM2"
  10911. name="X-COM2"
  10912. series="20"
  10913. latestVersion="1.0.5"
  10914. show = "0" >
  10915. <productMenu id="protocol"
  10916. type="0">
  10917. </productMenu>
  10918. <productMenu id="sip"
  10919. type="1" >
  10920. </productMenu>
  10921. <productMenu id="bluetoothIntercom"
  10922. type="1" >
  10923. </productMenu>
  10924. <productMenu id="intercomSetting"
  10925. type="1" >
  10926. </productMenu>
  10927. <productMenu id="phone"
  10928. type="2" >
  10929. </productMenu>
  10930. <productMenu id="fmradio"
  10931. type="3" >
  10932. </productMenu>
  10933. <productMenu id="deviceSetting"
  10934. type="1"
  10935. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10936. </productMenu>
  10937. <productMenu id="quickGuide"
  10938. type="1"
  10939. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10940. size="796KB" >
  10941. </productMenu>
  10942. <productMenu id="userGuide"
  10943. type="1"
  10944. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10945. size="1.90MB" >
  10946. </productMenu>
  10947. <productID id="2030"
  10948. />
  10949. <productGroupable type="1"
  10950. />
  10951. </product>
  10952. <product id="AVAABC"
  10953. name="AVA ABC"
  10954. series="SPIDER"
  10955. latestVersion="1.1"
  10956. show = "0" >
  10957. <productMenu id="protocol"
  10958. type="2" >
  10959. </productMenu>
  10960. <productMenu id="alexa"
  10961. type="0" >
  10962. </productMenu>
  10963. <productMenu id="ota"
  10964. type="0" >
  10965. <productMenuType version="1.0"
  10966. type="0"
  10967. />
  10968. <otaPackages>
  10969. <package
  10970. url="https://api.sena.com/support/OTA/"
  10971. size="2945812"
  10972. />
  10973. </otaPackages>
  10974. </productMenu>
  10975. <productMenu id="wa"
  10976. type="0" >
  10977. </productMenu>
  10978. <productMenu id="meshIntercom"
  10979. type="30" >
  10980. <productMenuType version="1.0"
  10981. type="20"
  10982. />
  10983. </productMenu>
  10984. <productMenu id="meshIntercom+"
  10985. type="3"
  10986. url="2" >
  10987. <productMenuType version="1.0"
  10988. type="2"
  10989. />
  10990. <productMenuURL version="1.0"
  10991. url="0"
  10992. />
  10993. </productMenu>
  10994. <productMenu id="waveIntercom"
  10995. type="1" >
  10996. <productMenuType version="1.0"
  10997. type="0"
  10998. />
  10999. </productMenu>
  11000. <productMenu id="phone"
  11001. type="1" >
  11002. </productMenu>
  11003. <productMenu id="music"
  11004. type="1" >
  11005. </productMenu>
  11006. <productMenu id="musicSharing"
  11007. type="0" >
  11008. </productMenu>
  11009. <productMenu id="deviceSetting"
  11010. type="1"
  11011. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11012. <productMenuURL version="1.0"
  11013. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11014. />
  11015. </productMenu>
  11016. <productMenu id="quickGuide"
  11017. type="1"
  11018. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11019. size="1.12MB" >
  11020. </productMenu>
  11021. <productMenu id="userGuide"
  11022. type="1"
  11023. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11024. size="2.0MB" >
  11025. </productMenu>
  11026. <productMenu id="volume"
  11027. type="12" >
  11028. </productMenu>
  11029. <productMenu id="battery"
  11030. type="1" >
  11031. </productMenu>
  11032. <productID id="6808"
  11033. />
  11034. <productGroupable type="0"
  11035. />
  11036. </product>
  11037. <product id="ADVANCEProCOM2"
  11038. name="ADVANCE ProCOM 2"
  11039. series="Helmet"
  11040. latestVersion="0.5"
  11041. latestVersionVoicePrompt="0.3"
  11042. show = "-1" >
  11043. <productMenu id="protocol"
  11044. type="2" >
  11045. </productMenu>
  11046. <productMenu id="ota"
  11047. type="2" >
  11048. <otaLanguages>
  11049. <otaLanguage
  11050. id="0"
  11051. name="English"
  11052. package="0"
  11053. />
  11054. <otaLanguage
  11055. id="0"
  11056. name="French"
  11057. package="1"
  11058. />
  11059. <otaLanguage
  11060. id="0"
  11061. name="Spanish"
  11062. package="2"
  11063. />
  11064. <otaLanguage
  11065. id="0"
  11066. name="Italian"
  11067. package="3"
  11068. />
  11069. <otaLanguage
  11070. id="0"
  11071. name="German"
  11072. package="4"
  11073. />
  11074. <otaLanguage
  11075. id="0"
  11076. name="Dutch"
  11077. package="5"
  11078. />
  11079. <otaLanguage
  11080. id="0"
  11081. name="Russian"
  11082. package="6"
  11083. />
  11084. <otaLanguage
  11085. id="0"
  11086. name="Chinese"
  11087. package="7"
  11088. />
  11089. <otaLanguage
  11090. id="0"
  11091. name="Korean"
  11092. package="8"
  11093. />
  11094. <otaLanguage
  11095. id="0"
  11096. name="Japanese"
  11097. package="9"
  11098. />
  11099. <otaLanguage
  11100. id="0"
  11101. name="Finnish"
  11102. package="10"
  11103. />
  11104. <otaLanguage
  11105. id="0"
  11106. name="Polish"
  11107. package="11"
  11108. />
  11109. </otaLanguages>
  11110. <otaPackages>
  11111. <package
  11112. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11113. size="5183988"
  11114. />
  11115. <package
  11116. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11117. size="5183988"
  11118. />
  11119. <package
  11120. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11121. size="5183988"
  11122. />
  11123. <package
  11124. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11125. size="5183988"
  11126. />
  11127. <package
  11128. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11129. size="5183988"
  11130. />
  11131. <package
  11132. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11133. size="5183988"
  11134. />
  11135. <package
  11136. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11137. size="5183988"
  11138. />
  11139. <package
  11140. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11141. size="5183988"
  11142. />
  11143. <package
  11144. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11145. size="5183988"
  11146. />
  11147. <package
  11148. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11149. size="5183988"
  11150. />
  11151. <package
  11152. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11153. size="5183988"
  11154. />
  11155. <package
  11156. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11157. size="5183988"
  11158. />
  11159. </otaPackages>
  11160. </productMenu>
  11161. <productMenu id="wa"
  11162. type="0" >
  11163. </productMenu>
  11164. <productMenu id="meshIntercom"
  11165. type="30" >
  11166. </productMenu>
  11167. <productMenu id="meshIntercom+"
  11168. type="3"
  11169. url="2" >
  11170. </productMenu>
  11171. <productMenu id="waveIntercom"
  11172. type="1" >
  11173. </productMenu>
  11174. <productMenu id="fmradio"
  11175. type="1" >
  11176. </productMenu>
  11177. <productMenu id="phone"
  11178. type="0" >
  11179. </productMenu>
  11180. <productMenu id="music"
  11181. type="1" >
  11182. </productMenu>
  11183. <productMenu id="musicSharing"
  11184. type="0" >
  11185. </productMenu>
  11186. <productMenu id="deviceSetting"
  11187. type="1"
  11188. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11189. </productMenu>
  11190. <productMenu id="quickGuide"
  11191. type="0"
  11192. url=""
  11193. size="1.12MB" >
  11194. </productMenu>
  11195. <productMenu id="userGuide"
  11196. type="1"
  11197. url=""
  11198. size="2.0MB" >
  11199. </productMenu>
  11200. <productMenu id="videoGuide"
  11201. type="0"
  11202. url=""
  11203. size="3.41MB" >
  11204. </productMenu>
  11205. <productMenu id="connectGuide"
  11206. type="1"
  11207. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11208. size="1.12MB" >
  11209. </productMenu>
  11210. <productMenu id="volume"
  11211. type="16" >
  11212. </productMenu>
  11213. <productMenu id="battery"
  11214. type="1" >
  11215. </productMenu>
  11216. <productID id="6A85"
  11217. />
  11218. <productGroupable type="0"
  11219. />
  11220. </product>
  11221. <product id="TRIUMPH60X"
  11222. name="TRIUMPH 60X"
  11223. series="60"
  11224. latestVersion="1.0"
  11225. latestVersionMesh="0.19"
  11226. latestVersionVoicePrompt="1.7"
  11227. show = "-1" >
  11228. <productMenu id="protocol"
  11229. type="2" >
  11230. </productMenu>
  11231. <productMenu id="ota"
  11232. type="0" >
  11233. <otaLanguages>
  11234. <otaLanguage
  11235. id="0"
  11236. name="English"
  11237. package="0"
  11238. />
  11239. <otaLanguage
  11240. id="0"
  11241. name="French"
  11242. package="1"
  11243. />
  11244. <otaLanguage
  11245. id="0"
  11246. name="Spanish"
  11247. package="2"
  11248. />
  11249. <otaLanguage
  11250. id="0"
  11251. name="Italian"
  11252. package="3"
  11253. />
  11254. <otaLanguage
  11255. id="0"
  11256. name="German"
  11257. package="4"
  11258. />
  11259. <otaLanguage
  11260. id="0"
  11261. name="Dutch"
  11262. package="5"
  11263. />
  11264. <otaLanguage
  11265. id="0"
  11266. name="Russian"
  11267. package="6"
  11268. />
  11269. <otaLanguage
  11270. id="0"
  11271. name="Chinese"
  11272. package="7"
  11273. />
  11274. <otaLanguage
  11275. id="0"
  11276. name="Korean"
  11277. package="8"
  11278. />
  11279. <otaLanguage
  11280. id="0"
  11281. name="Japanese"
  11282. package="9"
  11283. />
  11284. <otaLanguage
  11285. id="0"
  11286. name="Finnish"
  11287. package="10"
  11288. />
  11289. <otaLanguage
  11290. id="0"
  11291. name="Polish"
  11292. package="11"
  11293. />
  11294. </otaLanguages>
  11295. <otaPackages>
  11296. <package
  11297. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11298. size="5183988"
  11299. />
  11300. <package
  11301. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11302. size="5183988"
  11303. />
  11304. <package
  11305. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11306. size="5183988"
  11307. />
  11308. <package
  11309. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11310. size="5183988"
  11311. />
  11312. <package
  11313. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11314. size="5183988"
  11315. />
  11316. <package
  11317. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11318. size="5183988"
  11319. />
  11320. <package
  11321. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11322. size="5183988"
  11323. />
  11324. <package
  11325. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11326. size="5183988"
  11327. />
  11328. <package
  11329. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11330. size="5183988"
  11331. />
  11332. <package
  11333. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11334. size="5183988"
  11335. />
  11336. <package
  11337. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11338. size="5183988"
  11339. />
  11340. <package
  11341. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11342. size="5183988"
  11343. />
  11344. </otaPackages>
  11345. </productMenu>
  11346. <productMenu id="wa"
  11347. type="0" >
  11348. </productMenu>
  11349. <productMenu id="sip"
  11350. type="1" >
  11351. </productMenu>
  11352. <productMenu id="led"
  11353. type="1" >
  11354. </productMenu>
  11355. <productMenu id="illusion"
  11356. type="1" >
  11357. </productMenu>
  11358. <productMenu id="meshIntercom"
  11359. type="30" >
  11360. </productMenu>
  11361. <productMenu id="meshIntercom+"
  11362. type="3"
  11363. url="2" >
  11364. </productMenu>
  11365. <productMenu id="bluetoothIntercom"
  11366. type="1" >
  11367. </productMenu>
  11368. <productMenu id="fmradio"
  11369. type="1"
  11370. url="1" >
  11371. </productMenu>
  11372. <productMenu id="mic"
  11373. type="0" >
  11374. </productMenu>
  11375. <productMenu id="phone"
  11376. type="1" >
  11377. </productMenu>
  11378. <productMenu id="music"
  11379. type="1" >
  11380. </productMenu>
  11381. <productMenu id="musicSharing"
  11382. type="0" >
  11383. </productMenu>
  11384. <productMenu id="deviceSetting"
  11385. type="1"
  11386. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11387. </productMenu>
  11388. <productMenu id="quickGuide"
  11389. type="0"
  11390. url=""
  11391. size="1.12MB" >
  11392. </productMenu>
  11393. <productMenu id="userGuide"
  11394. type="1"
  11395. url=""
  11396. size="2.0MB" >
  11397. </productMenu>
  11398. <productMenu id="videoGuide"
  11399. type="0"
  11400. url=""
  11401. size="3.41MB" >
  11402. </productMenu>
  11403. <productMenu id="keySettings"
  11404. type="1"
  11405. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11406. </productMenu>
  11407. <productMenu id="volume"
  11408. type="13" >
  11409. </productMenu>
  11410. <productMenu id="volume+"
  11411. type="2"
  11412. url="0x6004" >
  11413. </productMenu>
  11414. <productMenu id="battery"
  11415. type="1" >
  11416. </productMenu>
  11417. <productID id="6A1C"
  11418. />
  11419. <productGroupable type="0"
  11420. />
  11421. </product>
  11422. <product id="Triumph_50S"
  11423. name="Triumph 50S"
  11424. series="50"
  11425. latestVersion="1.5"
  11426. show = "0" >
  11427. <productMenu id="protocol"
  11428. type="2" >
  11429. </productMenu>
  11430. <productMenu id="alexa"
  11431. type="0" >
  11432. </productMenu>
  11433. <productMenu id="ota"
  11434. type="0"
  11435. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11436. size="1150234" >
  11437. </productMenu>
  11438. <productMenu id="wa"
  11439. type="1" >
  11440. </productMenu>
  11441. <productMenu id="sip"
  11442. type="1" >
  11443. </productMenu>
  11444. <productMenu id="meshIntercom"
  11445. type="20" >
  11446. </productMenu>
  11447. <productMenu id="bluetoothIntercom"
  11448. type="1" >
  11449. </productMenu>
  11450. <productMenu id="meshIntercom+"
  11451. type="3"
  11452. url="2" >
  11453. <productMenuType version="1.2.9"
  11454. type="2"
  11455. />
  11456. <productMenuURL version="1.2.9"
  11457. url="0"
  11458. />
  11459. </productMenu>
  11460. <productMenu id="waveIntercom"
  11461. type="1" >
  11462. <productMenuType version="1.2.9"
  11463. type="0"
  11464. />
  11465. </productMenu>
  11466. <productMenu id="phone"
  11467. type="1" >
  11468. </productMenu>
  11469. <productMenu id="music"
  11470. type="1" >
  11471. </productMenu>
  11472. <productMenu id="fmradio"
  11473. type="1" >
  11474. </productMenu>
  11475. <productMenu id="deviceSetting"
  11476. type="1"
  11477. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11478. <productMenuURL version="1.2.9"
  11479. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11480. />
  11481. <productMenuURL version="1.0"
  11482. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11483. />
  11484. </productMenu>
  11485. <productMenu id="quickGuide"
  11486. type="1"
  11487. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11488. size="934KB" >
  11489. </productMenu>
  11490. <productMenu id="userGuide"
  11491. type="1"
  11492. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11493. size="1.14MB" >
  11494. </productMenu>
  11495. <productMenu id="volume"
  11496. type="11" >
  11497. </productMenu>
  11498. <productMenu id="battery"
  11499. type="1" >
  11500. </productMenu>
  11501. <productID id="3264"
  11502. />
  11503. <productGroupable type="0"
  11504. />
  11505. </product>
  11506. <product id="RE50S"
  11507. name="RE 50S"
  11508. series="50"
  11509. latestVersion="2.7"
  11510. show = "0" >
  11511. <productMenu id="protocol"
  11512. type="2" >
  11513. </productMenu>
  11514. <productMenu id="alexa"
  11515. type="0" >
  11516. </productMenu>
  11517. <productMenu id="ota"
  11518. type="0"
  11519. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11520. size="1150234" >
  11521. </productMenu>
  11522. <productMenu id="wa"
  11523. type="1" >
  11524. </productMenu>
  11525. <productMenu id="sip"
  11526. type="1" >
  11527. </productMenu>
  11528. <productMenu id="meshIntercom"
  11529. type="30" >
  11530. </productMenu>
  11531. <productMenu id="meshIntercom+"
  11532. type="3"
  11533. url="2" >
  11534. <productMenuType version="2.5"
  11535. type="2"
  11536. />
  11537. </productMenu>
  11538. <productMenu id="waveIntercom"
  11539. type="1" >
  11540. <productMenuType version="2.5"
  11541. type="0"
  11542. />
  11543. </productMenu>
  11544. <productMenu id="bluetoothIntercom"
  11545. type="1" >
  11546. </productMenu>
  11547. <productMenu id="phone"
  11548. type="1" >
  11549. </productMenu>
  11550. <productMenu id="music"
  11551. type="1" >
  11552. </productMenu>
  11553. <productMenu id="fmradio"
  11554. type="1" >
  11555. </productMenu>
  11556. <productMenu id="deviceSetting"
  11557. type="1"
  11558. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11559. <productMenuURL version="2.5.9"
  11560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11561. />
  11562. </productMenu>
  11563. <productMenu id="quickGuide"
  11564. type="1"
  11565. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11566. size="934KB" >
  11567. </productMenu>
  11568. <productMenu id="userGuide"
  11569. type="1"
  11570. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11571. size="1.14MB" >
  11572. </productMenu>
  11573. <productMenu id="videoGuide"
  11574. type="0"
  11575. url=""
  11576. size="3.41MB" >
  11577. </productMenu>
  11578. <productMenu id="volume"
  11579. type="11" >
  11580. </productMenu>
  11581. <productMenu id="battery"
  11582. type="1" >
  11583. </productMenu>
  11584. <productID id="321C"
  11585. />
  11586. <productGroupable type="0"
  11587. />
  11588. </product>
  11589. <product id="BMW_HELMET_II_U1"
  11590. name="BMW HELMET II U1"
  11591. series="50"
  11592. latestVersion="1.0"
  11593. show = "0" >
  11594. <productMenu id="protocol"
  11595. type="2" >
  11596. </productMenu>
  11597. <productMenu id="alexa"
  11598. type="0" >
  11599. </productMenu>
  11600. <productMenu id="sip"
  11601. type="1" >
  11602. </productMenu>
  11603. <productMenu id="meshIntercom"
  11604. type="20" >
  11605. </productMenu>
  11606. <productMenu id="bluetoothIntercom"
  11607. type="1" >
  11608. </productMenu>
  11609. <productMenu id="bluetoothIntercom2"
  11610. type="1" >
  11611. </productMenu>
  11612. <productMenu id="phone"
  11613. type="1" >
  11614. </productMenu>
  11615. <productMenu id="music"
  11616. type="1" >
  11617. </productMenu>
  11618. <productMenu id="fmradio"
  11619. type="1" >
  11620. </productMenu>
  11621. <productMenu id="deviceSetting"
  11622. type="1"
  11623. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11624. </productMenu>
  11625. <productMenu id="quickGuide"
  11626. type="1"
  11627. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11628. size="934KB" >
  11629. </productMenu>
  11630. <productMenu id="userGuide"
  11631. type="1"
  11632. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11633. size="1.14MB" >
  11634. </productMenu>
  11635. <productMenu id="volume"
  11636. type="11" >
  11637. </productMenu>
  11638. <productMenu id="battery"
  11639. type="1" >
  11640. </productMenu>
  11641. <productID id="3260"
  11642. />
  11643. <productGroupable type="0"
  11644. />
  11645. </product>
  11646. <product id="OUTRUSHR"
  11647. name="CX935"
  11648. series="Helmet"
  11649. latestVersion="2.1"
  11650. show = "-1" >
  11651. <productMenu id="protocol"
  11652. type="3">
  11653. </productMenu>
  11654. <productMenu id="sip"
  11655. type="1" >
  11656. </productMenu>
  11657. <productMenu id="bluetoothIntercom"
  11658. type="1" >
  11659. </productMenu>
  11660. <productMenu id="phone"
  11661. type="1" >
  11662. </productMenu>
  11663. <productMenu id="fmradio"
  11664. type="0" >
  11665. </productMenu>
  11666. <productMenu id="deviceSetting"
  11667. type="1"
  11668. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11669. </productMenu>
  11670. <productMenu id="userGuide"
  11671. type="1"
  11672. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11673. size="660KB" >
  11674. </productMenu>
  11675. <productID id="5446"
  11676. />
  11677. <productGroupable type="0"
  11678. />
  11679. </product>
  11680. <product id="LSE_01"
  11681. name="LSE-01"
  11682. series="SF"
  11683. latestVersion="1.2.3"
  11684. show = "0" >
  11685. <productMenu id="protocol"
  11686. type="1"
  11687. url="3">
  11688. </productMenu>
  11689. <productMenu id="sip"
  11690. type="1" >
  11691. </productMenu>
  11692. <productMenu id="bluetoothIntercom"
  11693. type="1" >
  11694. </productMenu>
  11695. <productMenu id="phone"
  11696. type="1" >
  11697. </productMenu>
  11698. <productMenu id="music"
  11699. type="1" >
  11700. </productMenu>
  11701. <productMenu id="fmradio"
  11702. type="1" >
  11703. </productMenu>
  11704. <productMenu id="deviceSetting"
  11705. type="1"
  11706. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11707. <productMenuURL version="1.1"
  11708. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11709. />
  11710. <productMenuURL version="1.0"
  11711. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11712. />
  11713. </productMenu>
  11714. <productMenu id="quickGuide"
  11715. type="1"
  11716. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11717. size="607KB" >
  11718. </productMenu>
  11719. <productMenu id="userGuide"
  11720. type="1"
  11721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11722. size="1.91MB" >
  11723. </productMenu>
  11724. <productMenu id="volume"
  11725. type="4" >
  11726. </productMenu>
  11727. <productID id="5416"
  11728. />
  11729. <productGroupable type="0"
  11730. />
  11731. </product>
  11732. <product id="AGV_ARK"
  11733. name="AGV ARK"
  11734. series="SF"
  11735. latestVersion="1.0.3"
  11736. show = "0" >
  11737. <productMenu id="protocol"
  11738. type="1"
  11739. url="3">
  11740. </productMenu>
  11741. <productMenu id="sip"
  11742. type="1" >
  11743. </productMenu>
  11744. <productMenu id="bluetoothIntercom"
  11745. type="1" >
  11746. </productMenu>
  11747. <productMenu id="phone"
  11748. type="1" >
  11749. </productMenu>
  11750. <productMenu id="music"
  11751. type="1" >
  11752. </productMenu>
  11753. <productMenu id="fmradio"
  11754. type="1" >
  11755. </productMenu>
  11756. <productMenu id="deviceSetting"
  11757. type="1"
  11758. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11759. </productMenu>
  11760. <productMenu id="quickGuide"
  11761. type="1"
  11762. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11763. size="607KB" >
  11764. </productMenu>
  11765. <productMenu id="userGuide"
  11766. type="1"
  11767. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11768. size="1.91MB" >
  11769. </productMenu>
  11770. <productMenu id="volume"
  11771. type="4" >
  11772. </productMenu>
  11773. <productID id="5420"
  11774. />
  11775. <productGroupable type="0"
  11776. />
  11777. </product>
  11778. <product id="KLIM_KRIOS"
  11779. name="KLIM Krios"
  11780. series="10"
  11781. latestVersion="1.1.2"
  11782. show = "0" >
  11783. <productMenu id="protocol"
  11784. type="0">
  11785. </productMenu>
  11786. <productMenu id="sip"
  11787. type="1" >
  11788. </productMenu>
  11789. <productMenu id="bluetoothIntercom"
  11790. type="1" >
  11791. </productMenu>
  11792. <productMenu id="phone"
  11793. type="2" >
  11794. </productMenu>
  11795. <productMenu id="fmradio"
  11796. type="3" >
  11797. </productMenu>
  11798. <productMenu id="deviceSetting"
  11799. type="1"
  11800. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11801. <productMenuURL version="1.0"
  11802. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11803. />
  11804. </productMenu>
  11805. <productMenu id="quickGuide"
  11806. type="1"
  11807. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11808. size="649KB" >
  11809. </productMenu>
  11810. <productMenu id="userGuide"
  11811. type="1"
  11812. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11813. size="1.43MB" >
  11814. </productMenu>
  11815. <productID id="5910"
  11816. />
  11817. <productGroupable type="0"
  11818. />
  11819. </product>
  11820. <product id="POLARIS_SLINGSHOT"
  11821. name="Polaris Slingshot"
  11822. series="10"
  11823. latestVersion="1.1.2"
  11824. show = "0" >
  11825. <productMenu id="protocol"
  11826. type="0">
  11827. </productMenu>
  11828. <productMenu id="sip"
  11829. type="1" >
  11830. </productMenu>
  11831. <productMenu id="bluetoothIntercom"
  11832. type="1" >
  11833. </productMenu>
  11834. <productMenu id="phone"
  11835. type="2" >
  11836. </productMenu>
  11837. <productMenu id="fmradio"
  11838. type="3" >
  11839. </productMenu>
  11840. <productMenu id="deviceSetting"
  11841. type="1"
  11842. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11843. <productMenuURL version="1.0"
  11844. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11845. />
  11846. </productMenu>
  11847. <productMenu id="quickGuide"
  11848. type="1"
  11849. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11850. size="689KB" >
  11851. </productMenu>
  11852. <productMenu id="userGuide"
  11853. type="1"
  11854. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11855. size="1.43MB" >
  11856. </productMenu>
  11857. <productID id="5920"
  11858. />
  11859. <productGroupable type="0"
  11860. />
  11861. </product>
  11862. <product id="DWO6"
  11863. name="SEDICI DWO6-PRO"
  11864. series="10"
  11865. latestVersion="1.0.2"
  11866. show = "0" >
  11867. <productMenu id="protocol"
  11868. type="0">
  11869. </productMenu>
  11870. <productMenu id="sip"
  11871. type="1" >
  11872. </productMenu>
  11873. <productMenu id="bluetoothIntercom"
  11874. type="1" >
  11875. </productMenu>
  11876. <productMenu id="phone"
  11877. type="2" >
  11878. </productMenu>
  11879. <productMenu id="fmradio"
  11880. type="3" >
  11881. </productMenu>
  11882. <productMenu id="deviceSetting"
  11883. type="1"
  11884. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11885. </productMenu>
  11886. <productMenu id="quickGuide"
  11887. type="1"
  11888. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11889. size="529KB" >
  11890. </productMenu>
  11891. <productMenu id="userGuide"
  11892. type="1"
  11893. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11894. size="4.09MB" >
  11895. </productMenu>
  11896. <productID id="6112"
  11897. />
  11898. <productGroupable type="0"
  11899. />
  11900. </product>
  11901. <product id="DWO6A"
  11902. name="SEDICI DWO-6"
  11903. series="10"
  11904. latestVersion="1.0.2"
  11905. show = "0" >
  11906. <productMenu id="protocol"
  11907. type="0">
  11908. </productMenu>
  11909. <productMenu id="sip"
  11910. type="1" >
  11911. </productMenu>
  11912. <productMenu id="bluetoothIntercom"
  11913. type="1" >
  11914. </productMenu>
  11915. <productMenu id="phone"
  11916. type="2" >
  11917. </productMenu>
  11918. <productMenu id="fmradio"
  11919. type="3" >
  11920. </productMenu>
  11921. <productMenu id="deviceSetting"
  11922. type="1"
  11923. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11924. </productMenu>
  11925. <productMenu id="quickGuide"
  11926. type="1"
  11927. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11928. size="522KB" >
  11929. </productMenu>
  11930. <productMenu id="userGuide"
  11931. type="1"
  11932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11933. size="2.71MB" >
  11934. </productMenu>
  11935. <productID id="6114"
  11936. />
  11937. <productGroupable type="0"
  11938. />
  11939. </product>
  11940. <product id="3SPLUS"
  11941. name="ZILL"
  11942. series="3"
  11943. latestVersion="1.0.4"
  11944. show = "0" >
  11945. <productMenu id="protocol"
  11946. type="0">
  11947. </productMenu>
  11948. <productMenu id="sip"
  11949. type="1" >
  11950. </productMenu>
  11951. <productMenu id="bluetoothIntercom"
  11952. type="1" >
  11953. </productMenu>
  11954. <productMenu id="deviceSetting"
  11955. type="1"
  11956. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11957. </productMenu>
  11958. <productMenu id="quickGuide"
  11959. type="1"
  11960. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11961. size="842KB" >
  11962. </productMenu>
  11963. <productMenu id="userGuide"
  11964. type="1"
  11965. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11966. size="1.02MB" >
  11967. </productMenu>
  11968. <productID id="6335"
  11969. />
  11970. <productGroupable type="0"
  11971. />
  11972. </product>
  11973. <product id="HD50S"
  11974. name="Boom! Audio 30K"
  11975. series="30"
  11976. latestVersion="3.4"
  11977. show = "0" >
  11978. <productMenu id="protocol"
  11979. type="1"
  11980. url="0">
  11981. </productMenu>
  11982. <productMenu id="wa"
  11983. type="0" >
  11984. </productMenu>
  11985. <productMenu id="sip"
  11986. type="1" >
  11987. </productMenu>
  11988. <productMenu id="meshIntercom"
  11989. type="20" >
  11990. <productMenuType version="2.9.9"
  11991. type="10"
  11992. />
  11993. </productMenu>
  11994. <productMenu id="bluetoothIntercom"
  11995. type="1" >
  11996. </productMenu>
  11997. <productMenu id="phone"
  11998. type="1" >
  11999. </productMenu>
  12000. <productMenu id="music"
  12001. type="1" >
  12002. </productMenu>
  12003. <productMenu id="fmradio"
  12004. type="1" >
  12005. </productMenu>
  12006. <productMenu id="deviceSetting"
  12007. type="1"
  12008. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12009. <productMenuURL version="3.2"
  12010. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12011. />
  12012. <productMenuURL version="3.0"
  12013. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12014. />
  12015. <productMenuURL version="2.2"
  12016. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12017. />
  12018. </productMenu>
  12019. <productMenu id="quickGuide"
  12020. type="1"
  12021. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12022. size="1.06MB" >
  12023. </productMenu>
  12024. <productMenu id="userGuide"
  12025. type="1"
  12026. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12027. size="3.15MB" >
  12028. </productMenu>
  12029. <productMenu id="volume"
  12030. type="1" >
  12031. </productMenu>
  12032. <productID id="3112"
  12033. />
  12034. <productGroupable type="0"
  12035. />
  12036. </product>
  12037. <product id="HD50S"
  12038. name="Boom! Audio N02"
  12039. series="30"
  12040. latestVersion="3.1"
  12041. show = "0" >
  12042. <productMenu id="protocol"
  12043. type="1"
  12044. url="0">
  12045. </productMenu>
  12046. <productMenu id="wa"
  12047. type="2" >
  12048. </productMenu>
  12049. <productMenu id="sip"
  12050. type="1" >
  12051. </productMenu>
  12052. <productMenu id="meshIntercom"
  12053. type="20" >
  12054. <productMenuType version="2.9.9"
  12055. type="10"
  12056. />
  12057. </productMenu>
  12058. <productMenu id="bluetoothIntercom"
  12059. type="1" >
  12060. </productMenu>
  12061. <productMenu id="phone"
  12062. type="1" >
  12063. </productMenu>
  12064. <productMenu id="music"
  12065. type="1" >
  12066. </productMenu>
  12067. <productMenu id="fmradio"
  12068. type="1" >
  12069. </productMenu>
  12070. <productMenu id="deviceSetting"
  12071. type="1"
  12072. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12073. <productMenuURL version="2.2"
  12074. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12075. />
  12076. </productMenu>
  12077. <productMenu id="quickGuide"
  12078. type="1"
  12079. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12080. size="1.06MB" >
  12081. </productMenu>
  12082. <productMenu id="userGuide"
  12083. type="1"
  12084. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12085. size="3.15MB" >
  12086. </productMenu>
  12087. <productMenu id="volume"
  12088. type="2" >
  12089. </productMenu>
  12090. <productID id="3114"
  12091. />
  12092. <productGroupable type="0"
  12093. />
  12094. </product>
  12095. <product id="HD50S"
  12096. name="Boom Audio 20S"
  12097. series="50"
  12098. latestVersion="2.5.2"
  12099. show = "0" >
  12100. <productMenu id="protocol"
  12101. type="0">
  12102. </productMenu>
  12103. <productMenu id="sip"
  12104. type="1" >
  12105. <productMenuType version="1.0"
  12106. type="0"
  12107. />
  12108. </productMenu>
  12109. <productMenu id="bluetoothIntercom"
  12110. type="1" >
  12111. <productMenuType version="1.0"
  12112. type="0"
  12113. />
  12114. </productMenu>
  12115. <productMenu id="intercomSetting"
  12116. type="1" >
  12117. </productMenu>
  12118. <productMenu id="phone"
  12119. type="2" >
  12120. </productMenu>
  12121. <productMenu id="fmradio"
  12122. type="3" >
  12123. </productMenu>
  12124. <productMenu id="deviceSetting"
  12125. type="1"
  12126. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12127. <productMenuURL version="2.4"
  12128. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12129. />
  12130. <productMenuURL version="1.5"
  12131. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12132. />
  12133. <productMenuURL version="1.4.1"
  12134. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12135. />
  12136. <productMenuURL version="1.1"
  12137. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12138. />
  12139. <productMenuURL version="1.0"
  12140. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12141. />
  12142. </productMenu>
  12143. <productMenu id="quickGuide"
  12144. type="1"
  12145. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12146. size="264KB" >
  12147. </productMenu>
  12148. <productMenu id="userGuide"
  12149. type="1"
  12150. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12151. size="3.09MB" >
  12152. </productMenu>
  12153. <productMenu id="connectGuide"
  12154. type="1"
  12155. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12156. size="1.12MB" >
  12157. </productMenu>
  12158. <productID id="4210"
  12159. />
  12160. <productProductKey key="11"
  12161. />
  12162. <productID id="4230"
  12163. />
  12164. <productProductKey key="11"
  12165. />
  12166. <productGroupable type="1"
  12167. />
  12168. </product>
  12169. <product id="HD50S"
  12170. name="Boom Audio 20S EVO"
  12171. series="50"
  12172. latestVersion="2.5.2"
  12173. show = "0" >
  12174. <productMenu id="protocol"
  12175. type="0">
  12176. </productMenu>
  12177. <productMenu id="sip"
  12178. type="1" >
  12179. <productMenuType version="1.0"
  12180. type="0"
  12181. />
  12182. </productMenu>
  12183. <productMenu id="bluetoothIntercom"
  12184. type="1" >
  12185. <productMenuType version="1.0"
  12186. type="0"
  12187. />
  12188. </productMenu>
  12189. <productMenu id="intercomSetting"
  12190. type="1" >
  12191. </productMenu>
  12192. <productMenu id="phone"
  12193. type="2" >
  12194. </productMenu>
  12195. <productMenu id="fmradio"
  12196. type="3" >
  12197. </productMenu>
  12198. <productMenu id="deviceSetting"
  12199. type="1"
  12200. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12201. <productMenuURL version="2.4"
  12202. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12203. />
  12204. <productMenuURL version="1.5"
  12205. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12206. />
  12207. <productMenuURL version="1.4.1"
  12208. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12209. />
  12210. <productMenuURL version="1.1"
  12211. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12212. />
  12213. <productMenuURL version="1.0"
  12214. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12215. />
  12216. </productMenu>
  12217. <productMenu id="quickGuide"
  12218. type="1"
  12219. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12220. size="321KB" >
  12221. </productMenu>
  12222. <productMenu id="userGuide"
  12223. type="1"
  12224. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12225. size="2.46MB" >
  12226. </productMenu>
  12227. <productID id="4230"
  12228. />
  12229. <productProductKey key="27"
  12230. />
  12231. <productGroupable type="1"
  12232. />
  12233. </product>
  12234. <product id="HD50S"
  12235. name="Boom! Audio 10S"
  12236. series="50"
  12237. latestVersion="1.1.3"
  12238. show = "0" >
  12239. <productMenu id="protocol"
  12240. type="0">
  12241. </productMenu>
  12242. <productMenu id="sip"
  12243. type="1" >
  12244. </productMenu>
  12245. <productMenu id="bluetoothIntercom"
  12246. type="1" >
  12247. </productMenu>
  12248. <productMenu id="phone"
  12249. type="2" >
  12250. </productMenu>
  12251. <productMenu id="fmradio"
  12252. type="3" >
  12253. </productMenu>
  12254. <productMenu id="deviceSetting"
  12255. type="1"
  12256. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12257. </productMenu>
  12258. <productMenu id="quickGuide"
  12259. type="1"
  12260. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12261. size="538KB" >
  12262. </productMenu>
  12263. <productMenu id="userGuide"
  12264. type="1"
  12265. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12266. size="1.55MB" >
  12267. </productMenu>
  12268. <productID id="5532"
  12269. />
  12270. <productGroupable type="0"
  12271. />
  12272. </product>
  12273. <product id="HD50S"
  12274. name="Boom! Audio N01 10R"
  12275. series="50"
  12276. latestVersion="1.1.3"
  12277. show = "0" >
  12278. <productMenu id="protocol"
  12279. type="0">
  12280. </productMenu>
  12281. <productMenu id="sip"
  12282. type="1" >
  12283. </productMenu>
  12284. <productMenu id="bluetoothIntercom"
  12285. type="1" >
  12286. </productMenu>
  12287. <productMenu id="phone"
  12288. type="2" >
  12289. </productMenu>
  12290. <productMenu id="fmradio"
  12291. type="3" >
  12292. </productMenu>
  12293. <productMenu id="deviceSetting"
  12294. type="1"
  12295. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12296. </productMenu>
  12297. <productMenu id="quickGuide"
  12298. type="1"
  12299. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12300. size="766KB" >
  12301. </productMenu>
  12302. <productMenu id="userGuide"
  12303. type="1"
  12304. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12305. size="1.45MB" >
  12306. </productMenu>
  12307. <productID id="5522"
  12308. />
  12309. <productGroupable type="0"
  12310. />
  12311. </product>
  12312. <product id="HD50S"
  12313. name="OUTRUSH-R N03"
  12314. series="50"
  12315. latestVersion="1.2.1"
  12316. show = "-1" >
  12317. <productMenu id="protocol"
  12318. type="0">
  12319. </productMenu>
  12320. <productMenu id="sip"
  12321. type="1" >
  12322. </productMenu>
  12323. <productMenu id="bluetoothIntercom"
  12324. type="1" >
  12325. </productMenu>
  12326. <productMenu id="phone"
  12327. type="2" >
  12328. </productMenu>
  12329. <productMenu id="fmradio"
  12330. type="3" >
  12331. </productMenu>
  12332. <productMenu id="deviceSetting"
  12333. type="1"
  12334. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12335. </productMenu>
  12336. <productMenu id="userGuide"
  12337. type="1"
  12338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12339. size="660KB" >
  12340. </productMenu>
  12341. <productID id="5434"
  12342. />
  12343. <productGroupable type="0"
  12344. />
  12345. </product>
  12346. <product id="HD50S"
  12347. name="OUTRUSH-R N03"
  12348. series="50"
  12349. latestVersion="2.0"
  12350. show = "0" >
  12351. <productMenu id="protocol"
  12352. type="3" >
  12353. </productMenu>
  12354. <productMenu id="sip"
  12355. type="1" >
  12356. </productMenu>
  12357. <productMenu id="bluetoothIntercom"
  12358. type="1" >
  12359. </productMenu>
  12360. <productMenu id="phone"
  12361. type="1" >
  12362. </productMenu>
  12363. <productMenu id="fmradio"
  12364. type="1" >
  12365. </productMenu>
  12366. <productMenu id="deviceSetting"
  12367. type="1"
  12368. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12369. </productMenu>
  12370. <productMenu id="userGuide"
  12371. type="1"
  12372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12373. size="1.14MB" >
  12374. </productMenu>
  12375. <productID id="5441"
  12376. />
  12377. <productGroupable type="0"
  12378. />
  12379. </product>
  12380. <product id="5R"
  12381. name="5R"
  12382. series="5"
  12383. latestVersion="1.0.1"
  12384. show = "1" >
  12385. <productMenu id="protocol"
  12386. type="3" >
  12387. </productMenu>
  12388. <productMenu id="sip"
  12389. type="1" >
  12390. </productMenu>
  12391. <productMenu id="bluetoothIntercom"
  12392. type="1" >
  12393. </productMenu>
  12394. <productMenu id="phone"
  12395. type="1" >
  12396. </productMenu>
  12397. <productMenu id="fmradio"
  12398. type="1" >
  12399. </productMenu>
  12400. <productMenu id="deviceSetting"
  12401. type="1"
  12402. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12403. </productMenu>
  12404. <productMenu id="quickGuide"
  12405. type="0"
  12406. url=""
  12407. size="934KB" >
  12408. </productMenu>
  12409. <productMenu id="userGuide"
  12410. type="1"
  12411. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12412. size="1.14MB" >
  12413. </productMenu>
  12414. <productMenu id="connectGuide"
  12415. type="1"
  12416. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12417. size="1.12MB" >
  12418. </productMenu>
  12419. <productID id="5591"
  12420. />
  12421. <productGroupable type="0"
  12422. />
  12423. </product>
  12424. <product id="5R"
  12425. name="5R LITE"
  12426. series="5"
  12427. latestVersion="1.0.1"
  12428. show = "1" >
  12429. <productMenu id="protocol"
  12430. type="3" >
  12431. </productMenu>
  12432. <productMenu id="sip"
  12433. type="1" >
  12434. </productMenu>
  12435. <productMenu id="bluetoothIntercom"
  12436. type="1" >
  12437. </productMenu>
  12438. <productMenu id="phone"
  12439. type="1" >
  12440. </productMenu>
  12441. <productMenu id="fmradio"
  12442. type="1" >
  12443. </productMenu>
  12444. <productMenu id="deviceSetting"
  12445. type="1"
  12446. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12447. </productMenu>
  12448. <productMenu id="quickGuide"
  12449. type="0"
  12450. url=""
  12451. size="934KB" >
  12452. </productMenu>
  12453. <productMenu id="userGuide"
  12454. type="1"
  12455. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12456. size="1.14MB" >
  12457. </productMenu>
  12458. <productMenu id="connectGuide"
  12459. type="1"
  12460. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12461. size="1.12MB" >
  12462. </productMenu>
  12463. <productID id="5592"
  12464. />
  12465. <productGroupable type="0"
  12466. />
  12467. </product>
  12468. <product id="50RLE"
  12469. name="50R LE"
  12470. series="50"
  12471. latestVersion="1.1"
  12472. show = "0" >
  12473. <productMenu id="protocol"
  12474. type="2" >
  12475. </productMenu>
  12476. <productMenu id="alexa"
  12477. type="0" >
  12478. </productMenu>
  12479. <productMenu id="sip"
  12480. type="1" >
  12481. </productMenu>
  12482. <productMenu id="meshIntercom"
  12483. type="30" >
  12484. </productMenu>
  12485. <productMenu id="meshIntercom+"
  12486. type="3"
  12487. url="2" >
  12488. <productMenuType version="1.0.9"
  12489. type="2"
  12490. />
  12491. </productMenu>
  12492. <productMenu id="waveIntercom"
  12493. type="1" >
  12494. <productMenuType version="1.0.9"
  12495. type="0"
  12496. />
  12497. </productMenu>
  12498. <productMenu id="bluetoothIntercom"
  12499. type="1" >
  12500. </productMenu>
  12501. <productMenu id="phone"
  12502. type="1" >
  12503. </productMenu>
  12504. <productMenu id="music"
  12505. type="1" >
  12506. </productMenu>
  12507. <productMenu id="fmradio"
  12508. type="0" >
  12509. </productMenu>
  12510. <productMenu id="deviceSetting"
  12511. type="1"
  12512. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12513. <productMenuURL version="1.0.9"
  12514. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12515. />
  12516. </productMenu>
  12517. <productMenu id="quickGuide"
  12518. type="0"
  12519. url=""
  12520. size="344KB" >
  12521. </productMenu>
  12522. <productMenu id="userGuide"
  12523. type="0"
  12524. url=""
  12525. size="3.41MB" >
  12526. </productMenu>
  12527. <productMenu id="volume"
  12528. type="11" >
  12529. </productMenu>
  12530. <productMenu id="battery"
  12531. type="1" >
  12532. </productMenu>
  12533. <productID id="3223"
  12534. />
  12535. <productGroupable type="0"
  12536. />
  12537. </product>
  12538. <product id="5RLOUIS"
  12539. name="5R LOUIS EDITION"
  12540. series="5"
  12541. latestVersion="1.0"
  12542. show = "-1" >
  12543. <productMenu id="protocol"
  12544. type="3" >
  12545. </productMenu>
  12546. <productMenu id="sip"
  12547. type="1" >
  12548. </productMenu>
  12549. <productMenu id="bluetoothIntercom"
  12550. type="1" >
  12551. </productMenu>
  12552. <productMenu id="phone"
  12553. type="1" >
  12554. </productMenu>
  12555. <productMenu id="fmradio"
  12556. type="1" >
  12557. </productMenu>
  12558. <productMenu id="deviceSetting"
  12559. type="1"
  12560. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12561. </productMenu>
  12562. <productMenu id="quickGuide"
  12563. type="0"
  12564. url=""
  12565. size="934KB" >
  12566. </productMenu>
  12567. <productMenu id="userGuide"
  12568. type="0"
  12569. url=""
  12570. size="1.14MB" >
  12571. </productMenu>
  12572. <productID id="5597"
  12573. />
  12574. <productGroupable type="0"
  12575. />
  12576. </product>
  12577. <product id="5S"
  12578. name="Ridekont 5S"
  12579. series="5"
  12580. latestVersion="2.3"
  12581. show = "-1" >
  12582. <productMenu id="protocol"
  12583. type="3" >
  12584. </productMenu>
  12585. <productMenu id="sip"
  12586. type="1" >
  12587. </productMenu>
  12588. <productMenu id="bluetoothIntercom"
  12589. type="1" >
  12590. </productMenu>
  12591. <productMenu id="phone"
  12592. type="1" >
  12593. </productMenu>
  12594. <productMenu id="fmradio"
  12595. type="0" >
  12596. </productMenu>
  12597. <productMenu id="deviceSetting"
  12598. type="1"
  12599. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12600. </productMenu>
  12601. <productMenu id="quickGuide"
  12602. type="0"
  12603. url=""
  12604. size="934KB" >
  12605. </productMenu>
  12606. <productMenu id="userGuide"
  12607. type="1"
  12608. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12609. size="1.14MB" >
  12610. </productMenu>
  12611. <productID id="5589"
  12612. />
  12613. <productGroupable type="0"
  12614. />
  12615. </product>
  12616. <product id="5R"
  12617. name="Ridekont 5R"
  12618. series="5"
  12619. latestVersion="1.0"
  12620. show = "0" >
  12621. <productMenu id="protocol"
  12622. type="3" >
  12623. </productMenu>
  12624. <productMenu id="sip"
  12625. type="1" >
  12626. </productMenu>
  12627. <productMenu id="bluetoothIntercom"
  12628. type="1" >
  12629. </productMenu>
  12630. <productMenu id="phone"
  12631. type="1" >
  12632. </productMenu>
  12633. <productMenu id="fmradio"
  12634. type="1" >
  12635. </productMenu>
  12636. <productMenu id="deviceSetting"
  12637. type="1"
  12638. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12639. </productMenu>
  12640. <productMenu id="quickGuide"
  12641. type="1"
  12642. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12643. size="934KB" >
  12644. </productMenu>
  12645. <productMenu id="userGuide"
  12646. type="1"
  12647. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12648. size="1.14MB" >
  12649. </productMenu>
  12650. <productID id="5593"
  12651. />
  12652. <productGroupable type="0"
  12653. />
  12654. </product>
  12655. <product id="5R"
  12656. name="Ridekont 5R LITE"
  12657. series="5"
  12658. latestVersion="1.0"
  12659. show = "0" >
  12660. <productMenu id="protocol"
  12661. type="3" >
  12662. </productMenu>
  12663. <productMenu id="sip"
  12664. type="1" >
  12665. </productMenu>
  12666. <productMenu id="bluetoothIntercom"
  12667. type="1" >
  12668. </productMenu>
  12669. <productMenu id="phone"
  12670. type="1" >
  12671. </productMenu>
  12672. <productMenu id="fmradio"
  12673. type="1" >
  12674. </productMenu>
  12675. <productMenu id="deviceSetting"
  12676. type="1"
  12677. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12678. </productMenu>
  12679. <productMenu id="quickGuide"
  12680. type="0"
  12681. url=""
  12682. size="934KB" >
  12683. </productMenu>
  12684. <productMenu id="userGuide"
  12685. type="1"
  12686. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12687. size="1.14MB" >
  12688. </productMenu>
  12689. <productID id="5594"
  12690. />
  12691. <productGroupable type="0"
  12692. />
  12693. </product>
  12694. <product id="SA30"
  12695. name="SA30"
  12696. series="SA"
  12697. latestVersion="1.0.1"
  12698. latestVersionVoicePrompt="0.15"
  12699. show = "-1" >
  12700. <productMenu id="protocol"
  12701. type="2" >
  12702. </productMenu>
  12703. <productMenu id="ota"
  12704. type="2" >
  12705. <otaPackages>
  12706. <package
  12707. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12708. size="3144148"
  12709. />
  12710. </otaPackages>
  12711. </productMenu>
  12712. <productMenu id="meshIntercom"
  12713. type="30" >
  12714. </productMenu>
  12715. <productMenu id="meshIntercom+"
  12716. type="3"
  12717. url="2" >
  12718. </productMenu>
  12719. <productMenu id="phone"
  12720. type="1" >
  12721. </productMenu>
  12722. <productMenu id="music"
  12723. type="1" >
  12724. </productMenu>
  12725. <productMenu id="musicSharing"
  12726. type="0" >
  12727. </productMenu>
  12728. <productMenu id="deviceSetting"
  12729. type="1"
  12730. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12731. </productMenu>
  12732. <productMenu id="quickGuide"
  12733. type="0"
  12734. url=""
  12735. size="1.12MB" >
  12736. </productMenu>
  12737. <productMenu id="userGuide"
  12738. type="1"
  12739. url=""
  12740. size="2.0MB" >
  12741. </productMenu>
  12742. <productMenu id="videoGuide"
  12743. type="0"
  12744. url=""
  12745. size="3.41MB" >
  12746. </productMenu>
  12747. <productMenu id="volume"
  12748. type="12" >
  12749. </productMenu>
  12750. <productMenu id="battery"
  12751. type="1" >
  12752. </productMenu>
  12753. <productID id="6852"
  12754. />
  12755. <productGroupable type="0"
  12756. />
  12757. </product>
  12758. <product id="I30"
  12759. name="I30"
  12760. series="I"
  12761. latestVersion="1.0.1"
  12762. latestVersionVoicePrompt="0.2"
  12763. show = "-1" >
  12764. <productMenu id="protocol"
  12765. type="2" >
  12766. </productMenu>
  12767. <productMenu id="ota"
  12768. type="2" >
  12769. <otaPackages>
  12770. <package
  12771. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12772. size="3144148"
  12773. />
  12774. </otaPackages>
  12775. </productMenu>
  12776. <productMenu id="meshIntercom"
  12777. type="30" >
  12778. </productMenu>
  12779. <productMenu id="meshIntercom+"
  12780. type="3"
  12781. url="2" >
  12782. </productMenu>
  12783. <productMenu id="phone"
  12784. type="1" >
  12785. </productMenu>
  12786. <productMenu id="music"
  12787. type="1" >
  12788. </productMenu>
  12789. <productMenu id="musicSharing"
  12790. type="0" >
  12791. </productMenu>
  12792. <productMenu id="deviceSetting"
  12793. type="1"
  12794. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12795. </productMenu>
  12796. <productMenu id="quickGuide"
  12797. type="0"
  12798. url=""
  12799. size="1.12MB" >
  12800. </productMenu>
  12801. <productMenu id="userGuide"
  12802. type="1"
  12803. url=""
  12804. size="2.10MB" >
  12805. </productMenu>
  12806. <productMenu id="videoGuide"
  12807. type="0"
  12808. url=""
  12809. size="3.11MB" >
  12810. </productMenu>
  12811. <productMenu id="volume"
  12812. type="12" >
  12813. </productMenu>
  12814. <productMenu id="battery"
  12815. type="1" >
  12816. </productMenu>
  12817. <productID id="6853"
  12818. />
  12819. <productGroupable type="0"
  12820. />
  12821. </product>
  12822. <product id="LS2C30"
  12823. name="LS2-C30"
  12824. series="C"
  12825. latestVersion="1.0"
  12826. latestVersionVoicePrompt="0.13"
  12827. show = "-1" >
  12828. <productMenu id="protocol"
  12829. type="2" >
  12830. </productMenu>
  12831. <productMenu id="ota"
  12832. type="0" >
  12833. <otaPackages>
  12834. <package
  12835. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12836. size="3144148"
  12837. />
  12838. </otaPackages>
  12839. </productMenu>
  12840. <productMenu id="meshIntercom+"
  12841. type="3"
  12842. url="2" >
  12843. </productMenu>
  12844. <productMenu id="waveIntercom"
  12845. type="1" >
  12846. </productMenu>
  12847. <productMenu id="phone"
  12848. type="1" >
  12849. </productMenu>
  12850. <productMenu id="music"
  12851. type="1" >
  12852. </productMenu>
  12853. <productMenu id="musicSharing"
  12854. type="0" >
  12855. </productMenu>
  12856. <productMenu id="deviceSetting"
  12857. type="1"
  12858. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12859. </productMenu>
  12860. <productMenu id="quickGuide"
  12861. type="0"
  12862. url=""
  12863. size="1.17MB" >
  12864. </productMenu>
  12865. <productMenu id="userGuide"
  12866. type="1"
  12867. url=""
  12868. size="2.0MB" >
  12869. </productMenu>
  12870. <productMenu id="videoGuide"
  12871. type="0"
  12872. url=""
  12873. size="3.41MB" >
  12874. </productMenu>
  12875. <productMenu id="volume"
  12876. type="12" >
  12877. </productMenu>
  12878. <productMenu id="battery"
  12879. type="1" >
  12880. </productMenu>
  12881. <productID id="685E"
  12882. />
  12883. <productGroupable type="0"
  12884. />
  12885. </product>
  12886. <product id="C30EVO"
  12887. name="C30 EVO"
  12888. series="C"
  12889. latestVersion="1.0"
  12890. latestVersionVoicePrompt="0.13"
  12891. show = "-1" >
  12892. <productMenu id="protocol"
  12893. type="2" >
  12894. </productMenu>
  12895. <productMenu id="ota"
  12896. type="0" >
  12897. <otaPackages>
  12898. <package
  12899. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12900. size="3144148"
  12901. />
  12902. </otaPackages>
  12903. </productMenu>
  12904. <productMenu id="meshIntercom+"
  12905. type="3"
  12906. url="2" >
  12907. </productMenu>
  12908. <productMenu id="waveIntercom"
  12909. type="1" >
  12910. </productMenu>
  12911. <productMenu id="phone"
  12912. type="1" >
  12913. </productMenu>
  12914. <productMenu id="music"
  12915. type="1" >
  12916. </productMenu>
  12917. <productMenu id="musicSharing"
  12918. type="0" >
  12919. </productMenu>
  12920. <productMenu id="deviceSetting"
  12921. type="1"
  12922. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12923. </productMenu>
  12924. <productMenu id="quickGuide"
  12925. type="0"
  12926. url=""
  12927. size="1.17MB" >
  12928. </productMenu>
  12929. <productMenu id="userGuide"
  12930. type="1"
  12931. url=""
  12932. size="2.0MB" >
  12933. </productMenu>
  12934. <productMenu id="videoGuide"
  12935. type="0"
  12936. url=""
  12937. size="3.41MB" >
  12938. </productMenu>
  12939. <productMenu id="volume"
  12940. type="12" >
  12941. </productMenu>
  12942. <productMenu id="battery"
  12943. type="1" >
  12944. </productMenu>
  12945. <productID id="685B"
  12946. />
  12947. <productGroupable type="0"
  12948. />
  12949. </product>
  12950. <product id="C30"
  12951. name="SENA C30"
  12952. series="C"
  12953. latestVersion="1.2.2"
  12954. latestVersionVoicePrompt="0.13"
  12955. show = "1" >
  12956. <productMenu id="protocol"
  12957. type="2" >
  12958. </productMenu>
  12959. <productMenu id="alexa"
  12960. type="0" >
  12961. </productMenu>
  12962. <productMenu id="ota"
  12963. type="2" >
  12964. <otaPackages>
  12965. <package
  12966. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12967. size="3144148"
  12968. />
  12969. </otaPackages>
  12970. </productMenu>
  12971. <productMenu id="wa"
  12972. type="0" >
  12973. </productMenu>
  12974. <productMenu id="meshIntercom"
  12975. type="30" >
  12976. </productMenu>
  12977. <productMenu id="meshIntercom+"
  12978. type="3"
  12979. url="2" >
  12980. <productMenuType version="1.0.9"
  12981. type="2"
  12982. />
  12983. </productMenu>
  12984. <productMenu id="waveIntercom"
  12985. type="1" >
  12986. <productMenuType version="1.1.9"
  12987. type="0"
  12988. />
  12989. </productMenu>
  12990. <productMenu id="phone"
  12991. type="1" >
  12992. </productMenu>
  12993. <productMenu id="music"
  12994. type="1" >
  12995. </productMenu>
  12996. <productMenu id="musicSharing"
  12997. type="0" >
  12998. </productMenu>
  12999. <productMenu id="deviceSetting"
  13000. type="1"
  13001. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13002. <productMenuURL version="1.1.3"
  13003. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13004. />
  13005. <productMenuURL version="1.0.9"
  13006. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13007. />
  13008. </productMenu>
  13009. <productMenu id="quickGuide"
  13010. type="1"
  13011. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13012. size="1.12MB" >
  13013. </productMenu>
  13014. <productMenu id="userGuide"
  13015. type="0"
  13016. url=""
  13017. size="2.0MB" >
  13018. </productMenu>
  13019. <productMenu id="videoGuide"
  13020. type="0"
  13021. url=""
  13022. size="3.41MB" >
  13023. </productMenu>
  13024. <productMenu id="volume"
  13025. type="12" >
  13026. </productMenu>
  13027. <productMenu id="battery"
  13028. type="1" >
  13029. </productMenu>
  13030. <productID id="683A"
  13031. />
  13032. <productGroupable type="0"
  13033. />
  13034. </product>
  13035. <product id="C20"
  13036. name="C20"
  13037. series="C"
  13038. latestVersion="1.0"
  13039. show = "1" >
  13040. <productMenu id="protocol"
  13041. type="3" >
  13042. </productMenu>
  13043. <productMenu id="sip"
  13044. type="1" >
  13045. </productMenu>
  13046. <productMenu id="bluetoothIntercom"
  13047. type="1" >
  13048. </productMenu>
  13049. <productMenu id="phone"
  13050. type="1" >
  13051. </productMenu>
  13052. <productMenu id="deviceSetting"
  13053. type="1"
  13054. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13055. </productMenu>
  13056. <productMenu id="quickGuide"
  13057. type="1"
  13058. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13059. size="934KB" >
  13060. </productMenu>
  13061. <productMenu id="userGuide"
  13062. type="1"
  13063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13064. size="1.14MB" >
  13065. </productMenu>
  13066. <productID id="3701"
  13067. />
  13068. <productGroupable type="0"
  13069. />
  13070. </product>
  13071. <product id="C10"
  13072. name="C10"
  13073. series="C"
  13074. latestVersion="1.4.4"
  13075. show = "1" >
  13076. <productMenu id="protocol"
  13077. type="3" >
  13078. </productMenu>
  13079. <productMenu id="sip"
  13080. type="1" >
  13081. </productMenu>
  13082. <productMenu id="bluetoothIntercom"
  13083. type="1" >
  13084. </productMenu>
  13085. <productMenu id="phone"
  13086. type="1" >
  13087. </productMenu>
  13088. <productMenu id="fmradio"
  13089. type="0" >
  13090. </productMenu>
  13091. <productMenu id="deviceSetting"
  13092. type="1"
  13093. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13094. </productMenu>
  13095. <productMenu id="userGuide"
  13096. type="1"
  13097. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13098. size="1.14MB" >
  13099. </productMenu>
  13100. <productID id="5595"
  13101. />
  13102. <productGroupable type="0"
  13103. />
  13104. </product>
  13105. <product id="CA1"
  13106. name="CA1"
  13107. series="C"
  13108. latestVersion="0.2"
  13109. show = "-1" >
  13110. <productMenu id="protocol"
  13111. type="2" >
  13112. </productMenu>
  13113. <productMenu id="ota"
  13114. type="2" >
  13115. <otaPackages>
  13116. <package
  13117. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13118. size="3144148"
  13119. />
  13120. </otaPackages>
  13121. </productMenu>
  13122. <productMenu id="phone"
  13123. type="1" >
  13124. </productMenu>
  13125. <productMenu id="music"
  13126. type="1" >
  13127. </productMenu>
  13128. <productMenu id="musicSharing"
  13129. type="0" >
  13130. </productMenu>
  13131. <productMenu id="deviceSetting"
  13132. type="1"
  13133. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13134. </productMenu>
  13135. <productMenu id="quickGuide"
  13136. type="1"
  13137. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13138. size="1.12MB" >
  13139. </productMenu>
  13140. <productMenu id="userGuide"
  13141. type="0"
  13142. url=""
  13143. size="2.0MB" >
  13144. </productMenu>
  13145. <productMenu id="videoGuide"
  13146. type="1"
  13147. url=""
  13148. size="3.41MB" >
  13149. </productMenu>
  13150. <productMenu id="volume"
  13151. type="12" >
  13152. </productMenu>
  13153. <productMenu id="battery"
  13154. type="1" >
  13155. </productMenu>
  13156. <productID id="5F01"
  13157. />
  13158. <productGroupable type="0"
  13159. />
  13160. </product>
  13161. <product id="J30"
  13162. name="J30"
  13163. series="J"
  13164. latestVersion="1.2.2"
  13165. latestVersionVoicePrompt="0.14"
  13166. show = "0" >
  13167. <productMenu id="protocol"
  13168. type="2" >
  13169. </productMenu>
  13170. <productMenu id="alexa"
  13171. type="0" >
  13172. </productMenu>
  13173. <productMenu id="ota"
  13174. type="2" >
  13175. <otaPackages>
  13176. <package
  13177. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  13178. size="3144148"
  13179. />
  13180. </otaPackages>
  13181. </productMenu>
  13182. <productMenu id="wa"
  13183. type="0" >
  13184. </productMenu>
  13185. <productMenu id="meshIntercom"
  13186. type="30" >
  13187. </productMenu>
  13188. <productMenu id="meshIntercom+"
  13189. type="3"
  13190. url="2" >
  13191. <productMenuType version="1.0.9"
  13192. type="2"
  13193. />
  13194. </productMenu>
  13195. <productMenu id="waveIntercom"
  13196. type="1" >
  13197. <productMenuType version="1.1.9"
  13198. type="0"
  13199. />
  13200. </productMenu>
  13201. <productMenu id="phone"
  13202. type="1" >
  13203. </productMenu>
  13204. <productMenu id="music"
  13205. type="1" >
  13206. </productMenu>
  13207. <productMenu id="musicSharing"
  13208. type="0" >
  13209. </productMenu>
  13210. <productMenu id="deviceSetting"
  13211. type="1"
  13212. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13213. <productMenuURL version="1.0.9"
  13214. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13215. />
  13216. </productMenu>
  13217. <productMenu id="quickGuide"
  13218. type="0"
  13219. url=""
  13220. size="1.12MB" >
  13221. </productMenu>
  13222. <productMenu id="userGuide"
  13223. type="1"
  13224. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13225. size="2.0MB" >
  13226. </productMenu>
  13227. <productMenu id="videoGuide"
  13228. type="0"
  13229. url=""
  13230. size="3.41MB" >
  13231. </productMenu>
  13232. <productMenu id="volume"
  13233. type="12" >
  13234. </productMenu>
  13235. <productMenu id="battery"
  13236. type="1" >
  13237. </productMenu>
  13238. <productID id="6848"
  13239. />
  13240. <productGroupable type="0"
  13241. />
  13242. </product>
  13243. <product id="J10"
  13244. name="J10"
  13245. series="5"
  13246. latestVersion="1.1.4"
  13247. show = "0" >
  13248. <productMenu id="protocol"
  13249. type="3" >
  13250. </productMenu>
  13251. <productMenu id="sip"
  13252. type="1" >
  13253. </productMenu>
  13254. <productMenu id="bluetoothIntercom"
  13255. type="1" >
  13256. </productMenu>
  13257. <productMenu id="phone"
  13258. type="1" >
  13259. </productMenu>
  13260. <productMenu id="fmradio"
  13261. type="0" >
  13262. </productMenu>
  13263. <productMenu id="deviceSetting"
  13264. type="1"
  13265. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13266. </productMenu>
  13267. <productMenu id="userGuide"
  13268. type="1"
  13269. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13270. size="1.14MB" >
  13271. </productMenu>
  13272. <productID id="5598"
  13273. />
  13274. <productGroupable type="0"
  13275. />
  13276. </product>
  13277. <product id="B20"
  13278. name="B20"
  13279. series="B"
  13280. latestVersion="1.1.2"
  13281. latestVersionVoicePrompt="0.14"
  13282. show = "0" >
  13283. <productMenu id="protocol"
  13284. type="2" >
  13285. </productMenu>
  13286. <productMenu id="alexa"
  13287. type="0" >
  13288. </productMenu>
  13289. <productMenu id="ota"
  13290. type="2" >
  13291. <otaPackages>
  13292. <package
  13293. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  13294. size="3144148"
  13295. />
  13296. </otaPackages>
  13297. </productMenu>
  13298. <productMenu id="wa"
  13299. type="0" >
  13300. </productMenu>
  13301. <productMenu id="meshIntercom"
  13302. type="30" >
  13303. </productMenu>
  13304. <productMenu id="phone"
  13305. type="1" >
  13306. </productMenu>
  13307. <productMenu id="music"
  13308. type="1" >
  13309. </productMenu>
  13310. <productMenu id="musicSharing"
  13311. type="0" >
  13312. </productMenu>
  13313. <productMenu id="deviceSetting"
  13314. type="1"
  13315. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13316. <productMenuURL version="1.0.9"
  13317. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13318. />
  13319. </productMenu>
  13320. <productMenu id="quickGuide"
  13321. type="0"
  13322. url=""
  13323. size="1.12MB" >
  13324. </productMenu>
  13325. <productMenu id="userGuide"
  13326. type="1"
  13327. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13328. size="2.0MB" >
  13329. </productMenu>
  13330. <productMenu id="videoGuide"
  13331. type="0"
  13332. url=""
  13333. size="3.41MB" >
  13334. </productMenu>
  13335. <productMenu id="volume"
  13336. type="12" >
  13337. </productMenu>
  13338. <productMenu id="battery"
  13339. type="1" >
  13340. </productMenu>
  13341. <productID id="6847"
  13342. />
  13343. <productGroupable type="0"
  13344. />
  13345. </product>
  13346. <product id="B10"
  13347. name="B10"
  13348. series="5"
  13349. latestVersion="1.2.4"
  13350. show = "0" >
  13351. <productMenu id="protocol"
  13352. type="3" >
  13353. </productMenu>
  13354. <productMenu id="sip"
  13355. type="1" >
  13356. </productMenu>
  13357. <productMenu id="bluetoothIntercom"
  13358. type="1" >
  13359. </productMenu>
  13360. <productMenu id="phone"
  13361. type="1" >
  13362. </productMenu>
  13363. <productMenu id="fmradio"
  13364. type="0" >
  13365. </productMenu>
  13366. <productMenu id="deviceSetting"
  13367. type="1"
  13368. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13369. </productMenu>
  13370. <productMenu id="userGuide"
  13371. type="1"
  13372. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13373. size="1.14MB" >
  13374. </productMenu>
  13375. <productID id="5596"
  13376. />
  13377. <productGroupable type="0"
  13378. />
  13379. </product>
  13380. <product id="E30"
  13381. name="E30"
  13382. series="E"
  13383. latestVersion="1.1.2"
  13384. latestVersionVoicePrompt="0.14"
  13385. show = "0" >
  13386. <productMenu id="protocol"
  13387. type="2" >
  13388. </productMenu>
  13389. <productMenu id="alexa"
  13390. type="0" >
  13391. </productMenu>
  13392. <productMenu id="ota"
  13393. type="2" >
  13394. <otaPackages>
  13395. <package
  13396. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  13397. size="3144148"
  13398. />
  13399. </otaPackages>
  13400. </productMenu>
  13401. <productMenu id="wa"
  13402. type="0" >
  13403. </productMenu>
  13404. <productMenu id="meshIntercom"
  13405. type="30" >
  13406. </productMenu>
  13407. <productMenu id="meshIntercom+"
  13408. type="3"
  13409. url="2" >
  13410. </productMenu>
  13411. <productMenu id="waveIntercom"
  13412. type="1" >
  13413. <productMenuType version="1.0.9"
  13414. type="0"
  13415. />
  13416. </productMenu>
  13417. <productMenu id="phone"
  13418. type="1" >
  13419. </productMenu>
  13420. <productMenu id="music"
  13421. type="1" >
  13422. </productMenu>
  13423. <productMenu id="musicSharing"
  13424. type="0" >
  13425. </productMenu>
  13426. <productMenu id="deviceSetting"
  13427. type="1"
  13428. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13429. </productMenu>
  13430. <productMenu id="quickGuide"
  13431. type="0"
  13432. url=""
  13433. size="1.12MB" >
  13434. </productMenu>
  13435. <productMenu id="userGuide"
  13436. type="1"
  13437. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13438. size="2.0MB" >
  13439. </productMenu>
  13440. <productMenu id="videoGuide"
  13441. type="0"
  13442. url=""
  13443. size="3.41MB" >
  13444. </productMenu>
  13445. <productMenu id="volume"
  13446. type="12" >
  13447. </productMenu>
  13448. <productMenu id="battery"
  13449. type="1" >
  13450. </productMenu>
  13451. <productID id="6846"
  13452. />
  13453. <productGroupable type="0"
  13454. />
  13455. </product>
  13456. <product id="ACSRAM"
  13457. name="ACS-RAM"
  13458. series="ACS"
  13459. latestVersion="1.0.5"
  13460. show = "1" >
  13461. <productMenu id="protocol"
  13462. type="3" >
  13463. </productMenu>
  13464. <productMenu id="sip"
  13465. type="1" >
  13466. </productMenu>
  13467. <productMenu id="bluetoothIntercom"
  13468. type="1" >
  13469. </productMenu>
  13470. <productMenu id="deviceSetting"
  13471. type="1"
  13472. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  13473. </productMenu>
  13474. <productMenu id="quickGuide"
  13475. type="1"
  13476. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13477. size="344KB" >
  13478. </productMenu>
  13479. <productMenu id="userGuide"
  13480. type="1"
  13481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13482. size="1.14MB" >
  13483. </productMenu>
  13484. <productMenu id="connectGuide"
  13485. type="1"
  13486. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13487. size="1.12MB" >
  13488. </productMenu>
  13489. <productID id="3400"
  13490. />
  13491. <productGroupable type="0"
  13492. />
  13493. </product>
  13494. <product id="ACS10"
  13495. name="ACS10"
  13496. series="ACS"
  13497. latestVersion="1.0.2"
  13498. show = "1" >
  13499. <productMenu id="protocol"
  13500. type="0">
  13501. </productMenu>
  13502. <productMenu id="sip"
  13503. type="1" >
  13504. </productMenu>
  13505. <productMenu id="bluetoothIntercom"
  13506. type="1" >
  13507. </productMenu>
  13508. <productMenu id="phone"
  13509. type="2" >
  13510. </productMenu>
  13511. <productMenu id="deviceSetting"
  13512. type="1"
  13513. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13514. </productMenu>
  13515. <productMenu id="quickGuide"
  13516. type="1"
  13517. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13518. size="970KB" >
  13519. </productMenu>
  13520. <productMenu id="userGuide"
  13521. type="1"
  13522. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13523. size="1.26MB" >
  13524. </productMenu>
  13525. <productMenu id="connectGuide"
  13526. type="1"
  13527. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13528. size="1.12MB" >
  13529. </productMenu>
  13530. <productID id="3300"
  13531. />
  13532. <productGroupable type="0"
  13533. />
  13534. </product>
  13535. <product id="DWO7ProMesh"
  13536. name="DWO 7 Pro Mesh"
  13537. series="50"
  13538. latestVersion="1.1"
  13539. latestVersionVoicePrompt="0.9"
  13540. show = "0" >
  13541. <productMenu id="protocol"
  13542. type="2" >
  13543. </productMenu>
  13544. <productMenu id="alexa"
  13545. type="0" >
  13546. </productMenu>
  13547. <productMenu id="ota"
  13548. type="2" >
  13549. <otaPackages>
  13550. <package
  13551. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13552. size="2945812"
  13553. />
  13554. </otaPackages>
  13555. </productMenu>
  13556. <productMenu id="wa"
  13557. type="0" >
  13558. </productMenu>
  13559. <productMenu id="meshIntercom"
  13560. type="20" >
  13561. </productMenu>
  13562. <productMenu id="meshIntercom+"
  13563. type="3"
  13564. url="2" >
  13565. <productMenuType version="1.0.9"
  13566. type="2"
  13567. />
  13568. <productMenuURL version="2.1.1"
  13569. url="0"
  13570. />
  13571. </productMenu>
  13572. <productMenu id="waveIntercom"
  13573. type="1" >
  13574. <productMenuType version="1.0.9"
  13575. type="0"
  13576. />
  13577. </productMenu>
  13578. <productMenu id="phone"
  13579. type="1" >
  13580. </productMenu>
  13581. <productMenu id="music"
  13582. type="1" >
  13583. </productMenu>
  13584. <productMenu id="fmradio"
  13585. type="1" >
  13586. </productMenu>
  13587. <productMenu id="musicSharing"
  13588. type="0" >
  13589. </productMenu>
  13590. <productMenu id="deviceSetting"
  13591. type="1"
  13592. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13593. <productMenuURL version="1.0.9"
  13594. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13595. />
  13596. </productMenu>
  13597. <productMenu id="quickGuide"
  13598. type="1"
  13599. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13600. size="1.12MB" >
  13601. </productMenu>
  13602. <productMenu id="userGuide"
  13603. type="1"
  13604. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13605. size="2.0MB" >
  13606. </productMenu>
  13607. <productMenu id="volume"
  13608. type="12" >
  13609. </productMenu>
  13610. <productMenu id="battery"
  13611. type="1" >
  13612. </productMenu>
  13613. <productID id="6806"
  13614. />
  13615. <productGroupable type="0"
  13616. />
  13617. </product>
  13618. <product id="ERA1X"
  13619. name="ERA 1 X"
  13620. series="UCOM"
  13621. latestVersion="0.2.1"
  13622. latestVersionMesh="0.19"
  13623. latestVersionVoicePrompt="1.2"
  13624. show = "-1" >
  13625. <productMenu id="protocol"
  13626. type="2" >
  13627. </productMenu>
  13628. <productMenu id="ota"
  13629. type="2" >
  13630. <otaLanguages>
  13631. <otaLanguage
  13632. id="0"
  13633. name="English"
  13634. package="0"
  13635. />
  13636. <otaLanguage
  13637. id="0"
  13638. name="French"
  13639. package="1"
  13640. />
  13641. <otaLanguage
  13642. id="0"
  13643. name="Spanish"
  13644. package="2"
  13645. />
  13646. <otaLanguage
  13647. id="0"
  13648. name="Italian"
  13649. package="3"
  13650. />
  13651. <otaLanguage
  13652. id="0"
  13653. name="German"
  13654. package="4"
  13655. />
  13656. <otaLanguage
  13657. id="0"
  13658. name="Dutch"
  13659. package="5"
  13660. />
  13661. <otaLanguage
  13662. id="0"
  13663. name="Russian"
  13664. package="6"
  13665. />
  13666. <otaLanguage
  13667. id="0"
  13668. name="Chinese"
  13669. package="7"
  13670. />
  13671. <otaLanguage
  13672. id="0"
  13673. name="Korean"
  13674. package="8"
  13675. />
  13676. <otaLanguage
  13677. id="0"
  13678. name="Japanese"
  13679. package="9"
  13680. />
  13681. <otaLanguage
  13682. id="0"
  13683. name="Finnish"
  13684. package="10"
  13685. />
  13686. <otaLanguage
  13687. id="0"
  13688. name="Polish"
  13689. package="11"
  13690. />
  13691. <otaLanguage
  13692. id="0"
  13693. name="Czech"
  13694. package="12"
  13695. />
  13696. <otaLanguage
  13697. id="0"
  13698. name="Danish"
  13699. package="13"
  13700. />
  13701. <otaLanguage
  13702. id="0"
  13703. name="Norwegian"
  13704. package="14"
  13705. />
  13706. <otaLanguage
  13707. id="0"
  13708. name="Swedish"
  13709. package="15"
  13710. />
  13711. <otaLanguage
  13712. id="0"
  13713. name="Turkish"
  13714. package="16"
  13715. />
  13716. <otaLanguage
  13717. id="0"
  13718. name="Hungarian"
  13719. package="17"
  13720. />
  13721. <otaLanguage
  13722. id="0"
  13723. name="Portuguese"
  13724. package="18"
  13725. />
  13726. <otaLanguage
  13727. id="0"
  13728. name="Hebrew"
  13729. package="19"
  13730. />
  13731. <otaLanguage
  13732. id="0"
  13733. name="Greek"
  13734. package="20"
  13735. />
  13736. </otaLanguages>
  13737. <otaPackages>
  13738. <package
  13739. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13740. size="5183988"
  13741. />
  13742. <package
  13743. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13744. size="5183988"
  13745. />
  13746. <package
  13747. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13748. size="5183988"
  13749. />
  13750. <package
  13751. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13752. size="5183988"
  13753. />
  13754. <package
  13755. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13756. size="5183988"
  13757. />
  13758. <package
  13759. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13760. size="5183988"
  13761. />
  13762. <package
  13763. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13764. size="5183988"
  13765. />
  13766. <package
  13767. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13768. size="5183988"
  13769. />
  13770. <package
  13771. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13772. size="5183988"
  13773. />
  13774. <package
  13775. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13776. size="5183988"
  13777. />
  13778. <package
  13779. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13780. size="5183988"
  13781. />
  13782. <package
  13783. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13784. size="5183988"
  13785. />
  13786. <package
  13787. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13788. size="5183988"
  13789. />
  13790. <package
  13791. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13792. size="5183988"
  13793. />
  13794. <package
  13795. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13796. size="5183988"
  13797. />
  13798. <package
  13799. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13800. size="5183988"
  13801. />
  13802. <package
  13803. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13804. size="5183988"
  13805. />
  13806. <package
  13807. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13808. size="5183988"
  13809. />
  13810. <package
  13811. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13812. size="5183988"
  13813. />
  13814. <package
  13815. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13816. size="5183988"
  13817. />
  13818. <package
  13819. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13820. size="5183988"
  13821. />
  13822. </otaPackages>
  13823. </productMenu>
  13824. <productMenu id="wa"
  13825. type="0" >
  13826. </productMenu>
  13827. <productMenu id="sip"
  13828. type="1" >
  13829. </productMenu>
  13830. <productMenu id="led"
  13831. type="0" >
  13832. </productMenu>
  13833. <productMenu id="illusion"
  13834. type="1" >
  13835. </productMenu>
  13836. <productMenu id="meshIntercom"
  13837. type="30" >
  13838. </productMenu>
  13839. <productMenu id="meshIntercom+"
  13840. type="3"
  13841. url="2" >
  13842. </productMenu>
  13843. <productMenu id="waveIntercom"
  13844. type="0" >
  13845. </productMenu>
  13846. <productMenu id="bluetoothIntercom"
  13847. type="1" >
  13848. </productMenu>
  13849. <productMenu id="bluetoothIntercomGrouping"
  13850. type="0" >
  13851. </productMenu>
  13852. <productMenu id="fmradio"
  13853. type="1"
  13854. url="1" >
  13855. </productMenu>
  13856. <productMenu id="phone"
  13857. type="1" >
  13858. </productMenu>
  13859. <productMenu id="music"
  13860. type="1" >
  13861. </productMenu>
  13862. <productMenu id="musicSharing"
  13863. type="0" >
  13864. </productMenu>
  13865. <productMenu id="deviceSetting"
  13866. type="1"
  13867. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13868. </productMenu>
  13869. <productMenu id="quickGuide"
  13870. type="0"
  13871. url=""
  13872. size="1.12MB" >
  13873. </productMenu>
  13874. <productMenu id="userGuide"
  13875. type="1"
  13876. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13877. size="2.0MB" >
  13878. </productMenu>
  13879. <productMenu id="videoGuide"
  13880. type="0"
  13881. url=""
  13882. size="3.41MB" >
  13883. </productMenu>
  13884. <productMenu id="volume"
  13885. type="16" >
  13886. </productMenu>
  13887. <productMenu id="soundMode"
  13888. type="1" >
  13889. </productMenu>
  13890. <productMenu id="battery"
  13891. type="1" >
  13892. </productMenu>
  13893. <productID id="6A83"
  13894. />
  13895. <productGroupable type="0"
  13896. />
  13897. </product>
  13898. <product id="MeshStation"
  13899. name="Mesh Station"
  13900. series="50"
  13901. latestVersion="0.9"
  13902. show = "-1" >
  13903. <productMenu id="protocol"
  13904. type="2" >
  13905. </productMenu>
  13906. <productMenu id="meshIntercom"
  13907. type="20"
  13908. url="99" >
  13909. </productMenu>
  13910. <productID id="3161"
  13911. />
  13912. <productGroupable type="0"
  13913. />
  13914. </product>
  13915. </products>
  13916. </sna>