snm.xml 459 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260086" 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="https://www.sena.com/subscribe/"
  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="https://www.sena.com/support"
  22. />
  23. <forum url="https://community.sena.com/hc/en-us"
  24. />
  25. <sip url="https://community.sena.com/hc/en-us"
  26. />
  27. <productKeys>
  28. <productKey id="4210"
  29. userPSKey="5"
  30. valueLength="1"
  31. />
  32. <productKey id="4230"
  33. userPSKey="5"
  34. valueLength="1"
  35. />
  36. </productKeys>
  37. <!--
  38. <menus>
  39. <menu id="protocol" />
  40. <menu id="alexa" />
  41. <menu id="ota" />
  42. <menu id="wa" />
  43. <menu id="manager" />
  44. <menu id="sip" />
  45. <menu id="meshIntercom" />
  46. <menu id="bluetoothIntercom" />
  47. <menu id="music" />
  48. <menu id="musicSharing" />
  49. <menu id="fmradio" />
  50. <menu id="phone" />
  51. <menu id="led" />
  52. <menu id="volume" />
  53. <menu id="battery" />
  54. <menu id="deviceSetting" />
  55. <menu id="quickGuide" />
  56. <menu id="userGuide" />
  57. </menus>
  58. -->
  59. <serieses>
  60. <series id="60"
  61. name="60 Series"
  62. show="1"
  63. />
  64. <series id="50"
  65. name="50 Series"
  66. show="1"
  67. />
  68. <series id="Helmet"
  69. name="Smart Helmet"
  70. show="1"
  71. />
  72. <series id="30"
  73. name="30 Series"
  74. show="1"
  75. />
  76. <series id="SF"
  77. name="SF Series"
  78. show="1"
  79. />
  80. <series id="SPIDER"
  81. name="SPIDER Series"
  82. show="1"
  83. />
  84. <series id="20"
  85. name="20 Series"
  86. show="1"
  87. />
  88. <series id="SRL"
  89. name="SRL Series"
  90. show="1"
  91. />
  92. <series id="ACS"
  93. name="ACS Series"
  94. show="1"
  95. />
  96. <series id="10"
  97. name="10 Series"
  98. show="1"
  99. />
  100. <series id="5"
  101. name="5 Series"
  102. show="1"
  103. />
  104. <series id="3"
  105. name="3 Series"
  106. show="1"
  107. />
  108. <series id="C"
  109. name="C Series"
  110. show="1"
  111. />
  112. <!--
  113. <series id="smh"
  114. name="SMH"
  115. />
  116. <series id="cavalry"
  117. name="CAVALRY"
  118. show="0"
  119. />
  120. -->
  121. </serieses>
  122. <products>
  123. <product id="60SPRO"
  124. name="60S PRO"
  125. series="60"
  126. latestVersion="0.1"
  127. latestVersionMesh="0.19"
  128. latestVersionVoicePrompt="1.2"
  129. show = "-1" >
  130. <productMenu id="protocol"
  131. type="2" >
  132. </productMenu>
  133. <productMenu id="ota"
  134. type="0" >
  135. <otaLanguages>
  136. <otaLanguage
  137. id="0"
  138. name="English"
  139. package="0"
  140. />
  141. <otaLanguage
  142. id="0"
  143. name="French"
  144. package="1"
  145. />
  146. <otaLanguage
  147. id="0"
  148. name="Spanish"
  149. package="2"
  150. />
  151. <otaLanguage
  152. id="0"
  153. name="Italian"
  154. package="3"
  155. />
  156. <otaLanguage
  157. id="0"
  158. name="German"
  159. package="4"
  160. />
  161. <otaLanguage
  162. id="0"
  163. name="Dutch"
  164. package="5"
  165. />
  166. <otaLanguage
  167. id="0"
  168. name="Russian"
  169. package="6"
  170. />
  171. <otaLanguage
  172. id="0"
  173. name="Chinese"
  174. package="7"
  175. />
  176. <otaLanguage
  177. id="0"
  178. name="Korean"
  179. package="8"
  180. />
  181. <otaLanguage
  182. id="0"
  183. name="Japanese"
  184. package="9"
  185. />
  186. <otaLanguage
  187. id="0"
  188. name="Finnish"
  189. package="10"
  190. />
  191. <otaLanguage
  192. id="0"
  193. name="Polish"
  194. package="11"
  195. />
  196. </otaLanguages>
  197. <otaPackages>
  198. <package
  199. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  200. size="5183988"
  201. />
  202. <package
  203. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  204. size="5183988"
  205. />
  206. <package
  207. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  208. size="5183988"
  209. />
  210. <package
  211. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  212. size="5183988"
  213. />
  214. <package
  215. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  216. size="5183988"
  217. />
  218. <package
  219. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  220. size="5183988"
  221. />
  222. <package
  223. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  224. size="5183988"
  225. />
  226. <package
  227. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  228. size="5183988"
  229. />
  230. <package
  231. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  232. size="5183988"
  233. />
  234. <package
  235. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  236. size="5183988"
  237. />
  238. <package
  239. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  240. size="5183988"
  241. />
  242. <package
  243. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  244. size="5183988"
  245. />
  246. </otaPackages>
  247. </productMenu>
  248. <productMenu id="sip"
  249. type="1" >
  250. </productMenu>
  251. <productMenu id="illusion"
  252. type="1" >
  253. </productMenu>
  254. <productMenu id="meshIntercom"
  255. type="30" >
  256. </productMenu>
  257. <productMenu id="meshIntercom+"
  258. type="3"
  259. url="2" >
  260. </productMenu>
  261. <productMenu id="waveIntercom"
  262. type="1" >
  263. </productMenu>
  264. <productMenu id="bluetoothIntercom"
  265. type="1"
  266. url="2" >
  267. </productMenu>
  268. <productMenu id="bluetoothIntercomGrouping"
  269. type="0" >
  270. </productMenu>
  271. <productMenu id="fmradio"
  272. type="1"
  273. url="1" >
  274. </productMenu>
  275. <productMenu id="phone"
  276. type="1" >
  277. </productMenu>
  278. <productMenu id="music"
  279. type="1" >
  280. </productMenu>
  281. <productMenu id="musicSharing"
  282. type="0" >
  283. </productMenu>
  284. <productMenu id="deviceSetting"
  285. type="1"
  286. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  287. </productMenu>
  288. <productMenu id="quickGuide"
  289. type="0"
  290. url=""
  291. size="1.12MB" >
  292. </productMenu>
  293. <productMenu id="userGuide"
  294. type="1"
  295. url=""
  296. size="2.0MB" >
  297. </productMenu>
  298. <productMenu id="videoGuide"
  299. type="0"
  300. url=""
  301. size="3.41MB" >
  302. </productMenu>
  303. <productMenu id="connectGuide"
  304. type="0"
  305. url=""
  306. size="1.12MB" >
  307. </productMenu>
  308. <productMenu id="volume"
  309. type="16" >
  310. </productMenu>
  311. <productMenu id="soundMode"
  312. type="1" >
  313. </productMenu>
  314. <productMenu id="battery"
  315. type="1" >
  316. </productMenu>
  317. <productID id="6A1A"
  318. />
  319. <productGroupable type="0"
  320. />
  321. </product>
  322. <product id="60SEVO"
  323. name="60S EVO"
  324. series="60"
  325. latestVersion="1.0.2"
  326. latestVersionMesh="0.19"
  327. latestVersionVoicePrompt="1.7"
  328. show = "-1" >
  329. <productMenu id="protocol"
  330. type="2" >
  331. </productMenu>
  332. <productMenu id="warranty"
  333. type="1" >
  334. </productMenu>
  335. <productMenu id="serialNumber"
  336. type="1" >
  337. </productMenu>
  338. <productMenu id="ota"
  339. type="2" >
  340. <otaLanguages>
  341. <otaLanguage
  342. id="0"
  343. name="English"
  344. package="0"
  345. />
  346. <otaLanguage
  347. id="0"
  348. name="French"
  349. package="1"
  350. />
  351. <otaLanguage
  352. id="0"
  353. name="Spanish"
  354. package="2"
  355. />
  356. <otaLanguage
  357. id="0"
  358. name="Italian"
  359. package="3"
  360. />
  361. <otaLanguage
  362. id="0"
  363. name="German"
  364. package="4"
  365. />
  366. <otaLanguage
  367. id="0"
  368. name="Dutch"
  369. package="5"
  370. />
  371. <otaLanguage
  372. id="0"
  373. name="Russian"
  374. package="6"
  375. />
  376. <otaLanguage
  377. id="0"
  378. name="Chinese"
  379. package="7"
  380. />
  381. <otaLanguage
  382. id="0"
  383. name="Korean"
  384. package="8"
  385. />
  386. <otaLanguage
  387. id="0"
  388. name="Japanese"
  389. package="9"
  390. />
  391. <otaLanguage
  392. id="0"
  393. name="Finnish"
  394. package="10"
  395. />
  396. <otaLanguage
  397. id="0"
  398. name="Polish"
  399. package="11"
  400. />
  401. </otaLanguages>
  402. <otaPackages>
  403. <package
  404. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fr-FR.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-es-ES.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-it-IT.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-de-DE.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-nl-NL.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ru-RU.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-cmn-CN.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ko-KR.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-ja-JP.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-fi-FI.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.2-build5-pl-PL.img"
  449. size="5183988"
  450. />
  451. </otaPackages>
  452. </productMenu>
  453. <productMenu id="sip"
  454. type="1" >
  455. </productMenu>
  456. <productMenu id="illusion"
  457. type="1" >
  458. </productMenu>
  459. <productMenu id="meshIntercom"
  460. type="30" >
  461. </productMenu>
  462. <productMenu id="meshIntercom+"
  463. type="3"
  464. url="2" >
  465. </productMenu>
  466. <productMenu id="waveIntercom"
  467. type="1" >
  468. </productMenu>
  469. <productMenu id="bluetoothIntercom"
  470. type="1"
  471. url="2" >
  472. </productMenu>
  473. <productMenu id="bluetoothIntercomGrouping"
  474. type="0" >
  475. </productMenu>
  476. <productMenu id="fmradio"
  477. type="1"
  478. url="1" >
  479. </productMenu>
  480. <productMenu id="phone"
  481. type="1" >
  482. </productMenu>
  483. <productMenu id="music"
  484. type="1" >
  485. </productMenu>
  486. <productMenu id="musicSharing"
  487. type="0" >
  488. </productMenu>
  489. <productMenu id="deviceSetting"
  490. type="1"
  491. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  492. </productMenu>
  493. <productMenu id="quickGuide"
  494. type="0"
  495. url=""
  496. size="1.12MB" >
  497. </productMenu>
  498. <productMenu id="userGuide"
  499. type="1"
  500. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_EVO_1.0.0_en_260429.pdf"
  501. size="2.0MB" >
  502. </productMenu>
  503. <productMenu id="videoGuide"
  504. type="0"
  505. url=""
  506. size="3.41MB" >
  507. </productMenu>
  508. <productMenu id="connectGuide"
  509. type="0"
  510. url=""
  511. size="1.12MB" >
  512. </productMenu>
  513. <productMenu id="volume"
  514. type="16" >
  515. </productMenu>
  516. <productMenu id="volume+"
  517. type="2"
  518. url="0x6004" >
  519. </productMenu>
  520. <productMenu id="soundMode"
  521. type="1" >
  522. </productMenu>
  523. <productMenu id="appearance"
  524. type="1"
  525. url="1|white,silver,black,glossy_black" >
  526. </productMenu>
  527. <productMenu id="battery"
  528. type="1" >
  529. </productMenu>
  530. <productID id="6A15"
  531. />
  532. <productGroupable type="0"
  533. />
  534. </product>
  535. <product id="60S"
  536. name="60S"
  537. series="60"
  538. latestVersion="1.2.8"
  539. latestVersionMesh="1.2"
  540. latestVersionVoicePrompt="1.5"
  541. show = "1" >
  542. <productMenu id="protocol"
  543. type="2" >
  544. </productMenu>
  545. <productMenu id="ota"
  546. type="2" >
  547. <otaLanguages>
  548. <otaLanguage
  549. id="0"
  550. name="English"
  551. package="0"
  552. />
  553. <otaLanguage
  554. id="0"
  555. name="French"
  556. package="1"
  557. />
  558. <otaLanguage
  559. id="0"
  560. name="Spanish"
  561. package="2"
  562. />
  563. <otaLanguage
  564. id="0"
  565. name="Italian"
  566. package="3"
  567. />
  568. <otaLanguage
  569. id="0"
  570. name="German"
  571. package="4"
  572. />
  573. <otaLanguage
  574. id="0"
  575. name="Dutch"
  576. package="5"
  577. />
  578. <otaLanguage
  579. id="0"
  580. name="Russian"
  581. package="6"
  582. />
  583. <otaLanguage
  584. id="0"
  585. name="Chinese"
  586. package="7"
  587. />
  588. <otaLanguage
  589. id="0"
  590. name="Korean"
  591. package="8"
  592. />
  593. <otaLanguage
  594. id="0"
  595. name="Japanese"
  596. package="9"
  597. />
  598. <otaLanguage
  599. id="0"
  600. name="Finnish"
  601. package="10"
  602. />
  603. <otaLanguage
  604. id="0"
  605. name="Polish"
  606. package="11"
  607. />
  608. </otaLanguages>
  609. <otaPackages>
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  652. size="5183988"
  653. />
  654. <package
  655. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  656. size="5183988"
  657. />
  658. </otaPackages>
  659. </productMenu>
  660. <productMenu id="sip"
  661. type="1" >
  662. </productMenu>
  663. <productMenu id="illusion"
  664. type="1" >
  665. </productMenu>
  666. <productMenu id="meshIntercom"
  667. type="30" >
  668. </productMenu>
  669. <productMenu id="meshIntercom+"
  670. type="3"
  671. url="2" >
  672. </productMenu>
  673. <productMenu id="waveIntercom"
  674. type="1" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercom"
  677. type="1"
  678. url="2" >
  679. </productMenu>
  680. <productMenu id="bluetoothIntercomGrouping"
  681. type="0" >
  682. </productMenu>
  683. <productMenu id="fmradio"
  684. type="1"
  685. url="1" >
  686. </productMenu>
  687. <productMenu id="phone"
  688. type="1" >
  689. </productMenu>
  690. <productMenu id="music"
  691. type="1" >
  692. </productMenu>
  693. <productMenu id="musicSharing"
  694. type="0" >
  695. </productMenu>
  696. <productMenu id="deviceSetting"
  697. type="1"
  698. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  699. <productMenuURL version="1.2.6"
  700. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  701. />
  702. <productMenuURL version="1.2.3"
  703. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  704. />
  705. </productMenu>
  706. <productMenu id="quickGuide"
  707. type="0"
  708. url=""
  709. size="1.12MB" >
  710. </productMenu>
  711. <productMenu id="userGuide"
  712. type="1"
  713. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  714. size="2.0MB" >
  715. </productMenu>
  716. <productMenu id="videoGuide"
  717. type="0"
  718. url=""
  719. size="3.41MB" >
  720. </productMenu>
  721. <productMenu id="connectGuide"
  722. type="1"
  723. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  724. size="1.12MB" >
  725. </productMenu>
  726. <productMenu id="volume"
  727. type="16" >
  728. </productMenu>
  729. <productMenu id="volume+"
  730. type="2"
  731. url="0x6004" >
  732. <productMenuURL version="1.2.3"
  733. url="0x6004"
  734. />
  735. </productMenu>
  736. <productMenu id="soundMode"
  737. type="0" >
  738. </productMenu>
  739. <productMenu id="appearance"
  740. type="1"
  741. url="2|white,silver,chrome,black" >
  742. </productMenu>
  743. <productMenu id="battery"
  744. type="1" >
  745. </productMenu>
  746. <productID id="6A0D"
  747. />
  748. <productGroupable type="0"
  749. />
  750. </product>
  751. <product id="60S"
  752. name="60S"
  753. series="60"
  754. latestVersion="1.2.8"
  755. latestVersionMesh="1.2"
  756. latestVersionVoicePrompt="1.5"
  757. show = "-1" >
  758. <productMenu id="protocol"
  759. type="2" >
  760. </productMenu>
  761. <productMenu id="ota"
  762. type="2" >
  763. <otaLanguages>
  764. <otaLanguage
  765. id="0"
  766. name="English"
  767. package="0"
  768. />
  769. <otaLanguage
  770. id="0"
  771. name="French"
  772. package="1"
  773. />
  774. <otaLanguage
  775. id="0"
  776. name="Spanish"
  777. package="2"
  778. />
  779. <otaLanguage
  780. id="0"
  781. name="Italian"
  782. package="3"
  783. />
  784. <otaLanguage
  785. id="0"
  786. name="German"
  787. package="4"
  788. />
  789. <otaLanguage
  790. id="0"
  791. name="Dutch"
  792. package="5"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Russian"
  797. package="6"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Chinese"
  802. package="7"
  803. />
  804. <otaLanguage
  805. id="0"
  806. name="Korean"
  807. package="8"
  808. />
  809. <otaLanguage
  810. id="0"
  811. name="Japanese"
  812. package="9"
  813. />
  814. <otaLanguage
  815. id="0"
  816. name="Finnish"
  817. package="10"
  818. />
  819. <otaLanguage
  820. id="0"
  821. name="Polish"
  822. package="11"
  823. />
  824. </otaLanguages>
  825. <otaPackages>
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  864. size="5183988"
  865. />
  866. <package
  867. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  868. size="5183988"
  869. />
  870. <package
  871. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  872. size="5183988"
  873. />
  874. </otaPackages>
  875. </productMenu>
  876. <productMenu id="wa"
  877. type="0" >
  878. </productMenu>
  879. <productMenu id="sip"
  880. type="1" >
  881. </productMenu>
  882. <productMenu id="led"
  883. type="0" >
  884. </productMenu>
  885. <productMenu id="illusion"
  886. type="1" >
  887. </productMenu>
  888. <productMenu id="meshIntercom"
  889. type="30" >
  890. </productMenu>
  891. <productMenu id="meshIntercom+"
  892. type="3"
  893. url="2" >
  894. <productMenuURL version="1.0.2"
  895. url="10"
  896. />
  897. </productMenu>
  898. <productMenu id="waveIntercom"
  899. type="1" >
  900. <productMenuType version="1.0.9"
  901. type="0"
  902. />
  903. </productMenu>
  904. <productMenu id="bluetoothIntercom"
  905. type="1"
  906. url="2" >
  907. </productMenu>
  908. <productMenu id="bluetoothIntercomGrouping"
  909. type="0" >
  910. </productMenu>
  911. <productMenu id="fmradio"
  912. type="1"
  913. url="1" >
  914. </productMenu>
  915. <productMenu id="phone"
  916. type="1" >
  917. </productMenu>
  918. <productMenu id="music"
  919. type="1" >
  920. </productMenu>
  921. <productMenu id="musicSharing"
  922. type="0" >
  923. </productMenu>
  924. <productMenu id="deviceSetting"
  925. type="1"
  926. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  927. <productMenuURL version="1.2.6"
  928. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  929. />
  930. <productMenuURL version="1.2.3"
  931. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  932. />
  933. <productMenuURL version="1.0.2"
  934. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  935. />
  936. <productMenuURL version="1.0"
  937. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  938. />
  939. <productMenuURL version="0.9.11"
  940. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  941. />
  942. </productMenu>
  943. <productMenu id="quickGuide"
  944. type="0"
  945. url=""
  946. size="1.12MB" >
  947. </productMenu>
  948. <productMenu id="userGuide"
  949. type="1"
  950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  951. size="2.0MB" >
  952. </productMenu>
  953. <productMenu id="videoGuide"
  954. type="0"
  955. url=""
  956. size="3.41MB" >
  957. </productMenu>
  958. <productMenu id="connectGuide"
  959. type="1"
  960. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  961. size="1.12MB" >
  962. </productMenu>
  963. <productMenu id="volume"
  964. type="16" >
  965. <productMenuType version="0.9.11"
  966. type="13"
  967. />
  968. </productMenu>
  969. <productMenu id="volume+"
  970. type="2"
  971. url="0x6004" >
  972. <productMenuURL version="1.2.3"
  973. url="0x6004"
  974. />
  975. </productMenu>
  976. <productMenu id="soundMode"
  977. type="0" >
  978. <productMenuType version="0.9.11"
  979. type="0"
  980. />
  981. </productMenu>
  982. <productMenu id="appearance"
  983. type="1"
  984. url="2|white,silver,chrome,black" >
  985. </productMenu>
  986. <productMenu id="battery"
  987. type="1" >
  988. </productMenu>
  989. <productID id="6A02"
  990. />
  991. <productGroupable type="0"
  992. />
  993. </product>
  994. <product id="60X"
  995. name="60X"
  996. series="60"
  997. latestVersion="1.0"
  998. latestVersionMesh="0.19"
  999. latestVersionVoicePrompt="1.7"
  1000. show = "-1" >
  1001. <productMenu id="protocol"
  1002. type="2" >
  1003. </productMenu>
  1004. <productMenu id="ota"
  1005. type="2" >
  1006. <otaLanguages>
  1007. <otaLanguage
  1008. id="0"
  1009. name="English"
  1010. package="0"
  1011. />
  1012. <otaLanguage
  1013. id="0"
  1014. name="French"
  1015. package="1"
  1016. />
  1017. <otaLanguage
  1018. id="0"
  1019. name="Spanish"
  1020. package="2"
  1021. />
  1022. <otaLanguage
  1023. id="0"
  1024. name="Italian"
  1025. package="3"
  1026. />
  1027. <otaLanguage
  1028. id="0"
  1029. name="German"
  1030. package="4"
  1031. />
  1032. <otaLanguage
  1033. id="0"
  1034. name="Dutch"
  1035. package="5"
  1036. />
  1037. <otaLanguage
  1038. id="0"
  1039. name="Russian"
  1040. package="6"
  1041. />
  1042. <otaLanguage
  1043. id="0"
  1044. name="Chinese"
  1045. package="7"
  1046. />
  1047. <otaLanguage
  1048. id="0"
  1049. name="Korean"
  1050. package="8"
  1051. />
  1052. <otaLanguage
  1053. id="0"
  1054. name="Japanese"
  1055. package="9"
  1056. />
  1057. <otaLanguage
  1058. id="0"
  1059. name="Finnish"
  1060. package="10"
  1061. />
  1062. <otaLanguage
  1063. id="0"
  1064. name="Polish"
  1065. package="11"
  1066. />
  1067. </otaLanguages>
  1068. <otaPackages>
  1069. <package
  1070. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fr-FR.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-es-ES.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-it-IT.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-de-DE.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-nl-NL.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ru-RU.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-cmn-CN.img"
  1099. size="5183988"
  1100. />
  1101. <package
  1102. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ko-KR.img"
  1103. size="5183988"
  1104. />
  1105. <package
  1106. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-ja-JP.img"
  1107. size="5183988"
  1108. />
  1109. <package
  1110. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-fi-FI.img"
  1111. size="5183988"
  1112. />
  1113. <package
  1114. url="https://api.sena.com/support/OTA/Motorcycles/60X/60X-v1.0-build5-pl-PL.img"
  1115. size="5183988"
  1116. />
  1117. </otaPackages>
  1118. </productMenu>
  1119. <productMenu id="wa"
  1120. type="0" >
  1121. </productMenu>
  1122. <productMenu id="sip"
  1123. type="1" >
  1124. </productMenu>
  1125. <productMenu id="led"
  1126. type="1" >
  1127. </productMenu>
  1128. <productMenu id="illusion"
  1129. type="1" >
  1130. </productMenu>
  1131. <productMenu id="meshIntercom"
  1132. type="30" >
  1133. </productMenu>
  1134. <productMenu id="meshIntercom+"
  1135. type="3"
  1136. url="2" >
  1137. </productMenu>
  1138. <productMenu id="bluetoothIntercom"
  1139. type="1" >
  1140. </productMenu>
  1141. <productMenu id="fmradio"
  1142. type="1"
  1143. url="1" >
  1144. </productMenu>
  1145. <productMenu id="mic"
  1146. type="0" >
  1147. </productMenu>
  1148. <productMenu id="phone"
  1149. type="1" >
  1150. </productMenu>
  1151. <productMenu id="music"
  1152. type="1" >
  1153. </productMenu>
  1154. <productMenu id="musicSharing"
  1155. type="0" >
  1156. </productMenu>
  1157. <productMenu id="deviceSetting"
  1158. type="1"
  1159. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1160. </productMenu>
  1161. <productMenu id="quickGuide"
  1162. type="0"
  1163. url=""
  1164. size="1.12MB" >
  1165. </productMenu>
  1166. <productMenu id="userGuide"
  1167. type="0"
  1168. url=""
  1169. size="2.0MB" >
  1170. </productMenu>
  1171. <productMenu id="videoGuide"
  1172. type="0"
  1173. url=""
  1174. size="3.41MB" >
  1175. </productMenu>
  1176. <productMenu id="keySettings"
  1177. type="1"
  1178. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1179. </productMenu>
  1180. <productMenu id="volume"
  1181. type="13" >
  1182. </productMenu>
  1183. <productMenu id="volume+"
  1184. type="2"
  1185. url="0x6004" >
  1186. </productMenu>
  1187. <productMenu id="appearance"
  1188. type="1"
  1189. url="1|white,silver,black,glossy_black" >
  1190. </productMenu>
  1191. <productMenu id="battery"
  1192. type="1" >
  1193. </productMenu>
  1194. <productID id="6A03"
  1195. />
  1196. <productGroupable type="0"
  1197. />
  1198. </product>
  1199. <product id="R35"
  1200. name="R35"
  1201. series="R"
  1202. latestVersion="1.1"
  1203. latestVersionVoicePrompt="1.5"
  1204. show = "-1" >
  1205. <productMenu id="protocol"
  1206. type="2" >
  1207. </productMenu>
  1208. <productMenu id="ota"
  1209. type="2" >
  1210. <otaLanguages>
  1211. <otaLanguage
  1212. id="0"
  1213. name="English"
  1214. package="0"
  1215. />
  1216. <otaLanguage
  1217. id="0"
  1218. name="Chinese"
  1219. package="1"
  1220. />
  1221. <otaLanguage
  1222. id="0"
  1223. name="Chinese Singapore"
  1224. package="2"
  1225. />
  1226. <otaLanguage
  1227. id="0"
  1228. name="Filipino"
  1229. package="3"
  1230. />
  1231. <otaLanguage
  1232. id="0"
  1233. name="Hebrew"
  1234. package="4"
  1235. />
  1236. <otaLanguage
  1237. id="0"
  1238. name="Hindi"
  1239. package="5"
  1240. />
  1241. <otaLanguage
  1242. id="0"
  1243. name="Indonesian"
  1244. package="6"
  1245. />
  1246. <otaLanguage
  1247. id="0"
  1248. name="Japanese"
  1249. package="7"
  1250. />
  1251. <otaLanguage
  1252. id="0"
  1253. name="Korean"
  1254. package="8"
  1255. />
  1256. <otaLanguage
  1257. id="0"
  1258. name="Malay"
  1259. package="9"
  1260. />
  1261. <otaLanguage
  1262. id="0"
  1263. name="Modern Standard Arabic"
  1264. package="10"
  1265. />
  1266. <otaLanguage
  1267. id="0"
  1268. name="Taiwanese"
  1269. package="11"
  1270. />
  1271. <otaLanguage
  1272. id="0"
  1273. name="Tamil"
  1274. package="12"
  1275. />
  1276. <otaLanguage
  1277. id="0"
  1278. name="Thai"
  1279. package="13"
  1280. />
  1281. <otaLanguage
  1282. id="0"
  1283. name="东北话"
  1284. package="14"
  1285. />
  1286. <otaLanguage
  1287. id="0"
  1288. name="广东话"
  1289. package="15"
  1290. />
  1291. <otaLanguage
  1292. id="0"
  1293. name="江浙沪"
  1294. package="16"
  1295. />
  1296. <otaLanguage
  1297. id="0"
  1298. name="四川话"
  1299. package="17"
  1300. />
  1301. <otaLanguage
  1302. id="0"
  1303. name="陕西话"
  1304. package="18"
  1305. />
  1306. </otaLanguages>
  1307. <otaPackages>
  1308. <package
  1309. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1310. size="5183988"
  1311. />
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1346. size="5183988"
  1347. />
  1348. <package
  1349. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1350. size="5183988"
  1351. />
  1352. <package
  1353. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1354. size="5183988"
  1355. />
  1356. <package
  1357. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1358. size="5183988"
  1359. />
  1360. <package
  1361. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1362. size="5183988"
  1363. />
  1364. <package
  1365. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1366. size="5183988"
  1367. />
  1368. <package
  1369. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1370. size="5183988"
  1371. />
  1372. <package
  1373. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1374. size="5183988"
  1375. />
  1376. <package
  1377. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1378. size="5183988"
  1379. />
  1380. <package
  1381. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1382. size="5183988"
  1383. />
  1384. </otaPackages>
  1385. </productMenu>
  1386. <productMenu id="sip"
  1387. type="1" >
  1388. </productMenu>
  1389. <productMenu id="illusion"
  1390. type="1" >
  1391. </productMenu>
  1392. <productMenu id="meshIntercom"
  1393. type="30" >
  1394. </productMenu>
  1395. <productMenu id="meshIntercom+"
  1396. type="3"
  1397. url="2" >
  1398. </productMenu>
  1399. <productMenu id="waveIntercom"
  1400. type="1" >
  1401. </productMenu>
  1402. <productMenu id="phone"
  1403. type="1" >
  1404. </productMenu>
  1405. <productMenu id="music"
  1406. type="1" >
  1407. </productMenu>
  1408. <productMenu id="musicSharing"
  1409. type="0" >
  1410. </productMenu>
  1411. <productMenu id="deviceSetting"
  1412. type="1"
  1413. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1414. <productMenuURL version="1.0.3"
  1415. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1416. />
  1417. </productMenu>
  1418. <productMenu id="quickGuide"
  1419. type="0"
  1420. url=""
  1421. size="1.12MB" >
  1422. </productMenu>
  1423. <productMenu id="userGuide"
  1424. type="1"
  1425. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1426. size="2.0MB" >
  1427. </productMenu>
  1428. <productMenu id="videoGuide"
  1429. type="0"
  1430. url=""
  1431. size="3.41MB" >
  1432. </productMenu>
  1433. <productMenu id="connectGuide"
  1434. type="0"
  1435. url=""
  1436. size="1.12MB" >
  1437. </productMenu>
  1438. <productMenu id="volume"
  1439. type="16" >
  1440. </productMenu>
  1441. <productMenu id="volume+"
  1442. type="2"
  1443. url="0x6004" >
  1444. </productMenu>
  1445. <productMenu id="soundMode"
  1446. type="0" >
  1447. </productMenu>
  1448. <productMenu id="appearance"
  1449. type="1"
  1450. url="1|white,silver,chrome,black" >
  1451. </productMenu>
  1452. <productMenu id="battery"
  1453. type="1" >
  1454. </productMenu>
  1455. <productID id="6A06"
  1456. />
  1457. <productGroupable type="0"
  1458. />
  1459. </product>
  1460. <product id="COMP1"
  1461. name="BMW COM P1"
  1462. series="60"
  1463. latestVersion="1.0.6"
  1464. latestVersionMesh="0.19"
  1465. latestVersionVoicePrompt="1.0"
  1466. show = "-1" >
  1467. <productMenu id="protocol"
  1468. type="2" >
  1469. </productMenu>
  1470. <productMenu id="ota"
  1471. type="2" >
  1472. <otaLanguages>
  1473. <otaLanguage
  1474. id="0"
  1475. name="English"
  1476. package="0"
  1477. />
  1478. <otaLanguage
  1479. id="0"
  1480. name="French"
  1481. package="1"
  1482. />
  1483. <otaLanguage
  1484. id="0"
  1485. name="Spanish"
  1486. package="2"
  1487. />
  1488. <otaLanguage
  1489. id="0"
  1490. name="Italian"
  1491. package="3"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="German"
  1496. package="4"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Dutch"
  1501. package="5"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Russian"
  1506. package="6"
  1507. />
  1508. <otaLanguage
  1509. id="0"
  1510. name="Chinese"
  1511. package="7"
  1512. />
  1513. <otaLanguage
  1514. id="0"
  1515. name="Korean"
  1516. package="8"
  1517. />
  1518. <otaLanguage
  1519. id="0"
  1520. name="Japanese"
  1521. package="9"
  1522. />
  1523. <otaLanguage
  1524. id="0"
  1525. name="Finnish"
  1526. package="10"
  1527. />
  1528. </otaLanguages>
  1529. <otaPackages>
  1530. <package
  1531. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1532. size="5183988"
  1533. />
  1534. <package
  1535. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1536. size="5183988"
  1537. />
  1538. <package
  1539. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1540. size="5183988"
  1541. />
  1542. <package
  1543. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1544. size="5183988"
  1545. />
  1546. <package
  1547. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1548. size="5183988"
  1549. />
  1550. <package
  1551. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1552. size="5183988"
  1553. />
  1554. <package
  1555. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1556. size="5183988"
  1557. />
  1558. <package
  1559. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1560. size="5183988"
  1561. />
  1562. <package
  1563. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1564. size="5183988"
  1565. />
  1566. <package
  1567. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1568. size="5183988"
  1569. />
  1570. <package
  1571. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1572. size="5183988"
  1573. />
  1574. </otaPackages>
  1575. </productMenu>
  1576. <productMenu id="wa"
  1577. type="0" >
  1578. </productMenu>
  1579. <productMenu id="sip"
  1580. type="1" >
  1581. </productMenu>
  1582. <productMenu id="led"
  1583. type="0" >
  1584. </productMenu>
  1585. <productMenu id="illusion"
  1586. type="0" >
  1587. </productMenu>
  1588. <productMenu id="meshIntercom"
  1589. type="30" >
  1590. </productMenu>
  1591. <productMenu id="bluetoothIntercom"
  1592. type="1" >
  1593. </productMenu>
  1594. <productMenu id="bluetoothIntercomGrouping"
  1595. type="0" >
  1596. </productMenu>
  1597. <productMenu id="fmradio"
  1598. type="0" >
  1599. </productMenu>
  1600. <productMenu id="phone"
  1601. type="1" >
  1602. </productMenu>
  1603. <productMenu id="music"
  1604. type="1" >
  1605. </productMenu>
  1606. <productMenu id="musicSharing"
  1607. type="0" >
  1608. </productMenu>
  1609. <productMenu id="deviceSetting"
  1610. type="1"
  1611. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1612. </productMenu>
  1613. <productMenu id="quickGuide"
  1614. type="0"
  1615. url=""
  1616. size="1.12MB" >
  1617. </productMenu>
  1618. <productMenu id="userGuide"
  1619. type="0"
  1620. url=""
  1621. size="2.0MB" >
  1622. </productMenu>
  1623. <productMenu id="videoGuide"
  1624. type="0"
  1625. url=""
  1626. size="3.41MB" >
  1627. </productMenu>
  1628. <productMenu id="volume"
  1629. type="16" >
  1630. </productMenu>
  1631. <productMenu id="battery"
  1632. type="1" >
  1633. </productMenu>
  1634. <productID id="6A80"
  1635. />
  1636. <productGroupable type="0"
  1637. />
  1638. </product>
  1639. <product id="50S"
  1640. name="50S"
  1641. series="50"
  1642. latestVersion="2.7.2"
  1643. show = "1" >
  1644. <productMenu id="protocol"
  1645. type="2" >
  1646. </productMenu>
  1647. <productMenu id="alexa"
  1648. type="0" >
  1649. </productMenu>
  1650. <productMenu id="ota"
  1651. type="0"
  1652. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1653. size="1150234" >
  1654. </productMenu>
  1655. <productMenu id="wa"
  1656. type="1" >
  1657. </productMenu>
  1658. <productMenu id="sip"
  1659. type="1" >
  1660. </productMenu>
  1661. <productMenu id="meshIntercom"
  1662. type="30" >
  1663. <productMenuType version="2.1.1"
  1664. type="20"
  1665. />
  1666. </productMenu>
  1667. <productMenu id="meshIntercom+"
  1668. type="3"
  1669. url="2" >
  1670. <productMenuType version="2.5.9"
  1671. type="2"
  1672. />
  1673. <productMenuURL version="2.1.1"
  1674. url="0"
  1675. />
  1676. </productMenu>
  1677. <productMenu id="waveIntercom"
  1678. type="1" >
  1679. <productMenuType version="2.6"
  1680. type="0"
  1681. />
  1682. </productMenu>
  1683. <productMenu id="bluetoothIntercom"
  1684. type="1" >
  1685. </productMenu>
  1686. <productMenu id="phone"
  1687. type="1" >
  1688. </productMenu>
  1689. <productMenu id="music"
  1690. type="1" >
  1691. </productMenu>
  1692. <productMenu id="fmradio"
  1693. type="1" >
  1694. </productMenu>
  1695. <productMenu id="deviceSetting"
  1696. type="1"
  1697. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1698. <productMenuURL version="2.5.9"
  1699. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1700. />
  1701. <productMenuURL version="2.1.1"
  1702. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1703. />
  1704. <productMenuURL version="2.0.3"
  1705. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1706. />
  1707. </productMenu>
  1708. <productMenu id="quickGuide"
  1709. type="0"
  1710. url=""
  1711. size="934KB" >
  1712. </productMenu>
  1713. <productMenu id="userGuide"
  1714. type="1"
  1715. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1716. size="1.14MB" >
  1717. </productMenu>
  1718. <productMenu id="videoGuide"
  1719. type="1"
  1720. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1721. size="3.41MB" >
  1722. </productMenu>
  1723. <productMenu id="connectGuide"
  1724. type="1"
  1725. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1726. size="1.12MB" >
  1727. </productMenu>
  1728. <productMenu id="volume"
  1729. type="11" >
  1730. </productMenu>
  1731. <productMenu id="battery"
  1732. type="1" >
  1733. </productMenu>
  1734. <productID id="3210"
  1735. />
  1736. <productGroupable type="0"
  1737. />
  1738. </product>
  1739. <product id="50S"
  1740. name="50S"
  1741. series="50"
  1742. latestVersion="1.5.1"
  1743. show = "-1" >
  1744. <productMenu id="protocol"
  1745. type="2" >
  1746. </productMenu>
  1747. <productMenu id="alexa"
  1748. type="0" >
  1749. </productMenu>
  1750. <productMenu id="wa"
  1751. type="1" >
  1752. </productMenu>
  1753. <productMenu id="sip"
  1754. type="1" >
  1755. </productMenu>
  1756. <productMenu id="meshIntercom"
  1757. type="30" >
  1758. <productMenuType version="1.2.2"
  1759. type="20"
  1760. />
  1761. </productMenu>
  1762. <productMenu id="meshIntercom+"
  1763. type="3"
  1764. url="2" >
  1765. <productMenuType version="1.4.9"
  1766. type="2"
  1767. />
  1768. <productMenuURL version="1.2.2"
  1769. url="0"
  1770. />
  1771. </productMenu>
  1772. <productMenu id="waveIntercom"
  1773. type="1" >
  1774. <productMenuType version="1.3.9"
  1775. type="0"
  1776. />
  1777. </productMenu>
  1778. <productMenu id="bluetoothIntercom"
  1779. type="1" >
  1780. </productMenu>
  1781. <productMenu id="phone"
  1782. type="1" >
  1783. </productMenu>
  1784. <productMenu id="music"
  1785. type="1" >
  1786. </productMenu>
  1787. <productMenu id="fmradio"
  1788. type="1" >
  1789. </productMenu>
  1790. <productMenu id="deviceSetting"
  1791. type="1"
  1792. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1793. <productMenuURL version="1.4.9"
  1794. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1795. />
  1796. <productMenuURL version="1.3.9"
  1797. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1798. />
  1799. <productMenuURL version="1.2.2"
  1800. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1801. />
  1802. <productMenuURL version="1.1.1"
  1803. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1804. />
  1805. </productMenu>
  1806. <productMenu id="quickGuide"
  1807. type="0"
  1808. url=""
  1809. size="934KB" >
  1810. </productMenu>
  1811. <productMenu id="userGuide"
  1812. type="1"
  1813. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1814. size="1.14MB" >
  1815. </productMenu>
  1816. <productMenu id="videoGuide"
  1817. type="1"
  1818. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1819. size="3.41MB" >
  1820. </productMenu>
  1821. <productMenu id="volume"
  1822. type="11" >
  1823. </productMenu>
  1824. <productMenu id="battery"
  1825. type="1" >
  1826. </productMenu>
  1827. <productID id="3132"
  1828. />
  1829. <productGroupable type="0"
  1830. />
  1831. </product>
  1832. <product id="50R"
  1833. name="50R"
  1834. series="50"
  1835. latestVersion="2.7.1"
  1836. show = "1" >
  1837. <productMenu id="protocol"
  1838. type="2" >
  1839. </productMenu>
  1840. <productMenu id="alexa"
  1841. type="0" >
  1842. </productMenu>
  1843. <productMenu id="ota"
  1844. type="0"
  1845. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1846. size="1150234" >
  1847. </productMenu>
  1848. <productMenu id="wa"
  1849. type="1" >
  1850. </productMenu>
  1851. <productMenu id="sip"
  1852. type="1" >
  1853. </productMenu>
  1854. <productMenu id="meshIntercom"
  1855. type="30" >
  1856. <productMenuType version="2.1.1"
  1857. type="20"
  1858. />
  1859. </productMenu>
  1860. <productMenu id="meshIntercom+"
  1861. type="3"
  1862. url="2" >
  1863. <productMenuType version="2.5.9"
  1864. type="2"
  1865. />
  1866. <productMenuURL version="2.1.1"
  1867. url="0"
  1868. />
  1869. </productMenu>
  1870. <productMenu id="waveIntercom"
  1871. type="1" >
  1872. <productMenuType version="2.6"
  1873. type="0"
  1874. />
  1875. </productMenu>
  1876. <productMenu id="bluetoothIntercom"
  1877. type="1" >
  1878. </productMenu>
  1879. <productMenu id="phone"
  1880. type="1" >
  1881. </productMenu>
  1882. <productMenu id="music"
  1883. type="1" >
  1884. </productMenu>
  1885. <productMenu id="fmradio"
  1886. type="1" >
  1887. </productMenu>
  1888. <productMenu id="deviceSetting"
  1889. type="1"
  1890. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1891. <productMenuURL version="2.5.9"
  1892. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1893. />
  1894. <productMenuURL version="2.1.1"
  1895. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1896. />
  1897. <productMenuURL version="2.0"
  1898. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1899. />
  1900. </productMenu>
  1901. <productMenu id="quickGuide"
  1902. type="0"
  1903. url=""
  1904. size="344KB" >
  1905. </productMenu>
  1906. <productMenu id="userGuide"
  1907. type="1"
  1908. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1909. size="3.41MB" >
  1910. </productMenu>
  1911. <productMenu id="videoGuide"
  1912. type="1"
  1913. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1914. size="3.41MB" >
  1915. </productMenu>
  1916. <productMenu id="connectGuide"
  1917. type="1"
  1918. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1919. size="1.12MB" >
  1920. </productMenu>
  1921. <productMenu id="volume"
  1922. type="11" >
  1923. </productMenu>
  1924. <productMenu id="battery"
  1925. type="1" >
  1926. </productMenu>
  1927. <productID id="3218"
  1928. />
  1929. <productGroupable type="0"
  1930. />
  1931. </product>
  1932. <product id="50R"
  1933. name="50R"
  1934. series="50"
  1935. latestVersion="1.5.1"
  1936. show = "-1" >
  1937. <productMenu id="protocol"
  1938. type="2" >
  1939. </productMenu>
  1940. <productMenu id="alexa"
  1941. type="0" >
  1942. </productMenu>
  1943. <productMenu id="wa"
  1944. type="1" >
  1945. </productMenu>
  1946. <productMenu id="sip"
  1947. type="1" >
  1948. </productMenu>
  1949. <productMenu id="meshIntercom"
  1950. type="30" >
  1951. <productMenuType version="1.2.2"
  1952. type="20"
  1953. />
  1954. </productMenu>
  1955. <productMenu id="meshIntercom+"
  1956. type="3"
  1957. url="2" >
  1958. <productMenuType version="1.4.9"
  1959. type="2"
  1960. />
  1961. <productMenuURL version="1.2.2"
  1962. url="0"
  1963. />
  1964. </productMenu>
  1965. <productMenu id="waveIntercom"
  1966. type="1" >
  1967. <productMenuType version="1.3.9"
  1968. type="0"
  1969. />
  1970. </productMenu>
  1971. <productMenu id="bluetoothIntercom"
  1972. type="1" >
  1973. </productMenu>
  1974. <productMenu id="phone"
  1975. type="1" >
  1976. </productMenu>
  1977. <productMenu id="music"
  1978. type="1" >
  1979. </productMenu>
  1980. <productMenu id="fmradio"
  1981. type="1" >
  1982. </productMenu>
  1983. <productMenu id="deviceSetting"
  1984. type="1"
  1985. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1986. <productMenuURL version="1.4.9"
  1987. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1988. />
  1989. <productMenuURL version="1.3.9"
  1990. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1991. />
  1992. <productMenuURL version="1.2.2"
  1993. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1994. />
  1995. <productMenuURL version="1.1.1"
  1996. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1997. />
  1998. </productMenu>
  1999. <productMenu id="quickGuide"
  2000. type="0"
  2001. url=""
  2002. size="344KB" >
  2003. </productMenu>
  2004. <productMenu id="userGuide"
  2005. type="1"
  2006. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  2007. size="3.41MB" >
  2008. </productMenu>
  2009. <productMenu id="videoGuide"
  2010. type="1"
  2011. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  2012. size="3.41MB" >
  2013. </productMenu>
  2014. <productMenu id="volume"
  2015. type="11" >
  2016. </productMenu>
  2017. <productMenu id="battery"
  2018. type="1" >
  2019. </productMenu>
  2020. <productID id="3134"
  2021. />
  2022. <productGroupable type="0"
  2023. />
  2024. </product>
  2025. <product id="50C"
  2026. name="50C"
  2027. series="50"
  2028. latestVersion="1.4.3"
  2029. show = "1" >
  2030. <productMenu id="protocol"
  2031. type="2" >
  2032. </productMenu>
  2033. <productMenu id="ota"
  2034. type="0" >
  2035. </productMenu>
  2036. <productMenu id="wa"
  2037. type="1" >
  2038. </productMenu>
  2039. <productMenu id="sip"
  2040. type="1" >
  2041. </productMenu>
  2042. <productMenu id="meshIntercom"
  2043. type="30" >
  2044. <productMenuType version="1.1.1"
  2045. type="20"
  2046. />
  2047. </productMenu>
  2048. <productMenu id="meshIntercom+"
  2049. type="3"
  2050. url="2" >
  2051. <productMenuType version="1.3.9"
  2052. type="2"
  2053. />
  2054. <productMenuURL version="1.1.1"
  2055. url="0"
  2056. />
  2057. </productMenu>
  2058. <productMenu id="waveIntercom"
  2059. type="1" >
  2060. <productMenuType version="1.2.9"
  2061. type="0"
  2062. />
  2063. </productMenu>
  2064. <productMenu id="bluetoothIntercom"
  2065. type="1" >
  2066. </productMenu>
  2067. <productMenu id="phone"
  2068. type="1" >
  2069. </productMenu>
  2070. <productMenu id="music"
  2071. type="1" >
  2072. </productMenu>
  2073. <productMenu id="fmradio"
  2074. type="1" >
  2075. </productMenu>
  2076. <productMenu id="deviceSetting"
  2077. type="1"
  2078. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2079. <productMenuURL version="1.3.9"
  2080. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2081. />
  2082. <productMenuURL version="1.1.1"
  2083. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2084. />
  2085. <productMenuURL version="1.0.1"
  2086. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2087. />
  2088. </productMenu>
  2089. <productMenu id="quickGuide"
  2090. type="0"
  2091. url=""
  2092. size="344KB" >
  2093. </productMenu>
  2094. <productMenu id="userGuide"
  2095. type="1"
  2096. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2097. size="3.41MB" >
  2098. </productMenu>
  2099. <productMenu id="connectGuide"
  2100. type="1"
  2101. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2102. size="1.12MB" >
  2103. </productMenu>
  2104. <productMenu id="volume"
  2105. type="11" >
  2106. </productMenu>
  2107. <productMenu id="battery"
  2108. type="1" >
  2109. </productMenu>
  2110. <productID id="3232"
  2111. />
  2112. <productGroupable type="0"
  2113. />
  2114. </product>
  2115. <product id="PHANTOMXB"
  2116. name="PHANTOM XB"
  2117. series="Helmet"
  2118. latestVersion="1.2.7"
  2119. latestVersionVoicePrompt="1.5"
  2120. show = "-1" >
  2121. <productMenu id="protocol"
  2122. type="2" >
  2123. </productMenu>
  2124. <productMenu id="ota"
  2125. type="2" >
  2126. <otaLanguages>
  2127. <otaLanguage
  2128. id="0"
  2129. name="English"
  2130. package="0"
  2131. />
  2132. <otaLanguage
  2133. id="0"
  2134. name="French"
  2135. package="1"
  2136. />
  2137. <otaLanguage
  2138. id="0"
  2139. name="Spanish"
  2140. package="2"
  2141. />
  2142. <otaLanguage
  2143. id="0"
  2144. name="Italian"
  2145. package="3"
  2146. />
  2147. <otaLanguage
  2148. id="0"
  2149. name="German"
  2150. package="4"
  2151. />
  2152. <otaLanguage
  2153. id="0"
  2154. name="Dutch"
  2155. package="5"
  2156. />
  2157. <otaLanguage
  2158. id="0"
  2159. name="Russian"
  2160. package="6"
  2161. />
  2162. <otaLanguage
  2163. id="0"
  2164. name="Chinese"
  2165. package="7"
  2166. />
  2167. <otaLanguage
  2168. id="0"
  2169. name="Korean"
  2170. package="8"
  2171. />
  2172. <otaLanguage
  2173. id="0"
  2174. name="Japanese"
  2175. package="9"
  2176. />
  2177. <otaLanguage
  2178. id="0"
  2179. name="Finnish"
  2180. package="10"
  2181. />
  2182. <otaLanguage
  2183. id="0"
  2184. name="Polish"
  2185. package="11"
  2186. />
  2187. </otaLanguages>
  2188. <otaPackages>
  2189. <package
  2190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2191. size="5183988"
  2192. />
  2193. <package
  2194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2195. size="5183988"
  2196. />
  2197. <package
  2198. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2199. size="5183988"
  2200. />
  2201. <package
  2202. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2203. size="5183988"
  2204. />
  2205. <package
  2206. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2207. size="5183988"
  2208. />
  2209. <package
  2210. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2211. size="5183988"
  2212. />
  2213. <package
  2214. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2215. size="5183988"
  2216. />
  2217. <package
  2218. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2219. size="5183988"
  2220. />
  2221. <package
  2222. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2223. size="5183988"
  2224. />
  2225. <package
  2226. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2227. size="5183988"
  2228. />
  2229. <package
  2230. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2231. size="5183988"
  2232. />
  2233. <package
  2234. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2235. size="5183988"
  2236. />
  2237. </otaPackages>
  2238. </productMenu>
  2239. <productMenu id="wa"
  2240. type="0" >
  2241. </productMenu>
  2242. <productMenu id="led"
  2243. type="5" >
  2244. </productMenu>
  2245. <productMenu id="led+"
  2246. type="2"
  2247. url="1" >
  2248. </productMenu>
  2249. <productMenu id="meshIntercom"
  2250. type="30" >
  2251. </productMenu>
  2252. <productMenu id="meshIntercom+"
  2253. type="3"
  2254. url="2" >
  2255. </productMenu>
  2256. <productMenu id="waveIntercom"
  2257. type="1" >
  2258. </productMenu>
  2259. <productMenu id="fmradio"
  2260. type="0" >
  2261. </productMenu>
  2262. <productMenu id="phone"
  2263. type="1" >
  2264. </productMenu>
  2265. <productMenu id="music"
  2266. type="1" >
  2267. </productMenu>
  2268. <productMenu id="musicSharing"
  2269. type="0" >
  2270. </productMenu>
  2271. <productMenu id="deviceSetting"
  2272. type="1"
  2273. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2274. <productMenuURL version="1.2.4"
  2275. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2276. />
  2277. </productMenu>
  2278. <productMenu id="quickGuide"
  2279. type="0"
  2280. url=""
  2281. size="1.12MB" >
  2282. </productMenu>
  2283. <productMenu id="userGuide"
  2284. type="1"
  2285. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2286. size="2.0MB" >
  2287. </productMenu>
  2288. <productMenu id="videoGuide"
  2289. type="0"
  2290. url=""
  2291. size="3.41MB" >
  2292. </productMenu>
  2293. <productMenu id="volume"
  2294. type="16" >
  2295. </productMenu>
  2296. <productMenu id="volume+"
  2297. type="2"
  2298. url="0x6004" >
  2299. </productMenu>
  2300. <productMenu id="battery"
  2301. type="1" >
  2302. </productMenu>
  2303. <productID id="6A0F"
  2304. />
  2305. <productGroupable type="0"
  2306. />
  2307. </product>
  2308. <product id="PHANTOMXB"
  2309. name="PHANTOM XB"
  2310. series="Helmet"
  2311. latestVersion="1.2.7"
  2312. latestVersionVoicePrompt="1.5"
  2313. show = "-1" >
  2314. <productMenu id="protocol"
  2315. type="2" >
  2316. </productMenu>
  2317. <productMenu id="ota"
  2318. type="2" >
  2319. <otaLanguages>
  2320. <otaLanguage
  2321. id="0"
  2322. name="English"
  2323. package="0"
  2324. />
  2325. <otaLanguage
  2326. id="0"
  2327. name="French"
  2328. package="1"
  2329. />
  2330. <otaLanguage
  2331. id="0"
  2332. name="Spanish"
  2333. package="2"
  2334. />
  2335. <otaLanguage
  2336. id="0"
  2337. name="Italian"
  2338. package="3"
  2339. />
  2340. <otaLanguage
  2341. id="0"
  2342. name="German"
  2343. package="4"
  2344. />
  2345. <otaLanguage
  2346. id="0"
  2347. name="Dutch"
  2348. package="5"
  2349. />
  2350. <otaLanguage
  2351. id="0"
  2352. name="Russian"
  2353. package="6"
  2354. />
  2355. <otaLanguage
  2356. id="0"
  2357. name="Chinese"
  2358. package="7"
  2359. />
  2360. <otaLanguage
  2361. id="0"
  2362. name="Korean"
  2363. package="8"
  2364. />
  2365. <otaLanguage
  2366. id="0"
  2367. name="Japanese"
  2368. package="9"
  2369. />
  2370. <otaLanguage
  2371. id="0"
  2372. name="Finnish"
  2373. package="10"
  2374. />
  2375. <otaLanguage
  2376. id="0"
  2377. name="Polish"
  2378. package="11"
  2379. />
  2380. </otaLanguages>
  2381. <otaPackages>
  2382. <package
  2383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2384. size="5183988"
  2385. />
  2386. <package
  2387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2388. size="5183988"
  2389. />
  2390. <package
  2391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2392. size="5183988"
  2393. />
  2394. <package
  2395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2396. size="5183988"
  2397. />
  2398. <package
  2399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2400. size="5183988"
  2401. />
  2402. <package
  2403. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2404. size="5183988"
  2405. />
  2406. <package
  2407. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2408. size="5183988"
  2409. />
  2410. <package
  2411. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2412. size="5183988"
  2413. />
  2414. <package
  2415. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2416. size="5183988"
  2417. />
  2418. <package
  2419. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2420. size="5183988"
  2421. />
  2422. <package
  2423. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2424. size="5183988"
  2425. />
  2426. <package
  2427. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2428. size="5183988"
  2429. />
  2430. </otaPackages>
  2431. </productMenu>
  2432. <productMenu id="wa"
  2433. type="0" >
  2434. </productMenu>
  2435. <productMenu id="led"
  2436. type="5" >
  2437. </productMenu>
  2438. <productMenu id="led+"
  2439. type="2"
  2440. url="1" >
  2441. </productMenu>
  2442. <productMenu id="meshIntercom"
  2443. type="30" >
  2444. </productMenu>
  2445. <productMenu id="meshIntercom+"
  2446. type="3"
  2447. url="2" >
  2448. </productMenu>
  2449. <productMenu id="waveIntercom"
  2450. type="1" >
  2451. </productMenu>
  2452. <productMenu id="fmradio"
  2453. type="0" >
  2454. </productMenu>
  2455. <productMenu id="phone"
  2456. type="1" >
  2457. </productMenu>
  2458. <productMenu id="music"
  2459. type="1" >
  2460. </productMenu>
  2461. <productMenu id="musicSharing"
  2462. type="0" >
  2463. </productMenu>
  2464. <productMenu id="deviceSetting"
  2465. type="1"
  2466. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2467. <productMenuURL version="1.2.4"
  2468. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2469. />
  2470. <productMenuURL version="1.2.1"
  2471. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2472. />
  2473. </productMenu>
  2474. <productMenu id="quickGuide"
  2475. type="0"
  2476. url=""
  2477. size="1.12MB" >
  2478. </productMenu>
  2479. <productMenu id="userGuide"
  2480. type="1"
  2481. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2482. size="2.0MB" >
  2483. </productMenu>
  2484. <productMenu id="videoGuide"
  2485. type="0"
  2486. url=""
  2487. size="3.41MB" >
  2488. </productMenu>
  2489. <productMenu id="volume"
  2490. type="16" >
  2491. </productMenu>
  2492. <productMenu id="volume+"
  2493. type="2"
  2494. url="0x6004" >
  2495. </productMenu>
  2496. <productMenu id="battery"
  2497. type="1" >
  2498. </productMenu>
  2499. <productID id="6A0C"
  2500. />
  2501. <productGroupable type="0"
  2502. />
  2503. </product>
  2504. <product id="PHANTOMKV"
  2505. name="PHANTOM KV"
  2506. series="Helmet"
  2507. latestVersion="1.2.2"
  2508. latestVersionVoicePrompt="1.0"
  2509. show = "-1" >
  2510. <productMenu id="protocol"
  2511. type="2" >
  2512. </productMenu>
  2513. <productMenu id="ota"
  2514. type="0" >
  2515. <otaLanguages>
  2516. <otaLanguage
  2517. id="0"
  2518. name="English"
  2519. package="0"
  2520. />
  2521. <otaLanguage
  2522. id="0"
  2523. name="French"
  2524. package="1"
  2525. />
  2526. <otaLanguage
  2527. id="0"
  2528. name="Spanish"
  2529. package="2"
  2530. />
  2531. <otaLanguage
  2532. id="0"
  2533. name="Italian"
  2534. package="3"
  2535. />
  2536. <otaLanguage
  2537. id="0"
  2538. name="German"
  2539. package="4"
  2540. />
  2541. <otaLanguage
  2542. id="0"
  2543. name="Dutch"
  2544. package="5"
  2545. />
  2546. <otaLanguage
  2547. id="0"
  2548. name="Russian"
  2549. package="6"
  2550. />
  2551. <otaLanguage
  2552. id="0"
  2553. name="Chinese"
  2554. package="7"
  2555. />
  2556. <otaLanguage
  2557. id="0"
  2558. name="Korean"
  2559. package="8"
  2560. />
  2561. <otaLanguage
  2562. id="0"
  2563. name="Japanese"
  2564. package="9"
  2565. />
  2566. <otaLanguage
  2567. id="0"
  2568. name="Finnish"
  2569. package="10"
  2570. />
  2571. <otaLanguage
  2572. id="0"
  2573. name="Polish"
  2574. package="11"
  2575. />
  2576. </otaLanguages>
  2577. <otaPackages>
  2578. <package
  2579. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2580. size="5183988"
  2581. />
  2582. <package
  2583. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2584. size="5183988"
  2585. />
  2586. <package
  2587. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2588. size="5183988"
  2589. />
  2590. <package
  2591. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2592. size="5183988"
  2593. />
  2594. <package
  2595. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2596. size="5183988"
  2597. />
  2598. <package
  2599. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2600. size="5183988"
  2601. />
  2602. <package
  2603. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2604. size="5183988"
  2605. />
  2606. <package
  2607. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2608. size="5183988"
  2609. />
  2610. <package
  2611. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2612. size="5183988"
  2613. />
  2614. <package
  2615. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2616. size="5183988"
  2617. />
  2618. <package
  2619. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2620. size="5183988"
  2621. />
  2622. <package
  2623. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2624. size="5183988"
  2625. />
  2626. </otaPackages>
  2627. </productMenu>
  2628. <productMenu id="wa"
  2629. type="0" >
  2630. </productMenu>
  2631. <productMenu id="led"
  2632. type="5" >
  2633. </productMenu>
  2634. <productMenu id="led+"
  2635. type="2"
  2636. url="1" >
  2637. </productMenu>
  2638. <productMenu id="meshIntercom"
  2639. type="30" >
  2640. </productMenu>
  2641. <productMenu id="meshIntercom+"
  2642. type="3"
  2643. url="2" >
  2644. </productMenu>
  2645. <productMenu id="waveIntercom"
  2646. type="1" >
  2647. </productMenu>
  2648. <productMenu id="fmradio"
  2649. type="0" >
  2650. </productMenu>
  2651. <productMenu id="phone"
  2652. type="1" >
  2653. </productMenu>
  2654. <productMenu id="music"
  2655. type="1" >
  2656. </productMenu>
  2657. <productMenu id="musicSharing"
  2658. type="0" >
  2659. </productMenu>
  2660. <productMenu id="deviceSetting"
  2661. type="1"
  2662. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2663. <productMenuURL version="1.2.4"
  2664. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2665. />
  2666. </productMenu>
  2667. <productMenu id="quickGuide"
  2668. type="0"
  2669. url=""
  2670. size="1.12MB" >
  2671. </productMenu>
  2672. <productMenu id="userGuide"
  2673. type="1"
  2674. url=""
  2675. size="2.0MB" >
  2676. </productMenu>
  2677. <productMenu id="videoGuide"
  2678. type="0"
  2679. url=""
  2680. size="3.41MB" >
  2681. </productMenu>
  2682. <productMenu id="volume"
  2683. type="16" >
  2684. </productMenu>
  2685. <productMenu id="volume+"
  2686. type="2"
  2687. url="0x6004" >
  2688. </productMenu>
  2689. <productMenu id="soundMode"
  2690. type="1" >
  2691. </productMenu>
  2692. <productMenu id="battery"
  2693. type="1" >
  2694. </productMenu>
  2695. <productID id="6A13"
  2696. />
  2697. <productGroupable type="0"
  2698. />
  2699. </product>
  2700. <product id="PHANTOMCamera"
  2701. name="PHANTOM Camera"
  2702. series="Helmet"
  2703. latestVersion="1.0.1"
  2704. latestVersionVoicePrompt="0.4"
  2705. show = "-1" >
  2706. <productMenu id="protocol"
  2707. type="2" >
  2708. </productMenu>
  2709. <productMenu id="ota"
  2710. type="3" >
  2711. <otaLanguages>
  2712. <otaLanguage
  2713. id="0"
  2714. name="English"
  2715. package="0"
  2716. />
  2717. <otaLanguage
  2718. id="0"
  2719. name="French"
  2720. package="1"
  2721. />
  2722. <otaLanguage
  2723. id="0"
  2724. name="Spanish"
  2725. package="2"
  2726. />
  2727. <otaLanguage
  2728. id="0"
  2729. name="Italian"
  2730. package="3"
  2731. />
  2732. <otaLanguage
  2733. id="0"
  2734. name="German"
  2735. package="4"
  2736. />
  2737. <otaLanguage
  2738. id="0"
  2739. name="Dutch"
  2740. package="5"
  2741. />
  2742. <otaLanguage
  2743. id="0"
  2744. name="Russian"
  2745. package="6"
  2746. />
  2747. <otaLanguage
  2748. id="0"
  2749. name="Chinese"
  2750. package="7"
  2751. />
  2752. <otaLanguage
  2753. id="0"
  2754. name="Korean"
  2755. package="8"
  2756. />
  2757. <otaLanguage
  2758. id="0"
  2759. name="Japanese"
  2760. package="9"
  2761. />
  2762. <otaLanguage
  2763. id="0"
  2764. name="Finnish"
  2765. package="10"
  2766. />
  2767. <otaLanguage
  2768. id="0"
  2769. name="Polish"
  2770. package="11"
  2771. />
  2772. </otaLanguages>
  2773. <otaPackages>
  2774. <package
  2775. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2776. size="5183988"
  2777. />
  2778. <package
  2779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2780. size="5183988"
  2781. />
  2782. <package
  2783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2784. size="5183988"
  2785. />
  2786. <package
  2787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2788. size="5183988"
  2789. />
  2790. <package
  2791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2792. size="5183988"
  2793. />
  2794. <package
  2795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2796. size="5183988"
  2797. />
  2798. <package
  2799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2800. size="5183988"
  2801. />
  2802. <package
  2803. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2804. size="5183988"
  2805. />
  2806. <package
  2807. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2808. size="5183988"
  2809. />
  2810. <package
  2811. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2812. size="5183988"
  2813. />
  2814. <package
  2815. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2816. size="5183988"
  2817. />
  2818. <package
  2819. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2820. size="5183988"
  2821. />
  2822. </otaPackages>
  2823. </productMenu>
  2824. <productMenu id="wa"
  2825. type="0" >
  2826. </productMenu>
  2827. <productMenu id="led"
  2828. type="5" >
  2829. </productMenu>
  2830. <productMenu id="led+"
  2831. type="2"
  2832. url="1" >
  2833. </productMenu>
  2834. <productMenu id="meshIntercom"
  2835. type="30" >
  2836. </productMenu>
  2837. <productMenu id="meshIntercom+"
  2838. type="3"
  2839. url="2" >
  2840. </productMenu>
  2841. <productMenu id="waveIntercom"
  2842. type="1" >
  2843. </productMenu>
  2844. <productMenu id="fmradio"
  2845. type="0" >
  2846. </productMenu>
  2847. <productMenu id="phone"
  2848. type="1" >
  2849. </productMenu>
  2850. <productMenu id="music"
  2851. type="1" >
  2852. </productMenu>
  2853. <productMenu id="musicSharing"
  2854. type="0" >
  2855. </productMenu>
  2856. <productMenu id="deviceSetting"
  2857. type="1"
  2858. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  2859. </productMenu>
  2860. <productMenu id="quickGuide"
  2861. type="0"
  2862. url=""
  2863. size="1.12MB" >
  2864. </productMenu>
  2865. <productMenu id="userGuide"
  2866. type="1"
  2867. url=""
  2868. size="2.0MB" >
  2869. </productMenu>
  2870. <productMenu id="videoGuide"
  2871. type="0"
  2872. url=""
  2873. size="3.41MB" >
  2874. </productMenu>
  2875. <productMenu id="volume"
  2876. type="16" >
  2877. </productMenu>
  2878. <productMenu id="battery"
  2879. type="1" >
  2880. </productMenu>
  2881. <productID id="6A10"
  2882. />
  2883. <productGroupable type="0"
  2884. />
  2885. </product>
  2886. <product id="PHANTOMCamera"
  2887. name="PHANTOM Camera"
  2888. series="Helmet"
  2889. latestVersion="1.0.1"
  2890. latestVersionVoicePrompt="0.4"
  2891. show = "-1" >
  2892. <productMenu id="protocol"
  2893. type="2" >
  2894. </productMenu>
  2895. <productMenu id="ota"
  2896. type="3" >
  2897. <otaLanguages>
  2898. <otaLanguage
  2899. id="0"
  2900. name="English"
  2901. package="0"
  2902. />
  2903. <otaLanguage
  2904. id="0"
  2905. name="French"
  2906. package="1"
  2907. />
  2908. <otaLanguage
  2909. id="0"
  2910. name="Spanish"
  2911. package="2"
  2912. />
  2913. <otaLanguage
  2914. id="0"
  2915. name="Italian"
  2916. package="3"
  2917. />
  2918. <otaLanguage
  2919. id="0"
  2920. name="German"
  2921. package="4"
  2922. />
  2923. <otaLanguage
  2924. id="0"
  2925. name="Dutch"
  2926. package="5"
  2927. />
  2928. <otaLanguage
  2929. id="0"
  2930. name="Russian"
  2931. package="6"
  2932. />
  2933. <otaLanguage
  2934. id="0"
  2935. name="Chinese"
  2936. package="7"
  2937. />
  2938. <otaLanguage
  2939. id="0"
  2940. name="Korean"
  2941. package="8"
  2942. />
  2943. <otaLanguage
  2944. id="0"
  2945. name="Japanese"
  2946. package="9"
  2947. />
  2948. <otaLanguage
  2949. id="0"
  2950. name="Finnish"
  2951. package="10"
  2952. />
  2953. <otaLanguage
  2954. id="0"
  2955. name="Polish"
  2956. package="11"
  2957. />
  2958. </otaLanguages>
  2959. <otaPackages>
  2960. <package
  2961. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  2962. size="5183988"
  2963. />
  2964. <package
  2965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  2966. size="5183988"
  2967. />
  2968. <package
  2969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  2970. size="5183988"
  2971. />
  2972. <package
  2973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  2974. size="5183988"
  2975. />
  2976. <package
  2977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  2978. size="5183988"
  2979. />
  2980. <package
  2981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  2982. size="5183988"
  2983. />
  2984. <package
  2985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  2986. size="5183988"
  2987. />
  2988. <package
  2989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  2990. size="5183988"
  2991. />
  2992. <package
  2993. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  2994. size="5183988"
  2995. />
  2996. <package
  2997. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  2998. size="5183988"
  2999. />
  3000. <package
  3001. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3002. size="5183988"
  3003. />
  3004. <package
  3005. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3006. size="5183988"
  3007. />
  3008. </otaPackages>
  3009. </productMenu>
  3010. <productMenu id="wa"
  3011. type="0" >
  3012. </productMenu>
  3013. <productMenu id="led"
  3014. type="5" >
  3015. </productMenu>
  3016. <productMenu id="led+"
  3017. type="2"
  3018. url="1" >
  3019. </productMenu>
  3020. <productMenu id="meshIntercom"
  3021. type="30" >
  3022. </productMenu>
  3023. <productMenu id="meshIntercom+"
  3024. type="3"
  3025. url="2" >
  3026. </productMenu>
  3027. <productMenu id="waveIntercom"
  3028. type="1" >
  3029. </productMenu>
  3030. <productMenu id="fmradio"
  3031. type="0" >
  3032. </productMenu>
  3033. <productMenu id="phone"
  3034. type="1" >
  3035. </productMenu>
  3036. <productMenu id="music"
  3037. type="1" >
  3038. </productMenu>
  3039. <productMenu id="musicSharing"
  3040. type="0" >
  3041. </productMenu>
  3042. <productMenu id="deviceSetting"
  3043. type="1"
  3044. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3045. </productMenu>
  3046. <productMenu id="quickGuide"
  3047. type="0"
  3048. url=""
  3049. size="1.12MB" >
  3050. </productMenu>
  3051. <productMenu id="userGuide"
  3052. type="1"
  3053. url=""
  3054. size="2.0MB" >
  3055. </productMenu>
  3056. <productMenu id="videoGuide"
  3057. type="0"
  3058. url=""
  3059. size="3.41MB" >
  3060. </productMenu>
  3061. <productMenu id="volume"
  3062. type="16" >
  3063. </productMenu>
  3064. <productMenu id="battery"
  3065. type="1" >
  3066. </productMenu>
  3067. <productID id="6A09"
  3068. />
  3069. <productGroupable type="0"
  3070. />
  3071. </product>
  3072. <product id="PHANTOM"
  3073. name="PHANTOM ANC"
  3074. series="Helmet"
  3075. latestVersion="1.2.7"
  3076. latestVersionVoicePrompt="1.5"
  3077. show = "1" >
  3078. <productMenu id="protocol"
  3079. type="2" >
  3080. </productMenu>
  3081. <productMenu id="ota"
  3082. type="2" >
  3083. <productMenuType version="0.6.9"
  3084. type="0"
  3085. />
  3086. <otaLanguages>
  3087. <otaLanguage
  3088. id="0"
  3089. name="English"
  3090. package="0"
  3091. />
  3092. <otaLanguage
  3093. id="0"
  3094. name="French"
  3095. package="1"
  3096. />
  3097. <otaLanguage
  3098. id="0"
  3099. name="Spanish"
  3100. package="2"
  3101. />
  3102. <otaLanguage
  3103. id="0"
  3104. name="Italian"
  3105. package="3"
  3106. />
  3107. <otaLanguage
  3108. id="0"
  3109. name="German"
  3110. package="4"
  3111. />
  3112. <otaLanguage
  3113. id="0"
  3114. name="Dutch"
  3115. package="5"
  3116. />
  3117. <otaLanguage
  3118. id="0"
  3119. name="Russian"
  3120. package="6"
  3121. />
  3122. <otaLanguage
  3123. id="0"
  3124. name="Chinese"
  3125. package="7"
  3126. />
  3127. <otaLanguage
  3128. id="0"
  3129. name="Korean"
  3130. package="8"
  3131. />
  3132. <otaLanguage
  3133. id="0"
  3134. name="Japanese"
  3135. package="9"
  3136. />
  3137. <otaLanguage
  3138. id="0"
  3139. name="Finnish"
  3140. package="10"
  3141. />
  3142. <otaLanguage
  3143. id="0"
  3144. name="Polish"
  3145. package="11"
  3146. />
  3147. </otaLanguages>
  3148. <otaPackages>
  3149. <package
  3150. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3151. size="5183988"
  3152. />
  3153. <package
  3154. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3155. size="5183988"
  3156. />
  3157. <package
  3158. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3159. size="5183988"
  3160. />
  3161. <package
  3162. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3163. size="5183988"
  3164. />
  3165. <package
  3166. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3167. size="5183988"
  3168. />
  3169. <package
  3170. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3171. size="5183988"
  3172. />
  3173. <package
  3174. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3175. size="5183988"
  3176. />
  3177. <package
  3178. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3179. size="5183988"
  3180. />
  3181. <package
  3182. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3183. size="5183988"
  3184. />
  3185. <package
  3186. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3187. size="5183988"
  3188. />
  3189. <package
  3190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3191. size="5183988"
  3192. />
  3193. <package
  3194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3195. size="5183988"
  3196. />
  3197. </otaPackages>
  3198. </productMenu>
  3199. <productMenu id="wa"
  3200. type="0" >
  3201. </productMenu>
  3202. <productMenu id="led"
  3203. type="5" >
  3204. </productMenu>
  3205. <productMenu id="led+"
  3206. type="2"
  3207. url="1" >
  3208. </productMenu>
  3209. <productMenu id="meshIntercom"
  3210. type="30" >
  3211. </productMenu>
  3212. <productMenu id="meshIntercom+"
  3213. type="3"
  3214. url="2" >
  3215. <productMenuURL version="1.0.4"
  3216. url="10"
  3217. />
  3218. </productMenu>
  3219. <productMenu id="waveIntercom"
  3220. type="1" >
  3221. <productMenuType version="1.0.9"
  3222. type="0"
  3223. />
  3224. </productMenu>
  3225. <productMenu id="fmradio"
  3226. type="0" >
  3227. </productMenu>
  3228. <productMenu id="phone"
  3229. type="1" >
  3230. </productMenu>
  3231. <productMenu id="music"
  3232. type="1" >
  3233. </productMenu>
  3234. <productMenu id="musicSharing"
  3235. type="0" >
  3236. </productMenu>
  3237. <productMenu id="deviceSetting"
  3238. type="1"
  3239. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3240. <productMenuURL version="1.2.4"
  3241. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3242. />
  3243. <productMenuURL version="1.2.1"
  3244. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3245. />
  3246. <productMenuURL version="1.1.2"
  3247. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3248. />
  3249. <productMenuURL version="1.0.4"
  3250. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3251. />
  3252. </productMenu>
  3253. <productMenu id="quickGuide"
  3254. type="0"
  3255. url=""
  3256. size="1.12MB" >
  3257. </productMenu>
  3258. <productMenu id="userGuide"
  3259. type="1"
  3260. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3261. size="2.0MB" >
  3262. </productMenu>
  3263. <productMenu id="videoGuide"
  3264. type="0"
  3265. url=""
  3266. size="3.41MB" >
  3267. </productMenu>
  3268. <productMenu id="volume"
  3269. type="16" >
  3270. </productMenu>
  3271. <productMenu id="volume+"
  3272. type="2"
  3273. url="0x6004" >
  3274. </productMenu>
  3275. <productMenu id="soundMode"
  3276. type="1" >
  3277. <productMenuType version="0.9.11"
  3278. type="0"
  3279. />
  3280. </productMenu>
  3281. <productMenu id="battery"
  3282. type="1" >
  3283. </productMenu>
  3284. <productID id="6A01"
  3285. />
  3286. <productGroupable type="0"
  3287. />
  3288. </product>
  3289. <product id="PHANTOM"
  3290. name="PHANTOM ANC"
  3291. series="Helmet"
  3292. latestVersion="1.2.7"
  3293. latestVersionVoicePrompt="1.5"
  3294. show = "-1" >
  3295. <productMenu id="protocol"
  3296. type="2" >
  3297. </productMenu>
  3298. <productMenu id="ota"
  3299. type="2" >
  3300. <otaLanguages>
  3301. <otaLanguage
  3302. id="0"
  3303. name="English"
  3304. package="0"
  3305. />
  3306. <otaLanguage
  3307. id="0"
  3308. name="French"
  3309. package="1"
  3310. />
  3311. <otaLanguage
  3312. id="0"
  3313. name="Spanish"
  3314. package="2"
  3315. />
  3316. <otaLanguage
  3317. id="0"
  3318. name="Italian"
  3319. package="3"
  3320. />
  3321. <otaLanguage
  3322. id="0"
  3323. name="German"
  3324. package="4"
  3325. />
  3326. <otaLanguage
  3327. id="0"
  3328. name="Dutch"
  3329. package="5"
  3330. />
  3331. <otaLanguage
  3332. id="0"
  3333. name="Russian"
  3334. package="6"
  3335. />
  3336. <otaLanguage
  3337. id="0"
  3338. name="Chinese"
  3339. package="7"
  3340. />
  3341. <otaLanguage
  3342. id="0"
  3343. name="Korean"
  3344. package="8"
  3345. />
  3346. <otaLanguage
  3347. id="0"
  3348. name="Japanese"
  3349. package="9"
  3350. />
  3351. <otaLanguage
  3352. id="0"
  3353. name="Finnish"
  3354. package="10"
  3355. />
  3356. <otaLanguage
  3357. id="0"
  3358. name="Polish"
  3359. package="11"
  3360. />
  3361. </otaLanguages>
  3362. <otaPackages>
  3363. <package
  3364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3365. size="5183988"
  3366. />
  3367. <package
  3368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3369. size="5183988"
  3370. />
  3371. <package
  3372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3373. size="5183988"
  3374. />
  3375. <package
  3376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3377. size="5183988"
  3378. />
  3379. <package
  3380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3381. size="5183988"
  3382. />
  3383. <package
  3384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3385. size="5183988"
  3386. />
  3387. <package
  3388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3389. size="5183988"
  3390. />
  3391. <package
  3392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3393. size="5183988"
  3394. />
  3395. <package
  3396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3397. size="5183988"
  3398. />
  3399. <package
  3400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3401. size="5183988"
  3402. />
  3403. <package
  3404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3405. size="5183988"
  3406. />
  3407. <package
  3408. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3409. size="5183988"
  3410. />
  3411. </otaPackages>
  3412. </productMenu>
  3413. <productMenu id="led"
  3414. type="5" >
  3415. </productMenu>
  3416. <productMenu id="led+"
  3417. type="2"
  3418. url="1" >
  3419. </productMenu>
  3420. <productMenu id="meshIntercom"
  3421. type="30" >
  3422. </productMenu>
  3423. <productMenu id="meshIntercom+"
  3424. type="3"
  3425. url="2" >
  3426. </productMenu>
  3427. <productMenu id="waveIntercom"
  3428. type="1" >
  3429. </productMenu>
  3430. <productMenu id="fmradio"
  3431. type="0" >
  3432. </productMenu>
  3433. <productMenu id="phone"
  3434. type="1" >
  3435. </productMenu>
  3436. <productMenu id="music"
  3437. type="1" >
  3438. </productMenu>
  3439. <productMenu id="musicSharing"
  3440. type="0" >
  3441. </productMenu>
  3442. <productMenu id="deviceSetting"
  3443. type="1"
  3444. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3445. <productMenuURL version="1.2.4"
  3446. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3447. />
  3448. </productMenu>
  3449. <productMenu id="quickGuide"
  3450. type="0"
  3451. url=""
  3452. size="1.12MB" >
  3453. </productMenu>
  3454. <productMenu id="userGuide"
  3455. type="1"
  3456. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3457. size="2.0MB" >
  3458. </productMenu>
  3459. <productMenu id="videoGuide"
  3460. type="0"
  3461. url=""
  3462. size="3.41MB" >
  3463. </productMenu>
  3464. <productMenu id="volume"
  3465. type="16" >
  3466. </productMenu>
  3467. <productMenu id="volume+"
  3468. type="2"
  3469. url="0x6004" >
  3470. </productMenu>
  3471. <productMenu id="soundMode"
  3472. type="1" >
  3473. </productMenu>
  3474. <productMenu id="battery"
  3475. type="1" >
  3476. </productMenu>
  3477. <productID id="6A19"
  3478. />
  3479. <productGroupable type="0"
  3480. />
  3481. </product>
  3482. <product id="PHANTOM"
  3483. name="PHANTOM"
  3484. series="Helmet"
  3485. latestVersion="1.2.7"
  3486. latestVersionVoicePrompt="1.5"
  3487. show = "-1" >
  3488. <productMenu id="protocol"
  3489. type="2" >
  3490. </productMenu>
  3491. <productMenu id="ota"
  3492. type="2" >
  3493. <otaLanguages>
  3494. <otaLanguage
  3495. id="0"
  3496. name="English"
  3497. package="0"
  3498. />
  3499. <otaLanguage
  3500. id="0"
  3501. name="French"
  3502. package="1"
  3503. />
  3504. <otaLanguage
  3505. id="0"
  3506. name="Spanish"
  3507. package="2"
  3508. />
  3509. <otaLanguage
  3510. id="0"
  3511. name="Italian"
  3512. package="3"
  3513. />
  3514. <otaLanguage
  3515. id="0"
  3516. name="German"
  3517. package="4"
  3518. />
  3519. <otaLanguage
  3520. id="0"
  3521. name="Dutch"
  3522. package="5"
  3523. />
  3524. <otaLanguage
  3525. id="0"
  3526. name="Russian"
  3527. package="6"
  3528. />
  3529. <otaLanguage
  3530. id="0"
  3531. name="Chinese"
  3532. package="7"
  3533. />
  3534. <otaLanguage
  3535. id="0"
  3536. name="Korean"
  3537. package="8"
  3538. />
  3539. <otaLanguage
  3540. id="0"
  3541. name="Japanese"
  3542. package="9"
  3543. />
  3544. <otaLanguage
  3545. id="0"
  3546. name="Finnish"
  3547. package="10"
  3548. />
  3549. <otaLanguage
  3550. id="0"
  3551. name="Polish"
  3552. package="11"
  3553. />
  3554. </otaLanguages>
  3555. <otaPackages>
  3556. <package
  3557. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3558. size="5183988"
  3559. />
  3560. <package
  3561. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3562. size="5183988"
  3563. />
  3564. <package
  3565. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3566. size="5183988"
  3567. />
  3568. <package
  3569. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3570. size="5183988"
  3571. />
  3572. <package
  3573. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3574. size="5183988"
  3575. />
  3576. <package
  3577. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3578. size="5183988"
  3579. />
  3580. <package
  3581. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3582. size="5183988"
  3583. />
  3584. <package
  3585. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3586. size="5183988"
  3587. />
  3588. <package
  3589. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3590. size="5183988"
  3591. />
  3592. <package
  3593. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3594. size="5183988"
  3595. />
  3596. <package
  3597. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3598. size="5183988"
  3599. />
  3600. <package
  3601. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3602. size="5183988"
  3603. />
  3604. </otaPackages>
  3605. </productMenu>
  3606. <productMenu id="wa"
  3607. type="0" >
  3608. </productMenu>
  3609. <productMenu id="led"
  3610. type="5" >
  3611. </productMenu>
  3612. <productMenu id="led+"
  3613. type="2"
  3614. url="1" >
  3615. </productMenu>
  3616. <productMenu id="meshIntercom"
  3617. type="30" >
  3618. </productMenu>
  3619. <productMenu id="meshIntercom+"
  3620. type="3"
  3621. url="2" >
  3622. </productMenu>
  3623. <productMenu id="waveIntercom"
  3624. type="1" >
  3625. </productMenu>
  3626. <productMenu id="fmradio"
  3627. type="0" >
  3628. </productMenu>
  3629. <productMenu id="phone"
  3630. type="1" >
  3631. </productMenu>
  3632. <productMenu id="music"
  3633. type="1" >
  3634. </productMenu>
  3635. <productMenu id="musicSharing"
  3636. type="0" >
  3637. </productMenu>
  3638. <productMenu id="deviceSetting"
  3639. type="1"
  3640. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3641. <productMenuURL version="1.2.4"
  3642. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3643. />
  3644. </productMenu>
  3645. <productMenu id="quickGuide"
  3646. type="0"
  3647. url=""
  3648. size="1.52MB" >
  3649. </productMenu>
  3650. <productMenu id="userGuide"
  3651. type="1"
  3652. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3653. size="2.01MB" >
  3654. </productMenu>
  3655. <productMenu id="videoGuide"
  3656. type="0"
  3657. url=""
  3658. size="3.46MB" >
  3659. </productMenu>
  3660. <productMenu id="connectGuide"
  3661. type="1"
  3662. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3663. size="1.1MB" >
  3664. </productMenu>
  3665. <productMenu id="volume"
  3666. type="16" >
  3667. </productMenu>
  3668. <productMenu id="volume+"
  3669. type="2"
  3670. url="0x6004" >
  3671. </productMenu>
  3672. <productMenu id="battery"
  3673. type="1" >
  3674. </productMenu>
  3675. <productID id="6A0E"
  3676. />
  3677. <productGroupable type="0"
  3678. />
  3679. </product>
  3680. <product id="PHANTOM"
  3681. name="PHANTOM"
  3682. series="Helmet"
  3683. latestVersion="1.2.7"
  3684. latestVersionVoicePrompt="1.5"
  3685. show = "1" >
  3686. <productMenu id="protocol"
  3687. type="2" >
  3688. </productMenu>
  3689. <productMenu id="ota"
  3690. type="2" >
  3691. <otaLanguages>
  3692. <otaLanguage
  3693. id="0"
  3694. name="English"
  3695. package="0"
  3696. />
  3697. <otaLanguage
  3698. id="0"
  3699. name="French"
  3700. package="1"
  3701. />
  3702. <otaLanguage
  3703. id="0"
  3704. name="Spanish"
  3705. package="2"
  3706. />
  3707. <otaLanguage
  3708. id="0"
  3709. name="Italian"
  3710. package="3"
  3711. />
  3712. <otaLanguage
  3713. id="0"
  3714. name="German"
  3715. package="4"
  3716. />
  3717. <otaLanguage
  3718. id="0"
  3719. name="Dutch"
  3720. package="5"
  3721. />
  3722. <otaLanguage
  3723. id="0"
  3724. name="Russian"
  3725. package="6"
  3726. />
  3727. <otaLanguage
  3728. id="0"
  3729. name="Chinese"
  3730. package="7"
  3731. />
  3732. <otaLanguage
  3733. id="0"
  3734. name="Korean"
  3735. package="8"
  3736. />
  3737. <otaLanguage
  3738. id="0"
  3739. name="Japanese"
  3740. package="9"
  3741. />
  3742. <otaLanguage
  3743. id="0"
  3744. name="Finnish"
  3745. package="10"
  3746. />
  3747. <otaLanguage
  3748. id="0"
  3749. name="Polish"
  3750. package="11"
  3751. />
  3752. </otaLanguages>
  3753. <otaPackages>
  3754. <package
  3755. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3756. size="5183988"
  3757. />
  3758. <package
  3759. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3760. size="5183988"
  3761. />
  3762. <package
  3763. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3764. size="5183988"
  3765. />
  3766. <package
  3767. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3768. size="5183988"
  3769. />
  3770. <package
  3771. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3772. size="5183988"
  3773. />
  3774. <package
  3775. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3776. size="5183988"
  3777. />
  3778. <package
  3779. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3780. size="5183988"
  3781. />
  3782. <package
  3783. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3784. size="5183988"
  3785. />
  3786. <package
  3787. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3788. size="5183988"
  3789. />
  3790. <package
  3791. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3792. size="5183988"
  3793. />
  3794. <package
  3795. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3796. size="5183988"
  3797. />
  3798. <package
  3799. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3800. size="5183988"
  3801. />
  3802. </otaPackages>
  3803. </productMenu>
  3804. <productMenu id="wa"
  3805. type="0" >
  3806. </productMenu>
  3807. <productMenu id="led"
  3808. type="5" >
  3809. <productMenuType version="1.0.1"
  3810. type="4"
  3811. />
  3812. </productMenu>
  3813. <productMenu id="led+"
  3814. type="2"
  3815. url="1" >
  3816. <productMenuType version="1.0.1"
  3817. type="-1"
  3818. />
  3819. </productMenu>
  3820. <productMenu id="meshIntercom"
  3821. type="30" >
  3822. </productMenu>
  3823. <productMenu id="meshIntercom+"
  3824. type="3"
  3825. url="2" >
  3826. <productMenuURL version="1.0.4"
  3827. url="10"
  3828. />
  3829. </productMenu>
  3830. <productMenu id="waveIntercom"
  3831. type="1" >
  3832. <productMenuType version="1.0.9"
  3833. type="0"
  3834. />
  3835. </productMenu>
  3836. <productMenu id="fmradio"
  3837. type="0" >
  3838. </productMenu>
  3839. <productMenu id="phone"
  3840. type="1" >
  3841. </productMenu>
  3842. <productMenu id="music"
  3843. type="1" >
  3844. </productMenu>
  3845. <productMenu id="musicSharing"
  3846. type="0" >
  3847. </productMenu>
  3848. <productMenu id="deviceSetting"
  3849. type="1"
  3850. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3851. <productMenuURL version="1.2.4"
  3852. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3853. />
  3854. <productMenuURL version="1.2.1"
  3855. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3856. />
  3857. <productMenuURL version="1.0.4"
  3858. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  3859. />
  3860. <productMenuURL version="1.0.1"
  3861. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  3862. />
  3863. </productMenu>
  3864. <productMenu id="quickGuide"
  3865. type="0"
  3866. url=""
  3867. size="1.12MB" >
  3868. </productMenu>
  3869. <productMenu id="userGuide"
  3870. type="1"
  3871. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3872. size="2.0MB" >
  3873. </productMenu>
  3874. <productMenu id="videoGuide"
  3875. type="0"
  3876. url=""
  3877. size="3.41MB" >
  3878. </productMenu>
  3879. <productMenu id="connectGuide"
  3880. type="1"
  3881. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3882. size="1.12MB" >
  3883. </productMenu>
  3884. <productMenu id="volume"
  3885. type="16" >
  3886. <productMenuType version="1.0"
  3887. type="13"
  3888. />
  3889. </productMenu>
  3890. <productMenu id="volume+"
  3891. type="2"
  3892. url="0x6004" >
  3893. </productMenu>
  3894. <productMenu id="battery"
  3895. type="1" >
  3896. </productMenu>
  3897. <productID id="6A04"
  3898. />
  3899. <productGroupable type="0"
  3900. />
  3901. </product>
  3902. <product id="PHANTOMEasyLink"
  3903. name="PHANTOM EasyLink"
  3904. series="Helmet"
  3905. latestVersion="0.1"
  3906. latestVersionVoicePrompt="1.2"
  3907. show = "-1" >
  3908. <productMenu id="protocol"
  3909. type="2" >
  3910. </productMenu>
  3911. <productMenu id="ota"
  3912. type="0" >
  3913. <otaLanguages>
  3914. <otaLanguage
  3915. id="0"
  3916. name="English"
  3917. package="0"
  3918. />
  3919. <otaLanguage
  3920. id="0"
  3921. name="French"
  3922. package="1"
  3923. />
  3924. <otaLanguage
  3925. id="0"
  3926. name="Spanish"
  3927. package="2"
  3928. />
  3929. <otaLanguage
  3930. id="0"
  3931. name="Italian"
  3932. package="3"
  3933. />
  3934. <otaLanguage
  3935. id="0"
  3936. name="German"
  3937. package="4"
  3938. />
  3939. <otaLanguage
  3940. id="0"
  3941. name="Dutch"
  3942. package="5"
  3943. />
  3944. <otaLanguage
  3945. id="0"
  3946. name="Russian"
  3947. package="6"
  3948. />
  3949. <otaLanguage
  3950. id="0"
  3951. name="Chinese"
  3952. package="7"
  3953. />
  3954. <otaLanguage
  3955. id="0"
  3956. name="Korean"
  3957. package="8"
  3958. />
  3959. <otaLanguage
  3960. id="0"
  3961. name="Japanese"
  3962. package="9"
  3963. />
  3964. <otaLanguage
  3965. id="0"
  3966. name="Finnish"
  3967. package="10"
  3968. />
  3969. <otaLanguage
  3970. id="0"
  3971. name="Polish"
  3972. package="11"
  3973. />
  3974. </otaLanguages>
  3975. <otaPackages>
  3976. <package
  3977. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  3978. size="5183988"
  3979. />
  3980. <package
  3981. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  3982. size="5183988"
  3983. />
  3984. <package
  3985. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  3986. size="5183988"
  3987. />
  3988. <package
  3989. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  3990. size="5183988"
  3991. />
  3992. <package
  3993. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  3994. size="5183988"
  3995. />
  3996. <package
  3997. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  3998. size="5183988"
  3999. />
  4000. <package
  4001. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4002. size="5183988"
  4003. />
  4004. <package
  4005. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4006. size="5183988"
  4007. />
  4008. <package
  4009. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4010. size="5183988"
  4011. />
  4012. <package
  4013. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4014. size="5183988"
  4015. />
  4016. <package
  4017. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4018. size="5183988"
  4019. />
  4020. <package
  4021. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4022. size="5183988"
  4023. />
  4024. </otaPackages>
  4025. </productMenu>
  4026. <productMenu id="meshIntercom"
  4027. type="30" >
  4028. </productMenu>
  4029. <productMenu id="meshIntercom+"
  4030. type="3"
  4031. url="2" >
  4032. </productMenu>
  4033. <productMenu id="waveIntercom"
  4034. type="1" >
  4035. </productMenu>
  4036. <productMenu id="fmradio"
  4037. type="0" >
  4038. </productMenu>
  4039. <productMenu id="phone"
  4040. type="1" >
  4041. </productMenu>
  4042. <productMenu id="music"
  4043. type="1" >
  4044. </productMenu>
  4045. <productMenu id="musicSharing"
  4046. type="0" >
  4047. </productMenu>
  4048. <productMenu id="deviceSetting"
  4049. type="1"
  4050. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4051. </productMenu>
  4052. <productMenu id="quickGuide"
  4053. type="0"
  4054. url=""
  4055. size="1.12MB" >
  4056. </productMenu>
  4057. <productMenu id="userGuide"
  4058. type="1"
  4059. url=""
  4060. size="2.0MB" >
  4061. </productMenu>
  4062. <productMenu id="videoGuide"
  4063. type="0"
  4064. url=""
  4065. size="3.41MB" >
  4066. </productMenu>
  4067. <productMenu id="connectGuide"
  4068. type="0"
  4069. url=""
  4070. size="1.12MB" >
  4071. </productMenu>
  4072. <productMenu id="volume"
  4073. type="16" >
  4074. </productMenu>
  4075. <productMenu id="battery"
  4076. type="1" >
  4077. </productMenu>
  4078. <productID id="6A18"
  4079. />
  4080. <productGroupable type="0"
  4081. />
  4082. </product>
  4083. <product id="SPIDERXSlim"
  4084. name="SPIDER X Slim"
  4085. series="SPIDER"
  4086. latestVersion="0.9"
  4087. latestVersionVoicePrompt="1.2"
  4088. show = "-1" >
  4089. <productMenu id="protocol"
  4090. type="2" >
  4091. </productMenu>
  4092. <productMenu id="ota"
  4093. type="2" >
  4094. <otaLanguages>
  4095. <otaLanguage
  4096. id="0"
  4097. name="English"
  4098. package="0"
  4099. />
  4100. <otaLanguage
  4101. id="0"
  4102. name="French"
  4103. package="1"
  4104. />
  4105. <otaLanguage
  4106. id="0"
  4107. name="Spanish"
  4108. package="2"
  4109. />
  4110. <otaLanguage
  4111. id="0"
  4112. name="Italian"
  4113. package="3"
  4114. />
  4115. <otaLanguage
  4116. id="0"
  4117. name="German"
  4118. package="4"
  4119. />
  4120. <otaLanguage
  4121. id="0"
  4122. name="Dutch"
  4123. package="5"
  4124. />
  4125. <otaLanguage
  4126. id="0"
  4127. name="Russian"
  4128. package="6"
  4129. />
  4130. <otaLanguage
  4131. id="0"
  4132. name="Chinese"
  4133. package="7"
  4134. />
  4135. <otaLanguage
  4136. id="0"
  4137. name="Korean"
  4138. package="8"
  4139. />
  4140. <otaLanguage
  4141. id="0"
  4142. name="Japanese"
  4143. package="9"
  4144. />
  4145. <otaLanguage
  4146. id="0"
  4147. name="Finnish"
  4148. package="10"
  4149. />
  4150. <otaLanguage
  4151. id="0"
  4152. name="Polish"
  4153. package="11"
  4154. />
  4155. </otaLanguages>
  4156. <otaPackages>
  4157. <package
  4158. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4159. size="5183988"
  4160. />
  4161. <package
  4162. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4163. size="5183988"
  4164. />
  4165. <package
  4166. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4167. size="5183988"
  4168. />
  4169. <package
  4170. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4171. size="5183988"
  4172. />
  4173. <package
  4174. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4175. size="5183988"
  4176. />
  4177. <package
  4178. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4179. size="5183988"
  4180. />
  4181. <package
  4182. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4183. size="5183988"
  4184. />
  4185. <package
  4186. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4187. size="5183988"
  4188. />
  4189. <package
  4190. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4191. size="5183988"
  4192. />
  4193. <package
  4194. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4195. size="5183988"
  4196. />
  4197. <package
  4198. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4199. size="5183988"
  4200. />
  4201. <package
  4202. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4203. size="5183988"
  4204. />
  4205. </otaPackages>
  4206. </productMenu>
  4207. <productMenu id="meshIntercom"
  4208. type="30" >
  4209. </productMenu>
  4210. <productMenu id="meshIntercom+"
  4211. type="3"
  4212. url="2" >
  4213. </productMenu>
  4214. <productMenu id="waveIntercom"
  4215. type="1" >
  4216. </productMenu>
  4217. <productMenu id="fmradio"
  4218. type="1"
  4219. url="1" >
  4220. </productMenu>
  4221. <productMenu id="phone"
  4222. type="1" >
  4223. </productMenu>
  4224. <productMenu id="music"
  4225. type="1" >
  4226. </productMenu>
  4227. <productMenu id="musicSharing"
  4228. type="0" >
  4229. </productMenu>
  4230. <productMenu id="deviceSetting"
  4231. type="1"
  4232. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4233. </productMenu>
  4234. <productMenu id="quickGuide"
  4235. type="0"
  4236. url=""
  4237. size="1.12MB" >
  4238. </productMenu>
  4239. <productMenu id="userGuide"
  4240. type="1"
  4241. url=""
  4242. size="2.0MB" >
  4243. </productMenu>
  4244. <productMenu id="videoGuide"
  4245. type="0"
  4246. url=""
  4247. size="3.41MB" >
  4248. </productMenu>
  4249. <productMenu id="volume"
  4250. type="16" >
  4251. </productMenu>
  4252. <productMenu id="volume+"
  4253. type="2"
  4254. url="0x6004" >
  4255. </productMenu>
  4256. <productMenu id="appearance"
  4257. type="1"
  4258. url="2|white,silver,chrome,black" >
  4259. </productMenu>
  4260. <productMenu id="battery"
  4261. type="1" >
  4262. </productMenu>
  4263. <productID id="6A07"
  4264. />
  4265. <productGroupable type="0"
  4266. />
  4267. </product>
  4268. <product id="XFITM"
  4269. name="X-FIT M"
  4270. series="SPIDER"
  4271. latestVersion="0.1.11"
  4272. latestVersionVoicePrompt="1.1"
  4273. show = "-1" >
  4274. <productMenu id="protocol"
  4275. type="2" >
  4276. </productMenu>
  4277. <productMenu id="ota"
  4278. type="0" >
  4279. <otaLanguages>
  4280. <otaLanguage
  4281. id="0"
  4282. name="English"
  4283. package="0"
  4284. />
  4285. <otaLanguage
  4286. id="0"
  4287. name="French"
  4288. package="1"
  4289. />
  4290. <otaLanguage
  4291. id="0"
  4292. name="Spanish"
  4293. package="2"
  4294. />
  4295. <otaLanguage
  4296. id="0"
  4297. name="Italian"
  4298. package="3"
  4299. />
  4300. <otaLanguage
  4301. id="0"
  4302. name="German"
  4303. package="4"
  4304. />
  4305. <otaLanguage
  4306. id="0"
  4307. name="Dutch"
  4308. package="5"
  4309. />
  4310. <otaLanguage
  4311. id="0"
  4312. name="Russian"
  4313. package="6"
  4314. />
  4315. <otaLanguage
  4316. id="0"
  4317. name="Chinese"
  4318. package="7"
  4319. />
  4320. <otaLanguage
  4321. id="0"
  4322. name="Korean"
  4323. package="8"
  4324. />
  4325. <otaLanguage
  4326. id="0"
  4327. name="Japanese"
  4328. package="9"
  4329. />
  4330. <otaLanguage
  4331. id="0"
  4332. name="Finnish"
  4333. package="10"
  4334. />
  4335. <otaLanguage
  4336. id="0"
  4337. name="Polish"
  4338. package="11"
  4339. />
  4340. </otaLanguages>
  4341. <otaPackages>
  4342. <package
  4343. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4344. size="5183988"
  4345. />
  4346. <package
  4347. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4348. size="5183988"
  4349. />
  4350. <package
  4351. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4352. size="5183988"
  4353. />
  4354. <package
  4355. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4356. size="5183988"
  4357. />
  4358. <package
  4359. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4360. size="5183988"
  4361. />
  4362. <package
  4363. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4364. size="5183988"
  4365. />
  4366. <package
  4367. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4368. size="5183988"
  4369. />
  4370. <package
  4371. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4372. size="5183988"
  4373. />
  4374. <package
  4375. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4376. size="5183988"
  4377. />
  4378. <package
  4379. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4380. size="5183988"
  4381. />
  4382. <package
  4383. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4384. size="5183988"
  4385. />
  4386. <package
  4387. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4388. size="5183988"
  4389. />
  4390. </otaPackages>
  4391. </productMenu>
  4392. <productMenu id="meshIntercom"
  4393. type="30" >
  4394. </productMenu>
  4395. <productMenu id="meshIntercom+"
  4396. type="3"
  4397. url="2" >
  4398. </productMenu>
  4399. <productMenu id="waveIntercom"
  4400. type="1" >
  4401. </productMenu>
  4402. <productMenu id="fmradio"
  4403. type="1"
  4404. url="1" >
  4405. </productMenu>
  4406. <productMenu id="phone"
  4407. type="1" >
  4408. </productMenu>
  4409. <productMenu id="music"
  4410. type="1" >
  4411. </productMenu>
  4412. <productMenu id="musicSharing"
  4413. type="0" >
  4414. </productMenu>
  4415. <productMenu id="deviceSetting"
  4416. type="1"
  4417. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4418. </productMenu>
  4419. <productMenu id="quickGuide"
  4420. type="0"
  4421. url=""
  4422. size="1.12MB" >
  4423. </productMenu>
  4424. <productMenu id="userGuide"
  4425. type="1"
  4426. url=""
  4427. size="2.0MB" >
  4428. </productMenu>
  4429. <productMenu id="videoGuide"
  4430. type="0"
  4431. url=""
  4432. size="3.41MB" >
  4433. </productMenu>
  4434. <productMenu id="volume"
  4435. type="16" >
  4436. </productMenu>
  4437. <productMenu id="volume+"
  4438. type="2"
  4439. url="0x6004" >
  4440. </productMenu>
  4441. <productMenu id="battery"
  4442. type="1" >
  4443. </productMenu>
  4444. <productID id="6A17"
  4445. />
  4446. <productGroupable type="0"
  4447. />
  4448. </product>
  4449. <product id="VORTEXMESH"
  4450. name="VORTEX MESH"
  4451. series="Helmet"
  4452. latestVersion="0.1.11"
  4453. latestVersionVoicePrompt="1.1"
  4454. show = "-1" >
  4455. <productMenu id="protocol"
  4456. type="2" >
  4457. </productMenu>
  4458. <productMenu id="ota"
  4459. type="0" >
  4460. <otaLanguages>
  4461. <otaLanguage
  4462. id="0"
  4463. name="English"
  4464. package="0"
  4465. />
  4466. <otaLanguage
  4467. id="0"
  4468. name="French"
  4469. package="1"
  4470. />
  4471. <otaLanguage
  4472. id="0"
  4473. name="Spanish"
  4474. package="2"
  4475. />
  4476. <otaLanguage
  4477. id="0"
  4478. name="Italian"
  4479. package="3"
  4480. />
  4481. <otaLanguage
  4482. id="0"
  4483. name="German"
  4484. package="4"
  4485. />
  4486. <otaLanguage
  4487. id="0"
  4488. name="Dutch"
  4489. package="5"
  4490. />
  4491. <otaLanguage
  4492. id="0"
  4493. name="Russian"
  4494. package="6"
  4495. />
  4496. <otaLanguage
  4497. id="0"
  4498. name="Chinese"
  4499. package="7"
  4500. />
  4501. <otaLanguage
  4502. id="0"
  4503. name="Korean"
  4504. package="8"
  4505. />
  4506. <otaLanguage
  4507. id="0"
  4508. name="Japanese"
  4509. package="9"
  4510. />
  4511. <otaLanguage
  4512. id="0"
  4513. name="Finnish"
  4514. package="10"
  4515. />
  4516. <otaLanguage
  4517. id="0"
  4518. name="Polish"
  4519. package="11"
  4520. />
  4521. </otaLanguages>
  4522. <otaPackages>
  4523. <package
  4524. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4525. size="5183988"
  4526. />
  4527. <package
  4528. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4529. size="5183988"
  4530. />
  4531. <package
  4532. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4533. size="5183988"
  4534. />
  4535. <package
  4536. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4537. size="5183988"
  4538. />
  4539. <package
  4540. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4541. size="5183988"
  4542. />
  4543. <package
  4544. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4545. size="5183988"
  4546. />
  4547. <package
  4548. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4549. size="5183988"
  4550. />
  4551. <package
  4552. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4553. size="5183988"
  4554. />
  4555. <package
  4556. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4557. size="5183988"
  4558. />
  4559. <package
  4560. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4561. size="5183988"
  4562. />
  4563. <package
  4564. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4565. size="5183988"
  4566. />
  4567. <package
  4568. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4569. size="5183988"
  4570. />
  4571. </otaPackages>
  4572. </productMenu>
  4573. <productMenu id="wa"
  4574. type="0" >
  4575. </productMenu>
  4576. <productMenu id="led"
  4577. type="5" >
  4578. </productMenu>
  4579. <productMenu id="led+"
  4580. type="2"
  4581. url="1" >
  4582. </productMenu>
  4583. <productMenu id="meshIntercom"
  4584. type="30" >
  4585. </productMenu>
  4586. <productMenu id="meshIntercom+"
  4587. type="3"
  4588. url="2" >
  4589. </productMenu>
  4590. <productMenu id="waveIntercom"
  4591. type="1" >
  4592. </productMenu>
  4593. <productMenu id="fmradio"
  4594. type="0" >
  4595. </productMenu>
  4596. <productMenu id="phone"
  4597. type="1" >
  4598. </productMenu>
  4599. <productMenu id="music"
  4600. type="1" >
  4601. </productMenu>
  4602. <productMenu id="musicSharing"
  4603. type="0" >
  4604. </productMenu>
  4605. <productMenu id="deviceSetting"
  4606. type="1"
  4607. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4608. </productMenu>
  4609. <productMenu id="quickGuide"
  4610. type="0"
  4611. url=""
  4612. size="1.12MB" >
  4613. </productMenu>
  4614. <productMenu id="userGuide"
  4615. type="1"
  4616. url=""
  4617. size="2.0MB" >
  4618. </productMenu>
  4619. <productMenu id="videoGuide"
  4620. type="0"
  4621. url=""
  4622. size="3.41MB" >
  4623. </productMenu>
  4624. <productMenu id="volume"
  4625. type="16" >
  4626. </productMenu>
  4627. <productMenu id="battery"
  4628. type="1" >
  4629. </productMenu>
  4630. <productID id="6A12"
  4631. />
  4632. <productGroupable type="0"
  4633. />
  4634. </product>
  4635. <product id="MeshOn"
  4636. name="Mesh ON"
  4637. series="60"
  4638. latestVersion="1.0.1"
  4639. latestVersionVoicePrompt="0.7"
  4640. show = "-1" >
  4641. <productMenu id="protocol"
  4642. type="2" >
  4643. </productMenu>
  4644. <productMenu id="ota"
  4645. type="2" >
  4646. <otaPackages>
  4647. <package
  4648. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4649. size="2945812"
  4650. />
  4651. </otaPackages>
  4652. </productMenu>
  4653. <productMenu id="meshIntercom+"
  4654. type="3"
  4655. url="4" >
  4656. </productMenu>
  4657. <productMenu id="waveIntercom"
  4658. type="0" >
  4659. </productMenu>
  4660. <productMenu id="phone"
  4661. type="0" >
  4662. </productMenu>
  4663. <productMenu id="music"
  4664. type="0" >
  4665. </productMenu>
  4666. <productMenu id="musicSharing"
  4667. type="0" >
  4668. </productMenu>
  4669. <productMenu id="deviceSetting"
  4670. type="1"
  4671. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4672. </productMenu>
  4673. <productMenu id="userGuide"
  4674. type="1"
  4675. url=""
  4676. size="2.0MB" >
  4677. </productMenu>
  4678. <productMenu id="bluetoothHeadset"
  4679. type="1"
  4680. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4681. </productMenu>
  4682. <productMenu id="volume"
  4683. type="0" >
  4684. </productMenu>
  4685. <productMenu id="battery"
  4686. type="1" >
  4687. </productMenu>
  4688. <productID id="684E"
  4689. />
  4690. <productGroupable type="0"
  4691. />
  4692. </product>
  4693. <product id="Impulse"
  4694. name="Impulse"
  4695. series="Helmet"
  4696. latestVersion="1.4.1"
  4697. show = "1" >
  4698. <productMenu id="protocol"
  4699. type="2" >
  4700. </productMenu>
  4701. <productMenu id="alexa"
  4702. type="0" >
  4703. </productMenu>
  4704. <productMenu id="ota"
  4705. type="0" >
  4706. </productMenu>
  4707. <productMenu id="wa"
  4708. type="24" >
  4709. </productMenu>
  4710. <productMenu id="manager"
  4711. type="0" >
  4712. </productMenu>
  4713. <productMenu id="sip"
  4714. type="1" >
  4715. </productMenu>
  4716. <productMenu id="led"
  4717. type="1" >
  4718. <productMenuType version="1.0.1"
  4719. type="2"
  4720. />
  4721. <productMenuType version="1.0"
  4722. type="1"
  4723. />
  4724. </productMenu>
  4725. <productMenu id="meshIntercom"
  4726. type="30" >
  4727. <productMenuType version="1.1.1"
  4728. type="20"
  4729. />
  4730. </productMenu>
  4731. <productMenu id="meshIntercom+"
  4732. type="3"
  4733. url="2" >
  4734. <productMenuType version="1.3.9"
  4735. type="2"
  4736. />
  4737. <productMenuURL version="1.1.1"
  4738. url="0"
  4739. />
  4740. </productMenu>
  4741. <productMenu id="waveIntercom"
  4742. type="1" >
  4743. <productMenuType version="1.3.9"
  4744. type="0"
  4745. />
  4746. </productMenu>
  4747. <productMenu id="bluetoothIntercom"
  4748. type="1" >
  4749. </productMenu>
  4750. <productMenu id="phone"
  4751. type="1" >
  4752. </productMenu>
  4753. <productMenu id="music"
  4754. type="1" >
  4755. </productMenu>
  4756. <productMenu id="fmradio"
  4757. type="1" >
  4758. </productMenu>
  4759. <productMenu id="deviceSetting"
  4760. type="1"
  4761. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4762. <productMenuURL version="1.3.9"
  4763. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4764. />
  4765. <productMenuURL version="1.1.1"
  4766. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4767. />
  4768. <productMenuURL version="1.0.4"
  4769. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4770. />
  4771. </productMenu>
  4772. <productMenu id="quickGuide"
  4773. type="0"
  4774. url=""
  4775. size="344KB" >
  4776. </productMenu>
  4777. <productMenu id="userGuide"
  4778. type="1"
  4779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4780. size="3.41MB" >
  4781. </productMenu>
  4782. <productMenu id="connectGuide"
  4783. type="1"
  4784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4785. size="1.12MB" >
  4786. </productMenu>
  4787. <productMenu id="volume"
  4788. type="11" >
  4789. </productMenu>
  4790. <productMenu id="battery"
  4791. type="1" >
  4792. </productMenu>
  4793. <productID id="3148"
  4794. />
  4795. <productGroupable type="0"
  4796. />
  4797. </product>
  4798. <product id="Impulse"
  4799. name="Impulse"
  4800. series="Helmet"
  4801. latestVersion="2.0"
  4802. show = "-1" >
  4803. <productMenu id="protocol"
  4804. type="2" >
  4805. </productMenu>
  4806. <productMenu id="alexa"
  4807. type="0" >
  4808. </productMenu>
  4809. <productMenu id="ota"
  4810. type="0" >
  4811. </productMenu>
  4812. <productMenu id="wa"
  4813. type="8" >
  4814. </productMenu>
  4815. <productMenu id="manager"
  4816. type="0" >
  4817. </productMenu>
  4818. <productMenu id="sip"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="led"
  4822. type="3" >
  4823. </productMenu>
  4824. <productMenu id="meshIntercom"
  4825. type="20" >
  4826. </productMenu>
  4827. <productMenu id="bluetoothIntercom"
  4828. type="1" >
  4829. </productMenu>
  4830. <productMenu id="phone"
  4831. type="1" >
  4832. </productMenu>
  4833. <productMenu id="music"
  4834. type="1" >
  4835. </productMenu>
  4836. <productMenu id="fmradio"
  4837. type="1" >
  4838. </productMenu>
  4839. <productMenu id="deviceSetting"
  4840. type="1"
  4841. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4842. </productMenu>
  4843. <productMenu id="quickGuide"
  4844. type="1"
  4845. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4846. size="344KB" >
  4847. </productMenu>
  4848. <productMenu id="userGuide"
  4849. type="1"
  4850. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4851. size="3.41MB" >
  4852. </productMenu>
  4853. <productMenu id="volume"
  4854. type="11" >
  4855. </productMenu>
  4856. <productMenu id="battery"
  4857. type="1" >
  4858. </productMenu>
  4859. <productID id="3221"
  4860. />
  4861. <productGroupable type="0"
  4862. />
  4863. </product>
  4864. <product id="Stryker"
  4865. name="Stryker"
  4866. series="Helmet"
  4867. latestVersion="1.4.1"
  4868. show = "1" >
  4869. <productMenu id="protocol"
  4870. type="2" >
  4871. </productMenu>
  4872. <productMenu id="alexa"
  4873. type="0" >
  4874. </productMenu>
  4875. <productMenu id="ota"
  4876. type="0" >
  4877. </productMenu>
  4878. <productMenu id="wa"
  4879. type="40" >
  4880. </productMenu>
  4881. <productMenu id="manager"
  4882. type="0" >
  4883. </productMenu>
  4884. <productMenu id="sip"
  4885. type="1" >
  4886. </productMenu>
  4887. <productMenu id="led"
  4888. type="1" >
  4889. <productMenuType version="1.0.1"
  4890. type="2"
  4891. />
  4892. <productMenuType version="1.0"
  4893. type="1"
  4894. />
  4895. </productMenu>
  4896. <productMenu id="meshIntercom"
  4897. type="30" >
  4898. <productMenuType version="1.1.1"
  4899. type="20"
  4900. />
  4901. </productMenu>
  4902. <productMenu id="meshIntercom+"
  4903. type="3"
  4904. url="2" >
  4905. <productMenuType version="1.3.9"
  4906. type="2"
  4907. />
  4908. <productMenuURL version="1.1.1"
  4909. url="0"
  4910. />
  4911. </productMenu>
  4912. <productMenu id="waveIntercom"
  4913. type="1" >
  4914. <productMenuType version="1.2.9"
  4915. type="0"
  4916. />
  4917. </productMenu>
  4918. <productMenu id="bluetoothIntercom"
  4919. type="1" >
  4920. </productMenu>
  4921. <productMenu id="phone"
  4922. type="1" >
  4923. </productMenu>
  4924. <productMenu id="music"
  4925. type="1" >
  4926. </productMenu>
  4927. <productMenu id="fmradio"
  4928. type="1" >
  4929. </productMenu>
  4930. <productMenu id="deviceSetting"
  4931. type="1"
  4932. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4933. <productMenuURL version="1.3.9"
  4934. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4935. />
  4936. <productMenuURL version="1.1.1"
  4937. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4938. />
  4939. <productMenuURL version="1.0.4"
  4940. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4941. />
  4942. </productMenu>
  4943. <productMenu id="quickGuide"
  4944. type="0"
  4945. url=""
  4946. size="344KB" >
  4947. </productMenu>
  4948. <productMenu id="userGuide"
  4949. type="1"
  4950. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  4951. size="3.41MB" >
  4952. </productMenu>
  4953. <productMenu id="connectGuide"
  4954. type="1"
  4955. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4956. size="1.12MB" >
  4957. </productMenu>
  4958. <productMenu id="volume"
  4959. type="11" >
  4960. </productMenu>
  4961. <productMenu id="battery"
  4962. type="1" >
  4963. </productMenu>
  4964. <productID id="3154"
  4965. />
  4966. <productGroupable type="0"
  4967. />
  4968. </product>
  4969. <product id="SRL3Plus"
  4970. name="SRL3 Plus"
  4971. series="60"
  4972. latestVersion="0.9.5"
  4973. latestVersionMesh="0.19"
  4974. latestVersionVoicePrompt="1.2"
  4975. show = "-1" >
  4976. <productMenu id="protocol"
  4977. type="2" >
  4978. </productMenu>
  4979. <productMenu id="ota"
  4980. type="2" >
  4981. <otaLanguages>
  4982. <otaLanguage
  4983. id="0"
  4984. name="English"
  4985. package="0"
  4986. />
  4987. <otaLanguage
  4988. id="0"
  4989. name="French"
  4990. package="1"
  4991. />
  4992. <otaLanguage
  4993. id="0"
  4994. name="Spanish"
  4995. package="2"
  4996. />
  4997. <otaLanguage
  4998. id="0"
  4999. name="Italian"
  5000. package="3"
  5001. />
  5002. <otaLanguage
  5003. id="0"
  5004. name="German"
  5005. package="4"
  5006. />
  5007. <otaLanguage
  5008. id="0"
  5009. name="Dutch"
  5010. package="5"
  5011. />
  5012. <otaLanguage
  5013. id="0"
  5014. name="Russian"
  5015. package="6"
  5016. />
  5017. <otaLanguage
  5018. id="0"
  5019. name="Chinese"
  5020. package="7"
  5021. />
  5022. <otaLanguage
  5023. id="0"
  5024. name="Korean"
  5025. package="8"
  5026. />
  5027. <otaLanguage
  5028. id="0"
  5029. name="Japanese"
  5030. package="9"
  5031. />
  5032. <otaLanguage
  5033. id="0"
  5034. name="Finnish"
  5035. package="10"
  5036. />
  5037. </otaLanguages>
  5038. <otaPackages>
  5039. <package
  5040. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5041. size="5183988"
  5042. />
  5043. <package
  5044. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5045. size="5183988"
  5046. />
  5047. <package
  5048. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5049. size="5183988"
  5050. />
  5051. <package
  5052. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5053. size="5183988"
  5054. />
  5055. <package
  5056. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5057. size="5183988"
  5058. />
  5059. <package
  5060. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5061. size="5183988"
  5062. />
  5063. <package
  5064. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5065. size="5183988"
  5066. />
  5067. <package
  5068. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5069. size="5183988"
  5070. />
  5071. <package
  5072. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5073. size="5183988"
  5074. />
  5075. <package
  5076. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5077. size="5183988"
  5078. />
  5079. <package
  5080. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5081. size="5183988"
  5082. />
  5083. </otaPackages>
  5084. </productMenu>
  5085. <productMenu id="sip"
  5086. type="1" >
  5087. </productMenu>
  5088. <productMenu id="illusion"
  5089. type="1" >
  5090. </productMenu>
  5091. <productMenu id="meshIntercom+"
  5092. type="3"
  5093. url="2" >
  5094. </productMenu>
  5095. <productMenu id="waveIntercom"
  5096. type="1" >
  5097. </productMenu>
  5098. <productMenu id="bluetoothIntercom"
  5099. type="1"
  5100. url="2" >
  5101. </productMenu>
  5102. <productMenu id="bluetoothIntercomGrouping"
  5103. type="0" >
  5104. </productMenu>
  5105. <productMenu id="fmradio"
  5106. type="1"
  5107. url="1" >
  5108. </productMenu>
  5109. <productMenu id="phone"
  5110. type="1" >
  5111. </productMenu>
  5112. <productMenu id="music"
  5113. type="1" >
  5114. </productMenu>
  5115. <productMenu id="musicSharing"
  5116. type="0" >
  5117. </productMenu>
  5118. <productMenu id="deviceSetting"
  5119. type="1"
  5120. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5121. </productMenu>
  5122. <productMenu id="quickGuide"
  5123. type="0"
  5124. url=""
  5125. size="1.12MB" >
  5126. </productMenu>
  5127. <productMenu id="userGuide"
  5128. type="0"
  5129. url=""
  5130. size="2.0MB" >
  5131. </productMenu>
  5132. <productMenu id="videoGuide"
  5133. type="0"
  5134. url=""
  5135. size="3.41MB" >
  5136. </productMenu>
  5137. <productMenu id="volume"
  5138. type="16" >
  5139. </productMenu>
  5140. <productMenu id="soundMode"
  5141. type="1" >
  5142. </productMenu>
  5143. <productMenu id="battery"
  5144. type="1" >
  5145. </productMenu>
  5146. <productID id="6A08"
  5147. />
  5148. <productGroupable type="0"
  5149. />
  5150. </product>
  5151. <product id="SRL3"
  5152. name="SRL3"
  5153. series="SRL"
  5154. latestVersion="1.5"
  5155. show = "1" >
  5156. <productMenu id="protocol"
  5157. type="2" >
  5158. </productMenu>
  5159. <productMenu id="alexa"
  5160. type="0" >
  5161. </productMenu>
  5162. <productMenu id="ota"
  5163. type="0" >
  5164. </productMenu>
  5165. <productMenu id="wa"
  5166. type="1" >
  5167. </productMenu>
  5168. <productMenu id="sip"
  5169. type="1" >
  5170. </productMenu>
  5171. <productMenu id="meshIntercom"
  5172. type="30" >
  5173. </productMenu>
  5174. <productMenu id="meshIntercom+"
  5175. type="3"
  5176. url="2" >
  5177. <productMenuType version="1.3.9"
  5178. type="2"
  5179. />
  5180. </productMenu>
  5181. <productMenu id="waveIntercom"
  5182. type="1" >
  5183. <productMenuType version="1.4.9"
  5184. type="0"
  5185. />
  5186. </productMenu>
  5187. <productMenu id="bluetoothIntercom"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="phone"
  5191. type="1" >
  5192. </productMenu>
  5193. <productMenu id="music"
  5194. type="1" >
  5195. </productMenu>
  5196. <productMenu id="fmradio"
  5197. type="1" >
  5198. </productMenu>
  5199. <productMenu id="deviceSetting"
  5200. type="1"
  5201. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5202. <productMenuURL version="1.3"
  5203. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5204. />
  5205. </productMenu>
  5206. <productMenu id="quickGuide"
  5207. type="0"
  5208. url=""
  5209. size="344KB" >
  5210. </productMenu>
  5211. <productMenu id="userGuide"
  5212. type="1"
  5213. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5214. size="3.41MB" >
  5215. </productMenu>
  5216. <productMenu id="connectGuide"
  5217. type="1"
  5218. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5219. size="1.12MB" >
  5220. </productMenu>
  5221. <productMenu id="volume"
  5222. type="11" >
  5223. </productMenu>
  5224. <productMenu id="battery"
  5225. type="1" >
  5226. </productMenu>
  5227. <productID id="3219"
  5228. />
  5229. <productGroupable type="0"
  5230. />
  5231. </product>
  5232. <product id="SRL_Mesh"
  5233. name="SRL-Mesh"
  5234. series="SRL"
  5235. latestVersion="1.7.1"
  5236. show = "1" >
  5237. <productMenu id="protocol"
  5238. type="2" >
  5239. </productMenu>
  5240. <productMenu id="alexa"
  5241. type="0" >
  5242. </productMenu>
  5243. <productMenu id="ota"
  5244. type="0" >
  5245. </productMenu>
  5246. <productMenu id="wa"
  5247. type="1" >
  5248. </productMenu>
  5249. <productMenu id="sip"
  5250. type="1" >
  5251. </productMenu>
  5252. <productMenu id="meshIntercom"
  5253. type="30" >
  5254. <productMenuType version="1.1.1"
  5255. type="20"
  5256. />
  5257. </productMenu>
  5258. <productMenu id="meshIntercom+"
  5259. type="3"
  5260. url="2" >
  5261. <productMenuType version="1.5.9"
  5262. type="2"
  5263. />
  5264. <productMenuURL version="1.1.1"
  5265. url="0"
  5266. />
  5267. </productMenu>
  5268. <productMenu id="waveIntercom"
  5269. type="1" >
  5270. <productMenuType version="1.6.9"
  5271. type="0"
  5272. />
  5273. </productMenu>
  5274. <productMenu id="bluetoothIntercom"
  5275. type="1" >
  5276. </productMenu>
  5277. <productMenu id="phone"
  5278. type="1" >
  5279. </productMenu>
  5280. <productMenu id="music"
  5281. type="1" >
  5282. </productMenu>
  5283. <productMenu id="fmradio"
  5284. type="1" >
  5285. </productMenu>
  5286. <productMenu id="deviceSetting"
  5287. type="1"
  5288. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5289. <productMenuURL version="1.5"
  5290. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5291. />
  5292. <productMenuURL version="1.1.1"
  5293. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5294. />
  5295. <productMenuURL version="1.0.3"
  5296. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5297. />
  5298. </productMenu>
  5299. <productMenu id="quickGuide"
  5300. type="0"
  5301. url=""
  5302. size="344KB" >
  5303. </productMenu>
  5304. <productMenu id="userGuide"
  5305. type="1"
  5306. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5307. size="3.41MB" >
  5308. </productMenu>
  5309. <productMenu id="connectGuide"
  5310. type="1"
  5311. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5312. size="1.12MB" >
  5313. </productMenu>
  5314. <productMenu id="volume"
  5315. type="11" >
  5316. </productMenu>
  5317. <productMenu id="battery"
  5318. type="1" >
  5319. </productMenu>
  5320. <productID id="3216"
  5321. />
  5322. <productGroupable type="0"
  5323. />
  5324. </product>
  5325. <product id="SRL_EXT"
  5326. name="SRL-EXT"
  5327. series="SRL"
  5328. latestVersion="1.7.1"
  5329. show = "1" >
  5330. <productMenu id="protocol"
  5331. type="2" >
  5332. </productMenu>
  5333. <productMenu id="alexa"
  5334. type="0" >
  5335. </productMenu>
  5336. <productMenu id="ota"
  5337. type="0" >
  5338. </productMenu>
  5339. <productMenu id="wa"
  5340. type="0" >
  5341. </productMenu>
  5342. <productMenu id="sip"
  5343. type="1" >
  5344. </productMenu>
  5345. <productMenu id="meshIntercom"
  5346. type="30" >
  5347. <productMenuType version="1.1.1"
  5348. type="20"
  5349. />
  5350. </productMenu>
  5351. <productMenu id="meshIntercom+"
  5352. type="3"
  5353. url="2" >
  5354. <productMenuType version="1.5.9"
  5355. type="2"
  5356. />
  5357. <productMenuURL version="1.1.1"
  5358. url="0"
  5359. />
  5360. </productMenu>
  5361. <productMenu id="waveIntercom"
  5362. type="1" >
  5363. <productMenuType version="1.6.9"
  5364. type="0"
  5365. />
  5366. </productMenu>
  5367. <productMenu id="bluetoothIntercom"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="phone"
  5371. type="1" >
  5372. </productMenu>
  5373. <productMenu id="music"
  5374. type="1" >
  5375. </productMenu>
  5376. <productMenu id="fmradio"
  5377. type="1" >
  5378. </productMenu>
  5379. <productMenu id="deviceSetting"
  5380. type="1"
  5381. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5382. <productMenuURL version="1.5"
  5383. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5384. />
  5385. <productMenuURL version="1.1.1"
  5386. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5387. />
  5388. <productMenuURL version="1.0.3"
  5389. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5390. />
  5391. </productMenu>
  5392. <productMenu id="quickGuide"
  5393. type="0"
  5394. url=""
  5395. size="344KB" >
  5396. </productMenu>
  5397. <productMenu id="userGuide"
  5398. type="1"
  5399. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5400. size="3.41MB" >
  5401. </productMenu>
  5402. <productMenu id="connectGuide"
  5403. type="1"
  5404. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5405. size="1.12MB" >
  5406. </productMenu>
  5407. <productMenu id="volume"
  5408. type="11" >
  5409. </productMenu>
  5410. <productMenu id="battery"
  5411. type="1" >
  5412. </productMenu>
  5413. <productID id="3212"
  5414. />
  5415. <productGroupable type="0"
  5416. />
  5417. </product>
  5418. <product id="SRL2"
  5419. name="SRL2"
  5420. series="SRL"
  5421. latestVersion="1.0.9"
  5422. show = "1" >
  5423. <productMenu id="protocol"
  5424. type="0">
  5425. </productMenu>
  5426. <productMenu id="sip"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="bluetoothIntercom"
  5430. type="1" >
  5431. </productMenu>
  5432. <productMenu id="intercomSetting"
  5433. type="1" >
  5434. </productMenu>
  5435. <productMenu id="phone"
  5436. type="2" >
  5437. </productMenu>
  5438. <productMenu id="fmradio"
  5439. type="3" >
  5440. </productMenu>
  5441. <productMenu id="deviceSetting"
  5442. type="1"
  5443. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5444. </productMenu>
  5445. <productMenu id="quickGuide"
  5446. type="1"
  5447. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5448. size="846KB" >
  5449. </productMenu>
  5450. <productMenu id="userGuide"
  5451. type="1"
  5452. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5453. size="1.18MB" >
  5454. </productMenu>
  5455. <productMenu id="connectGuide"
  5456. type="1"
  5457. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5458. size="1.12MB" >
  5459. </productMenu>
  5460. <productID id="4530"
  5461. />
  5462. <productGroupable type="1"
  5463. />
  5464. </product>
  5465. <product id="Neotec2"
  5466. name="SRL Neotec2"
  5467. series="SRL"
  5468. latestVersion="1.1.5"
  5469. show = "1" >
  5470. <productMenu id="protocol"
  5471. type="0">
  5472. </productMenu>
  5473. <productMenu id="sip"
  5474. type="1" >
  5475. </productMenu>
  5476. <productMenu id="bluetoothIntercom"
  5477. type="1" >
  5478. </productMenu>
  5479. <productMenu id="intercomSetting"
  5480. type="1" >
  5481. </productMenu>
  5482. <productMenu id="phone"
  5483. type="2" >
  5484. </productMenu>
  5485. <productMenu id="fmradio"
  5486. type="3" >
  5487. </productMenu>
  5488. <productMenu id="deviceSetting"
  5489. type="1"
  5490. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5491. </productMenu>
  5492. <productMenu id="quickGuide"
  5493. type="0"
  5494. url=""
  5495. size="796KB" >
  5496. </productMenu>
  5497. <productMenu id="userGuide"
  5498. type="1"
  5499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5500. size="1.90MB" >
  5501. </productMenu>
  5502. <productMenu id="connectGuide"
  5503. type="1"
  5504. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5505. size="1.12MB" >
  5506. </productMenu>
  5507. <productID id="4510"
  5508. />
  5509. <productGroupable type="1"
  5510. />
  5511. </product>
  5512. <product id="SPIDERST2ANC"
  5513. name="SPIDER ST2 ANC"
  5514. series="SPIDER"
  5515. latestVersion="0.5.1"
  5516. latestVersionVoicePrompt="0.2"
  5517. latestVersionMesh="0.8"
  5518. show = "-1" >
  5519. <productMenu id="protocol"
  5520. type="2" >
  5521. </productMenu>
  5522. <productMenu id="ota"
  5523. type="0" >
  5524. <otaPackages>
  5525. <package
  5526. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5527. size="2945812"
  5528. />
  5529. </otaPackages>
  5530. </productMenu>
  5531. <productMenu id="wa"
  5532. type="0" >
  5533. </productMenu>
  5534. <productMenu id="led"
  5535. type="1" >
  5536. </productMenu>
  5537. <productMenu id="meshIntercom"
  5538. type="30" >
  5539. </productMenu>
  5540. <productMenu id="fmradio"
  5541. type="1" >
  5542. </productMenu>
  5543. <productMenu id="phone"
  5544. type="1" >
  5545. </productMenu>
  5546. <productMenu id="music"
  5547. type="1" >
  5548. </productMenu>
  5549. <productMenu id="musicSharing"
  5550. type="0" >
  5551. </productMenu>
  5552. <productMenu id="deviceSetting"
  5553. type="1"
  5554. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5555. </productMenu>
  5556. <productMenu id="quickGuide"
  5557. type="1"
  5558. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5559. size="1.12MB" >
  5560. </productMenu>
  5561. <productMenu id="userGuide"
  5562. type="1"
  5563. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5564. size="2.0MB" >
  5565. </productMenu>
  5566. <productMenu id="videoGuide"
  5567. type="1"
  5568. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5569. size="3.41MB" >
  5570. </productMenu>
  5571. <productMenu id="volume"
  5572. type="12" >
  5573. </productMenu>
  5574. <productMenu id="battery"
  5575. type="1" >
  5576. </productMenu>
  5577. <productID id="6A00"
  5578. />
  5579. <productGroupable type="0"
  5580. />
  5581. </product>
  5582. <product id="SPIDER_ST1"
  5583. name="SPIDER ST1"
  5584. series="SPIDER"
  5585. latestVersion="2.5.2"
  5586. latestVersionVoicePrompt="1.6"
  5587. show = "1" >
  5588. <productMenu id="protocol"
  5589. type="2" >
  5590. </productMenu>
  5591. <productMenu id="alexa"
  5592. type="0" >
  5593. </productMenu>
  5594. <productMenu id="ota"
  5595. type="2" >
  5596. <productMenuType version="2.1.9"
  5597. type="0"
  5598. />
  5599. <otaPackages>
  5600. <package
  5601. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5602. size="2945812"
  5603. />
  5604. </otaPackages>
  5605. </productMenu>
  5606. <productMenu id="wa"
  5607. type="0" >
  5608. </productMenu>
  5609. <productMenu id="meshIntercom"
  5610. type="30" >
  5611. <productMenuType version="2.1.1"
  5612. type="20"
  5613. />
  5614. </productMenu>
  5615. <productMenu id="meshIntercom+"
  5616. type="3"
  5617. url="2" >
  5618. <productMenuType version="2.2.9"
  5619. type="2"
  5620. />
  5621. <productMenuURL version="2.1.1"
  5622. url="0"
  5623. />
  5624. </productMenu>
  5625. <productMenu id="waveIntercom"
  5626. type="1" >
  5627. <productMenuType version="2.3.9"
  5628. type="0"
  5629. />
  5630. </productMenu>
  5631. <productMenu id="phone"
  5632. type="1" >
  5633. </productMenu>
  5634. <productMenu id="music"
  5635. type="1" >
  5636. </productMenu>
  5637. <productMenu id="musicSharing"
  5638. type="0" >
  5639. </productMenu>
  5640. <productMenu id="deviceSetting"
  5641. type="1"
  5642. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5643. <productMenuURL version="2.4.9"
  5644. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5645. />
  5646. <productMenuURL version="2.2.2"
  5647. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5648. />
  5649. <productMenuURL version="2.1.1"
  5650. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5651. />
  5652. </productMenu>
  5653. <productMenu id="quickGuide"
  5654. type="0"
  5655. url=""
  5656. size="1.12MB" >
  5657. </productMenu>
  5658. <productMenu id="userGuide"
  5659. type="1"
  5660. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5661. size="2.0MB" >
  5662. </productMenu>
  5663. <productMenu id="videoGuide"
  5664. type="1"
  5665. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5666. size="3.41MB" >
  5667. </productMenu>
  5668. <productMenu id="connectGuide"
  5669. type="1"
  5670. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5671. size="1.12MB" >
  5672. </productMenu>
  5673. <productMenu id="volume"
  5674. type="12" >
  5675. </productMenu>
  5676. <productMenu id="battery"
  5677. type="1" >
  5678. </productMenu>
  5679. <productID id="6800"
  5680. />
  5681. <productGroupable type="0"
  5682. />
  5683. </product>
  5684. <product id="SPIDER_ST1"
  5685. name="SPIDER ST1"
  5686. series="SPIDER"
  5687. latestVersion="1.2.2"
  5688. show = "-1" >
  5689. <productMenu id="protocol"
  5690. type="2" >
  5691. </productMenu>
  5692. <productMenu id="alexa"
  5693. type="0" >
  5694. </productMenu>
  5695. <productMenu id="ota"
  5696. type="0" >
  5697. </productMenu>
  5698. <productMenu id="wa"
  5699. type="0" >
  5700. </productMenu>
  5701. <productMenu id="meshIntercom"
  5702. type="20" >
  5703. </productMenu>
  5704. <productMenu id="phone"
  5705. type="1" >
  5706. </productMenu>
  5707. <productMenu id="music"
  5708. type="1" >
  5709. </productMenu>
  5710. <productMenu id="deviceSetting"
  5711. type="1"
  5712. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5713. </productMenu>
  5714. <productMenu id="quickGuide"
  5715. type="0"
  5716. url=""
  5717. size="1.12MB" >
  5718. </productMenu>
  5719. <productMenu id="userGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5722. size="2.0MB" >
  5723. </productMenu>
  5724. <productMenu id="videoGuide"
  5725. type="1"
  5726. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5727. size="3.41MB" >
  5728. </productMenu>
  5729. <productMenu id="volume"
  5730. type="13" >
  5731. <productMenuType version="1.1.6"
  5732. type="14"/>
  5733. </productMenu>
  5734. <productMenu id="battery"
  5735. type="1" >
  5736. </productMenu>
  5737. <productID id="6510"
  5738. />
  5739. <productGroupable type="0"
  5740. />
  5741. </product>
  5742. <product id="SPIDER_RT1"
  5743. name="SPIDER RT1"
  5744. series="SPIDER"
  5745. latestVersion="2.5.2"
  5746. latestVersionVoicePrompt="1.6"
  5747. show = "1" >
  5748. <productMenu id="protocol"
  5749. type="2" >
  5750. </productMenu>
  5751. <productMenu id="alexa"
  5752. type="0" >
  5753. </productMenu>
  5754. <productMenu id="ota"
  5755. type="2" >
  5756. <productMenuType version="2.1.9"
  5757. type="0"
  5758. />
  5759. <otaPackages>
  5760. <package
  5761. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5762. size="2945812"
  5763. />
  5764. </otaPackages>
  5765. </productMenu>
  5766. <productMenu id="wa"
  5767. type="0" >
  5768. </productMenu>
  5769. <productMenu id="meshIntercom"
  5770. type="30" >
  5771. <productMenuType version="2.1.1"
  5772. type="20"
  5773. />
  5774. </productMenu>
  5775. <productMenu id="meshIntercom+"
  5776. type="3"
  5777. url="2" >
  5778. <productMenuType version="2.2.9"
  5779. type="2"
  5780. />
  5781. <productMenuURL version="2.1.1"
  5782. url="0"
  5783. />
  5784. </productMenu>
  5785. <productMenu id="waveIntercom"
  5786. type="1" >
  5787. <productMenuType version="2.3.9"
  5788. type="0"
  5789. />
  5790. </productMenu>
  5791. <productMenu id="phone"
  5792. type="1" >
  5793. </productMenu>
  5794. <productMenu id="music"
  5795. type="1" >
  5796. </productMenu>
  5797. <productMenu id="musicSharing"
  5798. type="0" >
  5799. </productMenu>
  5800. <productMenu id="deviceSetting"
  5801. type="1"
  5802. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5803. <productMenuURL version="2.4.9"
  5804. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5805. />
  5806. <productMenuURL version="2.2.2"
  5807. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5808. />
  5809. <productMenuURL version="2.1.1"
  5810. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5811. />
  5812. </productMenu>
  5813. <productMenu id="quickGuide"
  5814. type="0"
  5815. url=""
  5816. size="1.12MB" >
  5817. </productMenu>
  5818. <productMenu id="userGuide"
  5819. type="1"
  5820. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5821. size="2.0MB" >
  5822. </productMenu>
  5823. <productMenu id="videoGuide"
  5824. type="1"
  5825. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5826. size="3.41MB" >
  5827. </productMenu>
  5828. <productMenu id="connectGuide"
  5829. type="1"
  5830. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5831. size="1.12MB" >
  5832. </productMenu>
  5833. <productMenu id="volume"
  5834. type="12" >
  5835. </productMenu>
  5836. <productMenu id="battery"
  5837. type="1" >
  5838. </productMenu>
  5839. <productID id="6810"
  5840. />
  5841. <productGroupable type="0"
  5842. />
  5843. </product>
  5844. <product id="SPIDER_RT1"
  5845. name="SPIDER RT1"
  5846. series="SPIDER"
  5847. latestVersion="1.2.2"
  5848. show = "-1" >
  5849. <productMenu id="protocol"
  5850. type="2" >
  5851. </productMenu>
  5852. <productMenu id="alexa"
  5853. type="0" >
  5854. </productMenu>
  5855. <productMenu id="ota"
  5856. type="0" >
  5857. </productMenu>
  5858. <productMenu id="wa"
  5859. type="0" >
  5860. </productMenu>
  5861. <productMenu id="meshIntercom"
  5862. type="20" >
  5863. </productMenu>
  5864. <productMenu id="phone"
  5865. type="1" >
  5866. </productMenu>
  5867. <productMenu id="music"
  5868. type="1" >
  5869. </productMenu>
  5870. <productMenu id="deviceSetting"
  5871. type="1"
  5872. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5873. </productMenu>
  5874. <productMenu id="quickGuide"
  5875. type="0"
  5876. url=""
  5877. size="1.32MB" >
  5878. </productMenu>
  5879. <productMenu id="userGuide"
  5880. type="1"
  5881. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  5882. size="1.79MB" >
  5883. </productMenu>
  5884. <productMenu id="videoGuide"
  5885. type="1"
  5886. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5887. size="3.41MB" >
  5888. </productMenu>
  5889. <productMenu id="volume"
  5890. type="13" >
  5891. <productMenuType version="1.1.6"
  5892. type="14"/>
  5893. </productMenu>
  5894. <productMenu id="battery"
  5895. type="1" >
  5896. </productMenu>
  5897. <productID id="6500"
  5898. />
  5899. <productGroupable type="0"
  5900. />
  5901. </product>
  5902. <product id="30K"
  5903. name="30K"
  5904. series="30"
  5905. latestVersion="4.5.1"
  5906. show = "1" >
  5907. <productMenu id="protocol"
  5908. type="2" >
  5909. </productMenu>
  5910. <productMenu id="alexa"
  5911. type="0" >
  5912. </productMenu>
  5913. <productMenu id="wa"
  5914. type="1" >
  5915. </productMenu>
  5916. <productMenu id="sip"
  5917. type="1" >
  5918. </productMenu>
  5919. <productMenu id="meshIntercom"
  5920. type="30" >
  5921. <productMenuType version="4.0.4"
  5922. type="20"
  5923. />
  5924. </productMenu>
  5925. <productMenu id="meshIntercom+"
  5926. type="3"
  5927. url="2" >
  5928. <productMenuType version="4.3.9"
  5929. type="2"
  5930. />
  5931. <productMenuURL version="4.0.4"
  5932. url="0"
  5933. />
  5934. </productMenu>
  5935. <productMenu id="waveIntercom"
  5936. type="1" >
  5937. <productMenuType version="4.4.9"
  5938. type="0"
  5939. />
  5940. </productMenu>
  5941. <productMenu id="bluetoothIntercom"
  5942. type="1" >
  5943. </productMenu>
  5944. <productMenu id="phone"
  5945. type="1" >
  5946. </productMenu>
  5947. <productMenu id="music"
  5948. type="1" >
  5949. </productMenu>
  5950. <productMenu id="fmradio"
  5951. type="1" >
  5952. </productMenu>
  5953. <productMenu id="deviceSetting"
  5954. type="1"
  5955. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  5956. <productMenuURL version="4.3"
  5957. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  5958. />
  5959. <productMenuURL version="4.2"
  5960. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  5961. />
  5962. <productMenuURL version="4.0.4"
  5963. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  5964. />
  5965. </productMenu>
  5966. <productMenu id="quickGuide"
  5967. type="0"
  5968. url=""
  5969. size="934KB" >
  5970. </productMenu>
  5971. <productMenu id="userGuide"
  5972. type="1"
  5973. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  5974. size="1.14MB" >
  5975. </productMenu>
  5976. <productMenu id="connectGuide"
  5977. type="1"
  5978. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5979. size="1.12MB" >
  5980. </productMenu>
  5981. <productMenu id="volume"
  5982. type="11" >
  5983. </productMenu>
  5984. <productMenu id="battery"
  5985. type="1" >
  5986. </productMenu>
  5987. <productID id="3211"
  5988. />
  5989. <productGroupable type="0"
  5990. />
  5991. </product>
  5992. <product id="30K"
  5993. name="30K"
  5994. series="30"
  5995. latestVersion="3.5"
  5996. show = "-1" >
  5997. <productMenu id="protocol"
  5998. type="1"
  5999. url="0">
  6000. </productMenu>
  6001. <productMenu id="wa"
  6002. type="7" >
  6003. </productMenu>
  6004. <productMenu id="sip"
  6005. type="1" >
  6006. </productMenu>
  6007. <productMenu id="meshIntercom"
  6008. type="20" >
  6009. <productMenuType version="2.9.9"
  6010. type="10"
  6011. />
  6012. </productMenu>
  6013. <productMenu id="meshIntercom+"
  6014. type="3"
  6015. url="2" >
  6016. <productMenuType version="3.4.9"
  6017. type="2"
  6018. />
  6019. <productMenuType version="2.9.9"
  6020. type="1"
  6021. />
  6022. <productMenuURL version="3.3.1"
  6023. url="0"
  6024. />
  6025. </productMenu>
  6026. <productMenu id="bluetoothIntercom"
  6027. type="1" >
  6028. </productMenu>
  6029. <productMenu id="phone"
  6030. type="1" >
  6031. </productMenu>
  6032. <productMenu id="music"
  6033. type="1" >
  6034. </productMenu>
  6035. <productMenu id="fmradio"
  6036. type="1" >
  6037. </productMenu>
  6038. <productMenu id="deviceSetting"
  6039. type="1"
  6040. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6041. <productMenuURL version="3.4.9"
  6042. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6043. />
  6044. <productMenuURL version="3.3.1"
  6045. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6046. />
  6047. <productMenuURL version="3.0.1"
  6048. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6049. />
  6050. <productMenuURL version="2.3.1"
  6051. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6052. />
  6053. <productMenuURL version="2.0"
  6054. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6055. />
  6056. <productMenuURL version="1.0.3"
  6057. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6058. />
  6059. </productMenu>
  6060. <productMenu id="quickGuide"
  6061. type="0"
  6062. url=""
  6063. size="1.06MB" >
  6064. </productMenu>
  6065. <productMenu id="userGuide"
  6066. type="1"
  6067. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6068. size="3.15MB" >
  6069. </productMenu>
  6070. <productMenu id="volume"
  6071. type="1" >
  6072. </productMenu>
  6073. <productID id="3110"
  6074. />
  6075. <productGroupable type="0"
  6076. />
  6077. </product>
  6078. <product id="FURY"
  6079. name="FURY"
  6080. series="Helmet"
  6081. latestVersion="1.0"
  6082. show = "-1" >
  6083. <productMenu id="protocol"
  6084. type="2" >
  6085. </productMenu>
  6086. <productMenu id="alexa"
  6087. type="0" >
  6088. </productMenu>
  6089. <productMenu id="ota"
  6090. type="0" >
  6091. </productMenu>
  6092. <productMenu id="wa"
  6093. type="0" >
  6094. </productMenu>
  6095. <productMenu id="meshIntercom"
  6096. type="20" >
  6097. </productMenu>
  6098. <productMenu id="phone"
  6099. type="1" >
  6100. </productMenu>
  6101. <productMenu id="music"
  6102. type="1" >
  6103. </productMenu>
  6104. <productMenu id="fmradio"
  6105. type="1" >
  6106. </productMenu>
  6107. <productMenu id="deviceSetting"
  6108. type="1"
  6109. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6110. </productMenu>
  6111. <productMenu id="quickGuide"
  6112. type="1"
  6113. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6114. size="1.12MB" >
  6115. </productMenu>
  6116. <productMenu id="userGuide"
  6117. type="1"
  6118. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6119. size="2.0MB" >
  6120. </productMenu>
  6121. <productMenu id="volume"
  6122. type="13" >
  6123. </productMenu>
  6124. <productMenu id="battery"
  6125. type="1" >
  6126. </productMenu>
  6127. <productID id="5552"
  6128. />
  6129. <productGroupable type="0"
  6130. />
  6131. </product>
  6132. <product id="MomentumM"
  6133. name="Momentum EVO"
  6134. series="Helmet"
  6135. latestVersion="2.1.2"
  6136. show = "1" >
  6137. <productMenu id="protocol"
  6138. type="1"
  6139. url="0">
  6140. </productMenu>
  6141. <productMenu id="wa"
  6142. type="3" >
  6143. </productMenu>
  6144. <productMenu id="sip"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="meshIntercom"
  6148. type="20" >
  6149. <productMenuType version="1.9.9"
  6150. type="10"
  6151. />
  6152. </productMenu>
  6153. <productMenu id="bluetoothIntercom"
  6154. type="1" >
  6155. </productMenu>
  6156. <productMenu id="phone"
  6157. type="1" >
  6158. </productMenu>
  6159. <productMenu id="music"
  6160. type="1" >
  6161. </productMenu>
  6162. <productMenu id="fmradio"
  6163. type="1" >
  6164. </productMenu>
  6165. <productMenu id="deviceSetting"
  6166. type="1"
  6167. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6168. <productMenuURL version="1.0.1"
  6169. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6170. />
  6171. </productMenu>
  6172. <productMenu id="quickGuide"
  6173. type="1"
  6174. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6175. size="1.06MB" >
  6176. </productMenu>
  6177. <productMenu id="userGuide"
  6178. type="1"
  6179. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6180. size="3.15MB" >
  6181. </productMenu>
  6182. <productMenu id="connectGuide"
  6183. type="1"
  6184. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6185. size="1.12MB" >
  6186. </productMenu>
  6187. <productMenu id="volume"
  6188. type="2" >
  6189. </productMenu>
  6190. <productID id="3116"
  6191. />
  6192. <productGroupable type="0"
  6193. />
  6194. </product>
  6195. <product id="Momentum"
  6196. name="Momentum"
  6197. series="Helmet"
  6198. latestVersion="1.0.9"
  6199. show = "1" >
  6200. <productMenu id="protocol"
  6201. type="0">
  6202. </productMenu>
  6203. <productMenu id="sip"
  6204. type="1" >
  6205. </productMenu>
  6206. <productMenu id="bluetoothIntercom"
  6207. type="1" >
  6208. </productMenu>
  6209. <productMenu id="intercomSetting"
  6210. type="1" >
  6211. </productMenu>
  6212. <productMenu id="phone"
  6213. type="2" >
  6214. </productMenu>
  6215. <productMenu id="fmradio"
  6216. type="3" >
  6217. </productMenu>
  6218. <productMenu id="deviceSetting"
  6219. type="1"
  6220. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6221. </productMenu>
  6222. <productMenu id="quickGuide"
  6223. type="1"
  6224. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6225. size="796KB" >
  6226. </productMenu>
  6227. <productMenu id="userGuide"
  6228. type="1"
  6229. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6230. size="1.90MB" >
  6231. </productMenu>
  6232. <productMenu id="connectGuide"
  6233. type="1"
  6234. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6235. size="1.12MB" >
  6236. </productMenu>
  6237. <productID id="4310"
  6238. />
  6239. <productGroupable type="1"
  6240. />
  6241. </product>
  6242. <product id="Momentum_Pro"
  6243. name="Momentum Pro"
  6244. series="Helmet"
  6245. latestVersion="1.0.6"
  6246. show = "1" >
  6247. <productMenu id="protocol"
  6248. type="0">
  6249. </productMenu>
  6250. <productMenu id="sip"
  6251. type="1" >
  6252. </productMenu>
  6253. <productMenu id="bluetoothIntercom"
  6254. type="1" >
  6255. </productMenu>
  6256. <productMenu id="intercomSetting"
  6257. type="1" >
  6258. </productMenu>
  6259. <productMenu id="phone"
  6260. type="2" >
  6261. </productMenu>
  6262. <productMenu id="fmradio"
  6263. type="3" >
  6264. </productMenu>
  6265. <productMenu id="deviceSetting"
  6266. type="1"
  6267. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6268. </productMenu>
  6269. <productMenu id="quickGuide"
  6270. type="1"
  6271. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6272. size="796KB" >
  6273. </productMenu>
  6274. <productMenu id="userGuide"
  6275. type="1"
  6276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6277. size="1.90MB" >
  6278. </productMenu>
  6279. <productMenu id="connectGuide"
  6280. type="1"
  6281. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6282. size="1.12MB" >
  6283. </productMenu>
  6284. <productID id="4330"
  6285. />
  6286. <productGroupable type="1"
  6287. />
  6288. </product>
  6289. <product id="Momentum_INC"
  6290. name="Momentum INC"
  6291. series="Helmet"
  6292. latestVersion="1.0.7"
  6293. show = "1" >
  6294. <productMenu id="protocol"
  6295. type="0">
  6296. </productMenu>
  6297. <productMenu id="sip"
  6298. type="1" >
  6299. </productMenu>
  6300. <productMenu id="bluetoothIntercom"
  6301. type="1" >
  6302. </productMenu>
  6303. <productMenu id="intercomSetting"
  6304. type="1" >
  6305. </productMenu>
  6306. <productMenu id="phone"
  6307. type="2" >
  6308. </productMenu>
  6309. <productMenu id="fmradio"
  6310. type="3" >
  6311. </productMenu>
  6312. <productMenu id="deviceSetting"
  6313. type="1"
  6314. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6315. </productMenu>
  6316. <productMenu id="quickGuide"
  6317. type="1"
  6318. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6319. size="794KB" >
  6320. </productMenu>
  6321. <productMenu id="userGuide"
  6322. type="1"
  6323. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6324. size="1.53MB" >
  6325. </productMenu>
  6326. <productMenu id="connectGuide"
  6327. type="1"
  6328. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6329. size="1.12MB" >
  6330. </productMenu>
  6331. <productID id="4410"
  6332. />
  6333. <productGroupable type="1"
  6334. />
  6335. </product>
  6336. <product id="Momentum_INCP"
  6337. name="Momentum INC Pro"
  6338. series="Helmet"
  6339. latestVersion="1.0.4"
  6340. show = "1" >
  6341. <productMenu id="protocol"
  6342. type="0">
  6343. </productMenu>
  6344. <productMenu id="sip"
  6345. type="1" >
  6346. </productMenu>
  6347. <productMenu id="bluetoothIntercom"
  6348. type="1" >
  6349. </productMenu>
  6350. <productMenu id="intercomSetting"
  6351. type="1" >
  6352. </productMenu>
  6353. <productMenu id="phone"
  6354. type="2" >
  6355. </productMenu>
  6356. <productMenu id="fmradio"
  6357. type="3" >
  6358. </productMenu>
  6359. <productMenu id="deviceSetting"
  6360. type="1"
  6361. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6362. </productMenu>
  6363. <productMenu id="quickGuide"
  6364. type="1"
  6365. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6366. size="794KB" >
  6367. </productMenu>
  6368. <productMenu id="userGuide"
  6369. type="1"
  6370. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6371. size="1.53MB" >
  6372. </productMenu>
  6373. <productMenu id="connectGuide"
  6374. type="1"
  6375. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6376. size="1.12MB" >
  6377. </productMenu>
  6378. <productID id="4430"
  6379. />
  6380. <productGroupable type="1"
  6381. />
  6382. </product>
  6383. <product id="Momentum_Lite"
  6384. name="Momentum Lite"
  6385. series="Helmet"
  6386. latestVersion="2.0.3"
  6387. show = "1" >
  6388. <productMenu id="protocol"
  6389. type="0">
  6390. </productMenu>
  6391. <productMenu id="sip"
  6392. type="1" >
  6393. </productMenu>
  6394. <productMenu id="bluetoothIntercom"
  6395. type="1" >
  6396. </productMenu>
  6397. <productMenu id="phone"
  6398. type="2" >
  6399. </productMenu>
  6400. <productMenu id="fmradio"
  6401. type="3" >
  6402. </productMenu>
  6403. <productMenu id="deviceSetting"
  6404. type="1"
  6405. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6406. <productMenuURL version="1.1"
  6407. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6408. />
  6409. </productMenu>
  6410. <productMenu id="quickGuide"
  6411. type="1"
  6412. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6413. size="790KB" >
  6414. </productMenu>
  6415. <productMenu id="userGuide"
  6416. type="1"
  6417. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6418. size="1.42MB" >
  6419. </productMenu>
  6420. <productMenu id="connectGuide"
  6421. type="1"
  6422. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6423. size="1.12MB" >
  6424. </productMenu>
  6425. <productID id="5526"
  6426. />
  6427. <productGroupable type="0"
  6428. />
  6429. </product>
  6430. <product id="OUTRUSHM"
  6431. name="OUTRUSH M"
  6432. series="Helmet"
  6433. latestVersion="1.0"
  6434. show = "-1" >
  6435. <productMenu id="protocol"
  6436. type="2" >
  6437. </productMenu>
  6438. <productMenu id="alexa"
  6439. type="0" >
  6440. </productMenu>
  6441. <productMenu id="ota"
  6442. type="0" >
  6443. </productMenu>
  6444. <productMenu id="wa"
  6445. type="0" >
  6446. </productMenu>
  6447. <productMenu id="meshIntercom"
  6448. type="30" >
  6449. </productMenu>
  6450. <productMenu id="phone"
  6451. type="1" >
  6452. </productMenu>
  6453. <productMenu id="music"
  6454. type="1" >
  6455. </productMenu>
  6456. <productMenu id="fmradio"
  6457. type="1" >
  6458. </productMenu>
  6459. <productMenu id="deviceSetting"
  6460. type="1"
  6461. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6462. </productMenu>
  6463. <productMenu id="quickGuide"
  6464. type="1"
  6465. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6466. size="1.12MB" >
  6467. </productMenu>
  6468. <productMenu id="userGuide"
  6469. type="1"
  6470. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6471. size="2.0MB" >
  6472. </productMenu>
  6473. <productMenu id="volume"
  6474. type="13" >
  6475. </productMenu>
  6476. <productMenu id="battery"
  6477. type="1" >
  6478. </productMenu>
  6479. <productID id="5600"
  6480. />
  6481. <productGroupable type="0"
  6482. />
  6483. </product>
  6484. <product id="ProRideEVO"
  6485. name="ProRide EVO"
  6486. series="Helmet"
  6487. latestVersion="1.1.2"
  6488. show = "1" >
  6489. <productMenu id="protocol"
  6490. type="0">
  6491. </productMenu>
  6492. <productMenu id="sip"
  6493. type="1" >
  6494. </productMenu>
  6495. <productMenu id="bluetoothIntercom"
  6496. type="1" >
  6497. </productMenu>
  6498. <productMenu id="phone"
  6499. type="2" >
  6500. </productMenu>
  6501. <productMenu id="fmradio"
  6502. type="3" >
  6503. </productMenu>
  6504. <productMenu id="deviceSetting"
  6505. type="1"
  6506. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6507. </productMenu>
  6508. <productMenu id="userGuide"
  6509. type="1"
  6510. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6511. size="778KB" >
  6512. </productMenu>
  6513. <productMenu id="connectGuide"
  6514. type="1"
  6515. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6516. size="1.12MB" >
  6517. </productMenu>
  6518. <productID id="5426"
  6519. />
  6520. <productGroupable type="0"
  6521. />
  6522. </product>
  6523. <product id="OUTRUSHR"
  6524. name="OUTRUSH R"
  6525. series="Helmet"
  6526. latestVersion="2.1"
  6527. show = "1" >
  6528. <productMenu id="protocol"
  6529. type="3" >
  6530. </productMenu>
  6531. <productMenu id="sip"
  6532. type="1" >
  6533. </productMenu>
  6534. <productMenu id="bluetoothIntercom"
  6535. type="1" >
  6536. </productMenu>
  6537. <productMenu id="phone"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="fmradio"
  6541. type="0" >
  6542. </productMenu>
  6543. <productMenu id="deviceSetting"
  6544. type="1"
  6545. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6546. </productMenu>
  6547. <productMenu id="userGuide"
  6548. type="1"
  6549. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6550. size="1.14MB" >
  6551. </productMenu>
  6552. <productMenu id="connectGuide"
  6553. type="1"
  6554. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6555. size="1.12MB" >
  6556. </productMenu>
  6557. <productID id="5440"
  6558. />
  6559. <productGroupable type="0"
  6560. />
  6561. </product>
  6562. <product id="OUTRUSHR"
  6563. name="OUTRUSH R"
  6564. series="Helmet"
  6565. latestVersion="1.1.4"
  6566. show = "-1" >
  6567. <productMenu id="protocol"
  6568. type="0">
  6569. </productMenu>
  6570. <productMenu id="sip"
  6571. type="1" >
  6572. </productMenu>
  6573. <productMenu id="bluetoothIntercom"
  6574. type="1" >
  6575. </productMenu>
  6576. <productMenu id="phone"
  6577. type="2" >
  6578. </productMenu>
  6579. <productMenu id="fmradio"
  6580. type="3" >
  6581. </productMenu>
  6582. <productMenu id="deviceSetting"
  6583. type="1"
  6584. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6585. </productMenu>
  6586. <productMenu id="userGuide"
  6587. type="1"
  6588. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6589. size="660KB" >
  6590. </productMenu>
  6591. <productMenu id="connectGuide"
  6592. type="1"
  6593. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6594. size="1.12MB" >
  6595. </productMenu>
  6596. <productID id="5424"
  6597. />
  6598. <productGroupable type="0"
  6599. />
  6600. </product>
  6601. <product id="OUTSTARS"
  6602. name="OUTSTAR S"
  6603. series="Helmet"
  6604. latestVersion="2.0.1"
  6605. show = "-1" >
  6606. <productMenu id="protocol"
  6607. type="3" >
  6608. </productMenu>
  6609. <productMenu id="sip"
  6610. type="1" >
  6611. </productMenu>
  6612. <productMenu id="bluetoothIntercom"
  6613. type="1" >
  6614. </productMenu>
  6615. <productMenu id="phone"
  6616. type="1" >
  6617. </productMenu>
  6618. <productMenu id="fmradio"
  6619. type="0" >
  6620. </productMenu>
  6621. <productMenu id="deviceSetting"
  6622. type="1"
  6623. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6624. </productMenu>
  6625. <productMenu id="userGuide"
  6626. type="0"
  6627. url=""
  6628. size="1.14MB" >
  6629. </productMenu>
  6630. <productID id="5443"
  6631. />
  6632. <productGroupable type="0"
  6633. />
  6634. </product>
  6635. <product id="OUTSTARS"
  6636. name="OUTSTAR S"
  6637. series="Helmet"
  6638. latestVersion="1.1.4"
  6639. show = "1" >
  6640. <productMenu id="protocol"
  6641. type="0">
  6642. </productMenu>
  6643. <productMenu id="sip"
  6644. type="1" >
  6645. </productMenu>
  6646. <productMenu id="bluetoothIntercom"
  6647. type="1" >
  6648. </productMenu>
  6649. <productMenu id="phone"
  6650. type="2" >
  6651. </productMenu>
  6652. <productMenu id="fmradio"
  6653. type="3" >
  6654. </productMenu>
  6655. <productMenu id="deviceSetting"
  6656. type="1"
  6657. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6658. </productMenu>
  6659. <productMenu id="quickGuide"
  6660. type="1"
  6661. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6662. size="643KB" >
  6663. </productMenu>
  6664. <productMenu id="userGuide"
  6665. type="1"
  6666. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6667. size="1.15MB" >
  6668. </productMenu>
  6669. <productMenu id="connectGuide"
  6670. type="1"
  6671. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6672. size="1.12MB" >
  6673. </productMenu>
  6674. <productID id="5428"
  6675. />
  6676. <productGroupable type="0"
  6677. />
  6678. </product>
  6679. <product id="OUTRIDE"
  6680. name="OUTRIDE"
  6681. series="Helmet"
  6682. latestVersion="1.0.1"
  6683. show = "1" >
  6684. <productMenu id="protocol"
  6685. type="0">
  6686. </productMenu>
  6687. <productMenu id="sip"
  6688. type="1" >
  6689. </productMenu>
  6690. <productMenu id="bluetoothIntercom"
  6691. type="1" >
  6692. </productMenu>
  6693. <productMenu id="phone"
  6694. type="2" >
  6695. </productMenu>
  6696. <productMenu id="fmradio"
  6697. type="3" >
  6698. </productMenu>
  6699. <productMenu id="deviceSetting"
  6700. type="1"
  6701. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6702. </productMenu>
  6703. <productMenu id="quickGuide"
  6704. type="1"
  6705. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6706. size="643KB" >
  6707. </productMenu>
  6708. <productMenu id="userGuide"
  6709. type="1"
  6710. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6711. size="660KB" >
  6712. </productMenu>
  6713. <productMenu id="connectGuide"
  6714. type="1"
  6715. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6716. size="1.12MB" >
  6717. </productMenu>
  6718. <productID id="5432"
  6719. />
  6720. <productGroupable type="0"
  6721. />
  6722. </product>
  6723. <product id="OUTFORCE"
  6724. name="OUTFORCE"
  6725. series="Helmet"
  6726. latestVersion="1.0.1"
  6727. show = "1" >
  6728. <productMenu id="protocol"
  6729. type="0">
  6730. </productMenu>
  6731. <productMenu id="sip"
  6732. type="1" >
  6733. </productMenu>
  6734. <productMenu id="bluetoothIntercom"
  6735. type="1" >
  6736. </productMenu>
  6737. <productMenu id="phone"
  6738. type="2" >
  6739. </productMenu>
  6740. <productMenu id="fmradio"
  6741. type="3" >
  6742. </productMenu>
  6743. <productMenu id="deviceSetting"
  6744. type="1"
  6745. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6746. </productMenu>
  6747. <productMenu id="quickGuide"
  6748. type="1"
  6749. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6750. size="643KB" >
  6751. </productMenu>
  6752. <productMenu id="userGuide"
  6753. type="1"
  6754. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6755. size="660KB" >
  6756. </productMenu>
  6757. <productMenu id="connectGuide"
  6758. type="1"
  6759. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6760. size="1.12MB" >
  6761. </productMenu>
  6762. <productID id="5430"
  6763. />
  6764. <productGroupable type="0"
  6765. />
  6766. </product>
  6767. <product id="Rumba"
  6768. name="Rumba"
  6769. series="30"
  6770. latestVersion="2.0"
  6771. show = "-1" >
  6772. <productMenu id="protocol"
  6773. type="3" >
  6774. </productMenu>
  6775. <productMenu id="sip"
  6776. type="1" >
  6777. </productMenu>
  6778. <productMenu id="bluetoothIntercom"
  6779. type="1" >
  6780. </productMenu>
  6781. <productMenu id="deviceSetting"
  6782. type="1"
  6783. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6784. </productMenu>
  6785. <productMenu id="quickGuide"
  6786. type="1"
  6787. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6788. size="344KB" >
  6789. </productMenu>
  6790. <productMenu id="userGuide"
  6791. type="1"
  6792. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6793. size="1.14MB" >
  6794. </productMenu>
  6795. <productID id="6322"
  6796. />
  6797. <productGroupable type="0"
  6798. />
  6799. </product>
  6800. <product id="Savage"
  6801. name="Savage"
  6802. series="Helmet"
  6803. latestVersion="1.2.2"
  6804. show = "1" >
  6805. <productMenu id="protocol"
  6806. type="0">
  6807. </productMenu>
  6808. <productMenu id="sip"
  6809. type="1" >
  6810. </productMenu>
  6811. <productMenu id="bluetoothIntercom"
  6812. type="1" >
  6813. </productMenu>
  6814. <productMenu id="phone"
  6815. type="2" >
  6816. </productMenu>
  6817. <productMenu id="fmradio"
  6818. type="3" >
  6819. </productMenu>
  6820. <productMenu id="deviceSetting"
  6821. type="1"
  6822. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6823. <productMenuURL version="1.9"
  6824. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6825. />
  6826. <productMenuURL version="1.1"
  6827. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6828. />
  6829. </productMenu>
  6830. <productMenu id="quickGuide"
  6831. type="1"
  6832. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6833. size="796KB" >
  6834. </productMenu>
  6835. <productMenu id="userGuide"
  6836. type="1"
  6837. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6838. size="910KB" >
  6839. </productMenu>
  6840. <productMenu id="connectGuide"
  6841. type="1"
  6842. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6843. size="1.12MB" >
  6844. </productMenu>
  6845. <productID id="5550"
  6846. />
  6847. <productGroupable type="0"
  6848. />
  6849. </product>
  6850. <product id="SPECTER"
  6851. name="SPECTER"
  6852. series="Helmet"
  6853. latestVersion="1.0.7"
  6854. latestVersionVoicePrompt="1.5"
  6855. show = "1" >
  6856. <productMenu id="protocol"
  6857. type="2" >
  6858. </productMenu>
  6859. <productMenu id="ota"
  6860. type="2" >
  6861. <otaLanguages>
  6862. <otaLanguage
  6863. id="0"
  6864. name="English"
  6865. package="0"
  6866. />
  6867. <otaLanguage
  6868. id="0"
  6869. name="French"
  6870. package="1"
  6871. />
  6872. <otaLanguage
  6873. id="0"
  6874. name="Spanish"
  6875. package="2"
  6876. />
  6877. <otaLanguage
  6878. id="0"
  6879. name="Italian"
  6880. package="3"
  6881. />
  6882. <otaLanguage
  6883. id="0"
  6884. name="German"
  6885. package="4"
  6886. />
  6887. <otaLanguage
  6888. id="0"
  6889. name="Dutch"
  6890. package="5"
  6891. />
  6892. <otaLanguage
  6893. id="0"
  6894. name="Russian"
  6895. package="6"
  6896. />
  6897. <otaLanguage
  6898. id="0"
  6899. name="Chinese"
  6900. package="7"
  6901. />
  6902. <otaLanguage
  6903. id="0"
  6904. name="Korean"
  6905. package="8"
  6906. />
  6907. <otaLanguage
  6908. id="0"
  6909. name="Japanese"
  6910. package="9"
  6911. />
  6912. <otaLanguage
  6913. id="0"
  6914. name="Finnish"
  6915. package="10"
  6916. />
  6917. <otaLanguage
  6918. id="0"
  6919. name="Polish"
  6920. package="11"
  6921. />
  6922. </otaLanguages>
  6923. <otaPackages>
  6924. <package
  6925. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  6926. size="5183988"
  6927. />
  6928. <package
  6929. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  6930. size="5183988"
  6931. />
  6932. <package
  6933. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  6934. size="5183988"
  6935. />
  6936. <package
  6937. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  6938. size="5183988"
  6939. />
  6940. <package
  6941. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  6942. size="5183988"
  6943. />
  6944. <package
  6945. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  6946. size="5183988"
  6947. />
  6948. <package
  6949. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  6950. size="5183988"
  6951. />
  6952. <package
  6953. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  6954. size="5183988"
  6955. />
  6956. <package
  6957. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  6958. size="5183988"
  6959. />
  6960. <package
  6961. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  6962. size="5183988"
  6963. />
  6964. <package
  6965. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  6966. size="5183988"
  6967. />
  6968. <package
  6969. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  6970. size="5183988"
  6971. />
  6972. </otaPackages>
  6973. </productMenu>
  6974. <productMenu id="wa"
  6975. type="0" >
  6976. </productMenu>
  6977. <productMenu id="led"
  6978. type="5" >
  6979. </productMenu>
  6980. <productMenu id="led+"
  6981. type="2"
  6982. url="1" >
  6983. </productMenu>
  6984. <productMenu id="meshIntercom+"
  6985. type="3"
  6986. url="2" >
  6987. </productMenu>
  6988. <productMenu id="waveIntercom"
  6989. type="1" >
  6990. </productMenu>
  6991. <productMenu id="fmradio"
  6992. type="0" >
  6993. </productMenu>
  6994. <productMenu id="phone"
  6995. type="1" >
  6996. </productMenu>
  6997. <productMenu id="music"
  6998. type="1" >
  6999. </productMenu>
  7000. <productMenu id="musicSharing"
  7001. type="0" >
  7002. </productMenu>
  7003. <productMenu id="deviceSetting"
  7004. type="1"
  7005. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7006. <productMenuURL version="1.0.4"
  7007. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7008. />
  7009. </productMenu>
  7010. <productMenu id="quickGuide"
  7011. type="0"
  7012. url=""
  7013. size="1.12MB" >
  7014. </productMenu>
  7015. <productMenu id="userGuide"
  7016. type="1"
  7017. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7018. size="2.0MB" >
  7019. </productMenu>
  7020. <productMenu id="videoGuide"
  7021. type="0"
  7022. url=""
  7023. size="3.41MB" >
  7024. </productMenu>
  7025. <productMenu id="volume"
  7026. type="16" >
  7027. </productMenu>
  7028. <productMenu id="volume+"
  7029. type="2"
  7030. url="0x6004" >
  7031. </productMenu>
  7032. <productMenu id="battery"
  7033. type="1" >
  7034. </productMenu>
  7035. <productID id="6A11"
  7036. />
  7037. <productGroupable type="0"
  7038. />
  7039. </product>
  7040. <product id="SPECTER"
  7041. name="SPECTER"
  7042. series="Helmet"
  7043. latestVersion="1.0.7"
  7044. latestVersionVoicePrompt="1.5"
  7045. show = "-1" >
  7046. <productMenu id="protocol"
  7047. type="2" >
  7048. </productMenu>
  7049. <productMenu id="ota"
  7050. type="2" >
  7051. <otaLanguages>
  7052. <otaLanguage
  7053. id="0"
  7054. name="English"
  7055. package="0"
  7056. />
  7057. <otaLanguage
  7058. id="0"
  7059. name="French"
  7060. package="1"
  7061. />
  7062. <otaLanguage
  7063. id="0"
  7064. name="Spanish"
  7065. package="2"
  7066. />
  7067. <otaLanguage
  7068. id="0"
  7069. name="Italian"
  7070. package="3"
  7071. />
  7072. <otaLanguage
  7073. id="0"
  7074. name="German"
  7075. package="4"
  7076. />
  7077. <otaLanguage
  7078. id="0"
  7079. name="Dutch"
  7080. package="5"
  7081. />
  7082. <otaLanguage
  7083. id="0"
  7084. name="Russian"
  7085. package="6"
  7086. />
  7087. <otaLanguage
  7088. id="0"
  7089. name="Chinese"
  7090. package="7"
  7091. />
  7092. <otaLanguage
  7093. id="0"
  7094. name="Korean"
  7095. package="8"
  7096. />
  7097. <otaLanguage
  7098. id="0"
  7099. name="Japanese"
  7100. package="9"
  7101. />
  7102. <otaLanguage
  7103. id="0"
  7104. name="Finnish"
  7105. package="10"
  7106. />
  7107. <otaLanguage
  7108. id="0"
  7109. name="Polish"
  7110. package="11"
  7111. />
  7112. </otaLanguages>
  7113. <otaPackages>
  7114. <package
  7115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7116. size="5183988"
  7117. />
  7118. <package
  7119. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7120. size="5183988"
  7121. />
  7122. <package
  7123. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7124. size="5183988"
  7125. />
  7126. <package
  7127. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7128. size="5183988"
  7129. />
  7130. <package
  7131. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7132. size="5183988"
  7133. />
  7134. <package
  7135. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7136. size="5183988"
  7137. />
  7138. <package
  7139. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7140. size="5183988"
  7141. />
  7142. <package
  7143. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7144. size="5183988"
  7145. />
  7146. <package
  7147. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7148. size="5183988"
  7149. />
  7150. <package
  7151. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7152. size="5183988"
  7153. />
  7154. <package
  7155. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7156. size="5183988"
  7157. />
  7158. <package
  7159. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7160. size="5183988"
  7161. />
  7162. </otaPackages>
  7163. </productMenu>
  7164. <productMenu id="wa"
  7165. type="0" >
  7166. </productMenu>
  7167. <productMenu id="led"
  7168. type="5" >
  7169. </productMenu>
  7170. <productMenu id="led+"
  7171. type="2"
  7172. url="1" >
  7173. </productMenu>
  7174. <productMenu id="meshIntercom+"
  7175. type="3"
  7176. url="2" >
  7177. </productMenu>
  7178. <productMenu id="waveIntercom"
  7179. type="1" >
  7180. </productMenu>
  7181. <productMenu id="fmradio"
  7182. type="0" >
  7183. </productMenu>
  7184. <productMenu id="phone"
  7185. type="1" >
  7186. </productMenu>
  7187. <productMenu id="music"
  7188. type="1" >
  7189. </productMenu>
  7190. <productMenu id="musicSharing"
  7191. type="0" >
  7192. </productMenu>
  7193. <productMenu id="deviceSetting"
  7194. type="1"
  7195. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7196. <productMenuURL version="1.0.4"
  7197. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7198. />
  7199. <productMenuURL version="1.0"
  7200. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7201. />
  7202. </productMenu>
  7203. <productMenu id="quickGuide"
  7204. type="0"
  7205. url=""
  7206. size="1.12MB" >
  7207. </productMenu>
  7208. <productMenu id="userGuide"
  7209. type="1"
  7210. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7211. size="2.0MB" >
  7212. </productMenu>
  7213. <productMenu id="videoGuide"
  7214. type="0"
  7215. url=""
  7216. size="3.41MB" >
  7217. </productMenu>
  7218. <productMenu id="volume"
  7219. type="16" >
  7220. </productMenu>
  7221. <productMenu id="volume+"
  7222. type="2"
  7223. url="0x6004" >
  7224. </productMenu>
  7225. <productMenu id="battery"
  7226. type="1" >
  7227. </productMenu>
  7228. <productID id="6A0A"
  7229. />
  7230. <productGroupable type="0"
  7231. />
  7232. </product>
  7233. <product id="OUTLANDER"
  7234. name="OUTLANDER"
  7235. series="Helmet"
  7236. latestVersion="1.0.7"
  7237. latestVersionVoicePrompt="1.5"
  7238. show = "1" >
  7239. <productMenu id="protocol"
  7240. type="2" >
  7241. </productMenu>
  7242. <productMenu id="ota"
  7243. type="2" >
  7244. <otaLanguages>
  7245. <otaLanguage
  7246. id="0"
  7247. name="English"
  7248. package="0"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="French"
  7253. package="1"
  7254. />
  7255. <otaLanguage
  7256. id="0"
  7257. name="Spanish"
  7258. package="2"
  7259. />
  7260. <otaLanguage
  7261. id="0"
  7262. name="Italian"
  7263. package="3"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="German"
  7268. package="4"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="Dutch"
  7273. package="5"
  7274. />
  7275. <otaLanguage
  7276. id="0"
  7277. name="Russian"
  7278. package="6"
  7279. />
  7280. <otaLanguage
  7281. id="0"
  7282. name="Chinese"
  7283. package="7"
  7284. />
  7285. <otaLanguage
  7286. id="0"
  7287. name="Korean"
  7288. package="8"
  7289. />
  7290. <otaLanguage
  7291. id="0"
  7292. name="Japanese"
  7293. package="9"
  7294. />
  7295. <otaLanguage
  7296. id="0"
  7297. name="Finnish"
  7298. package="10"
  7299. />
  7300. <otaLanguage
  7301. id="0"
  7302. name="Polish"
  7303. package="11"
  7304. />
  7305. </otaLanguages>
  7306. <otaPackages>
  7307. <package
  7308. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7309. size="5183988"
  7310. />
  7311. <package
  7312. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7313. size="5183988"
  7314. />
  7315. <package
  7316. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7317. size="5183988"
  7318. />
  7319. <package
  7320. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7321. size="5183988"
  7322. />
  7323. <package
  7324. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7325. size="5183988"
  7326. />
  7327. <package
  7328. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7329. size="5183988"
  7330. />
  7331. <package
  7332. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7333. size="5183988"
  7334. />
  7335. <package
  7336. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7337. size="5183988"
  7338. />
  7339. <package
  7340. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7341. size="5183988"
  7342. />
  7343. <package
  7344. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7345. size="5183988"
  7346. />
  7347. <package
  7348. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7349. size="5183988"
  7350. />
  7351. <package
  7352. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7353. size="5183988"
  7354. />
  7355. </otaPackages>
  7356. </productMenu>
  7357. <productMenu id="wa"
  7358. type="0" >
  7359. </productMenu>
  7360. <productMenu id="led"
  7361. type="5" >
  7362. </productMenu>
  7363. <productMenu id="led+"
  7364. type="2"
  7365. url="1" >
  7366. </productMenu>
  7367. <productMenu id="meshIntercom+"
  7368. type="3"
  7369. url="2" >
  7370. </productMenu>
  7371. <productMenu id="waveIntercom"
  7372. type="1" >
  7373. </productMenu>
  7374. <productMenu id="fmradio"
  7375. type="0" >
  7376. </productMenu>
  7377. <productMenu id="phone"
  7378. type="1" >
  7379. </productMenu>
  7380. <productMenu id="music"
  7381. type="1" >
  7382. </productMenu>
  7383. <productMenu id="musicSharing"
  7384. type="0" >
  7385. </productMenu>
  7386. <productMenu id="deviceSetting"
  7387. type="1"
  7388. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7389. <productMenuURL version="1.0.4"
  7390. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7391. />
  7392. </productMenu>
  7393. <productMenu id="quickGuide"
  7394. type="0"
  7395. url=""
  7396. size="1.12MB" >
  7397. </productMenu>
  7398. <productMenu id="userGuide"
  7399. type="1"
  7400. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7401. size="2.0MB" >
  7402. </productMenu>
  7403. <productMenu id="videoGuide"
  7404. type="0"
  7405. url=""
  7406. size="3.41MB" >
  7407. </productMenu>
  7408. <productMenu id="volume"
  7409. type="16" >
  7410. </productMenu>
  7411. <productMenu id="volume+"
  7412. type="2"
  7413. url="0x6004" >
  7414. </productMenu>
  7415. <productMenu id="battery"
  7416. type="1" >
  7417. </productMenu>
  7418. <productID id="6A05"
  7419. />
  7420. <productGroupable type="0"
  7421. />
  7422. </product>
  7423. <product id="OUTRUSH2"
  7424. name="OUTRUSH 2"
  7425. series="Helmet"
  7426. latestVersion="1.0.2"
  7427. latestVersionVoicePrompt="1.1"
  7428. show = "1" >
  7429. <productMenu id="protocol"
  7430. type="2" >
  7431. </productMenu>
  7432. <productMenu id="alexa"
  7433. type="0" >
  7434. </productMenu>
  7435. <productMenu id="ota"
  7436. type="2" >
  7437. <otaPackages>
  7438. <package
  7439. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7440. size="2945812"
  7441. />
  7442. </otaPackages>
  7443. </productMenu>
  7444. <productMenu id="meshIntercom+"
  7445. type="3"
  7446. url="2" >
  7447. </productMenu>
  7448. <productMenu id="waveIntercom"
  7449. type="1" >
  7450. </productMenu>
  7451. <productMenu id="phone"
  7452. type="1" >
  7453. </productMenu>
  7454. <productMenu id="music"
  7455. type="1" >
  7456. </productMenu>
  7457. <productMenu id="musicSharing"
  7458. type="0" >
  7459. </productMenu>
  7460. <productMenu id="deviceSetting"
  7461. type="1"
  7462. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7463. <productMenuURL version="1.0"
  7464. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7465. />
  7466. </productMenu>
  7467. <productMenu id="quickGuide"
  7468. type="0"
  7469. url=""
  7470. size="1.12MB" >
  7471. </productMenu>
  7472. <productMenu id="userGuide"
  7473. type="1"
  7474. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7475. size="2.0MB" >
  7476. </productMenu>
  7477. <productMenu id="volume"
  7478. type="12" >
  7479. </productMenu>
  7480. <productMenu id="battery"
  7481. type="1" >
  7482. </productMenu>
  7483. <productID id="684A"
  7484. />
  7485. <productGroupable type="0"
  7486. />
  7487. </product>
  7488. <product id="OUTSTAR2"
  7489. name="OUTSTAR 2"
  7490. series="Helmet"
  7491. latestVersion="1.0.1"
  7492. latestVersionVoicePrompt="1.1"
  7493. show = "1" >
  7494. <productMenu id="protocol"
  7495. type="2" >
  7496. </productMenu>
  7497. <productMenu id="alexa"
  7498. type="0" >
  7499. </productMenu>
  7500. <productMenu id="ota"
  7501. type="2" >
  7502. <otaPackages>
  7503. <package
  7504. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7505. size="2945812"
  7506. />
  7507. </otaPackages>
  7508. </productMenu>
  7509. <productMenu id="meshIntercom+"
  7510. type="3"
  7511. url="2" >
  7512. </productMenu>
  7513. <productMenu id="waveIntercom"
  7514. type="1" >
  7515. </productMenu>
  7516. <productMenu id="phone"
  7517. type="1" >
  7518. </productMenu>
  7519. <productMenu id="music"
  7520. type="1" >
  7521. </productMenu>
  7522. <productMenu id="musicSharing"
  7523. type="0" >
  7524. </productMenu>
  7525. <productMenu id="deviceSetting"
  7526. type="1"
  7527. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7528. </productMenu>
  7529. <productMenu id="quickGuide"
  7530. type="0"
  7531. url=""
  7532. size="1.12MB" >
  7533. </productMenu>
  7534. <productMenu id="userGuide"
  7535. type="1"
  7536. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7537. size="2.0MB" >
  7538. </productMenu>
  7539. <productMenu id="volume"
  7540. type="12" >
  7541. </productMenu>
  7542. <productMenu id="battery"
  7543. type="1" >
  7544. </productMenu>
  7545. <productID id="684B"
  7546. />
  7547. <productGroupable type="0"
  7548. />
  7549. </product>
  7550. <product id="SURGE"
  7551. name="SURGE"
  7552. series="Helmet"
  7553. latestVersion="1.2"
  7554. latestVersionVoicePrompt="1.3"
  7555. show = "1" >
  7556. <productMenu id="protocol"
  7557. type="2" >
  7558. </productMenu>
  7559. <productMenu id="alexa"
  7560. type="0" >
  7561. </productMenu>
  7562. <productMenu id="ota"
  7563. type="2" >
  7564. <otaPackages>
  7565. <package
  7566. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7567. size="2945812"
  7568. />
  7569. </otaPackages>
  7570. </productMenu>
  7571. <productMenu id="meshIntercom"
  7572. type="30" >
  7573. </productMenu>
  7574. <productMenu id="meshIntercom+"
  7575. type="3"
  7576. url="2" >
  7577. <productMenuType version="1.0.1"
  7578. type="2"
  7579. />
  7580. </productMenu>
  7581. <productMenu id="waveIntercom"
  7582. type="1" >
  7583. <productMenuType version="1.0.9"
  7584. type="0"
  7585. />
  7586. </productMenu>
  7587. <productMenu id="phone"
  7588. type="1" >
  7589. </productMenu>
  7590. <productMenu id="music"
  7591. type="1" >
  7592. </productMenu>
  7593. <productMenu id="musicSharing"
  7594. type="0" >
  7595. </productMenu>
  7596. <productMenu id="deviceSetting"
  7597. type="1"
  7598. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7599. <productMenuURL version="1.1.9"
  7600. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7601. />
  7602. <productMenuURL version="1.0.1"
  7603. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7604. />
  7605. </productMenu>
  7606. <productMenu id="quickGuide"
  7607. type="0"
  7608. url=""
  7609. size="1.12MB" >
  7610. </productMenu>
  7611. <productMenu id="userGuide"
  7612. type="1"
  7613. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7614. size="2.0MB" >
  7615. </productMenu>
  7616. <productMenu id="volume"
  7617. type="12" >
  7618. </productMenu>
  7619. <productMenu id="battery"
  7620. type="1" >
  7621. </productMenu>
  7622. <productID id="6840"
  7623. />
  7624. <productGroupable type="0"
  7625. />
  7626. </product>
  7627. <product id="Cavalry2"
  7628. name="Cavalry 2"
  7629. series="Helmet"
  7630. latestVersion="1.2"
  7631. latestVersionVoicePrompt="1.3"
  7632. show = "1" >
  7633. <productMenu id="protocol"
  7634. type="2" >
  7635. </productMenu>
  7636. <productMenu id="alexa"
  7637. type="0" >
  7638. </productMenu>
  7639. <productMenu id="ota"
  7640. type="2" >
  7641. <otaPackages>
  7642. <package
  7643. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7644. size="3144148"
  7645. />
  7646. </otaPackages>
  7647. </productMenu>
  7648. <productMenu id="wa"
  7649. type="0" >
  7650. </productMenu>
  7651. <productMenu id="meshIntercom"
  7652. type="30" >
  7653. </productMenu>
  7654. <productMenu id="meshIntercom+"
  7655. type="3"
  7656. url="2" >
  7657. <productMenuType version="1.0"
  7658. type="2"
  7659. />
  7660. </productMenu>
  7661. <productMenu id="waveIntercom"
  7662. type="1" >
  7663. <productMenuType version="1.0.9"
  7664. type="0"
  7665. />
  7666. </productMenu>
  7667. <productMenu id="phone"
  7668. type="1" >
  7669. </productMenu>
  7670. <productMenu id="music"
  7671. type="1" >
  7672. </productMenu>
  7673. <productMenu id="musicSharing"
  7674. type="0" >
  7675. </productMenu>
  7676. <productMenu id="deviceSetting"
  7677. type="1"
  7678. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7679. <productMenuURL version="1.1.9"
  7680. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7681. />
  7682. <productMenuURL version="1.0"
  7683. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7684. />
  7685. </productMenu>
  7686. <productMenu id="quickGuide"
  7687. type="0"
  7688. url=""
  7689. size="1.12MB" >
  7690. </productMenu>
  7691. <productMenu id="userGuide"
  7692. type="1"
  7693. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7694. size="2.0MB" >
  7695. </productMenu>
  7696. <productMenu id="connectGuide"
  7697. type="1"
  7698. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7699. size="1.12MB" >
  7700. </productMenu>
  7701. <productMenu id="volume"
  7702. type="12" >
  7703. </productMenu>
  7704. <productMenu id="battery"
  7705. type="1" >
  7706. </productMenu>
  7707. <productID id="6839"
  7708. />
  7709. <productGroupable type="0"
  7710. />
  7711. </product>
  7712. <product id="Cavalry"
  7713. name="Cavalry"
  7714. series="Helmet"
  7715. latestVersion="1.2.2"
  7716. show = "1" >
  7717. <productMenu id="protocol"
  7718. type="0">
  7719. </productMenu>
  7720. <productMenu id="sip"
  7721. type="1" >
  7722. </productMenu>
  7723. <productMenu id="bluetoothIntercom"
  7724. type="1" >
  7725. </productMenu>
  7726. <productMenu id="phone"
  7727. type="2" >
  7728. </productMenu>
  7729. <productMenu id="fmradio"
  7730. type="3" >
  7731. </productMenu>
  7732. <productMenu id="deviceSetting"
  7733. type="1"
  7734. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7735. <productMenuURL version="1.9"
  7736. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7737. />
  7738. <productMenuURL version="1.0.1"
  7739. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7740. />
  7741. </productMenu>
  7742. <productMenu id="quickGuide"
  7743. type="1"
  7744. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7745. size="795KB" >
  7746. </productMenu>
  7747. <productMenu id="userGuide"
  7748. type="1"
  7749. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7750. size="1.87MB" >
  7751. </productMenu>
  7752. <productMenu id="connectGuide"
  7753. type="1"
  7754. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7755. size="1.12MB" >
  7756. </productMenu>
  7757. <productID id="5524"
  7758. />
  7759. <productGroupable type="0"
  7760. />
  7761. </product>
  7762. <product id="Cavalry_Lite"
  7763. name="Cavalry Lite"
  7764. series="Helmet"
  7765. latestVersion="1.0.2"
  7766. show = "1" >
  7767. <productMenu id="protocol"
  7768. type="0">
  7769. </productMenu>
  7770. <productMenu id="sip"
  7771. type="1" >
  7772. </productMenu>
  7773. <productMenu id="bluetoothIntercom"
  7774. type="1" >
  7775. </productMenu>
  7776. <productMenu id="phone"
  7777. type="2" >
  7778. </productMenu>
  7779. <productMenu id="fmradio"
  7780. type="3" >
  7781. </productMenu>
  7782. <productMenu id="deviceSetting"
  7783. type="1"
  7784. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7785. </productMenu>
  7786. <productMenu id="userGuide"
  7787. type="1"
  7788. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7789. size="1.74MB" >
  7790. </productMenu>
  7791. <productMenu id="connectGuide"
  7792. type="1"
  7793. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7794. size="1.12MB" >
  7795. </productMenu>
  7796. <productID id="5536"
  7797. />
  7798. <productGroupable type="0"
  7799. />
  7800. </product>
  7801. <product id="VORTEX"
  7802. name="VORTEX"
  7803. series="VORTEX"
  7804. latestVersion="1.0"
  7805. latestVersionVoicePrompt="1.0"
  7806. show = "-1" >
  7807. <productMenu id="protocol"
  7808. type="2" >
  7809. </productMenu>
  7810. <productMenu id="ota"
  7811. type="2" >
  7812. <otaLanguages>
  7813. <otaLanguage
  7814. id="0"
  7815. name="English"
  7816. package="0"
  7817. />
  7818. <otaLanguage
  7819. id="0"
  7820. name="French"
  7821. package="1"
  7822. />
  7823. <otaLanguage
  7824. id="0"
  7825. name="Spanish"
  7826. package="2"
  7827. />
  7828. <otaLanguage
  7829. id="0"
  7830. name="Italian"
  7831. package="3"
  7832. />
  7833. <otaLanguage
  7834. id="0"
  7835. name="German"
  7836. package="4"
  7837. />
  7838. <otaLanguage
  7839. id="0"
  7840. name="Dutch"
  7841. package="5"
  7842. />
  7843. <otaLanguage
  7844. id="0"
  7845. name="Russian"
  7846. package="6"
  7847. />
  7848. <otaLanguage
  7849. id="0"
  7850. name="Chinese"
  7851. package="7"
  7852. />
  7853. <otaLanguage
  7854. id="0"
  7855. name="Korean"
  7856. package="8"
  7857. />
  7858. <otaLanguage
  7859. id="0"
  7860. name="Japanese"
  7861. package="9"
  7862. />
  7863. <otaLanguage
  7864. id="0"
  7865. name="Finnish"
  7866. package="10"
  7867. />
  7868. <otaLanguage
  7869. id="0"
  7870. name="Polish"
  7871. package="11"
  7872. />
  7873. </otaLanguages>
  7874. <otaPackages>
  7875. <package
  7876. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  7877. size="5183988"
  7878. />
  7879. <package
  7880. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  7881. size="5183988"
  7882. />
  7883. <package
  7884. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  7885. size="5183988"
  7886. />
  7887. <package
  7888. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  7889. size="5183988"
  7890. />
  7891. <package
  7892. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  7893. size="5183988"
  7894. />
  7895. <package
  7896. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  7897. size="5183988"
  7898. />
  7899. <package
  7900. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  7901. size="5183988"
  7902. />
  7903. <package
  7904. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  7905. size="5183988"
  7906. />
  7907. <package
  7908. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  7909. size="5183988"
  7910. />
  7911. <package
  7912. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  7913. size="5183988"
  7914. />
  7915. <package
  7916. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  7917. size="5183988"
  7918. />
  7919. <package
  7920. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  7921. size="5183988"
  7922. />
  7923. </otaPackages>
  7924. </productMenu>
  7925. <productMenu id="sip"
  7926. type="1" >
  7927. </productMenu>
  7928. <productMenu id="bluetoothIntercom"
  7929. type="1" >
  7930. </productMenu>
  7931. <productMenu id="phone"
  7932. type="1" >
  7933. </productMenu>
  7934. <productMenu id="music"
  7935. type="1" >
  7936. </productMenu>
  7937. <productMenu id="fmradio"
  7938. type="1"
  7939. url="1" >
  7940. </productMenu>
  7941. <productMenu id="deviceSetting"
  7942. type="1"
  7943. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  7944. </productMenu>
  7945. <productMenu id="quickGuide"
  7946. type="0"
  7947. url=""
  7948. size="934KB" >
  7949. </productMenu>
  7950. <productMenu id="userGuide"
  7951. type="1"
  7952. url=""
  7953. size="1.14MB" >
  7954. </productMenu>
  7955. <productMenu id="connectGuide"
  7956. type="0"
  7957. url=""
  7958. size="1.12MB" >
  7959. </productMenu>
  7960. <productMenu id="volume"
  7961. type="15" >
  7962. </productMenu>
  7963. <productMenu id="appearance"
  7964. type="1"
  7965. url="1|white,silver,black" >
  7966. </productMenu>
  7967. <productID id="3451"
  7968. />
  7969. <productGroupable type="0"
  7970. />
  7971. </product>
  7972. <product id="SF4"
  7973. name="SF4"
  7974. series="SF"
  7975. latestVersion="1.1.5"
  7976. show = "-1" >
  7977. <productMenu id="protocol"
  7978. type="1"
  7979. url="3">
  7980. </productMenu>
  7981. <productMenu id="sip"
  7982. type="1" >
  7983. </productMenu>
  7984. <productMenu id="bluetoothIntercom"
  7985. type="1" >
  7986. </productMenu>
  7987. <productMenu id="phone"
  7988. type="1" >
  7989. </productMenu>
  7990. <productMenu id="music"
  7991. type="1" >
  7992. </productMenu>
  7993. <productMenu id="fmradio"
  7994. type="1" >
  7995. </productMenu>
  7996. <productMenu id="deviceSetting"
  7997. type="1"
  7998. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7999. <productMenuURL version="1.0.1"
  8000. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8001. />
  8002. </productMenu>
  8003. <productMenu id="quickGuide"
  8004. type="1"
  8005. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8006. size="607KB" >
  8007. </productMenu>
  8008. <productMenu id="userGuide"
  8009. type="1"
  8010. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8011. size="1.91MB" >
  8012. </productMenu>
  8013. <productMenu id="volume"
  8014. type="4" >
  8015. </productMenu>
  8016. <productID id="5414"
  8017. />
  8018. <productGroupable type="0"
  8019. />
  8020. </product>
  8021. <product id="SF4"
  8022. name="SF4"
  8023. series="SF"
  8024. latestVersion="3.4.4"
  8025. show = "1" >
  8026. <productMenu id="protocol"
  8027. type="2" >
  8028. </productMenu>
  8029. <productMenu id="sip"
  8030. type="1" >
  8031. </productMenu>
  8032. <productMenu id="bluetoothIntercom"
  8033. type="1" >
  8034. </productMenu>
  8035. <productMenu id="phone"
  8036. type="1" >
  8037. </productMenu>
  8038. <productMenu id="music"
  8039. type="1" >
  8040. </productMenu>
  8041. <productMenu id="fmradio"
  8042. type="1" >
  8043. </productMenu>
  8044. <productMenu id="deviceSetting"
  8045. type="1"
  8046. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8047. <productMenuURL version="3.0"
  8048. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8049. />
  8050. </productMenu>
  8051. <productMenu id="quickGuide"
  8052. type="0"
  8053. url=""
  8054. size="934KB" >
  8055. </productMenu>
  8056. <productMenu id="userGuide"
  8057. type="1"
  8058. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8059. size="1.14MB" >
  8060. </productMenu>
  8061. <productMenu id="connectGuide"
  8062. type="1"
  8063. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8064. size="1.12MB" >
  8065. </productMenu>
  8066. <productMenu id="volume"
  8067. type="15" >
  8068. </productMenu>
  8069. <productID id="3370"
  8070. />
  8071. <productGroupable type="0"
  8072. />
  8073. </product>
  8074. <product id="SF2"
  8075. name="SF2"
  8076. series="SF"
  8077. latestVersion="1.2.1"
  8078. show = "-1" >
  8079. <productMenu id="protocol"
  8080. type="1"
  8081. url="2">
  8082. </productMenu>
  8083. <productMenu id="sip"
  8084. type="1" >
  8085. </productMenu>
  8086. <productMenu id="bluetoothIntercom"
  8087. type="1" >
  8088. </productMenu>
  8089. <productMenu id="phone"
  8090. type="1" >
  8091. </productMenu>
  8092. <productMenu id="music"
  8093. type="1" >
  8094. </productMenu>
  8095. <productMenu id="fmradio"
  8096. type="1" >
  8097. </productMenu>
  8098. <productMenu id="deviceSetting"
  8099. type="1"
  8100. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8101. <productMenuURL version="1.0.1"
  8102. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8103. />
  8104. </productMenu>
  8105. <productMenu id="quickGuide"
  8106. type="1"
  8107. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8108. size="607KB" >
  8109. </productMenu>
  8110. <productMenu id="userGuide"
  8111. type="1"
  8112. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8113. size="1.91MB" >
  8114. </productMenu>
  8115. <productMenu id="volume"
  8116. type="4" >
  8117. </productMenu>
  8118. <productID id="5412"
  8119. />
  8120. <productGroupable type="0"
  8121. />
  8122. </product>
  8123. <product id="SF2"
  8124. name="SF2"
  8125. series="SF"
  8126. latestVersion="3.3.4"
  8127. show = "1" >
  8128. <productMenu id="protocol"
  8129. type="2" >
  8130. </productMenu>
  8131. <productMenu id="sip"
  8132. type="1" >
  8133. </productMenu>
  8134. <productMenu id="bluetoothIntercom"
  8135. type="1" >
  8136. </productMenu>
  8137. <productMenu id="phone"
  8138. type="1" >
  8139. </productMenu>
  8140. <productMenu id="music"
  8141. type="1" >
  8142. </productMenu>
  8143. <productMenu id="fmradio"
  8144. type="0" >
  8145. </productMenu>
  8146. <productMenu id="deviceSetting"
  8147. type="1"
  8148. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8149. <productMenuURL version="3.0"
  8150. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8151. />
  8152. </productMenu>
  8153. <productMenu id="quickGuide"
  8154. type="0"
  8155. url=""
  8156. size="934KB" >
  8157. </productMenu>
  8158. <productMenu id="userGuide"
  8159. type="1"
  8160. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8161. size="1.14MB" >
  8162. </productMenu>
  8163. <productMenu id="connectGuide"
  8164. type="1"
  8165. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8166. size="1.12MB" >
  8167. </productMenu>
  8168. <productMenu id="volume"
  8169. type="15" >
  8170. </productMenu>
  8171. <productID id="3360"
  8172. />
  8173. <productGroupable type="0"
  8174. />
  8175. </product>
  8176. <product id="SF1"
  8177. name="SF1"
  8178. series="SF"
  8179. latestVersion="2.0.5"
  8180. show = "-1" >
  8181. <productMenu id="protocol"
  8182. type="1"
  8183. url="1">
  8184. </productMenu>
  8185. <productMenu id="sip"
  8186. type="1" >
  8187. </productMenu>
  8188. <productMenu id="bluetoothIntercom"
  8189. type="1" >
  8190. <productMenuType version="1.1"
  8191. type="0"
  8192. />
  8193. </productMenu>
  8194. <productMenu id="phone"
  8195. type="1" >
  8196. </productMenu>
  8197. <productMenu id="music"
  8198. type="1" >
  8199. </productMenu>
  8200. <productMenu id="deviceSetting"
  8201. type="1"
  8202. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8203. <productMenuURL version="1.1"
  8204. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8205. />
  8206. <productMenuURL version="1.0"
  8207. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8208. />
  8209. </productMenu>
  8210. <productMenu id="quickGuide"
  8211. type="1"
  8212. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8213. size="401KB" >
  8214. </productMenu>
  8215. <productMenu id="userGuide"
  8216. type="1"
  8217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8218. size="1.91MB" >
  8219. </productMenu>
  8220. <productMenu id="volume"
  8221. type="3" >
  8222. </productMenu>
  8223. <productID id="5410"
  8224. />
  8225. <productGroupable type="0"
  8226. />
  8227. </product>
  8228. <product id="SF1"
  8229. name="SF1"
  8230. series="SF"
  8231. latestVersion="3.3.4"
  8232. show = "1" >
  8233. <productMenu id="protocol"
  8234. type="2" >
  8235. </productMenu>
  8236. <productMenu id="sip"
  8237. type="1" >
  8238. </productMenu>
  8239. <productMenu id="bluetoothIntercom"
  8240. type="1" >
  8241. </productMenu>
  8242. <productMenu id="phone"
  8243. type="1" >
  8244. </productMenu>
  8245. <productMenu id="music"
  8246. type="1" >
  8247. </productMenu>
  8248. <productMenu id="fmradio"
  8249. type="0" >
  8250. </productMenu>
  8251. <productMenu id="deviceSetting"
  8252. type="1"
  8253. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8254. <productMenuURL version="3.0"
  8255. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8256. />
  8257. </productMenu>
  8258. <productMenu id="quickGuide"
  8259. type="0"
  8260. url=""
  8261. size="934KB" >
  8262. </productMenu>
  8263. <productMenu id="userGuide"
  8264. type="1"
  8265. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8266. size="1.14MB" >
  8267. </productMenu>
  8268. <productMenu id="connectGuide"
  8269. type="1"
  8270. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8271. size="1.12MB" >
  8272. </productMenu>
  8273. <productMenu id="volume"
  8274. type="15" >
  8275. </productMenu>
  8276. <productID id="3350"
  8277. />
  8278. <productGroupable type="0"
  8279. />
  8280. </product>
  8281. <product id="SFR"
  8282. name="SFR"
  8283. series="SF"
  8284. latestVersion="1.1.1"
  8285. show = "1" >
  8286. <productMenu id="protocol"
  8287. type="1"
  8288. url="3">
  8289. </productMenu>
  8290. <productMenu id="sip"
  8291. type="1" >
  8292. </productMenu>
  8293. <productMenu id="bluetoothIntercom"
  8294. type="1" >
  8295. </productMenu>
  8296. <productMenu id="phone"
  8297. type="1" >
  8298. </productMenu>
  8299. <productMenu id="music"
  8300. type="1" >
  8301. </productMenu>
  8302. <productMenu id="fmradio"
  8303. type="1" >
  8304. </productMenu>
  8305. <productMenu id="deviceSetting"
  8306. type="1"
  8307. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8308. </productMenu>
  8309. <productMenu id="quickGuide"
  8310. type="1"
  8311. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8312. size="607KB" >
  8313. </productMenu>
  8314. <productMenu id="userGuide"
  8315. type="1"
  8316. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8317. size="1.91MB" >
  8318. </productMenu>
  8319. <productMenu id="volume"
  8320. type="4" >
  8321. </productMenu>
  8322. <productID id="5418"
  8323. />
  8324. <productGroupable type="0"
  8325. />
  8326. </product>
  8327. <product id="20S"
  8328. name="20S"
  8329. series="20"
  8330. latestVersion="2.2.3"
  8331. show = "1" >
  8332. <productMenu id="protocol"
  8333. type="0">
  8334. </productMenu>
  8335. <productMenu id="wa"
  8336. type="5" >
  8337. </productMenu>
  8338. <productMenu id="sip"
  8339. type="1" >
  8340. <productMenuType version="1.0"
  8341. type="0"
  8342. />
  8343. </productMenu>
  8344. <productMenu id="bluetoothIntercom"
  8345. type="1" >
  8346. <productMenuType version="1.0"
  8347. type="0"
  8348. />
  8349. </productMenu>
  8350. <productMenu id="intercomSetting"
  8351. type="1" >
  8352. </productMenu>
  8353. <productMenu id="phone"
  8354. type="2" >
  8355. </productMenu>
  8356. <productMenu id="fmradio"
  8357. type="3" >
  8358. </productMenu>
  8359. <productMenu id="deviceSetting"
  8360. type="1"
  8361. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8362. <productMenuURL version="2.0.2"
  8363. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8364. />
  8365. <productMenuURL version="1.5"
  8366. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8367. />
  8368. <productMenuURL version="1.4.1"
  8369. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8370. />
  8371. <productMenuURL version="1.1"
  8372. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8373. />
  8374. <productMenuURL version="1.0"
  8375. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8376. />
  8377. </productMenu>
  8378. <productMenu id="quickGuide"
  8379. type="0"
  8380. url=""
  8381. size="264KB" >
  8382. </productMenu>
  8383. <productMenu id="userGuide"
  8384. type="1"
  8385. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8386. size="3.09MB" >
  8387. </productMenu>
  8388. <productMenu id="connectGuide"
  8389. type="1"
  8390. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8391. size="1.12MB" >
  8392. </productMenu>
  8393. <productID id="4210"
  8394. />
  8395. <productGroupable type="1"
  8396. />
  8397. </product>
  8398. <product id="20S_EVO"
  8399. name="20S EVO"
  8400. series="20"
  8401. latestVersion="2.2.3"
  8402. show = "1" >
  8403. <productMenu id="protocol"
  8404. type="0">
  8405. </productMenu>
  8406. <productMenu id="wa"
  8407. type="5" >
  8408. </productMenu>
  8409. <productMenu id="sip"
  8410. type="1" >
  8411. <productMenuType version="1.0"
  8412. type="0"
  8413. />
  8414. </productMenu>
  8415. <productMenu id="bluetoothIntercom"
  8416. type="1" >
  8417. <productMenuType version="1.0"
  8418. type="0"
  8419. />
  8420. </productMenu>
  8421. <productMenu id="intercomSetting"
  8422. type="1" >
  8423. </productMenu>
  8424. <productMenu id="phone"
  8425. type="2" >
  8426. </productMenu>
  8427. <productMenu id="fmradio"
  8428. type="3" >
  8429. </productMenu>
  8430. <productMenu id="deviceSetting"
  8431. type="1"
  8432. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8433. <productMenuURL version="2.0.2"
  8434. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8435. />
  8436. <productMenuURL version="1.5"
  8437. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8438. />
  8439. <productMenuURL version="1.4.1"
  8440. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8441. />
  8442. <productMenuURL version="1.1"
  8443. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8444. />
  8445. <productMenuURL version="1.0"
  8446. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8447. />
  8448. </productMenu>
  8449. <productMenu id="quickGuide"
  8450. type="0"
  8451. url=""
  8452. size="264KB" >
  8453. </productMenu>
  8454. <productMenu id="userGuide"
  8455. type="1"
  8456. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8457. size="3.09MB" >
  8458. </productMenu>
  8459. <productMenu id="connectGuide"
  8460. type="1"
  8461. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8462. size="1.12MB" >
  8463. </productMenu>
  8464. <productID id="4210"
  8465. />
  8466. <productProductKey key="16"
  8467. />
  8468. <productGroupable type="1"
  8469. />
  8470. </product>
  8471. <product id="10S"
  8472. name="10S"
  8473. series="10"
  8474. latestVersion="3.0.2"
  8475. show = "1" >
  8476. <productMenu id="protocol"
  8477. type="3" >
  8478. </productMenu>
  8479. <productMenu id="sip"
  8480. type="1" >
  8481. </productMenu>
  8482. <productMenu id="bluetoothIntercom"
  8483. type="1" >
  8484. </productMenu>
  8485. <productMenu id="phone"
  8486. type="1" >
  8487. </productMenu>
  8488. <productMenu id="deviceSetting"
  8489. type="1"
  8490. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8491. </productMenu>
  8492. <productMenu id="quickGuide"
  8493. type="1"
  8494. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8495. size="934KB" >
  8496. </productMenu>
  8497. <productMenu id="userGuide"
  8498. type="1"
  8499. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8500. size="1.14MB" >
  8501. </productMenu>
  8502. <productMenu id="connectGuide"
  8503. type="1"
  8504. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8505. size="1.12MB" >
  8506. </productMenu>
  8507. <productID id="3380"
  8508. />
  8509. <productGroupable type="0"
  8510. />
  8511. </product>
  8512. <product id="10S"
  8513. name="10S"
  8514. series="10"
  8515. latestVersion="2.1.1"
  8516. show = "-1" >
  8517. <productMenu id="protocol"
  8518. type="0">
  8519. </productMenu>
  8520. <productMenu id="sip"
  8521. type="1" >
  8522. </productMenu>
  8523. <productMenu id="bluetoothIntercom"
  8524. type="1" >
  8525. </productMenu>
  8526. <productMenu id="phone"
  8527. type="2" >
  8528. </productMenu>
  8529. <productMenu id="fmradio"
  8530. type="3" >
  8531. </productMenu>
  8532. <productMenu id="deviceSetting"
  8533. type="1"
  8534. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8535. <productMenuURL version="1.5"
  8536. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8537. />
  8538. <productMenuURL version="1.3.1"
  8539. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8540. />
  8541. </productMenu>
  8542. <productMenu id="quickGuide"
  8543. type="1"
  8544. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8545. size="310KB" >
  8546. </productMenu>
  8547. <productMenu id="userGuide"
  8548. type="1"
  8549. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8550. size="1.57MB" >
  8551. </productMenu>
  8552. <productID id="5530"
  8553. />
  8554. <productGroupable type="0"
  8555. />
  8556. </product>
  8557. <product id="Apex"
  8558. name="Apex"
  8559. series="Apex"
  8560. latestVersion="1.0"
  8561. latestVersionVoicePrompt="1.0"
  8562. show = "-1" >
  8563. <productMenu id="protocol"
  8564. type="2" >
  8565. </productMenu>
  8566. <productMenu id="serialNumber"
  8567. type="1" >
  8568. </productMenu>
  8569. <productMenu id="ota"
  8570. type="0" >
  8571. <otaLanguages>
  8572. <otaLanguage
  8573. id="0"
  8574. name="English"
  8575. package="0"
  8576. />
  8577. <otaLanguage
  8578. id="0"
  8579. name="French"
  8580. package="1"
  8581. />
  8582. <otaLanguage
  8583. id="0"
  8584. name="Spanish"
  8585. package="2"
  8586. />
  8587. <otaLanguage
  8588. id="0"
  8589. name="Italian"
  8590. package="3"
  8591. />
  8592. <otaLanguage
  8593. id="0"
  8594. name="German"
  8595. package="4"
  8596. />
  8597. <otaLanguage
  8598. id="0"
  8599. name="Dutch"
  8600. package="5"
  8601. />
  8602. <otaLanguage
  8603. id="0"
  8604. name="Russian"
  8605. package="6"
  8606. />
  8607. <otaLanguage
  8608. id="0"
  8609. name="Chinese"
  8610. package="7"
  8611. />
  8612. <otaLanguage
  8613. id="0"
  8614. name="Korean"
  8615. package="8"
  8616. />
  8617. <otaLanguage
  8618. id="0"
  8619. name="Japanese"
  8620. package="9"
  8621. />
  8622. <otaLanguage
  8623. id="0"
  8624. name="Finnish"
  8625. package="10"
  8626. />
  8627. <otaLanguage
  8628. id="0"
  8629. name="Polish"
  8630. package="11"
  8631. />
  8632. </otaLanguages>
  8633. <otaPackages>
  8634. <package
  8635. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8636. size="5183988"
  8637. />
  8638. <package
  8639. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8640. size="5183988"
  8641. />
  8642. <package
  8643. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8644. size="5183988"
  8645. />
  8646. <package
  8647. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8648. size="5183988"
  8649. />
  8650. <package
  8651. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8652. size="5183988"
  8653. />
  8654. <package
  8655. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8656. size="5183988"
  8657. />
  8658. <package
  8659. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8660. size="5183988"
  8661. />
  8662. <package
  8663. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8664. size="5183988"
  8665. />
  8666. <package
  8667. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8668. size="5183988"
  8669. />
  8670. <package
  8671. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8672. size="5183988"
  8673. />
  8674. <package
  8675. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8676. size="5183988"
  8677. />
  8678. <package
  8679. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8680. size="5183988"
  8681. />
  8682. </otaPackages>
  8683. </productMenu>
  8684. <productMenu id="sip"
  8685. type="1" >
  8686. </productMenu>
  8687. <productMenu id="bluetoothIntercom"
  8688. type="1" >
  8689. </productMenu>
  8690. <productMenu id="phone"
  8691. type="1" >
  8692. </productMenu>
  8693. <productMenu id="music"
  8694. type="1" >
  8695. </productMenu>
  8696. <productMenu id="fmradio"
  8697. type="1"
  8698. url="1" >
  8699. </productMenu>
  8700. <productMenu id="deviceSetting"
  8701. type="1"
  8702. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8703. </productMenu>
  8704. <productMenu id="quickGuide"
  8705. type="0"
  8706. url=""
  8707. size="934KB" >
  8708. </productMenu>
  8709. <productMenu id="userGuide"
  8710. type="1"
  8711. url=""
  8712. size="1.14MB" >
  8713. </productMenu>
  8714. <productMenu id="volume"
  8715. type="15" >
  8716. </productMenu>
  8717. <productID id="3452"
  8718. />
  8719. <productGroupable type="0"
  8720. />
  8721. </product>
  8722. <product id="ApexPlus"
  8723. name="Apex Plus"
  8724. series="Apex"
  8725. latestVersion="1.0"
  8726. latestVersionVoicePrompt="1.0"
  8727. show = "-1" >
  8728. <productMenu id="protocol"
  8729. type="2" >
  8730. </productMenu>
  8731. <productMenu id="serialNumber"
  8732. type="1" >
  8733. </productMenu>
  8734. <productMenu id="ota"
  8735. type="0" >
  8736. <otaLanguages>
  8737. <otaLanguage
  8738. id="0"
  8739. name="English"
  8740. package="0"
  8741. />
  8742. <otaLanguage
  8743. id="0"
  8744. name="French"
  8745. package="1"
  8746. />
  8747. <otaLanguage
  8748. id="0"
  8749. name="Spanish"
  8750. package="2"
  8751. />
  8752. <otaLanguage
  8753. id="0"
  8754. name="Italian"
  8755. package="3"
  8756. />
  8757. <otaLanguage
  8758. id="0"
  8759. name="German"
  8760. package="4"
  8761. />
  8762. <otaLanguage
  8763. id="0"
  8764. name="Dutch"
  8765. package="5"
  8766. />
  8767. <otaLanguage
  8768. id="0"
  8769. name="Russian"
  8770. package="6"
  8771. />
  8772. <otaLanguage
  8773. id="0"
  8774. name="Chinese"
  8775. package="7"
  8776. />
  8777. <otaLanguage
  8778. id="0"
  8779. name="Korean"
  8780. package="8"
  8781. />
  8782. <otaLanguage
  8783. id="0"
  8784. name="Japanese"
  8785. package="9"
  8786. />
  8787. <otaLanguage
  8788. id="0"
  8789. name="Finnish"
  8790. package="10"
  8791. />
  8792. <otaLanguage
  8793. id="0"
  8794. name="Polish"
  8795. package="11"
  8796. />
  8797. </otaLanguages>
  8798. <otaPackages>
  8799. <package
  8800. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8801. size="5183988"
  8802. />
  8803. <package
  8804. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8805. size="5183988"
  8806. />
  8807. <package
  8808. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8809. size="5183988"
  8810. />
  8811. <package
  8812. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  8813. size="5183988"
  8814. />
  8815. <package
  8816. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  8817. size="5183988"
  8818. />
  8819. <package
  8820. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  8821. size="5183988"
  8822. />
  8823. <package
  8824. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  8825. size="5183988"
  8826. />
  8827. <package
  8828. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  8829. size="5183988"
  8830. />
  8831. <package
  8832. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  8833. size="5183988"
  8834. />
  8835. <package
  8836. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  8837. size="5183988"
  8838. />
  8839. <package
  8840. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  8841. size="5183988"
  8842. />
  8843. <package
  8844. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  8845. size="5183988"
  8846. />
  8847. </otaPackages>
  8848. </productMenu>
  8849. <productMenu id="sip"
  8850. type="1" >
  8851. </productMenu>
  8852. <productMenu id="bluetoothIntercom"
  8853. type="1" >
  8854. </productMenu>
  8855. <productMenu id="phone"
  8856. type="1" >
  8857. </productMenu>
  8858. <productMenu id="music"
  8859. type="1" >
  8860. </productMenu>
  8861. <productMenu id="fmradio"
  8862. type="1"
  8863. url="1" >
  8864. </productMenu>
  8865. <productMenu id="deviceSetting"
  8866. type="1"
  8867. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8868. </productMenu>
  8869. <productMenu id="quickGuide"
  8870. type="0"
  8871. url=""
  8872. size="934KB" >
  8873. </productMenu>
  8874. <productMenu id="userGuide"
  8875. type="1"
  8876. url=""
  8877. size="1.14MB" >
  8878. </productMenu>
  8879. <productMenu id="volume"
  8880. type="15" >
  8881. </productMenu>
  8882. <productID id="3453"
  8883. />
  8884. <productGroupable type="0"
  8885. />
  8886. </product>
  8887. <product id="10R2"
  8888. name="10R 2"
  8889. series="10"
  8890. latestVersion="0.9"
  8891. latestVersionVoicePrompt="1.1"
  8892. show = "-1" >
  8893. <productMenu id="protocol"
  8894. type="2" >
  8895. </productMenu>
  8896. <productMenu id="ota"
  8897. type="2" >
  8898. <otaPackages>
  8899. <package
  8900. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8901. size="2945812"
  8902. />
  8903. </otaPackages>
  8904. </productMenu>
  8905. <productMenu id="sip"
  8906. type="1" >
  8907. </productMenu>
  8908. <productMenu id="bluetoothIntercom"
  8909. type="1" >
  8910. </productMenu>
  8911. <productMenu id="phone"
  8912. type="1" >
  8913. </productMenu>
  8914. <productMenu id="music"
  8915. type="1" >
  8916. </productMenu>
  8917. <productMenu id="fmradio"
  8918. type="1"
  8919. url="1" >
  8920. </productMenu>
  8921. <productMenu id="deviceSetting"
  8922. type="1"
  8923. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8924. </productMenu>
  8925. <productMenu id="quickGuide"
  8926. type="1"
  8927. url=""
  8928. size="934KB" >
  8929. </productMenu>
  8930. <productMenu id="userGuide"
  8931. type="0"
  8932. url=""
  8933. size="1.14MB" >
  8934. </productMenu>
  8935. <productMenu id="volume"
  8936. type="15" >
  8937. </productMenu>
  8938. <productID id="4000"
  8939. />
  8940. <productGroupable type="0"
  8941. />
  8942. </product>
  8943. <product id="10R"
  8944. name="10R"
  8945. series="10"
  8946. latestVersion="2.1.1"
  8947. show = "1" >
  8948. <productMenu id="protocol"
  8949. type="0">
  8950. </productMenu>
  8951. <productMenu id="sip"
  8952. type="1" >
  8953. <productMenuType version="1.0.2"
  8954. type="0"
  8955. />
  8956. </productMenu>
  8957. <productMenu id="bluetoothIntercom"
  8958. type="1" >
  8959. <productMenuType version="1.0.2"
  8960. type="0"
  8961. />
  8962. </productMenu>
  8963. <productMenu id="phone"
  8964. type="2" >
  8965. </productMenu>
  8966. <productMenu id="fmradio"
  8967. type="3" >
  8968. </productMenu>
  8969. <productMenu id="deviceSetting"
  8970. type="1"
  8971. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8972. <productMenuURL version="1.4"
  8973. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  8974. />
  8975. <productMenuURL version="1.2.1"
  8976. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  8977. />
  8978. <productMenuURL version="1.0.2"
  8979. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  8980. />
  8981. <productMenuURL version="1.0"
  8982. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  8983. />
  8984. </productMenu>
  8985. <productMenu id="quickGuide"
  8986. type="1"
  8987. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  8988. size="400KB" >
  8989. </productMenu>
  8990. <productMenu id="userGuide"
  8991. type="1"
  8992. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  8993. size="2.75MB" >
  8994. </productMenu>
  8995. <productMenu id="connectGuide"
  8996. type="1"
  8997. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8998. size="1.12MB" >
  8999. </productMenu>
  9000. <productID id="5520"
  9001. />
  9002. <productGroupable type="0"
  9003. />
  9004. </product>
  9005. <product id="10C_EVO"
  9006. name="10C EVO"
  9007. series="10"
  9008. latestVersion="1.7"
  9009. show = "1" >
  9010. <productMenu id="protocol"
  9011. type="0">
  9012. </productMenu>
  9013. <productMenu id="sip"
  9014. type="1" >
  9015. </productMenu>
  9016. <productMenu id="bluetoothIntercom"
  9017. type="1" >
  9018. </productMenu>
  9019. <productMenu id="phone"
  9020. type="2" >
  9021. </productMenu>
  9022. <productMenu id="fmradio"
  9023. type="3" >
  9024. </productMenu>
  9025. <productMenu id="deviceSetting"
  9026. type="1"
  9027. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9028. <productMenuURL version="1.3.1"
  9029. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9030. />
  9031. </productMenu>
  9032. <productMenu id="quickGuide"
  9033. type="1"
  9034. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9035. size="1.32MB" >
  9036. </productMenu>
  9037. <productMenu id="userGuide"
  9038. type="1"
  9039. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9040. size="1.68MB" >
  9041. </productMenu>
  9042. <productMenu id="connectGuide"
  9043. type="1"
  9044. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9045. size="1.12MB" >
  9046. </productMenu>
  9047. <productID id="5570"
  9048. />
  9049. <productGroupable type="0"
  9050. />
  9051. </product>
  9052. <product id="10C_Pro"
  9053. name="10C Pro"
  9054. series="10"
  9055. latestVersion="2.7.1"
  9056. show = "1" >
  9057. <productMenu id="protocol"
  9058. type="0">
  9059. </productMenu>
  9060. <productMenu id="sip"
  9061. type="1" >
  9062. </productMenu>
  9063. <productMenu id="bluetoothIntercom"
  9064. type="1" >
  9065. </productMenu>
  9066. <productMenu id="phone"
  9067. type="2" >
  9068. </productMenu>
  9069. <productMenu id="fmradio"
  9070. type="3" >
  9071. </productMenu>
  9072. <productMenu id="deviceSetting"
  9073. type="1"
  9074. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9075. <productMenuURL version="2.5.1"
  9076. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9077. />
  9078. <productMenuURL version="1.0"
  9079. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9080. />
  9081. </productMenu>
  9082. <productMenu id="quickGuide"
  9083. type="1"
  9084. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9085. size="651KB" >
  9086. </productMenu>
  9087. <productMenu id="userGuide"
  9088. type="1"
  9089. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9090. size="2.34MB" >
  9091. </productMenu>
  9092. <productMenu id="connectGuide"
  9093. type="1"
  9094. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9095. size="1.12MB" >
  9096. </productMenu>
  9097. <productID id="5580"
  9098. />
  9099. <productGroupable type="0"
  9100. />
  9101. </product>
  9102. <product id="10C"
  9103. name="10C"
  9104. series="10"
  9105. latestVersion="3.0.4"
  9106. show = "1" >
  9107. <productMenu id="protocol"
  9108. type="0">
  9109. </productMenu>
  9110. <productMenu id="sip"
  9111. type="1" >
  9112. <productMenuType version="1.0.4"
  9113. type="0"
  9114. />
  9115. </productMenu>
  9116. <productMenu id="bluetoothIntercom"
  9117. type="1" >
  9118. <productMenuType version="1.0.4"
  9119. type="0"
  9120. />
  9121. </productMenu>
  9122. <productMenu id="phone"
  9123. type="2" >
  9124. </productMenu>
  9125. <productMenu id="fmradio"
  9126. type="3" >
  9127. </productMenu>
  9128. <productMenu id="deviceSetting"
  9129. type="1"
  9130. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9131. <productMenuURL version="2.3"
  9132. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9133. />
  9134. <productMenuURL version="2.1.1"
  9135. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9136. />
  9137. <productMenuURL version="1.0.4"
  9138. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9139. />
  9140. <productMenuURL version="1.0.2"
  9141. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9142. />
  9143. </productMenu>
  9144. <productMenu id="quickGuide"
  9145. type="1"
  9146. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9147. size="935KB" >
  9148. </productMenu>
  9149. <productMenu id="userGuide"
  9150. type="1"
  9151. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9152. size="2.82MB" >
  9153. </productMenu>
  9154. <productMenu id="connectGuide"
  9155. type="1"
  9156. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9157. size="1.12MB" >
  9158. </productMenu>
  9159. <productID id="5510"
  9160. />
  9161. <productGroupable type="0"
  9162. />
  9163. </product>
  9164. <product id="10U_GT_AIR"
  9165. name="10U GT-Air"
  9166. series="10"
  9167. latestVersion="2.0.4"
  9168. show = "1" >
  9169. <productMenu id="protocol"
  9170. type="0">
  9171. </productMenu>
  9172. <productMenu id="sip"
  9173. type="1" >
  9174. <productMenuType version="1.0.2"
  9175. type="0"
  9176. />
  9177. </productMenu>
  9178. <productMenu id="bluetoothIntercom"
  9179. type="1" >
  9180. <productMenuType version="1.0.2"
  9181. type="0"
  9182. />
  9183. </productMenu>
  9184. <productMenu id="phone"
  9185. type="2" >
  9186. </productMenu>
  9187. <productMenu id="fmradio"
  9188. type="3" >
  9189. </productMenu>
  9190. <productMenu id="deviceSetting"
  9191. type="1"
  9192. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9193. <productMenuURL version="1.3.2"
  9194. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9195. />
  9196. <productMenuURL version="1.0.2"
  9197. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9198. />
  9199. </productMenu>
  9200. <productMenu id="quickGuide"
  9201. type="1"
  9202. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9203. size="685KB" >
  9204. </productMenu>
  9205. <productMenu id="userGuide"
  9206. type="1"
  9207. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9208. size="684KB" >
  9209. </productMenu>
  9210. <productMenu id="connectGuide"
  9211. type="1"
  9212. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9213. size="1.12MB" >
  9214. </productMenu>
  9215. <productID id="5610"
  9216. />
  9217. <productGroupable type="0"
  9218. />
  9219. </product>
  9220. <product id="10U_NEOTEC"
  9221. name="10U Neotec"
  9222. series="10"
  9223. latestVersion="2.0.4"
  9224. show = "1" >
  9225. <productMenu id="protocol"
  9226. type="0">
  9227. </productMenu>
  9228. <productMenu id="sip"
  9229. type="1" >
  9230. <productMenuType version="1.0.2"
  9231. type="0"
  9232. />
  9233. </productMenu>
  9234. <productMenu id="bluetoothIntercom"
  9235. type="1" >
  9236. <productMenuType version="1.0.2"
  9237. type="0"
  9238. />
  9239. </productMenu>
  9240. <productMenu id="phone"
  9241. type="2" >
  9242. </productMenu>
  9243. <productMenu id="fmradio"
  9244. type="3" >
  9245. </productMenu>
  9246. <productMenu id="deviceSetting"
  9247. type="1"
  9248. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9249. <productMenuURL version="1.3.2"
  9250. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9251. />
  9252. <productMenuURL version="1.0.2"
  9253. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9254. />
  9255. </productMenu>
  9256. <productMenu id="quickGuide"
  9257. type="1"
  9258. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9259. size="689KB" >
  9260. </productMenu>
  9261. <productMenu id="userGuide"
  9262. type="1"
  9263. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9264. size="684KB" >
  9265. </productMenu>
  9266. <productMenu id="connectGuide"
  9267. type="1"
  9268. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9269. size="1.12MB" >
  9270. </productMenu>
  9271. <productID id="5611"
  9272. />
  9273. <productGroupable type="0"
  9274. />
  9275. </product>
  9276. <product id="10U_J_CRUISE"
  9277. name="10U J-Cruise"
  9278. series="10"
  9279. latestVersion="2.0.4"
  9280. show = "1" >
  9281. <productMenu id="protocol"
  9282. type="0">
  9283. </productMenu>
  9284. <productMenu id="sip"
  9285. type="1" >
  9286. <productMenuType version="1.0.2"
  9287. type="0"
  9288. />
  9289. </productMenu>
  9290. <productMenu id="bluetoothIntercom"
  9291. type="1" >
  9292. <productMenuType version="1.0.2"
  9293. type="0"
  9294. />
  9295. </productMenu>
  9296. <productMenu id="phone"
  9297. type="2" >
  9298. </productMenu>
  9299. <productMenu id="fmradio"
  9300. type="3" >
  9301. </productMenu>
  9302. <productMenu id="deviceSetting"
  9303. type="1"
  9304. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9305. <productMenuURL version="1.3.2"
  9306. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9307. />
  9308. <productMenuURL version="1.0.2"
  9309. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9310. />
  9311. </productMenu>
  9312. <productMenu id="quickGuide"
  9313. type="1"
  9314. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9315. size="686KB" >
  9316. </productMenu>
  9317. <productMenu id="userGuide"
  9318. type="1"
  9319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9320. size="684KB" >
  9321. </productMenu>
  9322. <productMenu id="connectGuide"
  9323. type="1"
  9324. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9325. size="1.12MB" >
  9326. </productMenu>
  9327. <productID id="5612"
  9328. />
  9329. <productGroupable type="0"
  9330. />
  9331. </product>
  9332. <product id="10U_C3"
  9333. name="10U C3/C3Pro"
  9334. series="10"
  9335. latestVersion="2.0.4"
  9336. show = "1" >
  9337. <productMenu id="protocol"
  9338. type="0">
  9339. </productMenu>
  9340. <productMenu id="sip"
  9341. type="1" >
  9342. <productMenuType version="1.0.2"
  9343. type="0"
  9344. />
  9345. </productMenu>
  9346. <productMenu id="bluetoothIntercom"
  9347. type="1" >
  9348. <productMenuType version="1.0.2"
  9349. type="0"
  9350. />
  9351. </productMenu>
  9352. <productMenu id="phone"
  9353. type="2" >
  9354. </productMenu>
  9355. <productMenu id="fmradio"
  9356. type="3" >
  9357. </productMenu>
  9358. <productMenu id="deviceSetting"
  9359. type="1"
  9360. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9361. <productMenuURL version="1.3.2"
  9362. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9363. />
  9364. <productMenuURL version="1.0.2"
  9365. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9366. />
  9367. </productMenu>
  9368. <productMenu id="quickGuide"
  9369. type="1"
  9370. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9371. size="199KB" >
  9372. </productMenu>
  9373. <productMenu id="userGuide"
  9374. type="1"
  9375. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9376. size="684KB" >
  9377. </productMenu>
  9378. <productMenu id="connectGuide"
  9379. type="1"
  9380. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9381. size="1.12MB" >
  9382. </productMenu>
  9383. <productID id="5620"
  9384. />
  9385. <productGroupable type="0"
  9386. />
  9387. </product>
  9388. <product id="10U_ARAI"
  9389. name="10U Arai"
  9390. series="10"
  9391. latestVersion="2.0.4"
  9392. show = "1" >
  9393. <productMenu id="protocol"
  9394. type="0">
  9395. </productMenu>
  9396. <productMenu id="sip"
  9397. type="1" >
  9398. <productMenuType version="1.0.2"
  9399. type="0"
  9400. />
  9401. </productMenu>
  9402. <productMenu id="bluetoothIntercom"
  9403. type="1" >
  9404. <productMenuType version="1.0.2"
  9405. type="0"
  9406. />
  9407. </productMenu>
  9408. <productMenu id="phone"
  9409. type="2" >
  9410. </productMenu>
  9411. <productMenu id="fmradio"
  9412. type="3" >
  9413. </productMenu>
  9414. <productMenu id="deviceSetting"
  9415. type="1"
  9416. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9417. <productMenuURL version="1.3.2"
  9418. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9419. />
  9420. <productMenuURL version="1.0.2"
  9421. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9422. />
  9423. </productMenu>
  9424. <productMenu id="quickGuide"
  9425. type="1"
  9426. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9427. size="689KB" >
  9428. </productMenu>
  9429. <productMenu id="userGuide"
  9430. type="1"
  9431. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9432. size="684KB" >
  9433. </productMenu>
  9434. <productMenu id="connectGuide"
  9435. type="1"
  9436. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9437. size="1.12MB" >
  9438. </productMenu>
  9439. <productID id="5621"
  9440. />
  9441. <productGroupable type="0"
  9442. />
  9443. </product>
  9444. <product id="10Upad"
  9445. name="10Upad"
  9446. series="10"
  9447. latestVersion="2.0.3"
  9448. show = "1" >
  9449. <productMenu id="protocol"
  9450. type="0">
  9451. </productMenu>
  9452. <productMenu id="sip"
  9453. type="1" >
  9454. </productMenu>
  9455. <productMenu id="bluetoothIntercom"
  9456. type="1" >
  9457. </productMenu>
  9458. <productMenu id="phone"
  9459. type="2" >
  9460. </productMenu>
  9461. <productMenu id="fmradio"
  9462. type="3" >
  9463. </productMenu>
  9464. <productMenu id="deviceSetting"
  9465. type="1"
  9466. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9467. <productMenuURL version="1.0.3"
  9468. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9469. />
  9470. </productMenu>
  9471. <productMenu id="quickGuide"
  9472. type="1"
  9473. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9474. size="615KB" >
  9475. </productMenu>
  9476. <productMenu id="userGuide"
  9477. type="1"
  9478. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9479. size="0.99MB" >
  9480. </productMenu>
  9481. <productMenu id="connectGuide"
  9482. type="1"
  9483. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9484. size="1.12MB" >
  9485. </productMenu>
  9486. <productID id="6210"
  9487. />
  9488. <productGroupable type="0"
  9489. />
  9490. </product>
  9491. <product id="5S"
  9492. name="5S"
  9493. series="5"
  9494. latestVersion="2.3.1"
  9495. show = "1" >
  9496. <productMenu id="protocol"
  9497. type="3" >
  9498. </productMenu>
  9499. <productMenu id="sip"
  9500. type="1" >
  9501. </productMenu>
  9502. <productMenu id="bluetoothIntercom"
  9503. type="1" >
  9504. </productMenu>
  9505. <productMenu id="phone"
  9506. type="1" >
  9507. </productMenu>
  9508. <productMenu id="fmradio"
  9509. type="0" >
  9510. </productMenu>
  9511. <productMenu id="deviceSetting"
  9512. type="1"
  9513. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9514. </productMenu>
  9515. <productMenu id="quickGuide"
  9516. type="0"
  9517. url=""
  9518. size="934KB" >
  9519. </productMenu>
  9520. <productMenu id="userGuide"
  9521. type="1"
  9522. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9523. size="1.14MB" >
  9524. </productMenu>
  9525. <productMenu id="connectGuide"
  9526. type="1"
  9527. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9528. size="1.12MB" >
  9529. </productMenu>
  9530. <productID id="5590"
  9531. />
  9532. <productGroupable type="0"
  9533. />
  9534. </product>
  9535. <product id="5S"
  9536. name="5S"
  9537. series="5"
  9538. latestVersion="1.2"
  9539. show = "-1" >
  9540. <productMenu id="protocol"
  9541. type="0">
  9542. </productMenu>
  9543. <productMenu id="sip"
  9544. type="1" >
  9545. </productMenu>
  9546. <productMenu id="bluetoothIntercom"
  9547. type="1" >
  9548. </productMenu>
  9549. <productMenu id="phone"
  9550. type="2" >
  9551. </productMenu>
  9552. <productMenu id="fmradio"
  9553. type="3" >
  9554. </productMenu>
  9555. <productMenu id="deviceSetting"
  9556. type="1"
  9557. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9558. </productMenu>
  9559. <productMenu id="quickGuide"
  9560. type="0"
  9561. url=""
  9562. size="970KB" >
  9563. </productMenu>
  9564. <productMenu id="userGuide"
  9565. type="1"
  9566. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9567. size="1.26MB" >
  9568. </productMenu>
  9569. <productID id="5534"
  9570. />
  9571. <productGroupable type="0"
  9572. />
  9573. </product>
  9574. <product id="5S"
  9575. name="5S"
  9576. series="5"
  9577. latestVersion="3.0.1"
  9578. show = "-1" >
  9579. <productMenu id="protocol"
  9580. type="0">
  9581. </productMenu>
  9582. <productMenu id="sip"
  9583. type="1" >
  9584. </productMenu>
  9585. <productMenu id="bluetoothIntercom"
  9586. type="1" >
  9587. </productMenu>
  9588. <productMenu id="phone"
  9589. type="2" >
  9590. </productMenu>
  9591. <productMenu id="fmradio"
  9592. type="0" >
  9593. </productMenu>
  9594. <productMenu id="deviceSetting"
  9595. type="1"
  9596. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9597. </productMenu>
  9598. <productMenu id="quickGuide"
  9599. type="0"
  9600. url=""
  9601. size="970KB" >
  9602. </productMenu>
  9603. <productMenu id="userGuide"
  9604. type="1"
  9605. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9606. size="1.26MB" >
  9607. </productMenu>
  9608. <productID id="5538"
  9609. />
  9610. <productGroupable type="0"
  9611. />
  9612. </product>
  9613. <product id="3SPLUS"
  9614. name="3S PLUS"
  9615. series="3"
  9616. latestVersion="2.2"
  9617. show = "1" >
  9618. <productMenu id="protocol"
  9619. type="3" >
  9620. </productMenu>
  9621. <productMenu id="sip"
  9622. type="1" >
  9623. </productMenu>
  9624. <productMenu id="bluetoothIntercom"
  9625. type="1" >
  9626. </productMenu>
  9627. <productMenu id="deviceSetting"
  9628. type="1"
  9629. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9630. <productMenuURL version="2.2.1"
  9631. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9632. />
  9633. </productMenu>
  9634. <productMenu id="quickGuide"
  9635. type="1"
  9636. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9637. size="344KB" >
  9638. </productMenu>
  9639. <productMenu id="userGuide"
  9640. type="1"
  9641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9642. size="1.14MB" >
  9643. </productMenu>
  9644. <productMenu id="connectGuide"
  9645. type="1"
  9646. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9647. size="1.12MB" >
  9648. </productMenu>
  9649. <productID id="4023"
  9650. />
  9651. <productGroupable type="0"
  9652. />
  9653. </product>
  9654. <product id="3SPLUS"
  9655. name="3S PLUS"
  9656. series="3"
  9657. latestVersion="1.1"
  9658. show = "-1" >
  9659. <productMenu id="protocol"
  9660. type="0">
  9661. </productMenu>
  9662. <productMenu id="sip"
  9663. type="1" >
  9664. </productMenu>
  9665. <productMenu id="bluetoothIntercom"
  9666. type="1" >
  9667. </productMenu>
  9668. <productMenu id="deviceSetting"
  9669. type="1"
  9670. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9671. </productMenu>
  9672. <productMenu id="quickGuide"
  9673. type="1"
  9674. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9675. size="842KB" >
  9676. </productMenu>
  9677. <productMenu id="userGuide"
  9678. type="1"
  9679. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9680. size="1.02MB" >
  9681. </productMenu>
  9682. <productID id="6320"
  9683. />
  9684. <productGroupable type="0"
  9685. />
  9686. </product>
  9687. <product id="AConnect"
  9688. name="Alpinestars A-Connect"
  9689. series="60"
  9690. latestVersion="1.0.2"
  9691. latestVersionMesh="0.19"
  9692. latestVersionVoicePrompt="1.6"
  9693. show = "-1" >
  9694. <productMenu id="protocol"
  9695. type="2" >
  9696. </productMenu>
  9697. <productMenu id="ota"
  9698. type="2" >
  9699. <otaLanguages>
  9700. <otaLanguage
  9701. id="0"
  9702. name="English"
  9703. package="0"
  9704. />
  9705. <otaLanguage
  9706. id="0"
  9707. name="French"
  9708. package="1"
  9709. />
  9710. <otaLanguage
  9711. id="0"
  9712. name="Spanish"
  9713. package="2"
  9714. />
  9715. <otaLanguage
  9716. id="0"
  9717. name="Italian"
  9718. package="3"
  9719. />
  9720. <otaLanguage
  9721. id="0"
  9722. name="German"
  9723. package="4"
  9724. />
  9725. <otaLanguage
  9726. id="0"
  9727. name="Dutch"
  9728. package="5"
  9729. />
  9730. <otaLanguage
  9731. id="0"
  9732. name="Russian"
  9733. package="6"
  9734. />
  9735. <otaLanguage
  9736. id="0"
  9737. name="Chinese"
  9738. package="7"
  9739. />
  9740. <otaLanguage
  9741. id="0"
  9742. name="Korean"
  9743. package="8"
  9744. />
  9745. <otaLanguage
  9746. id="0"
  9747. name="Japanese"
  9748. package="9"
  9749. />
  9750. <otaLanguage
  9751. id="0"
  9752. name="Finnish"
  9753. package="10"
  9754. />
  9755. <otaLanguage
  9756. id="0"
  9757. name="Polish"
  9758. package="11"
  9759. />
  9760. </otaLanguages>
  9761. <otaPackages>
  9762. <package
  9763. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9764. size="5183988"
  9765. />
  9766. <package
  9767. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9768. size="5183988"
  9769. />
  9770. <package
  9771. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9772. size="5183988"
  9773. />
  9774. <package
  9775. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9776. size="5183988"
  9777. />
  9778. <package
  9779. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9780. size="5183988"
  9781. />
  9782. <package
  9783. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9784. size="5183988"
  9785. />
  9786. <package
  9787. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9788. size="5183988"
  9789. />
  9790. <package
  9791. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9792. size="5183988"
  9793. />
  9794. <package
  9795. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9796. size="5183988"
  9797. />
  9798. <package
  9799. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9800. size="5183988"
  9801. />
  9802. <package
  9803. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9804. size="5183988"
  9805. />
  9806. <package
  9807. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9808. size="5183988"
  9809. />
  9810. </otaPackages>
  9811. </productMenu>
  9812. <productMenu id="sip"
  9813. type="1" >
  9814. </productMenu>
  9815. <productMenu id="illusion"
  9816. type="0" >
  9817. </productMenu>
  9818. <productMenu id="meshIntercom+"
  9819. type="3"
  9820. url="2" >
  9821. </productMenu>
  9822. <productMenu id="waveIntercom"
  9823. type="1" >
  9824. </productMenu>
  9825. <productMenu id="bluetoothIntercom"
  9826. type="1"
  9827. url="2" >
  9828. </productMenu>
  9829. <productMenu id="bluetoothIntercomGrouping"
  9830. type="0" >
  9831. </productMenu>
  9832. <productMenu id="fmradio"
  9833. type="1"
  9834. url="1" >
  9835. </productMenu>
  9836. <productMenu id="phone"
  9837. type="1" >
  9838. </productMenu>
  9839. <productMenu id="music"
  9840. type="1" >
  9841. </productMenu>
  9842. <productMenu id="musicSharing"
  9843. type="0" >
  9844. </productMenu>
  9845. <productMenu id="deviceSetting"
  9846. type="1"
  9847. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  9848. </productMenu>
  9849. <productMenu id="quickGuide"
  9850. type="0"
  9851. url=""
  9852. size="1.12MB" >
  9853. </productMenu>
  9854. <productMenu id="userGuide"
  9855. type="0"
  9856. url=""
  9857. size="2.0MB" >
  9858. </productMenu>
  9859. <productMenu id="videoGuide"
  9860. type="0"
  9861. url=""
  9862. size="3.41MB" >
  9863. </productMenu>
  9864. <productMenu id="volume"
  9865. type="16" >
  9866. </productMenu>
  9867. <productMenu id="volume+"
  9868. type="2"
  9869. url="0x6004" >
  9870. </productMenu>
  9871. <productMenu id="soundMode"
  9872. type="0" >
  9873. </productMenu>
  9874. <productMenu id="battery"
  9875. type="1" >
  9876. </productMenu>
  9877. <productID id="6A82"
  9878. />
  9879. <productGroupable type="0"
  9880. />
  9881. </product>
  9882. <product id="iCon"
  9883. name="iCon"
  9884. series="50"
  9885. latestVersion="1.2"
  9886. show = "0" >
  9887. <productMenu id="protocol"
  9888. type="2" >
  9889. </productMenu>
  9890. <productMenu id="alexa"
  9891. type="0" >
  9892. </productMenu>
  9893. <productMenu id="wa"
  9894. type="0" >
  9895. </productMenu>
  9896. <productMenu id="sip"
  9897. type="1" >
  9898. </productMenu>
  9899. <productMenu id="led"
  9900. type="3" >
  9901. </productMenu>
  9902. <productMenu id="meshIntercom"
  9903. type="20" >
  9904. </productMenu>
  9905. <productMenu id="meshIntercom+"
  9906. type="3"
  9907. url="0" >
  9908. <productMenuType version="1.0.9"
  9909. type="2"
  9910. />
  9911. </productMenu>
  9912. <productMenu id="bluetoothIntercom"
  9913. type="1" >
  9914. </productMenu>
  9915. <productMenu id="phone"
  9916. type="1" >
  9917. </productMenu>
  9918. <productMenu id="music"
  9919. type="1" >
  9920. </productMenu>
  9921. <productMenu id="fmradio"
  9922. type="1" >
  9923. </productMenu>
  9924. <productMenu id="deviceSetting"
  9925. type="1"
  9926. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  9927. <productMenuURL version="1.0.9"
  9928. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9929. />
  9930. </productMenu>
  9931. <productMenu id="quickGuide"
  9932. type="1"
  9933. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  9934. size="344KB" >
  9935. </productMenu>
  9936. <productMenu id="userGuide"
  9937. type="1"
  9938. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  9939. size="3.41MB" >
  9940. </productMenu>
  9941. <productMenu id="volume"
  9942. type="11" >
  9943. </productMenu>
  9944. <productMenu id="battery"
  9945. type="1" >
  9946. </productMenu>
  9947. <productID id="3900"
  9948. />
  9949. <productGroupable type="0"
  9950. />
  9951. </product>
  9952. <product id="ICONHelmLinkSL"
  9953. name="ICON HelmLink SL"
  9954. series="50"
  9955. latestVersion="1.0"
  9956. latestVersionVoicePrompt="1.6"
  9957. show = "-1" >
  9958. <productMenu id="protocol"
  9959. type="2" >
  9960. </productMenu>
  9961. <productMenu id="alexa"
  9962. type="0" >
  9963. </productMenu>
  9964. <productMenu id="ota"
  9965. type="0" >
  9966. <otaPackages>
  9967. <package
  9968. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  9969. size="2945812"
  9970. />
  9971. </otaPackages>
  9972. </productMenu>
  9973. <productMenu id="wa"
  9974. type="0" >
  9975. </productMenu>
  9976. <productMenu id="meshIntercom"
  9977. type="30" >
  9978. </productMenu>
  9979. <productMenu id="meshIntercom+"
  9980. type="3"
  9981. url="2" >
  9982. </productMenu>
  9983. <productMenu id="waveIntercom"
  9984. type="1" >
  9985. </productMenu>
  9986. <productMenu id="phone"
  9987. type="1" >
  9988. </productMenu>
  9989. <productMenu id="music"
  9990. type="1" >
  9991. </productMenu>
  9992. <productMenu id="musicSharing"
  9993. type="0" >
  9994. </productMenu>
  9995. <productMenu id="deviceSetting"
  9996. type="1"
  9997. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  9998. </productMenu>
  9999. <productMenu id="quickGuide"
  10000. type="0"
  10001. url=""
  10002. size="1.12MB" >
  10003. </productMenu>
  10004. <productMenu id="userGuide"
  10005. type="1"
  10006. url=""
  10007. size="2.0MB" >
  10008. </productMenu>
  10009. <productMenu id="volume"
  10010. type="12" >
  10011. </productMenu>
  10012. <productMenu id="battery"
  10013. type="1" >
  10014. </productMenu>
  10015. <productID id="6842"
  10016. />
  10017. <productGroupable type="0"
  10018. />
  10019. </product>
  10020. <product id="HD50S"
  10021. name="H-D Audio 50S"
  10022. series="50"
  10023. latestVersion="1.0.1"
  10024. show = "-1" >
  10025. <productMenu id="protocol"
  10026. type="2" >
  10027. </productMenu>
  10028. <productMenu id="alexa"
  10029. type="0" >
  10030. </productMenu>
  10031. <productMenu id="ota"
  10032. type="0"
  10033. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10034. size="1150234" >
  10035. </productMenu>
  10036. <productMenu id="wa"
  10037. type="1" >
  10038. </productMenu>
  10039. <productMenu id="sip"
  10040. type="1" >
  10041. </productMenu>
  10042. <productMenu id="meshIntercom"
  10043. type="20" >
  10044. </productMenu>
  10045. <productMenu id="meshIntercom+"
  10046. type="3"
  10047. url="0" >
  10048. <productMenuType version="1.0.9"
  10049. type="2"
  10050. />
  10051. </productMenu>
  10052. <productMenu id="bluetoothIntercom"
  10053. type="1" >
  10054. </productMenu>
  10055. <productMenu id="phone"
  10056. type="1" >
  10057. </productMenu>
  10058. <productMenu id="music"
  10059. type="1" >
  10060. </productMenu>
  10061. <productMenu id="fmradio"
  10062. type="1" >
  10063. </productMenu>
  10064. <productMenu id="deviceSetting"
  10065. type="1"
  10066. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10067. <productMenuURL version="1.0.9"
  10068. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10069. />
  10070. </productMenu>
  10071. <productMenu id="quickGuide"
  10072. type="1"
  10073. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10074. size="934KB" >
  10075. </productMenu>
  10076. <productMenu id="userGuide"
  10077. type="1"
  10078. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10079. size="1.14MB" >
  10080. </productMenu>
  10081. <productMenu id="volume"
  10082. type="11" >
  10083. </productMenu>
  10084. <productMenu id="battery"
  10085. type="1" >
  10086. </productMenu>
  10087. <productID id="3156"
  10088. />
  10089. <productGroupable type="0"
  10090. />
  10091. </product>
  10092. <product id="HD50S"
  10093. name="H-D Audio 50S"
  10094. series="50"
  10095. latestVersion="2.0.2"
  10096. show = "0" >
  10097. <productMenu id="protocol"
  10098. type="2" >
  10099. </productMenu>
  10100. <productMenu id="alexa"
  10101. type="0" >
  10102. </productMenu>
  10103. <productMenu id="ota"
  10104. type="0"
  10105. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10106. size="1150234" >
  10107. </productMenu>
  10108. <productMenu id="wa"
  10109. type="1" >
  10110. </productMenu>
  10111. <productMenu id="sip"
  10112. type="1" >
  10113. </productMenu>
  10114. <productMenu id="meshIntercom"
  10115. type="20" >
  10116. </productMenu>
  10117. <productMenu id="meshIntercom+"
  10118. type="3"
  10119. url="0" >
  10120. <productMenuType version="2.0.9"
  10121. type="2"
  10122. />
  10123. </productMenu>
  10124. <productMenu id="bluetoothIntercom"
  10125. type="1" >
  10126. </productMenu>
  10127. <productMenu id="phone"
  10128. type="1" >
  10129. </productMenu>
  10130. <productMenu id="music"
  10131. type="1" >
  10132. </productMenu>
  10133. <productMenu id="fmradio"
  10134. type="1" >
  10135. </productMenu>
  10136. <productMenu id="deviceSetting"
  10137. type="1"
  10138. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10139. <productMenuURL version="2.0.9"
  10140. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10141. />
  10142. </productMenu>
  10143. <productMenu id="quickGuide"
  10144. type="1"
  10145. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10146. size="934KB" >
  10147. </productMenu>
  10148. <productMenu id="userGuide"
  10149. type="1"
  10150. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10151. size="1.14MB" >
  10152. </productMenu>
  10153. <productMenu id="volume"
  10154. type="11" >
  10155. </productMenu>
  10156. <productMenu id="battery"
  10157. type="1" >
  10158. </productMenu>
  10159. <productID id="3213"
  10160. />
  10161. <productGroupable type="0"
  10162. />
  10163. </product>
  10164. <product id="HD50C"
  10165. name="H-D Audio 50C"
  10166. series="50"
  10167. latestVersion="1.0.1"
  10168. show = "0" >
  10169. <productMenu id="protocol"
  10170. type="2" >
  10171. </productMenu>
  10172. <productMenu id="ota"
  10173. type="0" >
  10174. </productMenu>
  10175. <productMenu id="wa"
  10176. type="1" >
  10177. </productMenu>
  10178. <productMenu id="sip"
  10179. type="1" >
  10180. </productMenu>
  10181. <productMenu id="meshIntercom"
  10182. type="20" >
  10183. </productMenu>
  10184. <productMenu id="meshIntercom+"
  10185. type="3"
  10186. url="0" >
  10187. <productMenuType version="1.0.9"
  10188. type="2"
  10189. />
  10190. </productMenu>
  10191. <productMenu id="bluetoothIntercom"
  10192. type="1" >
  10193. </productMenu>
  10194. <productMenu id="phone"
  10195. type="1" >
  10196. </productMenu>
  10197. <productMenu id="music"
  10198. type="1" >
  10199. </productMenu>
  10200. <productMenu id="fmradio"
  10201. type="1" >
  10202. </productMenu>
  10203. <productMenu id="deviceSetting"
  10204. type="1"
  10205. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10206. <productMenuURL version="1.0.9"
  10207. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10208. />
  10209. </productMenu>
  10210. <productMenu id="quickGuide"
  10211. type="1"
  10212. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10213. size="344KB" >
  10214. </productMenu>
  10215. <productMenu id="userGuide"
  10216. type="1"
  10217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10218. size="3.41MB" >
  10219. </productMenu>
  10220. <productMenu id="volume"
  10221. type="11" >
  10222. </productMenu>
  10223. <productMenu id="battery"
  10224. type="1" >
  10225. </productMenu>
  10226. <productID id="3240"
  10227. />
  10228. <productGroupable type="0"
  10229. />
  10230. </product>
  10231. <product id="HD50S"
  10232. name="FURY N04"
  10233. series="Helmet"
  10234. latestVersion="1.0"
  10235. show = "0" >
  10236. <productMenu id="protocol"
  10237. type="2" >
  10238. </productMenu>
  10239. <productMenu id="alexa"
  10240. type="0" >
  10241. </productMenu>
  10242. <productMenu id="ota"
  10243. type="0" >
  10244. </productMenu>
  10245. <productMenu id="wa"
  10246. type="0" >
  10247. </productMenu>
  10248. <productMenu id="meshIntercom"
  10249. type="20" >
  10250. </productMenu>
  10251. <productMenu id="meshIntercom+"
  10252. type="3"
  10253. url="0" >
  10254. <productMenuType version="1.0.9"
  10255. type="2"
  10256. />
  10257. </productMenu>
  10258. <productMenu id="phone"
  10259. type="1" >
  10260. </productMenu>
  10261. <productMenu id="music"
  10262. type="1" >
  10263. </productMenu>
  10264. <productMenu id="fmradio"
  10265. type="1" >
  10266. </productMenu>
  10267. <productMenu id="deviceSetting"
  10268. type="1"
  10269. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10270. <productMenuURL version="1.0.9"
  10271. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10272. />
  10273. </productMenu>
  10274. <productMenu id="quickGuide"
  10275. type="1"
  10276. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10277. size="1.12MB" >
  10278. </productMenu>
  10279. <productMenu id="userGuide"
  10280. type="1"
  10281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10282. size="2.0MB" >
  10283. </productMenu>
  10284. <productMenu id="volume"
  10285. type="13" >
  10286. </productMenu>
  10287. <productMenu id="battery"
  10288. type="1" >
  10289. </productMenu>
  10290. <productID id="5553"
  10291. />
  10292. <productGroupable type="0"
  10293. />
  10294. </product>
  10295. <product id="XCOM3Pro"
  10296. name="X-COM3 Pro"
  10297. series="50"
  10298. latestVersion="1.1"
  10299. show = "0" >
  10300. <productMenu id="protocol"
  10301. type="2" >
  10302. </productMenu>
  10303. <productMenu id="alexa"
  10304. type="0" >
  10305. </productMenu>
  10306. <productMenu id="ota"
  10307. type="0" >
  10308. </productMenu>
  10309. <productMenu id="wa"
  10310. type="0" >
  10311. </productMenu>
  10312. <productMenu id="sip"
  10313. type="1" >
  10314. </productMenu>
  10315. <productMenu id="meshIntercom"
  10316. type="30" >
  10317. </productMenu>
  10318. <productMenu id="meshIntercom+"
  10319. type="3"
  10320. url="2" >
  10321. <productMenuType version="1.1"
  10322. type="2"
  10323. />
  10324. </productMenu>
  10325. <productMenu id="waveIntercom"
  10326. type="1" >
  10327. <productMenuType version="1.1"
  10328. type="0"
  10329. />
  10330. </productMenu>
  10331. <productMenu id="bluetoothIntercom"
  10332. type="1" >
  10333. </productMenu>
  10334. <productMenu id="phone"
  10335. type="1" >
  10336. </productMenu>
  10337. <productMenu id="music"
  10338. type="1" >
  10339. </productMenu>
  10340. <productMenu id="fmradio"
  10341. type="1" >
  10342. </productMenu>
  10343. <productMenu id="deviceSetting"
  10344. type="1"
  10345. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10346. <productMenuURL version="1.1"
  10347. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10348. />
  10349. </productMenu>
  10350. <productMenu id="quickGuide"
  10351. type="0"
  10352. url=""
  10353. size="344KB" >
  10354. </productMenu>
  10355. <productMenu id="userGuide"
  10356. type="1"
  10357. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10358. size="3.41MB" >
  10359. </productMenu>
  10360. <productMenu id="volume"
  10361. type="11" >
  10362. </productMenu>
  10363. <productMenu id="battery"
  10364. type="1" >
  10365. </productMenu>
  10366. <productID id="321A"
  10367. />
  10368. <productGroupable type="0"
  10369. />
  10370. </product>
  10371. <product id="XCOM3"
  10372. name="X-COM3"
  10373. series="20"
  10374. latestVersion="1.0"
  10375. show = "0" >
  10376. <productMenu id="protocol"
  10377. type="2" >
  10378. </productMenu>
  10379. <productMenu id="sip"
  10380. type="1" >
  10381. </productMenu>
  10382. <productMenu id="bluetoothIntercom"
  10383. type="1" >
  10384. </productMenu>
  10385. <productMenu id="phone"
  10386. type="1" >
  10387. </productMenu>
  10388. <productMenu id="music"
  10389. type="1" >
  10390. </productMenu>
  10391. <productMenu id="fmradio"
  10392. type="1" >
  10393. </productMenu>
  10394. <productMenu id="deviceSetting"
  10395. type="1"
  10396. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10397. </productMenu>
  10398. <productMenu id="quickGuide"
  10399. type="0"
  10400. url=""
  10401. size="934KB" >
  10402. </productMenu>
  10403. <productMenu id="userGuide"
  10404. type="1"
  10405. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10406. size="1.14MB" >
  10407. </productMenu>
  10408. <productMenu id="volume"
  10409. type="15" >
  10410. </productMenu>
  10411. <productID id="3410"
  10412. />
  10413. <productGroupable type="0"
  10414. />
  10415. </product>
  10416. <product id="X-COM2"
  10417. name="X-COM2"
  10418. series="20"
  10419. latestVersion="1.0.5"
  10420. show = "0" >
  10421. <productMenu id="protocol"
  10422. type="0">
  10423. </productMenu>
  10424. <productMenu id="sip"
  10425. type="1" >
  10426. </productMenu>
  10427. <productMenu id="bluetoothIntercom"
  10428. type="1" >
  10429. </productMenu>
  10430. <productMenu id="intercomSetting"
  10431. type="1" >
  10432. </productMenu>
  10433. <productMenu id="phone"
  10434. type="2" >
  10435. </productMenu>
  10436. <productMenu id="fmradio"
  10437. type="3" >
  10438. </productMenu>
  10439. <productMenu id="deviceSetting"
  10440. type="1"
  10441. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10442. </productMenu>
  10443. <productMenu id="quickGuide"
  10444. type="1"
  10445. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10446. size="796KB" >
  10447. </productMenu>
  10448. <productMenu id="userGuide"
  10449. type="1"
  10450. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10451. size="1.90MB" >
  10452. </productMenu>
  10453. <productID id="2030"
  10454. />
  10455. <productGroupable type="1"
  10456. />
  10457. </product>
  10458. <product id="AVAABC"
  10459. name="AVA ABC"
  10460. series="SPIDER"
  10461. latestVersion="1.1"
  10462. show = "0" >
  10463. <productMenu id="protocol"
  10464. type="2" >
  10465. </productMenu>
  10466. <productMenu id="alexa"
  10467. type="0" >
  10468. </productMenu>
  10469. <productMenu id="ota"
  10470. type="0" >
  10471. <productMenuType version="1.0"
  10472. type="0"
  10473. />
  10474. <otaPackages>
  10475. <package
  10476. url="https://api.sena.com/support/OTA/"
  10477. size="2945812"
  10478. />
  10479. </otaPackages>
  10480. </productMenu>
  10481. <productMenu id="wa"
  10482. type="0" >
  10483. </productMenu>
  10484. <productMenu id="meshIntercom"
  10485. type="30" >
  10486. <productMenuType version="1.0"
  10487. type="20"
  10488. />
  10489. </productMenu>
  10490. <productMenu id="meshIntercom+"
  10491. type="3"
  10492. url="2" >
  10493. <productMenuType version="1.0"
  10494. type="2"
  10495. />
  10496. <productMenuURL version="1.0"
  10497. url="0"
  10498. />
  10499. </productMenu>
  10500. <productMenu id="waveIntercom"
  10501. type="1" >
  10502. <productMenuType version="1.0"
  10503. type="0"
  10504. />
  10505. </productMenu>
  10506. <productMenu id="phone"
  10507. type="1" >
  10508. </productMenu>
  10509. <productMenu id="music"
  10510. type="1" >
  10511. </productMenu>
  10512. <productMenu id="musicSharing"
  10513. type="0" >
  10514. </productMenu>
  10515. <productMenu id="deviceSetting"
  10516. type="1"
  10517. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10518. <productMenuURL version="1.0"
  10519. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10520. />
  10521. </productMenu>
  10522. <productMenu id="quickGuide"
  10523. type="1"
  10524. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10525. size="1.12MB" >
  10526. </productMenu>
  10527. <productMenu id="userGuide"
  10528. type="1"
  10529. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_ABC_1.1.0_en_260508.pdf"
  10530. size="2.0MB" >
  10531. </productMenu>
  10532. <productMenu id="volume"
  10533. type="12" >
  10534. </productMenu>
  10535. <productMenu id="battery"
  10536. type="1" >
  10537. </productMenu>
  10538. <productID id="6808"
  10539. />
  10540. <productGroupable type="0"
  10541. />
  10542. </product>
  10543. <product id="ADVANCEProCOM2"
  10544. name="ADVANCE ProCOM 2"
  10545. series="Helmet"
  10546. latestVersion="0.5"
  10547. latestVersionVoicePrompt="0.3"
  10548. show = "-1" >
  10549. <productMenu id="protocol"
  10550. type="2" >
  10551. </productMenu>
  10552. <productMenu id="ota"
  10553. type="2" >
  10554. <otaLanguages>
  10555. <otaLanguage
  10556. id="0"
  10557. name="English"
  10558. package="0"
  10559. />
  10560. <otaLanguage
  10561. id="0"
  10562. name="French"
  10563. package="1"
  10564. />
  10565. <otaLanguage
  10566. id="0"
  10567. name="Spanish"
  10568. package="2"
  10569. />
  10570. <otaLanguage
  10571. id="0"
  10572. name="Italian"
  10573. package="3"
  10574. />
  10575. <otaLanguage
  10576. id="0"
  10577. name="German"
  10578. package="4"
  10579. />
  10580. <otaLanguage
  10581. id="0"
  10582. name="Dutch"
  10583. package="5"
  10584. />
  10585. <otaLanguage
  10586. id="0"
  10587. name="Russian"
  10588. package="6"
  10589. />
  10590. <otaLanguage
  10591. id="0"
  10592. name="Chinese"
  10593. package="7"
  10594. />
  10595. <otaLanguage
  10596. id="0"
  10597. name="Korean"
  10598. package="8"
  10599. />
  10600. <otaLanguage
  10601. id="0"
  10602. name="Japanese"
  10603. package="9"
  10604. />
  10605. <otaLanguage
  10606. id="0"
  10607. name="Finnish"
  10608. package="10"
  10609. />
  10610. <otaLanguage
  10611. id="0"
  10612. name="Polish"
  10613. package="11"
  10614. />
  10615. </otaLanguages>
  10616. <otaPackages>
  10617. <package
  10618. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10619. size="5183988"
  10620. />
  10621. <package
  10622. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10623. size="5183988"
  10624. />
  10625. <package
  10626. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10627. size="5183988"
  10628. />
  10629. <package
  10630. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10631. size="5183988"
  10632. />
  10633. <package
  10634. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10635. size="5183988"
  10636. />
  10637. <package
  10638. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10639. size="5183988"
  10640. />
  10641. <package
  10642. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10643. size="5183988"
  10644. />
  10645. <package
  10646. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10647. size="5183988"
  10648. />
  10649. <package
  10650. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10651. size="5183988"
  10652. />
  10653. <package
  10654. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10655. size="5183988"
  10656. />
  10657. <package
  10658. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10659. size="5183988"
  10660. />
  10661. <package
  10662. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10663. size="5183988"
  10664. />
  10665. </otaPackages>
  10666. </productMenu>
  10667. <productMenu id="wa"
  10668. type="0" >
  10669. </productMenu>
  10670. <productMenu id="meshIntercom"
  10671. type="30" >
  10672. </productMenu>
  10673. <productMenu id="meshIntercom+"
  10674. type="3"
  10675. url="2" >
  10676. </productMenu>
  10677. <productMenu id="waveIntercom"
  10678. type="1" >
  10679. </productMenu>
  10680. <productMenu id="fmradio"
  10681. type="1" >
  10682. </productMenu>
  10683. <productMenu id="phone"
  10684. type="0" >
  10685. </productMenu>
  10686. <productMenu id="music"
  10687. type="1" >
  10688. </productMenu>
  10689. <productMenu id="musicSharing"
  10690. type="0" >
  10691. </productMenu>
  10692. <productMenu id="deviceSetting"
  10693. type="1"
  10694. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10695. </productMenu>
  10696. <productMenu id="quickGuide"
  10697. type="0"
  10698. url=""
  10699. size="1.12MB" >
  10700. </productMenu>
  10701. <productMenu id="userGuide"
  10702. type="1"
  10703. url=""
  10704. size="2.0MB" >
  10705. </productMenu>
  10706. <productMenu id="videoGuide"
  10707. type="0"
  10708. url=""
  10709. size="3.41MB" >
  10710. </productMenu>
  10711. <productMenu id="connectGuide"
  10712. type="1"
  10713. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10714. size="1.12MB" >
  10715. </productMenu>
  10716. <productMenu id="volume"
  10717. type="16" >
  10718. </productMenu>
  10719. <productMenu id="battery"
  10720. type="1" >
  10721. </productMenu>
  10722. <productID id="6A85"
  10723. />
  10724. <productGroupable type="0"
  10725. />
  10726. </product>
  10727. <product id="Triumph_50S"
  10728. name="Triumph 50S"
  10729. series="50"
  10730. latestVersion="1.5"
  10731. show = "0" >
  10732. <productMenu id="protocol"
  10733. type="2" >
  10734. </productMenu>
  10735. <productMenu id="alexa"
  10736. type="0" >
  10737. </productMenu>
  10738. <productMenu id="ota"
  10739. type="0"
  10740. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10741. size="1150234" >
  10742. </productMenu>
  10743. <productMenu id="wa"
  10744. type="1" >
  10745. </productMenu>
  10746. <productMenu id="sip"
  10747. type="1" >
  10748. </productMenu>
  10749. <productMenu id="meshIntercom"
  10750. type="20" >
  10751. </productMenu>
  10752. <productMenu id="bluetoothIntercom"
  10753. type="1" >
  10754. </productMenu>
  10755. <productMenu id="meshIntercom+"
  10756. type="3"
  10757. url="2" >
  10758. <productMenuType version="1.2.9"
  10759. type="2"
  10760. />
  10761. <productMenuURL version="1.2.9"
  10762. url="0"
  10763. />
  10764. </productMenu>
  10765. <productMenu id="waveIntercom"
  10766. type="1" >
  10767. <productMenuType version="1.2.9"
  10768. type="0"
  10769. />
  10770. </productMenu>
  10771. <productMenu id="phone"
  10772. type="1" >
  10773. </productMenu>
  10774. <productMenu id="music"
  10775. type="1" >
  10776. </productMenu>
  10777. <productMenu id="fmradio"
  10778. type="1" >
  10779. </productMenu>
  10780. <productMenu id="deviceSetting"
  10781. type="1"
  10782. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10783. <productMenuURL version="1.2.9"
  10784. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10785. />
  10786. <productMenuURL version="1.0"
  10787. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10788. />
  10789. </productMenu>
  10790. <productMenu id="quickGuide"
  10791. type="1"
  10792. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10793. size="934KB" >
  10794. </productMenu>
  10795. <productMenu id="userGuide"
  10796. type="1"
  10797. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10798. size="1.14MB" >
  10799. </productMenu>
  10800. <productMenu id="volume"
  10801. type="11" >
  10802. </productMenu>
  10803. <productMenu id="battery"
  10804. type="1" >
  10805. </productMenu>
  10806. <productID id="3264"
  10807. />
  10808. <productGroupable type="0"
  10809. />
  10810. </product>
  10811. <product id="RE50S"
  10812. name="RE 50S"
  10813. series="50"
  10814. latestVersion="2.7"
  10815. show = "0" >
  10816. <productMenu id="protocol"
  10817. type="2" >
  10818. </productMenu>
  10819. <productMenu id="alexa"
  10820. type="0" >
  10821. </productMenu>
  10822. <productMenu id="ota"
  10823. type="0"
  10824. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10825. size="1150234" >
  10826. </productMenu>
  10827. <productMenu id="wa"
  10828. type="1" >
  10829. </productMenu>
  10830. <productMenu id="sip"
  10831. type="1" >
  10832. </productMenu>
  10833. <productMenu id="meshIntercom"
  10834. type="30" >
  10835. </productMenu>
  10836. <productMenu id="meshIntercom+"
  10837. type="3"
  10838. url="2" >
  10839. <productMenuType version="2.5"
  10840. type="2"
  10841. />
  10842. </productMenu>
  10843. <productMenu id="waveIntercom"
  10844. type="1" >
  10845. <productMenuType version="2.5"
  10846. type="0"
  10847. />
  10848. </productMenu>
  10849. <productMenu id="bluetoothIntercom"
  10850. type="1" >
  10851. </productMenu>
  10852. <productMenu id="phone"
  10853. type="1" >
  10854. </productMenu>
  10855. <productMenu id="music"
  10856. type="1" >
  10857. </productMenu>
  10858. <productMenu id="fmradio"
  10859. type="1" >
  10860. </productMenu>
  10861. <productMenu id="deviceSetting"
  10862. type="1"
  10863. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10864. <productMenuURL version="2.5.9"
  10865. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  10866. />
  10867. </productMenu>
  10868. <productMenu id="quickGuide"
  10869. type="1"
  10870. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  10871. size="934KB" >
  10872. </productMenu>
  10873. <productMenu id="userGuide"
  10874. type="1"
  10875. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  10876. size="1.14MB" >
  10877. </productMenu>
  10878. <productMenu id="videoGuide"
  10879. type="0"
  10880. url=""
  10881. size="3.41MB" >
  10882. </productMenu>
  10883. <productMenu id="volume"
  10884. type="11" >
  10885. </productMenu>
  10886. <productMenu id="battery"
  10887. type="1" >
  10888. </productMenu>
  10889. <productID id="321C"
  10890. />
  10891. <productGroupable type="0"
  10892. />
  10893. </product>
  10894. <product id="BMW_HELMET_II_U1"
  10895. name="BMW HELMET II U1"
  10896. series="50"
  10897. latestVersion="1.0"
  10898. show = "0" >
  10899. <productMenu id="protocol"
  10900. type="2" >
  10901. </productMenu>
  10902. <productMenu id="alexa"
  10903. type="0" >
  10904. </productMenu>
  10905. <productMenu id="sip"
  10906. type="1" >
  10907. </productMenu>
  10908. <productMenu id="meshIntercom"
  10909. type="20" >
  10910. </productMenu>
  10911. <productMenu id="bluetoothIntercom"
  10912. type="1" >
  10913. </productMenu>
  10914. <productMenu id="bluetoothIntercom2"
  10915. type="1" >
  10916. </productMenu>
  10917. <productMenu id="phone"
  10918. type="1" >
  10919. </productMenu>
  10920. <productMenu id="music"
  10921. type="1" >
  10922. </productMenu>
  10923. <productMenu id="fmradio"
  10924. type="1" >
  10925. </productMenu>
  10926. <productMenu id="deviceSetting"
  10927. type="1"
  10928. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  10929. </productMenu>
  10930. <productMenu id="quickGuide"
  10931. type="1"
  10932. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  10933. size="934KB" >
  10934. </productMenu>
  10935. <productMenu id="userGuide"
  10936. type="1"
  10937. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  10938. size="1.14MB" >
  10939. </productMenu>
  10940. <productMenu id="volume"
  10941. type="11" >
  10942. </productMenu>
  10943. <productMenu id="battery"
  10944. type="1" >
  10945. </productMenu>
  10946. <productID id="3260"
  10947. />
  10948. <productGroupable type="0"
  10949. />
  10950. </product>
  10951. <product id="OUTRUSHR"
  10952. name="CX935"
  10953. series="Helmet"
  10954. latestVersion="2.1"
  10955. show = "-1" >
  10956. <productMenu id="protocol"
  10957. type="3">
  10958. </productMenu>
  10959. <productMenu id="sip"
  10960. type="1" >
  10961. </productMenu>
  10962. <productMenu id="bluetoothIntercom"
  10963. type="1" >
  10964. </productMenu>
  10965. <productMenu id="phone"
  10966. type="1" >
  10967. </productMenu>
  10968. <productMenu id="fmradio"
  10969. type="0" >
  10970. </productMenu>
  10971. <productMenu id="deviceSetting"
  10972. type="1"
  10973. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  10974. </productMenu>
  10975. <productMenu id="userGuide"
  10976. type="1"
  10977. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  10978. size="660KB" >
  10979. </productMenu>
  10980. <productID id="5446"
  10981. />
  10982. <productGroupable type="0"
  10983. />
  10984. </product>
  10985. <product id="LSE_01"
  10986. name="LSE-01"
  10987. series="SF"
  10988. latestVersion="1.2.3"
  10989. show = "0" >
  10990. <productMenu id="protocol"
  10991. type="1"
  10992. url="3">
  10993. </productMenu>
  10994. <productMenu id="sip"
  10995. type="1" >
  10996. </productMenu>
  10997. <productMenu id="bluetoothIntercom"
  10998. type="1" >
  10999. </productMenu>
  11000. <productMenu id="phone"
  11001. type="1" >
  11002. </productMenu>
  11003. <productMenu id="music"
  11004. type="1" >
  11005. </productMenu>
  11006. <productMenu id="fmradio"
  11007. type="1" >
  11008. </productMenu>
  11009. <productMenu id="deviceSetting"
  11010. type="1"
  11011. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11012. <productMenuURL version="1.1"
  11013. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11014. />
  11015. <productMenuURL version="1.0"
  11016. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11017. />
  11018. </productMenu>
  11019. <productMenu id="quickGuide"
  11020. type="1"
  11021. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11022. size="607KB" >
  11023. </productMenu>
  11024. <productMenu id="userGuide"
  11025. type="1"
  11026. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11027. size="1.91MB" >
  11028. </productMenu>
  11029. <productMenu id="volume"
  11030. type="4" >
  11031. </productMenu>
  11032. <productID id="5416"
  11033. />
  11034. <productGroupable type="0"
  11035. />
  11036. </product>
  11037. <product id="AGV_ARK"
  11038. name="AGV ARK"
  11039. series="SF"
  11040. latestVersion="1.0.3"
  11041. show = "0" >
  11042. <productMenu id="protocol"
  11043. type="1"
  11044. url="3">
  11045. </productMenu>
  11046. <productMenu id="sip"
  11047. type="1" >
  11048. </productMenu>
  11049. <productMenu id="bluetoothIntercom"
  11050. type="1" >
  11051. </productMenu>
  11052. <productMenu id="phone"
  11053. type="1" >
  11054. </productMenu>
  11055. <productMenu id="music"
  11056. type="1" >
  11057. </productMenu>
  11058. <productMenu id="fmradio"
  11059. type="1" >
  11060. </productMenu>
  11061. <productMenu id="deviceSetting"
  11062. type="1"
  11063. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11064. </productMenu>
  11065. <productMenu id="quickGuide"
  11066. type="1"
  11067. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11068. size="607KB" >
  11069. </productMenu>
  11070. <productMenu id="userGuide"
  11071. type="1"
  11072. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11073. size="1.91MB" >
  11074. </productMenu>
  11075. <productMenu id="volume"
  11076. type="4" >
  11077. </productMenu>
  11078. <productID id="5420"
  11079. />
  11080. <productGroupable type="0"
  11081. />
  11082. </product>
  11083. <product id="KLIM_KRIOS"
  11084. name="KLIM Krios"
  11085. series="10"
  11086. latestVersion="1.1.2"
  11087. show = "0" >
  11088. <productMenu id="protocol"
  11089. type="0">
  11090. </productMenu>
  11091. <productMenu id="sip"
  11092. type="1" >
  11093. </productMenu>
  11094. <productMenu id="bluetoothIntercom"
  11095. type="1" >
  11096. </productMenu>
  11097. <productMenu id="phone"
  11098. type="2" >
  11099. </productMenu>
  11100. <productMenu id="fmradio"
  11101. type="3" >
  11102. </productMenu>
  11103. <productMenu id="deviceSetting"
  11104. type="1"
  11105. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11106. <productMenuURL version="1.0"
  11107. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11108. />
  11109. </productMenu>
  11110. <productMenu id="quickGuide"
  11111. type="1"
  11112. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11113. size="649KB" >
  11114. </productMenu>
  11115. <productMenu id="userGuide"
  11116. type="1"
  11117. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11118. size="1.43MB" >
  11119. </productMenu>
  11120. <productID id="5910"
  11121. />
  11122. <productGroupable type="0"
  11123. />
  11124. </product>
  11125. <product id="POLARIS_SLINGSHOT"
  11126. name="Polaris Slingshot"
  11127. series="10"
  11128. latestVersion="1.1.2"
  11129. show = "0" >
  11130. <productMenu id="protocol"
  11131. type="0">
  11132. </productMenu>
  11133. <productMenu id="sip"
  11134. type="1" >
  11135. </productMenu>
  11136. <productMenu id="bluetoothIntercom"
  11137. type="1" >
  11138. </productMenu>
  11139. <productMenu id="phone"
  11140. type="2" >
  11141. </productMenu>
  11142. <productMenu id="fmradio"
  11143. type="3" >
  11144. </productMenu>
  11145. <productMenu id="deviceSetting"
  11146. type="1"
  11147. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11148. <productMenuURL version="1.0"
  11149. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11150. />
  11151. </productMenu>
  11152. <productMenu id="quickGuide"
  11153. type="1"
  11154. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11155. size="689KB" >
  11156. </productMenu>
  11157. <productMenu id="userGuide"
  11158. type="1"
  11159. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11160. size="1.43MB" >
  11161. </productMenu>
  11162. <productID id="5920"
  11163. />
  11164. <productGroupable type="0"
  11165. />
  11166. </product>
  11167. <product id="DWO6"
  11168. name="SEDICI DWO6-PRO"
  11169. series="10"
  11170. latestVersion="1.0.2"
  11171. show = "0" >
  11172. <productMenu id="protocol"
  11173. type="0">
  11174. </productMenu>
  11175. <productMenu id="sip"
  11176. type="1" >
  11177. </productMenu>
  11178. <productMenu id="bluetoothIntercom"
  11179. type="1" >
  11180. </productMenu>
  11181. <productMenu id="phone"
  11182. type="2" >
  11183. </productMenu>
  11184. <productMenu id="fmradio"
  11185. type="3" >
  11186. </productMenu>
  11187. <productMenu id="deviceSetting"
  11188. type="1"
  11189. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11190. </productMenu>
  11191. <productMenu id="quickGuide"
  11192. type="1"
  11193. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11194. size="529KB" >
  11195. </productMenu>
  11196. <productMenu id="userGuide"
  11197. type="1"
  11198. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11199. size="4.09MB" >
  11200. </productMenu>
  11201. <productID id="6112"
  11202. />
  11203. <productGroupable type="0"
  11204. />
  11205. </product>
  11206. <product id="DWO6A"
  11207. name="SEDICI DWO-6"
  11208. series="10"
  11209. latestVersion="1.0.2"
  11210. show = "0" >
  11211. <productMenu id="protocol"
  11212. type="0">
  11213. </productMenu>
  11214. <productMenu id="sip"
  11215. type="1" >
  11216. </productMenu>
  11217. <productMenu id="bluetoothIntercom"
  11218. type="1" >
  11219. </productMenu>
  11220. <productMenu id="phone"
  11221. type="2" >
  11222. </productMenu>
  11223. <productMenu id="fmradio"
  11224. type="3" >
  11225. </productMenu>
  11226. <productMenu id="deviceSetting"
  11227. type="1"
  11228. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11229. </productMenu>
  11230. <productMenu id="quickGuide"
  11231. type="1"
  11232. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11233. size="522KB" >
  11234. </productMenu>
  11235. <productMenu id="userGuide"
  11236. type="1"
  11237. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11238. size="2.71MB" >
  11239. </productMenu>
  11240. <productID id="6114"
  11241. />
  11242. <productGroupable type="0"
  11243. />
  11244. </product>
  11245. <product id="3SPLUS"
  11246. name="ZILL"
  11247. series="3"
  11248. latestVersion="1.0.4"
  11249. show = "0" >
  11250. <productMenu id="protocol"
  11251. type="0">
  11252. </productMenu>
  11253. <productMenu id="sip"
  11254. type="1" >
  11255. </productMenu>
  11256. <productMenu id="bluetoothIntercom"
  11257. type="1" >
  11258. </productMenu>
  11259. <productMenu id="deviceSetting"
  11260. type="1"
  11261. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11262. </productMenu>
  11263. <productMenu id="quickGuide"
  11264. type="1"
  11265. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11266. size="842KB" >
  11267. </productMenu>
  11268. <productMenu id="userGuide"
  11269. type="1"
  11270. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11271. size="1.02MB" >
  11272. </productMenu>
  11273. <productID id="6335"
  11274. />
  11275. <productGroupable type="0"
  11276. />
  11277. </product>
  11278. <product id="HD50S"
  11279. name="Boom! Audio 30K"
  11280. series="30"
  11281. latestVersion="3.4"
  11282. show = "0" >
  11283. <productMenu id="protocol"
  11284. type="1"
  11285. url="0">
  11286. </productMenu>
  11287. <productMenu id="wa"
  11288. type="0" >
  11289. </productMenu>
  11290. <productMenu id="sip"
  11291. type="1" >
  11292. </productMenu>
  11293. <productMenu id="meshIntercom"
  11294. type="20" >
  11295. <productMenuType version="2.9.9"
  11296. type="10"
  11297. />
  11298. </productMenu>
  11299. <productMenu id="bluetoothIntercom"
  11300. type="1" >
  11301. </productMenu>
  11302. <productMenu id="phone"
  11303. type="1" >
  11304. </productMenu>
  11305. <productMenu id="music"
  11306. type="1" >
  11307. </productMenu>
  11308. <productMenu id="fmradio"
  11309. type="1" >
  11310. </productMenu>
  11311. <productMenu id="deviceSetting"
  11312. type="1"
  11313. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11314. <productMenuURL version="3.2"
  11315. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11316. />
  11317. <productMenuURL version="3.0"
  11318. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11319. />
  11320. <productMenuURL version="2.2"
  11321. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11322. />
  11323. </productMenu>
  11324. <productMenu id="quickGuide"
  11325. type="1"
  11326. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11327. size="1.06MB" >
  11328. </productMenu>
  11329. <productMenu id="userGuide"
  11330. type="1"
  11331. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11332. size="3.15MB" >
  11333. </productMenu>
  11334. <productMenu id="volume"
  11335. type="1" >
  11336. </productMenu>
  11337. <productID id="3112"
  11338. />
  11339. <productGroupable type="0"
  11340. />
  11341. </product>
  11342. <product id="HD50S"
  11343. name="Boom! Audio N02"
  11344. series="30"
  11345. latestVersion="3.1"
  11346. show = "0" >
  11347. <productMenu id="protocol"
  11348. type="1"
  11349. url="0">
  11350. </productMenu>
  11351. <productMenu id="wa"
  11352. type="2" >
  11353. </productMenu>
  11354. <productMenu id="sip"
  11355. type="1" >
  11356. </productMenu>
  11357. <productMenu id="meshIntercom"
  11358. type="20" >
  11359. <productMenuType version="2.9.9"
  11360. type="10"
  11361. />
  11362. </productMenu>
  11363. <productMenu id="bluetoothIntercom"
  11364. type="1" >
  11365. </productMenu>
  11366. <productMenu id="phone"
  11367. type="1" >
  11368. </productMenu>
  11369. <productMenu id="music"
  11370. type="1" >
  11371. </productMenu>
  11372. <productMenu id="fmradio"
  11373. type="1" >
  11374. </productMenu>
  11375. <productMenu id="deviceSetting"
  11376. type="1"
  11377. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11378. <productMenuURL version="2.2"
  11379. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11380. />
  11381. </productMenu>
  11382. <productMenu id="quickGuide"
  11383. type="1"
  11384. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11385. size="1.06MB" >
  11386. </productMenu>
  11387. <productMenu id="userGuide"
  11388. type="1"
  11389. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11390. size="3.15MB" >
  11391. </productMenu>
  11392. <productMenu id="volume"
  11393. type="2" >
  11394. </productMenu>
  11395. <productID id="3114"
  11396. />
  11397. <productGroupable type="0"
  11398. />
  11399. </product>
  11400. <product id="HD50S"
  11401. name="Boom Audio 20S"
  11402. series="50"
  11403. latestVersion="2.5.2"
  11404. show = "0" >
  11405. <productMenu id="protocol"
  11406. type="0">
  11407. </productMenu>
  11408. <productMenu id="sip"
  11409. type="1" >
  11410. <productMenuType version="1.0"
  11411. type="0"
  11412. />
  11413. </productMenu>
  11414. <productMenu id="bluetoothIntercom"
  11415. type="1" >
  11416. <productMenuType version="1.0"
  11417. type="0"
  11418. />
  11419. </productMenu>
  11420. <productMenu id="intercomSetting"
  11421. type="1" >
  11422. </productMenu>
  11423. <productMenu id="phone"
  11424. type="2" >
  11425. </productMenu>
  11426. <productMenu id="fmradio"
  11427. type="3" >
  11428. </productMenu>
  11429. <productMenu id="deviceSetting"
  11430. type="1"
  11431. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11432. <productMenuURL version="2.4"
  11433. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11434. />
  11435. <productMenuURL version="1.5"
  11436. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11437. />
  11438. <productMenuURL version="1.4.1"
  11439. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11440. />
  11441. <productMenuURL version="1.1"
  11442. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11443. />
  11444. <productMenuURL version="1.0"
  11445. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11446. />
  11447. </productMenu>
  11448. <productMenu id="quickGuide"
  11449. type="1"
  11450. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11451. size="264KB" >
  11452. </productMenu>
  11453. <productMenu id="userGuide"
  11454. type="1"
  11455. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11456. size="3.09MB" >
  11457. </productMenu>
  11458. <productMenu id="connectGuide"
  11459. type="1"
  11460. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11461. size="1.12MB" >
  11462. </productMenu>
  11463. <productID id="4210"
  11464. />
  11465. <productProductKey key="11"
  11466. />
  11467. <productID id="4230"
  11468. />
  11469. <productProductKey key="11"
  11470. />
  11471. <productGroupable type="1"
  11472. />
  11473. </product>
  11474. <product id="HD50S"
  11475. name="Boom Audio 20S EVO"
  11476. series="50"
  11477. latestVersion="2.5.2"
  11478. show = "0" >
  11479. <productMenu id="protocol"
  11480. type="0">
  11481. </productMenu>
  11482. <productMenu id="sip"
  11483. type="1" >
  11484. <productMenuType version="1.0"
  11485. type="0"
  11486. />
  11487. </productMenu>
  11488. <productMenu id="bluetoothIntercom"
  11489. type="1" >
  11490. <productMenuType version="1.0"
  11491. type="0"
  11492. />
  11493. </productMenu>
  11494. <productMenu id="intercomSetting"
  11495. type="1" >
  11496. </productMenu>
  11497. <productMenu id="phone"
  11498. type="2" >
  11499. </productMenu>
  11500. <productMenu id="fmradio"
  11501. type="3" >
  11502. </productMenu>
  11503. <productMenu id="deviceSetting"
  11504. type="1"
  11505. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11506. <productMenuURL version="2.4"
  11507. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11508. />
  11509. <productMenuURL version="1.5"
  11510. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11511. />
  11512. <productMenuURL version="1.4.1"
  11513. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11514. />
  11515. <productMenuURL version="1.1"
  11516. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11517. />
  11518. <productMenuURL version="1.0"
  11519. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11520. />
  11521. </productMenu>
  11522. <productMenu id="quickGuide"
  11523. type="1"
  11524. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11525. size="321KB" >
  11526. </productMenu>
  11527. <productMenu id="userGuide"
  11528. type="1"
  11529. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11530. size="2.46MB" >
  11531. </productMenu>
  11532. <productID id="4230"
  11533. />
  11534. <productProductKey key="27"
  11535. />
  11536. <productGroupable type="1"
  11537. />
  11538. </product>
  11539. <product id="HD50S"
  11540. name="Boom! Audio 10S"
  11541. series="50"
  11542. latestVersion="1.1.3"
  11543. show = "0" >
  11544. <productMenu id="protocol"
  11545. type="0">
  11546. </productMenu>
  11547. <productMenu id="sip"
  11548. type="1" >
  11549. </productMenu>
  11550. <productMenu id="bluetoothIntercom"
  11551. type="1" >
  11552. </productMenu>
  11553. <productMenu id="phone"
  11554. type="2" >
  11555. </productMenu>
  11556. <productMenu id="fmradio"
  11557. type="3" >
  11558. </productMenu>
  11559. <productMenu id="deviceSetting"
  11560. type="1"
  11561. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11562. </productMenu>
  11563. <productMenu id="quickGuide"
  11564. type="1"
  11565. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11566. size="538KB" >
  11567. </productMenu>
  11568. <productMenu id="userGuide"
  11569. type="1"
  11570. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11571. size="1.55MB" >
  11572. </productMenu>
  11573. <productID id="5532"
  11574. />
  11575. <productGroupable type="0"
  11576. />
  11577. </product>
  11578. <product id="HD50S"
  11579. name="Boom! Audio N01 10R"
  11580. series="50"
  11581. latestVersion="1.1.3"
  11582. show = "0" >
  11583. <productMenu id="protocol"
  11584. type="0">
  11585. </productMenu>
  11586. <productMenu id="sip"
  11587. type="1" >
  11588. </productMenu>
  11589. <productMenu id="bluetoothIntercom"
  11590. type="1" >
  11591. </productMenu>
  11592. <productMenu id="phone"
  11593. type="2" >
  11594. </productMenu>
  11595. <productMenu id="fmradio"
  11596. type="3" >
  11597. </productMenu>
  11598. <productMenu id="deviceSetting"
  11599. type="1"
  11600. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11601. </productMenu>
  11602. <productMenu id="quickGuide"
  11603. type="1"
  11604. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11605. size="766KB" >
  11606. </productMenu>
  11607. <productMenu id="userGuide"
  11608. type="1"
  11609. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11610. size="1.45MB" >
  11611. </productMenu>
  11612. <productID id="5522"
  11613. />
  11614. <productGroupable type="0"
  11615. />
  11616. </product>
  11617. <product id="HD50S"
  11618. name="OUTRUSH-R N03"
  11619. series="50"
  11620. latestVersion="1.2.1"
  11621. show = "-1" >
  11622. <productMenu id="protocol"
  11623. type="0">
  11624. </productMenu>
  11625. <productMenu id="sip"
  11626. type="1" >
  11627. </productMenu>
  11628. <productMenu id="bluetoothIntercom"
  11629. type="1" >
  11630. </productMenu>
  11631. <productMenu id="phone"
  11632. type="2" >
  11633. </productMenu>
  11634. <productMenu id="fmradio"
  11635. type="3" >
  11636. </productMenu>
  11637. <productMenu id="deviceSetting"
  11638. type="1"
  11639. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11640. </productMenu>
  11641. <productMenu id="userGuide"
  11642. type="1"
  11643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11644. size="660KB" >
  11645. </productMenu>
  11646. <productID id="5434"
  11647. />
  11648. <productGroupable type="0"
  11649. />
  11650. </product>
  11651. <product id="HD50S"
  11652. name="OUTRUSH-R N03"
  11653. series="50"
  11654. latestVersion="2.0"
  11655. show = "0" >
  11656. <productMenu id="protocol"
  11657. type="3" >
  11658. </productMenu>
  11659. <productMenu id="sip"
  11660. type="1" >
  11661. </productMenu>
  11662. <productMenu id="bluetoothIntercom"
  11663. type="1" >
  11664. </productMenu>
  11665. <productMenu id="phone"
  11666. type="1" >
  11667. </productMenu>
  11668. <productMenu id="fmradio"
  11669. type="1" >
  11670. </productMenu>
  11671. <productMenu id="deviceSetting"
  11672. type="1"
  11673. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11674. </productMenu>
  11675. <productMenu id="userGuide"
  11676. type="1"
  11677. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11678. size="1.14MB" >
  11679. </productMenu>
  11680. <productID id="5441"
  11681. />
  11682. <productGroupable type="0"
  11683. />
  11684. </product>
  11685. <product id="5R"
  11686. name="5R"
  11687. series="5"
  11688. latestVersion="1.0.1"
  11689. show = "1" >
  11690. <productMenu id="protocol"
  11691. type="3" >
  11692. </productMenu>
  11693. <productMenu id="sip"
  11694. type="1" >
  11695. </productMenu>
  11696. <productMenu id="bluetoothIntercom"
  11697. type="1" >
  11698. </productMenu>
  11699. <productMenu id="phone"
  11700. type="1" >
  11701. </productMenu>
  11702. <productMenu id="fmradio"
  11703. type="1" >
  11704. </productMenu>
  11705. <productMenu id="deviceSetting"
  11706. type="1"
  11707. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11708. </productMenu>
  11709. <productMenu id="quickGuide"
  11710. type="0"
  11711. url=""
  11712. size="934KB" >
  11713. </productMenu>
  11714. <productMenu id="userGuide"
  11715. type="1"
  11716. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11717. size="1.14MB" >
  11718. </productMenu>
  11719. <productMenu id="connectGuide"
  11720. type="1"
  11721. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11722. size="1.12MB" >
  11723. </productMenu>
  11724. <productID id="5591"
  11725. />
  11726. <productGroupable type="0"
  11727. />
  11728. </product>
  11729. <product id="5R"
  11730. name="5R LITE"
  11731. series="5"
  11732. latestVersion="1.0.1"
  11733. show = "1" >
  11734. <productMenu id="protocol"
  11735. type="3" >
  11736. </productMenu>
  11737. <productMenu id="sip"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="bluetoothIntercom"
  11741. type="1" >
  11742. </productMenu>
  11743. <productMenu id="phone"
  11744. type="1" >
  11745. </productMenu>
  11746. <productMenu id="fmradio"
  11747. type="1" >
  11748. </productMenu>
  11749. <productMenu id="deviceSetting"
  11750. type="1"
  11751. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11752. </productMenu>
  11753. <productMenu id="quickGuide"
  11754. type="0"
  11755. url=""
  11756. size="934KB" >
  11757. </productMenu>
  11758. <productMenu id="userGuide"
  11759. type="1"
  11760. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11761. size="1.14MB" >
  11762. </productMenu>
  11763. <productMenu id="connectGuide"
  11764. type="1"
  11765. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11766. size="1.12MB" >
  11767. </productMenu>
  11768. <productID id="5592"
  11769. />
  11770. <productGroupable type="0"
  11771. />
  11772. </product>
  11773. <product id="50RLE"
  11774. name="50R LE"
  11775. series="50"
  11776. latestVersion="1.1"
  11777. show = "0" >
  11778. <productMenu id="protocol"
  11779. type="2" >
  11780. </productMenu>
  11781. <productMenu id="alexa"
  11782. type="0" >
  11783. </productMenu>
  11784. <productMenu id="sip"
  11785. type="1" >
  11786. </productMenu>
  11787. <productMenu id="meshIntercom"
  11788. type="30" >
  11789. </productMenu>
  11790. <productMenu id="meshIntercom+"
  11791. type="3"
  11792. url="2" >
  11793. <productMenuType version="1.0.9"
  11794. type="2"
  11795. />
  11796. </productMenu>
  11797. <productMenu id="waveIntercom"
  11798. type="1" >
  11799. <productMenuType version="1.0.9"
  11800. type="0"
  11801. />
  11802. </productMenu>
  11803. <productMenu id="bluetoothIntercom"
  11804. type="1" >
  11805. </productMenu>
  11806. <productMenu id="phone"
  11807. type="1" >
  11808. </productMenu>
  11809. <productMenu id="music"
  11810. type="1" >
  11811. </productMenu>
  11812. <productMenu id="fmradio"
  11813. type="0" >
  11814. </productMenu>
  11815. <productMenu id="deviceSetting"
  11816. type="1"
  11817. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11818. <productMenuURL version="1.0.9"
  11819. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11820. />
  11821. </productMenu>
  11822. <productMenu id="quickGuide"
  11823. type="0"
  11824. url=""
  11825. size="344KB" >
  11826. </productMenu>
  11827. <productMenu id="userGuide"
  11828. type="0"
  11829. url=""
  11830. size="3.41MB" >
  11831. </productMenu>
  11832. <productMenu id="volume"
  11833. type="11" >
  11834. </productMenu>
  11835. <productMenu id="battery"
  11836. type="1" >
  11837. </productMenu>
  11838. <productID id="3223"
  11839. />
  11840. <productGroupable type="0"
  11841. />
  11842. </product>
  11843. <product id="5RLOUIS"
  11844. name="5R LOUIS EDITION"
  11845. series="5"
  11846. latestVersion="1.0"
  11847. show = "-1" >
  11848. <productMenu id="protocol"
  11849. type="3" >
  11850. </productMenu>
  11851. <productMenu id="sip"
  11852. type="1" >
  11853. </productMenu>
  11854. <productMenu id="bluetoothIntercom"
  11855. type="1" >
  11856. </productMenu>
  11857. <productMenu id="phone"
  11858. type="1" >
  11859. </productMenu>
  11860. <productMenu id="fmradio"
  11861. type="1" >
  11862. </productMenu>
  11863. <productMenu id="deviceSetting"
  11864. type="1"
  11865. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11866. </productMenu>
  11867. <productMenu id="quickGuide"
  11868. type="0"
  11869. url=""
  11870. size="934KB" >
  11871. </productMenu>
  11872. <productMenu id="userGuide"
  11873. type="0"
  11874. url=""
  11875. size="1.14MB" >
  11876. </productMenu>
  11877. <productID id="5597"
  11878. />
  11879. <productGroupable type="0"
  11880. />
  11881. </product>
  11882. <product id="5S"
  11883. name="Ridekont 5S"
  11884. series="5"
  11885. latestVersion="2.3"
  11886. show = "-1" >
  11887. <productMenu id="protocol"
  11888. type="3" >
  11889. </productMenu>
  11890. <productMenu id="sip"
  11891. type="1" >
  11892. </productMenu>
  11893. <productMenu id="bluetoothIntercom"
  11894. type="1" >
  11895. </productMenu>
  11896. <productMenu id="phone"
  11897. type="1" >
  11898. </productMenu>
  11899. <productMenu id="fmradio"
  11900. type="0" >
  11901. </productMenu>
  11902. <productMenu id="deviceSetting"
  11903. type="1"
  11904. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11905. </productMenu>
  11906. <productMenu id="quickGuide"
  11907. type="0"
  11908. url=""
  11909. size="934KB" >
  11910. </productMenu>
  11911. <productMenu id="userGuide"
  11912. type="1"
  11913. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11914. size="1.14MB" >
  11915. </productMenu>
  11916. <productID id="5589"
  11917. />
  11918. <productGroupable type="0"
  11919. />
  11920. </product>
  11921. <product id="5R"
  11922. name="Ridekont 5R"
  11923. series="5"
  11924. latestVersion="1.0"
  11925. show = "0" >
  11926. <productMenu id="protocol"
  11927. type="3" >
  11928. </productMenu>
  11929. <productMenu id="sip"
  11930. type="1" >
  11931. </productMenu>
  11932. <productMenu id="bluetoothIntercom"
  11933. type="1" >
  11934. </productMenu>
  11935. <productMenu id="phone"
  11936. type="1" >
  11937. </productMenu>
  11938. <productMenu id="fmradio"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="deviceSetting"
  11942. type="1"
  11943. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11944. </productMenu>
  11945. <productMenu id="quickGuide"
  11946. type="1"
  11947. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  11948. size="934KB" >
  11949. </productMenu>
  11950. <productMenu id="userGuide"
  11951. type="1"
  11952. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  11953. size="1.14MB" >
  11954. </productMenu>
  11955. <productID id="5593"
  11956. />
  11957. <productGroupable type="0"
  11958. />
  11959. </product>
  11960. <product id="5R"
  11961. name="Ridekont 5R LITE"
  11962. series="5"
  11963. latestVersion="1.0"
  11964. show = "0" >
  11965. <productMenu id="protocol"
  11966. type="3" >
  11967. </productMenu>
  11968. <productMenu id="sip"
  11969. type="1" >
  11970. </productMenu>
  11971. <productMenu id="bluetoothIntercom"
  11972. type="1" >
  11973. </productMenu>
  11974. <productMenu id="phone"
  11975. type="1" >
  11976. </productMenu>
  11977. <productMenu id="fmradio"
  11978. type="1" >
  11979. </productMenu>
  11980. <productMenu id="deviceSetting"
  11981. type="1"
  11982. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11983. </productMenu>
  11984. <productMenu id="quickGuide"
  11985. type="0"
  11986. url=""
  11987. size="934KB" >
  11988. </productMenu>
  11989. <productMenu id="userGuide"
  11990. type="1"
  11991. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11992. size="1.14MB" >
  11993. </productMenu>
  11994. <productID id="5594"
  11995. />
  11996. <productGroupable type="0"
  11997. />
  11998. </product>
  11999. <product id="SA30"
  12000. name="SA30"
  12001. series="SA"
  12002. latestVersion="1.0.1"
  12003. latestVersionVoicePrompt="0.15"
  12004. show = "-1" >
  12005. <productMenu id="protocol"
  12006. type="2" >
  12007. </productMenu>
  12008. <productMenu id="ota"
  12009. type="2" >
  12010. <otaPackages>
  12011. <package
  12012. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12013. size="3144148"
  12014. />
  12015. </otaPackages>
  12016. </productMenu>
  12017. <productMenu id="meshIntercom"
  12018. type="30" >
  12019. </productMenu>
  12020. <productMenu id="meshIntercom+"
  12021. type="3"
  12022. url="2" >
  12023. </productMenu>
  12024. <productMenu id="phone"
  12025. type="1" >
  12026. </productMenu>
  12027. <productMenu id="music"
  12028. type="1" >
  12029. </productMenu>
  12030. <productMenu id="musicSharing"
  12031. type="0" >
  12032. </productMenu>
  12033. <productMenu id="deviceSetting"
  12034. type="1"
  12035. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12036. </productMenu>
  12037. <productMenu id="quickGuide"
  12038. type="0"
  12039. url=""
  12040. size="1.12MB" >
  12041. </productMenu>
  12042. <productMenu id="userGuide"
  12043. type="1"
  12044. url=""
  12045. size="2.0MB" >
  12046. </productMenu>
  12047. <productMenu id="videoGuide"
  12048. type="0"
  12049. url=""
  12050. size="3.41MB" >
  12051. </productMenu>
  12052. <productMenu id="volume"
  12053. type="12" >
  12054. </productMenu>
  12055. <productMenu id="battery"
  12056. type="1" >
  12057. </productMenu>
  12058. <productID id="6852"
  12059. />
  12060. <productGroupable type="0"
  12061. />
  12062. </product>
  12063. <product id="I30"
  12064. name="I30"
  12065. series="I"
  12066. latestVersion="1.0.1"
  12067. latestVersionVoicePrompt="0.2"
  12068. show = "-1" >
  12069. <productMenu id="protocol"
  12070. type="2" >
  12071. </productMenu>
  12072. <productMenu id="ota"
  12073. type="2" >
  12074. <otaPackages>
  12075. <package
  12076. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12077. size="3144148"
  12078. />
  12079. </otaPackages>
  12080. </productMenu>
  12081. <productMenu id="meshIntercom"
  12082. type="30" >
  12083. </productMenu>
  12084. <productMenu id="meshIntercom+"
  12085. type="3"
  12086. url="2" >
  12087. </productMenu>
  12088. <productMenu id="phone"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="music"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="musicSharing"
  12095. type="0" >
  12096. </productMenu>
  12097. <productMenu id="deviceSetting"
  12098. type="1"
  12099. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12100. </productMenu>
  12101. <productMenu id="quickGuide"
  12102. type="0"
  12103. url=""
  12104. size="1.12MB" >
  12105. </productMenu>
  12106. <productMenu id="userGuide"
  12107. type="1"
  12108. url=""
  12109. size="2.10MB" >
  12110. </productMenu>
  12111. <productMenu id="videoGuide"
  12112. type="0"
  12113. url=""
  12114. size="3.11MB" >
  12115. </productMenu>
  12116. <productMenu id="volume"
  12117. type="12" >
  12118. </productMenu>
  12119. <productMenu id="battery"
  12120. type="1" >
  12121. </productMenu>
  12122. <productID id="6853"
  12123. />
  12124. <productGroupable type="0"
  12125. />
  12126. </product>
  12127. <product id="C30"
  12128. name="SENA C30"
  12129. series="C"
  12130. latestVersion="1.2.2"
  12131. latestVersionVoicePrompt="0.13"
  12132. show = "1" >
  12133. <productMenu id="protocol"
  12134. type="2" >
  12135. </productMenu>
  12136. <productMenu id="alexa"
  12137. type="0" >
  12138. </productMenu>
  12139. <productMenu id="ota"
  12140. type="2" >
  12141. <otaPackages>
  12142. <package
  12143. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12144. size="3144148"
  12145. />
  12146. </otaPackages>
  12147. </productMenu>
  12148. <productMenu id="wa"
  12149. type="0" >
  12150. </productMenu>
  12151. <productMenu id="meshIntercom"
  12152. type="30" >
  12153. </productMenu>
  12154. <productMenu id="meshIntercom+"
  12155. type="3"
  12156. url="2" >
  12157. <productMenuType version="1.0.9"
  12158. type="2"
  12159. />
  12160. </productMenu>
  12161. <productMenu id="waveIntercom"
  12162. type="1" >
  12163. <productMenuType version="1.1.9"
  12164. type="0"
  12165. />
  12166. </productMenu>
  12167. <productMenu id="phone"
  12168. type="1" >
  12169. </productMenu>
  12170. <productMenu id="music"
  12171. type="1" >
  12172. </productMenu>
  12173. <productMenu id="musicSharing"
  12174. type="0" >
  12175. </productMenu>
  12176. <productMenu id="deviceSetting"
  12177. type="1"
  12178. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12179. <productMenuURL version="1.1.3"
  12180. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12181. />
  12182. <productMenuURL version="1.0.9"
  12183. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12184. />
  12185. </productMenu>
  12186. <productMenu id="quickGuide"
  12187. type="1"
  12188. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12189. size="1.12MB" >
  12190. </productMenu>
  12191. <productMenu id="userGuide"
  12192. type="0"
  12193. url=""
  12194. size="2.0MB" >
  12195. </productMenu>
  12196. <productMenu id="videoGuide"
  12197. type="0"
  12198. url=""
  12199. size="3.41MB" >
  12200. </productMenu>
  12201. <productMenu id="volume"
  12202. type="12" >
  12203. </productMenu>
  12204. <productMenu id="battery"
  12205. type="1" >
  12206. </productMenu>
  12207. <productID id="683A"
  12208. />
  12209. <productGroupable type="0"
  12210. />
  12211. </product>
  12212. <product id="C20"
  12213. name="C20"
  12214. series="C"
  12215. latestVersion="1.0"
  12216. show = "1" >
  12217. <productMenu id="protocol"
  12218. type="3" >
  12219. </productMenu>
  12220. <productMenu id="sip"
  12221. type="1" >
  12222. </productMenu>
  12223. <productMenu id="bluetoothIntercom"
  12224. type="1" >
  12225. </productMenu>
  12226. <productMenu id="phone"
  12227. type="1" >
  12228. </productMenu>
  12229. <productMenu id="deviceSetting"
  12230. type="1"
  12231. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12232. </productMenu>
  12233. <productMenu id="quickGuide"
  12234. type="1"
  12235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12236. size="934KB" >
  12237. </productMenu>
  12238. <productMenu id="userGuide"
  12239. type="1"
  12240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12241. size="1.14MB" >
  12242. </productMenu>
  12243. <productID id="3701"
  12244. />
  12245. <productGroupable type="0"
  12246. />
  12247. </product>
  12248. <product id="C10"
  12249. name="C10"
  12250. series="C"
  12251. latestVersion="1.4.4"
  12252. show = "1" >
  12253. <productMenu id="protocol"
  12254. type="3" >
  12255. </productMenu>
  12256. <productMenu id="sip"
  12257. type="1" >
  12258. </productMenu>
  12259. <productMenu id="bluetoothIntercom"
  12260. type="1" >
  12261. </productMenu>
  12262. <productMenu id="phone"
  12263. type="1" >
  12264. </productMenu>
  12265. <productMenu id="fmradio"
  12266. type="0" >
  12267. </productMenu>
  12268. <productMenu id="deviceSetting"
  12269. type="1"
  12270. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12271. </productMenu>
  12272. <productMenu id="userGuide"
  12273. type="1"
  12274. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12275. size="1.14MB" >
  12276. </productMenu>
  12277. <productID id="5595"
  12278. />
  12279. <productGroupable type="0"
  12280. />
  12281. </product>
  12282. <product id="J30"
  12283. name="J30"
  12284. series="J"
  12285. latestVersion="1.2.2"
  12286. latestVersionVoicePrompt="0.14"
  12287. show = "0" >
  12288. <productMenu id="protocol"
  12289. type="2" >
  12290. </productMenu>
  12291. <productMenu id="alexa"
  12292. type="0" >
  12293. </productMenu>
  12294. <productMenu id="ota"
  12295. type="2" >
  12296. <otaPackages>
  12297. <package
  12298. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12299. size="3144148"
  12300. />
  12301. </otaPackages>
  12302. </productMenu>
  12303. <productMenu id="wa"
  12304. type="0" >
  12305. </productMenu>
  12306. <productMenu id="meshIntercom"
  12307. type="30" >
  12308. </productMenu>
  12309. <productMenu id="meshIntercom+"
  12310. type="3"
  12311. url="2" >
  12312. <productMenuType version="1.0.9"
  12313. type="2"
  12314. />
  12315. </productMenu>
  12316. <productMenu id="waveIntercom"
  12317. type="1" >
  12318. <productMenuType version="1.1.9"
  12319. type="0"
  12320. />
  12321. </productMenu>
  12322. <productMenu id="phone"
  12323. type="1" >
  12324. </productMenu>
  12325. <productMenu id="music"
  12326. type="1" >
  12327. </productMenu>
  12328. <productMenu id="musicSharing"
  12329. type="0" >
  12330. </productMenu>
  12331. <productMenu id="deviceSetting"
  12332. type="1"
  12333. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12334. <productMenuURL version="1.0.9"
  12335. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12336. />
  12337. </productMenu>
  12338. <productMenu id="quickGuide"
  12339. type="0"
  12340. url=""
  12341. size="1.12MB" >
  12342. </productMenu>
  12343. <productMenu id="userGuide"
  12344. type="1"
  12345. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12346. size="2.0MB" >
  12347. </productMenu>
  12348. <productMenu id="videoGuide"
  12349. type="0"
  12350. url=""
  12351. size="3.41MB" >
  12352. </productMenu>
  12353. <productMenu id="volume"
  12354. type="12" >
  12355. </productMenu>
  12356. <productMenu id="battery"
  12357. type="1" >
  12358. </productMenu>
  12359. <productID id="6848"
  12360. />
  12361. <productGroupable type="0"
  12362. />
  12363. </product>
  12364. <product id="J10"
  12365. name="J10"
  12366. series="5"
  12367. latestVersion="1.1.4"
  12368. show = "0" >
  12369. <productMenu id="protocol"
  12370. type="3" >
  12371. </productMenu>
  12372. <productMenu id="sip"
  12373. type="1" >
  12374. </productMenu>
  12375. <productMenu id="bluetoothIntercom"
  12376. type="1" >
  12377. </productMenu>
  12378. <productMenu id="phone"
  12379. type="1" >
  12380. </productMenu>
  12381. <productMenu id="fmradio"
  12382. type="0" >
  12383. </productMenu>
  12384. <productMenu id="deviceSetting"
  12385. type="1"
  12386. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12387. </productMenu>
  12388. <productMenu id="userGuide"
  12389. type="1"
  12390. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12391. size="1.14MB" >
  12392. </productMenu>
  12393. <productID id="5598"
  12394. />
  12395. <productGroupable type="0"
  12396. />
  12397. </product>
  12398. <product id="B20"
  12399. name="B20"
  12400. series="B"
  12401. latestVersion="1.1.2"
  12402. latestVersionVoicePrompt="0.14"
  12403. show = "0" >
  12404. <productMenu id="protocol"
  12405. type="2" >
  12406. </productMenu>
  12407. <productMenu id="alexa"
  12408. type="0" >
  12409. </productMenu>
  12410. <productMenu id="ota"
  12411. type="2" >
  12412. <otaPackages>
  12413. <package
  12414. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12415. size="3144148"
  12416. />
  12417. </otaPackages>
  12418. </productMenu>
  12419. <productMenu id="wa"
  12420. type="0" >
  12421. </productMenu>
  12422. <productMenu id="meshIntercom"
  12423. type="30" >
  12424. </productMenu>
  12425. <productMenu id="phone"
  12426. type="1" >
  12427. </productMenu>
  12428. <productMenu id="music"
  12429. type="1" >
  12430. </productMenu>
  12431. <productMenu id="musicSharing"
  12432. type="0" >
  12433. </productMenu>
  12434. <productMenu id="deviceSetting"
  12435. type="1"
  12436. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12437. <productMenuURL version="1.0.9"
  12438. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12439. />
  12440. </productMenu>
  12441. <productMenu id="quickGuide"
  12442. type="0"
  12443. url=""
  12444. size="1.12MB" >
  12445. </productMenu>
  12446. <productMenu id="userGuide"
  12447. type="1"
  12448. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12449. size="2.0MB" >
  12450. </productMenu>
  12451. <productMenu id="videoGuide"
  12452. type="0"
  12453. url=""
  12454. size="3.41MB" >
  12455. </productMenu>
  12456. <productMenu id="volume"
  12457. type="12" >
  12458. </productMenu>
  12459. <productMenu id="battery"
  12460. type="1" >
  12461. </productMenu>
  12462. <productID id="6847"
  12463. />
  12464. <productGroupable type="0"
  12465. />
  12466. </product>
  12467. <product id="B10"
  12468. name="B10"
  12469. series="5"
  12470. latestVersion="1.2.4"
  12471. show = "0" >
  12472. <productMenu id="protocol"
  12473. type="3" >
  12474. </productMenu>
  12475. <productMenu id="sip"
  12476. type="1" >
  12477. </productMenu>
  12478. <productMenu id="bluetoothIntercom"
  12479. type="1" >
  12480. </productMenu>
  12481. <productMenu id="phone"
  12482. type="1" >
  12483. </productMenu>
  12484. <productMenu id="fmradio"
  12485. type="0" >
  12486. </productMenu>
  12487. <productMenu id="deviceSetting"
  12488. type="1"
  12489. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12490. </productMenu>
  12491. <productMenu id="userGuide"
  12492. type="1"
  12493. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12494. size="1.14MB" >
  12495. </productMenu>
  12496. <productID id="5596"
  12497. />
  12498. <productGroupable type="0"
  12499. />
  12500. </product>
  12501. <product id="E30"
  12502. name="E30"
  12503. series="E"
  12504. latestVersion="1.1.2"
  12505. latestVersionVoicePrompt="0.14"
  12506. show = "0" >
  12507. <productMenu id="protocol"
  12508. type="2" >
  12509. </productMenu>
  12510. <productMenu id="alexa"
  12511. type="0" >
  12512. </productMenu>
  12513. <productMenu id="ota"
  12514. type="2" >
  12515. <otaPackages>
  12516. <package
  12517. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12518. size="3144148"
  12519. />
  12520. </otaPackages>
  12521. </productMenu>
  12522. <productMenu id="wa"
  12523. type="0" >
  12524. </productMenu>
  12525. <productMenu id="meshIntercom"
  12526. type="30" >
  12527. </productMenu>
  12528. <productMenu id="meshIntercom+"
  12529. type="3"
  12530. url="2" >
  12531. </productMenu>
  12532. <productMenu id="waveIntercom"
  12533. type="1" >
  12534. <productMenuType version="1.0.9"
  12535. type="0"
  12536. />
  12537. </productMenu>
  12538. <productMenu id="phone"
  12539. type="1" >
  12540. </productMenu>
  12541. <productMenu id="music"
  12542. type="1" >
  12543. </productMenu>
  12544. <productMenu id="musicSharing"
  12545. type="0" >
  12546. </productMenu>
  12547. <productMenu id="deviceSetting"
  12548. type="1"
  12549. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12550. </productMenu>
  12551. <productMenu id="quickGuide"
  12552. type="0"
  12553. url=""
  12554. size="1.12MB" >
  12555. </productMenu>
  12556. <productMenu id="userGuide"
  12557. type="1"
  12558. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12559. size="2.0MB" >
  12560. </productMenu>
  12561. <productMenu id="videoGuide"
  12562. type="0"
  12563. url=""
  12564. size="3.41MB" >
  12565. </productMenu>
  12566. <productMenu id="volume"
  12567. type="12" >
  12568. </productMenu>
  12569. <productMenu id="battery"
  12570. type="1" >
  12571. </productMenu>
  12572. <productID id="6846"
  12573. />
  12574. <productGroupable type="0"
  12575. />
  12576. </product>
  12577. <product id="ACSRAM"
  12578. name="ACS-RAM"
  12579. series="ACS"
  12580. latestVersion="1.0.5"
  12581. show = "1" >
  12582. <productMenu id="protocol"
  12583. type="3" >
  12584. </productMenu>
  12585. <productMenu id="sip"
  12586. type="1" >
  12587. </productMenu>
  12588. <productMenu id="bluetoothIntercom"
  12589. type="1" >
  12590. </productMenu>
  12591. <productMenu id="deviceSetting"
  12592. type="1"
  12593. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12594. </productMenu>
  12595. <productMenu id="quickGuide"
  12596. type="1"
  12597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12598. size="344KB" >
  12599. </productMenu>
  12600. <productMenu id="userGuide"
  12601. type="1"
  12602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12603. size="1.14MB" >
  12604. </productMenu>
  12605. <productMenu id="connectGuide"
  12606. type="1"
  12607. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12608. size="1.12MB" >
  12609. </productMenu>
  12610. <productID id="3400"
  12611. />
  12612. <productGroupable type="0"
  12613. />
  12614. </product>
  12615. <product id="ACS10"
  12616. name="ACS10"
  12617. series="ACS"
  12618. latestVersion="1.0.2"
  12619. show = "1" >
  12620. <productMenu id="protocol"
  12621. type="0">
  12622. </productMenu>
  12623. <productMenu id="sip"
  12624. type="1" >
  12625. </productMenu>
  12626. <productMenu id="bluetoothIntercom"
  12627. type="1" >
  12628. </productMenu>
  12629. <productMenu id="phone"
  12630. type="2" >
  12631. </productMenu>
  12632. <productMenu id="deviceSetting"
  12633. type="1"
  12634. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12635. </productMenu>
  12636. <productMenu id="quickGuide"
  12637. type="1"
  12638. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12639. size="970KB" >
  12640. </productMenu>
  12641. <productMenu id="userGuide"
  12642. type="1"
  12643. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12644. size="1.26MB" >
  12645. </productMenu>
  12646. <productMenu id="connectGuide"
  12647. type="1"
  12648. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12649. size="1.12MB" >
  12650. </productMenu>
  12651. <productID id="3300"
  12652. />
  12653. <productGroupable type="0"
  12654. />
  12655. </product>
  12656. <product id="DWO7ProMesh"
  12657. name="DWO 7 Pro Mesh"
  12658. series="50"
  12659. latestVersion="1.1"
  12660. latestVersionVoicePrompt="0.9"
  12661. show = "0" >
  12662. <productMenu id="protocol"
  12663. type="2" >
  12664. </productMenu>
  12665. <productMenu id="alexa"
  12666. type="0" >
  12667. </productMenu>
  12668. <productMenu id="ota"
  12669. type="2" >
  12670. <otaPackages>
  12671. <package
  12672. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12673. size="2945812"
  12674. />
  12675. </otaPackages>
  12676. </productMenu>
  12677. <productMenu id="wa"
  12678. type="0" >
  12679. </productMenu>
  12680. <productMenu id="meshIntercom"
  12681. type="20" >
  12682. </productMenu>
  12683. <productMenu id="meshIntercom+"
  12684. type="3"
  12685. url="2" >
  12686. <productMenuType version="1.0.9"
  12687. type="2"
  12688. />
  12689. <productMenuURL version="2.1.1"
  12690. url="0"
  12691. />
  12692. </productMenu>
  12693. <productMenu id="waveIntercom"
  12694. type="1" >
  12695. <productMenuType version="1.0.9"
  12696. type="0"
  12697. />
  12698. </productMenu>
  12699. <productMenu id="phone"
  12700. type="1" >
  12701. </productMenu>
  12702. <productMenu id="music"
  12703. type="1" >
  12704. </productMenu>
  12705. <productMenu id="fmradio"
  12706. type="1" >
  12707. </productMenu>
  12708. <productMenu id="musicSharing"
  12709. type="0" >
  12710. </productMenu>
  12711. <productMenu id="deviceSetting"
  12712. type="1"
  12713. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12714. <productMenuURL version="1.0.9"
  12715. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12716. />
  12717. </productMenu>
  12718. <productMenu id="quickGuide"
  12719. type="1"
  12720. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12721. size="1.12MB" >
  12722. </productMenu>
  12723. <productMenu id="userGuide"
  12724. type="1"
  12725. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12726. size="2.0MB" >
  12727. </productMenu>
  12728. <productMenu id="volume"
  12729. type="12" >
  12730. </productMenu>
  12731. <productMenu id="battery"
  12732. type="1" >
  12733. </productMenu>
  12734. <productID id="6806"
  12735. />
  12736. <productGroupable type="0"
  12737. />
  12738. </product>
  12739. <product id="ERA1X"
  12740. name="ERA 1 X"
  12741. series="UCOM"
  12742. latestVersion="0.2.1"
  12743. latestVersionMesh="0.19"
  12744. latestVersionVoicePrompt="1.2"
  12745. show = "-1" >
  12746. <productMenu id="protocol"
  12747. type="2" >
  12748. </productMenu>
  12749. <productMenu id="ota"
  12750. type="2" >
  12751. <otaLanguages>
  12752. <otaLanguage
  12753. id="0"
  12754. name="English"
  12755. package="0"
  12756. />
  12757. <otaLanguage
  12758. id="0"
  12759. name="French"
  12760. package="1"
  12761. />
  12762. <otaLanguage
  12763. id="0"
  12764. name="Spanish"
  12765. package="2"
  12766. />
  12767. <otaLanguage
  12768. id="0"
  12769. name="Italian"
  12770. package="3"
  12771. />
  12772. <otaLanguage
  12773. id="0"
  12774. name="German"
  12775. package="4"
  12776. />
  12777. <otaLanguage
  12778. id="0"
  12779. name="Dutch"
  12780. package="5"
  12781. />
  12782. <otaLanguage
  12783. id="0"
  12784. name="Russian"
  12785. package="6"
  12786. />
  12787. <otaLanguage
  12788. id="0"
  12789. name="Chinese"
  12790. package="7"
  12791. />
  12792. <otaLanguage
  12793. id="0"
  12794. name="Korean"
  12795. package="8"
  12796. />
  12797. <otaLanguage
  12798. id="0"
  12799. name="Japanese"
  12800. package="9"
  12801. />
  12802. <otaLanguage
  12803. id="0"
  12804. name="Finnish"
  12805. package="10"
  12806. />
  12807. <otaLanguage
  12808. id="0"
  12809. name="Polish"
  12810. package="11"
  12811. />
  12812. <otaLanguage
  12813. id="0"
  12814. name="Czech"
  12815. package="12"
  12816. />
  12817. <otaLanguage
  12818. id="0"
  12819. name="Danish"
  12820. package="13"
  12821. />
  12822. <otaLanguage
  12823. id="0"
  12824. name="Norwegian"
  12825. package="14"
  12826. />
  12827. <otaLanguage
  12828. id="0"
  12829. name="Swedish"
  12830. package="15"
  12831. />
  12832. <otaLanguage
  12833. id="0"
  12834. name="Turkish"
  12835. package="16"
  12836. />
  12837. <otaLanguage
  12838. id="0"
  12839. name="Hungarian"
  12840. package="17"
  12841. />
  12842. <otaLanguage
  12843. id="0"
  12844. name="Portuguese"
  12845. package="18"
  12846. />
  12847. <otaLanguage
  12848. id="0"
  12849. name="Hebrew"
  12850. package="19"
  12851. />
  12852. <otaLanguage
  12853. id="0"
  12854. name="Greek"
  12855. package="20"
  12856. />
  12857. </otaLanguages>
  12858. <otaPackages>
  12859. <package
  12860. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  12861. size="5183988"
  12862. />
  12863. <package
  12864. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  12865. size="5183988"
  12866. />
  12867. <package
  12868. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  12869. size="5183988"
  12870. />
  12871. <package
  12872. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  12873. size="5183988"
  12874. />
  12875. <package
  12876. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  12877. size="5183988"
  12878. />
  12879. <package
  12880. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  12881. size="5183988"
  12882. />
  12883. <package
  12884. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  12885. size="5183988"
  12886. />
  12887. <package
  12888. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  12889. size="5183988"
  12890. />
  12891. <package
  12892. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  12893. size="5183988"
  12894. />
  12895. <package
  12896. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  12897. size="5183988"
  12898. />
  12899. <package
  12900. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  12901. size="5183988"
  12902. />
  12903. <package
  12904. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  12905. size="5183988"
  12906. />
  12907. <package
  12908. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  12909. size="5183988"
  12910. />
  12911. <package
  12912. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  12913. size="5183988"
  12914. />
  12915. <package
  12916. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  12917. size="5183988"
  12918. />
  12919. <package
  12920. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  12921. size="5183988"
  12922. />
  12923. <package
  12924. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  12925. size="5183988"
  12926. />
  12927. <package
  12928. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  12929. size="5183988"
  12930. />
  12931. <package
  12932. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  12933. size="5183988"
  12934. />
  12935. <package
  12936. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  12937. size="5183988"
  12938. />
  12939. <package
  12940. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  12941. size="5183988"
  12942. />
  12943. </otaPackages>
  12944. </productMenu>
  12945. <productMenu id="wa"
  12946. type="0" >
  12947. </productMenu>
  12948. <productMenu id="sip"
  12949. type="1" >
  12950. </productMenu>
  12951. <productMenu id="led"
  12952. type="0" >
  12953. </productMenu>
  12954. <productMenu id="illusion"
  12955. type="1" >
  12956. </productMenu>
  12957. <productMenu id="meshIntercom"
  12958. type="30" >
  12959. </productMenu>
  12960. <productMenu id="meshIntercom+"
  12961. type="3"
  12962. url="2" >
  12963. </productMenu>
  12964. <productMenu id="waveIntercom"
  12965. type="0" >
  12966. </productMenu>
  12967. <productMenu id="bluetoothIntercom"
  12968. type="1" >
  12969. </productMenu>
  12970. <productMenu id="bluetoothIntercomGrouping"
  12971. type="0" >
  12972. </productMenu>
  12973. <productMenu id="fmradio"
  12974. type="1"
  12975. url="1" >
  12976. </productMenu>
  12977. <productMenu id="phone"
  12978. type="1" >
  12979. </productMenu>
  12980. <productMenu id="music"
  12981. type="1" >
  12982. </productMenu>
  12983. <productMenu id="musicSharing"
  12984. type="0" >
  12985. </productMenu>
  12986. <productMenu id="deviceSetting"
  12987. type="1"
  12988. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  12989. </productMenu>
  12990. <productMenu id="quickGuide"
  12991. type="0"
  12992. url=""
  12993. size="1.12MB" >
  12994. </productMenu>
  12995. <productMenu id="userGuide"
  12996. type="1"
  12997. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  12998. size="2.0MB" >
  12999. </productMenu>
  13000. <productMenu id="videoGuide"
  13001. type="0"
  13002. url=""
  13003. size="3.41MB" >
  13004. </productMenu>
  13005. <productMenu id="volume"
  13006. type="16" >
  13007. </productMenu>
  13008. <productMenu id="soundMode"
  13009. type="1" >
  13010. </productMenu>
  13011. <productMenu id="battery"
  13012. type="1" >
  13013. </productMenu>
  13014. <productID id="6A83"
  13015. />
  13016. <productGroupable type="0"
  13017. />
  13018. </product>
  13019. <product id="MeshStation"
  13020. name="Mesh Station"
  13021. series="50"
  13022. latestVersion="0.9"
  13023. show = "-1" >
  13024. <productMenu id="protocol"
  13025. type="2" >
  13026. </productMenu>
  13027. <productMenu id="meshIntercom"
  13028. type="20"
  13029. url="99" >
  13030. </productMenu>
  13031. <productID id="3161"
  13032. />
  13033. <productGroupable type="0"
  13034. />
  13035. </product>
  13036. </products>
  13037. </sna>