snm.xml 505 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260164" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/?webview=true"
  4. />
  5. <pp url="https://www.sena.com/privacy?webview=true"
  6. />
  7. <warranty url="https://www.sena.com/support/warranty/?webview=true"
  8. />
  9. <profile url=""
  10. />
  11. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  12. />
  13. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  14. />
  15. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  16. />
  17. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  18. />
  19. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  20. />
  21. <support url=""
  22. />
  23. <forum url=""
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="VORTEX"
  85. name="VORTEX Series"
  86. show="1"
  87. />
  88. <series id="20"
  89. name="20 Series"
  90. show="1"
  91. />
  92. <series id="SRL"
  93. name="SRL Series"
  94. show="1"
  95. />
  96. <series id="ACS"
  97. name="ACS Series"
  98. show="1"
  99. />
  100. <series id="10"
  101. name="10 Series"
  102. show="1"
  103. />
  104. <series id="5"
  105. name="5 Series"
  106. show="1"
  107. />
  108. <series id="3"
  109. name="3 Series"
  110. show="1"
  111. />
  112. <series id="R"
  113. name="R Series"
  114. show="1"
  115. />
  116. <series id="C"
  117. name="C Series"
  118. show="1"
  119. />
  120. <series id="Other"
  121. name="Other"
  122. show="1"
  123. />
  124. <!--
  125. <series id="smh"
  126. name="SMH"
  127. />
  128. <series id="cavalry"
  129. name="CAVALRY"
  130. show="0"
  131. />
  132. -->
  133. </serieses>
  134. <products>
  135. <product id="60SPRO"
  136. name="60S PRO"
  137. series="60"
  138. latestVersion="0.1"
  139. latestVersionMesh="0.19"
  140. latestVersionVoicePrompt="1.2"
  141. show = "-1" >
  142. <productMenu id="protocol"
  143. type="2" >
  144. </productMenu>
  145. <productMenu id="ota"
  146. type="0" >
  147. <otaLanguages>
  148. <otaLanguage
  149. id="0"
  150. name="English"
  151. package="0"
  152. />
  153. <otaLanguage
  154. id="0"
  155. name="French"
  156. package="1"
  157. />
  158. <otaLanguage
  159. id="0"
  160. name="Spanish"
  161. package="2"
  162. />
  163. <otaLanguage
  164. id="0"
  165. name="Italian"
  166. package="3"
  167. />
  168. <otaLanguage
  169. id="0"
  170. name="German"
  171. package="4"
  172. />
  173. <otaLanguage
  174. id="0"
  175. name="Dutch"
  176. package="5"
  177. />
  178. <otaLanguage
  179. id="0"
  180. name="Russian"
  181. package="6"
  182. />
  183. <otaLanguage
  184. id="0"
  185. name="Chinese"
  186. package="7"
  187. />
  188. <otaLanguage
  189. id="0"
  190. name="Korean"
  191. package="8"
  192. />
  193. <otaLanguage
  194. id="0"
  195. name="Japanese"
  196. package="9"
  197. />
  198. <otaLanguage
  199. id="0"
  200. name="Finnish"
  201. package="10"
  202. />
  203. <otaLanguage
  204. id="0"
  205. name="Polish"
  206. package="11"
  207. />
  208. </otaLanguages>
  209. <otaPackages>
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  244. size="5183988"
  245. />
  246. <package
  247. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  248. size="5183988"
  249. />
  250. <package
  251. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  252. size="5183988"
  253. />
  254. <package
  255. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  256. size="5183988"
  257. />
  258. </otaPackages>
  259. </productMenu>
  260. <productMenu id="sip"
  261. type="1" >
  262. </productMenu>
  263. <productMenu id="illusion"
  264. type="1" >
  265. </productMenu>
  266. <productMenu id="meshIntercom"
  267. type="30" >
  268. </productMenu>
  269. <productMenu id="meshIntercom+"
  270. type="3"
  271. url="2" >
  272. </productMenu>
  273. <productMenu id="waveIntercom"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="bluetoothIntercom"
  277. type="1"
  278. url="2" >
  279. </productMenu>
  280. <productMenu id="bluetoothIntercomGrouping"
  281. type="0" >
  282. </productMenu>
  283. <productMenu id="fmradio"
  284. type="1"
  285. url="1" >
  286. </productMenu>
  287. <productMenu id="phone"
  288. type="1" >
  289. </productMenu>
  290. <productMenu id="music"
  291. type="1" >
  292. </productMenu>
  293. <productMenu id="musicSharing"
  294. type="0" >
  295. </productMenu>
  296. <productMenu id="deviceSetting"
  297. type="1"
  298. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  299. </productMenu>
  300. <productMenu id="quickGuide"
  301. type="0"
  302. url=""
  303. size="1.12MB" >
  304. </productMenu>
  305. <productMenu id="userGuide"
  306. type="1"
  307. url=""
  308. size="2.0MB" >
  309. </productMenu>
  310. <productMenu id="videoGuide"
  311. type="0"
  312. url=""
  313. size="3.41MB" >
  314. </productMenu>
  315. <productMenu id="connectGuide"
  316. type="0"
  317. url=""
  318. size="1.12MB" >
  319. </productMenu>
  320. <productMenu id="volume"
  321. type="16" >
  322. </productMenu>
  323. <productMenu id="soundMode"
  324. type="1" >
  325. </productMenu>
  326. <productMenu id="battery"
  327. type="1" >
  328. </productMenu>
  329. <productID id="6A1A"
  330. />
  331. <productGroupable type="0"
  332. />
  333. </product>
  334. <product id="60SEVO"
  335. name="60S EVO"
  336. series="60"
  337. latestVersion="1.0.2"
  338. latestVersionMesh="0.19"
  339. latestVersionVoicePrompt="1.7"
  340. show = "1" >
  341. <productMenu id="protocol"
  342. type="2" >
  343. </productMenu>
  344. <productMenu id="warranty"
  345. type="1" >
  346. </productMenu>
  347. <productMenu id="serialNumber"
  348. type="1" >
  349. </productMenu>
  350. <productMenu id="ota"
  351. type="2" >
  352. <otaLanguages>
  353. <otaLanguage
  354. id="0"
  355. name="English"
  356. package="0"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="French"
  361. package="1"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Spanish"
  366. package="2"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Italian"
  371. package="3"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="German"
  376. package="4"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Dutch"
  381. package="5"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Russian"
  386. package="6"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Chinese"
  391. package="7"
  392. />
  393. <otaLanguage
  394. id="0"
  395. name="Korean"
  396. package="8"
  397. />
  398. <otaLanguage
  399. id="0"
  400. name="Japanese"
  401. package="9"
  402. />
  403. <otaLanguage
  404. id="0"
  405. name="Finnish"
  406. package="10"
  407. />
  408. <otaLanguage
  409. id="0"
  410. name="Polish"
  411. package="11"
  412. />
  413. </otaLanguages>
  414. <otaPackages>
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  449. size="5183988"
  450. />
  451. <package
  452. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  453. size="5183988"
  454. />
  455. <package
  456. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  457. size="5183988"
  458. />
  459. <package
  460. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  461. size="5183988"
  462. />
  463. </otaPackages>
  464. </productMenu>
  465. <productMenu id="sip"
  466. type="1" >
  467. </productMenu>
  468. <productMenu id="illusion"
  469. type="1" >
  470. </productMenu>
  471. <productMenu id="meshIntercom"
  472. type="30" >
  473. </productMenu>
  474. <productMenu id="meshIntercom+"
  475. type="3"
  476. url="2" >
  477. </productMenu>
  478. <productMenu id="waveIntercom"
  479. type="1" >
  480. </productMenu>
  481. <productMenu id="bluetoothIntercom"
  482. type="1"
  483. url="2" >
  484. </productMenu>
  485. <productMenu id="bluetoothIntercomGrouping"
  486. type="0" >
  487. </productMenu>
  488. <productMenu id="fmradio"
  489. type="1"
  490. url="1" >
  491. </productMenu>
  492. <productMenu id="phone"
  493. type="1" >
  494. </productMenu>
  495. <productMenu id="music"
  496. type="1" >
  497. </productMenu>
  498. <productMenu id="musicSharing"
  499. type="0" >
  500. </productMenu>
  501. <productMenu id="deviceSetting"
  502. type="1"
  503. url="https://api.sena.com/support/SenaNeoApp/60SEVO/NS_60SEVO.xml" >
  504. <productMenuURL version="1.0.2"
  505. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06_Auto.xml"
  506. />
  507. </productMenu>
  508. <productMenu id="quickGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="userGuide"
  514. type="1"
  515. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.1.0_en_260630.pdf"
  516. size="2.0MB" >
  517. </productMenu>
  518. <productMenu id="videoGuide"
  519. type="0"
  520. url=""
  521. size="3.41MB" >
  522. </productMenu>
  523. <productMenu id="connectGuide"
  524. type="0"
  525. url=""
  526. size="1.12MB" >
  527. </productMenu>
  528. <productMenu id="volume"
  529. type="16" >
  530. </productMenu>
  531. <productMenu id="volume+"
  532. type="2"
  533. url="0x6004" >
  534. </productMenu>
  535. <productMenu id="soundMode"
  536. type="1" >
  537. </productMenu>
  538. <productMenu id="appearance"
  539. type="1"
  540. url="1|white,silver,black,glossy_black" >
  541. </productMenu>
  542. <productMenu id="battery"
  543. type="1" >
  544. </productMenu>
  545. <productID id="6A15"
  546. />
  547. <productGroupable type="0"
  548. />
  549. </product>
  550. <product id="60S"
  551. name="60S"
  552. series="60"
  553. latestVersion="1.2.9"
  554. latestVersionMesh="1.2"
  555. latestVersionVoicePrompt="1.7"
  556. show = "1" >
  557. <productMenu id="protocol"
  558. type="2" >
  559. </productMenu>
  560. <productMenu id="ota"
  561. type="2" >
  562. <otaLanguages>
  563. <otaLanguage
  564. id="0"
  565. name="English"
  566. package="0"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="French"
  571. package="1"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Spanish"
  576. package="2"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Italian"
  581. package="3"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="German"
  586. package="4"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Dutch"
  591. package="5"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Russian"
  596. package="6"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Chinese"
  601. package="7"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Korean"
  606. package="8"
  607. />
  608. <otaLanguage
  609. id="0"
  610. name="Japanese"
  611. package="9"
  612. />
  613. <otaLanguage
  614. id="0"
  615. name="Finnish"
  616. package="10"
  617. />
  618. <otaLanguage
  619. id="0"
  620. name="Polish"
  621. package="11"
  622. />
  623. </otaLanguages>
  624. <otaPackages>
  625. <package
  626. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0.img"
  627. size="5183988"
  628. />
  629. <package
  630. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fr-FR.img"
  631. size="5183988"
  632. />
  633. <package
  634. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-es-ES.img"
  635. size="5183988"
  636. />
  637. <package
  638. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-it-IT.img"
  639. size="5183988"
  640. />
  641. <package
  642. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-de-DE.img"
  643. size="5183988"
  644. />
  645. <package
  646. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-nl-NL.img"
  647. size="5183988"
  648. />
  649. <package
  650. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ru-RU.img"
  651. size="5183988"
  652. />
  653. <package
  654. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-cmn-CN.img"
  655. size="5183988"
  656. />
  657. <package
  658. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ko-KR.img"
  659. size="5183988"
  660. />
  661. <package
  662. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-ja-JP.img"
  663. size="5183988"
  664. />
  665. <package
  666. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-fi-FI.img"
  667. size="5183988"
  668. />
  669. <package
  670. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S_REV2-v1.2.9-build0-pl-PL.img"
  671. size="5183988"
  672. />
  673. </otaPackages>
  674. </productMenu>
  675. <productMenu id="sip"
  676. type="1" >
  677. </productMenu>
  678. <productMenu id="illusion"
  679. type="1" >
  680. </productMenu>
  681. <productMenu id="meshIntercom"
  682. type="30" >
  683. </productMenu>
  684. <productMenu id="meshIntercom+"
  685. type="3"
  686. url="2" >
  687. </productMenu>
  688. <productMenu id="waveIntercom"
  689. type="1" >
  690. </productMenu>
  691. <productMenu id="bluetoothIntercom"
  692. type="1"
  693. url="2" >
  694. </productMenu>
  695. <productMenu id="bluetoothIntercomGrouping"
  696. type="0" >
  697. </productMenu>
  698. <productMenu id="fmradio"
  699. type="1"
  700. url="1" >
  701. </productMenu>
  702. <productMenu id="phone"
  703. type="1" >
  704. </productMenu>
  705. <productMenu id="music"
  706. type="1" >
  707. </productMenu>
  708. <productMenu id="musicSharing"
  709. type="0" >
  710. </productMenu>
  711. <productMenu id="deviceSetting"
  712. type="1"
  713. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  714. <productMenuURL version="1.2.10"
  715. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  716. />
  717. <productMenuURL version="1.2.6"
  718. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  719. />
  720. <productMenuURL version="1.2.3"
  721. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  722. />
  723. </productMenu>
  724. <productMenu id="quickGuide"
  725. type="0"
  726. url=""
  727. size="1.12MB" >
  728. </productMenu>
  729. <productMenu id="userGuide"
  730. type="1"
  731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  732. size="2.0MB" >
  733. </productMenu>
  734. <productMenu id="videoGuide"
  735. type="0"
  736. url=""
  737. size="3.41MB" >
  738. </productMenu>
  739. <productMenu id="connectGuide"
  740. type="1"
  741. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  742. size="1.12MB" >
  743. </productMenu>
  744. <productMenu id="volume"
  745. type="16" >
  746. </productMenu>
  747. <productMenu id="volume+"
  748. type="2"
  749. url="0x6004" >
  750. <productMenuURL version="1.2.3"
  751. url="0x6004"
  752. />
  753. </productMenu>
  754. <productMenu id="soundMode"
  755. type="0" >
  756. </productMenu>
  757. <productMenu id="appearance"
  758. type="1"
  759. url="2|white,silver,chrome,black" >
  760. </productMenu>
  761. <productMenu id="battery"
  762. type="1" >
  763. </productMenu>
  764. <productID id="6A0D"
  765. />
  766. <productGroupable type="0"
  767. />
  768. </product>
  769. <product id="60S"
  770. name="60S"
  771. series="60"
  772. latestVersion="1.2.9"
  773. latestVersionMesh="1.2"
  774. latestVersionVoicePrompt="1.7"
  775. show = "-1" >
  776. <productMenu id="protocol"
  777. type="2" >
  778. </productMenu>
  779. <productMenu id="ota"
  780. type="2" >
  781. <otaLanguages>
  782. <otaLanguage
  783. id="0"
  784. name="English"
  785. package="0"
  786. />
  787. <otaLanguage
  788. id="0"
  789. name="French"
  790. package="1"
  791. />
  792. <otaLanguage
  793. id="0"
  794. name="Spanish"
  795. package="2"
  796. />
  797. <otaLanguage
  798. id="0"
  799. name="Italian"
  800. package="3"
  801. />
  802. <otaLanguage
  803. id="0"
  804. name="German"
  805. package="4"
  806. />
  807. <otaLanguage
  808. id="0"
  809. name="Dutch"
  810. package="5"
  811. />
  812. <otaLanguage
  813. id="0"
  814. name="Russian"
  815. package="6"
  816. />
  817. <otaLanguage
  818. id="0"
  819. name="Chinese"
  820. package="7"
  821. />
  822. <otaLanguage
  823. id="0"
  824. name="Korean"
  825. package="8"
  826. />
  827. <otaLanguage
  828. id="0"
  829. name="Japanese"
  830. package="9"
  831. />
  832. <otaLanguage
  833. id="0"
  834. name="Finnish"
  835. package="10"
  836. />
  837. <otaLanguage
  838. id="0"
  839. name="Polish"
  840. package="11"
  841. />
  842. </otaLanguages>
  843. <otaPackages>
  844. <package
  845. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0.img"
  846. size="5183988"
  847. />
  848. <package
  849. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fr-FR.img"
  850. size="5183988"
  851. />
  852. <package
  853. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-es-ES.img"
  854. size="5183988"
  855. />
  856. <package
  857. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-it-IT.img"
  858. size="5183988"
  859. />
  860. <package
  861. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-de-DE.img"
  862. size="5183988"
  863. />
  864. <package
  865. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-nl-NL.img"
  866. size="5183988"
  867. />
  868. <package
  869. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ru-RU.img"
  870. size="5183988"
  871. />
  872. <package
  873. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-cmn-CN.img"
  874. size="5183988"
  875. />
  876. <package
  877. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ko-KR.img"
  878. size="5183988"
  879. />
  880. <package
  881. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-ja-JP.img"
  882. size="5183988"
  883. />
  884. <package
  885. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-fi-FI.img"
  886. size="5183988"
  887. />
  888. <package
  889. url="https://api.sena.com/support/OTA/Motorcycles/60S/60S-v1.2.9-build0-pl-PL.img"
  890. size="5183988"
  891. />
  892. </otaPackages>
  893. </productMenu>
  894. <productMenu id="wa"
  895. type="0" >
  896. </productMenu>
  897. <productMenu id="sip"
  898. type="1" >
  899. </productMenu>
  900. <productMenu id="led"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="illusion"
  904. type="1" >
  905. </productMenu>
  906. <productMenu id="meshIntercom"
  907. type="30" >
  908. </productMenu>
  909. <productMenu id="meshIntercom+"
  910. type="3"
  911. url="2" >
  912. <productMenuURL version="1.0.2"
  913. url="10"
  914. />
  915. </productMenu>
  916. <productMenu id="waveIntercom"
  917. type="1" >
  918. <productMenuType version="1.0.9"
  919. type="0"
  920. />
  921. </productMenu>
  922. <productMenu id="bluetoothIntercom"
  923. type="1"
  924. url="2" >
  925. </productMenu>
  926. <productMenu id="bluetoothIntercomGrouping"
  927. type="0" >
  928. </productMenu>
  929. <productMenu id="fmradio"
  930. type="1"
  931. url="1" >
  932. </productMenu>
  933. <productMenu id="phone"
  934. type="1" >
  935. </productMenu>
  936. <productMenu id="music"
  937. type="1" >
  938. </productMenu>
  939. <productMenu id="musicSharing"
  940. type="0" >
  941. </productMenu>
  942. <productMenu id="deviceSetting"
  943. type="1"
  944. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  945. <productMenuURL version="1.2.10"
  946. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml"
  947. />
  948. <productMenuURL version="1.2.6"
  949. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  950. />
  951. <productMenuURL version="1.2.3"
  952. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  953. />
  954. <productMenuURL version="1.0.2"
  955. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  956. />
  957. <productMenuURL version="1.0"
  958. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  959. />
  960. <productMenuURL version="0.9.11"
  961. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  962. />
  963. </productMenu>
  964. <productMenu id="quickGuide"
  965. type="0"
  966. url=""
  967. size="1.12MB" >
  968. </productMenu>
  969. <productMenu id="userGuide"
  970. type="1"
  971. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  972. size="2.0MB" >
  973. </productMenu>
  974. <productMenu id="videoGuide"
  975. type="0"
  976. url=""
  977. size="3.41MB" >
  978. </productMenu>
  979. <productMenu id="connectGuide"
  980. type="1"
  981. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  982. size="1.12MB" >
  983. </productMenu>
  984. <productMenu id="volume"
  985. type="16" >
  986. <productMenuType version="0.9.11"
  987. type="13"
  988. />
  989. </productMenu>
  990. <productMenu id="volume+"
  991. type="2"
  992. url="0x6004" >
  993. <productMenuURL version="1.2.3"
  994. url="0x6004"
  995. />
  996. </productMenu>
  997. <productMenu id="soundMode"
  998. type="0" >
  999. <productMenuType version="0.9.11"
  1000. type="0"
  1001. />
  1002. </productMenu>
  1003. <productMenu id="appearance"
  1004. type="1"
  1005. url="2|white,silver,chrome,black" >
  1006. </productMenu>
  1007. <productMenu id="battery"
  1008. type="1" >
  1009. </productMenu>
  1010. <productID id="6A02"
  1011. />
  1012. <productGroupable type="0"
  1013. />
  1014. </product>
  1015. <product id="60X"
  1016. name="60X"
  1017. series="60"
  1018. latestVersion="1.0"
  1019. latestVersionMesh="0.19"
  1020. latestVersionVoicePrompt="1.7"
  1021. show = "1" >
  1022. <productMenu id="protocol"
  1023. type="2" >
  1024. </productMenu>
  1025. <productMenu id="warranty"
  1026. type="1" >
  1027. </productMenu>
  1028. <productMenu id="serialNumber"
  1029. type="1" >
  1030. </productMenu>
  1031. <productMenu id="ota"
  1032. type="2" >
  1033. <otaLanguages>
  1034. <otaLanguage
  1035. id="0"
  1036. name="English"
  1037. package="0"
  1038. />
  1039. <otaLanguage
  1040. id="0"
  1041. name="French"
  1042. package="1"
  1043. />
  1044. <otaLanguage
  1045. id="0"
  1046. name="Spanish"
  1047. package="2"
  1048. />
  1049. <otaLanguage
  1050. id="0"
  1051. name="Italian"
  1052. package="3"
  1053. />
  1054. <otaLanguage
  1055. id="0"
  1056. name="German"
  1057. package="4"
  1058. />
  1059. <otaLanguage
  1060. id="0"
  1061. name="Dutch"
  1062. package="5"
  1063. />
  1064. <otaLanguage
  1065. id="0"
  1066. name="Russian"
  1067. package="6"
  1068. />
  1069. <otaLanguage
  1070. id="0"
  1071. name="Chinese"
  1072. package="7"
  1073. />
  1074. <otaLanguage
  1075. id="0"
  1076. name="Korean"
  1077. package="8"
  1078. />
  1079. <otaLanguage
  1080. id="0"
  1081. name="Japanese"
  1082. package="9"
  1083. />
  1084. <otaLanguage
  1085. id="0"
  1086. name="Finnish"
  1087. package="10"
  1088. />
  1089. <otaLanguage
  1090. id="0"
  1091. name="Polish"
  1092. package="11"
  1093. />
  1094. </otaLanguages>
  1095. <otaPackages>
  1096. <package
  1097. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1098. size="5183988"
  1099. />
  1100. <package
  1101. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1102. size="5183988"
  1103. />
  1104. <package
  1105. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1106. size="5183988"
  1107. />
  1108. <package
  1109. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1110. size="5183988"
  1111. />
  1112. <package
  1113. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1114. size="5183988"
  1115. />
  1116. <package
  1117. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1118. size="5183988"
  1119. />
  1120. <package
  1121. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1122. size="5183988"
  1123. />
  1124. <package
  1125. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1126. size="5183988"
  1127. />
  1128. <package
  1129. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1130. size="5183988"
  1131. />
  1132. <package
  1133. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1134. size="5183988"
  1135. />
  1136. <package
  1137. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1138. size="5183988"
  1139. />
  1140. <package
  1141. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1142. size="5183988"
  1143. />
  1144. </otaPackages>
  1145. </productMenu>
  1146. <productMenu id="wa"
  1147. type="0" >
  1148. </productMenu>
  1149. <productMenu id="sip"
  1150. type="1" >
  1151. </productMenu>
  1152. <productMenu id="led"
  1153. type="1" >
  1154. </productMenu>
  1155. <productMenu id="illusion"
  1156. type="1" >
  1157. </productMenu>
  1158. <productMenu id="meshIntercom"
  1159. type="30" >
  1160. </productMenu>
  1161. <productMenu id="meshIntercom+"
  1162. type="3"
  1163. url="2" >
  1164. </productMenu>
  1165. <productMenu id="waveIntercom"
  1166. type="1" >
  1167. </productMenu>
  1168. <productMenu id="bluetoothIntercom"
  1169. type="1" >
  1170. </productMenu>
  1171. <productMenu id="fmradio"
  1172. type="1"
  1173. url="1" >
  1174. </productMenu>
  1175. <productMenu id="mic"
  1176. type="0" >
  1177. </productMenu>
  1178. <productMenu id="phone"
  1179. type="1" >
  1180. </productMenu>
  1181. <productMenu id="music"
  1182. type="1" >
  1183. </productMenu>
  1184. <productMenu id="musicSharing"
  1185. type="0" >
  1186. </productMenu>
  1187. <productMenu id="deviceSetting"
  1188. type="1"
  1189. url="https://api.sena.com/support/SenaNeoApp/60X/NS_60X.xml" >
  1190. <productMenuURL version="1.0"
  1191. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml"
  1192. />
  1193. </productMenu>
  1194. <productMenu id="quickGuide"
  1195. type="0"
  1196. url=""
  1197. size="1.12MB" >
  1198. </productMenu>
  1199. <productMenu id="userGuide"
  1200. type="1"
  1201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60X_1.0.2_en_260811.pdf"
  1202. size="2.0MB" >
  1203. </productMenu>
  1204. <productMenu id="videoGuide"
  1205. type="0"
  1206. url=""
  1207. size="3.41MB" >
  1208. </productMenu>
  1209. <productMenu id="keySettings"
  1210. type="1"
  1211. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1212. </productMenu>
  1213. <productMenu id="volume"
  1214. type="13" >
  1215. </productMenu>
  1216. <productMenu id="volume+"
  1217. type="2"
  1218. url="0x6004" >
  1219. </productMenu>
  1220. <productMenu id="appearance"
  1221. type="1"
  1222. url="1|white,silver,black,glossy_black" >
  1223. </productMenu>
  1224. <productMenu id="battery"
  1225. type="1" >
  1226. </productMenu>
  1227. <productID id="6A03"
  1228. />
  1229. <productGroupable type="0"
  1230. />
  1231. </product>
  1232. <product id="R35"
  1233. name="R35"
  1234. series="R"
  1235. latestVersion="1.1.1"
  1236. latestVersionVoicePrompt="1.5"
  1237. show = "1" >
  1238. <productMenu id="protocol"
  1239. type="2" >
  1240. </productMenu>
  1241. <productMenu id="ota"
  1242. type="2" >
  1243. <otaLanguages>
  1244. <otaLanguage
  1245. id="0"
  1246. name="English"
  1247. package="0"
  1248. />
  1249. <otaLanguage
  1250. id="0"
  1251. name="Chinese"
  1252. package="1"
  1253. />
  1254. <otaLanguage
  1255. id="0"
  1256. name="Chinese Singapore"
  1257. package="2"
  1258. />
  1259. <otaLanguage
  1260. id="0"
  1261. name="Filipino"
  1262. package="3"
  1263. />
  1264. <otaLanguage
  1265. id="0"
  1266. name="Hebrew"
  1267. package="4"
  1268. />
  1269. <otaLanguage
  1270. id="0"
  1271. name="Hindi"
  1272. package="5"
  1273. />
  1274. <otaLanguage
  1275. id="0"
  1276. name="Indonesian"
  1277. package="6"
  1278. />
  1279. <otaLanguage
  1280. id="0"
  1281. name="Japanese"
  1282. package="7"
  1283. />
  1284. <otaLanguage
  1285. id="0"
  1286. name="Korean"
  1287. package="8"
  1288. />
  1289. <otaLanguage
  1290. id="0"
  1291. name="Malay"
  1292. package="9"
  1293. />
  1294. <otaLanguage
  1295. id="0"
  1296. name="Modern Standard Arabic"
  1297. package="10"
  1298. />
  1299. <otaLanguage
  1300. id="0"
  1301. name="Taiwanese"
  1302. package="11"
  1303. />
  1304. <otaLanguage
  1305. id="0"
  1306. name="Tamil"
  1307. package="12"
  1308. />
  1309. <otaLanguage
  1310. id="0"
  1311. name="Thai"
  1312. package="13"
  1313. />
  1314. <otaLanguage
  1315. id="0"
  1316. name="东北话"
  1317. package="14"
  1318. />
  1319. <otaLanguage
  1320. id="0"
  1321. name="广东话"
  1322. package="15"
  1323. />
  1324. <otaLanguage
  1325. id="0"
  1326. name="江浙沪"
  1327. package="16"
  1328. />
  1329. <otaLanguage
  1330. id="0"
  1331. name="四川话"
  1332. package="17"
  1333. />
  1334. <otaLanguage
  1335. id="0"
  1336. name="陕西话"
  1337. package="18"
  1338. />
  1339. </otaLanguages>
  1340. <otaPackages>
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-cmn-SG.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-tl-PH.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-he-IL.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-hi-IN.img"
  1363. size="5183988"
  1364. />
  1365. <package
  1366. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-id-ID.img"
  1367. size="5183988"
  1368. />
  1369. <package
  1370. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ja-JP.img"
  1371. size="5183988"
  1372. />
  1373. <package
  1374. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ko-KR.img"
  1375. size="5183988"
  1376. />
  1377. <package
  1378. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ms-MY.img"
  1379. size="5183988"
  1380. />
  1381. <package
  1382. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ar-XA.img"
  1383. size="5183988"
  1384. />
  1385. <package
  1386. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-nan-TW.img"
  1387. size="5183988"
  1388. />
  1389. <package
  1390. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-ta-IN.img"
  1391. size="5183988"
  1392. />
  1393. <package
  1394. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-th-TH.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zdb-CN.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-yue-CN.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-wuu-CN.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsc-CN.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1.1-build0-zsn-CN.img"
  1415. size="5183988"
  1416. />
  1417. </otaPackages>
  1418. </productMenu>
  1419. <productMenu id="sip"
  1420. type="1" >
  1421. </productMenu>
  1422. <productMenu id="illusion"
  1423. type="1" >
  1424. </productMenu>
  1425. <productMenu id="meshIntercom"
  1426. type="30" >
  1427. </productMenu>
  1428. <productMenu id="meshIntercom+"
  1429. type="3"
  1430. url="2" >
  1431. </productMenu>
  1432. <productMenu id="waveIntercom"
  1433. type="1" >
  1434. </productMenu>
  1435. <productMenu id="phone"
  1436. type="1" >
  1437. </productMenu>
  1438. <productMenu id="music"
  1439. type="1" >
  1440. </productMenu>
  1441. <productMenu id="musicSharing"
  1442. type="0" >
  1443. </productMenu>
  1444. <productMenu id="deviceSetting"
  1445. type="1"
  1446. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_02.xml" >
  1447. <productMenuURL version="1.1.1"
  1448. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml"
  1449. />
  1450. <productMenuURL version="1.0.3"
  1451. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1452. />
  1453. </productMenu>
  1454. <productMenu id="quickGuide"
  1455. type="0"
  1456. url=""
  1457. size="1.12MB" >
  1458. </productMenu>
  1459. <productMenu id="userGuide"
  1460. type="1"
  1461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1462. size="2.0MB" >
  1463. </productMenu>
  1464. <productMenu id="videoGuide"
  1465. type="0"
  1466. url=""
  1467. size="3.41MB" >
  1468. </productMenu>
  1469. <productMenu id="connectGuide"
  1470. type="1"
  1471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_r35.json"
  1472. size="1.12MB" >
  1473. </productMenu>
  1474. <productMenu id="volume"
  1475. type="16" >
  1476. </productMenu>
  1477. <productMenu id="volume+"
  1478. type="2"
  1479. url="0x6004" >
  1480. </productMenu>
  1481. <productMenu id="soundMode"
  1482. type="0" >
  1483. </productMenu>
  1484. <productMenu id="appearance"
  1485. type="1"
  1486. url="1|white,silver,chrome,black" >
  1487. </productMenu>
  1488. <productMenu id="battery"
  1489. type="1" >
  1490. </productMenu>
  1491. <productID id="6A06"
  1492. />
  1493. <productGroupable type="0"
  1494. />
  1495. </product>
  1496. <product id="COM60X"
  1497. name="BMW MOTORRAD COM 60X"
  1498. series="60"
  1499. latestVersion="1.0"
  1500. latestVersionMesh="0.19"
  1501. latestVersionVoicePrompt="1.7"
  1502. show = "-1" >
  1503. <productMenu id="protocol"
  1504. type="2" >
  1505. </productMenu>
  1506. <productMenu id="ota"
  1507. type="0" >
  1508. <otaLanguages>
  1509. <otaLanguage
  1510. id="0"
  1511. name="English"
  1512. package="0"
  1513. />
  1514. <otaLanguage
  1515. id="0"
  1516. name="French"
  1517. package="1"
  1518. />
  1519. <otaLanguage
  1520. id="0"
  1521. name="Spanish"
  1522. package="2"
  1523. />
  1524. <otaLanguage
  1525. id="0"
  1526. name="Italian"
  1527. package="3"
  1528. />
  1529. <otaLanguage
  1530. id="0"
  1531. name="German"
  1532. package="4"
  1533. />
  1534. <otaLanguage
  1535. id="0"
  1536. name="Dutch"
  1537. package="5"
  1538. />
  1539. <otaLanguage
  1540. id="0"
  1541. name="Russian"
  1542. package="6"
  1543. />
  1544. <otaLanguage
  1545. id="0"
  1546. name="Chinese"
  1547. package="7"
  1548. />
  1549. <otaLanguage
  1550. id="0"
  1551. name="Korean"
  1552. package="8"
  1553. />
  1554. <otaLanguage
  1555. id="0"
  1556. name="Japanese"
  1557. package="9"
  1558. />
  1559. <otaLanguage
  1560. id="0"
  1561. name="Finnish"
  1562. package="10"
  1563. />
  1564. <otaLanguage
  1565. id="0"
  1566. name="Polish"
  1567. package="11"
  1568. />
  1569. </otaLanguages>
  1570. <otaPackages>
  1571. <package
  1572. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5.img"
  1573. size="5183988"
  1574. />
  1575. <package
  1576. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fr-FR.img"
  1577. size="5183988"
  1578. />
  1579. <package
  1580. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-es-ES.img"
  1581. size="5183988"
  1582. />
  1583. <package
  1584. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-it-IT.img"
  1585. size="5183988"
  1586. />
  1587. <package
  1588. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-de-DE.img"
  1589. size="5183988"
  1590. />
  1591. <package
  1592. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-nl-NL.img"
  1593. size="5183988"
  1594. />
  1595. <package
  1596. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ru-RU.img"
  1597. size="5183988"
  1598. />
  1599. <package
  1600. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-cmn-CN.img"
  1601. size="5183988"
  1602. />
  1603. <package
  1604. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ko-KR.img"
  1605. size="5183988"
  1606. />
  1607. <package
  1608. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-ja-JP.img"
  1609. size="5183988"
  1610. />
  1611. <package
  1612. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-fi-FI.img"
  1613. size="5183988"
  1614. />
  1615. <package
  1616. url="https://api.sena.com/support/OTA/Motorcycles/60X/COM60X-v1.0-build5-pl-PL.img"
  1617. size="5183988"
  1618. />
  1619. </otaPackages>
  1620. </productMenu>
  1621. <productMenu id="wa"
  1622. type="0" >
  1623. </productMenu>
  1624. <productMenu id="sip"
  1625. type="1" >
  1626. </productMenu>
  1627. <productMenu id="led"
  1628. type="1" >
  1629. </productMenu>
  1630. <productMenu id="illusion"
  1631. type="1" >
  1632. </productMenu>
  1633. <productMenu id="meshIntercom"
  1634. type="30" >
  1635. </productMenu>
  1636. <productMenu id="meshIntercom+"
  1637. type="3"
  1638. url="2" >
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="fmradio"
  1644. type="1"
  1645. url="1" >
  1646. </productMenu>
  1647. <productMenu id="mic"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="phone"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="music"
  1654. type="1" >
  1655. </productMenu>
  1656. <productMenu id="musicSharing"
  1657. type="0" >
  1658. </productMenu>
  1659. <productMenu id="deviceSetting"
  1660. type="1"
  1661. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1662. </productMenu>
  1663. <productMenu id="quickGuide"
  1664. type="0"
  1665. url=""
  1666. size="1.12MB" >
  1667. </productMenu>
  1668. <productMenu id="userGuide"
  1669. type="1"
  1670. url=""
  1671. size="2.0MB" >
  1672. </productMenu>
  1673. <productMenu id="videoGuide"
  1674. type="0"
  1675. url=""
  1676. size="3.41MB" >
  1677. </productMenu>
  1678. <productMenu id="keySettings"
  1679. type="1"
  1680. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1681. </productMenu>
  1682. <productMenu id="volume"
  1683. type="13" >
  1684. </productMenu>
  1685. <productMenu id="volume+"
  1686. type="2"
  1687. url="0x6004" >
  1688. </productMenu>
  1689. <productMenu id="battery"
  1690. type="1" >
  1691. </productMenu>
  1692. <productID id="6A1B"
  1693. />
  1694. <productGroupable type="0"
  1695. />
  1696. </product>
  1697. <product id="COMP1"
  1698. name="BMW COM P1"
  1699. series="60"
  1700. latestVersion="1.2"
  1701. latestVersionMesh="0.19"
  1702. latestVersionVoicePrompt="1.0"
  1703. show = "-1" >
  1704. <productMenu id="protocol"
  1705. type="2" >
  1706. </productMenu>
  1707. <productMenu id="ota"
  1708. type="2" >
  1709. <otaLanguages>
  1710. <otaLanguage
  1711. id="0"
  1712. name="English"
  1713. package="0"
  1714. />
  1715. <otaLanguage
  1716. id="0"
  1717. name="French"
  1718. package="1"
  1719. />
  1720. <otaLanguage
  1721. id="0"
  1722. name="Spanish"
  1723. package="2"
  1724. />
  1725. <otaLanguage
  1726. id="0"
  1727. name="Italian"
  1728. package="3"
  1729. />
  1730. <otaLanguage
  1731. id="0"
  1732. name="German"
  1733. package="4"
  1734. />
  1735. <otaLanguage
  1736. id="0"
  1737. name="Dutch"
  1738. package="5"
  1739. />
  1740. <otaLanguage
  1741. id="0"
  1742. name="Russian"
  1743. package="6"
  1744. />
  1745. <otaLanguage
  1746. id="0"
  1747. name="Chinese"
  1748. package="7"
  1749. />
  1750. <otaLanguage
  1751. id="0"
  1752. name="Korean"
  1753. package="8"
  1754. />
  1755. <otaLanguage
  1756. id="0"
  1757. name="Japanese"
  1758. package="9"
  1759. />
  1760. <otaLanguage
  1761. id="0"
  1762. name="Finnish"
  1763. package="10"
  1764. />
  1765. </otaLanguages>
  1766. <otaPackages>
  1767. <package
  1768. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0.img"
  1769. size="5183988"
  1770. />
  1771. <package
  1772. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fr-FR.img"
  1773. size="5183988"
  1774. />
  1775. <package
  1776. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-es-ES.img"
  1777. size="5183988"
  1778. />
  1779. <package
  1780. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-it-IT.img"
  1781. size="5183988"
  1782. />
  1783. <package
  1784. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-de-DE.img"
  1785. size="5183988"
  1786. />
  1787. <package
  1788. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-nl-NL.img"
  1789. size="5183988"
  1790. />
  1791. <package
  1792. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ru-RU.img"
  1793. size="5183988"
  1794. />
  1795. <package
  1796. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-cmn-CN.img"
  1797. size="5183988"
  1798. />
  1799. <package
  1800. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ko-KR.img"
  1801. size="5183988"
  1802. />
  1803. <package
  1804. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-ja-JP.img"
  1805. size="5183988"
  1806. />
  1807. <package
  1808. url="https://api.sena.com/support/OTA/Motorcycles/COMP1/BMW_COM_P1-v1.2-build0-fi-FI.img"
  1809. size="5183988"
  1810. />
  1811. </otaPackages>
  1812. </productMenu>
  1813. <productMenu id="wa"
  1814. type="0" >
  1815. </productMenu>
  1816. <productMenu id="sip"
  1817. type="1" >
  1818. </productMenu>
  1819. <productMenu id="led"
  1820. type="0" >
  1821. </productMenu>
  1822. <productMenu id="illusion"
  1823. type="0" >
  1824. </productMenu>
  1825. <productMenu id="meshIntercom"
  1826. type="30" >
  1827. </productMenu>
  1828. <productMenu id="bluetoothIntercom"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="bluetoothIntercomGrouping"
  1832. type="0" >
  1833. </productMenu>
  1834. <productMenu id="fmradio"
  1835. type="0" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="musicSharing"
  1844. type="0" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1849. </productMenu>
  1850. <productMenu id="quickGuide"
  1851. type="0"
  1852. url=""
  1853. size="1.12MB" >
  1854. </productMenu>
  1855. <productMenu id="userGuide"
  1856. type="0"
  1857. url=""
  1858. size="2.0MB" >
  1859. </productMenu>
  1860. <productMenu id="videoGuide"
  1861. type="0"
  1862. url=""
  1863. size="3.41MB" >
  1864. </productMenu>
  1865. <productMenu id="volume"
  1866. type="16" >
  1867. </productMenu>
  1868. <productMenu id="battery"
  1869. type="1" >
  1870. </productMenu>
  1871. <productID id="6A80"
  1872. />
  1873. <productGroupable type="0"
  1874. />
  1875. </product>
  1876. <product id="50S"
  1877. name="50S"
  1878. series="50"
  1879. latestVersion="2.7.2"
  1880. show = "1" >
  1881. <productMenu id="protocol"
  1882. type="2" >
  1883. </productMenu>
  1884. <productMenu id="alexa"
  1885. type="0" >
  1886. </productMenu>
  1887. <productMenu id="ota"
  1888. type="0"
  1889. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1890. size="1150234" >
  1891. </productMenu>
  1892. <productMenu id="wa"
  1893. type="1" >
  1894. </productMenu>
  1895. <productMenu id="sip"
  1896. type="1" >
  1897. </productMenu>
  1898. <productMenu id="meshIntercom"
  1899. type="30" >
  1900. <productMenuType version="2.1.1"
  1901. type="20"
  1902. />
  1903. </productMenu>
  1904. <productMenu id="meshIntercom+"
  1905. type="3"
  1906. url="2" >
  1907. <productMenuType version="2.5.9"
  1908. type="2"
  1909. />
  1910. <productMenuURL version="2.1.1"
  1911. url="0"
  1912. />
  1913. </productMenu>
  1914. <productMenu id="waveIntercom"
  1915. type="1" >
  1916. <productMenuType version="2.6"
  1917. type="0"
  1918. />
  1919. </productMenu>
  1920. <productMenu id="bluetoothIntercom"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="phone"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="music"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="fmradio"
  1930. type="1" >
  1931. </productMenu>
  1932. <productMenu id="deviceSetting"
  1933. type="1"
  1934. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1935. <productMenuURL version="2.5.9"
  1936. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1937. />
  1938. <productMenuURL version="2.1.1"
  1939. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1940. />
  1941. <productMenuURL version="2.0.3"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="quickGuide"
  1946. type="0"
  1947. url=""
  1948. size="934KB" >
  1949. </productMenu>
  1950. <productMenu id="userGuide"
  1951. type="1"
  1952. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1953. size="1.14MB" >
  1954. </productMenu>
  1955. <productMenu id="videoGuide"
  1956. type="1"
  1957. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1958. size="3.41MB" >
  1959. </productMenu>
  1960. <productMenu id="connectGuide"
  1961. type="1"
  1962. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1963. size="1.12MB" >
  1964. </productMenu>
  1965. <productMenu id="volume"
  1966. type="11" >
  1967. </productMenu>
  1968. <productMenu id="battery"
  1969. type="1" >
  1970. </productMenu>
  1971. <productID id="3210"
  1972. />
  1973. <productGroupable type="0"
  1974. />
  1975. </product>
  1976. <product id="50S"
  1977. name="50S"
  1978. series="50"
  1979. latestVersion="1.5.1"
  1980. show = "-1" >
  1981. <productMenu id="protocol"
  1982. type="2" >
  1983. </productMenu>
  1984. <productMenu id="alexa"
  1985. type="0" >
  1986. </productMenu>
  1987. <productMenu id="wa"
  1988. type="1" >
  1989. </productMenu>
  1990. <productMenu id="sip"
  1991. type="1" >
  1992. </productMenu>
  1993. <productMenu id="meshIntercom"
  1994. type="30" >
  1995. <productMenuType version="1.2.2"
  1996. type="20"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="meshIntercom+"
  2000. type="3"
  2001. url="2" >
  2002. <productMenuType version="1.4.9"
  2003. type="2"
  2004. />
  2005. <productMenuURL version="1.2.2"
  2006. url="0"
  2007. />
  2008. </productMenu>
  2009. <productMenu id="waveIntercom"
  2010. type="1" >
  2011. <productMenuType version="1.3.9"
  2012. type="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="bluetoothIntercom"
  2016. type="1" >
  2017. </productMenu>
  2018. <productMenu id="phone"
  2019. type="1" >
  2020. </productMenu>
  2021. <productMenu id="music"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="fmradio"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="deviceSetting"
  2028. type="1"
  2029. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2030. <productMenuURL version="1.4.9"
  2031. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2032. />
  2033. <productMenuURL version="1.3.9"
  2034. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2035. />
  2036. <productMenuURL version="1.2.2"
  2037. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2041. />
  2042. </productMenu>
  2043. <productMenu id="quickGuide"
  2044. type="0"
  2045. url=""
  2046. size="934KB" >
  2047. </productMenu>
  2048. <productMenu id="userGuide"
  2049. type="1"
  2050. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  2051. size="1.14MB" >
  2052. </productMenu>
  2053. <productMenu id="videoGuide"
  2054. type="1"
  2055. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  2056. size="3.41MB" >
  2057. </productMenu>
  2058. <productMenu id="volume"
  2059. type="11" >
  2060. </productMenu>
  2061. <productMenu id="battery"
  2062. type="1" >
  2063. </productMenu>
  2064. <productID id="3132"
  2065. />
  2066. <productGroupable type="0"
  2067. />
  2068. </product>
  2069. <product id="50R"
  2070. name="50R"
  2071. series="50"
  2072. latestVersion="2.7.1"
  2073. show = "1" >
  2074. <productMenu id="protocol"
  2075. type="2" >
  2076. </productMenu>
  2077. <productMenu id="alexa"
  2078. type="0" >
  2079. </productMenu>
  2080. <productMenu id="ota"
  2081. type="0"
  2082. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  2083. size="1150234" >
  2084. </productMenu>
  2085. <productMenu id="wa"
  2086. type="1" >
  2087. </productMenu>
  2088. <productMenu id="sip"
  2089. type="1" >
  2090. </productMenu>
  2091. <productMenu id="meshIntercom"
  2092. type="30" >
  2093. <productMenuType version="2.1.1"
  2094. type="20"
  2095. />
  2096. </productMenu>
  2097. <productMenu id="meshIntercom+"
  2098. type="3"
  2099. url="2" >
  2100. <productMenuType version="2.5.9"
  2101. type="2"
  2102. />
  2103. <productMenuURL version="2.1.1"
  2104. url="0"
  2105. />
  2106. </productMenu>
  2107. <productMenu id="waveIntercom"
  2108. type="1" >
  2109. <productMenuType version="2.6"
  2110. type="0"
  2111. />
  2112. </productMenu>
  2113. <productMenu id="bluetoothIntercom"
  2114. type="1" >
  2115. </productMenu>
  2116. <productMenu id="phone"
  2117. type="1" >
  2118. </productMenu>
  2119. <productMenu id="music"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="1" >
  2124. </productMenu>
  2125. <productMenu id="deviceSetting"
  2126. type="1"
  2127. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  2128. <productMenuURL version="2.5.9"
  2129. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2130. />
  2131. <productMenuURL version="2.1.1"
  2132. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2133. />
  2134. <productMenuURL version="2.0"
  2135. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2136. />
  2137. </productMenu>
  2138. <productMenu id="quickGuide"
  2139. type="0"
  2140. url=""
  2141. size="344KB" >
  2142. </productMenu>
  2143. <productMenu id="userGuide"
  2144. type="1"
  2145. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  2146. size="3.41MB" >
  2147. </productMenu>
  2148. <productMenu id="videoGuide"
  2149. type="1"
  2150. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2151. size="3.41MB" >
  2152. </productMenu>
  2153. <productMenu id="connectGuide"
  2154. type="1"
  2155. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  2156. size="1.12MB" >
  2157. </productMenu>
  2158. <productMenu id="volume"
  2159. type="11" >
  2160. </productMenu>
  2161. <productMenu id="battery"
  2162. type="1" >
  2163. </productMenu>
  2164. <productID id="3218"
  2165. />
  2166. <productGroupable type="0"
  2167. />
  2168. </product>
  2169. <product id="50R"
  2170. name="50R"
  2171. series="50"
  2172. latestVersion="1.5.1"
  2173. show = "-1" >
  2174. <productMenu id="protocol"
  2175. type="2" >
  2176. </productMenu>
  2177. <productMenu id="alexa"
  2178. type="0" >
  2179. </productMenu>
  2180. <productMenu id="wa"
  2181. type="1" >
  2182. </productMenu>
  2183. <productMenu id="sip"
  2184. type="1" >
  2185. </productMenu>
  2186. <productMenu id="meshIntercom"
  2187. type="30" >
  2188. <productMenuType version="1.2.2"
  2189. type="20"
  2190. />
  2191. </productMenu>
  2192. <productMenu id="meshIntercom+"
  2193. type="3"
  2194. url="2" >
  2195. <productMenuType version="1.4.9"
  2196. type="2"
  2197. />
  2198. <productMenuURL version="1.2.2"
  2199. url="0"
  2200. />
  2201. </productMenu>
  2202. <productMenu id="waveIntercom"
  2203. type="1" >
  2204. <productMenuType version="1.3.9"
  2205. type="0"
  2206. />
  2207. </productMenu>
  2208. <productMenu id="bluetoothIntercom"
  2209. type="1" >
  2210. </productMenu>
  2211. <productMenu id="phone"
  2212. type="1" >
  2213. </productMenu>
  2214. <productMenu id="music"
  2215. type="1" >
  2216. </productMenu>
  2217. <productMenu id="fmradio"
  2218. type="1" >
  2219. </productMenu>
  2220. <productMenu id="deviceSetting"
  2221. type="1"
  2222. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  2223. <productMenuURL version="1.4.9"
  2224. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  2225. />
  2226. <productMenuURL version="1.3.9"
  2227. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  2228. />
  2229. <productMenuURL version="1.2.2"
  2230. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2231. />
  2232. <productMenuURL version="1.1.1"
  2233. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2234. />
  2235. </productMenu>
  2236. <productMenu id="quickGuide"
  2237. type="0"
  2238. url=""
  2239. size="344KB" >
  2240. </productMenu>
  2241. <productMenu id="userGuide"
  2242. type="1"
  2243. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2244. size="3.41MB" >
  2245. </productMenu>
  2246. <productMenu id="videoGuide"
  2247. type="1"
  2248. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2249. size="3.41MB" >
  2250. </productMenu>
  2251. <productMenu id="volume"
  2252. type="11" >
  2253. </productMenu>
  2254. <productMenu id="battery"
  2255. type="1" >
  2256. </productMenu>
  2257. <productID id="3134"
  2258. />
  2259. <productGroupable type="0"
  2260. />
  2261. </product>
  2262. <product id="50C"
  2263. name="50C"
  2264. series="50"
  2265. latestVersion="1.4.3"
  2266. show = "1" >
  2267. <productMenu id="protocol"
  2268. type="2" >
  2269. </productMenu>
  2270. <productMenu id="ota"
  2271. type="0" >
  2272. </productMenu>
  2273. <productMenu id="wa"
  2274. type="1" >
  2275. </productMenu>
  2276. <productMenu id="sip"
  2277. type="1" >
  2278. </productMenu>
  2279. <productMenu id="meshIntercom"
  2280. type="30" >
  2281. <productMenuType version="1.1.1"
  2282. type="20"
  2283. />
  2284. </productMenu>
  2285. <productMenu id="meshIntercom+"
  2286. type="3"
  2287. url="2" >
  2288. <productMenuType version="1.3.9"
  2289. type="2"
  2290. />
  2291. <productMenuURL version="1.1.1"
  2292. url="0"
  2293. />
  2294. </productMenu>
  2295. <productMenu id="waveIntercom"
  2296. type="1" >
  2297. <productMenuType version="1.2.9"
  2298. type="0"
  2299. />
  2300. </productMenu>
  2301. <productMenu id="bluetoothIntercom"
  2302. type="1" >
  2303. </productMenu>
  2304. <productMenu id="phone"
  2305. type="1" >
  2306. </productMenu>
  2307. <productMenu id="music"
  2308. type="1" >
  2309. </productMenu>
  2310. <productMenu id="fmradio"
  2311. type="1" >
  2312. </productMenu>
  2313. <productMenu id="deviceSetting"
  2314. type="1"
  2315. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2316. <productMenuURL version="1.3.9"
  2317. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2318. />
  2319. <productMenuURL version="1.1.1"
  2320. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2321. />
  2322. <productMenuURL version="1.0.1"
  2323. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2324. />
  2325. </productMenu>
  2326. <productMenu id="quickGuide"
  2327. type="0"
  2328. url=""
  2329. size="344KB" >
  2330. </productMenu>
  2331. <productMenu id="userGuide"
  2332. type="1"
  2333. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2334. size="3.41MB" >
  2335. </productMenu>
  2336. <productMenu id="connectGuide"
  2337. type="1"
  2338. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2339. size="1.12MB" >
  2340. </productMenu>
  2341. <productMenu id="volume"
  2342. type="11" >
  2343. </productMenu>
  2344. <productMenu id="battery"
  2345. type="1" >
  2346. </productMenu>
  2347. <productID id="3232"
  2348. />
  2349. <productGroupable type="0"
  2350. />
  2351. </product>
  2352. <product id="PHANTOMXB"
  2353. name="PHANTOM XB"
  2354. series="Helmet"
  2355. latestVersion="1.2.9"
  2356. latestVersionVoicePrompt="1.6"
  2357. show = "-1" >
  2358. <productMenu id="protocol"
  2359. type="2" >
  2360. </productMenu>
  2361. <productMenu id="ota"
  2362. type="2" >
  2363. <otaLanguages>
  2364. <otaLanguage
  2365. id="0"
  2366. name="English"
  2367. package="0"
  2368. />
  2369. <otaLanguage
  2370. id="0"
  2371. name="French"
  2372. package="1"
  2373. />
  2374. <otaLanguage
  2375. id="0"
  2376. name="Spanish"
  2377. package="2"
  2378. />
  2379. <otaLanguage
  2380. id="0"
  2381. name="Italian"
  2382. package="3"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="German"
  2387. package="4"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Dutch"
  2392. package="5"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Russian"
  2397. package="6"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="Chinese"
  2402. package="7"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Korean"
  2407. package="8"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Japanese"
  2412. package="9"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Finnish"
  2417. package="10"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Polish"
  2422. package="11"
  2423. />
  2424. </otaLanguages>
  2425. <otaPackages>
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0.img"
  2428. size="5183988"
  2429. />
  2430. <package
  2431. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fr-FR.img"
  2432. size="5183988"
  2433. />
  2434. <package
  2435. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-es-ES.img"
  2436. size="5183988"
  2437. />
  2438. <package
  2439. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-it-IT.img"
  2440. size="5183988"
  2441. />
  2442. <package
  2443. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-de-DE.img"
  2444. size="5183988"
  2445. />
  2446. <package
  2447. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-nl-NL.img"
  2448. size="5183988"
  2449. />
  2450. <package
  2451. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ru-RU.img"
  2452. size="5183988"
  2453. />
  2454. <package
  2455. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-cmn-CN.img"
  2456. size="5183988"
  2457. />
  2458. <package
  2459. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ko-KR.img"
  2460. size="5183988"
  2461. />
  2462. <package
  2463. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-ja-JP.img"
  2464. size="5183988"
  2465. />
  2466. <package
  2467. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-fi-FI.img"
  2468. size="5183988"
  2469. />
  2470. <package
  2471. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.9-build0-pl-PL.img"
  2472. size="5183988"
  2473. />
  2474. </otaPackages>
  2475. </productMenu>
  2476. <productMenu id="wa"
  2477. type="0" >
  2478. </productMenu>
  2479. <productMenu id="led"
  2480. type="5" >
  2481. </productMenu>
  2482. <productMenu id="led+"
  2483. type="2"
  2484. url="1" >
  2485. </productMenu>
  2486. <productMenu id="meshIntercom"
  2487. type="30" >
  2488. </productMenu>
  2489. <productMenu id="meshIntercom+"
  2490. type="3"
  2491. url="2" >
  2492. </productMenu>
  2493. <productMenu id="waveIntercom"
  2494. type="1" >
  2495. </productMenu>
  2496. <productMenu id="fmradio"
  2497. type="0" >
  2498. </productMenu>
  2499. <productMenu id="phone"
  2500. type="1" >
  2501. </productMenu>
  2502. <productMenu id="music"
  2503. type="1" >
  2504. </productMenu>
  2505. <productMenu id="musicSharing"
  2506. type="0" >
  2507. </productMenu>
  2508. <productMenu id="deviceSetting"
  2509. type="1"
  2510. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2511. <productMenuURL version="1.2.4"
  2512. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2513. />
  2514. </productMenu>
  2515. <productMenu id="quickGuide"
  2516. type="0"
  2517. url=""
  2518. size="1.12MB" >
  2519. </productMenu>
  2520. <productMenu id="userGuide"
  2521. type="1"
  2522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2523. size="2.0MB" >
  2524. </productMenu>
  2525. <productMenu id="videoGuide"
  2526. type="0"
  2527. url=""
  2528. size="3.41MB" >
  2529. </productMenu>
  2530. <productMenu id="volume"
  2531. type="16" >
  2532. </productMenu>
  2533. <productMenu id="volume+"
  2534. type="2"
  2535. url="0x6004" >
  2536. </productMenu>
  2537. <productMenu id="battery"
  2538. type="1" >
  2539. </productMenu>
  2540. <productID id="6A0F"
  2541. />
  2542. <productGroupable type="0"
  2543. />
  2544. </product>
  2545. <product id="PHANTOMXB"
  2546. name="PHANTOM XB"
  2547. series="Helmet"
  2548. latestVersion="1.2.9"
  2549. latestVersionVoicePrompt="1.6"
  2550. show = "-1" >
  2551. <productMenu id="protocol"
  2552. type="2" >
  2553. </productMenu>
  2554. <productMenu id="ota"
  2555. type="2" >
  2556. <otaLanguages>
  2557. <otaLanguage
  2558. id="0"
  2559. name="English"
  2560. package="0"
  2561. />
  2562. <otaLanguage
  2563. id="0"
  2564. name="French"
  2565. package="1"
  2566. />
  2567. <otaLanguage
  2568. id="0"
  2569. name="Spanish"
  2570. package="2"
  2571. />
  2572. <otaLanguage
  2573. id="0"
  2574. name="Italian"
  2575. package="3"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="German"
  2580. package="4"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Dutch"
  2585. package="5"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Russian"
  2590. package="6"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="Chinese"
  2595. package="7"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Korean"
  2600. package="8"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Japanese"
  2605. package="9"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Finnish"
  2610. package="10"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Polish"
  2615. package="11"
  2616. />
  2617. </otaLanguages>
  2618. <otaPackages>
  2619. <package
  2620. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0.img"
  2621. size="5183988"
  2622. />
  2623. <package
  2624. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fr-FR.img"
  2625. size="5183988"
  2626. />
  2627. <package
  2628. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-es-ES.img"
  2629. size="5183988"
  2630. />
  2631. <package
  2632. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-it-IT.img"
  2633. size="5183988"
  2634. />
  2635. <package
  2636. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-de-DE.img"
  2637. size="5183988"
  2638. />
  2639. <package
  2640. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-nl-NL.img"
  2641. size="5183988"
  2642. />
  2643. <package
  2644. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ru-RU.img"
  2645. size="5183988"
  2646. />
  2647. <package
  2648. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-cmn-CN.img"
  2649. size="5183988"
  2650. />
  2651. <package
  2652. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ko-KR.img"
  2653. size="5183988"
  2654. />
  2655. <package
  2656. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-ja-JP.img"
  2657. size="5183988"
  2658. />
  2659. <package
  2660. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-fi-FI.img"
  2661. size="5183988"
  2662. />
  2663. <package
  2664. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.9-build0-pl-PL.img"
  2665. size="5183988"
  2666. />
  2667. </otaPackages>
  2668. </productMenu>
  2669. <productMenu id="wa"
  2670. type="0" >
  2671. </productMenu>
  2672. <productMenu id="led"
  2673. type="5" >
  2674. </productMenu>
  2675. <productMenu id="led+"
  2676. type="2"
  2677. url="1" >
  2678. </productMenu>
  2679. <productMenu id="meshIntercom"
  2680. type="30" >
  2681. </productMenu>
  2682. <productMenu id="meshIntercom+"
  2683. type="3"
  2684. url="2" >
  2685. </productMenu>
  2686. <productMenu id="waveIntercom"
  2687. type="1" >
  2688. </productMenu>
  2689. <productMenu id="fmradio"
  2690. type="0" >
  2691. </productMenu>
  2692. <productMenu id="phone"
  2693. type="1" >
  2694. </productMenu>
  2695. <productMenu id="music"
  2696. type="1" >
  2697. </productMenu>
  2698. <productMenu id="musicSharing"
  2699. type="0" >
  2700. </productMenu>
  2701. <productMenu id="deviceSetting"
  2702. type="1"
  2703. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2704. <productMenuURL version="1.2.4"
  2705. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2706. />
  2707. <productMenuURL version="1.2.1"
  2708. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2709. />
  2710. </productMenu>
  2711. <productMenu id="quickGuide"
  2712. type="0"
  2713. url=""
  2714. size="1.12MB" >
  2715. </productMenu>
  2716. <productMenu id="userGuide"
  2717. type="1"
  2718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2719. size="2.0MB" >
  2720. </productMenu>
  2721. <productMenu id="videoGuide"
  2722. type="0"
  2723. url=""
  2724. size="3.41MB" >
  2725. </productMenu>
  2726. <productMenu id="volume"
  2727. type="16" >
  2728. </productMenu>
  2729. <productMenu id="volume+"
  2730. type="2"
  2731. url="0x6004" >
  2732. </productMenu>
  2733. <productMenu id="battery"
  2734. type="1" >
  2735. </productMenu>
  2736. <productID id="6A0C"
  2737. />
  2738. <productGroupable type="0"
  2739. />
  2740. </product>
  2741. <product id="PHANTOMKV"
  2742. name="PHANTOM KV"
  2743. series="Helmet"
  2744. latestVersion="1.2.10"
  2745. latestVersionVoicePrompt="1.7"
  2746. show = "1" >
  2747. <productMenu id="protocol"
  2748. type="2" >
  2749. </productMenu>
  2750. <productMenu id="ota"
  2751. type="2" >
  2752. <otaLanguages>
  2753. <otaLanguage
  2754. id="0"
  2755. name="English"
  2756. package="0"
  2757. />
  2758. <otaLanguage
  2759. id="0"
  2760. name="French"
  2761. package="1"
  2762. />
  2763. <otaLanguage
  2764. id="0"
  2765. name="Spanish"
  2766. package="2"
  2767. />
  2768. <otaLanguage
  2769. id="0"
  2770. name="Italian"
  2771. package="3"
  2772. />
  2773. <otaLanguage
  2774. id="0"
  2775. name="German"
  2776. package="4"
  2777. />
  2778. <otaLanguage
  2779. id="0"
  2780. name="Dutch"
  2781. package="5"
  2782. />
  2783. <otaLanguage
  2784. id="0"
  2785. name="Russian"
  2786. package="6"
  2787. />
  2788. <otaLanguage
  2789. id="0"
  2790. name="Chinese"
  2791. package="7"
  2792. />
  2793. <otaLanguage
  2794. id="0"
  2795. name="Korean"
  2796. package="8"
  2797. />
  2798. <otaLanguage
  2799. id="0"
  2800. name="Japanese"
  2801. package="9"
  2802. />
  2803. <otaLanguage
  2804. id="0"
  2805. name="Finnish"
  2806. package="10"
  2807. />
  2808. <otaLanguage
  2809. id="0"
  2810. name="Polish"
  2811. package="11"
  2812. />
  2813. </otaLanguages>
  2814. <otaPackages>
  2815. <package
  2816. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0.img"
  2817. size="5183988"
  2818. />
  2819. <package
  2820. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fr-FR.img"
  2821. size="5183988"
  2822. />
  2823. <package
  2824. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-es-ES.img"
  2825. size="5183988"
  2826. />
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-it-IT.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-de-DE.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-nl-NL.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ru-RU.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-cmn-CN.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ko-KR.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-ja-JP.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-fi-FI.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMKV/PHANTOM_KV-v1.2.10-build0-pl-PL.img"
  2861. size="5183988"
  2862. />
  2863. </otaPackages>
  2864. </productMenu>
  2865. <productMenu id="wa"
  2866. type="0" >
  2867. </productMenu>
  2868. <productMenu id="led"
  2869. type="5" >
  2870. </productMenu>
  2871. <productMenu id="led+"
  2872. type="2"
  2873. url="1" >
  2874. </productMenu>
  2875. <productMenu id="meshIntercom"
  2876. type="30" >
  2877. </productMenu>
  2878. <productMenu id="meshIntercom+"
  2879. type="3"
  2880. url="2" >
  2881. </productMenu>
  2882. <productMenu id="waveIntercom"
  2883. type="1" >
  2884. </productMenu>
  2885. <productMenu id="fmradio"
  2886. type="0" >
  2887. </productMenu>
  2888. <productMenu id="phone"
  2889. type="1" >
  2890. </productMenu>
  2891. <productMenu id="music"
  2892. type="1" >
  2893. </productMenu>
  2894. <productMenu id="musicSharing"
  2895. type="0" >
  2896. </productMenu>
  2897. <productMenu id="deviceSetting"
  2898. type="1"
  2899. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2900. <productMenuURL version="1.2.4"
  2901. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2902. />
  2903. </productMenu>
  2904. <productMenu id="quickGuide"
  2905. type="0"
  2906. url=""
  2907. size="1.12MB" >
  2908. </productMenu>
  2909. <productMenu id="userGuide"
  2910. type="1"
  2911. url=""
  2912. size="2.0MB" >
  2913. </productMenu>
  2914. <productMenu id="videoGuide"
  2915. type="0"
  2916. url=""
  2917. size="3.41MB" >
  2918. </productMenu>
  2919. <productMenu id="connectGuide"
  2920. type="1"
  2921. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  2922. size="1.1MB" >
  2923. </productMenu>
  2924. <productMenu id="volume"
  2925. type="16" >
  2926. </productMenu>
  2927. <productMenu id="volume+"
  2928. type="2"
  2929. url="0x6004" >
  2930. </productMenu>
  2931. <productMenu id="soundMode"
  2932. type="1" >
  2933. </productMenu>
  2934. <productMenu id="battery"
  2935. type="1" >
  2936. </productMenu>
  2937. <productID id="6A13"
  2938. />
  2939. <productGroupable type="0"
  2940. />
  2941. </product>
  2942. <product id="PHANTOMCamera"
  2943. name="PHANTOM Camera"
  2944. series="Helmet"
  2945. latestVersion="1.2.10"
  2946. latestVersionVoicePrompt="1.7"
  2947. show = "1" >
  2948. <productMenu id="protocol"
  2949. type="2" >
  2950. </productMenu>
  2951. <productMenu id="ota"
  2952. type="3" >
  2953. <otaLanguages>
  2954. <otaLanguage
  2955. id="0"
  2956. name="English"
  2957. package="0"
  2958. />
  2959. <otaLanguage
  2960. id="0"
  2961. name="French"
  2962. package="1"
  2963. />
  2964. <otaLanguage
  2965. id="0"
  2966. name="Spanish"
  2967. package="2"
  2968. />
  2969. <otaLanguage
  2970. id="0"
  2971. name="Italian"
  2972. package="3"
  2973. />
  2974. <otaLanguage
  2975. id="0"
  2976. name="German"
  2977. package="4"
  2978. />
  2979. <otaLanguage
  2980. id="0"
  2981. name="Dutch"
  2982. package="5"
  2983. />
  2984. <otaLanguage
  2985. id="0"
  2986. name="Russian"
  2987. package="6"
  2988. />
  2989. <otaLanguage
  2990. id="0"
  2991. name="Chinese"
  2992. package="7"
  2993. />
  2994. <otaLanguage
  2995. id="0"
  2996. name="Korean"
  2997. package="8"
  2998. />
  2999. <otaLanguage
  3000. id="0"
  3001. name="Japanese"
  3002. package="9"
  3003. />
  3004. <otaLanguage
  3005. id="0"
  3006. name="Finnish"
  3007. package="10"
  3008. />
  3009. <otaLanguage
  3010. id="0"
  3011. name="Polish"
  3012. package="11"
  3013. />
  3014. </otaLanguages>
  3015. <otaPackages>
  3016. <package
  3017. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0.img"
  3018. size="5183988"
  3019. />
  3020. <package
  3021. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fr-FR.img"
  3022. size="5183988"
  3023. />
  3024. <package
  3025. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-es-ES.img"
  3026. size="5183988"
  3027. />
  3028. <package
  3029. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-it-IT.img"
  3030. size="5183988"
  3031. />
  3032. <package
  3033. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-de-DE.img"
  3034. size="5183988"
  3035. />
  3036. <package
  3037. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-nl-NL.img"
  3038. size="5183988"
  3039. />
  3040. <package
  3041. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ru-RU.img"
  3042. size="5183988"
  3043. />
  3044. <package
  3045. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-cmn-CN.img"
  3046. size="5183988"
  3047. />
  3048. <package
  3049. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ko-KR.img"
  3050. size="5183988"
  3051. />
  3052. <package
  3053. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-ja-JP.img"
  3054. size="5183988"
  3055. />
  3056. <package
  3057. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-fi-FI.img"
  3058. size="5183988"
  3059. />
  3060. <package
  3061. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA_REV2-v1.2.10-build0-pl-PL.img"
  3062. size="5183988"
  3063. />
  3064. </otaPackages>
  3065. </productMenu>
  3066. <productMenu id="wa"
  3067. type="0" >
  3068. </productMenu>
  3069. <productMenu id="led"
  3070. type="5" >
  3071. </productMenu>
  3072. <productMenu id="led+"
  3073. type="2"
  3074. url="1" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom"
  3077. type="30" >
  3078. </productMenu>
  3079. <productMenu id="meshIntercom+"
  3080. type="3"
  3081. url="2" >
  3082. </productMenu>
  3083. <productMenu id="waveIntercom"
  3084. type="1" >
  3085. </productMenu>
  3086. <productMenu id="fmradio"
  3087. type="0" >
  3088. </productMenu>
  3089. <productMenu id="phone"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="music"
  3093. type="1" >
  3094. </productMenu>
  3095. <productMenu id="musicSharing"
  3096. type="0" >
  3097. </productMenu>
  3098. <productMenu id="deviceSetting"
  3099. type="1"
  3100. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3101. </productMenu>
  3102. <productMenu id="quickGuide"
  3103. type="0"
  3104. url=""
  3105. size="1.12MB" >
  3106. </productMenu>
  3107. <productMenu id="userGuide"
  3108. type="1"
  3109. url=""
  3110. size="2.0MB" >
  3111. </productMenu>
  3112. <productMenu id="videoGuide"
  3113. type="0"
  3114. url=""
  3115. size="3.41MB" >
  3116. </productMenu>
  3117. <productMenu id="volume"
  3118. type="16" >
  3119. </productMenu>
  3120. <productMenu id="battery"
  3121. type="1" >
  3122. </productMenu>
  3123. <productID id="6A10"
  3124. />
  3125. <productGroupable type="0"
  3126. />
  3127. </product>
  3128. <product id="PHANTOMCamera"
  3129. name="PHANTOM Camera"
  3130. series="Helmet"
  3131. latestVersion="1.2.10"
  3132. latestVersionVoicePrompt="1.7"
  3133. show = "-1" >
  3134. <productMenu id="protocol"
  3135. type="2" >
  3136. </productMenu>
  3137. <productMenu id="ota"
  3138. type="3" >
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/SenaCamera/PhantomCamera/PHANTOM_CAMERA-v1.2.10-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. </productMenu>
  3269. <productMenu id="waveIntercom"
  3270. type="1" >
  3271. </productMenu>
  3272. <productMenu id="fmradio"
  3273. type="0" >
  3274. </productMenu>
  3275. <productMenu id="phone"
  3276. type="1" >
  3277. </productMenu>
  3278. <productMenu id="music"
  3279. type="1" >
  3280. </productMenu>
  3281. <productMenu id="musicSharing"
  3282. type="0" >
  3283. </productMenu>
  3284. <productMenu id="deviceSetting"
  3285. type="1"
  3286. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3287. </productMenu>
  3288. <productMenu id="quickGuide"
  3289. type="0"
  3290. url=""
  3291. size="1.12MB" >
  3292. </productMenu>
  3293. <productMenu id="userGuide"
  3294. type="1"
  3295. url=""
  3296. size="2.0MB" >
  3297. </productMenu>
  3298. <productMenu id="videoGuide"
  3299. type="0"
  3300. url=""
  3301. size="3.41MB" >
  3302. </productMenu>
  3303. <productMenu id="volume"
  3304. type="16" >
  3305. </productMenu>
  3306. <productMenu id="battery"
  3307. type="1" >
  3308. </productMenu>
  3309. <productID id="6A09"
  3310. />
  3311. <productGroupable type="0"
  3312. />
  3313. </product>
  3314. <product id="PHANTOM"
  3315. name="PHANTOM ANC"
  3316. series="Helmet"
  3317. latestVersion="1.2.9"
  3318. latestVersionVoicePrompt="1.7"
  3319. show = "1" >
  3320. <productMenu id="protocol"
  3321. type="2" >
  3322. </productMenu>
  3323. <productMenu id="ota"
  3324. type="2" >
  3325. <productMenuType version="0.6.9"
  3326. type="0"
  3327. />
  3328. <otaLanguages>
  3329. <otaLanguage
  3330. id="0"
  3331. name="English"
  3332. package="0"
  3333. />
  3334. <otaLanguage
  3335. id="0"
  3336. name="French"
  3337. package="1"
  3338. />
  3339. <otaLanguage
  3340. id="0"
  3341. name="Spanish"
  3342. package="2"
  3343. />
  3344. <otaLanguage
  3345. id="0"
  3346. name="Italian"
  3347. package="3"
  3348. />
  3349. <otaLanguage
  3350. id="0"
  3351. name="German"
  3352. package="4"
  3353. />
  3354. <otaLanguage
  3355. id="0"
  3356. name="Dutch"
  3357. package="5"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="Russian"
  3362. package="6"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Chinese"
  3367. package="7"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Korean"
  3372. package="8"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="Japanese"
  3377. package="9"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Finnish"
  3382. package="10"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Polish"
  3387. package="11"
  3388. />
  3389. </otaLanguages>
  3390. <otaPackages>
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fr-FR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-es-ES.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-it-IT.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-de-DE.img"
  3409. size="5183988"
  3410. />
  3411. <package
  3412. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-nl-NL.img"
  3413. size="5183988"
  3414. />
  3415. <package
  3416. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ru-RU.img"
  3417. size="5183988"
  3418. />
  3419. <package
  3420. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-cmn-CN.img"
  3421. size="5183988"
  3422. />
  3423. <package
  3424. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ko-KR.img"
  3425. size="5183988"
  3426. />
  3427. <package
  3428. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-ja-JP.img"
  3429. size="5183988"
  3430. />
  3431. <package
  3432. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-fi-FI.img"
  3433. size="5183988"
  3434. />
  3435. <package
  3436. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.9-build0-pl-PL.img"
  3437. size="5183988"
  3438. />
  3439. </otaPackages>
  3440. </productMenu>
  3441. <productMenu id="wa"
  3442. type="0" >
  3443. </productMenu>
  3444. <productMenu id="led"
  3445. type="5" >
  3446. </productMenu>
  3447. <productMenu id="led+"
  3448. type="2"
  3449. url="1" >
  3450. </productMenu>
  3451. <productMenu id="meshIntercom"
  3452. type="30" >
  3453. </productMenu>
  3454. <productMenu id="meshIntercom+"
  3455. type="3"
  3456. url="2" >
  3457. <productMenuURL version="1.0.4"
  3458. url="10"
  3459. />
  3460. </productMenu>
  3461. <productMenu id="waveIntercom"
  3462. type="1" >
  3463. <productMenuType version="1.0.9"
  3464. type="0"
  3465. />
  3466. </productMenu>
  3467. <productMenu id="fmradio"
  3468. type="0" >
  3469. </productMenu>
  3470. <productMenu id="phone"
  3471. type="1" >
  3472. </productMenu>
  3473. <productMenu id="music"
  3474. type="1" >
  3475. </productMenu>
  3476. <productMenu id="musicSharing"
  3477. type="0" >
  3478. </productMenu>
  3479. <productMenu id="deviceSetting"
  3480. type="1"
  3481. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3482. <productMenuURL version="1.2.4"
  3483. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3484. />
  3485. <productMenuURL version="1.2.1"
  3486. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3487. />
  3488. <productMenuURL version="1.1.2"
  3489. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3490. />
  3491. <productMenuURL version="1.0.4"
  3492. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3493. />
  3494. </productMenu>
  3495. <productMenu id="quickGuide"
  3496. type="0"
  3497. url=""
  3498. size="1.12MB" >
  3499. </productMenu>
  3500. <productMenu id="userGuide"
  3501. type="1"
  3502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3503. size="2.0MB" >
  3504. </productMenu>
  3505. <productMenu id="videoGuide"
  3506. type="0"
  3507. url=""
  3508. size="3.41MB" >
  3509. </productMenu>
  3510. <productMenu id="connectGuide"
  3511. type="1"
  3512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3513. size="1.1MB" >
  3514. </productMenu>
  3515. <productMenu id="volume"
  3516. type="16" >
  3517. </productMenu>
  3518. <productMenu id="volume+"
  3519. type="2"
  3520. url="0x6004" >
  3521. </productMenu>
  3522. <productMenu id="soundMode"
  3523. type="1" >
  3524. <productMenuType version="0.9.11"
  3525. type="0"
  3526. />
  3527. </productMenu>
  3528. <productMenu id="battery"
  3529. type="1" >
  3530. </productMenu>
  3531. <productID id="6A01"
  3532. />
  3533. <productGroupable type="0"
  3534. />
  3535. </product>
  3536. <product id="PHANTOM"
  3537. name="PHANTOM ANC"
  3538. series="Helmet"
  3539. latestVersion="1.2.9"
  3540. latestVersionVoicePrompt="1.7"
  3541. show = "-1" >
  3542. <productMenu id="protocol"
  3543. type="2" >
  3544. </productMenu>
  3545. <productMenu id="ota"
  3546. type="2" >
  3547. <otaLanguages>
  3548. <otaLanguage
  3549. id="0"
  3550. name="English"
  3551. package="0"
  3552. />
  3553. <otaLanguage
  3554. id="0"
  3555. name="French"
  3556. package="1"
  3557. />
  3558. <otaLanguage
  3559. id="0"
  3560. name="Spanish"
  3561. package="2"
  3562. />
  3563. <otaLanguage
  3564. id="0"
  3565. name="Italian"
  3566. package="3"
  3567. />
  3568. <otaLanguage
  3569. id="0"
  3570. name="German"
  3571. package="4"
  3572. />
  3573. <otaLanguage
  3574. id="0"
  3575. name="Dutch"
  3576. package="5"
  3577. />
  3578. <otaLanguage
  3579. id="0"
  3580. name="Russian"
  3581. package="6"
  3582. />
  3583. <otaLanguage
  3584. id="0"
  3585. name="Chinese"
  3586. package="7"
  3587. />
  3588. <otaLanguage
  3589. id="0"
  3590. name="Korean"
  3591. package="8"
  3592. />
  3593. <otaLanguage
  3594. id="0"
  3595. name="Japanese"
  3596. package="9"
  3597. />
  3598. <otaLanguage
  3599. id="0"
  3600. name="Finnish"
  3601. package="10"
  3602. />
  3603. <otaLanguage
  3604. id="0"
  3605. name="Polish"
  3606. package="11"
  3607. />
  3608. </otaLanguages>
  3609. <otaPackages>
  3610. <package
  3611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0.img"
  3612. size="5183988"
  3613. />
  3614. <package
  3615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fr-FR.img"
  3616. size="5183988"
  3617. />
  3618. <package
  3619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-es-ES.img"
  3620. size="5183988"
  3621. />
  3622. <package
  3623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-it-IT.img"
  3624. size="5183988"
  3625. />
  3626. <package
  3627. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-de-DE.img"
  3628. size="5183988"
  3629. />
  3630. <package
  3631. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-nl-NL.img"
  3632. size="5183988"
  3633. />
  3634. <package
  3635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ru-RU.img"
  3636. size="5183988"
  3637. />
  3638. <package
  3639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-cmn-CN.img"
  3640. size="5183988"
  3641. />
  3642. <package
  3643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ko-KR.img"
  3644. size="5183988"
  3645. />
  3646. <package
  3647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-ja-JP.img"
  3648. size="5183988"
  3649. />
  3650. <package
  3651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-fi-FI.img"
  3652. size="5183988"
  3653. />
  3654. <package
  3655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.9-build0-pl-PL.img"
  3656. size="5183988"
  3657. />
  3658. </otaPackages>
  3659. </productMenu>
  3660. <productMenu id="led"
  3661. type="5" >
  3662. </productMenu>
  3663. <productMenu id="led+"
  3664. type="2"
  3665. url="1" >
  3666. </productMenu>
  3667. <productMenu id="meshIntercom"
  3668. type="30" >
  3669. </productMenu>
  3670. <productMenu id="meshIntercom+"
  3671. type="3"
  3672. url="2" >
  3673. </productMenu>
  3674. <productMenu id="waveIntercom"
  3675. type="1" >
  3676. </productMenu>
  3677. <productMenu id="fmradio"
  3678. type="0" >
  3679. </productMenu>
  3680. <productMenu id="phone"
  3681. type="1" >
  3682. </productMenu>
  3683. <productMenu id="music"
  3684. type="1" >
  3685. </productMenu>
  3686. <productMenu id="musicSharing"
  3687. type="0" >
  3688. </productMenu>
  3689. <productMenu id="deviceSetting"
  3690. type="1"
  3691. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3692. <productMenuURL version="1.2.4"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3694. />
  3695. </productMenu>
  3696. <productMenu id="quickGuide"
  3697. type="0"
  3698. url=""
  3699. size="1.12MB" >
  3700. </productMenu>
  3701. <productMenu id="userGuide"
  3702. type="1"
  3703. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3704. size="2.0MB" >
  3705. </productMenu>
  3706. <productMenu id="videoGuide"
  3707. type="0"
  3708. url=""
  3709. size="3.41MB" >
  3710. </productMenu>
  3711. <productMenu id="connectGuide"
  3712. type="1"
  3713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3714. size="1.1MB" >
  3715. </productMenu>
  3716. <productMenu id="volume"
  3717. type="16" >
  3718. </productMenu>
  3719. <productMenu id="volume+"
  3720. type="2"
  3721. url="0x6004" >
  3722. </productMenu>
  3723. <productMenu id="soundMode"
  3724. type="1" >
  3725. </productMenu>
  3726. <productMenu id="battery"
  3727. type="1" >
  3728. </productMenu>
  3729. <productID id="6A19"
  3730. />
  3731. <productGroupable type="0"
  3732. />
  3733. </product>
  3734. <product id="PHANTOM"
  3735. name="PHANTOM"
  3736. series="Helmet"
  3737. latestVersion="1.2.9"
  3738. latestVersionVoicePrompt="1.7"
  3739. show = "-1" >
  3740. <productMenu id="protocol"
  3741. type="2" >
  3742. </productMenu>
  3743. <productMenu id="ota"
  3744. type="2" >
  3745. <otaLanguages>
  3746. <otaLanguage
  3747. id="0"
  3748. name="English"
  3749. package="0"
  3750. />
  3751. <otaLanguage
  3752. id="0"
  3753. name="French"
  3754. package="1"
  3755. />
  3756. <otaLanguage
  3757. id="0"
  3758. name="Spanish"
  3759. package="2"
  3760. />
  3761. <otaLanguage
  3762. id="0"
  3763. name="Italian"
  3764. package="3"
  3765. />
  3766. <otaLanguage
  3767. id="0"
  3768. name="German"
  3769. package="4"
  3770. />
  3771. <otaLanguage
  3772. id="0"
  3773. name="Dutch"
  3774. package="5"
  3775. />
  3776. <otaLanguage
  3777. id="0"
  3778. name="Russian"
  3779. package="6"
  3780. />
  3781. <otaLanguage
  3782. id="0"
  3783. name="Chinese"
  3784. package="7"
  3785. />
  3786. <otaLanguage
  3787. id="0"
  3788. name="Korean"
  3789. package="8"
  3790. />
  3791. <otaLanguage
  3792. id="0"
  3793. name="Japanese"
  3794. package="9"
  3795. />
  3796. <otaLanguage
  3797. id="0"
  3798. name="Finnish"
  3799. package="10"
  3800. />
  3801. <otaLanguage
  3802. id="0"
  3803. name="Polish"
  3804. package="11"
  3805. />
  3806. </otaLanguages>
  3807. <otaPackages>
  3808. <package
  3809. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0.img"
  3810. size="5183988"
  3811. />
  3812. <package
  3813. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fr-FR.img"
  3814. size="5183988"
  3815. />
  3816. <package
  3817. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-es-ES.img"
  3818. size="5183988"
  3819. />
  3820. <package
  3821. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-it-IT.img"
  3822. size="5183988"
  3823. />
  3824. <package
  3825. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-de-DE.img"
  3826. size="5183988"
  3827. />
  3828. <package
  3829. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-nl-NL.img"
  3830. size="5183988"
  3831. />
  3832. <package
  3833. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ru-RU.img"
  3834. size="5183988"
  3835. />
  3836. <package
  3837. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-cmn-CN.img"
  3838. size="5183988"
  3839. />
  3840. <package
  3841. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ko-KR.img"
  3842. size="5183988"
  3843. />
  3844. <package
  3845. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-ja-JP.img"
  3846. size="5183988"
  3847. />
  3848. <package
  3849. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-fi-FI.img"
  3850. size="5183988"
  3851. />
  3852. <package
  3853. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.9-build0-pl-PL.img"
  3854. size="5183988"
  3855. />
  3856. </otaPackages>
  3857. </productMenu>
  3858. <productMenu id="wa"
  3859. type="0" >
  3860. </productMenu>
  3861. <productMenu id="led"
  3862. type="5" >
  3863. </productMenu>
  3864. <productMenu id="led+"
  3865. type="2"
  3866. url="1" >
  3867. </productMenu>
  3868. <productMenu id="meshIntercom"
  3869. type="30" >
  3870. </productMenu>
  3871. <productMenu id="meshIntercom+"
  3872. type="3"
  3873. url="2" >
  3874. </productMenu>
  3875. <productMenu id="waveIntercom"
  3876. type="1" >
  3877. </productMenu>
  3878. <productMenu id="fmradio"
  3879. type="0" >
  3880. </productMenu>
  3881. <productMenu id="phone"
  3882. type="1" >
  3883. </productMenu>
  3884. <productMenu id="music"
  3885. type="1" >
  3886. </productMenu>
  3887. <productMenu id="musicSharing"
  3888. type="0" >
  3889. </productMenu>
  3890. <productMenu id="deviceSetting"
  3891. type="1"
  3892. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3893. <productMenuURL version="1.2.4"
  3894. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3895. />
  3896. </productMenu>
  3897. <productMenu id="quickGuide"
  3898. type="0"
  3899. url=""
  3900. size="1.52MB" >
  3901. </productMenu>
  3902. <productMenu id="userGuide"
  3903. type="1"
  3904. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3905. size="2.01MB" >
  3906. </productMenu>
  3907. <productMenu id="videoGuide"
  3908. type="0"
  3909. url=""
  3910. size="3.46MB" >
  3911. </productMenu>
  3912. <productMenu id="connectGuide"
  3913. type="1"
  3914. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3915. size="1.1MB" >
  3916. </productMenu>
  3917. <productMenu id="volume"
  3918. type="16" >
  3919. </productMenu>
  3920. <productMenu id="volume+"
  3921. type="2"
  3922. url="0x6004" >
  3923. </productMenu>
  3924. <productMenu id="battery"
  3925. type="1" >
  3926. </productMenu>
  3927. <productID id="6A0E"
  3928. />
  3929. <productGroupable type="0"
  3930. />
  3931. </product>
  3932. <product id="PHANTOM"
  3933. name="PHANTOM"
  3934. series="Helmet"
  3935. latestVersion="1.2.9"
  3936. latestVersionVoicePrompt="1.7"
  3937. show = "1" >
  3938. <productMenu id="protocol"
  3939. type="2" >
  3940. </productMenu>
  3941. <productMenu id="ota"
  3942. type="2" >
  3943. <otaLanguages>
  3944. <otaLanguage
  3945. id="0"
  3946. name="English"
  3947. package="0"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="French"
  3952. package="1"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Spanish"
  3957. package="2"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Italian"
  3962. package="3"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="German"
  3967. package="4"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Dutch"
  3972. package="5"
  3973. />
  3974. <otaLanguage
  3975. id="0"
  3976. name="Russian"
  3977. package="6"
  3978. />
  3979. <otaLanguage
  3980. id="0"
  3981. name="Chinese"
  3982. package="7"
  3983. />
  3984. <otaLanguage
  3985. id="0"
  3986. name="Korean"
  3987. package="8"
  3988. />
  3989. <otaLanguage
  3990. id="0"
  3991. name="Japanese"
  3992. package="9"
  3993. />
  3994. <otaLanguage
  3995. id="0"
  3996. name="Finnish"
  3997. package="10"
  3998. />
  3999. <otaLanguage
  4000. id="0"
  4001. name="Polish"
  4002. package="11"
  4003. />
  4004. </otaLanguages>
  4005. <otaPackages>
  4006. <package
  4007. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0.img"
  4008. size="5183988"
  4009. />
  4010. <package
  4011. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fr-FR.img"
  4012. size="5183988"
  4013. />
  4014. <package
  4015. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-es-ES.img"
  4016. size="5183988"
  4017. />
  4018. <package
  4019. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-it-IT.img"
  4020. size="5183988"
  4021. />
  4022. <package
  4023. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-de-DE.img"
  4024. size="5183988"
  4025. />
  4026. <package
  4027. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-nl-NL.img"
  4028. size="5183988"
  4029. />
  4030. <package
  4031. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ru-RU.img"
  4032. size="5183988"
  4033. />
  4034. <package
  4035. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-cmn-CN.img"
  4036. size="5183988"
  4037. />
  4038. <package
  4039. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ko-KR.img"
  4040. size="5183988"
  4041. />
  4042. <package
  4043. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-ja-JP.img"
  4044. size="5183988"
  4045. />
  4046. <package
  4047. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-fi-FI.img"
  4048. size="5183988"
  4049. />
  4050. <package
  4051. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.9-build0-pl-PL.img"
  4052. size="5183988"
  4053. />
  4054. </otaPackages>
  4055. </productMenu>
  4056. <productMenu id="wa"
  4057. type="0" >
  4058. </productMenu>
  4059. <productMenu id="led"
  4060. type="5" >
  4061. <productMenuType version="1.0.1"
  4062. type="4"
  4063. />
  4064. </productMenu>
  4065. <productMenu id="led+"
  4066. type="2"
  4067. url="1" >
  4068. <productMenuType version="1.0.1"
  4069. type="-1"
  4070. />
  4071. </productMenu>
  4072. <productMenu id="meshIntercom"
  4073. type="30" >
  4074. </productMenu>
  4075. <productMenu id="meshIntercom+"
  4076. type="3"
  4077. url="2" >
  4078. <productMenuURL version="1.0.4"
  4079. url="10"
  4080. />
  4081. </productMenu>
  4082. <productMenu id="waveIntercom"
  4083. type="1" >
  4084. <productMenuType version="1.0.9"
  4085. type="0"
  4086. />
  4087. </productMenu>
  4088. <productMenu id="fmradio"
  4089. type="0" >
  4090. </productMenu>
  4091. <productMenu id="phone"
  4092. type="1" >
  4093. </productMenu>
  4094. <productMenu id="music"
  4095. type="1" >
  4096. </productMenu>
  4097. <productMenu id="musicSharing"
  4098. type="0" >
  4099. </productMenu>
  4100. <productMenu id="deviceSetting"
  4101. type="1"
  4102. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4103. <productMenuURL version="1.2.4"
  4104. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4105. />
  4106. <productMenuURL version="1.2.1"
  4107. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4108. />
  4109. <productMenuURL version="1.0.4"
  4110. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4111. />
  4112. <productMenuURL version="1.0.1"
  4113. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4114. />
  4115. </productMenu>
  4116. <productMenu id="quickGuide"
  4117. type="0"
  4118. url=""
  4119. size="1.12MB" >
  4120. </productMenu>
  4121. <productMenu id="userGuide"
  4122. type="1"
  4123. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4124. size="2.0MB" >
  4125. </productMenu>
  4126. <productMenu id="videoGuide"
  4127. type="0"
  4128. url=""
  4129. size="3.41MB" >
  4130. </productMenu>
  4131. <productMenu id="connectGuide"
  4132. type="1"
  4133. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4134. size="1.12MB" >
  4135. </productMenu>
  4136. <productMenu id="volume"
  4137. type="16" >
  4138. <productMenuType version="1.0"
  4139. type="13"
  4140. />
  4141. </productMenu>
  4142. <productMenu id="volume+"
  4143. type="2"
  4144. url="0x6004" >
  4145. </productMenu>
  4146. <productMenu id="battery"
  4147. type="1" >
  4148. </productMenu>
  4149. <productID id="6A04"
  4150. />
  4151. <productGroupable type="0"
  4152. />
  4153. </product>
  4154. <product id="PHANTOMEasyLink"
  4155. name="PHANTOM EasyLink"
  4156. series="Helmet"
  4157. latestVersion="0.1"
  4158. latestVersionVoicePrompt="1.2"
  4159. show = "-1" >
  4160. <productMenu id="protocol"
  4161. type="2" >
  4162. </productMenu>
  4163. <productMenu id="ota"
  4164. type="0" >
  4165. <otaLanguages>
  4166. <otaLanguage
  4167. id="0"
  4168. name="English"
  4169. package="0"
  4170. />
  4171. <otaLanguage
  4172. id="0"
  4173. name="French"
  4174. package="1"
  4175. />
  4176. <otaLanguage
  4177. id="0"
  4178. name="Spanish"
  4179. package="2"
  4180. />
  4181. <otaLanguage
  4182. id="0"
  4183. name="Italian"
  4184. package="3"
  4185. />
  4186. <otaLanguage
  4187. id="0"
  4188. name="German"
  4189. package="4"
  4190. />
  4191. <otaLanguage
  4192. id="0"
  4193. name="Dutch"
  4194. package="5"
  4195. />
  4196. <otaLanguage
  4197. id="0"
  4198. name="Russian"
  4199. package="6"
  4200. />
  4201. <otaLanguage
  4202. id="0"
  4203. name="Chinese"
  4204. package="7"
  4205. />
  4206. <otaLanguage
  4207. id="0"
  4208. name="Korean"
  4209. package="8"
  4210. />
  4211. <otaLanguage
  4212. id="0"
  4213. name="Japanese"
  4214. package="9"
  4215. />
  4216. <otaLanguage
  4217. id="0"
  4218. name="Finnish"
  4219. package="10"
  4220. />
  4221. <otaLanguage
  4222. id="0"
  4223. name="Polish"
  4224. package="11"
  4225. />
  4226. </otaLanguages>
  4227. <otaPackages>
  4228. <package
  4229. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4230. size="5183988"
  4231. />
  4232. <package
  4233. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4234. size="5183988"
  4235. />
  4236. <package
  4237. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4238. size="5183988"
  4239. />
  4240. <package
  4241. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4242. size="5183988"
  4243. />
  4244. <package
  4245. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4246. size="5183988"
  4247. />
  4248. <package
  4249. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4250. size="5183988"
  4251. />
  4252. <package
  4253. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4254. size="5183988"
  4255. />
  4256. <package
  4257. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4258. size="5183988"
  4259. />
  4260. <package
  4261. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4262. size="5183988"
  4263. />
  4264. <package
  4265. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4266. size="5183988"
  4267. />
  4268. <package
  4269. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4270. size="5183988"
  4271. />
  4272. <package
  4273. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4274. size="5183988"
  4275. />
  4276. </otaPackages>
  4277. </productMenu>
  4278. <productMenu id="meshIntercom"
  4279. type="30" >
  4280. </productMenu>
  4281. <productMenu id="meshIntercom+"
  4282. type="3"
  4283. url="2" >
  4284. </productMenu>
  4285. <productMenu id="waveIntercom"
  4286. type="1" >
  4287. </productMenu>
  4288. <productMenu id="fmradio"
  4289. type="0" >
  4290. </productMenu>
  4291. <productMenu id="phone"
  4292. type="1" >
  4293. </productMenu>
  4294. <productMenu id="music"
  4295. type="1" >
  4296. </productMenu>
  4297. <productMenu id="musicSharing"
  4298. type="0" >
  4299. </productMenu>
  4300. <productMenu id="deviceSetting"
  4301. type="1"
  4302. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4303. </productMenu>
  4304. <productMenu id="quickGuide"
  4305. type="0"
  4306. url=""
  4307. size="1.12MB" >
  4308. </productMenu>
  4309. <productMenu id="userGuide"
  4310. type="1"
  4311. url=""
  4312. size="2.0MB" >
  4313. </productMenu>
  4314. <productMenu id="videoGuide"
  4315. type="0"
  4316. url=""
  4317. size="3.41MB" >
  4318. </productMenu>
  4319. <productMenu id="connectGuide"
  4320. type="0"
  4321. url=""
  4322. size="1.12MB" >
  4323. </productMenu>
  4324. <productMenu id="volume"
  4325. type="16" >
  4326. </productMenu>
  4327. <productMenu id="battery"
  4328. type="1" >
  4329. </productMenu>
  4330. <productID id="6A18"
  4331. />
  4332. <productGroupable type="0"
  4333. />
  4334. </product>
  4335. <product id="SPIDERXSlim"
  4336. name="SPIDER X Slim"
  4337. series="SPIDER"
  4338. latestVersion="1.0"
  4339. latestVersionVoicePrompt="1.7"
  4340. show = "1" >
  4341. <productMenu id="protocol"
  4342. type="2" >
  4343. </productMenu>
  4344. <productMenu id="warranty"
  4345. type="1" >
  4346. </productMenu>
  4347. <productMenu id="serialNumber"
  4348. type="1" >
  4349. </productMenu>
  4350. <productMenu id="ota"
  4351. type="2" >
  4352. <otaLanguages>
  4353. <otaLanguage
  4354. id="0"
  4355. name="English"
  4356. package="0"
  4357. />
  4358. <otaLanguage
  4359. id="0"
  4360. name="French"
  4361. package="1"
  4362. />
  4363. <otaLanguage
  4364. id="0"
  4365. name="Spanish"
  4366. package="2"
  4367. />
  4368. <otaLanguage
  4369. id="0"
  4370. name="Italian"
  4371. package="3"
  4372. />
  4373. <otaLanguage
  4374. id="0"
  4375. name="German"
  4376. package="4"
  4377. />
  4378. <otaLanguage
  4379. id="0"
  4380. name="Dutch"
  4381. package="5"
  4382. />
  4383. <otaLanguage
  4384. id="0"
  4385. name="Russian"
  4386. package="6"
  4387. />
  4388. <otaLanguage
  4389. id="0"
  4390. name="Chinese"
  4391. package="7"
  4392. />
  4393. <otaLanguage
  4394. id="0"
  4395. name="Korean"
  4396. package="8"
  4397. />
  4398. <otaLanguage
  4399. id="0"
  4400. name="Japanese"
  4401. package="9"
  4402. />
  4403. <otaLanguage
  4404. id="0"
  4405. name="Finnish"
  4406. package="10"
  4407. />
  4408. <otaLanguage
  4409. id="0"
  4410. name="Polish"
  4411. package="11"
  4412. />
  4413. </otaLanguages>
  4414. <otaPackages>
  4415. <package
  4416. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fr-FR.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-es-ES.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-it-IT.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-de-DE.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-nl-NL.img"
  4437. size="5183988"
  4438. />
  4439. <package
  4440. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ru-RU.img"
  4441. size="5183988"
  4442. />
  4443. <package
  4444. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-cmn-CN.img"
  4445. size="5183988"
  4446. />
  4447. <package
  4448. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ko-KR.img"
  4449. size="5183988"
  4450. />
  4451. <package
  4452. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-ja-JP.img"
  4453. size="5183988"
  4454. />
  4455. <package
  4456. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-fi-FI.img"
  4457. size="5183988"
  4458. />
  4459. <package
  4460. url="https://api.sena.com/support/OTA/Motorcycles/SPIDERXSlim/SPIDER_X_Slim-v1.0-build5-pl-PL.img"
  4461. size="5183988"
  4462. />
  4463. </otaPackages>
  4464. </productMenu>
  4465. <productMenu id="meshIntercom"
  4466. type="30" >
  4467. </productMenu>
  4468. <productMenu id="meshIntercom+"
  4469. type="3"
  4470. url="2" >
  4471. </productMenu>
  4472. <productMenu id="waveIntercom"
  4473. type="1" >
  4474. </productMenu>
  4475. <productMenu id="fmradio"
  4476. type="1"
  4477. url="1" >
  4478. </productMenu>
  4479. <productMenu id="phone"
  4480. type="1" >
  4481. </productMenu>
  4482. <productMenu id="music"
  4483. type="1" >
  4484. </productMenu>
  4485. <productMenu id="musicSharing"
  4486. type="0" >
  4487. </productMenu>
  4488. <productMenu id="deviceSetting"
  4489. type="1"
  4490. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_02.xml" >
  4491. <productMenuURL version="1.0"
  4492. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml"
  4493. />
  4494. </productMenu>
  4495. <productMenu id="quickGuide"
  4496. type="0"
  4497. url=""
  4498. size="1.12MB" >
  4499. </productMenu>
  4500. <productMenu id="userGuide"
  4501. type="1"
  4502. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_X_Slim_1.0.0_en_260629.pdf"
  4503. size="2.0MB" >
  4504. </productMenu>
  4505. <productMenu id="videoGuide"
  4506. type="0"
  4507. url=""
  4508. size="3.41MB" >
  4509. </productMenu>
  4510. <productMenu id="connectGuide"
  4511. type="1"
  4512. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_spiderxslim.json"
  4513. size="1.12MB" >
  4514. </productMenu>
  4515. <productMenu id="volume"
  4516. type="16" >
  4517. </productMenu>
  4518. <productMenu id="volume+"
  4519. type="2"
  4520. url="0x6004" >
  4521. </productMenu>
  4522. <productMenu id="appearance"
  4523. type="1"
  4524. url="2|white,silver,chrome,black" >
  4525. </productMenu>
  4526. <productMenu id="battery"
  4527. type="1" >
  4528. </productMenu>
  4529. <productID id="6A07"
  4530. />
  4531. <productGroupable type="0"
  4532. />
  4533. </product>
  4534. <product id="XFITM"
  4535. name="X-FIT M"
  4536. series="SPIDER"
  4537. latestVersion="0.1.11"
  4538. latestVersionVoicePrompt="1.1"
  4539. show = "-1" >
  4540. <productMenu id="protocol"
  4541. type="2" >
  4542. </productMenu>
  4543. <productMenu id="ota"
  4544. type="0" >
  4545. <otaLanguages>
  4546. <otaLanguage
  4547. id="0"
  4548. name="English"
  4549. package="0"
  4550. />
  4551. <otaLanguage
  4552. id="0"
  4553. name="French"
  4554. package="1"
  4555. />
  4556. <otaLanguage
  4557. id="0"
  4558. name="Spanish"
  4559. package="2"
  4560. />
  4561. <otaLanguage
  4562. id="0"
  4563. name="Italian"
  4564. package="3"
  4565. />
  4566. <otaLanguage
  4567. id="0"
  4568. name="German"
  4569. package="4"
  4570. />
  4571. <otaLanguage
  4572. id="0"
  4573. name="Dutch"
  4574. package="5"
  4575. />
  4576. <otaLanguage
  4577. id="0"
  4578. name="Russian"
  4579. package="6"
  4580. />
  4581. <otaLanguage
  4582. id="0"
  4583. name="Chinese"
  4584. package="7"
  4585. />
  4586. <otaLanguage
  4587. id="0"
  4588. name="Korean"
  4589. package="8"
  4590. />
  4591. <otaLanguage
  4592. id="0"
  4593. name="Japanese"
  4594. package="9"
  4595. />
  4596. <otaLanguage
  4597. id="0"
  4598. name="Finnish"
  4599. package="10"
  4600. />
  4601. <otaLanguage
  4602. id="0"
  4603. name="Polish"
  4604. package="11"
  4605. />
  4606. </otaLanguages>
  4607. <otaPackages>
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4610. size="5183988"
  4611. />
  4612. <package
  4613. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4614. size="5183988"
  4615. />
  4616. <package
  4617. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4618. size="5183988"
  4619. />
  4620. <package
  4621. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4622. size="5183988"
  4623. />
  4624. <package
  4625. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4626. size="5183988"
  4627. />
  4628. <package
  4629. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4630. size="5183988"
  4631. />
  4632. <package
  4633. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4634. size="5183988"
  4635. />
  4636. <package
  4637. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4638. size="5183988"
  4639. />
  4640. <package
  4641. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4642. size="5183988"
  4643. />
  4644. <package
  4645. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4646. size="5183988"
  4647. />
  4648. <package
  4649. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4650. size="5183988"
  4651. />
  4652. <package
  4653. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4654. size="5183988"
  4655. />
  4656. </otaPackages>
  4657. </productMenu>
  4658. <productMenu id="meshIntercom"
  4659. type="30" >
  4660. </productMenu>
  4661. <productMenu id="meshIntercom+"
  4662. type="3"
  4663. url="2" >
  4664. </productMenu>
  4665. <productMenu id="waveIntercom"
  4666. type="1" >
  4667. </productMenu>
  4668. <productMenu id="fmradio"
  4669. type="1"
  4670. url="1" >
  4671. </productMenu>
  4672. <productMenu id="phone"
  4673. type="1" >
  4674. </productMenu>
  4675. <productMenu id="music"
  4676. type="1" >
  4677. </productMenu>
  4678. <productMenu id="musicSharing"
  4679. type="0" >
  4680. </productMenu>
  4681. <productMenu id="deviceSetting"
  4682. type="1"
  4683. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4684. </productMenu>
  4685. <productMenu id="quickGuide"
  4686. type="0"
  4687. url=""
  4688. size="1.12MB" >
  4689. </productMenu>
  4690. <productMenu id="userGuide"
  4691. type="1"
  4692. url=""
  4693. size="2.0MB" >
  4694. </productMenu>
  4695. <productMenu id="videoGuide"
  4696. type="0"
  4697. url=""
  4698. size="3.41MB" >
  4699. </productMenu>
  4700. <productMenu id="volume"
  4701. type="16" >
  4702. </productMenu>
  4703. <productMenu id="volume+"
  4704. type="2"
  4705. url="0x6004" >
  4706. </productMenu>
  4707. <productMenu id="battery"
  4708. type="1" >
  4709. </productMenu>
  4710. <productID id="6A17"
  4711. />
  4712. <productGroupable type="0"
  4713. />
  4714. </product>
  4715. <product id="VORTEXMESH"
  4716. name="VORTEX MESH"
  4717. series="Helmet"
  4718. latestVersion="0.1.11"
  4719. latestVersionVoicePrompt="1.1"
  4720. show = "-1" >
  4721. <productMenu id="protocol"
  4722. type="2" >
  4723. </productMenu>
  4724. <productMenu id="ota"
  4725. type="0" >
  4726. <otaLanguages>
  4727. <otaLanguage
  4728. id="0"
  4729. name="English"
  4730. package="0"
  4731. />
  4732. <otaLanguage
  4733. id="0"
  4734. name="French"
  4735. package="1"
  4736. />
  4737. <otaLanguage
  4738. id="0"
  4739. name="Spanish"
  4740. package="2"
  4741. />
  4742. <otaLanguage
  4743. id="0"
  4744. name="Italian"
  4745. package="3"
  4746. />
  4747. <otaLanguage
  4748. id="0"
  4749. name="German"
  4750. package="4"
  4751. />
  4752. <otaLanguage
  4753. id="0"
  4754. name="Dutch"
  4755. package="5"
  4756. />
  4757. <otaLanguage
  4758. id="0"
  4759. name="Russian"
  4760. package="6"
  4761. />
  4762. <otaLanguage
  4763. id="0"
  4764. name="Chinese"
  4765. package="7"
  4766. />
  4767. <otaLanguage
  4768. id="0"
  4769. name="Korean"
  4770. package="8"
  4771. />
  4772. <otaLanguage
  4773. id="0"
  4774. name="Japanese"
  4775. package="9"
  4776. />
  4777. <otaLanguage
  4778. id="0"
  4779. name="Finnish"
  4780. package="10"
  4781. />
  4782. <otaLanguage
  4783. id="0"
  4784. name="Polish"
  4785. package="11"
  4786. />
  4787. </otaLanguages>
  4788. <otaPackages>
  4789. <package
  4790. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4791. size="5183988"
  4792. />
  4793. <package
  4794. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4795. size="5183988"
  4796. />
  4797. <package
  4798. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4799. size="5183988"
  4800. />
  4801. <package
  4802. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4803. size="5183988"
  4804. />
  4805. <package
  4806. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4807. size="5183988"
  4808. />
  4809. <package
  4810. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4811. size="5183988"
  4812. />
  4813. <package
  4814. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4815. size="5183988"
  4816. />
  4817. <package
  4818. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4819. size="5183988"
  4820. />
  4821. <package
  4822. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4823. size="5183988"
  4824. />
  4825. <package
  4826. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4827. size="5183988"
  4828. />
  4829. <package
  4830. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4831. size="5183988"
  4832. />
  4833. <package
  4834. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4835. size="5183988"
  4836. />
  4837. </otaPackages>
  4838. </productMenu>
  4839. <productMenu id="wa"
  4840. type="0" >
  4841. </productMenu>
  4842. <productMenu id="led"
  4843. type="5" >
  4844. </productMenu>
  4845. <productMenu id="led+"
  4846. type="2"
  4847. url="1" >
  4848. </productMenu>
  4849. <productMenu id="meshIntercom"
  4850. type="30" >
  4851. </productMenu>
  4852. <productMenu id="meshIntercom+"
  4853. type="3"
  4854. url="2" >
  4855. </productMenu>
  4856. <productMenu id="waveIntercom"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="fmradio"
  4860. type="0" >
  4861. </productMenu>
  4862. <productMenu id="phone"
  4863. type="1" >
  4864. </productMenu>
  4865. <productMenu id="music"
  4866. type="1" >
  4867. </productMenu>
  4868. <productMenu id="musicSharing"
  4869. type="0" >
  4870. </productMenu>
  4871. <productMenu id="deviceSetting"
  4872. type="1"
  4873. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4874. </productMenu>
  4875. <productMenu id="quickGuide"
  4876. type="0"
  4877. url=""
  4878. size="1.12MB" >
  4879. </productMenu>
  4880. <productMenu id="userGuide"
  4881. type="1"
  4882. url=""
  4883. size="2.0MB" >
  4884. </productMenu>
  4885. <productMenu id="videoGuide"
  4886. type="0"
  4887. url=""
  4888. size="3.41MB" >
  4889. </productMenu>
  4890. <productMenu id="volume"
  4891. type="16" >
  4892. </productMenu>
  4893. <productMenu id="battery"
  4894. type="1" >
  4895. </productMenu>
  4896. <productID id="6A12"
  4897. />
  4898. <productGroupable type="0"
  4899. />
  4900. </product>
  4901. <product id="MeshOn"
  4902. name="MeshON"
  4903. series="Other"
  4904. latestVersion="1.0.1"
  4905. latestVersionVoicePrompt="0.7"
  4906. show = "1" >
  4907. <productMenu id="protocol"
  4908. type="2" >
  4909. </productMenu>
  4910. <productMenu id="ota"
  4911. type="2" >
  4912. <otaPackages>
  4913. <package
  4914. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4915. size="2945812"
  4916. />
  4917. </otaPackages>
  4918. </productMenu>
  4919. <productMenu id="meshIntercom+"
  4920. type="3"
  4921. url="4" >
  4922. </productMenu>
  4923. <productMenu id="waveIntercom"
  4924. type="0" >
  4925. </productMenu>
  4926. <productMenu id="phone"
  4927. type="0" >
  4928. </productMenu>
  4929. <productMenu id="music"
  4930. type="0" >
  4931. </productMenu>
  4932. <productMenu id="musicSharing"
  4933. type="0" >
  4934. </productMenu>
  4935. <productMenu id="deviceSetting"
  4936. type="1"
  4937. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4938. </productMenu>
  4939. <productMenu id="userGuide"
  4940. type="1"
  4941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_MeshON_1.0.0_en_260720.pdf"
  4942. size="2.0MB" >
  4943. </productMenu>
  4944. <productMenu id="bluetoothHeadset"
  4945. type="1"
  4946. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4947. </productMenu>
  4948. <productMenu id="volume"
  4949. type="0" >
  4950. </productMenu>
  4951. <productMenu id="battery"
  4952. type="1" >
  4953. </productMenu>
  4954. <productID id="684E"
  4955. />
  4956. <productGroupable type="0"
  4957. />
  4958. </product>
  4959. <product id="Impulse"
  4960. name="Impulse"
  4961. series="Helmet"
  4962. latestVersion="1.4.1"
  4963. show = "1" >
  4964. <productMenu id="protocol"
  4965. type="2" >
  4966. </productMenu>
  4967. <productMenu id="alexa"
  4968. type="0" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="0" >
  4972. </productMenu>
  4973. <productMenu id="wa"
  4974. type="24" >
  4975. </productMenu>
  4976. <productMenu id="manager"
  4977. type="0" >
  4978. </productMenu>
  4979. <productMenu id="sip"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="led"
  4983. type="1" >
  4984. <productMenuType version="1.0.1"
  4985. type="2"
  4986. />
  4987. <productMenuType version="1.0"
  4988. type="1"
  4989. />
  4990. </productMenu>
  4991. <productMenu id="meshIntercom"
  4992. type="30" >
  4993. <productMenuType version="1.1.1"
  4994. type="20"
  4995. />
  4996. </productMenu>
  4997. <productMenu id="meshIntercom+"
  4998. type="3"
  4999. url="2" >
  5000. <productMenuType version="1.3.9"
  5001. type="2"
  5002. />
  5003. <productMenuURL version="1.1.1"
  5004. url="0"
  5005. />
  5006. </productMenu>
  5007. <productMenu id="waveIntercom"
  5008. type="1" >
  5009. <productMenuType version="1.3.9"
  5010. type="0"
  5011. />
  5012. </productMenu>
  5013. <productMenu id="bluetoothIntercom"
  5014. type="1" >
  5015. </productMenu>
  5016. <productMenu id="phone"
  5017. type="1" >
  5018. </productMenu>
  5019. <productMenu id="music"
  5020. type="1" >
  5021. </productMenu>
  5022. <productMenu id="fmradio"
  5023. type="1" >
  5024. </productMenu>
  5025. <productMenu id="deviceSetting"
  5026. type="1"
  5027. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5028. <productMenuURL version="1.3.9"
  5029. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5030. />
  5031. <productMenuURL version="1.1.1"
  5032. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5033. />
  5034. <productMenuURL version="1.0.4"
  5035. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5036. />
  5037. </productMenu>
  5038. <productMenu id="quickGuide"
  5039. type="0"
  5040. url=""
  5041. size="344KB" >
  5042. </productMenu>
  5043. <productMenu id="userGuide"
  5044. type="1"
  5045. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  5046. size="3.41MB" >
  5047. </productMenu>
  5048. <productMenu id="connectGuide"
  5049. type="1"
  5050. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5051. size="1.12MB" >
  5052. </productMenu>
  5053. <productMenu id="volume"
  5054. type="11" >
  5055. </productMenu>
  5056. <productMenu id="battery"
  5057. type="1" >
  5058. </productMenu>
  5059. <productID id="3148"
  5060. />
  5061. <productGroupable type="0"
  5062. />
  5063. </product>
  5064. <product id="Impulse"
  5065. name="Impulse"
  5066. series="Helmet"
  5067. latestVersion="2.0"
  5068. show = "-1" >
  5069. <productMenu id="protocol"
  5070. type="2" >
  5071. </productMenu>
  5072. <productMenu id="alexa"
  5073. type="0" >
  5074. </productMenu>
  5075. <productMenu id="ota"
  5076. type="0" >
  5077. </productMenu>
  5078. <productMenu id="wa"
  5079. type="8" >
  5080. </productMenu>
  5081. <productMenu id="manager"
  5082. type="0" >
  5083. </productMenu>
  5084. <productMenu id="sip"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="led"
  5088. type="3" >
  5089. </productMenu>
  5090. <productMenu id="meshIntercom"
  5091. type="20" >
  5092. </productMenu>
  5093. <productMenu id="bluetoothIntercom"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="phone"
  5097. type="1" >
  5098. </productMenu>
  5099. <productMenu id="music"
  5100. type="1" >
  5101. </productMenu>
  5102. <productMenu id="fmradio"
  5103. type="1" >
  5104. </productMenu>
  5105. <productMenu id="deviceSetting"
  5106. type="1"
  5107. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5108. </productMenu>
  5109. <productMenu id="quickGuide"
  5110. type="1"
  5111. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5112. size="344KB" >
  5113. </productMenu>
  5114. <productMenu id="userGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5117. size="3.41MB" >
  5118. </productMenu>
  5119. <productMenu id="volume"
  5120. type="11" >
  5121. </productMenu>
  5122. <productMenu id="battery"
  5123. type="1" >
  5124. </productMenu>
  5125. <productID id="3221"
  5126. />
  5127. <productGroupable type="0"
  5128. />
  5129. </product>
  5130. <product id="Stryker"
  5131. name="Stryker"
  5132. series="Helmet"
  5133. latestVersion="1.4.1"
  5134. show = "1" >
  5135. <productMenu id="protocol"
  5136. type="2" >
  5137. </productMenu>
  5138. <productMenu id="alexa"
  5139. type="0" >
  5140. </productMenu>
  5141. <productMenu id="ota"
  5142. type="0" >
  5143. </productMenu>
  5144. <productMenu id="wa"
  5145. type="40" >
  5146. </productMenu>
  5147. <productMenu id="manager"
  5148. type="0" >
  5149. </productMenu>
  5150. <productMenu id="sip"
  5151. type="1" >
  5152. </productMenu>
  5153. <productMenu id="led"
  5154. type="1" >
  5155. <productMenuType version="1.0.1"
  5156. type="2"
  5157. />
  5158. <productMenuType version="1.0"
  5159. type="1"
  5160. />
  5161. </productMenu>
  5162. <productMenu id="meshIntercom"
  5163. type="30" >
  5164. <productMenuType version="1.1.1"
  5165. type="20"
  5166. />
  5167. </productMenu>
  5168. <productMenu id="meshIntercom+"
  5169. type="3"
  5170. url="2" >
  5171. <productMenuType version="1.3.9"
  5172. type="2"
  5173. />
  5174. <productMenuURL version="1.1.1"
  5175. url="0"
  5176. />
  5177. </productMenu>
  5178. <productMenu id="waveIntercom"
  5179. type="1" >
  5180. <productMenuType version="1.2.9"
  5181. type="0"
  5182. />
  5183. </productMenu>
  5184. <productMenu id="bluetoothIntercom"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="phone"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="music"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="fmradio"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="deviceSetting"
  5197. type="1"
  5198. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5199. <productMenuURL version="1.3.9"
  5200. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5201. />
  5202. <productMenuURL version="1.1.1"
  5203. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5204. />
  5205. <productMenuURL version="1.0.4"
  5206. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5207. />
  5208. </productMenu>
  5209. <productMenu id="quickGuide"
  5210. type="0"
  5211. url=""
  5212. size="344KB" >
  5213. </productMenu>
  5214. <productMenu id="userGuide"
  5215. type="1"
  5216. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5217. size="3.41MB" >
  5218. </productMenu>
  5219. <productMenu id="connectGuide"
  5220. type="1"
  5221. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5222. size="1.12MB" >
  5223. </productMenu>
  5224. <productMenu id="volume"
  5225. type="11" >
  5226. </productMenu>
  5227. <productMenu id="battery"
  5228. type="1" >
  5229. </productMenu>
  5230. <productID id="3154"
  5231. />
  5232. <productGroupable type="0"
  5233. />
  5234. </product>
  5235. <product id="SRL3Plus"
  5236. name="SRL3 Plus"
  5237. series="60"
  5238. latestVersion="0.9.5"
  5239. latestVersionMesh="0.19"
  5240. latestVersionVoicePrompt="1.2"
  5241. show = "-1" >
  5242. <productMenu id="protocol"
  5243. type="2" >
  5244. </productMenu>
  5245. <productMenu id="ota"
  5246. type="0" >
  5247. <otaLanguages>
  5248. <otaLanguage
  5249. id="0"
  5250. name="English"
  5251. package="0"
  5252. />
  5253. <otaLanguage
  5254. id="0"
  5255. name="French"
  5256. package="1"
  5257. />
  5258. <otaLanguage
  5259. id="0"
  5260. name="Spanish"
  5261. package="2"
  5262. />
  5263. <otaLanguage
  5264. id="0"
  5265. name="Italian"
  5266. package="3"
  5267. />
  5268. <otaLanguage
  5269. id="0"
  5270. name="German"
  5271. package="4"
  5272. />
  5273. <otaLanguage
  5274. id="0"
  5275. name="Dutch"
  5276. package="5"
  5277. />
  5278. <otaLanguage
  5279. id="0"
  5280. name="Russian"
  5281. package="6"
  5282. />
  5283. <otaLanguage
  5284. id="0"
  5285. name="Chinese"
  5286. package="7"
  5287. />
  5288. <otaLanguage
  5289. id="0"
  5290. name="Korean"
  5291. package="8"
  5292. />
  5293. <otaLanguage
  5294. id="0"
  5295. name="Japanese"
  5296. package="9"
  5297. />
  5298. <otaLanguage
  5299. id="0"
  5300. name="Finnish"
  5301. package="10"
  5302. />
  5303. </otaLanguages>
  5304. <otaPackages>
  5305. <package
  5306. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5307. size="5183988"
  5308. />
  5309. <package
  5310. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5311. size="5183988"
  5312. />
  5313. <package
  5314. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5315. size="5183988"
  5316. />
  5317. <package
  5318. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5319. size="5183988"
  5320. />
  5321. <package
  5322. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5323. size="5183988"
  5324. />
  5325. <package
  5326. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5327. size="5183988"
  5328. />
  5329. <package
  5330. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5331. size="5183988"
  5332. />
  5333. <package
  5334. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5335. size="5183988"
  5336. />
  5337. <package
  5338. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5339. size="5183988"
  5340. />
  5341. <package
  5342. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5343. size="5183988"
  5344. />
  5345. <package
  5346. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5347. size="5183988"
  5348. />
  5349. </otaPackages>
  5350. </productMenu>
  5351. <productMenu id="sip"
  5352. type="1" >
  5353. </productMenu>
  5354. <productMenu id="meshIntercom+"
  5355. type="3"
  5356. url="2" >
  5357. </productMenu>
  5358. <productMenu id="waveIntercom"
  5359. type="1" >
  5360. </productMenu>
  5361. <productMenu id="bluetoothIntercom"
  5362. type="1"
  5363. url="2" >
  5364. </productMenu>
  5365. <productMenu id="bluetoothIntercomGrouping"
  5366. type="0" >
  5367. </productMenu>
  5368. <productMenu id="fmradio"
  5369. type="1"
  5370. url="1" >
  5371. </productMenu>
  5372. <productMenu id="phone"
  5373. type="1" >
  5374. </productMenu>
  5375. <productMenu id="music"
  5376. type="1" >
  5377. </productMenu>
  5378. <productMenu id="musicSharing"
  5379. type="0" >
  5380. </productMenu>
  5381. <productMenu id="deviceSetting"
  5382. type="1"
  5383. url="https://api.sena.com/support/SenaNeoApp/SRL3Plus/SRL3Plus.xml" >
  5384. </productMenu>
  5385. <productMenu id="quickGuide"
  5386. type="0"
  5387. url=""
  5388. size="1.12MB" >
  5389. </productMenu>
  5390. <productMenu id="userGuide"
  5391. type="0"
  5392. url=""
  5393. size="2.0MB" >
  5394. </productMenu>
  5395. <productMenu id="videoGuide"
  5396. type="0"
  5397. url=""
  5398. size="3.41MB" >
  5399. </productMenu>
  5400. <productMenu id="volume"
  5401. type="16" >
  5402. </productMenu>
  5403. <productMenu id="soundMode"
  5404. type="1" >
  5405. </productMenu>
  5406. <productMenu id="battery"
  5407. type="1" >
  5408. </productMenu>
  5409. <productID id="6A08"
  5410. />
  5411. <productGroupable type="0"
  5412. />
  5413. </product>
  5414. <product id="SRL3"
  5415. name="SRL3"
  5416. series="SRL"
  5417. latestVersion="1.5"
  5418. show = "1" >
  5419. <productMenu id="protocol"
  5420. type="2" >
  5421. </productMenu>
  5422. <productMenu id="alexa"
  5423. type="0" >
  5424. </productMenu>
  5425. <productMenu id="ota"
  5426. type="0" >
  5427. </productMenu>
  5428. <productMenu id="wa"
  5429. type="1" >
  5430. </productMenu>
  5431. <productMenu id="sip"
  5432. type="1" >
  5433. </productMenu>
  5434. <productMenu id="meshIntercom"
  5435. type="30" >
  5436. </productMenu>
  5437. <productMenu id="meshIntercom+"
  5438. type="3"
  5439. url="2" >
  5440. <productMenuType version="1.3.9"
  5441. type="2"
  5442. />
  5443. </productMenu>
  5444. <productMenu id="waveIntercom"
  5445. type="1" >
  5446. <productMenuType version="1.4.9"
  5447. type="0"
  5448. />
  5449. </productMenu>
  5450. <productMenu id="bluetoothIntercom"
  5451. type="1" >
  5452. </productMenu>
  5453. <productMenu id="phone"
  5454. type="1" >
  5455. </productMenu>
  5456. <productMenu id="music"
  5457. type="1" >
  5458. </productMenu>
  5459. <productMenu id="fmradio"
  5460. type="1" >
  5461. </productMenu>
  5462. <productMenu id="deviceSetting"
  5463. type="1"
  5464. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5465. <productMenuURL version="1.3"
  5466. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5467. />
  5468. </productMenu>
  5469. <productMenu id="quickGuide"
  5470. type="0"
  5471. url=""
  5472. size="344KB" >
  5473. </productMenu>
  5474. <productMenu id="userGuide"
  5475. type="1"
  5476. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5477. size="3.41MB" >
  5478. </productMenu>
  5479. <productMenu id="connectGuide"
  5480. type="1"
  5481. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5482. size="1.12MB" >
  5483. </productMenu>
  5484. <productMenu id="volume"
  5485. type="11" >
  5486. </productMenu>
  5487. <productMenu id="battery"
  5488. type="1" >
  5489. </productMenu>
  5490. <productID id="3219"
  5491. />
  5492. <productGroupable type="0"
  5493. />
  5494. </product>
  5495. <product id="SRL_Mesh"
  5496. name="SRL-Mesh"
  5497. series="SRL"
  5498. latestVersion="1.7.1"
  5499. show = "1" >
  5500. <productMenu id="protocol"
  5501. type="2" >
  5502. </productMenu>
  5503. <productMenu id="alexa"
  5504. type="0" >
  5505. </productMenu>
  5506. <productMenu id="ota"
  5507. type="0" >
  5508. </productMenu>
  5509. <productMenu id="wa"
  5510. type="1" >
  5511. </productMenu>
  5512. <productMenu id="sip"
  5513. type="1" >
  5514. </productMenu>
  5515. <productMenu id="meshIntercom"
  5516. type="30" >
  5517. <productMenuType version="1.1.1"
  5518. type="20"
  5519. />
  5520. </productMenu>
  5521. <productMenu id="meshIntercom+"
  5522. type="3"
  5523. url="2" >
  5524. <productMenuType version="1.5.9"
  5525. type="2"
  5526. />
  5527. <productMenuURL version="1.1.1"
  5528. url="0"
  5529. />
  5530. </productMenu>
  5531. <productMenu id="waveIntercom"
  5532. type="1" >
  5533. <productMenuType version="1.6.9"
  5534. type="0"
  5535. />
  5536. </productMenu>
  5537. <productMenu id="bluetoothIntercom"
  5538. type="1" >
  5539. </productMenu>
  5540. <productMenu id="phone"
  5541. type="1" >
  5542. </productMenu>
  5543. <productMenu id="music"
  5544. type="1" >
  5545. </productMenu>
  5546. <productMenu id="fmradio"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="deviceSetting"
  5550. type="1"
  5551. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5552. <productMenuURL version="1.5"
  5553. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5554. />
  5555. <productMenuURL version="1.1.1"
  5556. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5557. />
  5558. <productMenuURL version="1.0.3"
  5559. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5560. />
  5561. </productMenu>
  5562. <productMenu id="quickGuide"
  5563. type="0"
  5564. url=""
  5565. size="344KB" >
  5566. </productMenu>
  5567. <productMenu id="userGuide"
  5568. type="1"
  5569. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5570. size="3.41MB" >
  5571. </productMenu>
  5572. <productMenu id="connectGuide"
  5573. type="1"
  5574. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5575. size="1.12MB" >
  5576. </productMenu>
  5577. <productMenu id="volume"
  5578. type="11" >
  5579. </productMenu>
  5580. <productMenu id="battery"
  5581. type="1" >
  5582. </productMenu>
  5583. <productID id="3216"
  5584. />
  5585. <productGroupable type="0"
  5586. />
  5587. </product>
  5588. <product id="SRL_EXT"
  5589. name="SRL-EXT"
  5590. series="SRL"
  5591. latestVersion="1.7.1"
  5592. show = "1" >
  5593. <productMenu id="protocol"
  5594. type="2" >
  5595. </productMenu>
  5596. <productMenu id="alexa"
  5597. type="0" >
  5598. </productMenu>
  5599. <productMenu id="ota"
  5600. type="0" >
  5601. </productMenu>
  5602. <productMenu id="wa"
  5603. type="0" >
  5604. </productMenu>
  5605. <productMenu id="sip"
  5606. type="1" >
  5607. </productMenu>
  5608. <productMenu id="meshIntercom"
  5609. type="30" >
  5610. <productMenuType version="1.1.1"
  5611. type="20"
  5612. />
  5613. </productMenu>
  5614. <productMenu id="meshIntercom+"
  5615. type="3"
  5616. url="2" >
  5617. <productMenuType version="1.5.9"
  5618. type="2"
  5619. />
  5620. <productMenuURL version="1.1.1"
  5621. url="0"
  5622. />
  5623. </productMenu>
  5624. <productMenu id="waveIntercom"
  5625. type="1" >
  5626. <productMenuType version="1.6.9"
  5627. type="0"
  5628. />
  5629. </productMenu>
  5630. <productMenu id="bluetoothIntercom"
  5631. type="1" >
  5632. </productMenu>
  5633. <productMenu id="phone"
  5634. type="1" >
  5635. </productMenu>
  5636. <productMenu id="music"
  5637. type="1" >
  5638. </productMenu>
  5639. <productMenu id="fmradio"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="deviceSetting"
  5643. type="1"
  5644. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5645. <productMenuURL version="1.5"
  5646. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5647. />
  5648. <productMenuURL version="1.1.1"
  5649. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5650. />
  5651. <productMenuURL version="1.0.3"
  5652. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5653. />
  5654. </productMenu>
  5655. <productMenu id="quickGuide"
  5656. type="0"
  5657. url=""
  5658. size="344KB" >
  5659. </productMenu>
  5660. <productMenu id="userGuide"
  5661. type="1"
  5662. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5663. size="3.41MB" >
  5664. </productMenu>
  5665. <productMenu id="connectGuide"
  5666. type="1"
  5667. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5668. size="1.12MB" >
  5669. </productMenu>
  5670. <productMenu id="volume"
  5671. type="11" >
  5672. </productMenu>
  5673. <productMenu id="battery"
  5674. type="1" >
  5675. </productMenu>
  5676. <productID id="3212"
  5677. />
  5678. <productGroupable type="0"
  5679. />
  5680. </product>
  5681. <product id="SRL2"
  5682. name="SRL2"
  5683. series="SRL"
  5684. latestVersion="1.0.9"
  5685. show = "1" >
  5686. <productMenu id="protocol"
  5687. type="0">
  5688. </productMenu>
  5689. <productMenu id="sip"
  5690. type="1" >
  5691. </productMenu>
  5692. <productMenu id="bluetoothIntercom"
  5693. type="1" >
  5694. </productMenu>
  5695. <productMenu id="intercomSetting"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="phone"
  5699. type="2" >
  5700. </productMenu>
  5701. <productMenu id="fmradio"
  5702. type="3" >
  5703. </productMenu>
  5704. <productMenu id="deviceSetting"
  5705. type="1"
  5706. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5707. </productMenu>
  5708. <productMenu id="quickGuide"
  5709. type="1"
  5710. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5711. size="846KB" >
  5712. </productMenu>
  5713. <productMenu id="userGuide"
  5714. type="1"
  5715. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5716. size="1.18MB" >
  5717. </productMenu>
  5718. <productMenu id="connectGuide"
  5719. type="1"
  5720. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5721. size="1.12MB" >
  5722. </productMenu>
  5723. <productID id="4530"
  5724. />
  5725. <productGroupable type="1"
  5726. />
  5727. </product>
  5728. <product id="Neotec2"
  5729. name="SRL Neotec2"
  5730. series="SRL"
  5731. latestVersion="1.1.5"
  5732. show = "1" >
  5733. <productMenu id="protocol"
  5734. type="0">
  5735. </productMenu>
  5736. <productMenu id="sip"
  5737. type="1" >
  5738. </productMenu>
  5739. <productMenu id="bluetoothIntercom"
  5740. type="1" >
  5741. </productMenu>
  5742. <productMenu id="intercomSetting"
  5743. type="1" >
  5744. </productMenu>
  5745. <productMenu id="phone"
  5746. type="2" >
  5747. </productMenu>
  5748. <productMenu id="fmradio"
  5749. type="3" >
  5750. </productMenu>
  5751. <productMenu id="deviceSetting"
  5752. type="1"
  5753. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5754. </productMenu>
  5755. <productMenu id="quickGuide"
  5756. type="0"
  5757. url=""
  5758. size="796KB" >
  5759. </productMenu>
  5760. <productMenu id="userGuide"
  5761. type="1"
  5762. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5763. size="1.90MB" >
  5764. </productMenu>
  5765. <productMenu id="connectGuide"
  5766. type="1"
  5767. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5768. size="1.12MB" >
  5769. </productMenu>
  5770. <productID id="4510"
  5771. />
  5772. <productGroupable type="1"
  5773. />
  5774. </product>
  5775. <product id="SPIDERST2ANC"
  5776. name="SPIDER ST2 ANC"
  5777. series="SPIDER"
  5778. latestVersion="0.5.1"
  5779. latestVersionVoicePrompt="0.2"
  5780. latestVersionMesh="0.8"
  5781. show = "-1" >
  5782. <productMenu id="protocol"
  5783. type="2" >
  5784. </productMenu>
  5785. <productMenu id="ota"
  5786. type="0" >
  5787. <otaPackages>
  5788. <package
  5789. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5790. size="2945812"
  5791. />
  5792. </otaPackages>
  5793. </productMenu>
  5794. <productMenu id="wa"
  5795. type="0" >
  5796. </productMenu>
  5797. <productMenu id="led"
  5798. type="1" >
  5799. </productMenu>
  5800. <productMenu id="meshIntercom"
  5801. type="30" >
  5802. </productMenu>
  5803. <productMenu id="fmradio"
  5804. type="1" >
  5805. </productMenu>
  5806. <productMenu id="phone"
  5807. type="1" >
  5808. </productMenu>
  5809. <productMenu id="music"
  5810. type="1" >
  5811. </productMenu>
  5812. <productMenu id="musicSharing"
  5813. type="0" >
  5814. </productMenu>
  5815. <productMenu id="deviceSetting"
  5816. type="1"
  5817. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_10.xml" >
  5818. </productMenu>
  5819. <productMenu id="quickGuide"
  5820. type="1"
  5821. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5822. size="1.12MB" >
  5823. </productMenu>
  5824. <productMenu id="userGuide"
  5825. type="1"
  5826. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5827. size="2.0MB" >
  5828. </productMenu>
  5829. <productMenu id="videoGuide"
  5830. type="1"
  5831. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5832. size="3.41MB" >
  5833. </productMenu>
  5834. <productMenu id="volume"
  5835. type="12" >
  5836. </productMenu>
  5837. <productMenu id="battery"
  5838. type="1" >
  5839. </productMenu>
  5840. <productID id="6A00"
  5841. />
  5842. <productGroupable type="0"
  5843. />
  5844. </product>
  5845. <product id="SPIDER_ST1"
  5846. name="SPIDER ST1"
  5847. series="SPIDER"
  5848. latestVersion="2.5.3"
  5849. latestVersionVoicePrompt="1.6"
  5850. show = "1" >
  5851. <productMenu id="protocol"
  5852. type="2" >
  5853. </productMenu>
  5854. <productMenu id="alexa"
  5855. type="0" >
  5856. </productMenu>
  5857. <productMenu id="ota"
  5858. type="2" >
  5859. <productMenuType version="2.1.9"
  5860. type="0"
  5861. />
  5862. <otaPackages>
  5863. <package
  5864. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.3-build0.img"
  5865. size="2945812"
  5866. />
  5867. </otaPackages>
  5868. </productMenu>
  5869. <productMenu id="wa"
  5870. type="0" >
  5871. </productMenu>
  5872. <productMenu id="meshIntercom"
  5873. type="30" >
  5874. <productMenuType version="2.1.1"
  5875. type="20"
  5876. />
  5877. </productMenu>
  5878. <productMenu id="meshIntercom+"
  5879. type="3"
  5880. url="2" >
  5881. <productMenuType version="2.2.9"
  5882. type="2"
  5883. />
  5884. <productMenuURL version="2.1.1"
  5885. url="0"
  5886. />
  5887. </productMenu>
  5888. <productMenu id="waveIntercom"
  5889. type="1" >
  5890. <productMenuType version="2.3.9"
  5891. type="0"
  5892. />
  5893. </productMenu>
  5894. <productMenu id="phone"
  5895. type="1" >
  5896. </productMenu>
  5897. <productMenu id="music"
  5898. type="1" >
  5899. </productMenu>
  5900. <productMenu id="musicSharing"
  5901. type="0" >
  5902. </productMenu>
  5903. <productMenu id="deviceSetting"
  5904. type="1"
  5905. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5906. <productMenuURL version="2.4.9"
  5907. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5908. />
  5909. <productMenuURL version="2.2.2"
  5910. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5911. />
  5912. <productMenuURL version="2.1.1"
  5913. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5914. />
  5915. </productMenu>
  5916. <productMenu id="quickGuide"
  5917. type="0"
  5918. url=""
  5919. size="1.12MB" >
  5920. </productMenu>
  5921. <productMenu id="userGuide"
  5922. type="1"
  5923. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5924. size="2.0MB" >
  5925. </productMenu>
  5926. <productMenu id="videoGuide"
  5927. type="1"
  5928. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5929. size="3.41MB" >
  5930. </productMenu>
  5931. <productMenu id="connectGuide"
  5932. type="1"
  5933. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5934. size="1.12MB" >
  5935. </productMenu>
  5936. <productMenu id="volume"
  5937. type="12" >
  5938. </productMenu>
  5939. <productMenu id="volume+"
  5940. type="2"
  5941. url="0x2000" >
  5942. </productMenu>
  5943. <productMenu id="battery"
  5944. type="1" >
  5945. </productMenu>
  5946. <productID id="6800"
  5947. />
  5948. <productGroupable type="0"
  5949. />
  5950. </product>
  5951. <product id="SPIDER_ST1"
  5952. name="SPIDER ST1"
  5953. series="SPIDER"
  5954. latestVersion="1.2.2"
  5955. show = "-1" >
  5956. <productMenu id="protocol"
  5957. type="2" >
  5958. </productMenu>
  5959. <productMenu id="alexa"
  5960. type="0" >
  5961. </productMenu>
  5962. <productMenu id="ota"
  5963. type="0" >
  5964. </productMenu>
  5965. <productMenu id="wa"
  5966. type="0" >
  5967. </productMenu>
  5968. <productMenu id="meshIntercom"
  5969. type="20" >
  5970. </productMenu>
  5971. <productMenu id="phone"
  5972. type="1" >
  5973. </productMenu>
  5974. <productMenu id="music"
  5975. type="1" >
  5976. </productMenu>
  5977. <productMenu id="deviceSetting"
  5978. type="1"
  5979. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5980. </productMenu>
  5981. <productMenu id="quickGuide"
  5982. type="0"
  5983. url=""
  5984. size="1.12MB" >
  5985. </productMenu>
  5986. <productMenu id="userGuide"
  5987. type="1"
  5988. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5989. size="2.0MB" >
  5990. </productMenu>
  5991. <productMenu id="videoGuide"
  5992. type="1"
  5993. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5994. size="3.41MB" >
  5995. </productMenu>
  5996. <productMenu id="volume"
  5997. type="13" >
  5998. <productMenuType version="1.1.6"
  5999. type="14"/>
  6000. </productMenu>
  6001. <productMenu id="battery"
  6002. type="1" >
  6003. </productMenu>
  6004. <productID id="6510"
  6005. />
  6006. <productGroupable type="0"
  6007. />
  6008. </product>
  6009. <product id="SPIDER_RT1"
  6010. name="SPIDER RT1"
  6011. series="SPIDER"
  6012. latestVersion="2.5.3"
  6013. latestVersionVoicePrompt="1.6"
  6014. show = "1" >
  6015. <productMenu id="protocol"
  6016. type="2" >
  6017. </productMenu>
  6018. <productMenu id="alexa"
  6019. type="0" >
  6020. </productMenu>
  6021. <productMenu id="ota"
  6022. type="2" >
  6023. <productMenuType version="2.1.9"
  6024. type="0"
  6025. />
  6026. <otaPackages>
  6027. <package
  6028. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.3-build0.img"
  6029. size="2945812"
  6030. />
  6031. </otaPackages>
  6032. </productMenu>
  6033. <productMenu id="wa"
  6034. type="0" >
  6035. </productMenu>
  6036. <productMenu id="meshIntercom"
  6037. type="30" >
  6038. <productMenuType version="2.1.1"
  6039. type="20"
  6040. />
  6041. </productMenu>
  6042. <productMenu id="meshIntercom+"
  6043. type="3"
  6044. url="2" >
  6045. <productMenuType version="2.2.9"
  6046. type="2"
  6047. />
  6048. <productMenuURL version="2.1.1"
  6049. url="0"
  6050. />
  6051. </productMenu>
  6052. <productMenu id="waveIntercom"
  6053. type="1" >
  6054. <productMenuType version="2.3.9"
  6055. type="0"
  6056. />
  6057. </productMenu>
  6058. <productMenu id="phone"
  6059. type="1" >
  6060. </productMenu>
  6061. <productMenu id="music"
  6062. type="1" >
  6063. </productMenu>
  6064. <productMenu id="musicSharing"
  6065. type="0" >
  6066. </productMenu>
  6067. <productMenu id="deviceSetting"
  6068. type="1"
  6069. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  6070. <productMenuURL version="2.4.9"
  6071. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  6072. />
  6073. <productMenuURL version="2.2.2"
  6074. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  6075. />
  6076. <productMenuURL version="2.1.1"
  6077. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  6078. />
  6079. </productMenu>
  6080. <productMenu id="quickGuide"
  6081. type="0"
  6082. url=""
  6083. size="1.12MB" >
  6084. </productMenu>
  6085. <productMenu id="userGuide"
  6086. type="1"
  6087. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  6088. size="2.0MB" >
  6089. </productMenu>
  6090. <productMenu id="videoGuide"
  6091. type="1"
  6092. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6093. size="3.41MB" >
  6094. </productMenu>
  6095. <productMenu id="connectGuide"
  6096. type="1"
  6097. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  6098. size="1.12MB" >
  6099. </productMenu>
  6100. <productMenu id="volume"
  6101. type="12" >
  6102. </productMenu>
  6103. <productMenu id="volume+"
  6104. type="2"
  6105. url="0x2000" >
  6106. </productMenu>
  6107. <productMenu id="battery"
  6108. type="1" >
  6109. </productMenu>
  6110. <productID id="6810"
  6111. />
  6112. <productGroupable type="0"
  6113. />
  6114. </product>
  6115. <product id="SPIDER_RT1"
  6116. name="SPIDER RT1"
  6117. series="SPIDER"
  6118. latestVersion="1.2.2"
  6119. show = "-1" >
  6120. <productMenu id="protocol"
  6121. type="2" >
  6122. </productMenu>
  6123. <productMenu id="alexa"
  6124. type="0" >
  6125. </productMenu>
  6126. <productMenu id="ota"
  6127. type="0" >
  6128. </productMenu>
  6129. <productMenu id="wa"
  6130. type="0" >
  6131. </productMenu>
  6132. <productMenu id="meshIntercom"
  6133. type="20" >
  6134. </productMenu>
  6135. <productMenu id="phone"
  6136. type="1" >
  6137. </productMenu>
  6138. <productMenu id="music"
  6139. type="1" >
  6140. </productMenu>
  6141. <productMenu id="deviceSetting"
  6142. type="1"
  6143. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6144. </productMenu>
  6145. <productMenu id="quickGuide"
  6146. type="0"
  6147. url=""
  6148. size="1.32MB" >
  6149. </productMenu>
  6150. <productMenu id="userGuide"
  6151. type="1"
  6152. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6153. size="1.79MB" >
  6154. </productMenu>
  6155. <productMenu id="videoGuide"
  6156. type="1"
  6157. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6158. size="3.41MB" >
  6159. </productMenu>
  6160. <productMenu id="volume"
  6161. type="13" >
  6162. <productMenuType version="1.1.6"
  6163. type="14"/>
  6164. </productMenu>
  6165. <productMenu id="battery"
  6166. type="1" >
  6167. </productMenu>
  6168. <productID id="6500"
  6169. />
  6170. <productGroupable type="0"
  6171. />
  6172. </product>
  6173. <product id="30K"
  6174. name="30K"
  6175. series="30"
  6176. latestVersion="4.5.1"
  6177. show = "1" >
  6178. <productMenu id="protocol"
  6179. type="2" >
  6180. </productMenu>
  6181. <productMenu id="alexa"
  6182. type="0" >
  6183. </productMenu>
  6184. <productMenu id="wa"
  6185. type="1" >
  6186. </productMenu>
  6187. <productMenu id="sip"
  6188. type="1" >
  6189. </productMenu>
  6190. <productMenu id="meshIntercom"
  6191. type="30" >
  6192. <productMenuType version="4.0.4"
  6193. type="20"
  6194. />
  6195. </productMenu>
  6196. <productMenu id="meshIntercom+"
  6197. type="3"
  6198. url="2" >
  6199. <productMenuType version="4.3.9"
  6200. type="2"
  6201. />
  6202. <productMenuURL version="4.0.4"
  6203. url="0"
  6204. />
  6205. </productMenu>
  6206. <productMenu id="waveIntercom"
  6207. type="1" >
  6208. <productMenuType version="4.4.9"
  6209. type="0"
  6210. />
  6211. </productMenu>
  6212. <productMenu id="bluetoothIntercom"
  6213. type="1" >
  6214. </productMenu>
  6215. <productMenu id="phone"
  6216. type="1" >
  6217. </productMenu>
  6218. <productMenu id="music"
  6219. type="1" >
  6220. </productMenu>
  6221. <productMenu id="fmradio"
  6222. type="1" >
  6223. </productMenu>
  6224. <productMenu id="deviceSetting"
  6225. type="1"
  6226. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6227. <productMenuURL version="4.3"
  6228. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6229. />
  6230. <productMenuURL version="4.2"
  6231. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6232. />
  6233. <productMenuURL version="4.0.4"
  6234. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6235. />
  6236. </productMenu>
  6237. <productMenu id="quickGuide"
  6238. type="0"
  6239. url=""
  6240. size="934KB" >
  6241. </productMenu>
  6242. <productMenu id="userGuide"
  6243. type="1"
  6244. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6245. size="1.14MB" >
  6246. </productMenu>
  6247. <productMenu id="connectGuide"
  6248. type="1"
  6249. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6250. size="1.12MB" >
  6251. </productMenu>
  6252. <productMenu id="volume"
  6253. type="11" >
  6254. </productMenu>
  6255. <productMenu id="battery"
  6256. type="1" >
  6257. </productMenu>
  6258. <productID id="3211"
  6259. />
  6260. <productGroupable type="0"
  6261. />
  6262. </product>
  6263. <product id="30K"
  6264. name="30K"
  6265. series="30"
  6266. latestVersion="3.5"
  6267. show = "-1" >
  6268. <productMenu id="protocol"
  6269. type="1"
  6270. url="0">
  6271. </productMenu>
  6272. <productMenu id="wa"
  6273. type="7" >
  6274. </productMenu>
  6275. <productMenu id="sip"
  6276. type="1" >
  6277. </productMenu>
  6278. <productMenu id="meshIntercom"
  6279. type="20" >
  6280. <productMenuType version="2.9.9"
  6281. type="10"
  6282. />
  6283. </productMenu>
  6284. <productMenu id="meshIntercom+"
  6285. type="3"
  6286. url="2" >
  6287. <productMenuType version="3.4.9"
  6288. type="2"
  6289. />
  6290. <productMenuType version="2.9.9"
  6291. type="1"
  6292. />
  6293. <productMenuURL version="3.3.1"
  6294. url="0"
  6295. />
  6296. </productMenu>
  6297. <productMenu id="bluetoothIntercom"
  6298. type="1" >
  6299. </productMenu>
  6300. <productMenu id="phone"
  6301. type="1" >
  6302. </productMenu>
  6303. <productMenu id="music"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="fmradio"
  6307. type="1" >
  6308. </productMenu>
  6309. <productMenu id="deviceSetting"
  6310. type="1"
  6311. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6312. <productMenuURL version="3.4.9"
  6313. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6314. />
  6315. <productMenuURL version="3.3.1"
  6316. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6317. />
  6318. <productMenuURL version="3.0.1"
  6319. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6320. />
  6321. <productMenuURL version="2.3.1"
  6322. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6323. />
  6324. <productMenuURL version="2.0"
  6325. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6326. />
  6327. <productMenuURL version="1.0.3"
  6328. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6329. />
  6330. </productMenu>
  6331. <productMenu id="quickGuide"
  6332. type="0"
  6333. url=""
  6334. size="1.06MB" >
  6335. </productMenu>
  6336. <productMenu id="userGuide"
  6337. type="1"
  6338. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6339. size="3.15MB" >
  6340. </productMenu>
  6341. <productMenu id="volume"
  6342. type="1" >
  6343. </productMenu>
  6344. <productID id="3110"
  6345. />
  6346. <productGroupable type="0"
  6347. />
  6348. </product>
  6349. <product id="FURY"
  6350. name="FURY"
  6351. series="Helmet"
  6352. latestVersion="1.0"
  6353. show = "-1" >
  6354. <productMenu id="protocol"
  6355. type="2" >
  6356. </productMenu>
  6357. <productMenu id="alexa"
  6358. type="0" >
  6359. </productMenu>
  6360. <productMenu id="ota"
  6361. type="0" >
  6362. </productMenu>
  6363. <productMenu id="wa"
  6364. type="0" >
  6365. </productMenu>
  6366. <productMenu id="meshIntercom"
  6367. type="20" >
  6368. </productMenu>
  6369. <productMenu id="phone"
  6370. type="1" >
  6371. </productMenu>
  6372. <productMenu id="music"
  6373. type="1" >
  6374. </productMenu>
  6375. <productMenu id="fmradio"
  6376. type="1" >
  6377. </productMenu>
  6378. <productMenu id="deviceSetting"
  6379. type="1"
  6380. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6381. </productMenu>
  6382. <productMenu id="quickGuide"
  6383. type="1"
  6384. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6385. size="1.12MB" >
  6386. </productMenu>
  6387. <productMenu id="userGuide"
  6388. type="1"
  6389. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6390. size="2.0MB" >
  6391. </productMenu>
  6392. <productMenu id="volume"
  6393. type="13" >
  6394. </productMenu>
  6395. <productMenu id="battery"
  6396. type="1" >
  6397. </productMenu>
  6398. <productID id="5552"
  6399. />
  6400. <productGroupable type="0"
  6401. />
  6402. </product>
  6403. <product id="MomentumM"
  6404. name="Momentum EVO"
  6405. series="Helmet"
  6406. latestVersion="2.1.2"
  6407. show = "1" >
  6408. <productMenu id="protocol"
  6409. type="1"
  6410. url="0">
  6411. </productMenu>
  6412. <productMenu id="wa"
  6413. type="3" >
  6414. </productMenu>
  6415. <productMenu id="sip"
  6416. type="1" >
  6417. </productMenu>
  6418. <productMenu id="meshIntercom"
  6419. type="20" >
  6420. <productMenuType version="1.9.9"
  6421. type="10"
  6422. />
  6423. </productMenu>
  6424. <productMenu id="bluetoothIntercom"
  6425. type="1" >
  6426. </productMenu>
  6427. <productMenu id="phone"
  6428. type="1" >
  6429. </productMenu>
  6430. <productMenu id="music"
  6431. type="1" >
  6432. </productMenu>
  6433. <productMenu id="fmradio"
  6434. type="1" >
  6435. </productMenu>
  6436. <productMenu id="deviceSetting"
  6437. type="1"
  6438. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6439. <productMenuURL version="1.0.1"
  6440. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6441. />
  6442. </productMenu>
  6443. <productMenu id="quickGuide"
  6444. type="1"
  6445. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6446. size="1.06MB" >
  6447. </productMenu>
  6448. <productMenu id="userGuide"
  6449. type="1"
  6450. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6451. size="3.15MB" >
  6452. </productMenu>
  6453. <productMenu id="connectGuide"
  6454. type="1"
  6455. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6456. size="1.12MB" >
  6457. </productMenu>
  6458. <productMenu id="volume"
  6459. type="2" >
  6460. </productMenu>
  6461. <productID id="3116"
  6462. />
  6463. <productGroupable type="0"
  6464. />
  6465. </product>
  6466. <product id="Momentum"
  6467. name="Momentum"
  6468. series="Helmet"
  6469. latestVersion="1.0.9"
  6470. show = "1" >
  6471. <productMenu id="protocol"
  6472. type="0">
  6473. </productMenu>
  6474. <productMenu id="sip"
  6475. type="1" >
  6476. </productMenu>
  6477. <productMenu id="bluetoothIntercom"
  6478. type="1" >
  6479. </productMenu>
  6480. <productMenu id="intercomSetting"
  6481. type="1" >
  6482. </productMenu>
  6483. <productMenu id="phone"
  6484. type="2" >
  6485. </productMenu>
  6486. <productMenu id="fmradio"
  6487. type="3" >
  6488. </productMenu>
  6489. <productMenu id="deviceSetting"
  6490. type="1"
  6491. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6492. </productMenu>
  6493. <productMenu id="quickGuide"
  6494. type="1"
  6495. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6496. size="796KB" >
  6497. </productMenu>
  6498. <productMenu id="userGuide"
  6499. type="1"
  6500. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6501. size="1.90MB" >
  6502. </productMenu>
  6503. <productMenu id="connectGuide"
  6504. type="1"
  6505. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6506. size="1.12MB" >
  6507. </productMenu>
  6508. <productID id="4310"
  6509. />
  6510. <productGroupable type="1"
  6511. />
  6512. </product>
  6513. <product id="Momentum_Pro"
  6514. name="Momentum Pro"
  6515. series="Helmet"
  6516. latestVersion="1.0.6"
  6517. show = "1" >
  6518. <productMenu id="protocol"
  6519. type="0">
  6520. </productMenu>
  6521. <productMenu id="sip"
  6522. type="1" >
  6523. </productMenu>
  6524. <productMenu id="bluetoothIntercom"
  6525. type="1" >
  6526. </productMenu>
  6527. <productMenu id="intercomSetting"
  6528. type="1" >
  6529. </productMenu>
  6530. <productMenu id="phone"
  6531. type="2" >
  6532. </productMenu>
  6533. <productMenu id="fmradio"
  6534. type="3" >
  6535. </productMenu>
  6536. <productMenu id="deviceSetting"
  6537. type="1"
  6538. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6539. </productMenu>
  6540. <productMenu id="quickGuide"
  6541. type="1"
  6542. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6543. size="796KB" >
  6544. </productMenu>
  6545. <productMenu id="userGuide"
  6546. type="1"
  6547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6548. size="1.90MB" >
  6549. </productMenu>
  6550. <productMenu id="connectGuide"
  6551. type="1"
  6552. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6553. size="1.12MB" >
  6554. </productMenu>
  6555. <productID id="4330"
  6556. />
  6557. <productGroupable type="1"
  6558. />
  6559. </product>
  6560. <product id="Momentum_INC"
  6561. name="Momentum INC"
  6562. series="Helmet"
  6563. latestVersion="1.0.7"
  6564. show = "1" >
  6565. <productMenu id="protocol"
  6566. type="0">
  6567. </productMenu>
  6568. <productMenu id="sip"
  6569. type="1" >
  6570. </productMenu>
  6571. <productMenu id="bluetoothIntercom"
  6572. type="1" >
  6573. </productMenu>
  6574. <productMenu id="intercomSetting"
  6575. type="1" >
  6576. </productMenu>
  6577. <productMenu id="phone"
  6578. type="2" >
  6579. </productMenu>
  6580. <productMenu id="fmradio"
  6581. type="3" >
  6582. </productMenu>
  6583. <productMenu id="deviceSetting"
  6584. type="1"
  6585. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6586. </productMenu>
  6587. <productMenu id="quickGuide"
  6588. type="1"
  6589. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6590. size="794KB" >
  6591. </productMenu>
  6592. <productMenu id="userGuide"
  6593. type="1"
  6594. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6595. size="1.53MB" >
  6596. </productMenu>
  6597. <productMenu id="connectGuide"
  6598. type="1"
  6599. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6600. size="1.12MB" >
  6601. </productMenu>
  6602. <productID id="4410"
  6603. />
  6604. <productGroupable type="1"
  6605. />
  6606. </product>
  6607. <product id="Momentum_INCP"
  6608. name="Momentum INC Pro"
  6609. series="Helmet"
  6610. latestVersion="1.0.4"
  6611. show = "1" >
  6612. <productMenu id="protocol"
  6613. type="0">
  6614. </productMenu>
  6615. <productMenu id="sip"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="bluetoothIntercom"
  6619. type="1" >
  6620. </productMenu>
  6621. <productMenu id="intercomSetting"
  6622. type="1" >
  6623. </productMenu>
  6624. <productMenu id="phone"
  6625. type="2" >
  6626. </productMenu>
  6627. <productMenu id="fmradio"
  6628. type="3" >
  6629. </productMenu>
  6630. <productMenu id="deviceSetting"
  6631. type="1"
  6632. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6633. </productMenu>
  6634. <productMenu id="quickGuide"
  6635. type="1"
  6636. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6637. size="794KB" >
  6638. </productMenu>
  6639. <productMenu id="userGuide"
  6640. type="1"
  6641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6642. size="1.53MB" >
  6643. </productMenu>
  6644. <productMenu id="connectGuide"
  6645. type="1"
  6646. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6647. size="1.12MB" >
  6648. </productMenu>
  6649. <productID id="4430"
  6650. />
  6651. <productGroupable type="1"
  6652. />
  6653. </product>
  6654. <product id="Momentum_Lite"
  6655. name="Momentum Lite"
  6656. series="Helmet"
  6657. latestVersion="2.0.3"
  6658. show = "1" >
  6659. <productMenu id="protocol"
  6660. type="0">
  6661. </productMenu>
  6662. <productMenu id="sip"
  6663. type="1" >
  6664. </productMenu>
  6665. <productMenu id="bluetoothIntercom"
  6666. type="1" >
  6667. </productMenu>
  6668. <productMenu id="phone"
  6669. type="2" >
  6670. </productMenu>
  6671. <productMenu id="fmradio"
  6672. type="3" >
  6673. </productMenu>
  6674. <productMenu id="deviceSetting"
  6675. type="1"
  6676. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6677. <productMenuURL version="1.1"
  6678. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6679. />
  6680. </productMenu>
  6681. <productMenu id="quickGuide"
  6682. type="1"
  6683. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6684. size="790KB" >
  6685. </productMenu>
  6686. <productMenu id="userGuide"
  6687. type="1"
  6688. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6689. size="1.42MB" >
  6690. </productMenu>
  6691. <productMenu id="connectGuide"
  6692. type="1"
  6693. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6694. size="1.12MB" >
  6695. </productMenu>
  6696. <productID id="5526"
  6697. />
  6698. <productGroupable type="0"
  6699. />
  6700. </product>
  6701. <product id="OUTRUSHM"
  6702. name="OUTRUSH M"
  6703. series="Helmet"
  6704. latestVersion="1.0"
  6705. show = "-1" >
  6706. <productMenu id="protocol"
  6707. type="2" >
  6708. </productMenu>
  6709. <productMenu id="alexa"
  6710. type="0" >
  6711. </productMenu>
  6712. <productMenu id="ota"
  6713. type="0" >
  6714. </productMenu>
  6715. <productMenu id="wa"
  6716. type="0" >
  6717. </productMenu>
  6718. <productMenu id="meshIntercom"
  6719. type="30" >
  6720. </productMenu>
  6721. <productMenu id="phone"
  6722. type="1" >
  6723. </productMenu>
  6724. <productMenu id="music"
  6725. type="1" >
  6726. </productMenu>
  6727. <productMenu id="fmradio"
  6728. type="1" >
  6729. </productMenu>
  6730. <productMenu id="deviceSetting"
  6731. type="1"
  6732. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6733. </productMenu>
  6734. <productMenu id="quickGuide"
  6735. type="1"
  6736. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6737. size="1.12MB" >
  6738. </productMenu>
  6739. <productMenu id="userGuide"
  6740. type="1"
  6741. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6742. size="2.0MB" >
  6743. </productMenu>
  6744. <productMenu id="volume"
  6745. type="13" >
  6746. </productMenu>
  6747. <productMenu id="battery"
  6748. type="1" >
  6749. </productMenu>
  6750. <productID id="5600"
  6751. />
  6752. <productGroupable type="0"
  6753. />
  6754. </product>
  6755. <product id="ProRideEVO"
  6756. name="ProRide EVO"
  6757. series="Helmet"
  6758. latestVersion="1.1.2"
  6759. show = "1" >
  6760. <productMenu id="protocol"
  6761. type="0">
  6762. </productMenu>
  6763. <productMenu id="sip"
  6764. type="1" >
  6765. </productMenu>
  6766. <productMenu id="bluetoothIntercom"
  6767. type="1" >
  6768. </productMenu>
  6769. <productMenu id="phone"
  6770. type="2" >
  6771. </productMenu>
  6772. <productMenu id="fmradio"
  6773. type="3" >
  6774. </productMenu>
  6775. <productMenu id="deviceSetting"
  6776. type="1"
  6777. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6778. </productMenu>
  6779. <productMenu id="userGuide"
  6780. type="1"
  6781. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6782. size="778KB" >
  6783. </productMenu>
  6784. <productMenu id="connectGuide"
  6785. type="1"
  6786. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6787. size="1.12MB" >
  6788. </productMenu>
  6789. <productID id="5426"
  6790. />
  6791. <productGroupable type="0"
  6792. />
  6793. </product>
  6794. <product id="OUTRUSHR"
  6795. name="OUTRUSH R"
  6796. series="Helmet"
  6797. latestVersion="2.1"
  6798. show = "1" >
  6799. <productMenu id="protocol"
  6800. type="3" >
  6801. </productMenu>
  6802. <productMenu id="sip"
  6803. type="1" >
  6804. </productMenu>
  6805. <productMenu id="bluetoothIntercom"
  6806. type="1" >
  6807. </productMenu>
  6808. <productMenu id="phone"
  6809. type="1" >
  6810. </productMenu>
  6811. <productMenu id="fmradio"
  6812. type="0" >
  6813. </productMenu>
  6814. <productMenu id="deviceSetting"
  6815. type="1"
  6816. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6817. </productMenu>
  6818. <productMenu id="userGuide"
  6819. type="1"
  6820. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6821. size="1.14MB" >
  6822. </productMenu>
  6823. <productMenu id="connectGuide"
  6824. type="1"
  6825. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6826. size="1.12MB" >
  6827. </productMenu>
  6828. <productID id="5440"
  6829. />
  6830. <productGroupable type="0"
  6831. />
  6832. </product>
  6833. <product id="OUTRUSHR"
  6834. name="OUTRUSH R"
  6835. series="Helmet"
  6836. latestVersion="1.1.4"
  6837. show = "-1" >
  6838. <productMenu id="protocol"
  6839. type="0">
  6840. </productMenu>
  6841. <productMenu id="sip"
  6842. type="1" >
  6843. </productMenu>
  6844. <productMenu id="bluetoothIntercom"
  6845. type="1" >
  6846. </productMenu>
  6847. <productMenu id="phone"
  6848. type="2" >
  6849. </productMenu>
  6850. <productMenu id="fmradio"
  6851. type="3" >
  6852. </productMenu>
  6853. <productMenu id="deviceSetting"
  6854. type="1"
  6855. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6856. </productMenu>
  6857. <productMenu id="userGuide"
  6858. type="1"
  6859. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6860. size="660KB" >
  6861. </productMenu>
  6862. <productMenu id="connectGuide"
  6863. type="1"
  6864. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6865. size="1.12MB" >
  6866. </productMenu>
  6867. <productID id="5424"
  6868. />
  6869. <productGroupable type="0"
  6870. />
  6871. </product>
  6872. <product id="OUTSTARS"
  6873. name="OUTSTAR S"
  6874. series="Helmet"
  6875. latestVersion="2.0.1"
  6876. show = "-1" >
  6877. <productMenu id="protocol"
  6878. type="3" >
  6879. </productMenu>
  6880. <productMenu id="sip"
  6881. type="1" >
  6882. </productMenu>
  6883. <productMenu id="bluetoothIntercom"
  6884. type="1" >
  6885. </productMenu>
  6886. <productMenu id="phone"
  6887. type="1" >
  6888. </productMenu>
  6889. <productMenu id="fmradio"
  6890. type="0" >
  6891. </productMenu>
  6892. <productMenu id="deviceSetting"
  6893. type="1"
  6894. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6895. </productMenu>
  6896. <productMenu id="userGuide"
  6897. type="0"
  6898. url=""
  6899. size="1.14MB" >
  6900. </productMenu>
  6901. <productID id="5443"
  6902. />
  6903. <productGroupable type="0"
  6904. />
  6905. </product>
  6906. <product id="OUTSTARS"
  6907. name="OUTSTAR S"
  6908. series="Helmet"
  6909. latestVersion="1.1.4"
  6910. show = "1" >
  6911. <productMenu id="protocol"
  6912. type="0">
  6913. </productMenu>
  6914. <productMenu id="sip"
  6915. type="1" >
  6916. </productMenu>
  6917. <productMenu id="bluetoothIntercom"
  6918. type="1" >
  6919. </productMenu>
  6920. <productMenu id="phone"
  6921. type="2" >
  6922. </productMenu>
  6923. <productMenu id="fmradio"
  6924. type="3" >
  6925. </productMenu>
  6926. <productMenu id="deviceSetting"
  6927. type="1"
  6928. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6929. </productMenu>
  6930. <productMenu id="quickGuide"
  6931. type="1"
  6932. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6933. size="643KB" >
  6934. </productMenu>
  6935. <productMenu id="userGuide"
  6936. type="1"
  6937. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6938. size="1.15MB" >
  6939. </productMenu>
  6940. <productMenu id="connectGuide"
  6941. type="1"
  6942. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6943. size="1.12MB" >
  6944. </productMenu>
  6945. <productID id="5428"
  6946. />
  6947. <productGroupable type="0"
  6948. />
  6949. </product>
  6950. <product id="OUTRIDE"
  6951. name="OUTRIDE"
  6952. series="Helmet"
  6953. latestVersion="1.0.1"
  6954. show = "1" >
  6955. <productMenu id="protocol"
  6956. type="0">
  6957. </productMenu>
  6958. <productMenu id="sip"
  6959. type="1" >
  6960. </productMenu>
  6961. <productMenu id="bluetoothIntercom"
  6962. type="1" >
  6963. </productMenu>
  6964. <productMenu id="phone"
  6965. type="2" >
  6966. </productMenu>
  6967. <productMenu id="fmradio"
  6968. type="3" >
  6969. </productMenu>
  6970. <productMenu id="deviceSetting"
  6971. type="1"
  6972. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6973. </productMenu>
  6974. <productMenu id="quickGuide"
  6975. type="1"
  6976. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6977. size="643KB" >
  6978. </productMenu>
  6979. <productMenu id="userGuide"
  6980. type="1"
  6981. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6982. size="660KB" >
  6983. </productMenu>
  6984. <productMenu id="connectGuide"
  6985. type="1"
  6986. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6987. size="1.12MB" >
  6988. </productMenu>
  6989. <productID id="5432"
  6990. />
  6991. <productGroupable type="0"
  6992. />
  6993. </product>
  6994. <product id="OUTFORCE"
  6995. name="OUTFORCE"
  6996. series="Helmet"
  6997. latestVersion="1.0.1"
  6998. show = "1" >
  6999. <productMenu id="protocol"
  7000. type="0">
  7001. </productMenu>
  7002. <productMenu id="sip"
  7003. type="1" >
  7004. </productMenu>
  7005. <productMenu id="bluetoothIntercom"
  7006. type="1" >
  7007. </productMenu>
  7008. <productMenu id="phone"
  7009. type="2" >
  7010. </productMenu>
  7011. <productMenu id="fmradio"
  7012. type="3" >
  7013. </productMenu>
  7014. <productMenu id="deviceSetting"
  7015. type="1"
  7016. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  7017. </productMenu>
  7018. <productMenu id="quickGuide"
  7019. type="1"
  7020. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7021. size="643KB" >
  7022. </productMenu>
  7023. <productMenu id="userGuide"
  7024. type="1"
  7025. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  7026. size="660KB" >
  7027. </productMenu>
  7028. <productMenu id="connectGuide"
  7029. type="1"
  7030. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  7031. size="1.12MB" >
  7032. </productMenu>
  7033. <productID id="5430"
  7034. />
  7035. <productGroupable type="0"
  7036. />
  7037. </product>
  7038. <product id="Rumba"
  7039. name="Rumba"
  7040. series="30"
  7041. latestVersion="2.0"
  7042. show = "-1" >
  7043. <productMenu id="protocol"
  7044. type="3" >
  7045. </productMenu>
  7046. <productMenu id="sip"
  7047. type="1" >
  7048. </productMenu>
  7049. <productMenu id="bluetoothIntercom"
  7050. type="1" >
  7051. </productMenu>
  7052. <productMenu id="deviceSetting"
  7053. type="1"
  7054. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  7055. </productMenu>
  7056. <productMenu id="quickGuide"
  7057. type="1"
  7058. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  7059. size="344KB" >
  7060. </productMenu>
  7061. <productMenu id="userGuide"
  7062. type="1"
  7063. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  7064. size="1.14MB" >
  7065. </productMenu>
  7066. <productID id="6322"
  7067. />
  7068. <productGroupable type="0"
  7069. />
  7070. </product>
  7071. <product id="Savage"
  7072. name="Savage"
  7073. series="Helmet"
  7074. latestVersion="1.2.2"
  7075. show = "1" >
  7076. <productMenu id="protocol"
  7077. type="0">
  7078. </productMenu>
  7079. <productMenu id="sip"
  7080. type="1" >
  7081. </productMenu>
  7082. <productMenu id="bluetoothIntercom"
  7083. type="1" >
  7084. </productMenu>
  7085. <productMenu id="phone"
  7086. type="2" >
  7087. </productMenu>
  7088. <productMenu id="fmradio"
  7089. type="3" >
  7090. </productMenu>
  7091. <productMenu id="deviceSetting"
  7092. type="1"
  7093. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  7094. <productMenuURL version="1.9"
  7095. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  7096. />
  7097. <productMenuURL version="1.1"
  7098. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  7099. />
  7100. </productMenu>
  7101. <productMenu id="quickGuide"
  7102. type="1"
  7103. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  7104. size="796KB" >
  7105. </productMenu>
  7106. <productMenu id="userGuide"
  7107. type="1"
  7108. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7109. size="910KB" >
  7110. </productMenu>
  7111. <productMenu id="connectGuide"
  7112. type="1"
  7113. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7114. size="1.12MB" >
  7115. </productMenu>
  7116. <productID id="5550"
  7117. />
  7118. <productGroupable type="0"
  7119. />
  7120. </product>
  7121. <product id="RECON"
  7122. name="RECON"
  7123. series="Helmet"
  7124. latestVersion="1.0"
  7125. latestVersionVoicePrompt="1.8"
  7126. show = "-1" >
  7127. <productMenu id="protocol"
  7128. type="2" >
  7129. </productMenu>
  7130. <productMenu id="ota"
  7131. type="2" >
  7132. <otaLanguages>
  7133. <otaLanguage
  7134. id="0"
  7135. name="English"
  7136. package="0"
  7137. />
  7138. <otaLanguage
  7139. id="0"
  7140. name="French"
  7141. package="1"
  7142. />
  7143. <otaLanguage
  7144. id="0"
  7145. name="Spanish"
  7146. package="2"
  7147. />
  7148. <otaLanguage
  7149. id="0"
  7150. name="Italian"
  7151. package="3"
  7152. />
  7153. <otaLanguage
  7154. id="0"
  7155. name="German"
  7156. package="4"
  7157. />
  7158. <otaLanguage
  7159. id="0"
  7160. name="Dutch"
  7161. package="5"
  7162. />
  7163. <otaLanguage
  7164. id="0"
  7165. name="Russian"
  7166. package="6"
  7167. />
  7168. <otaLanguage
  7169. id="0"
  7170. name="Chinese"
  7171. package="7"
  7172. />
  7173. <otaLanguage
  7174. id="0"
  7175. name="Korean"
  7176. package="8"
  7177. />
  7178. <otaLanguage
  7179. id="0"
  7180. name="Japanese"
  7181. package="9"
  7182. />
  7183. <otaLanguage
  7184. id="0"
  7185. name="Finnish"
  7186. package="10"
  7187. />
  7188. <otaLanguage
  7189. id="0"
  7190. name="Polish"
  7191. package="11"
  7192. />
  7193. </otaLanguages>
  7194. <otaPackages>
  7195. <package
  7196. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4.img"
  7197. size="5183988"
  7198. />
  7199. <package
  7200. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fr-FR.img"
  7201. size="5183988"
  7202. />
  7203. <package
  7204. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-es-ES.img"
  7205. size="5183988"
  7206. />
  7207. <package
  7208. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-it-IT.img"
  7209. size="5183988"
  7210. />
  7211. <package
  7212. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-de-DE.img"
  7213. size="5183988"
  7214. />
  7215. <package
  7216. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-nl-NL.img"
  7217. size="5183988"
  7218. />
  7219. <package
  7220. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ru-RU.img"
  7221. size="5183988"
  7222. />
  7223. <package
  7224. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-cmn-CN.img"
  7225. size="5183988"
  7226. />
  7227. <package
  7228. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ko-KR.img"
  7229. size="5183988"
  7230. />
  7231. <package
  7232. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-ja-JP.img"
  7233. size="5183988"
  7234. />
  7235. <package
  7236. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-fi-FI.img"
  7237. size="5183988"
  7238. />
  7239. <package
  7240. url="https://api.sena.com/support/OTA/Motorcycles/RECON/RECON-v1.0-build4-pl-PL.img"
  7241. size="5183988"
  7242. />
  7243. </otaPackages>
  7244. </productMenu>
  7245. <productMenu id="wa"
  7246. type="0" >
  7247. </productMenu>
  7248. <productMenu id="led"
  7249. type="5" >
  7250. </productMenu>
  7251. <productMenu id="led+"
  7252. type="2"
  7253. url="1" >
  7254. </productMenu>
  7255. <productMenu id="meshIntercom+"
  7256. type="3"
  7257. url="2" >
  7258. </productMenu>
  7259. <productMenu id="waveIntercom"
  7260. type="1" >
  7261. </productMenu>
  7262. <productMenu id="fmradio"
  7263. type="0" >
  7264. </productMenu>
  7265. <productMenu id="phone"
  7266. type="1" >
  7267. </productMenu>
  7268. <productMenu id="music"
  7269. type="1" >
  7270. </productMenu>
  7271. <productMenu id="musicSharing"
  7272. type="0" >
  7273. </productMenu>
  7274. <productMenu id="deviceSetting"
  7275. type="1"
  7276. url="https://api.sena.com/support/SenaNeoApp/RECON/NS_RECON.xml" >
  7277. </productMenu>
  7278. <productMenu id="quickGuide"
  7279. type="0"
  7280. url=""
  7281. size="1.12MB" >
  7282. </productMenu>
  7283. <productMenu id="userGuide"
  7284. type="1"
  7285. url=""
  7286. size="2.28MB" >
  7287. </productMenu>
  7288. <productMenu id="videoGuide"
  7289. type="0"
  7290. url=""
  7291. size="3.41MB" >
  7292. </productMenu>
  7293. <productMenu id="volume"
  7294. type="16" >
  7295. </productMenu>
  7296. <productMenu id="volume+"
  7297. type="2"
  7298. url="0x6004" >
  7299. </productMenu>
  7300. <productMenu id="battery"
  7301. type="1" >
  7302. </productMenu>
  7303. <productID id="6A1D"
  7304. />
  7305. <productGroupable type="0"
  7306. />
  7307. </product>
  7308. <product id="SPECTER"
  7309. name="SPECTER"
  7310. series="Helmet"
  7311. latestVersion="1.0.9"
  7312. latestVersionVoicePrompt="1.7"
  7313. show = "1" >
  7314. <productMenu id="protocol"
  7315. type="2" >
  7316. </productMenu>
  7317. <productMenu id="ota"
  7318. type="2" >
  7319. <otaLanguages>
  7320. <otaLanguage
  7321. id="0"
  7322. name="English"
  7323. package="0"
  7324. />
  7325. <otaLanguage
  7326. id="0"
  7327. name="French"
  7328. package="1"
  7329. />
  7330. <otaLanguage
  7331. id="0"
  7332. name="Spanish"
  7333. package="2"
  7334. />
  7335. <otaLanguage
  7336. id="0"
  7337. name="Italian"
  7338. package="3"
  7339. />
  7340. <otaLanguage
  7341. id="0"
  7342. name="German"
  7343. package="4"
  7344. />
  7345. <otaLanguage
  7346. id="0"
  7347. name="Dutch"
  7348. package="5"
  7349. />
  7350. <otaLanguage
  7351. id="0"
  7352. name="Russian"
  7353. package="6"
  7354. />
  7355. <otaLanguage
  7356. id="0"
  7357. name="Chinese"
  7358. package="7"
  7359. />
  7360. <otaLanguage
  7361. id="0"
  7362. name="Korean"
  7363. package="8"
  7364. />
  7365. <otaLanguage
  7366. id="0"
  7367. name="Japanese"
  7368. package="9"
  7369. />
  7370. <otaLanguage
  7371. id="0"
  7372. name="Finnish"
  7373. package="10"
  7374. />
  7375. <otaLanguage
  7376. id="0"
  7377. name="Polish"
  7378. package="11"
  7379. />
  7380. </otaLanguages>
  7381. <otaPackages>
  7382. <package
  7383. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0.img"
  7384. size="5183988"
  7385. />
  7386. <package
  7387. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fr-FR.img"
  7388. size="5183988"
  7389. />
  7390. <package
  7391. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-es-ES.img"
  7392. size="5183988"
  7393. />
  7394. <package
  7395. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-it-IT.img"
  7396. size="5183988"
  7397. />
  7398. <package
  7399. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-de-DE.img"
  7400. size="5183988"
  7401. />
  7402. <package
  7403. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-nl-NL.img"
  7404. size="5183988"
  7405. />
  7406. <package
  7407. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ru-RU.img"
  7408. size="5183988"
  7409. />
  7410. <package
  7411. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-cmn-CN.img"
  7412. size="5183988"
  7413. />
  7414. <package
  7415. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ko-KR.img"
  7416. size="5183988"
  7417. />
  7418. <package
  7419. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-ja-JP.img"
  7420. size="5183988"
  7421. />
  7422. <package
  7423. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-fi-FI.img"
  7424. size="5183988"
  7425. />
  7426. <package
  7427. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.9-build0-pl-PL.img"
  7428. size="5183988"
  7429. />
  7430. </otaPackages>
  7431. </productMenu>
  7432. <productMenu id="wa"
  7433. type="0" >
  7434. </productMenu>
  7435. <productMenu id="led"
  7436. type="5" >
  7437. </productMenu>
  7438. <productMenu id="led+"
  7439. type="2"
  7440. url="1" >
  7441. </productMenu>
  7442. <productMenu id="meshIntercom+"
  7443. type="3"
  7444. url="2" >
  7445. </productMenu>
  7446. <productMenu id="waveIntercom"
  7447. type="1" >
  7448. </productMenu>
  7449. <productMenu id="fmradio"
  7450. type="0" >
  7451. </productMenu>
  7452. <productMenu id="phone"
  7453. type="1" >
  7454. </productMenu>
  7455. <productMenu id="music"
  7456. type="1" >
  7457. </productMenu>
  7458. <productMenu id="musicSharing"
  7459. type="0" >
  7460. </productMenu>
  7461. <productMenu id="deviceSetting"
  7462. type="1"
  7463. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7464. <productMenuURL version="1.0.4"
  7465. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7466. />
  7467. </productMenu>
  7468. <productMenu id="quickGuide"
  7469. type="0"
  7470. url=""
  7471. size="1.12MB" >
  7472. </productMenu>
  7473. <productMenu id="userGuide"
  7474. type="1"
  7475. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7476. size="2.0MB" >
  7477. </productMenu>
  7478. <productMenu id="videoGuide"
  7479. type="0"
  7480. url=""
  7481. size="3.41MB" >
  7482. </productMenu>
  7483. <productMenu id="volume"
  7484. type="16" >
  7485. </productMenu>
  7486. <productMenu id="volume+"
  7487. type="2"
  7488. url="0x6004" >
  7489. </productMenu>
  7490. <productMenu id="battery"
  7491. type="1" >
  7492. </productMenu>
  7493. <productID id="6A11"
  7494. />
  7495. <productGroupable type="0"
  7496. />
  7497. </product>
  7498. <product id="SPECTER"
  7499. name="SPECTER"
  7500. series="Helmet"
  7501. latestVersion="1.0.9"
  7502. latestVersionVoicePrompt="1.7"
  7503. show = "-1" >
  7504. <productMenu id="protocol"
  7505. type="2" >
  7506. </productMenu>
  7507. <productMenu id="ota"
  7508. type="2" >
  7509. <otaLanguages>
  7510. <otaLanguage
  7511. id="0"
  7512. name="English"
  7513. package="0"
  7514. />
  7515. <otaLanguage
  7516. id="0"
  7517. name="French"
  7518. package="1"
  7519. />
  7520. <otaLanguage
  7521. id="0"
  7522. name="Spanish"
  7523. package="2"
  7524. />
  7525. <otaLanguage
  7526. id="0"
  7527. name="Italian"
  7528. package="3"
  7529. />
  7530. <otaLanguage
  7531. id="0"
  7532. name="German"
  7533. package="4"
  7534. />
  7535. <otaLanguage
  7536. id="0"
  7537. name="Dutch"
  7538. package="5"
  7539. />
  7540. <otaLanguage
  7541. id="0"
  7542. name="Russian"
  7543. package="6"
  7544. />
  7545. <otaLanguage
  7546. id="0"
  7547. name="Chinese"
  7548. package="7"
  7549. />
  7550. <otaLanguage
  7551. id="0"
  7552. name="Korean"
  7553. package="8"
  7554. />
  7555. <otaLanguage
  7556. id="0"
  7557. name="Japanese"
  7558. package="9"
  7559. />
  7560. <otaLanguage
  7561. id="0"
  7562. name="Finnish"
  7563. package="10"
  7564. />
  7565. <otaLanguage
  7566. id="0"
  7567. name="Polish"
  7568. package="11"
  7569. />
  7570. </otaLanguages>
  7571. <otaPackages>
  7572. <package
  7573. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0.img"
  7574. size="5183988"
  7575. />
  7576. <package
  7577. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fr-FR.img"
  7578. size="5183988"
  7579. />
  7580. <package
  7581. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-es-ES.img"
  7582. size="5183988"
  7583. />
  7584. <package
  7585. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-it-IT.img"
  7586. size="5183988"
  7587. />
  7588. <package
  7589. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-de-DE.img"
  7590. size="5183988"
  7591. />
  7592. <package
  7593. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-nl-NL.img"
  7594. size="5183988"
  7595. />
  7596. <package
  7597. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ru-RU.img"
  7598. size="5183988"
  7599. />
  7600. <package
  7601. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-cmn-CN.img"
  7602. size="5183988"
  7603. />
  7604. <package
  7605. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ko-KR.img"
  7606. size="5183988"
  7607. />
  7608. <package
  7609. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-ja-JP.img"
  7610. size="5183988"
  7611. />
  7612. <package
  7613. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-fi-FI.img"
  7614. size="5183988"
  7615. />
  7616. <package
  7617. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.9-build0-pl-PL.img"
  7618. size="5183988"
  7619. />
  7620. </otaPackages>
  7621. </productMenu>
  7622. <productMenu id="wa"
  7623. type="0" >
  7624. </productMenu>
  7625. <productMenu id="led"
  7626. type="5" >
  7627. </productMenu>
  7628. <productMenu id="led+"
  7629. type="2"
  7630. url="1" >
  7631. </productMenu>
  7632. <productMenu id="meshIntercom+"
  7633. type="3"
  7634. url="2" >
  7635. </productMenu>
  7636. <productMenu id="waveIntercom"
  7637. type="1" >
  7638. </productMenu>
  7639. <productMenu id="fmradio"
  7640. type="0" >
  7641. </productMenu>
  7642. <productMenu id="phone"
  7643. type="1" >
  7644. </productMenu>
  7645. <productMenu id="music"
  7646. type="1" >
  7647. </productMenu>
  7648. <productMenu id="musicSharing"
  7649. type="0" >
  7650. </productMenu>
  7651. <productMenu id="deviceSetting"
  7652. type="1"
  7653. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7654. <productMenuURL version="1.0.4"
  7655. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7656. />
  7657. <productMenuURL version="1.0"
  7658. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7659. />
  7660. </productMenu>
  7661. <productMenu id="quickGuide"
  7662. type="0"
  7663. url=""
  7664. size="1.12MB" >
  7665. </productMenu>
  7666. <productMenu id="userGuide"
  7667. type="1"
  7668. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7669. size="2.0MB" >
  7670. </productMenu>
  7671. <productMenu id="videoGuide"
  7672. type="0"
  7673. url=""
  7674. size="3.41MB" >
  7675. </productMenu>
  7676. <productMenu id="volume"
  7677. type="16" >
  7678. </productMenu>
  7679. <productMenu id="volume+"
  7680. type="2"
  7681. url="0x6004" >
  7682. </productMenu>
  7683. <productMenu id="battery"
  7684. type="1" >
  7685. </productMenu>
  7686. <productID id="6A0A"
  7687. />
  7688. <productGroupable type="0"
  7689. />
  7690. </product>
  7691. <product id="OUTLANDER"
  7692. name="OUTLANDER"
  7693. series="Helmet"
  7694. latestVersion="1.0.9"
  7695. latestVersionVoicePrompt="1.7"
  7696. show = "1" >
  7697. <productMenu id="protocol"
  7698. type="2" >
  7699. </productMenu>
  7700. <productMenu id="ota"
  7701. type="2" >
  7702. <otaLanguages>
  7703. <otaLanguage
  7704. id="0"
  7705. name="English"
  7706. package="0"
  7707. />
  7708. <otaLanguage
  7709. id="0"
  7710. name="French"
  7711. package="1"
  7712. />
  7713. <otaLanguage
  7714. id="0"
  7715. name="Spanish"
  7716. package="2"
  7717. />
  7718. <otaLanguage
  7719. id="0"
  7720. name="Italian"
  7721. package="3"
  7722. />
  7723. <otaLanguage
  7724. id="0"
  7725. name="German"
  7726. package="4"
  7727. />
  7728. <otaLanguage
  7729. id="0"
  7730. name="Dutch"
  7731. package="5"
  7732. />
  7733. <otaLanguage
  7734. id="0"
  7735. name="Russian"
  7736. package="6"
  7737. />
  7738. <otaLanguage
  7739. id="0"
  7740. name="Chinese"
  7741. package="7"
  7742. />
  7743. <otaLanguage
  7744. id="0"
  7745. name="Korean"
  7746. package="8"
  7747. />
  7748. <otaLanguage
  7749. id="0"
  7750. name="Japanese"
  7751. package="9"
  7752. />
  7753. <otaLanguage
  7754. id="0"
  7755. name="Finnish"
  7756. package="10"
  7757. />
  7758. <otaLanguage
  7759. id="0"
  7760. name="Polish"
  7761. package="11"
  7762. />
  7763. </otaLanguages>
  7764. <otaPackages>
  7765. <package
  7766. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0.img"
  7767. size="5183988"
  7768. />
  7769. <package
  7770. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fr-FR.img"
  7771. size="5183988"
  7772. />
  7773. <package
  7774. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-es-ES.img"
  7775. size="5183988"
  7776. />
  7777. <package
  7778. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-it-IT.img"
  7779. size="5183988"
  7780. />
  7781. <package
  7782. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-de-DE.img"
  7783. size="5183988"
  7784. />
  7785. <package
  7786. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-nl-NL.img"
  7787. size="5183988"
  7788. />
  7789. <package
  7790. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ru-RU.img"
  7791. size="5183988"
  7792. />
  7793. <package
  7794. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-cmn-CN.img"
  7795. size="5183988"
  7796. />
  7797. <package
  7798. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ko-KR.img"
  7799. size="5183988"
  7800. />
  7801. <package
  7802. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-ja-JP.img"
  7803. size="5183988"
  7804. />
  7805. <package
  7806. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-fi-FI.img"
  7807. size="5183988"
  7808. />
  7809. <package
  7810. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.9-build0-pl-PL.img"
  7811. size="5183988"
  7812. />
  7813. </otaPackages>
  7814. </productMenu>
  7815. <productMenu id="wa"
  7816. type="0" >
  7817. </productMenu>
  7818. <productMenu id="led"
  7819. type="5" >
  7820. </productMenu>
  7821. <productMenu id="led+"
  7822. type="2"
  7823. url="1" >
  7824. </productMenu>
  7825. <productMenu id="meshIntercom+"
  7826. type="3"
  7827. url="2" >
  7828. </productMenu>
  7829. <productMenu id="waveIntercom"
  7830. type="1" >
  7831. </productMenu>
  7832. <productMenu id="fmradio"
  7833. type="0" >
  7834. </productMenu>
  7835. <productMenu id="phone"
  7836. type="1" >
  7837. </productMenu>
  7838. <productMenu id="music"
  7839. type="1" >
  7840. </productMenu>
  7841. <productMenu id="musicSharing"
  7842. type="0" >
  7843. </productMenu>
  7844. <productMenu id="deviceSetting"
  7845. type="1"
  7846. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7847. <productMenuURL version="1.0.4"
  7848. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7849. />
  7850. </productMenu>
  7851. <productMenu id="quickGuide"
  7852. type="0"
  7853. url=""
  7854. size="1.12MB" >
  7855. </productMenu>
  7856. <productMenu id="userGuide"
  7857. type="1"
  7858. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7859. size="2.0MB" >
  7860. </productMenu>
  7861. <productMenu id="videoGuide"
  7862. type="0"
  7863. url=""
  7864. size="3.41MB" >
  7865. </productMenu>
  7866. <productMenu id="volume"
  7867. type="16" >
  7868. </productMenu>
  7869. <productMenu id="volume+"
  7870. type="2"
  7871. url="0x6004" >
  7872. </productMenu>
  7873. <productMenu id="battery"
  7874. type="1" >
  7875. </productMenu>
  7876. <productID id="6A05"
  7877. />
  7878. <productGroupable type="0"
  7879. />
  7880. </product>
  7881. <product id="OUTRUSH2"
  7882. name="OUTRUSH 2"
  7883. series="Helmet"
  7884. latestVersion="1.0.3"
  7885. latestVersionVoicePrompt="1.6"
  7886. show = "1" >
  7887. <productMenu id="protocol"
  7888. type="2" >
  7889. </productMenu>
  7890. <productMenu id="alexa"
  7891. type="0" >
  7892. </productMenu>
  7893. <productMenu id="ota"
  7894. type="2" >
  7895. <otaPackages>
  7896. <package
  7897. url="https://api.sena.com/support/OTA/Motorcycles/OUTRUSH2/OUTRUSH_2-v1.0.3-build0.img"
  7898. size="2945812"
  7899. />
  7900. </otaPackages>
  7901. </productMenu>
  7902. <productMenu id="meshIntercom+"
  7903. type="3"
  7904. url="2" >
  7905. </productMenu>
  7906. <productMenu id="waveIntercom"
  7907. type="1" >
  7908. </productMenu>
  7909. <productMenu id="phone"
  7910. type="1" >
  7911. </productMenu>
  7912. <productMenu id="music"
  7913. type="1" >
  7914. </productMenu>
  7915. <productMenu id="musicSharing"
  7916. type="0" >
  7917. </productMenu>
  7918. <productMenu id="deviceSetting"
  7919. type="1"
  7920. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7921. <productMenuURL version="1.0"
  7922. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7923. />
  7924. </productMenu>
  7925. <productMenu id="quickGuide"
  7926. type="0"
  7927. url=""
  7928. size="1.12MB" >
  7929. </productMenu>
  7930. <productMenu id="userGuide"
  7931. type="1"
  7932. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7933. size="2.0MB" >
  7934. </productMenu>
  7935. <productMenu id="connectGuide"
  7936. type="1"
  7937. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outrush2.json"
  7938. size="1.12MB" >
  7939. </productMenu>
  7940. <productMenu id="volume"
  7941. type="12" >
  7942. </productMenu>
  7943. <productMenu id="battery"
  7944. type="1" >
  7945. </productMenu>
  7946. <productID id="684A"
  7947. />
  7948. <productGroupable type="0"
  7949. />
  7950. </product>
  7951. <product id="OUTSTAR2"
  7952. name="OUTSTAR 2"
  7953. series="Helmet"
  7954. latestVersion="1.0.2"
  7955. latestVersionVoicePrompt="1.6"
  7956. show = "1" >
  7957. <productMenu id="protocol"
  7958. type="2" >
  7959. </productMenu>
  7960. <productMenu id="alexa"
  7961. type="0" >
  7962. </productMenu>
  7963. <productMenu id="ota"
  7964. type="2" >
  7965. <otaPackages>
  7966. <package
  7967. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.2-build0.img"
  7968. size="2945812"
  7969. />
  7970. </otaPackages>
  7971. </productMenu>
  7972. <productMenu id="meshIntercom+"
  7973. type="3"
  7974. url="2" >
  7975. </productMenu>
  7976. <productMenu id="waveIntercom"
  7977. type="1" >
  7978. </productMenu>
  7979. <productMenu id="phone"
  7980. type="1" >
  7981. </productMenu>
  7982. <productMenu id="music"
  7983. type="1" >
  7984. </productMenu>
  7985. <productMenu id="musicSharing"
  7986. type="0" >
  7987. </productMenu>
  7988. <productMenu id="deviceSetting"
  7989. type="1"
  7990. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7991. </productMenu>
  7992. <productMenu id="quickGuide"
  7993. type="0"
  7994. url=""
  7995. size="1.12MB" >
  7996. </productMenu>
  7997. <productMenu id="userGuide"
  7998. type="1"
  7999. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  8000. size="2.0MB" >
  8001. </productMenu>
  8002. <productMenu id="connectGuide"
  8003. type="1"
  8004. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_outstar2.json"
  8005. size="1.12MB" >
  8006. </productMenu>
  8007. <productMenu id="volume"
  8008. type="12" >
  8009. </productMenu>
  8010. <productMenu id="battery"
  8011. type="1" >
  8012. </productMenu>
  8013. <productID id="684B"
  8014. />
  8015. <productGroupable type="0"
  8016. />
  8017. </product>
  8018. <product id="SURGE"
  8019. name="SURGE"
  8020. series="Helmet"
  8021. latestVersion="1.2"
  8022. latestVersionVoicePrompt="1.3"
  8023. show = "1" >
  8024. <productMenu id="protocol"
  8025. type="2" >
  8026. </productMenu>
  8027. <productMenu id="alexa"
  8028. type="0" >
  8029. </productMenu>
  8030. <productMenu id="ota"
  8031. type="2" >
  8032. <otaPackages>
  8033. <package
  8034. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  8035. size="2945812"
  8036. />
  8037. </otaPackages>
  8038. </productMenu>
  8039. <productMenu id="meshIntercom"
  8040. type="30" >
  8041. </productMenu>
  8042. <productMenu id="meshIntercom+"
  8043. type="3"
  8044. url="2" >
  8045. <productMenuType version="1.0.1"
  8046. type="2"
  8047. />
  8048. </productMenu>
  8049. <productMenu id="waveIntercom"
  8050. type="1" >
  8051. <productMenuType version="1.0.9"
  8052. type="0"
  8053. />
  8054. </productMenu>
  8055. <productMenu id="phone"
  8056. type="1" >
  8057. </productMenu>
  8058. <productMenu id="music"
  8059. type="1" >
  8060. </productMenu>
  8061. <productMenu id="musicSharing"
  8062. type="0" >
  8063. </productMenu>
  8064. <productMenu id="deviceSetting"
  8065. type="1"
  8066. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  8067. <productMenuURL version="1.1.9"
  8068. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  8069. />
  8070. <productMenuURL version="1.0.1"
  8071. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  8072. />
  8073. </productMenu>
  8074. <productMenu id="quickGuide"
  8075. type="0"
  8076. url=""
  8077. size="1.12MB" >
  8078. </productMenu>
  8079. <productMenu id="userGuide"
  8080. type="1"
  8081. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  8082. size="2.0MB" >
  8083. </productMenu>
  8084. <productMenu id="volume"
  8085. type="12" >
  8086. </productMenu>
  8087. <productMenu id="battery"
  8088. type="1" >
  8089. </productMenu>
  8090. <productID id="6840"
  8091. />
  8092. <productGroupable type="0"
  8093. />
  8094. </product>
  8095. <product id="Cavalry2"
  8096. name="Cavalry 2"
  8097. series="Helmet"
  8098. latestVersion="1.2"
  8099. latestVersionVoicePrompt="1.3"
  8100. show = "1" >
  8101. <productMenu id="protocol"
  8102. type="2" >
  8103. </productMenu>
  8104. <productMenu id="alexa"
  8105. type="0" >
  8106. </productMenu>
  8107. <productMenu id="ota"
  8108. type="2" >
  8109. <otaPackages>
  8110. <package
  8111. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  8112. size="3144148"
  8113. />
  8114. </otaPackages>
  8115. </productMenu>
  8116. <productMenu id="wa"
  8117. type="0" >
  8118. </productMenu>
  8119. <productMenu id="meshIntercom"
  8120. type="30" >
  8121. </productMenu>
  8122. <productMenu id="meshIntercom+"
  8123. type="3"
  8124. url="2" >
  8125. <productMenuType version="1.0"
  8126. type="2"
  8127. />
  8128. </productMenu>
  8129. <productMenu id="waveIntercom"
  8130. type="1" >
  8131. <productMenuType version="1.0.9"
  8132. type="0"
  8133. />
  8134. </productMenu>
  8135. <productMenu id="phone"
  8136. type="1" >
  8137. </productMenu>
  8138. <productMenu id="music"
  8139. type="1" >
  8140. </productMenu>
  8141. <productMenu id="musicSharing"
  8142. type="0" >
  8143. </productMenu>
  8144. <productMenu id="deviceSetting"
  8145. type="1"
  8146. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  8147. <productMenuURL version="1.1.9"
  8148. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  8149. />
  8150. <productMenuURL version="1.0"
  8151. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  8152. />
  8153. </productMenu>
  8154. <productMenu id="quickGuide"
  8155. type="0"
  8156. url=""
  8157. size="1.12MB" >
  8158. </productMenu>
  8159. <productMenu id="userGuide"
  8160. type="1"
  8161. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  8162. size="2.0MB" >
  8163. </productMenu>
  8164. <productMenu id="connectGuide"
  8165. type="1"
  8166. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  8167. size="1.12MB" >
  8168. </productMenu>
  8169. <productMenu id="volume"
  8170. type="12" >
  8171. </productMenu>
  8172. <productMenu id="battery"
  8173. type="1" >
  8174. </productMenu>
  8175. <productID id="6839"
  8176. />
  8177. <productGroupable type="0"
  8178. />
  8179. </product>
  8180. <product id="Cavalry"
  8181. name="Cavalry"
  8182. series="Helmet"
  8183. latestVersion="1.2.2"
  8184. show = "1" >
  8185. <productMenu id="protocol"
  8186. type="0">
  8187. </productMenu>
  8188. <productMenu id="sip"
  8189. type="1" >
  8190. </productMenu>
  8191. <productMenu id="bluetoothIntercom"
  8192. type="1" >
  8193. </productMenu>
  8194. <productMenu id="phone"
  8195. type="2" >
  8196. </productMenu>
  8197. <productMenu id="fmradio"
  8198. type="3" >
  8199. </productMenu>
  8200. <productMenu id="deviceSetting"
  8201. type="1"
  8202. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  8203. <productMenuURL version="1.9"
  8204. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  8205. />
  8206. <productMenuURL version="1.0.1"
  8207. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  8208. />
  8209. </productMenu>
  8210. <productMenu id="quickGuide"
  8211. type="1"
  8212. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  8213. size="795KB" >
  8214. </productMenu>
  8215. <productMenu id="userGuide"
  8216. type="1"
  8217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  8218. size="1.87MB" >
  8219. </productMenu>
  8220. <productMenu id="connectGuide"
  8221. type="1"
  8222. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8223. size="1.12MB" >
  8224. </productMenu>
  8225. <productID id="5524"
  8226. />
  8227. <productGroupable type="0"
  8228. />
  8229. </product>
  8230. <product id="Cavalry_Lite"
  8231. name="Cavalry Lite"
  8232. series="Helmet"
  8233. latestVersion="1.0.2"
  8234. show = "1" >
  8235. <productMenu id="protocol"
  8236. type="0">
  8237. </productMenu>
  8238. <productMenu id="sip"
  8239. type="1" >
  8240. </productMenu>
  8241. <productMenu id="bluetoothIntercom"
  8242. type="1" >
  8243. </productMenu>
  8244. <productMenu id="phone"
  8245. type="2" >
  8246. </productMenu>
  8247. <productMenu id="fmradio"
  8248. type="3" >
  8249. </productMenu>
  8250. <productMenu id="deviceSetting"
  8251. type="1"
  8252. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  8253. </productMenu>
  8254. <productMenu id="userGuide"
  8255. type="1"
  8256. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  8257. size="1.74MB" >
  8258. </productMenu>
  8259. <productMenu id="connectGuide"
  8260. type="1"
  8261. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8262. size="1.12MB" >
  8263. </productMenu>
  8264. <productID id="5536"
  8265. />
  8266. <productGroupable type="0"
  8267. />
  8268. </product>
  8269. <product id="VORTEX"
  8270. name="VORTEX"
  8271. series="VORTEX"
  8272. latestVersion="1.0.2"
  8273. latestVersionVoicePrompt="1.0"
  8274. show = "1" >
  8275. <productMenu id="protocol"
  8276. type="2" >
  8277. </productMenu>
  8278. <productMenu id="warranty"
  8279. type="1" >
  8280. </productMenu>
  8281. <productMenu id="serialNumber"
  8282. type="1" >
  8283. </productMenu>
  8284. <productMenu id="ota"
  8285. type="2" >
  8286. <otaLanguages>
  8287. <otaLanguage
  8288. id="0"
  8289. name="English"
  8290. package="0"
  8291. />
  8292. <otaLanguage
  8293. id="0"
  8294. name="French"
  8295. package="1"
  8296. />
  8297. <otaLanguage
  8298. id="0"
  8299. name="Spanish"
  8300. package="2"
  8301. />
  8302. <otaLanguage
  8303. id="0"
  8304. name="Italian"
  8305. package="3"
  8306. />
  8307. <otaLanguage
  8308. id="0"
  8309. name="German"
  8310. package="4"
  8311. />
  8312. <otaLanguage
  8313. id="0"
  8314. name="Dutch"
  8315. package="5"
  8316. />
  8317. <otaLanguage
  8318. id="0"
  8319. name="Russian"
  8320. package="6"
  8321. />
  8322. <otaLanguage
  8323. id="0"
  8324. name="Chinese"
  8325. package="7"
  8326. />
  8327. <otaLanguage
  8328. id="0"
  8329. name="Korean"
  8330. package="8"
  8331. />
  8332. <otaLanguage
  8333. id="0"
  8334. name="Japanese"
  8335. package="9"
  8336. />
  8337. <otaLanguage
  8338. id="0"
  8339. name="Finnish"
  8340. package="10"
  8341. />
  8342. <otaLanguage
  8343. id="0"
  8344. name="Polish"
  8345. package="11"
  8346. />
  8347. </otaLanguages>
  8348. <otaPackages>
  8349. <package
  8350. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1.img"
  8351. size="5183988"
  8352. />
  8353. <package
  8354. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fr-FR.img"
  8355. size="5183988"
  8356. />
  8357. <package
  8358. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-es-ES.img"
  8359. size="5183988"
  8360. />
  8361. <package
  8362. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-it-IT.img"
  8363. size="5183988"
  8364. />
  8365. <package
  8366. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-de-DE.img"
  8367. size="5183988"
  8368. />
  8369. <package
  8370. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-nl-NL.img"
  8371. size="5183988"
  8372. />
  8373. <package
  8374. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ru-RU.img"
  8375. size="5183988"
  8376. />
  8377. <package
  8378. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-cmn-CN.img"
  8379. size="5183988"
  8380. />
  8381. <package
  8382. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ko-KR.img"
  8383. size="5183988"
  8384. />
  8385. <package
  8386. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-ja-JP.img"
  8387. size="5183988"
  8388. />
  8389. <package
  8390. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-fi-FI.img"
  8391. size="5183988"
  8392. />
  8393. <package
  8394. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0.2-build1-pl-PL.img"
  8395. size="5183988"
  8396. />
  8397. </otaPackages>
  8398. </productMenu>
  8399. <productMenu id="sip"
  8400. type="1" >
  8401. </productMenu>
  8402. <productMenu id="bluetoothIntercom"
  8403. type="1" >
  8404. </productMenu>
  8405. <productMenu id="phone"
  8406. type="1" >
  8407. </productMenu>
  8408. <productMenu id="music"
  8409. type="1" >
  8410. </productMenu>
  8411. <productMenu id="fmradio"
  8412. type="1"
  8413. url="1" >
  8414. </productMenu>
  8415. <productMenu id="deviceSetting"
  8416. type="1"
  8417. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8418. </productMenu>
  8419. <productMenu id="quickGuide"
  8420. type="0"
  8421. url=""
  8422. size="934KB" >
  8423. </productMenu>
  8424. <productMenu id="userGuide"
  8425. type="1"
  8426. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_VORTEX_1.0.0_en_260805.pdf"
  8427. size="1.14MB" >
  8428. </productMenu>
  8429. <productMenu id="connectGuide"
  8430. type="0"
  8431. url=""
  8432. size="1.12MB" >
  8433. </productMenu>
  8434. <productMenu id="volume"
  8435. type="15" >
  8436. </productMenu>
  8437. <productMenu id="volume+"
  8438. type="2"
  8439. url="0x0018" >
  8440. </productMenu>
  8441. <productMenu id="appearance"
  8442. type="1"
  8443. url="1|white,silver,black" >
  8444. </productMenu>
  8445. <productID id="3451"
  8446. />
  8447. <productGroupable type="0"
  8448. />
  8449. </product>
  8450. <product id="SF4"
  8451. name="SF4"
  8452. series="SF"
  8453. latestVersion="1.1.5"
  8454. show = "-1" >
  8455. <productMenu id="protocol"
  8456. type="1"
  8457. url="3">
  8458. </productMenu>
  8459. <productMenu id="sip"
  8460. type="1" >
  8461. </productMenu>
  8462. <productMenu id="bluetoothIntercom"
  8463. type="1" >
  8464. </productMenu>
  8465. <productMenu id="phone"
  8466. type="1" >
  8467. </productMenu>
  8468. <productMenu id="music"
  8469. type="1" >
  8470. </productMenu>
  8471. <productMenu id="fmradio"
  8472. type="1" >
  8473. </productMenu>
  8474. <productMenu id="deviceSetting"
  8475. type="1"
  8476. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8477. <productMenuURL version="1.0.1"
  8478. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8479. />
  8480. </productMenu>
  8481. <productMenu id="quickGuide"
  8482. type="1"
  8483. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8484. size="607KB" >
  8485. </productMenu>
  8486. <productMenu id="userGuide"
  8487. type="1"
  8488. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8489. size="1.91MB" >
  8490. </productMenu>
  8491. <productMenu id="volume"
  8492. type="4" >
  8493. </productMenu>
  8494. <productID id="5414"
  8495. />
  8496. <productGroupable type="0"
  8497. />
  8498. </product>
  8499. <product id="SF4"
  8500. name="SF4"
  8501. series="SF"
  8502. latestVersion="3.4.4"
  8503. show = "1" >
  8504. <productMenu id="protocol"
  8505. type="2" >
  8506. </productMenu>
  8507. <productMenu id="sip"
  8508. type="1" >
  8509. </productMenu>
  8510. <productMenu id="bluetoothIntercom"
  8511. type="1" >
  8512. </productMenu>
  8513. <productMenu id="phone"
  8514. type="1" >
  8515. </productMenu>
  8516. <productMenu id="music"
  8517. type="1" >
  8518. </productMenu>
  8519. <productMenu id="fmradio"
  8520. type="1" >
  8521. </productMenu>
  8522. <productMenu id="deviceSetting"
  8523. type="1"
  8524. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8525. <productMenuURL version="3.0"
  8526. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8527. />
  8528. </productMenu>
  8529. <productMenu id="quickGuide"
  8530. type="0"
  8531. url=""
  8532. size="934KB" >
  8533. </productMenu>
  8534. <productMenu id="userGuide"
  8535. type="1"
  8536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8537. size="1.14MB" >
  8538. </productMenu>
  8539. <productMenu id="connectGuide"
  8540. type="1"
  8541. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8542. size="1.12MB" >
  8543. </productMenu>
  8544. <productMenu id="volume"
  8545. type="15" >
  8546. </productMenu>
  8547. <productID id="3370"
  8548. />
  8549. <productGroupable type="0"
  8550. />
  8551. </product>
  8552. <product id="SF2"
  8553. name="SF2"
  8554. series="SF"
  8555. latestVersion="1.2.1"
  8556. show = "-1" >
  8557. <productMenu id="protocol"
  8558. type="1"
  8559. url="2">
  8560. </productMenu>
  8561. <productMenu id="sip"
  8562. type="1" >
  8563. </productMenu>
  8564. <productMenu id="bluetoothIntercom"
  8565. type="1" >
  8566. </productMenu>
  8567. <productMenu id="phone"
  8568. type="1" >
  8569. </productMenu>
  8570. <productMenu id="music"
  8571. type="1" >
  8572. </productMenu>
  8573. <productMenu id="fmradio"
  8574. type="1" >
  8575. </productMenu>
  8576. <productMenu id="deviceSetting"
  8577. type="1"
  8578. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8579. <productMenuURL version="1.0.1"
  8580. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8581. />
  8582. </productMenu>
  8583. <productMenu id="quickGuide"
  8584. type="1"
  8585. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8586. size="607KB" >
  8587. </productMenu>
  8588. <productMenu id="userGuide"
  8589. type="1"
  8590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8591. size="1.91MB" >
  8592. </productMenu>
  8593. <productMenu id="volume"
  8594. type="4" >
  8595. </productMenu>
  8596. <productID id="5412"
  8597. />
  8598. <productGroupable type="0"
  8599. />
  8600. </product>
  8601. <product id="SF2"
  8602. name="SF2"
  8603. series="SF"
  8604. latestVersion="3.3.4"
  8605. show = "1" >
  8606. <productMenu id="protocol"
  8607. type="2" >
  8608. </productMenu>
  8609. <productMenu id="sip"
  8610. type="1" >
  8611. </productMenu>
  8612. <productMenu id="bluetoothIntercom"
  8613. type="1" >
  8614. </productMenu>
  8615. <productMenu id="phone"
  8616. type="1" >
  8617. </productMenu>
  8618. <productMenu id="music"
  8619. type="1" >
  8620. </productMenu>
  8621. <productMenu id="fmradio"
  8622. type="0" >
  8623. </productMenu>
  8624. <productMenu id="deviceSetting"
  8625. type="1"
  8626. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8627. <productMenuURL version="3.0"
  8628. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8629. />
  8630. </productMenu>
  8631. <productMenu id="quickGuide"
  8632. type="0"
  8633. url=""
  8634. size="934KB" >
  8635. </productMenu>
  8636. <productMenu id="userGuide"
  8637. type="1"
  8638. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8639. size="1.14MB" >
  8640. </productMenu>
  8641. <productMenu id="connectGuide"
  8642. type="1"
  8643. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8644. size="1.12MB" >
  8645. </productMenu>
  8646. <productMenu id="volume"
  8647. type="15" >
  8648. </productMenu>
  8649. <productID id="3360"
  8650. />
  8651. <productGroupable type="0"
  8652. />
  8653. </product>
  8654. <product id="SF1"
  8655. name="SF1"
  8656. series="SF"
  8657. latestVersion="2.0.5"
  8658. show = "-1" >
  8659. <productMenu id="protocol"
  8660. type="1"
  8661. url="1">
  8662. </productMenu>
  8663. <productMenu id="sip"
  8664. type="1" >
  8665. </productMenu>
  8666. <productMenu id="bluetoothIntercom"
  8667. type="1" >
  8668. <productMenuType version="1.1"
  8669. type="0"
  8670. />
  8671. </productMenu>
  8672. <productMenu id="phone"
  8673. type="1" >
  8674. </productMenu>
  8675. <productMenu id="music"
  8676. type="1" >
  8677. </productMenu>
  8678. <productMenu id="deviceSetting"
  8679. type="1"
  8680. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8681. <productMenuURL version="1.1"
  8682. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8683. />
  8684. <productMenuURL version="1.0"
  8685. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8686. />
  8687. </productMenu>
  8688. <productMenu id="quickGuide"
  8689. type="1"
  8690. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8691. size="401KB" >
  8692. </productMenu>
  8693. <productMenu id="userGuide"
  8694. type="1"
  8695. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8696. size="1.91MB" >
  8697. </productMenu>
  8698. <productMenu id="volume"
  8699. type="3" >
  8700. </productMenu>
  8701. <productID id="5410"
  8702. />
  8703. <productGroupable type="0"
  8704. />
  8705. </product>
  8706. <product id="SF1"
  8707. name="SF1"
  8708. series="SF"
  8709. latestVersion="3.3.4"
  8710. show = "1" >
  8711. <productMenu id="protocol"
  8712. type="2" >
  8713. </productMenu>
  8714. <productMenu id="sip"
  8715. type="1" >
  8716. </productMenu>
  8717. <productMenu id="bluetoothIntercom"
  8718. type="1" >
  8719. </productMenu>
  8720. <productMenu id="phone"
  8721. type="1" >
  8722. </productMenu>
  8723. <productMenu id="music"
  8724. type="1" >
  8725. </productMenu>
  8726. <productMenu id="fmradio"
  8727. type="0" >
  8728. </productMenu>
  8729. <productMenu id="deviceSetting"
  8730. type="1"
  8731. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8732. <productMenuURL version="3.0"
  8733. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8734. />
  8735. </productMenu>
  8736. <productMenu id="quickGuide"
  8737. type="0"
  8738. url=""
  8739. size="934KB" >
  8740. </productMenu>
  8741. <productMenu id="userGuide"
  8742. type="1"
  8743. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8744. size="1.14MB" >
  8745. </productMenu>
  8746. <productMenu id="connectGuide"
  8747. type="1"
  8748. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8749. size="1.12MB" >
  8750. </productMenu>
  8751. <productMenu id="volume"
  8752. type="15" >
  8753. </productMenu>
  8754. <productID id="3350"
  8755. />
  8756. <productGroupable type="0"
  8757. />
  8758. </product>
  8759. <product id="SFR"
  8760. name="SFR"
  8761. series="SF"
  8762. latestVersion="1.1.1"
  8763. show = "1" >
  8764. <productMenu id="protocol"
  8765. type="1"
  8766. url="3">
  8767. </productMenu>
  8768. <productMenu id="sip"
  8769. type="1" >
  8770. </productMenu>
  8771. <productMenu id="bluetoothIntercom"
  8772. type="1" >
  8773. </productMenu>
  8774. <productMenu id="phone"
  8775. type="1" >
  8776. </productMenu>
  8777. <productMenu id="music"
  8778. type="1" >
  8779. </productMenu>
  8780. <productMenu id="fmradio"
  8781. type="1" >
  8782. </productMenu>
  8783. <productMenu id="deviceSetting"
  8784. type="1"
  8785. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8786. </productMenu>
  8787. <productMenu id="quickGuide"
  8788. type="1"
  8789. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8790. size="607KB" >
  8791. </productMenu>
  8792. <productMenu id="userGuide"
  8793. type="1"
  8794. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8795. size="1.91MB" >
  8796. </productMenu>
  8797. <productMenu id="volume"
  8798. type="4" >
  8799. </productMenu>
  8800. <productID id="5418"
  8801. />
  8802. <productGroupable type="0"
  8803. />
  8804. </product>
  8805. <product id="20S"
  8806. name="20S"
  8807. series="20"
  8808. latestVersion="2.2.3"
  8809. show = "1" >
  8810. <productMenu id="protocol"
  8811. type="0">
  8812. </productMenu>
  8813. <productMenu id="wa"
  8814. type="5" >
  8815. </productMenu>
  8816. <productMenu id="sip"
  8817. type="1" >
  8818. <productMenuType version="1.0"
  8819. type="0"
  8820. />
  8821. </productMenu>
  8822. <productMenu id="bluetoothIntercom"
  8823. type="1" >
  8824. <productMenuType version="1.0"
  8825. type="0"
  8826. />
  8827. </productMenu>
  8828. <productMenu id="intercomSetting"
  8829. type="1" >
  8830. </productMenu>
  8831. <productMenu id="phone"
  8832. type="2" >
  8833. </productMenu>
  8834. <productMenu id="fmradio"
  8835. type="3" >
  8836. </productMenu>
  8837. <productMenu id="deviceSetting"
  8838. type="1"
  8839. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8840. <productMenuURL version="2.0.2"
  8841. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8842. />
  8843. <productMenuURL version="1.5"
  8844. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8845. />
  8846. <productMenuURL version="1.4.1"
  8847. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8848. />
  8849. <productMenuURL version="1.1"
  8850. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8851. />
  8852. <productMenuURL version="1.0"
  8853. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8854. />
  8855. </productMenu>
  8856. <productMenu id="quickGuide"
  8857. type="0"
  8858. url=""
  8859. size="264KB" >
  8860. </productMenu>
  8861. <productMenu id="userGuide"
  8862. type="1"
  8863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8864. size="3.09MB" >
  8865. </productMenu>
  8866. <productMenu id="connectGuide"
  8867. type="1"
  8868. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8869. size="1.12MB" >
  8870. </productMenu>
  8871. <productID id="4210"
  8872. />
  8873. <productGroupable type="1"
  8874. />
  8875. </product>
  8876. <product id="20S_EVO"
  8877. name="20S EVO"
  8878. series="20"
  8879. latestVersion="2.2.3"
  8880. show = "1" >
  8881. <productMenu id="protocol"
  8882. type="0">
  8883. </productMenu>
  8884. <productMenu id="wa"
  8885. type="5" >
  8886. </productMenu>
  8887. <productMenu id="sip"
  8888. type="1" >
  8889. <productMenuType version="1.0"
  8890. type="0"
  8891. />
  8892. </productMenu>
  8893. <productMenu id="bluetoothIntercom"
  8894. type="1" >
  8895. <productMenuType version="1.0"
  8896. type="0"
  8897. />
  8898. </productMenu>
  8899. <productMenu id="intercomSetting"
  8900. type="1" >
  8901. </productMenu>
  8902. <productMenu id="phone"
  8903. type="2" >
  8904. </productMenu>
  8905. <productMenu id="fmradio"
  8906. type="3" >
  8907. </productMenu>
  8908. <productMenu id="deviceSetting"
  8909. type="1"
  8910. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8911. <productMenuURL version="2.0.2"
  8912. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8913. />
  8914. <productMenuURL version="1.5"
  8915. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8916. />
  8917. <productMenuURL version="1.4.1"
  8918. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8919. />
  8920. <productMenuURL version="1.1"
  8921. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8922. />
  8923. <productMenuURL version="1.0"
  8924. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8925. />
  8926. </productMenu>
  8927. <productMenu id="quickGuide"
  8928. type="0"
  8929. url=""
  8930. size="264KB" >
  8931. </productMenu>
  8932. <productMenu id="userGuide"
  8933. type="1"
  8934. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8935. size="3.09MB" >
  8936. </productMenu>
  8937. <productMenu id="connectGuide"
  8938. type="1"
  8939. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8940. size="1.12MB" >
  8941. </productMenu>
  8942. <productID id="4210"
  8943. />
  8944. <productProductKey key="16"
  8945. />
  8946. <productGroupable type="1"
  8947. />
  8948. </product>
  8949. <product id="10S"
  8950. name="10S"
  8951. series="10"
  8952. latestVersion="3.0.2"
  8953. show = "1" >
  8954. <productMenu id="protocol"
  8955. type="3" >
  8956. </productMenu>
  8957. <productMenu id="sip"
  8958. type="1" >
  8959. </productMenu>
  8960. <productMenu id="bluetoothIntercom"
  8961. type="1" >
  8962. </productMenu>
  8963. <productMenu id="phone"
  8964. type="1" >
  8965. </productMenu>
  8966. <productMenu id="deviceSetting"
  8967. type="1"
  8968. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8969. </productMenu>
  8970. <productMenu id="quickGuide"
  8971. type="1"
  8972. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8973. size="934KB" >
  8974. </productMenu>
  8975. <productMenu id="userGuide"
  8976. type="1"
  8977. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8978. size="1.14MB" >
  8979. </productMenu>
  8980. <productMenu id="connectGuide"
  8981. type="1"
  8982. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8983. size="1.12MB" >
  8984. </productMenu>
  8985. <productID id="3380"
  8986. />
  8987. <productGroupable type="0"
  8988. />
  8989. </product>
  8990. <product id="10S"
  8991. name="10S"
  8992. series="10"
  8993. latestVersion="2.1.1"
  8994. show = "-1" >
  8995. <productMenu id="protocol"
  8996. type="0">
  8997. </productMenu>
  8998. <productMenu id="sip"
  8999. type="1" >
  9000. </productMenu>
  9001. <productMenu id="bluetoothIntercom"
  9002. type="1" >
  9003. </productMenu>
  9004. <productMenu id="phone"
  9005. type="2" >
  9006. </productMenu>
  9007. <productMenu id="fmradio"
  9008. type="3" >
  9009. </productMenu>
  9010. <productMenu id="deviceSetting"
  9011. type="1"
  9012. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  9013. <productMenuURL version="1.5"
  9014. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  9015. />
  9016. <productMenuURL version="1.3.1"
  9017. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  9018. />
  9019. </productMenu>
  9020. <productMenu id="quickGuide"
  9021. type="1"
  9022. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  9023. size="310KB" >
  9024. </productMenu>
  9025. <productMenu id="userGuide"
  9026. type="1"
  9027. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  9028. size="1.57MB" >
  9029. </productMenu>
  9030. <productID id="5530"
  9031. />
  9032. <productGroupable type="0"
  9033. />
  9034. </product>
  9035. <product id="Apex"
  9036. name="Apex"
  9037. series="Apex"
  9038. latestVersion="1.0"
  9039. latestVersionVoicePrompt="0.2"
  9040. show = "-1" >
  9041. <productMenu id="protocol"
  9042. type="2" >
  9043. </productMenu>
  9044. <productMenu id="warranty"
  9045. type="1" >
  9046. </productMenu>
  9047. <productMenu id="serialNumber"
  9048. type="1" >
  9049. </productMenu>
  9050. <productMenu id="ota"
  9051. type="2" >
  9052. <otaLanguages>
  9053. <otaLanguage
  9054. id="0"
  9055. name="English"
  9056. package="0"
  9057. />
  9058. <otaLanguage
  9059. id="0"
  9060. name="French"
  9061. package="1"
  9062. />
  9063. <otaLanguage
  9064. id="0"
  9065. name="Spanish"
  9066. package="2"
  9067. />
  9068. <otaLanguage
  9069. id="0"
  9070. name="Italian"
  9071. package="3"
  9072. />
  9073. <otaLanguage
  9074. id="0"
  9075. name="German"
  9076. package="4"
  9077. />
  9078. <otaLanguage
  9079. id="0"
  9080. name="Dutch"
  9081. package="5"
  9082. />
  9083. <otaLanguage
  9084. id="0"
  9085. name="Russian"
  9086. package="6"
  9087. />
  9088. <otaLanguage
  9089. id="0"
  9090. name="Chinese"
  9091. package="7"
  9092. />
  9093. <otaLanguage
  9094. id="0"
  9095. name="Korean"
  9096. package="8"
  9097. />
  9098. <otaLanguage
  9099. id="0"
  9100. name="Japanese"
  9101. package="9"
  9102. />
  9103. <otaLanguage
  9104. id="0"
  9105. name="Finnish"
  9106. package="10"
  9107. />
  9108. <otaLanguage
  9109. id="0"
  9110. name="Polish"
  9111. package="11"
  9112. />
  9113. </otaLanguages>
  9114. <otaPackages>
  9115. <package
  9116. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6.img"
  9117. size="5183988"
  9118. />
  9119. <package
  9120. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fr-FR.img"
  9121. size="5183988"
  9122. />
  9123. <package
  9124. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-es-ES.img"
  9125. size="5183988"
  9126. />
  9127. <package
  9128. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-it-IT.img"
  9129. size="5183988"
  9130. />
  9131. <package
  9132. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-de-DE.img"
  9133. size="5183988"
  9134. />
  9135. <package
  9136. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-nl-NL.img"
  9137. size="5183988"
  9138. />
  9139. <package
  9140. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ru-RU.img"
  9141. size="5183988"
  9142. />
  9143. <package
  9144. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-cmn-CN.img"
  9145. size="5183988"
  9146. />
  9147. <package
  9148. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ko-KR.img"
  9149. size="5183988"
  9150. />
  9151. <package
  9152. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-ja-JP.img"
  9153. size="5183988"
  9154. />
  9155. <package
  9156. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-fi-FI.img"
  9157. size="5183988"
  9158. />
  9159. <package
  9160. url="https://api.sena.com/support/OTA/Motorcycles/Apex/APEX-v1.0-build6-pl-PL.img"
  9161. size="5183988"
  9162. />
  9163. </otaPackages>
  9164. </productMenu>
  9165. <productMenu id="sip"
  9166. type="1" >
  9167. </productMenu>
  9168. <productMenu id="bluetoothIntercom"
  9169. type="1" >
  9170. </productMenu>
  9171. <productMenu id="phone"
  9172. type="1" >
  9173. </productMenu>
  9174. <productMenu id="music"
  9175. type="1" >
  9176. </productMenu>
  9177. <productMenu id="fmradio"
  9178. type="1"
  9179. url="1" >
  9180. </productMenu>
  9181. <productMenu id="deviceSetting"
  9182. type="1"
  9183. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9184. <productMenuURL version="1.0"
  9185. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9186. />
  9187. </productMenu>
  9188. <productMenu id="quickGuide"
  9189. type="0"
  9190. url=""
  9191. size="934KB" >
  9192. </productMenu>
  9193. <productMenu id="userGuide"
  9194. type="1"
  9195. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9196. size="1.14MB" >
  9197. </productMenu>
  9198. <productMenu id="volume+"
  9199. type="2"
  9200. url="0x0004" >
  9201. </productMenu>
  9202. <productMenu id="appearance"
  9203. type="1"
  9204. url="1|white,silver,black" >
  9205. </productMenu>
  9206. <productMenu id="battery"
  9207. type="1" >
  9208. </productMenu>
  9209. <productID id="3452"
  9210. />
  9211. <productGroupable type="0"
  9212. />
  9213. </product>
  9214. <product id="ApexPlus"
  9215. name="Apex Plus"
  9216. series="Apex"
  9217. latestVersion="1.0"
  9218. latestVersionVoicePrompt="0.2"
  9219. show = "-1" >
  9220. <productMenu id="protocol"
  9221. type="2" >
  9222. </productMenu>
  9223. <productMenu id="warranty"
  9224. type="1" >
  9225. </productMenu>
  9226. <productMenu id="serialNumber"
  9227. type="1" >
  9228. </productMenu>
  9229. <productMenu id="ota"
  9230. type="2" >
  9231. <otaLanguages>
  9232. <otaLanguage
  9233. id="0"
  9234. name="English"
  9235. package="0"
  9236. />
  9237. <otaLanguage
  9238. id="0"
  9239. name="French"
  9240. package="1"
  9241. />
  9242. <otaLanguage
  9243. id="0"
  9244. name="Spanish"
  9245. package="2"
  9246. />
  9247. <otaLanguage
  9248. id="0"
  9249. name="Italian"
  9250. package="3"
  9251. />
  9252. <otaLanguage
  9253. id="0"
  9254. name="German"
  9255. package="4"
  9256. />
  9257. <otaLanguage
  9258. id="0"
  9259. name="Dutch"
  9260. package="5"
  9261. />
  9262. <otaLanguage
  9263. id="0"
  9264. name="Russian"
  9265. package="6"
  9266. />
  9267. <otaLanguage
  9268. id="0"
  9269. name="Chinese"
  9270. package="7"
  9271. />
  9272. <otaLanguage
  9273. id="0"
  9274. name="Korean"
  9275. package="8"
  9276. />
  9277. <otaLanguage
  9278. id="0"
  9279. name="Japanese"
  9280. package="9"
  9281. />
  9282. <otaLanguage
  9283. id="0"
  9284. name="Finnish"
  9285. package="10"
  9286. />
  9287. <otaLanguage
  9288. id="0"
  9289. name="Polish"
  9290. package="11"
  9291. />
  9292. </otaLanguages>
  9293. <otaPackages>
  9294. <package
  9295. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6.img"
  9296. size="5183988"
  9297. />
  9298. <package
  9299. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fr-FR.img"
  9300. size="5183988"
  9301. />
  9302. <package
  9303. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-es-ES.img"
  9304. size="5183988"
  9305. />
  9306. <package
  9307. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-it-IT.img"
  9308. size="5183988"
  9309. />
  9310. <package
  9311. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-de-DE.img"
  9312. size="5183988"
  9313. />
  9314. <package
  9315. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-nl-NL.img"
  9316. size="5183988"
  9317. />
  9318. <package
  9319. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ru-RU.img"
  9320. size="5183988"
  9321. />
  9322. <package
  9323. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-cmn-CN.img"
  9324. size="5183988"
  9325. />
  9326. <package
  9327. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ko-KR.img"
  9328. size="5183988"
  9329. />
  9330. <package
  9331. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-ja-JP.img"
  9332. size="5183988"
  9333. />
  9334. <package
  9335. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-fi-FI.img"
  9336. size="5183988"
  9337. />
  9338. <package
  9339. url="https://api.sena.com/support/OTA/Motorcycles/ApexPlus/APEX_Plus-v1.0-build6-pl-PL.img"
  9340. size="5183988"
  9341. />
  9342. </otaPackages>
  9343. </productMenu>
  9344. <productMenu id="sip"
  9345. type="1" >
  9346. </productMenu>
  9347. <productMenu id="bluetoothIntercom"
  9348. type="1" >
  9349. </productMenu>
  9350. <productMenu id="phone"
  9351. type="1" >
  9352. </productMenu>
  9353. <productMenu id="music"
  9354. type="1" >
  9355. </productMenu>
  9356. <productMenu id="fmradio"
  9357. type="1"
  9358. url="1" >
  9359. </productMenu>
  9360. <productMenu id="deviceSetting"
  9361. type="1"
  9362. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex_01.xml" >
  9363. <productMenuURL version="1.0"
  9364. url="https://api.sena.com/support/SenaNeoApp/Apex/NS_Apex.xml"
  9365. />
  9366. </productMenu>
  9367. <productMenu id="quickGuide"
  9368. type="0"
  9369. url=""
  9370. size="934KB" >
  9371. </productMenu>
  9372. <productMenu id="userGuide"
  9373. type="1"
  9374. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_APEX_Series_1.0.0_en_260810.pdf"
  9375. size="1.14MB" >
  9376. </productMenu>
  9377. <productMenu id="volume+"
  9378. type="2"
  9379. url="0x0004" >
  9380. </productMenu>
  9381. <productMenu id="appearance"
  9382. type="1"
  9383. url="1|white,silver,black" >
  9384. </productMenu>
  9385. <productMenu id="battery"
  9386. type="1" >
  9387. </productMenu>
  9388. <productID id="3453"
  9389. />
  9390. <productGroupable type="0"
  9391. />
  9392. </product>
  9393. <product id="10R2"
  9394. name="10R 2"
  9395. series="10"
  9396. latestVersion="0.9"
  9397. latestVersionVoicePrompt="1.1"
  9398. show = "-1" >
  9399. <productMenu id="protocol"
  9400. type="2" >
  9401. </productMenu>
  9402. <productMenu id="ota"
  9403. type="2" >
  9404. <otaPackages>
  9405. <package
  9406. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9407. size="2945812"
  9408. />
  9409. </otaPackages>
  9410. </productMenu>
  9411. <productMenu id="sip"
  9412. type="1" >
  9413. </productMenu>
  9414. <productMenu id="bluetoothIntercom"
  9415. type="1" >
  9416. </productMenu>
  9417. <productMenu id="phone"
  9418. type="1" >
  9419. </productMenu>
  9420. <productMenu id="music"
  9421. type="1" >
  9422. </productMenu>
  9423. <productMenu id="fmradio"
  9424. type="1"
  9425. url="1" >
  9426. </productMenu>
  9427. <productMenu id="deviceSetting"
  9428. type="1"
  9429. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9430. </productMenu>
  9431. <productMenu id="quickGuide"
  9432. type="1"
  9433. url=""
  9434. size="934KB" >
  9435. </productMenu>
  9436. <productMenu id="userGuide"
  9437. type="0"
  9438. url=""
  9439. size="1.14MB" >
  9440. </productMenu>
  9441. <productMenu id="volume"
  9442. type="15" >
  9443. </productMenu>
  9444. <productID id="4000"
  9445. />
  9446. <productGroupable type="0"
  9447. />
  9448. </product>
  9449. <product id="10R"
  9450. name="10R"
  9451. series="10"
  9452. latestVersion="2.1.1"
  9453. show = "1" >
  9454. <productMenu id="protocol"
  9455. type="0">
  9456. </productMenu>
  9457. <productMenu id="sip"
  9458. type="1" >
  9459. <productMenuType version="1.0.2"
  9460. type="0"
  9461. />
  9462. </productMenu>
  9463. <productMenu id="bluetoothIntercom"
  9464. type="1" >
  9465. <productMenuType version="1.0.2"
  9466. type="0"
  9467. />
  9468. </productMenu>
  9469. <productMenu id="phone"
  9470. type="2" >
  9471. </productMenu>
  9472. <productMenu id="fmradio"
  9473. type="3" >
  9474. </productMenu>
  9475. <productMenu id="deviceSetting"
  9476. type="1"
  9477. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9478. <productMenuURL version="1.4"
  9479. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9480. />
  9481. <productMenuURL version="1.2.1"
  9482. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9483. />
  9484. <productMenuURL version="1.0.2"
  9485. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9486. />
  9487. <productMenuURL version="1.0"
  9488. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9489. />
  9490. </productMenu>
  9491. <productMenu id="quickGuide"
  9492. type="1"
  9493. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9494. size="400KB" >
  9495. </productMenu>
  9496. <productMenu id="userGuide"
  9497. type="1"
  9498. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9499. size="2.75MB" >
  9500. </productMenu>
  9501. <productMenu id="connectGuide"
  9502. type="1"
  9503. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9504. size="1.12MB" >
  9505. </productMenu>
  9506. <productID id="5520"
  9507. />
  9508. <productGroupable type="0"
  9509. />
  9510. </product>
  9511. <product id="10C_EVO"
  9512. name="10C EVO"
  9513. series="10"
  9514. latestVersion="1.7"
  9515. show = "1" >
  9516. <productMenu id="protocol"
  9517. type="0">
  9518. </productMenu>
  9519. <productMenu id="sip"
  9520. type="1" >
  9521. </productMenu>
  9522. <productMenu id="bluetoothIntercom"
  9523. type="1" >
  9524. </productMenu>
  9525. <productMenu id="phone"
  9526. type="2" >
  9527. </productMenu>
  9528. <productMenu id="fmradio"
  9529. type="3" >
  9530. </productMenu>
  9531. <productMenu id="deviceSetting"
  9532. type="1"
  9533. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9534. <productMenuURL version="1.3.1"
  9535. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9536. />
  9537. </productMenu>
  9538. <productMenu id="quickGuide"
  9539. type="1"
  9540. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9541. size="1.32MB" >
  9542. </productMenu>
  9543. <productMenu id="userGuide"
  9544. type="1"
  9545. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9546. size="1.68MB" >
  9547. </productMenu>
  9548. <productMenu id="connectGuide"
  9549. type="1"
  9550. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9551. size="1.12MB" >
  9552. </productMenu>
  9553. <productID id="5570"
  9554. />
  9555. <productGroupable type="0"
  9556. />
  9557. </product>
  9558. <product id="10C_Pro"
  9559. name="10C Pro"
  9560. series="10"
  9561. latestVersion="2.7.1"
  9562. show = "1" >
  9563. <productMenu id="protocol"
  9564. type="0">
  9565. </productMenu>
  9566. <productMenu id="sip"
  9567. type="1" >
  9568. </productMenu>
  9569. <productMenu id="bluetoothIntercom"
  9570. type="1" >
  9571. </productMenu>
  9572. <productMenu id="phone"
  9573. type="2" >
  9574. </productMenu>
  9575. <productMenu id="fmradio"
  9576. type="3" >
  9577. </productMenu>
  9578. <productMenu id="deviceSetting"
  9579. type="1"
  9580. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9581. <productMenuURL version="2.5.1"
  9582. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9583. />
  9584. <productMenuURL version="1.0"
  9585. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9586. />
  9587. </productMenu>
  9588. <productMenu id="quickGuide"
  9589. type="1"
  9590. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9591. size="651KB" >
  9592. </productMenu>
  9593. <productMenu id="userGuide"
  9594. type="1"
  9595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9596. size="2.34MB" >
  9597. </productMenu>
  9598. <productMenu id="connectGuide"
  9599. type="1"
  9600. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9601. size="1.12MB" >
  9602. </productMenu>
  9603. <productID id="5580"
  9604. />
  9605. <productGroupable type="0"
  9606. />
  9607. </product>
  9608. <product id="10C"
  9609. name="10C"
  9610. series="10"
  9611. latestVersion="3.0.4"
  9612. show = "1" >
  9613. <productMenu id="protocol"
  9614. type="0">
  9615. </productMenu>
  9616. <productMenu id="sip"
  9617. type="1" >
  9618. <productMenuType version="1.0.4"
  9619. type="0"
  9620. />
  9621. </productMenu>
  9622. <productMenu id="bluetoothIntercom"
  9623. type="1" >
  9624. <productMenuType version="1.0.4"
  9625. type="0"
  9626. />
  9627. </productMenu>
  9628. <productMenu id="phone"
  9629. type="2" >
  9630. </productMenu>
  9631. <productMenu id="fmradio"
  9632. type="3" >
  9633. </productMenu>
  9634. <productMenu id="deviceSetting"
  9635. type="1"
  9636. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9637. <productMenuURL version="2.3"
  9638. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9639. />
  9640. <productMenuURL version="2.1.1"
  9641. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9642. />
  9643. <productMenuURL version="1.0.4"
  9644. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9645. />
  9646. <productMenuURL version="1.0.2"
  9647. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9648. />
  9649. </productMenu>
  9650. <productMenu id="quickGuide"
  9651. type="1"
  9652. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9653. size="935KB" >
  9654. </productMenu>
  9655. <productMenu id="userGuide"
  9656. type="1"
  9657. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9658. size="2.82MB" >
  9659. </productMenu>
  9660. <productMenu id="connectGuide"
  9661. type="1"
  9662. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9663. size="1.12MB" >
  9664. </productMenu>
  9665. <productID id="5510"
  9666. />
  9667. <productGroupable type="0"
  9668. />
  9669. </product>
  9670. <product id="10U_GT_AIR"
  9671. name="10U GT-Air"
  9672. series="10"
  9673. latestVersion="2.0.4"
  9674. show = "1" >
  9675. <productMenu id="protocol"
  9676. type="0">
  9677. </productMenu>
  9678. <productMenu id="sip"
  9679. type="1" >
  9680. <productMenuType version="1.0.2"
  9681. type="0"
  9682. />
  9683. </productMenu>
  9684. <productMenu id="bluetoothIntercom"
  9685. type="1" >
  9686. <productMenuType version="1.0.2"
  9687. type="0"
  9688. />
  9689. </productMenu>
  9690. <productMenu id="phone"
  9691. type="2" >
  9692. </productMenu>
  9693. <productMenu id="fmradio"
  9694. type="3" >
  9695. </productMenu>
  9696. <productMenu id="deviceSetting"
  9697. type="1"
  9698. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9699. <productMenuURL version="1.3.2"
  9700. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9701. />
  9702. <productMenuURL version="1.0.2"
  9703. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9704. />
  9705. </productMenu>
  9706. <productMenu id="quickGuide"
  9707. type="1"
  9708. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9709. size="685KB" >
  9710. </productMenu>
  9711. <productMenu id="userGuide"
  9712. type="1"
  9713. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9714. size="684KB" >
  9715. </productMenu>
  9716. <productMenu id="connectGuide"
  9717. type="1"
  9718. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9719. size="1.12MB" >
  9720. </productMenu>
  9721. <productID id="5610"
  9722. />
  9723. <productGroupable type="0"
  9724. />
  9725. </product>
  9726. <product id="10U_NEOTEC"
  9727. name="10U Neotec"
  9728. series="10"
  9729. latestVersion="2.0.4"
  9730. show = "1" >
  9731. <productMenu id="protocol"
  9732. type="0">
  9733. </productMenu>
  9734. <productMenu id="sip"
  9735. type="1" >
  9736. <productMenuType version="1.0.2"
  9737. type="0"
  9738. />
  9739. </productMenu>
  9740. <productMenu id="bluetoothIntercom"
  9741. type="1" >
  9742. <productMenuType version="1.0.2"
  9743. type="0"
  9744. />
  9745. </productMenu>
  9746. <productMenu id="phone"
  9747. type="2" >
  9748. </productMenu>
  9749. <productMenu id="fmradio"
  9750. type="3" >
  9751. </productMenu>
  9752. <productMenu id="deviceSetting"
  9753. type="1"
  9754. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9755. <productMenuURL version="1.3.2"
  9756. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9757. />
  9758. <productMenuURL version="1.0.2"
  9759. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9760. />
  9761. </productMenu>
  9762. <productMenu id="quickGuide"
  9763. type="1"
  9764. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9765. size="689KB" >
  9766. </productMenu>
  9767. <productMenu id="userGuide"
  9768. type="1"
  9769. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9770. size="684KB" >
  9771. </productMenu>
  9772. <productMenu id="connectGuide"
  9773. type="1"
  9774. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9775. size="1.12MB" >
  9776. </productMenu>
  9777. <productID id="5611"
  9778. />
  9779. <productGroupable type="0"
  9780. />
  9781. </product>
  9782. <product id="10U_J_CRUISE"
  9783. name="10U J-Cruise"
  9784. series="10"
  9785. latestVersion="2.0.4"
  9786. show = "1" >
  9787. <productMenu id="protocol"
  9788. type="0">
  9789. </productMenu>
  9790. <productMenu id="sip"
  9791. type="1" >
  9792. <productMenuType version="1.0.2"
  9793. type="0"
  9794. />
  9795. </productMenu>
  9796. <productMenu id="bluetoothIntercom"
  9797. type="1" >
  9798. <productMenuType version="1.0.2"
  9799. type="0"
  9800. />
  9801. </productMenu>
  9802. <productMenu id="phone"
  9803. type="2" >
  9804. </productMenu>
  9805. <productMenu id="fmradio"
  9806. type="3" >
  9807. </productMenu>
  9808. <productMenu id="deviceSetting"
  9809. type="1"
  9810. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9811. <productMenuURL version="1.3.2"
  9812. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9813. />
  9814. <productMenuURL version="1.0.2"
  9815. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9816. />
  9817. </productMenu>
  9818. <productMenu id="quickGuide"
  9819. type="1"
  9820. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9821. size="686KB" >
  9822. </productMenu>
  9823. <productMenu id="userGuide"
  9824. type="1"
  9825. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9826. size="684KB" >
  9827. </productMenu>
  9828. <productMenu id="connectGuide"
  9829. type="1"
  9830. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9831. size="1.12MB" >
  9832. </productMenu>
  9833. <productID id="5612"
  9834. />
  9835. <productGroupable type="0"
  9836. />
  9837. </product>
  9838. <product id="10U_C3"
  9839. name="10U C3/C3Pro"
  9840. series="10"
  9841. latestVersion="2.0.4"
  9842. show = "1" >
  9843. <productMenu id="protocol"
  9844. type="0">
  9845. </productMenu>
  9846. <productMenu id="sip"
  9847. type="1" >
  9848. <productMenuType version="1.0.2"
  9849. type="0"
  9850. />
  9851. </productMenu>
  9852. <productMenu id="bluetoothIntercom"
  9853. type="1" >
  9854. <productMenuType version="1.0.2"
  9855. type="0"
  9856. />
  9857. </productMenu>
  9858. <productMenu id="phone"
  9859. type="2" >
  9860. </productMenu>
  9861. <productMenu id="fmradio"
  9862. type="3" >
  9863. </productMenu>
  9864. <productMenu id="deviceSetting"
  9865. type="1"
  9866. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9867. <productMenuURL version="1.3.2"
  9868. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9869. />
  9870. <productMenuURL version="1.0.2"
  9871. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9872. />
  9873. </productMenu>
  9874. <productMenu id="quickGuide"
  9875. type="1"
  9876. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9877. size="199KB" >
  9878. </productMenu>
  9879. <productMenu id="userGuide"
  9880. type="1"
  9881. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9882. size="684KB" >
  9883. </productMenu>
  9884. <productMenu id="connectGuide"
  9885. type="1"
  9886. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9887. size="1.12MB" >
  9888. </productMenu>
  9889. <productID id="5620"
  9890. />
  9891. <productGroupable type="0"
  9892. />
  9893. </product>
  9894. <product id="10U_ARAI"
  9895. name="10U Arai"
  9896. series="10"
  9897. latestVersion="2.0.4"
  9898. show = "1" >
  9899. <productMenu id="protocol"
  9900. type="0">
  9901. </productMenu>
  9902. <productMenu id="sip"
  9903. type="1" >
  9904. <productMenuType version="1.0.2"
  9905. type="0"
  9906. />
  9907. </productMenu>
  9908. <productMenu id="bluetoothIntercom"
  9909. type="1" >
  9910. <productMenuType version="1.0.2"
  9911. type="0"
  9912. />
  9913. </productMenu>
  9914. <productMenu id="phone"
  9915. type="2" >
  9916. </productMenu>
  9917. <productMenu id="fmradio"
  9918. type="3" >
  9919. </productMenu>
  9920. <productMenu id="deviceSetting"
  9921. type="1"
  9922. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9923. <productMenuURL version="1.3.2"
  9924. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9925. />
  9926. <productMenuURL version="1.0.2"
  9927. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9928. />
  9929. </productMenu>
  9930. <productMenu id="quickGuide"
  9931. type="1"
  9932. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9933. size="689KB" >
  9934. </productMenu>
  9935. <productMenu id="userGuide"
  9936. type="1"
  9937. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9938. size="684KB" >
  9939. </productMenu>
  9940. <productMenu id="connectGuide"
  9941. type="1"
  9942. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9943. size="1.12MB" >
  9944. </productMenu>
  9945. <productID id="5621"
  9946. />
  9947. <productGroupable type="0"
  9948. />
  9949. </product>
  9950. <product id="10Upad"
  9951. name="10Upad"
  9952. series="10"
  9953. latestVersion="2.0.3"
  9954. show = "1" >
  9955. <productMenu id="protocol"
  9956. type="0">
  9957. </productMenu>
  9958. <productMenu id="sip"
  9959. type="1" >
  9960. </productMenu>
  9961. <productMenu id="bluetoothIntercom"
  9962. type="1" >
  9963. </productMenu>
  9964. <productMenu id="phone"
  9965. type="2" >
  9966. </productMenu>
  9967. <productMenu id="fmradio"
  9968. type="3" >
  9969. </productMenu>
  9970. <productMenu id="deviceSetting"
  9971. type="1"
  9972. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9973. <productMenuURL version="1.0.3"
  9974. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9975. />
  9976. </productMenu>
  9977. <productMenu id="quickGuide"
  9978. type="1"
  9979. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9980. size="615KB" >
  9981. </productMenu>
  9982. <productMenu id="userGuide"
  9983. type="1"
  9984. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9985. size="0.99MB" >
  9986. </productMenu>
  9987. <productMenu id="connectGuide"
  9988. type="1"
  9989. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9990. size="1.12MB" >
  9991. </productMenu>
  9992. <productID id="6210"
  9993. />
  9994. <productGroupable type="0"
  9995. />
  9996. </product>
  9997. <product id="5S"
  9998. name="5S"
  9999. series="5"
  10000. latestVersion="2.3.1"
  10001. show = "1" >
  10002. <productMenu id="protocol"
  10003. type="3" >
  10004. </productMenu>
  10005. <productMenu id="sip"
  10006. type="1" >
  10007. </productMenu>
  10008. <productMenu id="bluetoothIntercom"
  10009. type="1" >
  10010. </productMenu>
  10011. <productMenu id="phone"
  10012. type="1" >
  10013. </productMenu>
  10014. <productMenu id="fmradio"
  10015. type="0" >
  10016. </productMenu>
  10017. <productMenu id="deviceSetting"
  10018. type="1"
  10019. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  10020. </productMenu>
  10021. <productMenu id="quickGuide"
  10022. type="0"
  10023. url=""
  10024. size="934KB" >
  10025. </productMenu>
  10026. <productMenu id="userGuide"
  10027. type="1"
  10028. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  10029. size="1.14MB" >
  10030. </productMenu>
  10031. <productMenu id="connectGuide"
  10032. type="1"
  10033. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  10034. size="1.12MB" >
  10035. </productMenu>
  10036. <productID id="5590"
  10037. />
  10038. <productGroupable type="0"
  10039. />
  10040. </product>
  10041. <product id="5S"
  10042. name="5S"
  10043. series="5"
  10044. latestVersion="1.2"
  10045. show = "-1" >
  10046. <productMenu id="protocol"
  10047. type="0">
  10048. </productMenu>
  10049. <productMenu id="sip"
  10050. type="1" >
  10051. </productMenu>
  10052. <productMenu id="bluetoothIntercom"
  10053. type="1" >
  10054. </productMenu>
  10055. <productMenu id="phone"
  10056. type="2" >
  10057. </productMenu>
  10058. <productMenu id="fmradio"
  10059. type="3" >
  10060. </productMenu>
  10061. <productMenu id="deviceSetting"
  10062. type="1"
  10063. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  10064. </productMenu>
  10065. <productMenu id="quickGuide"
  10066. type="0"
  10067. url=""
  10068. size="970KB" >
  10069. </productMenu>
  10070. <productMenu id="userGuide"
  10071. type="1"
  10072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  10073. size="1.26MB" >
  10074. </productMenu>
  10075. <productID id="5534"
  10076. />
  10077. <productGroupable type="0"
  10078. />
  10079. </product>
  10080. <product id="5S"
  10081. name="5S"
  10082. series="5"
  10083. latestVersion="3.0.1"
  10084. show = "-1" >
  10085. <productMenu id="protocol"
  10086. type="0">
  10087. </productMenu>
  10088. <productMenu id="sip"
  10089. type="1" >
  10090. </productMenu>
  10091. <productMenu id="bluetoothIntercom"
  10092. type="1" >
  10093. </productMenu>
  10094. <productMenu id="phone"
  10095. type="2" >
  10096. </productMenu>
  10097. <productMenu id="fmradio"
  10098. type="0" >
  10099. </productMenu>
  10100. <productMenu id="deviceSetting"
  10101. type="1"
  10102. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  10103. </productMenu>
  10104. <productMenu id="quickGuide"
  10105. type="0"
  10106. url=""
  10107. size="970KB" >
  10108. </productMenu>
  10109. <productMenu id="userGuide"
  10110. type="1"
  10111. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  10112. size="1.26MB" >
  10113. </productMenu>
  10114. <productID id="5538"
  10115. />
  10116. <productGroupable type="0"
  10117. />
  10118. </product>
  10119. <product id="3SPLUS"
  10120. name="3S PLUS"
  10121. series="3"
  10122. latestVersion="2.2"
  10123. show = "1" >
  10124. <productMenu id="protocol"
  10125. type="3" >
  10126. </productMenu>
  10127. <productMenu id="sip"
  10128. type="1" >
  10129. </productMenu>
  10130. <productMenu id="bluetoothIntercom"
  10131. type="1" >
  10132. </productMenu>
  10133. <productMenu id="deviceSetting"
  10134. type="1"
  10135. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  10136. <productMenuURL version="2.2.1"
  10137. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  10138. />
  10139. </productMenu>
  10140. <productMenu id="quickGuide"
  10141. type="1"
  10142. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10143. size="344KB" >
  10144. </productMenu>
  10145. <productMenu id="userGuide"
  10146. type="1"
  10147. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  10148. size="1.14MB" >
  10149. </productMenu>
  10150. <productMenu id="connectGuide"
  10151. type="1"
  10152. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  10153. size="1.12MB" >
  10154. </productMenu>
  10155. <productID id="4023"
  10156. />
  10157. <productGroupable type="0"
  10158. />
  10159. </product>
  10160. <product id="3SPLUS"
  10161. name="3S PLUS"
  10162. series="3"
  10163. latestVersion="1.1"
  10164. show = "-1" >
  10165. <productMenu id="protocol"
  10166. type="0">
  10167. </productMenu>
  10168. <productMenu id="sip"
  10169. type="1" >
  10170. </productMenu>
  10171. <productMenu id="bluetoothIntercom"
  10172. type="1" >
  10173. </productMenu>
  10174. <productMenu id="deviceSetting"
  10175. type="1"
  10176. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10177. </productMenu>
  10178. <productMenu id="quickGuide"
  10179. type="1"
  10180. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10181. size="842KB" >
  10182. </productMenu>
  10183. <productMenu id="userGuide"
  10184. type="1"
  10185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  10186. size="1.02MB" >
  10187. </productMenu>
  10188. <productID id="6320"
  10189. />
  10190. <productGroupable type="0"
  10191. />
  10192. </product>
  10193. <product id="AConnect"
  10194. name="Alpinestars A-Connect"
  10195. series="60"
  10196. latestVersion="1.0.2"
  10197. latestVersionMesh="0.19"
  10198. latestVersionVoicePrompt="1.6"
  10199. show = "-1" >
  10200. <productMenu id="protocol"
  10201. type="2" >
  10202. </productMenu>
  10203. <productMenu id="ota"
  10204. type="2" >
  10205. <otaLanguages>
  10206. <otaLanguage
  10207. id="0"
  10208. name="English"
  10209. package="0"
  10210. />
  10211. <otaLanguage
  10212. id="0"
  10213. name="French"
  10214. package="1"
  10215. />
  10216. <otaLanguage
  10217. id="0"
  10218. name="Spanish"
  10219. package="2"
  10220. />
  10221. <otaLanguage
  10222. id="0"
  10223. name="Italian"
  10224. package="3"
  10225. />
  10226. <otaLanguage
  10227. id="0"
  10228. name="German"
  10229. package="4"
  10230. />
  10231. <otaLanguage
  10232. id="0"
  10233. name="Dutch"
  10234. package="5"
  10235. />
  10236. <otaLanguage
  10237. id="0"
  10238. name="Russian"
  10239. package="6"
  10240. />
  10241. <otaLanguage
  10242. id="0"
  10243. name="Chinese"
  10244. package="7"
  10245. />
  10246. <otaLanguage
  10247. id="0"
  10248. name="Korean"
  10249. package="8"
  10250. />
  10251. <otaLanguage
  10252. id="0"
  10253. name="Japanese"
  10254. package="9"
  10255. />
  10256. <otaLanguage
  10257. id="0"
  10258. name="Finnish"
  10259. package="10"
  10260. />
  10261. <otaLanguage
  10262. id="0"
  10263. name="Polish"
  10264. package="11"
  10265. />
  10266. </otaLanguages>
  10267. <otaPackages>
  10268. <package
  10269. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  10270. size="5183988"
  10271. />
  10272. <package
  10273. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  10274. size="5183988"
  10275. />
  10276. <package
  10277. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  10278. size="5183988"
  10279. />
  10280. <package
  10281. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  10282. size="5183988"
  10283. />
  10284. <package
  10285. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  10286. size="5183988"
  10287. />
  10288. <package
  10289. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  10290. size="5183988"
  10291. />
  10292. <package
  10293. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  10294. size="5183988"
  10295. />
  10296. <package
  10297. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  10298. size="5183988"
  10299. />
  10300. <package
  10301. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  10302. size="5183988"
  10303. />
  10304. <package
  10305. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  10306. size="5183988"
  10307. />
  10308. <package
  10309. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  10310. size="5183988"
  10311. />
  10312. <package
  10313. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  10314. size="5183988"
  10315. />
  10316. </otaPackages>
  10317. </productMenu>
  10318. <productMenu id="sip"
  10319. type="1" >
  10320. </productMenu>
  10321. <productMenu id="illusion"
  10322. type="0" >
  10323. </productMenu>
  10324. <productMenu id="meshIntercom+"
  10325. type="3"
  10326. url="2" >
  10327. </productMenu>
  10328. <productMenu id="waveIntercom"
  10329. type="1" >
  10330. </productMenu>
  10331. <productMenu id="bluetoothIntercom"
  10332. type="1"
  10333. url="2" >
  10334. </productMenu>
  10335. <productMenu id="bluetoothIntercomGrouping"
  10336. type="0" >
  10337. </productMenu>
  10338. <productMenu id="fmradio"
  10339. type="1"
  10340. url="1" >
  10341. </productMenu>
  10342. <productMenu id="phone"
  10343. type="1" >
  10344. </productMenu>
  10345. <productMenu id="music"
  10346. type="1" >
  10347. </productMenu>
  10348. <productMenu id="musicSharing"
  10349. type="0" >
  10350. </productMenu>
  10351. <productMenu id="deviceSetting"
  10352. type="1"
  10353. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10354. </productMenu>
  10355. <productMenu id="quickGuide"
  10356. type="0"
  10357. url=""
  10358. size="1.12MB" >
  10359. </productMenu>
  10360. <productMenu id="userGuide"
  10361. type="1"
  10362. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_A-CONNECT_1.0.0_en_260528.pdf"
  10363. size="2.0MB" >
  10364. </productMenu>
  10365. <productMenu id="videoGuide"
  10366. type="0"
  10367. url=""
  10368. size="3.41MB" >
  10369. </productMenu>
  10370. <productMenu id="volume"
  10371. type="16" >
  10372. </productMenu>
  10373. <productMenu id="volume+"
  10374. type="2"
  10375. url="0x6004" >
  10376. </productMenu>
  10377. <productMenu id="soundMode"
  10378. type="0" >
  10379. </productMenu>
  10380. <productMenu id="battery"
  10381. type="1" >
  10382. </productMenu>
  10383. <productID id="6A82"
  10384. />
  10385. <productGroupable type="0"
  10386. />
  10387. </product>
  10388. <product id="iCon"
  10389. name="iCon"
  10390. series="50"
  10391. latestVersion="1.2"
  10392. show = "0" >
  10393. <productMenu id="protocol"
  10394. type="2" >
  10395. </productMenu>
  10396. <productMenu id="alexa"
  10397. type="0" >
  10398. </productMenu>
  10399. <productMenu id="wa"
  10400. type="0" >
  10401. </productMenu>
  10402. <productMenu id="sip"
  10403. type="1" >
  10404. </productMenu>
  10405. <productMenu id="led"
  10406. type="3" >
  10407. </productMenu>
  10408. <productMenu id="meshIntercom"
  10409. type="20" >
  10410. </productMenu>
  10411. <productMenu id="meshIntercom+"
  10412. type="3"
  10413. url="0" >
  10414. <productMenuType version="1.0.9"
  10415. type="2"
  10416. />
  10417. </productMenu>
  10418. <productMenu id="bluetoothIntercom"
  10419. type="1" >
  10420. </productMenu>
  10421. <productMenu id="phone"
  10422. type="1" >
  10423. </productMenu>
  10424. <productMenu id="music"
  10425. type="1" >
  10426. </productMenu>
  10427. <productMenu id="fmradio"
  10428. type="1" >
  10429. </productMenu>
  10430. <productMenu id="deviceSetting"
  10431. type="1"
  10432. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10433. <productMenuURL version="1.0.9"
  10434. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10435. />
  10436. </productMenu>
  10437. <productMenu id="quickGuide"
  10438. type="1"
  10439. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10440. size="344KB" >
  10441. </productMenu>
  10442. <productMenu id="userGuide"
  10443. type="1"
  10444. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10445. size="3.41MB" >
  10446. </productMenu>
  10447. <productMenu id="volume"
  10448. type="11" >
  10449. </productMenu>
  10450. <productMenu id="battery"
  10451. type="1" >
  10452. </productMenu>
  10453. <productID id="3900"
  10454. />
  10455. <productGroupable type="0"
  10456. />
  10457. </product>
  10458. <product id="ICONHelmLinkSL"
  10459. name="ICON HelmLink SL"
  10460. series="50"
  10461. latestVersion="1.0"
  10462. latestVersionVoicePrompt="1.6"
  10463. show = "-1" >
  10464. <productMenu id="protocol"
  10465. type="2" >
  10466. </productMenu>
  10467. <productMenu id="alexa"
  10468. type="0" >
  10469. </productMenu>
  10470. <productMenu id="ota"
  10471. type="2" >
  10472. <otaPackages>
  10473. <package
  10474. url="https://api.sena.com/support/OTA/Motorcycles/HELMLINKSL/ICON_HELMLINK_SL-v1.0-build1.img"
  10475. size="2945812"
  10476. />
  10477. </otaPackages>
  10478. </productMenu>
  10479. <productMenu id="wa"
  10480. type="0" >
  10481. </productMenu>
  10482. <productMenu id="meshIntercom"
  10483. type="30" >
  10484. </productMenu>
  10485. <productMenu id="meshIntercom+"
  10486. type="3"
  10487. url="2" >
  10488. </productMenu>
  10489. <productMenu id="waveIntercom"
  10490. type="1" >
  10491. </productMenu>
  10492. <productMenu id="phone"
  10493. type="1" >
  10494. </productMenu>
  10495. <productMenu id="music"
  10496. type="1" >
  10497. </productMenu>
  10498. <productMenu id="musicSharing"
  10499. type="0" >
  10500. </productMenu>
  10501. <productMenu id="deviceSetting"
  10502. type="1"
  10503. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10504. </productMenu>
  10505. <productMenu id="quickGuide"
  10506. type="0"
  10507. url=""
  10508. size="1.12MB" >
  10509. </productMenu>
  10510. <productMenu id="userGuide"
  10511. type="1"
  10512. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_HelmLink_SL_1.0.0_en_260604.pdf"
  10513. size="2.0MB" >
  10514. </productMenu>
  10515. <productMenu id="volume"
  10516. type="12" >
  10517. </productMenu>
  10518. <productMenu id="battery"
  10519. type="1" >
  10520. </productMenu>
  10521. <productID id="6842"
  10522. />
  10523. <productGroupable type="0"
  10524. />
  10525. </product>
  10526. <product id="HD50S"
  10527. name="H-D Audio 50S"
  10528. series="50"
  10529. latestVersion="1.0.1"
  10530. show = "-1" >
  10531. <productMenu id="protocol"
  10532. type="2" >
  10533. </productMenu>
  10534. <productMenu id="alexa"
  10535. type="0" >
  10536. </productMenu>
  10537. <productMenu id="ota"
  10538. type="0"
  10539. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10540. size="1150234" >
  10541. </productMenu>
  10542. <productMenu id="wa"
  10543. type="1" >
  10544. </productMenu>
  10545. <productMenu id="sip"
  10546. type="1" >
  10547. </productMenu>
  10548. <productMenu id="meshIntercom"
  10549. type="20" >
  10550. </productMenu>
  10551. <productMenu id="meshIntercom+"
  10552. type="3"
  10553. url="0" >
  10554. <productMenuType version="1.0.9"
  10555. type="2"
  10556. />
  10557. </productMenu>
  10558. <productMenu id="bluetoothIntercom"
  10559. type="1" >
  10560. </productMenu>
  10561. <productMenu id="phone"
  10562. type="1" >
  10563. </productMenu>
  10564. <productMenu id="music"
  10565. type="1" >
  10566. </productMenu>
  10567. <productMenu id="fmradio"
  10568. type="1" >
  10569. </productMenu>
  10570. <productMenu id="deviceSetting"
  10571. type="1"
  10572. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10573. <productMenuURL version="1.0.9"
  10574. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10575. />
  10576. </productMenu>
  10577. <productMenu id="quickGuide"
  10578. type="1"
  10579. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10580. size="934KB" >
  10581. </productMenu>
  10582. <productMenu id="userGuide"
  10583. type="1"
  10584. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10585. size="1.14MB" >
  10586. </productMenu>
  10587. <productMenu id="volume"
  10588. type="11" >
  10589. </productMenu>
  10590. <productMenu id="battery"
  10591. type="1" >
  10592. </productMenu>
  10593. <productID id="3156"
  10594. />
  10595. <productGroupable type="0"
  10596. />
  10597. </product>
  10598. <product id="HD50S"
  10599. name="H-D Audio 50S"
  10600. series="50"
  10601. latestVersion="2.0.2"
  10602. show = "0" >
  10603. <productMenu id="protocol"
  10604. type="2" >
  10605. </productMenu>
  10606. <productMenu id="alexa"
  10607. type="0" >
  10608. </productMenu>
  10609. <productMenu id="ota"
  10610. type="0"
  10611. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10612. size="1150234" >
  10613. </productMenu>
  10614. <productMenu id="wa"
  10615. type="1" >
  10616. </productMenu>
  10617. <productMenu id="sip"
  10618. type="1" >
  10619. </productMenu>
  10620. <productMenu id="meshIntercom"
  10621. type="20" >
  10622. </productMenu>
  10623. <productMenu id="meshIntercom+"
  10624. type="3"
  10625. url="0" >
  10626. <productMenuType version="2.0.9"
  10627. type="2"
  10628. />
  10629. </productMenu>
  10630. <productMenu id="bluetoothIntercom"
  10631. type="1" >
  10632. </productMenu>
  10633. <productMenu id="phone"
  10634. type="1" >
  10635. </productMenu>
  10636. <productMenu id="music"
  10637. type="1" >
  10638. </productMenu>
  10639. <productMenu id="fmradio"
  10640. type="1" >
  10641. </productMenu>
  10642. <productMenu id="deviceSetting"
  10643. type="1"
  10644. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10645. <productMenuURL version="2.0.9"
  10646. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10647. />
  10648. </productMenu>
  10649. <productMenu id="quickGuide"
  10650. type="1"
  10651. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10652. size="934KB" >
  10653. </productMenu>
  10654. <productMenu id="userGuide"
  10655. type="1"
  10656. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10657. size="1.14MB" >
  10658. </productMenu>
  10659. <productMenu id="volume"
  10660. type="11" >
  10661. </productMenu>
  10662. <productMenu id="battery"
  10663. type="1" >
  10664. </productMenu>
  10665. <productID id="3213"
  10666. />
  10667. <productGroupable type="0"
  10668. />
  10669. </product>
  10670. <product id="HD50C"
  10671. name="H-D Audio 50C"
  10672. series="50"
  10673. latestVersion="1.0.1"
  10674. show = "0" >
  10675. <productMenu id="protocol"
  10676. type="2" >
  10677. </productMenu>
  10678. <productMenu id="ota"
  10679. type="0" >
  10680. </productMenu>
  10681. <productMenu id="wa"
  10682. type="1" >
  10683. </productMenu>
  10684. <productMenu id="sip"
  10685. type="1" >
  10686. </productMenu>
  10687. <productMenu id="meshIntercom"
  10688. type="20" >
  10689. </productMenu>
  10690. <productMenu id="meshIntercom+"
  10691. type="3"
  10692. url="0" >
  10693. <productMenuType version="1.0.9"
  10694. type="2"
  10695. />
  10696. </productMenu>
  10697. <productMenu id="bluetoothIntercom"
  10698. type="1" >
  10699. </productMenu>
  10700. <productMenu id="phone"
  10701. type="1" >
  10702. </productMenu>
  10703. <productMenu id="music"
  10704. type="1" >
  10705. </productMenu>
  10706. <productMenu id="fmradio"
  10707. type="1" >
  10708. </productMenu>
  10709. <productMenu id="deviceSetting"
  10710. type="1"
  10711. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10712. <productMenuURL version="1.0.9"
  10713. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10714. />
  10715. </productMenu>
  10716. <productMenu id="quickGuide"
  10717. type="1"
  10718. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10719. size="344KB" >
  10720. </productMenu>
  10721. <productMenu id="userGuide"
  10722. type="1"
  10723. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10724. size="3.41MB" >
  10725. </productMenu>
  10726. <productMenu id="volume"
  10727. type="11" >
  10728. </productMenu>
  10729. <productMenu id="battery"
  10730. type="1" >
  10731. </productMenu>
  10732. <productID id="3240"
  10733. />
  10734. <productGroupable type="0"
  10735. />
  10736. </product>
  10737. <product id="HD50S"
  10738. name="FURY N04"
  10739. series="Helmet"
  10740. latestVersion="1.0"
  10741. show = "0" >
  10742. <productMenu id="protocol"
  10743. type="2" >
  10744. </productMenu>
  10745. <productMenu id="alexa"
  10746. type="0" >
  10747. </productMenu>
  10748. <productMenu id="ota"
  10749. type="0" >
  10750. </productMenu>
  10751. <productMenu id="wa"
  10752. type="0" >
  10753. </productMenu>
  10754. <productMenu id="meshIntercom"
  10755. type="20" >
  10756. </productMenu>
  10757. <productMenu id="meshIntercom+"
  10758. type="3"
  10759. url="0" >
  10760. <productMenuType version="1.0.9"
  10761. type="2"
  10762. />
  10763. </productMenu>
  10764. <productMenu id="phone"
  10765. type="1" >
  10766. </productMenu>
  10767. <productMenu id="music"
  10768. type="1" >
  10769. </productMenu>
  10770. <productMenu id="fmradio"
  10771. type="1" >
  10772. </productMenu>
  10773. <productMenu id="deviceSetting"
  10774. type="1"
  10775. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10776. <productMenuURL version="1.0.9"
  10777. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10778. />
  10779. </productMenu>
  10780. <productMenu id="quickGuide"
  10781. type="1"
  10782. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10783. size="1.12MB" >
  10784. </productMenu>
  10785. <productMenu id="userGuide"
  10786. type="1"
  10787. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10788. size="2.0MB" >
  10789. </productMenu>
  10790. <productMenu id="volume"
  10791. type="13" >
  10792. </productMenu>
  10793. <productMenu id="battery"
  10794. type="1" >
  10795. </productMenu>
  10796. <productID id="5553"
  10797. />
  10798. <productGroupable type="0"
  10799. />
  10800. </product>
  10801. <product id="XCOM3Pro"
  10802. name="X-COM3 Pro"
  10803. series="50"
  10804. latestVersion="1.1"
  10805. show = "0" >
  10806. <productMenu id="protocol"
  10807. type="2" >
  10808. </productMenu>
  10809. <productMenu id="alexa"
  10810. type="0" >
  10811. </productMenu>
  10812. <productMenu id="ota"
  10813. type="0" >
  10814. </productMenu>
  10815. <productMenu id="wa"
  10816. type="0" >
  10817. </productMenu>
  10818. <productMenu id="sip"
  10819. type="1" >
  10820. </productMenu>
  10821. <productMenu id="meshIntercom"
  10822. type="30" >
  10823. </productMenu>
  10824. <productMenu id="meshIntercom+"
  10825. type="3"
  10826. url="2" >
  10827. <productMenuType version="1.1"
  10828. type="2"
  10829. />
  10830. </productMenu>
  10831. <productMenu id="waveIntercom"
  10832. type="1" >
  10833. <productMenuType version="1.1"
  10834. type="0"
  10835. />
  10836. </productMenu>
  10837. <productMenu id="bluetoothIntercom"
  10838. type="1" >
  10839. </productMenu>
  10840. <productMenu id="phone"
  10841. type="1" >
  10842. </productMenu>
  10843. <productMenu id="music"
  10844. type="1" >
  10845. </productMenu>
  10846. <productMenu id="fmradio"
  10847. type="1" >
  10848. </productMenu>
  10849. <productMenu id="deviceSetting"
  10850. type="1"
  10851. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10852. <productMenuURL version="1.1"
  10853. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10854. />
  10855. </productMenu>
  10856. <productMenu id="quickGuide"
  10857. type="0"
  10858. url=""
  10859. size="344KB" >
  10860. </productMenu>
  10861. <productMenu id="userGuide"
  10862. type="1"
  10863. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10864. size="3.41MB" >
  10865. </productMenu>
  10866. <productMenu id="volume"
  10867. type="11" >
  10868. </productMenu>
  10869. <productMenu id="battery"
  10870. type="1" >
  10871. </productMenu>
  10872. <productID id="321A"
  10873. />
  10874. <productGroupable type="0"
  10875. />
  10876. </product>
  10877. <product id="XCOM3"
  10878. name="X-COM3"
  10879. series="20"
  10880. latestVersion="1.0"
  10881. show = "0" >
  10882. <productMenu id="protocol"
  10883. type="2" >
  10884. </productMenu>
  10885. <productMenu id="sip"
  10886. type="1" >
  10887. </productMenu>
  10888. <productMenu id="bluetoothIntercom"
  10889. type="1" >
  10890. </productMenu>
  10891. <productMenu id="phone"
  10892. type="1" >
  10893. </productMenu>
  10894. <productMenu id="music"
  10895. type="1" >
  10896. </productMenu>
  10897. <productMenu id="fmradio"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="deviceSetting"
  10901. type="1"
  10902. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10903. </productMenu>
  10904. <productMenu id="quickGuide"
  10905. type="0"
  10906. url=""
  10907. size="934KB" >
  10908. </productMenu>
  10909. <productMenu id="userGuide"
  10910. type="1"
  10911. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10912. size="1.14MB" >
  10913. </productMenu>
  10914. <productMenu id="volume"
  10915. type="15" >
  10916. </productMenu>
  10917. <productID id="3410"
  10918. />
  10919. <productGroupable type="0"
  10920. />
  10921. </product>
  10922. <product id="X-COM2"
  10923. name="X-COM2"
  10924. series="20"
  10925. latestVersion="1.0.5"
  10926. show = "0" >
  10927. <productMenu id="protocol"
  10928. type="0">
  10929. </productMenu>
  10930. <productMenu id="sip"
  10931. type="1" >
  10932. </productMenu>
  10933. <productMenu id="bluetoothIntercom"
  10934. type="1" >
  10935. </productMenu>
  10936. <productMenu id="intercomSetting"
  10937. type="1" >
  10938. </productMenu>
  10939. <productMenu id="phone"
  10940. type="2" >
  10941. </productMenu>
  10942. <productMenu id="fmradio"
  10943. type="3" >
  10944. </productMenu>
  10945. <productMenu id="deviceSetting"
  10946. type="1"
  10947. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10948. </productMenu>
  10949. <productMenu id="quickGuide"
  10950. type="1"
  10951. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10952. size="796KB" >
  10953. </productMenu>
  10954. <productMenu id="userGuide"
  10955. type="1"
  10956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10957. size="1.90MB" >
  10958. </productMenu>
  10959. <productID id="2030"
  10960. />
  10961. <productGroupable type="1"
  10962. />
  10963. </product>
  10964. <product id="AVAABC"
  10965. name="AVA ABC"
  10966. series="SPIDER"
  10967. latestVersion="1.1"
  10968. show = "0" >
  10969. <productMenu id="protocol"
  10970. type="2" >
  10971. </productMenu>
  10972. <productMenu id="alexa"
  10973. type="0" >
  10974. </productMenu>
  10975. <productMenu id="ota"
  10976. type="0" >
  10977. <productMenuType version="1.0"
  10978. type="0"
  10979. />
  10980. <otaPackages>
  10981. <package
  10982. url="https://api.sena.com/support/OTA/"
  10983. size="2945812"
  10984. />
  10985. </otaPackages>
  10986. </productMenu>
  10987. <productMenu id="wa"
  10988. type="0" >
  10989. </productMenu>
  10990. <productMenu id="meshIntercom"
  10991. type="30" >
  10992. <productMenuType version="1.0"
  10993. type="20"
  10994. />
  10995. </productMenu>
  10996. <productMenu id="meshIntercom+"
  10997. type="3"
  10998. url="2" >
  10999. <productMenuType version="1.0"
  11000. type="2"
  11001. />
  11002. <productMenuURL version="1.0"
  11003. url="0"
  11004. />
  11005. </productMenu>
  11006. <productMenu id="waveIntercom"
  11007. type="1" >
  11008. <productMenuType version="1.0"
  11009. type="0"
  11010. />
  11011. </productMenu>
  11012. <productMenu id="phone"
  11013. type="1" >
  11014. </productMenu>
  11015. <productMenu id="music"
  11016. type="1" >
  11017. </productMenu>
  11018. <productMenu id="musicSharing"
  11019. type="0" >
  11020. </productMenu>
  11021. <productMenu id="deviceSetting"
  11022. type="1"
  11023. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  11024. <productMenuURL version="1.0"
  11025. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  11026. />
  11027. </productMenu>
  11028. <productMenu id="quickGuide"
  11029. type="1"
  11030. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  11031. size="1.12MB" >
  11032. </productMenu>
  11033. <productMenu id="userGuide"
  11034. type="1"
  11035. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  11036. size="2.0MB" >
  11037. </productMenu>
  11038. <productMenu id="volume"
  11039. type="12" >
  11040. </productMenu>
  11041. <productMenu id="battery"
  11042. type="1" >
  11043. </productMenu>
  11044. <productID id="6808"
  11045. />
  11046. <productGroupable type="0"
  11047. />
  11048. </product>
  11049. <product id="ADVANCEProCOM2"
  11050. name="ADVANCE ProCOM 2"
  11051. series="Helmet"
  11052. latestVersion="0.5"
  11053. latestVersionVoicePrompt="0.3"
  11054. show = "-1" >
  11055. <productMenu id="protocol"
  11056. type="2" >
  11057. </productMenu>
  11058. <productMenu id="ota"
  11059. type="2" >
  11060. <otaLanguages>
  11061. <otaLanguage
  11062. id="0"
  11063. name="English"
  11064. package="0"
  11065. />
  11066. <otaLanguage
  11067. id="0"
  11068. name="French"
  11069. package="1"
  11070. />
  11071. <otaLanguage
  11072. id="0"
  11073. name="Spanish"
  11074. package="2"
  11075. />
  11076. <otaLanguage
  11077. id="0"
  11078. name="Italian"
  11079. package="3"
  11080. />
  11081. <otaLanguage
  11082. id="0"
  11083. name="German"
  11084. package="4"
  11085. />
  11086. <otaLanguage
  11087. id="0"
  11088. name="Dutch"
  11089. package="5"
  11090. />
  11091. <otaLanguage
  11092. id="0"
  11093. name="Russian"
  11094. package="6"
  11095. />
  11096. <otaLanguage
  11097. id="0"
  11098. name="Chinese"
  11099. package="7"
  11100. />
  11101. <otaLanguage
  11102. id="0"
  11103. name="Korean"
  11104. package="8"
  11105. />
  11106. <otaLanguage
  11107. id="0"
  11108. name="Japanese"
  11109. package="9"
  11110. />
  11111. <otaLanguage
  11112. id="0"
  11113. name="Finnish"
  11114. package="10"
  11115. />
  11116. <otaLanguage
  11117. id="0"
  11118. name="Polish"
  11119. package="11"
  11120. />
  11121. </otaLanguages>
  11122. <otaPackages>
  11123. <package
  11124. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  11125. size="5183988"
  11126. />
  11127. <package
  11128. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  11129. size="5183988"
  11130. />
  11131. <package
  11132. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  11133. size="5183988"
  11134. />
  11135. <package
  11136. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  11137. size="5183988"
  11138. />
  11139. <package
  11140. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  11141. size="5183988"
  11142. />
  11143. <package
  11144. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  11145. size="5183988"
  11146. />
  11147. <package
  11148. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  11149. size="5183988"
  11150. />
  11151. <package
  11152. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  11153. size="5183988"
  11154. />
  11155. <package
  11156. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  11157. size="5183988"
  11158. />
  11159. <package
  11160. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  11161. size="5183988"
  11162. />
  11163. <package
  11164. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  11165. size="5183988"
  11166. />
  11167. <package
  11168. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  11169. size="5183988"
  11170. />
  11171. </otaPackages>
  11172. </productMenu>
  11173. <productMenu id="wa"
  11174. type="0" >
  11175. </productMenu>
  11176. <productMenu id="meshIntercom"
  11177. type="30" >
  11178. </productMenu>
  11179. <productMenu id="meshIntercom+"
  11180. type="3"
  11181. url="2" >
  11182. </productMenu>
  11183. <productMenu id="waveIntercom"
  11184. type="1" >
  11185. </productMenu>
  11186. <productMenu id="fmradio"
  11187. type="1" >
  11188. </productMenu>
  11189. <productMenu id="phone"
  11190. type="0" >
  11191. </productMenu>
  11192. <productMenu id="music"
  11193. type="1" >
  11194. </productMenu>
  11195. <productMenu id="musicSharing"
  11196. type="0" >
  11197. </productMenu>
  11198. <productMenu id="deviceSetting"
  11199. type="1"
  11200. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  11201. </productMenu>
  11202. <productMenu id="quickGuide"
  11203. type="0"
  11204. url=""
  11205. size="1.12MB" >
  11206. </productMenu>
  11207. <productMenu id="userGuide"
  11208. type="1"
  11209. url=""
  11210. size="2.0MB" >
  11211. </productMenu>
  11212. <productMenu id="videoGuide"
  11213. type="0"
  11214. url=""
  11215. size="3.41MB" >
  11216. </productMenu>
  11217. <productMenu id="connectGuide"
  11218. type="1"
  11219. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  11220. size="1.12MB" >
  11221. </productMenu>
  11222. <productMenu id="volume"
  11223. type="16" >
  11224. </productMenu>
  11225. <productMenu id="battery"
  11226. type="1" >
  11227. </productMenu>
  11228. <productID id="6A85"
  11229. />
  11230. <productGroupable type="0"
  11231. />
  11232. </product>
  11233. <product id="TRIUMPH60X"
  11234. name="TRIUMPH 60X"
  11235. series="60"
  11236. latestVersion="1.0"
  11237. latestVersionMesh="0.19"
  11238. latestVersionVoicePrompt="1.7"
  11239. show = "-1" >
  11240. <productMenu id="protocol"
  11241. type="2" >
  11242. </productMenu>
  11243. <productMenu id="ota"
  11244. type="0" >
  11245. <otaLanguages>
  11246. <otaLanguage
  11247. id="0"
  11248. name="English"
  11249. package="0"
  11250. />
  11251. <otaLanguage
  11252. id="0"
  11253. name="French"
  11254. package="1"
  11255. />
  11256. <otaLanguage
  11257. id="0"
  11258. name="Spanish"
  11259. package="2"
  11260. />
  11261. <otaLanguage
  11262. id="0"
  11263. name="Italian"
  11264. package="3"
  11265. />
  11266. <otaLanguage
  11267. id="0"
  11268. name="German"
  11269. package="4"
  11270. />
  11271. <otaLanguage
  11272. id="0"
  11273. name="Dutch"
  11274. package="5"
  11275. />
  11276. <otaLanguage
  11277. id="0"
  11278. name="Russian"
  11279. package="6"
  11280. />
  11281. <otaLanguage
  11282. id="0"
  11283. name="Chinese"
  11284. package="7"
  11285. />
  11286. <otaLanguage
  11287. id="0"
  11288. name="Korean"
  11289. package="8"
  11290. />
  11291. <otaLanguage
  11292. id="0"
  11293. name="Japanese"
  11294. package="9"
  11295. />
  11296. <otaLanguage
  11297. id="0"
  11298. name="Finnish"
  11299. package="10"
  11300. />
  11301. <otaLanguage
  11302. id="0"
  11303. name="Polish"
  11304. package="11"
  11305. />
  11306. </otaLanguages>
  11307. <otaPackages>
  11308. <package
  11309. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5.img"
  11310. size="5183988"
  11311. />
  11312. <package
  11313. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fr-FR.img"
  11314. size="5183988"
  11315. />
  11316. <package
  11317. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-es-ES.img"
  11318. size="5183988"
  11319. />
  11320. <package
  11321. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-it-IT.img"
  11322. size="5183988"
  11323. />
  11324. <package
  11325. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-de-DE.img"
  11326. size="5183988"
  11327. />
  11328. <package
  11329. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-nl-NL.img"
  11330. size="5183988"
  11331. />
  11332. <package
  11333. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ru-RU.img"
  11334. size="5183988"
  11335. />
  11336. <package
  11337. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-cmn-CN.img"
  11338. size="5183988"
  11339. />
  11340. <package
  11341. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ko-KR.img"
  11342. size="5183988"
  11343. />
  11344. <package
  11345. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-ja-JP.img"
  11346. size="5183988"
  11347. />
  11348. <package
  11349. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-fi-FI.img"
  11350. size="5183988"
  11351. />
  11352. <package
  11353. url="https://api.sena.com/support/OTA/Motorcycles/60X/TRIUMPH60X-v1.0-build5-pl-PL.img"
  11354. size="5183988"
  11355. />
  11356. </otaPackages>
  11357. </productMenu>
  11358. <productMenu id="wa"
  11359. type="0" >
  11360. </productMenu>
  11361. <productMenu id="sip"
  11362. type="1" >
  11363. </productMenu>
  11364. <productMenu id="led"
  11365. type="1" >
  11366. </productMenu>
  11367. <productMenu id="illusion"
  11368. type="1" >
  11369. </productMenu>
  11370. <productMenu id="meshIntercom"
  11371. type="30" >
  11372. </productMenu>
  11373. <productMenu id="meshIntercom+"
  11374. type="3"
  11375. url="2" >
  11376. </productMenu>
  11377. <productMenu id="bluetoothIntercom"
  11378. type="1" >
  11379. </productMenu>
  11380. <productMenu id="fmradio"
  11381. type="1"
  11382. url="1" >
  11383. </productMenu>
  11384. <productMenu id="mic"
  11385. type="0" >
  11386. </productMenu>
  11387. <productMenu id="phone"
  11388. type="1" >
  11389. </productMenu>
  11390. <productMenu id="music"
  11391. type="1" >
  11392. </productMenu>
  11393. <productMenu id="musicSharing"
  11394. type="0" >
  11395. </productMenu>
  11396. <productMenu id="deviceSetting"
  11397. type="1"
  11398. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  11399. </productMenu>
  11400. <productMenu id="quickGuide"
  11401. type="0"
  11402. url=""
  11403. size="1.12MB" >
  11404. </productMenu>
  11405. <productMenu id="userGuide"
  11406. type="1"
  11407. url=""
  11408. size="2.0MB" >
  11409. </productMenu>
  11410. <productMenu id="videoGuide"
  11411. type="0"
  11412. url=""
  11413. size="3.41MB" >
  11414. </productMenu>
  11415. <productMenu id="keySettings"
  11416. type="1"
  11417. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  11418. </productMenu>
  11419. <productMenu id="volume"
  11420. type="13" >
  11421. </productMenu>
  11422. <productMenu id="volume+"
  11423. type="2"
  11424. url="0x6004" >
  11425. </productMenu>
  11426. <productMenu id="battery"
  11427. type="1" >
  11428. </productMenu>
  11429. <productID id="6A1C"
  11430. />
  11431. <productGroupable type="0"
  11432. />
  11433. </product>
  11434. <product id="Triumph_50S"
  11435. name="Triumph 50S"
  11436. series="50"
  11437. latestVersion="1.5"
  11438. show = "0" >
  11439. <productMenu id="protocol"
  11440. type="2" >
  11441. </productMenu>
  11442. <productMenu id="alexa"
  11443. type="0" >
  11444. </productMenu>
  11445. <productMenu id="ota"
  11446. type="0"
  11447. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11448. size="1150234" >
  11449. </productMenu>
  11450. <productMenu id="wa"
  11451. type="1" >
  11452. </productMenu>
  11453. <productMenu id="sip"
  11454. type="1" >
  11455. </productMenu>
  11456. <productMenu id="meshIntercom"
  11457. type="20" >
  11458. </productMenu>
  11459. <productMenu id="bluetoothIntercom"
  11460. type="1" >
  11461. </productMenu>
  11462. <productMenu id="meshIntercom+"
  11463. type="3"
  11464. url="2" >
  11465. <productMenuType version="1.2.9"
  11466. type="2"
  11467. />
  11468. <productMenuURL version="1.2.9"
  11469. url="0"
  11470. />
  11471. </productMenu>
  11472. <productMenu id="waveIntercom"
  11473. type="1" >
  11474. <productMenuType version="1.2.9"
  11475. type="0"
  11476. />
  11477. </productMenu>
  11478. <productMenu id="phone"
  11479. type="1" >
  11480. </productMenu>
  11481. <productMenu id="music"
  11482. type="1" >
  11483. </productMenu>
  11484. <productMenu id="fmradio"
  11485. type="1" >
  11486. </productMenu>
  11487. <productMenu id="deviceSetting"
  11488. type="1"
  11489. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11490. <productMenuURL version="1.2.9"
  11491. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  11492. />
  11493. <productMenuURL version="1.0"
  11494. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  11495. />
  11496. </productMenu>
  11497. <productMenu id="quickGuide"
  11498. type="1"
  11499. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  11500. size="934KB" >
  11501. </productMenu>
  11502. <productMenu id="userGuide"
  11503. type="1"
  11504. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  11505. size="1.14MB" >
  11506. </productMenu>
  11507. <productMenu id="volume"
  11508. type="11" >
  11509. </productMenu>
  11510. <productMenu id="battery"
  11511. type="1" >
  11512. </productMenu>
  11513. <productID id="3264"
  11514. />
  11515. <productGroupable type="0"
  11516. />
  11517. </product>
  11518. <product id="RE50S"
  11519. name="RE 50S"
  11520. series="50"
  11521. latestVersion="2.7"
  11522. show = "0" >
  11523. <productMenu id="protocol"
  11524. type="2" >
  11525. </productMenu>
  11526. <productMenu id="alexa"
  11527. type="0" >
  11528. </productMenu>
  11529. <productMenu id="ota"
  11530. type="0"
  11531. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  11532. size="1150234" >
  11533. </productMenu>
  11534. <productMenu id="wa"
  11535. type="1" >
  11536. </productMenu>
  11537. <productMenu id="sip"
  11538. type="1" >
  11539. </productMenu>
  11540. <productMenu id="meshIntercom"
  11541. type="30" >
  11542. </productMenu>
  11543. <productMenu id="meshIntercom+"
  11544. type="3"
  11545. url="2" >
  11546. <productMenuType version="2.5"
  11547. type="2"
  11548. />
  11549. </productMenu>
  11550. <productMenu id="waveIntercom"
  11551. type="1" >
  11552. <productMenuType version="2.5"
  11553. type="0"
  11554. />
  11555. </productMenu>
  11556. <productMenu id="bluetoothIntercom"
  11557. type="1" >
  11558. </productMenu>
  11559. <productMenu id="phone"
  11560. type="1" >
  11561. </productMenu>
  11562. <productMenu id="music"
  11563. type="1" >
  11564. </productMenu>
  11565. <productMenu id="fmradio"
  11566. type="1" >
  11567. </productMenu>
  11568. <productMenu id="deviceSetting"
  11569. type="1"
  11570. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11571. <productMenuURL version="2.5.9"
  11572. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11573. />
  11574. </productMenu>
  11575. <productMenu id="quickGuide"
  11576. type="1"
  11577. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11578. size="934KB" >
  11579. </productMenu>
  11580. <productMenu id="userGuide"
  11581. type="1"
  11582. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11583. size="1.14MB" >
  11584. </productMenu>
  11585. <productMenu id="videoGuide"
  11586. type="0"
  11587. url=""
  11588. size="3.41MB" >
  11589. </productMenu>
  11590. <productMenu id="volume"
  11591. type="11" >
  11592. </productMenu>
  11593. <productMenu id="battery"
  11594. type="1" >
  11595. </productMenu>
  11596. <productID id="321C"
  11597. />
  11598. <productGroupable type="0"
  11599. />
  11600. </product>
  11601. <product id="BMW_HELMET_II_U1"
  11602. name="BMW HELMET II U1"
  11603. series="50"
  11604. latestVersion="1.0"
  11605. show = "0" >
  11606. <productMenu id="protocol"
  11607. type="2" >
  11608. </productMenu>
  11609. <productMenu id="alexa"
  11610. type="0" >
  11611. </productMenu>
  11612. <productMenu id="sip"
  11613. type="1" >
  11614. </productMenu>
  11615. <productMenu id="meshIntercom"
  11616. type="20" >
  11617. </productMenu>
  11618. <productMenu id="bluetoothIntercom"
  11619. type="1" >
  11620. </productMenu>
  11621. <productMenu id="bluetoothIntercom2"
  11622. type="1" >
  11623. </productMenu>
  11624. <productMenu id="phone"
  11625. type="1" >
  11626. </productMenu>
  11627. <productMenu id="music"
  11628. type="1" >
  11629. </productMenu>
  11630. <productMenu id="fmradio"
  11631. type="1" >
  11632. </productMenu>
  11633. <productMenu id="deviceSetting"
  11634. type="1"
  11635. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11636. </productMenu>
  11637. <productMenu id="quickGuide"
  11638. type="1"
  11639. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11640. size="934KB" >
  11641. </productMenu>
  11642. <productMenu id="userGuide"
  11643. type="1"
  11644. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11645. size="1.14MB" >
  11646. </productMenu>
  11647. <productMenu id="volume"
  11648. type="11" >
  11649. </productMenu>
  11650. <productMenu id="battery"
  11651. type="1" >
  11652. </productMenu>
  11653. <productID id="3260"
  11654. />
  11655. <productGroupable type="0"
  11656. />
  11657. </product>
  11658. <product id="OUTRUSHR"
  11659. name="CX935"
  11660. series="Helmet"
  11661. latestVersion="2.1"
  11662. show = "-1" >
  11663. <productMenu id="protocol"
  11664. type="3">
  11665. </productMenu>
  11666. <productMenu id="sip"
  11667. type="1" >
  11668. </productMenu>
  11669. <productMenu id="bluetoothIntercom"
  11670. type="1" >
  11671. </productMenu>
  11672. <productMenu id="phone"
  11673. type="1" >
  11674. </productMenu>
  11675. <productMenu id="fmradio"
  11676. type="0" >
  11677. </productMenu>
  11678. <productMenu id="deviceSetting"
  11679. type="1"
  11680. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11681. </productMenu>
  11682. <productMenu id="userGuide"
  11683. type="1"
  11684. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11685. size="660KB" >
  11686. </productMenu>
  11687. <productID id="5446"
  11688. />
  11689. <productGroupable type="0"
  11690. />
  11691. </product>
  11692. <product id="LSE_01"
  11693. name="LSE-01"
  11694. series="SF"
  11695. latestVersion="1.2.3"
  11696. show = "0" >
  11697. <productMenu id="protocol"
  11698. type="1"
  11699. url="3">
  11700. </productMenu>
  11701. <productMenu id="sip"
  11702. type="1" >
  11703. </productMenu>
  11704. <productMenu id="bluetoothIntercom"
  11705. type="1" >
  11706. </productMenu>
  11707. <productMenu id="phone"
  11708. type="1" >
  11709. </productMenu>
  11710. <productMenu id="music"
  11711. type="1" >
  11712. </productMenu>
  11713. <productMenu id="fmradio"
  11714. type="1" >
  11715. </productMenu>
  11716. <productMenu id="deviceSetting"
  11717. type="1"
  11718. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11719. <productMenuURL version="1.1"
  11720. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11721. />
  11722. <productMenuURL version="1.0"
  11723. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11724. />
  11725. </productMenu>
  11726. <productMenu id="quickGuide"
  11727. type="1"
  11728. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11729. size="607KB" >
  11730. </productMenu>
  11731. <productMenu id="userGuide"
  11732. type="1"
  11733. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11734. size="1.91MB" >
  11735. </productMenu>
  11736. <productMenu id="volume"
  11737. type="4" >
  11738. </productMenu>
  11739. <productID id="5416"
  11740. />
  11741. <productGroupable type="0"
  11742. />
  11743. </product>
  11744. <product id="AGV_ARK"
  11745. name="AGV ARK"
  11746. series="SF"
  11747. latestVersion="1.0.3"
  11748. show = "0" >
  11749. <productMenu id="protocol"
  11750. type="1"
  11751. url="3">
  11752. </productMenu>
  11753. <productMenu id="sip"
  11754. type="1" >
  11755. </productMenu>
  11756. <productMenu id="bluetoothIntercom"
  11757. type="1" >
  11758. </productMenu>
  11759. <productMenu id="phone"
  11760. type="1" >
  11761. </productMenu>
  11762. <productMenu id="music"
  11763. type="1" >
  11764. </productMenu>
  11765. <productMenu id="fmradio"
  11766. type="1" >
  11767. </productMenu>
  11768. <productMenu id="deviceSetting"
  11769. type="1"
  11770. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11771. </productMenu>
  11772. <productMenu id="quickGuide"
  11773. type="1"
  11774. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11775. size="607KB" >
  11776. </productMenu>
  11777. <productMenu id="userGuide"
  11778. type="1"
  11779. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11780. size="1.91MB" >
  11781. </productMenu>
  11782. <productMenu id="volume"
  11783. type="4" >
  11784. </productMenu>
  11785. <productID id="5420"
  11786. />
  11787. <productGroupable type="0"
  11788. />
  11789. </product>
  11790. <product id="KLIM_KRIOS"
  11791. name="KLIM Krios"
  11792. series="10"
  11793. latestVersion="1.1.2"
  11794. show = "0" >
  11795. <productMenu id="protocol"
  11796. type="0">
  11797. </productMenu>
  11798. <productMenu id="sip"
  11799. type="1" >
  11800. </productMenu>
  11801. <productMenu id="bluetoothIntercom"
  11802. type="1" >
  11803. </productMenu>
  11804. <productMenu id="phone"
  11805. type="2" >
  11806. </productMenu>
  11807. <productMenu id="fmradio"
  11808. type="3" >
  11809. </productMenu>
  11810. <productMenu id="deviceSetting"
  11811. type="1"
  11812. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11813. <productMenuURL version="1.0"
  11814. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11815. />
  11816. </productMenu>
  11817. <productMenu id="quickGuide"
  11818. type="1"
  11819. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11820. size="649KB" >
  11821. </productMenu>
  11822. <productMenu id="userGuide"
  11823. type="1"
  11824. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11825. size="1.43MB" >
  11826. </productMenu>
  11827. <productID id="5910"
  11828. />
  11829. <productGroupable type="0"
  11830. />
  11831. </product>
  11832. <product id="POLARIS_SLINGSHOT"
  11833. name="Polaris Slingshot"
  11834. series="10"
  11835. latestVersion="1.1.2"
  11836. show = "0" >
  11837. <productMenu id="protocol"
  11838. type="0">
  11839. </productMenu>
  11840. <productMenu id="sip"
  11841. type="1" >
  11842. </productMenu>
  11843. <productMenu id="bluetoothIntercom"
  11844. type="1" >
  11845. </productMenu>
  11846. <productMenu id="phone"
  11847. type="2" >
  11848. </productMenu>
  11849. <productMenu id="fmradio"
  11850. type="3" >
  11851. </productMenu>
  11852. <productMenu id="deviceSetting"
  11853. type="1"
  11854. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11855. <productMenuURL version="1.0"
  11856. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11857. />
  11858. </productMenu>
  11859. <productMenu id="quickGuide"
  11860. type="1"
  11861. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11862. size="689KB" >
  11863. </productMenu>
  11864. <productMenu id="userGuide"
  11865. type="1"
  11866. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11867. size="1.43MB" >
  11868. </productMenu>
  11869. <productID id="5920"
  11870. />
  11871. <productGroupable type="0"
  11872. />
  11873. </product>
  11874. <product id="DWO6"
  11875. name="SEDICI DWO6-PRO"
  11876. series="10"
  11877. latestVersion="1.0.2"
  11878. show = "0" >
  11879. <productMenu id="protocol"
  11880. type="0">
  11881. </productMenu>
  11882. <productMenu id="sip"
  11883. type="1" >
  11884. </productMenu>
  11885. <productMenu id="bluetoothIntercom"
  11886. type="1" >
  11887. </productMenu>
  11888. <productMenu id="phone"
  11889. type="2" >
  11890. </productMenu>
  11891. <productMenu id="fmradio"
  11892. type="3" >
  11893. </productMenu>
  11894. <productMenu id="deviceSetting"
  11895. type="1"
  11896. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11897. </productMenu>
  11898. <productMenu id="quickGuide"
  11899. type="1"
  11900. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11901. size="529KB" >
  11902. </productMenu>
  11903. <productMenu id="userGuide"
  11904. type="1"
  11905. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11906. size="4.09MB" >
  11907. </productMenu>
  11908. <productID id="6112"
  11909. />
  11910. <productGroupable type="0"
  11911. />
  11912. </product>
  11913. <product id="DWO6A"
  11914. name="SEDICI DWO-6"
  11915. series="10"
  11916. latestVersion="1.0.2"
  11917. show = "0" >
  11918. <productMenu id="protocol"
  11919. type="0">
  11920. </productMenu>
  11921. <productMenu id="sip"
  11922. type="1" >
  11923. </productMenu>
  11924. <productMenu id="bluetoothIntercom"
  11925. type="1" >
  11926. </productMenu>
  11927. <productMenu id="phone"
  11928. type="2" >
  11929. </productMenu>
  11930. <productMenu id="fmradio"
  11931. type="3" >
  11932. </productMenu>
  11933. <productMenu id="deviceSetting"
  11934. type="1"
  11935. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11936. </productMenu>
  11937. <productMenu id="quickGuide"
  11938. type="1"
  11939. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11940. size="522KB" >
  11941. </productMenu>
  11942. <productMenu id="userGuide"
  11943. type="1"
  11944. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11945. size="2.71MB" >
  11946. </productMenu>
  11947. <productID id="6114"
  11948. />
  11949. <productGroupable type="0"
  11950. />
  11951. </product>
  11952. <product id="3SPLUS"
  11953. name="ZILL"
  11954. series="3"
  11955. latestVersion="1.0.4"
  11956. show = "0" >
  11957. <productMenu id="protocol"
  11958. type="0">
  11959. </productMenu>
  11960. <productMenu id="sip"
  11961. type="1" >
  11962. </productMenu>
  11963. <productMenu id="bluetoothIntercom"
  11964. type="1" >
  11965. </productMenu>
  11966. <productMenu id="deviceSetting"
  11967. type="1"
  11968. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11969. </productMenu>
  11970. <productMenu id="quickGuide"
  11971. type="1"
  11972. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11973. size="842KB" >
  11974. </productMenu>
  11975. <productMenu id="userGuide"
  11976. type="1"
  11977. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11978. size="1.02MB" >
  11979. </productMenu>
  11980. <productID id="6335"
  11981. />
  11982. <productGroupable type="0"
  11983. />
  11984. </product>
  11985. <product id="HD50S"
  11986. name="Boom! Audio 30K"
  11987. series="30"
  11988. latestVersion="3.4"
  11989. show = "0" >
  11990. <productMenu id="protocol"
  11991. type="1"
  11992. url="0">
  11993. </productMenu>
  11994. <productMenu id="wa"
  11995. type="0" >
  11996. </productMenu>
  11997. <productMenu id="sip"
  11998. type="1" >
  11999. </productMenu>
  12000. <productMenu id="meshIntercom"
  12001. type="20" >
  12002. <productMenuType version="2.9.9"
  12003. type="10"
  12004. />
  12005. </productMenu>
  12006. <productMenu id="bluetoothIntercom"
  12007. type="1" >
  12008. </productMenu>
  12009. <productMenu id="phone"
  12010. type="1" >
  12011. </productMenu>
  12012. <productMenu id="music"
  12013. type="1" >
  12014. </productMenu>
  12015. <productMenu id="fmradio"
  12016. type="1" >
  12017. </productMenu>
  12018. <productMenu id="deviceSetting"
  12019. type="1"
  12020. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  12021. <productMenuURL version="3.2"
  12022. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  12023. />
  12024. <productMenuURL version="3.0"
  12025. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  12026. />
  12027. <productMenuURL version="2.2"
  12028. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12029. />
  12030. </productMenu>
  12031. <productMenu id="quickGuide"
  12032. type="1"
  12033. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12034. size="1.06MB" >
  12035. </productMenu>
  12036. <productMenu id="userGuide"
  12037. type="1"
  12038. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  12039. size="3.15MB" >
  12040. </productMenu>
  12041. <productMenu id="volume"
  12042. type="1" >
  12043. </productMenu>
  12044. <productID id="3112"
  12045. />
  12046. <productGroupable type="0"
  12047. />
  12048. </product>
  12049. <product id="HD50S"
  12050. name="Boom! Audio N02"
  12051. series="30"
  12052. latestVersion="3.1"
  12053. show = "0" >
  12054. <productMenu id="protocol"
  12055. type="1"
  12056. url="0">
  12057. </productMenu>
  12058. <productMenu id="wa"
  12059. type="2" >
  12060. </productMenu>
  12061. <productMenu id="sip"
  12062. type="1" >
  12063. </productMenu>
  12064. <productMenu id="meshIntercom"
  12065. type="20" >
  12066. <productMenuType version="2.9.9"
  12067. type="10"
  12068. />
  12069. </productMenu>
  12070. <productMenu id="bluetoothIntercom"
  12071. type="1" >
  12072. </productMenu>
  12073. <productMenu id="phone"
  12074. type="1" >
  12075. </productMenu>
  12076. <productMenu id="music"
  12077. type="1" >
  12078. </productMenu>
  12079. <productMenu id="fmradio"
  12080. type="1" >
  12081. </productMenu>
  12082. <productMenu id="deviceSetting"
  12083. type="1"
  12084. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  12085. <productMenuURL version="2.2"
  12086. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  12087. />
  12088. </productMenu>
  12089. <productMenu id="quickGuide"
  12090. type="1"
  12091. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  12092. size="1.06MB" >
  12093. </productMenu>
  12094. <productMenu id="userGuide"
  12095. type="1"
  12096. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  12097. size="3.15MB" >
  12098. </productMenu>
  12099. <productMenu id="volume"
  12100. type="2" >
  12101. </productMenu>
  12102. <productID id="3114"
  12103. />
  12104. <productGroupable type="0"
  12105. />
  12106. </product>
  12107. <product id="HD50S"
  12108. name="Boom Audio 20S"
  12109. series="50"
  12110. latestVersion="2.5.2"
  12111. show = "0" >
  12112. <productMenu id="protocol"
  12113. type="0">
  12114. </productMenu>
  12115. <productMenu id="sip"
  12116. type="1" >
  12117. <productMenuType version="1.0"
  12118. type="0"
  12119. />
  12120. </productMenu>
  12121. <productMenu id="bluetoothIntercom"
  12122. type="1" >
  12123. <productMenuType version="1.0"
  12124. type="0"
  12125. />
  12126. </productMenu>
  12127. <productMenu id="intercomSetting"
  12128. type="1" >
  12129. </productMenu>
  12130. <productMenu id="phone"
  12131. type="2" >
  12132. </productMenu>
  12133. <productMenu id="fmradio"
  12134. type="3" >
  12135. </productMenu>
  12136. <productMenu id="deviceSetting"
  12137. type="1"
  12138. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12139. <productMenuURL version="2.4"
  12140. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12141. />
  12142. <productMenuURL version="1.5"
  12143. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12144. />
  12145. <productMenuURL version="1.4.1"
  12146. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12147. />
  12148. <productMenuURL version="1.1"
  12149. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12150. />
  12151. <productMenuURL version="1.0"
  12152. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12153. />
  12154. </productMenu>
  12155. <productMenu id="quickGuide"
  12156. type="1"
  12157. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12158. size="264KB" >
  12159. </productMenu>
  12160. <productMenu id="userGuide"
  12161. type="1"
  12162. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12163. size="3.09MB" >
  12164. </productMenu>
  12165. <productMenu id="connectGuide"
  12166. type="1"
  12167. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  12168. size="1.12MB" >
  12169. </productMenu>
  12170. <productID id="4210"
  12171. />
  12172. <productProductKey key="11"
  12173. />
  12174. <productID id="4230"
  12175. />
  12176. <productProductKey key="11"
  12177. />
  12178. <productGroupable type="1"
  12179. />
  12180. </product>
  12181. <product id="HD50S"
  12182. name="Boom Audio 20S EVO"
  12183. series="50"
  12184. latestVersion="2.5.2"
  12185. show = "0" >
  12186. <productMenu id="protocol"
  12187. type="0">
  12188. </productMenu>
  12189. <productMenu id="sip"
  12190. type="1" >
  12191. <productMenuType version="1.0"
  12192. type="0"
  12193. />
  12194. </productMenu>
  12195. <productMenu id="bluetoothIntercom"
  12196. type="1" >
  12197. <productMenuType version="1.0"
  12198. type="0"
  12199. />
  12200. </productMenu>
  12201. <productMenu id="intercomSetting"
  12202. type="1" >
  12203. </productMenu>
  12204. <productMenu id="phone"
  12205. type="2" >
  12206. </productMenu>
  12207. <productMenu id="fmradio"
  12208. type="3" >
  12209. </productMenu>
  12210. <productMenu id="deviceSetting"
  12211. type="1"
  12212. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  12213. <productMenuURL version="2.4"
  12214. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  12215. />
  12216. <productMenuURL version="1.5"
  12217. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  12218. />
  12219. <productMenuURL version="1.4.1"
  12220. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  12221. />
  12222. <productMenuURL version="1.1"
  12223. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  12224. />
  12225. <productMenuURL version="1.0"
  12226. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  12227. />
  12228. </productMenu>
  12229. <productMenu id="quickGuide"
  12230. type="1"
  12231. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  12232. size="321KB" >
  12233. </productMenu>
  12234. <productMenu id="userGuide"
  12235. type="1"
  12236. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  12237. size="2.46MB" >
  12238. </productMenu>
  12239. <productID id="4230"
  12240. />
  12241. <productProductKey key="27"
  12242. />
  12243. <productGroupable type="1"
  12244. />
  12245. </product>
  12246. <product id="HD50S"
  12247. name="Boom! Audio 10S"
  12248. series="50"
  12249. latestVersion="1.1.3"
  12250. show = "0" >
  12251. <productMenu id="protocol"
  12252. type="0">
  12253. </productMenu>
  12254. <productMenu id="sip"
  12255. type="1" >
  12256. </productMenu>
  12257. <productMenu id="bluetoothIntercom"
  12258. type="1" >
  12259. </productMenu>
  12260. <productMenu id="phone"
  12261. type="2" >
  12262. </productMenu>
  12263. <productMenu id="fmradio"
  12264. type="3" >
  12265. </productMenu>
  12266. <productMenu id="deviceSetting"
  12267. type="1"
  12268. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  12269. </productMenu>
  12270. <productMenu id="quickGuide"
  12271. type="1"
  12272. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12273. size="538KB" >
  12274. </productMenu>
  12275. <productMenu id="userGuide"
  12276. type="1"
  12277. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  12278. size="1.55MB" >
  12279. </productMenu>
  12280. <productID id="5532"
  12281. />
  12282. <productGroupable type="0"
  12283. />
  12284. </product>
  12285. <product id="HD50S"
  12286. name="Boom! Audio N01 10R"
  12287. series="50"
  12288. latestVersion="1.1.3"
  12289. show = "0" >
  12290. <productMenu id="protocol"
  12291. type="0">
  12292. </productMenu>
  12293. <productMenu id="sip"
  12294. type="1" >
  12295. </productMenu>
  12296. <productMenu id="bluetoothIntercom"
  12297. type="1" >
  12298. </productMenu>
  12299. <productMenu id="phone"
  12300. type="2" >
  12301. </productMenu>
  12302. <productMenu id="fmradio"
  12303. type="3" >
  12304. </productMenu>
  12305. <productMenu id="deviceSetting"
  12306. type="1"
  12307. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  12308. </productMenu>
  12309. <productMenu id="quickGuide"
  12310. type="1"
  12311. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12312. size="766KB" >
  12313. </productMenu>
  12314. <productMenu id="userGuide"
  12315. type="1"
  12316. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  12317. size="1.45MB" >
  12318. </productMenu>
  12319. <productID id="5522"
  12320. />
  12321. <productGroupable type="0"
  12322. />
  12323. </product>
  12324. <product id="HD50S"
  12325. name="OUTRUSH-R N03"
  12326. series="50"
  12327. latestVersion="1.2.1"
  12328. show = "-1" >
  12329. <productMenu id="protocol"
  12330. type="0">
  12331. </productMenu>
  12332. <productMenu id="sip"
  12333. type="1" >
  12334. </productMenu>
  12335. <productMenu id="bluetoothIntercom"
  12336. type="1" >
  12337. </productMenu>
  12338. <productMenu id="phone"
  12339. type="2" >
  12340. </productMenu>
  12341. <productMenu id="fmradio"
  12342. type="3" >
  12343. </productMenu>
  12344. <productMenu id="deviceSetting"
  12345. type="1"
  12346. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  12347. </productMenu>
  12348. <productMenu id="userGuide"
  12349. type="1"
  12350. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  12351. size="660KB" >
  12352. </productMenu>
  12353. <productID id="5434"
  12354. />
  12355. <productGroupable type="0"
  12356. />
  12357. </product>
  12358. <product id="HD50S"
  12359. name="OUTRUSH-R N03"
  12360. series="50"
  12361. latestVersion="2.0"
  12362. show = "0" >
  12363. <productMenu id="protocol"
  12364. type="3" >
  12365. </productMenu>
  12366. <productMenu id="sip"
  12367. type="1" >
  12368. </productMenu>
  12369. <productMenu id="bluetoothIntercom"
  12370. type="1" >
  12371. </productMenu>
  12372. <productMenu id="phone"
  12373. type="1" >
  12374. </productMenu>
  12375. <productMenu id="fmradio"
  12376. type="1" >
  12377. </productMenu>
  12378. <productMenu id="deviceSetting"
  12379. type="1"
  12380. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  12381. </productMenu>
  12382. <productMenu id="userGuide"
  12383. type="1"
  12384. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  12385. size="1.14MB" >
  12386. </productMenu>
  12387. <productID id="5441"
  12388. />
  12389. <productGroupable type="0"
  12390. />
  12391. </product>
  12392. <product id="5R"
  12393. name="5R"
  12394. series="5"
  12395. latestVersion="1.0.1"
  12396. show = "1" >
  12397. <productMenu id="protocol"
  12398. type="3" >
  12399. </productMenu>
  12400. <productMenu id="sip"
  12401. type="1" >
  12402. </productMenu>
  12403. <productMenu id="bluetoothIntercom"
  12404. type="1" >
  12405. </productMenu>
  12406. <productMenu id="phone"
  12407. type="1" >
  12408. </productMenu>
  12409. <productMenu id="fmradio"
  12410. type="1" >
  12411. </productMenu>
  12412. <productMenu id="deviceSetting"
  12413. type="1"
  12414. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12415. </productMenu>
  12416. <productMenu id="quickGuide"
  12417. type="0"
  12418. url=""
  12419. size="934KB" >
  12420. </productMenu>
  12421. <productMenu id="userGuide"
  12422. type="1"
  12423. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  12424. size="1.14MB" >
  12425. </productMenu>
  12426. <productMenu id="connectGuide"
  12427. type="1"
  12428. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12429. size="1.12MB" >
  12430. </productMenu>
  12431. <productID id="5591"
  12432. />
  12433. <productGroupable type="0"
  12434. />
  12435. </product>
  12436. <product id="5R"
  12437. name="5R LITE"
  12438. series="5"
  12439. latestVersion="1.0.1"
  12440. show = "1" >
  12441. <productMenu id="protocol"
  12442. type="3" >
  12443. </productMenu>
  12444. <productMenu id="sip"
  12445. type="1" >
  12446. </productMenu>
  12447. <productMenu id="bluetoothIntercom"
  12448. type="1" >
  12449. </productMenu>
  12450. <productMenu id="phone"
  12451. type="1" >
  12452. </productMenu>
  12453. <productMenu id="fmradio"
  12454. type="1" >
  12455. </productMenu>
  12456. <productMenu id="deviceSetting"
  12457. type="1"
  12458. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12459. </productMenu>
  12460. <productMenu id="quickGuide"
  12461. type="0"
  12462. url=""
  12463. size="934KB" >
  12464. </productMenu>
  12465. <productMenu id="userGuide"
  12466. type="1"
  12467. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12468. size="1.14MB" >
  12469. </productMenu>
  12470. <productMenu id="connectGuide"
  12471. type="1"
  12472. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  12473. size="1.12MB" >
  12474. </productMenu>
  12475. <productID id="5592"
  12476. />
  12477. <productGroupable type="0"
  12478. />
  12479. </product>
  12480. <product id="50RLE"
  12481. name="50R LE"
  12482. series="50"
  12483. latestVersion="1.1"
  12484. show = "0" >
  12485. <productMenu id="protocol"
  12486. type="2" >
  12487. </productMenu>
  12488. <productMenu id="alexa"
  12489. type="0" >
  12490. </productMenu>
  12491. <productMenu id="sip"
  12492. type="1" >
  12493. </productMenu>
  12494. <productMenu id="meshIntercom"
  12495. type="30" >
  12496. </productMenu>
  12497. <productMenu id="meshIntercom+"
  12498. type="3"
  12499. url="2" >
  12500. <productMenuType version="1.0.9"
  12501. type="2"
  12502. />
  12503. </productMenu>
  12504. <productMenu id="waveIntercom"
  12505. type="1" >
  12506. <productMenuType version="1.0.9"
  12507. type="0"
  12508. />
  12509. </productMenu>
  12510. <productMenu id="bluetoothIntercom"
  12511. type="1" >
  12512. </productMenu>
  12513. <productMenu id="phone"
  12514. type="1" >
  12515. </productMenu>
  12516. <productMenu id="music"
  12517. type="1" >
  12518. </productMenu>
  12519. <productMenu id="fmradio"
  12520. type="0" >
  12521. </productMenu>
  12522. <productMenu id="deviceSetting"
  12523. type="1"
  12524. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  12525. <productMenuURL version="1.0.9"
  12526. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  12527. />
  12528. </productMenu>
  12529. <productMenu id="quickGuide"
  12530. type="0"
  12531. url=""
  12532. size="344KB" >
  12533. </productMenu>
  12534. <productMenu id="userGuide"
  12535. type="0"
  12536. url=""
  12537. size="3.41MB" >
  12538. </productMenu>
  12539. <productMenu id="volume"
  12540. type="11" >
  12541. </productMenu>
  12542. <productMenu id="battery"
  12543. type="1" >
  12544. </productMenu>
  12545. <productID id="3223"
  12546. />
  12547. <productGroupable type="0"
  12548. />
  12549. </product>
  12550. <product id="5RLOUIS"
  12551. name="5R LOUIS EDITION"
  12552. series="5"
  12553. latestVersion="1.0"
  12554. show = "-1" >
  12555. <productMenu id="protocol"
  12556. type="3" >
  12557. </productMenu>
  12558. <productMenu id="sip"
  12559. type="1" >
  12560. </productMenu>
  12561. <productMenu id="bluetoothIntercom"
  12562. type="1" >
  12563. </productMenu>
  12564. <productMenu id="phone"
  12565. type="1" >
  12566. </productMenu>
  12567. <productMenu id="fmradio"
  12568. type="1" >
  12569. </productMenu>
  12570. <productMenu id="deviceSetting"
  12571. type="1"
  12572. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12573. </productMenu>
  12574. <productMenu id="quickGuide"
  12575. type="0"
  12576. url=""
  12577. size="934KB" >
  12578. </productMenu>
  12579. <productMenu id="userGuide"
  12580. type="0"
  12581. url=""
  12582. size="1.14MB" >
  12583. </productMenu>
  12584. <productID id="5597"
  12585. />
  12586. <productGroupable type="0"
  12587. />
  12588. </product>
  12589. <product id="5S"
  12590. name="Ridekont 5S"
  12591. series="5"
  12592. latestVersion="2.3"
  12593. show = "-1" >
  12594. <productMenu id="protocol"
  12595. type="3" >
  12596. </productMenu>
  12597. <productMenu id="sip"
  12598. type="1" >
  12599. </productMenu>
  12600. <productMenu id="bluetoothIntercom"
  12601. type="1" >
  12602. </productMenu>
  12603. <productMenu id="phone"
  12604. type="1" >
  12605. </productMenu>
  12606. <productMenu id="fmradio"
  12607. type="0" >
  12608. </productMenu>
  12609. <productMenu id="deviceSetting"
  12610. type="1"
  12611. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12612. </productMenu>
  12613. <productMenu id="quickGuide"
  12614. type="0"
  12615. url=""
  12616. size="934KB" >
  12617. </productMenu>
  12618. <productMenu id="userGuide"
  12619. type="1"
  12620. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12621. size="1.14MB" >
  12622. </productMenu>
  12623. <productID id="5589"
  12624. />
  12625. <productGroupable type="0"
  12626. />
  12627. </product>
  12628. <product id="5R"
  12629. name="Ridekont 5R"
  12630. series="5"
  12631. latestVersion="1.0"
  12632. show = "0" >
  12633. <productMenu id="protocol"
  12634. type="3" >
  12635. </productMenu>
  12636. <productMenu id="sip"
  12637. type="1" >
  12638. </productMenu>
  12639. <productMenu id="bluetoothIntercom"
  12640. type="1" >
  12641. </productMenu>
  12642. <productMenu id="phone"
  12643. type="1" >
  12644. </productMenu>
  12645. <productMenu id="fmradio"
  12646. type="1" >
  12647. </productMenu>
  12648. <productMenu id="deviceSetting"
  12649. type="1"
  12650. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12651. </productMenu>
  12652. <productMenu id="quickGuide"
  12653. type="1"
  12654. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12655. size="934KB" >
  12656. </productMenu>
  12657. <productMenu id="userGuide"
  12658. type="1"
  12659. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12660. size="1.14MB" >
  12661. </productMenu>
  12662. <productID id="5593"
  12663. />
  12664. <productGroupable type="0"
  12665. />
  12666. </product>
  12667. <product id="5R"
  12668. name="Ridekont 5R LITE"
  12669. series="5"
  12670. latestVersion="1.0"
  12671. show = "0" >
  12672. <productMenu id="protocol"
  12673. type="3" >
  12674. </productMenu>
  12675. <productMenu id="sip"
  12676. type="1" >
  12677. </productMenu>
  12678. <productMenu id="bluetoothIntercom"
  12679. type="1" >
  12680. </productMenu>
  12681. <productMenu id="phone"
  12682. type="1" >
  12683. </productMenu>
  12684. <productMenu id="fmradio"
  12685. type="1" >
  12686. </productMenu>
  12687. <productMenu id="deviceSetting"
  12688. type="1"
  12689. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12690. </productMenu>
  12691. <productMenu id="quickGuide"
  12692. type="0"
  12693. url=""
  12694. size="934KB" >
  12695. </productMenu>
  12696. <productMenu id="userGuide"
  12697. type="1"
  12698. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12699. size="1.14MB" >
  12700. </productMenu>
  12701. <productID id="5594"
  12702. />
  12703. <productGroupable type="0"
  12704. />
  12705. </product>
  12706. <product id="SA30"
  12707. name="SA30"
  12708. series="SA"
  12709. latestVersion="1.0.3"
  12710. latestVersionVoicePrompt="0.15"
  12711. show = "-1" >
  12712. <productMenu id="protocol"
  12713. type="2" >
  12714. </productMenu>
  12715. <productMenu id="ota"
  12716. type="2" >
  12717. <otaPackages>
  12718. <package
  12719. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.3-build0.img"
  12720. size="3144148"
  12721. />
  12722. </otaPackages>
  12723. </productMenu>
  12724. <productMenu id="meshIntercom"
  12725. type="30" >
  12726. </productMenu>
  12727. <productMenu id="meshIntercom+"
  12728. type="3"
  12729. url="2" >
  12730. </productMenu>
  12731. <productMenu id="phone"
  12732. type="1" >
  12733. </productMenu>
  12734. <productMenu id="music"
  12735. type="1" >
  12736. </productMenu>
  12737. <productMenu id="musicSharing"
  12738. type="0" >
  12739. </productMenu>
  12740. <productMenu id="deviceSetting"
  12741. type="1"
  12742. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12743. </productMenu>
  12744. <productMenu id="quickGuide"
  12745. type="0"
  12746. url=""
  12747. size="1.12MB" >
  12748. </productMenu>
  12749. <productMenu id="userGuide"
  12750. type="1"
  12751. url=""
  12752. size="2.0MB" >
  12753. </productMenu>
  12754. <productMenu id="videoGuide"
  12755. type="0"
  12756. url=""
  12757. size="3.41MB" >
  12758. </productMenu>
  12759. <productMenu id="volume"
  12760. type="12" >
  12761. </productMenu>
  12762. <productMenu id="battery"
  12763. type="1" >
  12764. </productMenu>
  12765. <productID id="6852"
  12766. />
  12767. <productGroupable type="0"
  12768. />
  12769. </product>
  12770. <product id="I30"
  12771. name="I30"
  12772. series="I"
  12773. latestVersion="1.0.3"
  12774. latestVersionVoicePrompt="0.2"
  12775. show = "-1" >
  12776. <productMenu id="protocol"
  12777. type="2" >
  12778. </productMenu>
  12779. <productMenu id="ota"
  12780. type="2" >
  12781. <otaPackages>
  12782. <package
  12783. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.3-build0.img"
  12784. size="3144148"
  12785. />
  12786. </otaPackages>
  12787. </productMenu>
  12788. <productMenu id="meshIntercom"
  12789. type="30" >
  12790. </productMenu>
  12791. <productMenu id="meshIntercom+"
  12792. type="3"
  12793. url="2" >
  12794. </productMenu>
  12795. <productMenu id="phone"
  12796. type="1" >
  12797. </productMenu>
  12798. <productMenu id="music"
  12799. type="1" >
  12800. </productMenu>
  12801. <productMenu id="musicSharing"
  12802. type="0" >
  12803. </productMenu>
  12804. <productMenu id="deviceSetting"
  12805. type="1"
  12806. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12807. </productMenu>
  12808. <productMenu id="quickGuide"
  12809. type="0"
  12810. url=""
  12811. size="1.12MB" >
  12812. </productMenu>
  12813. <productMenu id="userGuide"
  12814. type="1"
  12815. url=""
  12816. size="2.10MB" >
  12817. </productMenu>
  12818. <productMenu id="videoGuide"
  12819. type="0"
  12820. url=""
  12821. size="3.11MB" >
  12822. </productMenu>
  12823. <productMenu id="volume"
  12824. type="12" >
  12825. </productMenu>
  12826. <productMenu id="battery"
  12827. type="1" >
  12828. </productMenu>
  12829. <productID id="6853"
  12830. />
  12831. <productGroupable type="0"
  12832. />
  12833. </product>
  12834. <product id="LS2C30"
  12835. name="LS2-C30"
  12836. series="C"
  12837. latestVersion="1.0"
  12838. latestVersionVoicePrompt="0.13"
  12839. show = "-1" >
  12840. <productMenu id="protocol"
  12841. type="2" >
  12842. </productMenu>
  12843. <productMenu id="ota"
  12844. type="0" >
  12845. <otaPackages>
  12846. <package
  12847. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_LS2C30-v1.2.2-build0.img"
  12848. size="3144148"
  12849. />
  12850. </otaPackages>
  12851. </productMenu>
  12852. <productMenu id="meshIntercom+"
  12853. type="3"
  12854. url="2" >
  12855. </productMenu>
  12856. <productMenu id="waveIntercom"
  12857. type="1" >
  12858. </productMenu>
  12859. <productMenu id="phone"
  12860. type="1" >
  12861. </productMenu>
  12862. <productMenu id="music"
  12863. type="1" >
  12864. </productMenu>
  12865. <productMenu id="musicSharing"
  12866. type="0" >
  12867. </productMenu>
  12868. <productMenu id="deviceSetting"
  12869. type="1"
  12870. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12871. </productMenu>
  12872. <productMenu id="quickGuide"
  12873. type="0"
  12874. url=""
  12875. size="1.17MB" >
  12876. </productMenu>
  12877. <productMenu id="userGuide"
  12878. type="1"
  12879. url=""
  12880. size="2.0MB" >
  12881. </productMenu>
  12882. <productMenu id="videoGuide"
  12883. type="0"
  12884. url=""
  12885. size="3.41MB" >
  12886. </productMenu>
  12887. <productMenu id="volume"
  12888. type="12" >
  12889. </productMenu>
  12890. <productMenu id="battery"
  12891. type="1" >
  12892. </productMenu>
  12893. <productID id="685E"
  12894. />
  12895. <productGroupable type="0"
  12896. />
  12897. </product>
  12898. <product id="C30EVO"
  12899. name="C30 EVO"
  12900. series="C"
  12901. latestVersion="1.0"
  12902. latestVersionVoicePrompt="0.13"
  12903. show = "-1" >
  12904. <productMenu id="protocol"
  12905. type="2" >
  12906. </productMenu>
  12907. <productMenu id="ota"
  12908. type="0" >
  12909. <otaPackages>
  12910. <package
  12911. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30EVO-v1.2.2-build0.img"
  12912. size="3144148"
  12913. />
  12914. </otaPackages>
  12915. </productMenu>
  12916. <productMenu id="meshIntercom+"
  12917. type="3"
  12918. url="2" >
  12919. </productMenu>
  12920. <productMenu id="waveIntercom"
  12921. type="1" >
  12922. </productMenu>
  12923. <productMenu id="phone"
  12924. type="1" >
  12925. </productMenu>
  12926. <productMenu id="music"
  12927. type="1" >
  12928. </productMenu>
  12929. <productMenu id="musicSharing"
  12930. type="0" >
  12931. </productMenu>
  12932. <productMenu id="deviceSetting"
  12933. type="1"
  12934. url="https://api.sena.com/support/SenaNeoApp/C30EVO/NS_C30EVO_AIROHA_zh_rCN.xml" >
  12935. </productMenu>
  12936. <productMenu id="quickGuide"
  12937. type="0"
  12938. url=""
  12939. size="1.17MB" >
  12940. </productMenu>
  12941. <productMenu id="userGuide"
  12942. type="1"
  12943. url=""
  12944. size="2.0MB" >
  12945. </productMenu>
  12946. <productMenu id="videoGuide"
  12947. type="0"
  12948. url=""
  12949. size="3.41MB" >
  12950. </productMenu>
  12951. <productMenu id="volume"
  12952. type="12" >
  12953. </productMenu>
  12954. <productMenu id="battery"
  12955. type="1" >
  12956. </productMenu>
  12957. <productID id="685B"
  12958. />
  12959. <productGroupable type="0"
  12960. />
  12961. </product>
  12962. <product id="C30"
  12963. name="SENA C30"
  12964. series="C"
  12965. latestVersion="1.2.4"
  12966. latestVersionVoicePrompt="0.13"
  12967. show = "1" >
  12968. <productMenu id="protocol"
  12969. type="2" >
  12970. </productMenu>
  12971. <productMenu id="alexa"
  12972. type="0" >
  12973. </productMenu>
  12974. <productMenu id="ota"
  12975. type="2" >
  12976. <otaPackages>
  12977. <package
  12978. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.4-build0.img"
  12979. size="3144148"
  12980. />
  12981. </otaPackages>
  12982. </productMenu>
  12983. <productMenu id="wa"
  12984. type="0" >
  12985. </productMenu>
  12986. <productMenu id="meshIntercom"
  12987. type="30" >
  12988. </productMenu>
  12989. <productMenu id="meshIntercom+"
  12990. type="3"
  12991. url="2" >
  12992. <productMenuType version="1.0.9"
  12993. type="2"
  12994. />
  12995. </productMenu>
  12996. <productMenu id="waveIntercom"
  12997. type="1" >
  12998. <productMenuType version="1.1.9"
  12999. type="0"
  13000. />
  13001. </productMenu>
  13002. <productMenu id="phone"
  13003. type="1" >
  13004. </productMenu>
  13005. <productMenu id="music"
  13006. type="1" >
  13007. </productMenu>
  13008. <productMenu id="musicSharing"
  13009. type="0" >
  13010. </productMenu>
  13011. <productMenu id="deviceSetting"
  13012. type="1"
  13013. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  13014. <productMenuURL version="1.1.3"
  13015. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  13016. />
  13017. <productMenuURL version="1.0.9"
  13018. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  13019. />
  13020. </productMenu>
  13021. <productMenu id="quickGuide"
  13022. type="1"
  13023. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13024. size="1.12MB" >
  13025. </productMenu>
  13026. <productMenu id="userGuide"
  13027. type="0"
  13028. url=""
  13029. size="2.0MB" >
  13030. </productMenu>
  13031. <productMenu id="videoGuide"
  13032. type="0"
  13033. url=""
  13034. size="3.41MB" >
  13035. </productMenu>
  13036. <productMenu id="volume"
  13037. type="12" >
  13038. </productMenu>
  13039. <productMenu id="battery"
  13040. type="1" >
  13041. </productMenu>
  13042. <productID id="683A"
  13043. />
  13044. <productGroupable type="0"
  13045. />
  13046. </product>
  13047. <product id="C20"
  13048. name="C20"
  13049. series="C"
  13050. latestVersion="1.0"
  13051. show = "1" >
  13052. <productMenu id="protocol"
  13053. type="3" >
  13054. </productMenu>
  13055. <productMenu id="sip"
  13056. type="1" >
  13057. </productMenu>
  13058. <productMenu id="bluetoothIntercom"
  13059. type="1" >
  13060. </productMenu>
  13061. <productMenu id="phone"
  13062. type="1" >
  13063. </productMenu>
  13064. <productMenu id="deviceSetting"
  13065. type="1"
  13066. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  13067. </productMenu>
  13068. <productMenu id="quickGuide"
  13069. type="1"
  13070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  13071. size="934KB" >
  13072. </productMenu>
  13073. <productMenu id="userGuide"
  13074. type="1"
  13075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  13076. size="1.14MB" >
  13077. </productMenu>
  13078. <productID id="3701"
  13079. />
  13080. <productGroupable type="0"
  13081. />
  13082. </product>
  13083. <product id="C10"
  13084. name="C10"
  13085. series="C"
  13086. latestVersion="1.4.4"
  13087. show = "1" >
  13088. <productMenu id="protocol"
  13089. type="3" >
  13090. </productMenu>
  13091. <productMenu id="sip"
  13092. type="1" >
  13093. </productMenu>
  13094. <productMenu id="bluetoothIntercom"
  13095. type="1" >
  13096. </productMenu>
  13097. <productMenu id="phone"
  13098. type="1" >
  13099. </productMenu>
  13100. <productMenu id="fmradio"
  13101. type="0" >
  13102. </productMenu>
  13103. <productMenu id="deviceSetting"
  13104. type="1"
  13105. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13106. </productMenu>
  13107. <productMenu id="userGuide"
  13108. type="1"
  13109. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  13110. size="1.14MB" >
  13111. </productMenu>
  13112. <productID id="5595"
  13113. />
  13114. <productGroupable type="0"
  13115. />
  13116. </product>
  13117. <product id="CA1"
  13118. name="CA1"
  13119. series="C"
  13120. latestVersion="0.2"
  13121. show = "-1" >
  13122. <productMenu id="protocol"
  13123. type="2" >
  13124. </productMenu>
  13125. <productMenu id="ota"
  13126. type="2" >
  13127. <otaPackages>
  13128. <package
  13129. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/CA1/SENA_CA1-v0.2-build1.img"
  13130. size="3144148"
  13131. />
  13132. </otaPackages>
  13133. </productMenu>
  13134. <productMenu id="phone"
  13135. type="1" >
  13136. </productMenu>
  13137. <productMenu id="music"
  13138. type="1" >
  13139. </productMenu>
  13140. <productMenu id="musicSharing"
  13141. type="0" >
  13142. </productMenu>
  13143. <productMenu id="deviceSetting"
  13144. type="1"
  13145. url="https://api.sena.com/support/SenaNeoApp/CA1/NS_CA1_AIROHA_01_zh_rCN.xml" >
  13146. </productMenu>
  13147. <productMenu id="quickGuide"
  13148. type="1"
  13149. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  13150. size="1.12MB" >
  13151. </productMenu>
  13152. <productMenu id="userGuide"
  13153. type="0"
  13154. url=""
  13155. size="2.0MB" >
  13156. </productMenu>
  13157. <productMenu id="videoGuide"
  13158. type="1"
  13159. url=""
  13160. size="3.41MB" >
  13161. </productMenu>
  13162. <productMenu id="volume"
  13163. type="12" >
  13164. </productMenu>
  13165. <productMenu id="battery"
  13166. type="1" >
  13167. </productMenu>
  13168. <productID id="5F01"
  13169. />
  13170. <productGroupable type="0"
  13171. />
  13172. </product>
  13173. <product id="J30"
  13174. name="J30"
  13175. series="J"
  13176. latestVersion="1.2.4"
  13177. latestVersionVoicePrompt="0.14"
  13178. show = "0" >
  13179. <productMenu id="protocol"
  13180. type="2" >
  13181. </productMenu>
  13182. <productMenu id="alexa"
  13183. type="0" >
  13184. </productMenu>
  13185. <productMenu id="ota"
  13186. type="2" >
  13187. <otaPackages>
  13188. <package
  13189. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.4-build0.img"
  13190. size="3144148"
  13191. />
  13192. </otaPackages>
  13193. </productMenu>
  13194. <productMenu id="wa"
  13195. type="0" >
  13196. </productMenu>
  13197. <productMenu id="meshIntercom"
  13198. type="30" >
  13199. </productMenu>
  13200. <productMenu id="meshIntercom+"
  13201. type="3"
  13202. url="2" >
  13203. <productMenuType version="1.0.9"
  13204. type="2"
  13205. />
  13206. </productMenu>
  13207. <productMenu id="waveIntercom"
  13208. type="1" >
  13209. <productMenuType version="1.1.9"
  13210. type="0"
  13211. />
  13212. </productMenu>
  13213. <productMenu id="phone"
  13214. type="1" >
  13215. </productMenu>
  13216. <productMenu id="music"
  13217. type="1" >
  13218. </productMenu>
  13219. <productMenu id="musicSharing"
  13220. type="0" >
  13221. </productMenu>
  13222. <productMenu id="deviceSetting"
  13223. type="1"
  13224. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  13225. <productMenuURL version="1.0.9"
  13226. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  13227. />
  13228. </productMenu>
  13229. <productMenu id="quickGuide"
  13230. type="0"
  13231. url=""
  13232. size="1.12MB" >
  13233. </productMenu>
  13234. <productMenu id="userGuide"
  13235. type="1"
  13236. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  13237. size="2.0MB" >
  13238. </productMenu>
  13239. <productMenu id="videoGuide"
  13240. type="0"
  13241. url=""
  13242. size="3.41MB" >
  13243. </productMenu>
  13244. <productMenu id="volume"
  13245. type="12" >
  13246. </productMenu>
  13247. <productMenu id="battery"
  13248. type="1" >
  13249. </productMenu>
  13250. <productID id="6848"
  13251. />
  13252. <productGroupable type="0"
  13253. />
  13254. </product>
  13255. <product id="J10"
  13256. name="J10"
  13257. series="5"
  13258. latestVersion="1.1.4"
  13259. show = "0" >
  13260. <productMenu id="protocol"
  13261. type="3" >
  13262. </productMenu>
  13263. <productMenu id="sip"
  13264. type="1" >
  13265. </productMenu>
  13266. <productMenu id="bluetoothIntercom"
  13267. type="1" >
  13268. </productMenu>
  13269. <productMenu id="phone"
  13270. type="1" >
  13271. </productMenu>
  13272. <productMenu id="fmradio"
  13273. type="0" >
  13274. </productMenu>
  13275. <productMenu id="deviceSetting"
  13276. type="1"
  13277. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  13278. </productMenu>
  13279. <productMenu id="userGuide"
  13280. type="1"
  13281. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  13282. size="1.14MB" >
  13283. </productMenu>
  13284. <productID id="5598"
  13285. />
  13286. <productGroupable type="0"
  13287. />
  13288. </product>
  13289. <product id="B20"
  13290. name="B20"
  13291. series="B"
  13292. latestVersion="1.1.4"
  13293. latestVersionVoicePrompt="0.14"
  13294. show = "0" >
  13295. <productMenu id="protocol"
  13296. type="2" >
  13297. </productMenu>
  13298. <productMenu id="alexa"
  13299. type="0" >
  13300. </productMenu>
  13301. <productMenu id="ota"
  13302. type="2" >
  13303. <otaPackages>
  13304. <package
  13305. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.4-build0.img"
  13306. size="3144148"
  13307. />
  13308. </otaPackages>
  13309. </productMenu>
  13310. <productMenu id="wa"
  13311. type="0" >
  13312. </productMenu>
  13313. <productMenu id="meshIntercom"
  13314. type="30" >
  13315. </productMenu>
  13316. <productMenu id="phone"
  13317. type="1" >
  13318. </productMenu>
  13319. <productMenu id="music"
  13320. type="1" >
  13321. </productMenu>
  13322. <productMenu id="musicSharing"
  13323. type="0" >
  13324. </productMenu>
  13325. <productMenu id="deviceSetting"
  13326. type="1"
  13327. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  13328. <productMenuURL version="1.0.9"
  13329. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  13330. />
  13331. </productMenu>
  13332. <productMenu id="quickGuide"
  13333. type="0"
  13334. url=""
  13335. size="1.12MB" >
  13336. </productMenu>
  13337. <productMenu id="userGuide"
  13338. type="1"
  13339. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  13340. size="2.0MB" >
  13341. </productMenu>
  13342. <productMenu id="videoGuide"
  13343. type="0"
  13344. url=""
  13345. size="3.41MB" >
  13346. </productMenu>
  13347. <productMenu id="volume"
  13348. type="12" >
  13349. </productMenu>
  13350. <productMenu id="battery"
  13351. type="1" >
  13352. </productMenu>
  13353. <productID id="6847"
  13354. />
  13355. <productGroupable type="0"
  13356. />
  13357. </product>
  13358. <product id="B10"
  13359. name="B10"
  13360. series="5"
  13361. latestVersion="1.2.4"
  13362. show = "0" >
  13363. <productMenu id="protocol"
  13364. type="3" >
  13365. </productMenu>
  13366. <productMenu id="sip"
  13367. type="1" >
  13368. </productMenu>
  13369. <productMenu id="bluetoothIntercom"
  13370. type="1" >
  13371. </productMenu>
  13372. <productMenu id="phone"
  13373. type="1" >
  13374. </productMenu>
  13375. <productMenu id="fmradio"
  13376. type="0" >
  13377. </productMenu>
  13378. <productMenu id="deviceSetting"
  13379. type="1"
  13380. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  13381. </productMenu>
  13382. <productMenu id="userGuide"
  13383. type="1"
  13384. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  13385. size="1.14MB" >
  13386. </productMenu>
  13387. <productID id="5596"
  13388. />
  13389. <productGroupable type="0"
  13390. />
  13391. </product>
  13392. <product id="E30"
  13393. name="E30"
  13394. series="E"
  13395. latestVersion="1.1.4"
  13396. latestVersionVoicePrompt="0.14"
  13397. show = "0" >
  13398. <productMenu id="protocol"
  13399. type="2" >
  13400. </productMenu>
  13401. <productMenu id="alexa"
  13402. type="0" >
  13403. </productMenu>
  13404. <productMenu id="ota"
  13405. type="2" >
  13406. <otaPackages>
  13407. <package
  13408. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.4-build0.img"
  13409. size="3144148"
  13410. />
  13411. </otaPackages>
  13412. </productMenu>
  13413. <productMenu id="wa"
  13414. type="0" >
  13415. </productMenu>
  13416. <productMenu id="meshIntercom"
  13417. type="30" >
  13418. </productMenu>
  13419. <productMenu id="meshIntercom+"
  13420. type="3"
  13421. url="2" >
  13422. </productMenu>
  13423. <productMenu id="waveIntercom"
  13424. type="1" >
  13425. <productMenuType version="1.0.9"
  13426. type="0"
  13427. />
  13428. </productMenu>
  13429. <productMenu id="phone"
  13430. type="1" >
  13431. </productMenu>
  13432. <productMenu id="music"
  13433. type="1" >
  13434. </productMenu>
  13435. <productMenu id="musicSharing"
  13436. type="0" >
  13437. </productMenu>
  13438. <productMenu id="deviceSetting"
  13439. type="1"
  13440. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  13441. </productMenu>
  13442. <productMenu id="quickGuide"
  13443. type="0"
  13444. url=""
  13445. size="1.12MB" >
  13446. </productMenu>
  13447. <productMenu id="userGuide"
  13448. type="1"
  13449. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  13450. size="2.0MB" >
  13451. </productMenu>
  13452. <productMenu id="videoGuide"
  13453. type="0"
  13454. url=""
  13455. size="3.41MB" >
  13456. </productMenu>
  13457. <productMenu id="volume"
  13458. type="12" >
  13459. </productMenu>
  13460. <productMenu id="battery"
  13461. type="1" >
  13462. </productMenu>
  13463. <productID id="6846"
  13464. />
  13465. <productGroupable type="0"
  13466. />
  13467. </product>
  13468. <product id="ACSRAM"
  13469. name="ACS-RAM"
  13470. series="ACS"
  13471. latestVersion="1.0.5"
  13472. show = "1" >
  13473. <productMenu id="protocol"
  13474. type="3" >
  13475. </productMenu>
  13476. <productMenu id="sip"
  13477. type="1" >
  13478. </productMenu>
  13479. <productMenu id="bluetoothIntercom"
  13480. type="1" >
  13481. </productMenu>
  13482. <productMenu id="deviceSetting"
  13483. type="1"
  13484. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM_01.xml" >
  13485. <productMenuURL version="1.0.9"
  13486. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml"
  13487. />
  13488. </productMenu>
  13489. <productMenu id="quickGuide"
  13490. type="1"
  13491. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  13492. size="344KB" >
  13493. </productMenu>
  13494. <productMenu id="userGuide"
  13495. type="1"
  13496. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  13497. size="1.14MB" >
  13498. </productMenu>
  13499. <productMenu id="connectGuide"
  13500. type="1"
  13501. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  13502. size="1.12MB" >
  13503. </productMenu>
  13504. <productID id="3400"
  13505. />
  13506. <productGroupable type="0"
  13507. />
  13508. </product>
  13509. <product id="ACS10"
  13510. name="ACS10"
  13511. series="ACS"
  13512. latestVersion="1.0.2"
  13513. show = "1" >
  13514. <productMenu id="protocol"
  13515. type="0">
  13516. </productMenu>
  13517. <productMenu id="sip"
  13518. type="1" >
  13519. </productMenu>
  13520. <productMenu id="bluetoothIntercom"
  13521. type="1" >
  13522. </productMenu>
  13523. <productMenu id="phone"
  13524. type="2" >
  13525. </productMenu>
  13526. <productMenu id="deviceSetting"
  13527. type="1"
  13528. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  13529. </productMenu>
  13530. <productMenu id="quickGuide"
  13531. type="1"
  13532. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  13533. size="970KB" >
  13534. </productMenu>
  13535. <productMenu id="userGuide"
  13536. type="1"
  13537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  13538. size="1.26MB" >
  13539. </productMenu>
  13540. <productMenu id="connectGuide"
  13541. type="1"
  13542. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  13543. size="1.12MB" >
  13544. </productMenu>
  13545. <productID id="3300"
  13546. />
  13547. <productGroupable type="0"
  13548. />
  13549. </product>
  13550. <product id="DWO7ProMesh"
  13551. name="DWO 7 Pro Mesh"
  13552. series="50"
  13553. latestVersion="1.1"
  13554. latestVersionVoicePrompt="0.9"
  13555. show = "0" >
  13556. <productMenu id="protocol"
  13557. type="2" >
  13558. </productMenu>
  13559. <productMenu id="alexa"
  13560. type="0" >
  13561. </productMenu>
  13562. <productMenu id="ota"
  13563. type="2" >
  13564. <otaPackages>
  13565. <package
  13566. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  13567. size="2945812"
  13568. />
  13569. </otaPackages>
  13570. </productMenu>
  13571. <productMenu id="wa"
  13572. type="0" >
  13573. </productMenu>
  13574. <productMenu id="meshIntercom"
  13575. type="20" >
  13576. </productMenu>
  13577. <productMenu id="meshIntercom+"
  13578. type="3"
  13579. url="2" >
  13580. <productMenuType version="1.0.9"
  13581. type="2"
  13582. />
  13583. <productMenuURL version="2.1.1"
  13584. url="0"
  13585. />
  13586. </productMenu>
  13587. <productMenu id="waveIntercom"
  13588. type="1" >
  13589. <productMenuType version="1.0.9"
  13590. type="0"
  13591. />
  13592. </productMenu>
  13593. <productMenu id="phone"
  13594. type="1" >
  13595. </productMenu>
  13596. <productMenu id="music"
  13597. type="1" >
  13598. </productMenu>
  13599. <productMenu id="fmradio"
  13600. type="1" >
  13601. </productMenu>
  13602. <productMenu id="musicSharing"
  13603. type="0" >
  13604. </productMenu>
  13605. <productMenu id="deviceSetting"
  13606. type="1"
  13607. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  13608. <productMenuURL version="1.0.9"
  13609. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  13610. />
  13611. </productMenu>
  13612. <productMenu id="quickGuide"
  13613. type="1"
  13614. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13615. size="1.12MB" >
  13616. </productMenu>
  13617. <productMenu id="userGuide"
  13618. type="1"
  13619. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  13620. size="2.0MB" >
  13621. </productMenu>
  13622. <productMenu id="volume"
  13623. type="12" >
  13624. </productMenu>
  13625. <productMenu id="battery"
  13626. type="1" >
  13627. </productMenu>
  13628. <productID id="6806"
  13629. />
  13630. <productGroupable type="0"
  13631. />
  13632. </product>
  13633. <product id="ERA1X"
  13634. name="ERA 1 X"
  13635. series="UCOM"
  13636. latestVersion="0.2.1"
  13637. latestVersionMesh="0.19"
  13638. latestVersionVoicePrompt="1.2"
  13639. show = "-1" >
  13640. <productMenu id="protocol"
  13641. type="2" >
  13642. </productMenu>
  13643. <productMenu id="ota"
  13644. type="2" >
  13645. <otaLanguages>
  13646. <otaLanguage
  13647. id="0"
  13648. name="English"
  13649. package="0"
  13650. />
  13651. <otaLanguage
  13652. id="0"
  13653. name="French"
  13654. package="1"
  13655. />
  13656. <otaLanguage
  13657. id="0"
  13658. name="Spanish"
  13659. package="2"
  13660. />
  13661. <otaLanguage
  13662. id="0"
  13663. name="Italian"
  13664. package="3"
  13665. />
  13666. <otaLanguage
  13667. id="0"
  13668. name="German"
  13669. package="4"
  13670. />
  13671. <otaLanguage
  13672. id="0"
  13673. name="Dutch"
  13674. package="5"
  13675. />
  13676. <otaLanguage
  13677. id="0"
  13678. name="Russian"
  13679. package="6"
  13680. />
  13681. <otaLanguage
  13682. id="0"
  13683. name="Chinese"
  13684. package="7"
  13685. />
  13686. <otaLanguage
  13687. id="0"
  13688. name="Korean"
  13689. package="8"
  13690. />
  13691. <otaLanguage
  13692. id="0"
  13693. name="Japanese"
  13694. package="9"
  13695. />
  13696. <otaLanguage
  13697. id="0"
  13698. name="Finnish"
  13699. package="10"
  13700. />
  13701. <otaLanguage
  13702. id="0"
  13703. name="Polish"
  13704. package="11"
  13705. />
  13706. <otaLanguage
  13707. id="0"
  13708. name="Czech"
  13709. package="12"
  13710. />
  13711. <otaLanguage
  13712. id="0"
  13713. name="Danish"
  13714. package="13"
  13715. />
  13716. <otaLanguage
  13717. id="0"
  13718. name="Norwegian"
  13719. package="14"
  13720. />
  13721. <otaLanguage
  13722. id="0"
  13723. name="Swedish"
  13724. package="15"
  13725. />
  13726. <otaLanguage
  13727. id="0"
  13728. name="Turkish"
  13729. package="16"
  13730. />
  13731. <otaLanguage
  13732. id="0"
  13733. name="Hungarian"
  13734. package="17"
  13735. />
  13736. <otaLanguage
  13737. id="0"
  13738. name="Portuguese"
  13739. package="18"
  13740. />
  13741. <otaLanguage
  13742. id="0"
  13743. name="Hebrew"
  13744. package="19"
  13745. />
  13746. <otaLanguage
  13747. id="0"
  13748. name="Greek"
  13749. package="20"
  13750. />
  13751. </otaLanguages>
  13752. <otaPackages>
  13753. <package
  13754. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13755. size="5183988"
  13756. />
  13757. <package
  13758. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13759. size="5183988"
  13760. />
  13761. <package
  13762. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13763. size="5183988"
  13764. />
  13765. <package
  13766. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13767. size="5183988"
  13768. />
  13769. <package
  13770. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13771. size="5183988"
  13772. />
  13773. <package
  13774. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13775. size="5183988"
  13776. />
  13777. <package
  13778. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13779. size="5183988"
  13780. />
  13781. <package
  13782. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13783. size="5183988"
  13784. />
  13785. <package
  13786. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13787. size="5183988"
  13788. />
  13789. <package
  13790. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13791. size="5183988"
  13792. />
  13793. <package
  13794. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13795. size="5183988"
  13796. />
  13797. <package
  13798. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13799. size="5183988"
  13800. />
  13801. <package
  13802. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13803. size="5183988"
  13804. />
  13805. <package
  13806. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13807. size="5183988"
  13808. />
  13809. <package
  13810. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13811. size="5183988"
  13812. />
  13813. <package
  13814. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13815. size="5183988"
  13816. />
  13817. <package
  13818. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13819. size="5183988"
  13820. />
  13821. <package
  13822. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13823. size="5183988"
  13824. />
  13825. <package
  13826. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13827. size="5183988"
  13828. />
  13829. <package
  13830. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13831. size="5183988"
  13832. />
  13833. <package
  13834. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13835. size="5183988"
  13836. />
  13837. </otaPackages>
  13838. </productMenu>
  13839. <productMenu id="wa"
  13840. type="0" >
  13841. </productMenu>
  13842. <productMenu id="sip"
  13843. type="1" >
  13844. </productMenu>
  13845. <productMenu id="led"
  13846. type="0" >
  13847. </productMenu>
  13848. <productMenu id="illusion"
  13849. type="1" >
  13850. </productMenu>
  13851. <productMenu id="meshIntercom"
  13852. type="30" >
  13853. </productMenu>
  13854. <productMenu id="meshIntercom+"
  13855. type="3"
  13856. url="2" >
  13857. </productMenu>
  13858. <productMenu id="waveIntercom"
  13859. type="0" >
  13860. </productMenu>
  13861. <productMenu id="bluetoothIntercom"
  13862. type="1" >
  13863. </productMenu>
  13864. <productMenu id="bluetoothIntercomGrouping"
  13865. type="0" >
  13866. </productMenu>
  13867. <productMenu id="fmradio"
  13868. type="1"
  13869. url="1" >
  13870. </productMenu>
  13871. <productMenu id="phone"
  13872. type="1" >
  13873. </productMenu>
  13874. <productMenu id="music"
  13875. type="1" >
  13876. </productMenu>
  13877. <productMenu id="musicSharing"
  13878. type="0" >
  13879. </productMenu>
  13880. <productMenu id="deviceSetting"
  13881. type="1"
  13882. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13883. </productMenu>
  13884. <productMenu id="quickGuide"
  13885. type="0"
  13886. url=""
  13887. size="1.12MB" >
  13888. </productMenu>
  13889. <productMenu id="userGuide"
  13890. type="1"
  13891. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13892. size="2.0MB" >
  13893. </productMenu>
  13894. <productMenu id="videoGuide"
  13895. type="0"
  13896. url=""
  13897. size="3.41MB" >
  13898. </productMenu>
  13899. <productMenu id="volume"
  13900. type="16" >
  13901. </productMenu>
  13902. <productMenu id="soundMode"
  13903. type="1" >
  13904. </productMenu>
  13905. <productMenu id="battery"
  13906. type="1" >
  13907. </productMenu>
  13908. <productID id="6A83"
  13909. />
  13910. <productGroupable type="0"
  13911. />
  13912. </product>
  13913. <product id="MeshStation"
  13914. name="Mesh Station"
  13915. series="50"
  13916. latestVersion="0.9"
  13917. show = "-1" >
  13918. <productMenu id="protocol"
  13919. type="2" >
  13920. </productMenu>
  13921. <productMenu id="meshIntercom"
  13922. type="20"
  13923. url="99" >
  13924. </productMenu>
  13925. <productID id="3161"
  13926. />
  13927. <productGroupable type="0"
  13928. />
  13929. </product>
  13930. </products>
  13931. </sna>