snm.xml 465 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260081" 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.1"
  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.1-build0.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fr-FR.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-es-ES.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-it-IT.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-de-DE.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-nl-NL.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ru-RU.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-cmn-CN.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ko-KR.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-ja-JP.img"
  441. size="5183988"
  442. />
  443. <package
  444. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-fi-FI.img"
  445. size="5183988"
  446. />
  447. <package
  448. url="https://api.sena.com/support/OTA/Motorcycles/60SEVO/60S_EVO-v1.0.1-build0-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="battery"
  524. type="1" >
  525. </productMenu>
  526. <productID id="6A15"
  527. />
  528. <productGroupable type="0"
  529. />
  530. </product>
  531. <product id="60S"
  532. name="60S"
  533. series="60"
  534. latestVersion="1.2.8"
  535. latestVersionMesh="1.2"
  536. latestVersionVoicePrompt="1.5"
  537. show = "1" >
  538. <productMenu id="protocol"
  539. type="2" >
  540. </productMenu>
  541. <productMenu id="ota"
  542. type="2" >
  543. <otaLanguages>
  544. <otaLanguage
  545. id="0"
  546. name="English"
  547. package="0"
  548. />
  549. <otaLanguage
  550. id="0"
  551. name="French"
  552. package="1"
  553. />
  554. <otaLanguage
  555. id="0"
  556. name="Spanish"
  557. package="2"
  558. />
  559. <otaLanguage
  560. id="0"
  561. name="Italian"
  562. package="3"
  563. />
  564. <otaLanguage
  565. id="0"
  566. name="German"
  567. package="4"
  568. />
  569. <otaLanguage
  570. id="0"
  571. name="Dutch"
  572. package="5"
  573. />
  574. <otaLanguage
  575. id="0"
  576. name="Russian"
  577. package="6"
  578. />
  579. <otaLanguage
  580. id="0"
  581. name="Chinese"
  582. package="7"
  583. />
  584. <otaLanguage
  585. id="0"
  586. name="Korean"
  587. package="8"
  588. />
  589. <otaLanguage
  590. id="0"
  591. name="Japanese"
  592. package="9"
  593. />
  594. <otaLanguage
  595. id="0"
  596. name="Finnish"
  597. package="10"
  598. />
  599. <otaLanguage
  600. id="0"
  601. name="Polish"
  602. package="11"
  603. />
  604. </otaLanguages>
  605. <otaPackages>
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  640. size="5183988"
  641. />
  642. <package
  643. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  644. size="5183988"
  645. />
  646. <package
  647. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  648. size="5183988"
  649. />
  650. <package
  651. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  652. size="5183988"
  653. />
  654. </otaPackages>
  655. </productMenu>
  656. <productMenu id="sip"
  657. type="1" >
  658. </productMenu>
  659. <productMenu id="illusion"
  660. type="1" >
  661. </productMenu>
  662. <productMenu id="meshIntercom"
  663. type="30" >
  664. </productMenu>
  665. <productMenu id="meshIntercom+"
  666. type="3"
  667. url="2" >
  668. </productMenu>
  669. <productMenu id="waveIntercom"
  670. type="1" >
  671. </productMenu>
  672. <productMenu id="bluetoothIntercom"
  673. type="1"
  674. url="2" >
  675. </productMenu>
  676. <productMenu id="bluetoothIntercomGrouping"
  677. type="0" >
  678. </productMenu>
  679. <productMenu id="fmradio"
  680. type="1"
  681. url="1" >
  682. </productMenu>
  683. <productMenu id="phone"
  684. type="1" >
  685. </productMenu>
  686. <productMenu id="music"
  687. type="1" >
  688. </productMenu>
  689. <productMenu id="musicSharing"
  690. type="0" >
  691. </productMenu>
  692. <productMenu id="deviceSetting"
  693. type="1"
  694. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  695. <productMenuURL version="1.2.6"
  696. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  697. />
  698. <productMenuURL version="1.2.3"
  699. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  700. />
  701. </productMenu>
  702. <productMenu id="quickGuide"
  703. type="0"
  704. url=""
  705. size="1.12MB" >
  706. </productMenu>
  707. <productMenu id="userGuide"
  708. type="1"
  709. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  710. size="2.0MB" >
  711. </productMenu>
  712. <productMenu id="videoGuide"
  713. type="0"
  714. url=""
  715. size="3.41MB" >
  716. </productMenu>
  717. <productMenu id="connectGuide"
  718. type="1"
  719. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  720. size="1.12MB" >
  721. </productMenu>
  722. <productMenu id="volume"
  723. type="16" >
  724. </productMenu>
  725. <productMenu id="volume+"
  726. type="2"
  727. url="0x6004" >
  728. <productMenuURL version="1.2.3"
  729. url="0x6004"
  730. />
  731. </productMenu>
  732. <productMenu id="soundMode"
  733. type="0" >
  734. </productMenu>
  735. <productMenu id="battery"
  736. type="1" >
  737. </productMenu>
  738. <productID id="6A0D"
  739. />
  740. <productGroupable type="0"
  741. />
  742. </product>
  743. <product id="60S"
  744. name="60S"
  745. series="60"
  746. latestVersion="1.2.8"
  747. latestVersionMesh="1.2"
  748. latestVersionVoicePrompt="1.5"
  749. show = "-1" >
  750. <productMenu id="protocol"
  751. type="2" >
  752. </productMenu>
  753. <productMenu id="ota"
  754. type="2" >
  755. <otaLanguages>
  756. <otaLanguage
  757. id="0"
  758. name="English"
  759. package="0"
  760. />
  761. <otaLanguage
  762. id="0"
  763. name="French"
  764. package="1"
  765. />
  766. <otaLanguage
  767. id="0"
  768. name="Spanish"
  769. package="2"
  770. />
  771. <otaLanguage
  772. id="0"
  773. name="Italian"
  774. package="3"
  775. />
  776. <otaLanguage
  777. id="0"
  778. name="German"
  779. package="4"
  780. />
  781. <otaLanguage
  782. id="0"
  783. name="Dutch"
  784. package="5"
  785. />
  786. <otaLanguage
  787. id="0"
  788. name="Russian"
  789. package="6"
  790. />
  791. <otaLanguage
  792. id="0"
  793. name="Chinese"
  794. package="7"
  795. />
  796. <otaLanguage
  797. id="0"
  798. name="Korean"
  799. package="8"
  800. />
  801. <otaLanguage
  802. id="0"
  803. name="Japanese"
  804. package="9"
  805. />
  806. <otaLanguage
  807. id="0"
  808. name="Finnish"
  809. package="10"
  810. />
  811. <otaLanguage
  812. id="0"
  813. name="Polish"
  814. package="11"
  815. />
  816. </otaLanguages>
  817. <otaPackages>
  818. <package
  819. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  820. size="5183988"
  821. />
  822. <package
  823. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  824. size="5183988"
  825. />
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  852. size="5183988"
  853. />
  854. <package
  855. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  856. size="5183988"
  857. />
  858. <package
  859. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  860. size="5183988"
  861. />
  862. <package
  863. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  864. size="5183988"
  865. />
  866. </otaPackages>
  867. </productMenu>
  868. <productMenu id="wa"
  869. type="0" >
  870. </productMenu>
  871. <productMenu id="sip"
  872. type="1" >
  873. </productMenu>
  874. <productMenu id="led"
  875. type="0" >
  876. </productMenu>
  877. <productMenu id="illusion"
  878. type="1" >
  879. </productMenu>
  880. <productMenu id="meshIntercom"
  881. type="30" >
  882. </productMenu>
  883. <productMenu id="meshIntercom+"
  884. type="3"
  885. url="2" >
  886. <productMenuURL version="1.0.2"
  887. url="10"
  888. />
  889. </productMenu>
  890. <productMenu id="waveIntercom"
  891. type="1" >
  892. <productMenuType version="1.0.9"
  893. type="0"
  894. />
  895. </productMenu>
  896. <productMenu id="bluetoothIntercom"
  897. type="1"
  898. url="2" >
  899. </productMenu>
  900. <productMenu id="bluetoothIntercomGrouping"
  901. type="0" >
  902. </productMenu>
  903. <productMenu id="fmradio"
  904. type="1"
  905. url="1" >
  906. </productMenu>
  907. <productMenu id="phone"
  908. type="1" >
  909. </productMenu>
  910. <productMenu id="music"
  911. type="1" >
  912. </productMenu>
  913. <productMenu id="musicSharing"
  914. type="0" >
  915. </productMenu>
  916. <productMenu id="deviceSetting"
  917. type="1"
  918. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  919. <productMenuURL version="1.2.6"
  920. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  921. />
  922. <productMenuURL version="1.2.3"
  923. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  924. />
  925. <productMenuURL version="1.0.2"
  926. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  927. />
  928. <productMenuURL version="1.0"
  929. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  930. />
  931. <productMenuURL version="0.9.11"
  932. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  933. />
  934. </productMenu>
  935. <productMenu id="quickGuide"
  936. type="0"
  937. url=""
  938. size="1.12MB" >
  939. </productMenu>
  940. <productMenu id="userGuide"
  941. type="1"
  942. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  943. size="2.0MB" >
  944. </productMenu>
  945. <productMenu id="videoGuide"
  946. type="0"
  947. url=""
  948. size="3.41MB" >
  949. </productMenu>
  950. <productMenu id="connectGuide"
  951. type="1"
  952. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  953. size="1.12MB" >
  954. </productMenu>
  955. <productMenu id="volume"
  956. type="16" >
  957. <productMenuType version="0.9.11"
  958. type="13"
  959. />
  960. </productMenu>
  961. <productMenu id="volume+"
  962. type="2"
  963. url="0x6004" >
  964. <productMenuURL version="1.2.3"
  965. url="0x6004"
  966. />
  967. </productMenu>
  968. <productMenu id="soundMode"
  969. type="0" >
  970. <productMenuType version="0.9.11"
  971. type="0"
  972. />
  973. </productMenu>
  974. <productMenu id="battery"
  975. type="1" >
  976. </productMenu>
  977. <productID id="6A02"
  978. />
  979. <productGroupable type="0"
  980. />
  981. </product>
  982. <product id="60X"
  983. name="60X"
  984. series="60"
  985. latestVersion="0.9.2"
  986. latestVersionMesh="0.19"
  987. latestVersionVoicePrompt="1.5"
  988. show = "-1" >
  989. <productMenu id="protocol"
  990. type="2" >
  991. </productMenu>
  992. <productMenu id="ota"
  993. type="0" >
  994. <otaLanguages>
  995. <otaLanguage
  996. id="0"
  997. name="English"
  998. package="0"
  999. />
  1000. <otaLanguage
  1001. id="0"
  1002. name="French"
  1003. package="1"
  1004. />
  1005. <otaLanguage
  1006. id="0"
  1007. name="Spanish"
  1008. package="2"
  1009. />
  1010. <otaLanguage
  1011. id="0"
  1012. name="Italian"
  1013. package="3"
  1014. />
  1015. <otaLanguage
  1016. id="0"
  1017. name="German"
  1018. package="4"
  1019. />
  1020. <otaLanguage
  1021. id="0"
  1022. name="Dutch"
  1023. package="5"
  1024. />
  1025. <otaLanguage
  1026. id="0"
  1027. name="Russian"
  1028. package="6"
  1029. />
  1030. <otaLanguage
  1031. id="0"
  1032. name="Chinese"
  1033. package="7"
  1034. />
  1035. <otaLanguage
  1036. id="0"
  1037. name="Korean"
  1038. package="8"
  1039. />
  1040. <otaLanguage
  1041. id="0"
  1042. name="Japanese"
  1043. package="9"
  1044. />
  1045. <otaLanguage
  1046. id="0"
  1047. name="Finnish"
  1048. package="10"
  1049. />
  1050. <otaLanguage
  1051. id="0"
  1052. name="Polish"
  1053. package="11"
  1054. />
  1055. </otaLanguages>
  1056. <otaPackages>
  1057. <package
  1058. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1059. size="5183988"
  1060. />
  1061. <package
  1062. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1063. size="5183988"
  1064. />
  1065. <package
  1066. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1067. size="5183988"
  1068. />
  1069. <package
  1070. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1091. size="5183988"
  1092. />
  1093. <package
  1094. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1095. size="5183988"
  1096. />
  1097. <package
  1098. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1099. size="5183988"
  1100. />
  1101. <package
  1102. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1103. size="5183988"
  1104. />
  1105. </otaPackages>
  1106. </productMenu>
  1107. <productMenu id="wa"
  1108. type="0" >
  1109. </productMenu>
  1110. <productMenu id="sip"
  1111. type="1" >
  1112. </productMenu>
  1113. <productMenu id="led"
  1114. type="1" >
  1115. </productMenu>
  1116. <productMenu id="illusion"
  1117. type="1" >
  1118. </productMenu>
  1119. <productMenu id="meshIntercom"
  1120. type="30" >
  1121. </productMenu>
  1122. <productMenu id="meshIntercom+"
  1123. type="3"
  1124. url="2" >
  1125. </productMenu>
  1126. <productMenu id="bluetoothIntercom"
  1127. type="1" >
  1128. </productMenu>
  1129. <productMenu id="fmradio"
  1130. type="1"
  1131. url="1" >
  1132. </productMenu>
  1133. <productMenu id="mic"
  1134. type="0" >
  1135. </productMenu>
  1136. <productMenu id="phone"
  1137. type="1" >
  1138. </productMenu>
  1139. <productMenu id="music"
  1140. type="1" >
  1141. </productMenu>
  1142. <productMenu id="musicSharing"
  1143. type="0" >
  1144. </productMenu>
  1145. <productMenu id="deviceSetting"
  1146. type="1"
  1147. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1148. </productMenu>
  1149. <productMenu id="quickGuide"
  1150. type="0"
  1151. url=""
  1152. size="1.12MB" >
  1153. </productMenu>
  1154. <productMenu id="userGuide"
  1155. type="0"
  1156. url=""
  1157. size="2.0MB" >
  1158. </productMenu>
  1159. <productMenu id="videoGuide"
  1160. type="0"
  1161. url=""
  1162. size="3.41MB" >
  1163. </productMenu>
  1164. <productMenu id="keySettings"
  1165. type="1"
  1166. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1167. </productMenu>
  1168. <productMenu id="volume"
  1169. type="13" >
  1170. </productMenu>
  1171. <productMenu id="volume+"
  1172. type="2"
  1173. url="0x6004" >
  1174. </productMenu>
  1175. <productMenu id="battery"
  1176. type="1" >
  1177. </productMenu>
  1178. <productID id="6A03"
  1179. />
  1180. <productGroupable type="0"
  1181. />
  1182. </product>
  1183. <product id="R35"
  1184. name="R35"
  1185. series="R"
  1186. latestVersion="1.1"
  1187. latestVersionVoicePrompt="1.5"
  1188. show = "-1" >
  1189. <productMenu id="protocol"
  1190. type="2" >
  1191. </productMenu>
  1192. <productMenu id="ota"
  1193. type="2" >
  1194. <otaLanguages>
  1195. <otaLanguage
  1196. id="0"
  1197. name="English"
  1198. package="0"
  1199. />
  1200. <otaLanguage
  1201. id="0"
  1202. name="Chinese"
  1203. package="1"
  1204. />
  1205. <otaLanguage
  1206. id="0"
  1207. name="Chinese Singapore"
  1208. package="2"
  1209. />
  1210. <otaLanguage
  1211. id="0"
  1212. name="Filipino"
  1213. package="3"
  1214. />
  1215. <otaLanguage
  1216. id="0"
  1217. name="Hebrew"
  1218. package="4"
  1219. />
  1220. <otaLanguage
  1221. id="0"
  1222. name="Hindi"
  1223. package="5"
  1224. />
  1225. <otaLanguage
  1226. id="0"
  1227. name="Indonesian"
  1228. package="6"
  1229. />
  1230. <otaLanguage
  1231. id="0"
  1232. name="Japanese"
  1233. package="7"
  1234. />
  1235. <otaLanguage
  1236. id="0"
  1237. name="Korean"
  1238. package="8"
  1239. />
  1240. <otaLanguage
  1241. id="0"
  1242. name="Malay"
  1243. package="9"
  1244. />
  1245. <otaLanguage
  1246. id="0"
  1247. name="Modern Standard Arabic"
  1248. package="10"
  1249. />
  1250. <otaLanguage
  1251. id="0"
  1252. name="Taiwanese"
  1253. package="11"
  1254. />
  1255. <otaLanguage
  1256. id="0"
  1257. name="Tamil"
  1258. package="12"
  1259. />
  1260. <otaLanguage
  1261. id="0"
  1262. name="Thai"
  1263. package="13"
  1264. />
  1265. <otaLanguage
  1266. id="0"
  1267. name="东北话"
  1268. package="14"
  1269. />
  1270. <otaLanguage
  1271. id="0"
  1272. name="广东话"
  1273. package="15"
  1274. />
  1275. <otaLanguage
  1276. id="0"
  1277. name="江浙沪"
  1278. package="16"
  1279. />
  1280. <otaLanguage
  1281. id="0"
  1282. name="四川话"
  1283. package="17"
  1284. />
  1285. <otaLanguage
  1286. id="0"
  1287. name="陕西话"
  1288. package="18"
  1289. />
  1290. </otaLanguages>
  1291. <otaPackages>
  1292. <package
  1293. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1294. size="5183988"
  1295. />
  1296. <package
  1297. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1298. size="5183988"
  1299. />
  1300. <package
  1301. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1302. size="5183988"
  1303. />
  1304. <package
  1305. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1306. size="5183988"
  1307. />
  1308. <package
  1309. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1310. size="5183988"
  1311. />
  1312. <package
  1313. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1314. size="5183988"
  1315. />
  1316. <package
  1317. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1318. size="5183988"
  1319. />
  1320. <package
  1321. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1322. size="5183988"
  1323. />
  1324. <package
  1325. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1326. size="5183988"
  1327. />
  1328. <package
  1329. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1330. size="5183988"
  1331. />
  1332. <package
  1333. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1334. size="5183988"
  1335. />
  1336. <package
  1337. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1338. size="5183988"
  1339. />
  1340. <package
  1341. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1342. size="5183988"
  1343. />
  1344. <package
  1345. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1346. size="5183988"
  1347. />
  1348. <package
  1349. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1350. size="5183988"
  1351. />
  1352. <package
  1353. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1354. size="5183988"
  1355. />
  1356. <package
  1357. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1358. size="5183988"
  1359. />
  1360. <package
  1361. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1362. size="5183988"
  1363. />
  1364. <package
  1365. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1366. size="5183988"
  1367. />
  1368. </otaPackages>
  1369. </productMenu>
  1370. <productMenu id="sip"
  1371. type="1" >
  1372. </productMenu>
  1373. <productMenu id="illusion"
  1374. type="1" >
  1375. </productMenu>
  1376. <productMenu id="meshIntercom"
  1377. type="30" >
  1378. </productMenu>
  1379. <productMenu id="meshIntercom+"
  1380. type="3"
  1381. url="2" >
  1382. </productMenu>
  1383. <productMenu id="waveIntercom"
  1384. type="1" >
  1385. </productMenu>
  1386. <productMenu id="phone"
  1387. type="1" >
  1388. </productMenu>
  1389. <productMenu id="music"
  1390. type="1" >
  1391. </productMenu>
  1392. <productMenu id="musicSharing"
  1393. type="0" >
  1394. </productMenu>
  1395. <productMenu id="deviceSetting"
  1396. type="1"
  1397. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1398. <productMenuURL version="1.0.3"
  1399. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1400. />
  1401. </productMenu>
  1402. <productMenu id="quickGuide"
  1403. type="0"
  1404. url=""
  1405. size="1.12MB" >
  1406. </productMenu>
  1407. <productMenu id="userGuide"
  1408. type="1"
  1409. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1410. size="2.0MB" >
  1411. </productMenu>
  1412. <productMenu id="videoGuide"
  1413. type="0"
  1414. url=""
  1415. size="3.41MB" >
  1416. </productMenu>
  1417. <productMenu id="connectGuide"
  1418. type="0"
  1419. url=""
  1420. size="1.12MB" >
  1421. </productMenu>
  1422. <productMenu id="volume"
  1423. type="16" >
  1424. </productMenu>
  1425. <productMenu id="volume+"
  1426. type="2"
  1427. url="0x6004" >
  1428. </productMenu>
  1429. <productMenu id="soundMode"
  1430. type="0" >
  1431. </productMenu>
  1432. <productMenu id="battery"
  1433. type="1" >
  1434. </productMenu>
  1435. <productID id="6A06"
  1436. />
  1437. <productGroupable type="0"
  1438. />
  1439. </product>
  1440. <product id="COMP1"
  1441. name="BMW COM P1"
  1442. series="60"
  1443. latestVersion="1.0.6"
  1444. latestVersionMesh="0.19"
  1445. latestVersionVoicePrompt="1.0"
  1446. show = "-1" >
  1447. <productMenu id="protocol"
  1448. type="2" >
  1449. </productMenu>
  1450. <productMenu id="ota"
  1451. type="2" >
  1452. <otaLanguages>
  1453. <otaLanguage
  1454. id="0"
  1455. name="English"
  1456. package="0"
  1457. />
  1458. <otaLanguage
  1459. id="0"
  1460. name="French"
  1461. package="1"
  1462. />
  1463. <otaLanguage
  1464. id="0"
  1465. name="Spanish"
  1466. package="2"
  1467. />
  1468. <otaLanguage
  1469. id="0"
  1470. name="Italian"
  1471. package="3"
  1472. />
  1473. <otaLanguage
  1474. id="0"
  1475. name="German"
  1476. package="4"
  1477. />
  1478. <otaLanguage
  1479. id="0"
  1480. name="Dutch"
  1481. package="5"
  1482. />
  1483. <otaLanguage
  1484. id="0"
  1485. name="Russian"
  1486. package="6"
  1487. />
  1488. <otaLanguage
  1489. id="0"
  1490. name="Chinese"
  1491. package="7"
  1492. />
  1493. <otaLanguage
  1494. id="0"
  1495. name="Korean"
  1496. package="8"
  1497. />
  1498. <otaLanguage
  1499. id="0"
  1500. name="Japanese"
  1501. package="9"
  1502. />
  1503. <otaLanguage
  1504. id="0"
  1505. name="Finnish"
  1506. package="10"
  1507. />
  1508. </otaLanguages>
  1509. <otaPackages>
  1510. <package
  1511. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1512. size="5183988"
  1513. />
  1514. <package
  1515. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1516. size="5183988"
  1517. />
  1518. <package
  1519. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1520. size="5183988"
  1521. />
  1522. <package
  1523. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1524. size="5183988"
  1525. />
  1526. <package
  1527. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1528. size="5183988"
  1529. />
  1530. <package
  1531. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1532. size="5183988"
  1533. />
  1534. <package
  1535. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1536. size="5183988"
  1537. />
  1538. <package
  1539. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1540. size="5183988"
  1541. />
  1542. <package
  1543. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1544. size="5183988"
  1545. />
  1546. <package
  1547. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1548. size="5183988"
  1549. />
  1550. <package
  1551. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1552. size="5183988"
  1553. />
  1554. </otaPackages>
  1555. </productMenu>
  1556. <productMenu id="wa"
  1557. type="0" >
  1558. </productMenu>
  1559. <productMenu id="sip"
  1560. type="1" >
  1561. </productMenu>
  1562. <productMenu id="led"
  1563. type="0" >
  1564. </productMenu>
  1565. <productMenu id="illusion"
  1566. type="0" >
  1567. </productMenu>
  1568. <productMenu id="meshIntercom"
  1569. type="30" >
  1570. </productMenu>
  1571. <productMenu id="bluetoothIntercom"
  1572. type="1" >
  1573. </productMenu>
  1574. <productMenu id="bluetoothIntercomGrouping"
  1575. type="0" >
  1576. </productMenu>
  1577. <productMenu id="fmradio"
  1578. type="0" >
  1579. </productMenu>
  1580. <productMenu id="phone"
  1581. type="1" >
  1582. </productMenu>
  1583. <productMenu id="music"
  1584. type="1" >
  1585. </productMenu>
  1586. <productMenu id="musicSharing"
  1587. type="0" >
  1588. </productMenu>
  1589. <productMenu id="deviceSetting"
  1590. type="1"
  1591. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1592. </productMenu>
  1593. <productMenu id="quickGuide"
  1594. type="0"
  1595. url=""
  1596. size="1.12MB" >
  1597. </productMenu>
  1598. <productMenu id="userGuide"
  1599. type="0"
  1600. url=""
  1601. size="2.0MB" >
  1602. </productMenu>
  1603. <productMenu id="videoGuide"
  1604. type="0"
  1605. url=""
  1606. size="3.41MB" >
  1607. </productMenu>
  1608. <productMenu id="volume"
  1609. type="16" >
  1610. </productMenu>
  1611. <productMenu id="battery"
  1612. type="1" >
  1613. </productMenu>
  1614. <productID id="6A80"
  1615. />
  1616. <productGroupable type="0"
  1617. />
  1618. </product>
  1619. <product id="50S"
  1620. name="50S"
  1621. series="50"
  1622. latestVersion="2.7.2"
  1623. show = "1" >
  1624. <productMenu id="protocol"
  1625. type="2" >
  1626. </productMenu>
  1627. <productMenu id="alexa"
  1628. type="0" >
  1629. </productMenu>
  1630. <productMenu id="ota"
  1631. type="0"
  1632. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1633. size="1150234" >
  1634. </productMenu>
  1635. <productMenu id="wa"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="sip"
  1639. type="1" >
  1640. </productMenu>
  1641. <productMenu id="meshIntercom"
  1642. type="30" >
  1643. <productMenuType version="2.1.1"
  1644. type="20"
  1645. />
  1646. </productMenu>
  1647. <productMenu id="meshIntercom+"
  1648. type="3"
  1649. url="2" >
  1650. <productMenuType version="2.5.9"
  1651. type="2"
  1652. />
  1653. <productMenuURL version="2.1.1"
  1654. url="0"
  1655. />
  1656. </productMenu>
  1657. <productMenu id="waveIntercom"
  1658. type="1" >
  1659. <productMenuType version="2.6"
  1660. type="0"
  1661. />
  1662. </productMenu>
  1663. <productMenu id="bluetoothIntercom"
  1664. type="1" >
  1665. </productMenu>
  1666. <productMenu id="phone"
  1667. type="1" >
  1668. </productMenu>
  1669. <productMenu id="music"
  1670. type="1" >
  1671. </productMenu>
  1672. <productMenu id="fmradio"
  1673. type="1" >
  1674. </productMenu>
  1675. <productMenu id="deviceSetting"
  1676. type="1"
  1677. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1678. <productMenuURL version="2.5.9"
  1679. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1680. />
  1681. <productMenuURL version="2.1.1"
  1682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1683. />
  1684. <productMenuURL version="2.0.3"
  1685. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1686. />
  1687. </productMenu>
  1688. <productMenu id="quickGuide"
  1689. type="0"
  1690. url=""
  1691. size="934KB" >
  1692. </productMenu>
  1693. <productMenu id="userGuide"
  1694. type="1"
  1695. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1696. size="1.14MB" >
  1697. </productMenu>
  1698. <productMenu id="videoGuide"
  1699. type="1"
  1700. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1701. size="3.41MB" >
  1702. </productMenu>
  1703. <productMenu id="connectGuide"
  1704. type="1"
  1705. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1706. size="1.12MB" >
  1707. </productMenu>
  1708. <productMenu id="volume"
  1709. type="11" >
  1710. </productMenu>
  1711. <productMenu id="battery"
  1712. type="1" >
  1713. </productMenu>
  1714. <productID id="3210"
  1715. />
  1716. <productGroupable type="0"
  1717. />
  1718. </product>
  1719. <product id="50S"
  1720. name="50S"
  1721. series="50"
  1722. latestVersion="1.5.1"
  1723. show = "-1" >
  1724. <productMenu id="protocol"
  1725. type="2" >
  1726. </productMenu>
  1727. <productMenu id="alexa"
  1728. type="0" >
  1729. </productMenu>
  1730. <productMenu id="wa"
  1731. type="1" >
  1732. </productMenu>
  1733. <productMenu id="sip"
  1734. type="1" >
  1735. </productMenu>
  1736. <productMenu id="meshIntercom"
  1737. type="30" >
  1738. <productMenuType version="1.2.2"
  1739. type="20"
  1740. />
  1741. </productMenu>
  1742. <productMenu id="meshIntercom+"
  1743. type="3"
  1744. url="2" >
  1745. <productMenuType version="1.4.9"
  1746. type="2"
  1747. />
  1748. <productMenuURL version="1.2.2"
  1749. url="0"
  1750. />
  1751. </productMenu>
  1752. <productMenu id="waveIntercom"
  1753. type="1" >
  1754. <productMenuType version="1.3.9"
  1755. type="0"
  1756. />
  1757. </productMenu>
  1758. <productMenu id="bluetoothIntercom"
  1759. type="1" >
  1760. </productMenu>
  1761. <productMenu id="phone"
  1762. type="1" >
  1763. </productMenu>
  1764. <productMenu id="music"
  1765. type="1" >
  1766. </productMenu>
  1767. <productMenu id="fmradio"
  1768. type="1" >
  1769. </productMenu>
  1770. <productMenu id="deviceSetting"
  1771. type="1"
  1772. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1773. <productMenuURL version="1.4.9"
  1774. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1775. />
  1776. <productMenuURL version="1.3.9"
  1777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1778. />
  1779. <productMenuURL version="1.2.2"
  1780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1781. />
  1782. <productMenuURL version="1.1.1"
  1783. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1784. />
  1785. </productMenu>
  1786. <productMenu id="quickGuide"
  1787. type="0"
  1788. url=""
  1789. size="934KB" >
  1790. </productMenu>
  1791. <productMenu id="userGuide"
  1792. type="1"
  1793. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1794. size="1.14MB" >
  1795. </productMenu>
  1796. <productMenu id="videoGuide"
  1797. type="1"
  1798. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1799. size="3.41MB" >
  1800. </productMenu>
  1801. <productMenu id="volume"
  1802. type="11" >
  1803. </productMenu>
  1804. <productMenu id="battery"
  1805. type="1" >
  1806. </productMenu>
  1807. <productID id="3132"
  1808. />
  1809. <productGroupable type="0"
  1810. />
  1811. </product>
  1812. <product id="50R"
  1813. name="50R"
  1814. series="50"
  1815. latestVersion="2.7.1"
  1816. show = "1" >
  1817. <productMenu id="protocol"
  1818. type="2" >
  1819. </productMenu>
  1820. <productMenu id="alexa"
  1821. type="0" >
  1822. </productMenu>
  1823. <productMenu id="ota"
  1824. type="0"
  1825. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1826. size="1150234" >
  1827. </productMenu>
  1828. <productMenu id="wa"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="sip"
  1832. type="1" >
  1833. </productMenu>
  1834. <productMenu id="meshIntercom"
  1835. type="30" >
  1836. <productMenuType version="2.1.1"
  1837. type="20"
  1838. />
  1839. </productMenu>
  1840. <productMenu id="meshIntercom+"
  1841. type="3"
  1842. url="2" >
  1843. <productMenuType version="2.5.9"
  1844. type="2"
  1845. />
  1846. <productMenuURL version="2.1.1"
  1847. url="0"
  1848. />
  1849. </productMenu>
  1850. <productMenu id="waveIntercom"
  1851. type="1" >
  1852. <productMenuType version="2.6"
  1853. type="0"
  1854. />
  1855. </productMenu>
  1856. <productMenu id="bluetoothIntercom"
  1857. type="1" >
  1858. </productMenu>
  1859. <productMenu id="phone"
  1860. type="1" >
  1861. </productMenu>
  1862. <productMenu id="music"
  1863. type="1" >
  1864. </productMenu>
  1865. <productMenu id="fmradio"
  1866. type="1" >
  1867. </productMenu>
  1868. <productMenu id="deviceSetting"
  1869. type="1"
  1870. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1871. <productMenuURL version="2.5.9"
  1872. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1873. />
  1874. <productMenuURL version="2.1.1"
  1875. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1876. />
  1877. <productMenuURL version="2.0"
  1878. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1879. />
  1880. </productMenu>
  1881. <productMenu id="quickGuide"
  1882. type="0"
  1883. url=""
  1884. size="344KB" >
  1885. </productMenu>
  1886. <productMenu id="userGuide"
  1887. type="1"
  1888. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1889. size="3.41MB" >
  1890. </productMenu>
  1891. <productMenu id="videoGuide"
  1892. type="1"
  1893. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1894. size="3.41MB" >
  1895. </productMenu>
  1896. <productMenu id="connectGuide"
  1897. type="1"
  1898. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1899. size="1.12MB" >
  1900. </productMenu>
  1901. <productMenu id="volume"
  1902. type="11" >
  1903. </productMenu>
  1904. <productMenu id="battery"
  1905. type="1" >
  1906. </productMenu>
  1907. <productID id="3218"
  1908. />
  1909. <productGroupable type="0"
  1910. />
  1911. </product>
  1912. <product id="50R"
  1913. name="50R"
  1914. series="50"
  1915. latestVersion="1.5.1"
  1916. show = "-1" >
  1917. <productMenu id="protocol"
  1918. type="2" >
  1919. </productMenu>
  1920. <productMenu id="alexa"
  1921. type="0" >
  1922. </productMenu>
  1923. <productMenu id="wa"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="sip"
  1927. type="1" >
  1928. </productMenu>
  1929. <productMenu id="meshIntercom"
  1930. type="30" >
  1931. <productMenuType version="1.2.2"
  1932. type="20"
  1933. />
  1934. </productMenu>
  1935. <productMenu id="meshIntercom+"
  1936. type="3"
  1937. url="2" >
  1938. <productMenuType version="1.4.9"
  1939. type="2"
  1940. />
  1941. <productMenuURL version="1.2.2"
  1942. url="0"
  1943. />
  1944. </productMenu>
  1945. <productMenu id="waveIntercom"
  1946. type="1" >
  1947. <productMenuType version="1.3.9"
  1948. type="0"
  1949. />
  1950. </productMenu>
  1951. <productMenu id="bluetoothIntercom"
  1952. type="1" >
  1953. </productMenu>
  1954. <productMenu id="phone"
  1955. type="1" >
  1956. </productMenu>
  1957. <productMenu id="music"
  1958. type="1" >
  1959. </productMenu>
  1960. <productMenu id="fmradio"
  1961. type="1" >
  1962. </productMenu>
  1963. <productMenu id="deviceSetting"
  1964. type="1"
  1965. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1966. <productMenuURL version="1.4.9"
  1967. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1968. />
  1969. <productMenuURL version="1.3.9"
  1970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1971. />
  1972. <productMenuURL version="1.2.2"
  1973. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1974. />
  1975. <productMenuURL version="1.1.1"
  1976. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1977. />
  1978. </productMenu>
  1979. <productMenu id="quickGuide"
  1980. type="0"
  1981. url=""
  1982. size="344KB" >
  1983. </productMenu>
  1984. <productMenu id="userGuide"
  1985. type="1"
  1986. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1987. size="3.41MB" >
  1988. </productMenu>
  1989. <productMenu id="videoGuide"
  1990. type="1"
  1991. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1992. size="3.41MB" >
  1993. </productMenu>
  1994. <productMenu id="volume"
  1995. type="11" >
  1996. </productMenu>
  1997. <productMenu id="battery"
  1998. type="1" >
  1999. </productMenu>
  2000. <productID id="3134"
  2001. />
  2002. <productGroupable type="0"
  2003. />
  2004. </product>
  2005. <product id="50C"
  2006. name="50C"
  2007. series="50"
  2008. latestVersion="1.4.3"
  2009. show = "1" >
  2010. <productMenu id="protocol"
  2011. type="2" >
  2012. </productMenu>
  2013. <productMenu id="ota"
  2014. type="0" >
  2015. </productMenu>
  2016. <productMenu id="wa"
  2017. type="1" >
  2018. </productMenu>
  2019. <productMenu id="sip"
  2020. type="1" >
  2021. </productMenu>
  2022. <productMenu id="meshIntercom"
  2023. type="30" >
  2024. <productMenuType version="1.1.1"
  2025. type="20"
  2026. />
  2027. </productMenu>
  2028. <productMenu id="meshIntercom+"
  2029. type="3"
  2030. url="2" >
  2031. <productMenuType version="1.3.9"
  2032. type="2"
  2033. />
  2034. <productMenuURL version="1.1.1"
  2035. url="0"
  2036. />
  2037. </productMenu>
  2038. <productMenu id="waveIntercom"
  2039. type="1" >
  2040. <productMenuType version="1.2.9"
  2041. type="0"
  2042. />
  2043. </productMenu>
  2044. <productMenu id="bluetoothIntercom"
  2045. type="1" >
  2046. </productMenu>
  2047. <productMenu id="phone"
  2048. type="1" >
  2049. </productMenu>
  2050. <productMenu id="music"
  2051. type="1" >
  2052. </productMenu>
  2053. <productMenu id="fmradio"
  2054. type="1" >
  2055. </productMenu>
  2056. <productMenu id="deviceSetting"
  2057. type="1"
  2058. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2059. <productMenuURL version="1.3.9"
  2060. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2061. />
  2062. <productMenuURL version="1.1.1"
  2063. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2064. />
  2065. <productMenuURL version="1.0.1"
  2066. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2067. />
  2068. </productMenu>
  2069. <productMenu id="quickGuide"
  2070. type="0"
  2071. url=""
  2072. size="344KB" >
  2073. </productMenu>
  2074. <productMenu id="userGuide"
  2075. type="1"
  2076. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2077. size="3.41MB" >
  2078. </productMenu>
  2079. <productMenu id="connectGuide"
  2080. type="1"
  2081. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2082. size="1.12MB" >
  2083. </productMenu>
  2084. <productMenu id="volume"
  2085. type="11" >
  2086. </productMenu>
  2087. <productMenu id="battery"
  2088. type="1" >
  2089. </productMenu>
  2090. <productID id="3232"
  2091. />
  2092. <productGroupable type="0"
  2093. />
  2094. </product>
  2095. <product id="PHANTOMXB"
  2096. name="PHANTOM XB"
  2097. series="Helmet"
  2098. latestVersion="1.2.7"
  2099. latestVersionVoicePrompt="1.5"
  2100. show = "-1" >
  2101. <productMenu id="protocol"
  2102. type="2" >
  2103. </productMenu>
  2104. <productMenu id="ota"
  2105. type="2" >
  2106. <otaLanguages>
  2107. <otaLanguage
  2108. id="0"
  2109. name="English"
  2110. package="0"
  2111. />
  2112. <otaLanguage
  2113. id="0"
  2114. name="French"
  2115. package="1"
  2116. />
  2117. <otaLanguage
  2118. id="0"
  2119. name="Spanish"
  2120. package="2"
  2121. />
  2122. <otaLanguage
  2123. id="0"
  2124. name="Italian"
  2125. package="3"
  2126. />
  2127. <otaLanguage
  2128. id="0"
  2129. name="German"
  2130. package="4"
  2131. />
  2132. <otaLanguage
  2133. id="0"
  2134. name="Dutch"
  2135. package="5"
  2136. />
  2137. <otaLanguage
  2138. id="0"
  2139. name="Russian"
  2140. package="6"
  2141. />
  2142. <otaLanguage
  2143. id="0"
  2144. name="Chinese"
  2145. package="7"
  2146. />
  2147. <otaLanguage
  2148. id="0"
  2149. name="Korean"
  2150. package="8"
  2151. />
  2152. <otaLanguage
  2153. id="0"
  2154. name="Japanese"
  2155. package="9"
  2156. />
  2157. <otaLanguage
  2158. id="0"
  2159. name="Finnish"
  2160. package="10"
  2161. />
  2162. <otaLanguage
  2163. id="0"
  2164. name="Polish"
  2165. package="11"
  2166. />
  2167. </otaLanguages>
  2168. <otaPackages>
  2169. <package
  2170. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2171. size="5183988"
  2172. />
  2173. <package
  2174. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2175. size="5183988"
  2176. />
  2177. <package
  2178. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2179. size="5183988"
  2180. />
  2181. <package
  2182. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2183. size="5183988"
  2184. />
  2185. <package
  2186. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2187. size="5183988"
  2188. />
  2189. <package
  2190. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2191. size="5183988"
  2192. />
  2193. <package
  2194. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2195. size="5183988"
  2196. />
  2197. <package
  2198. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2199. size="5183988"
  2200. />
  2201. <package
  2202. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2203. size="5183988"
  2204. />
  2205. <package
  2206. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2207. size="5183988"
  2208. />
  2209. <package
  2210. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2211. size="5183988"
  2212. />
  2213. <package
  2214. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2215. size="5183988"
  2216. />
  2217. </otaPackages>
  2218. </productMenu>
  2219. <productMenu id="wa"
  2220. type="0" >
  2221. </productMenu>
  2222. <productMenu id="led"
  2223. type="5" >
  2224. </productMenu>
  2225. <productMenu id="led+"
  2226. type="2"
  2227. url="1" >
  2228. </productMenu>
  2229. <productMenu id="meshIntercom"
  2230. type="30" >
  2231. </productMenu>
  2232. <productMenu id="meshIntercom+"
  2233. type="3"
  2234. url="2" >
  2235. </productMenu>
  2236. <productMenu id="waveIntercom"
  2237. type="1" >
  2238. </productMenu>
  2239. <productMenu id="fmradio"
  2240. type="0" >
  2241. </productMenu>
  2242. <productMenu id="phone"
  2243. type="1" >
  2244. </productMenu>
  2245. <productMenu id="music"
  2246. type="1" >
  2247. </productMenu>
  2248. <productMenu id="musicSharing"
  2249. type="0" >
  2250. </productMenu>
  2251. <productMenu id="deviceSetting"
  2252. type="1"
  2253. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2254. <productMenuURL version="1.2.4"
  2255. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2256. />
  2257. </productMenu>
  2258. <productMenu id="quickGuide"
  2259. type="0"
  2260. url=""
  2261. size="1.12MB" >
  2262. </productMenu>
  2263. <productMenu id="userGuide"
  2264. type="1"
  2265. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2266. size="2.0MB" >
  2267. </productMenu>
  2268. <productMenu id="videoGuide"
  2269. type="0"
  2270. url=""
  2271. size="3.41MB" >
  2272. </productMenu>
  2273. <productMenu id="volume"
  2274. type="16" >
  2275. </productMenu>
  2276. <productMenu id="volume+"
  2277. type="2"
  2278. url="0x6004" >
  2279. </productMenu>
  2280. <productMenu id="battery"
  2281. type="1" >
  2282. </productMenu>
  2283. <productID id="6A0F"
  2284. />
  2285. <productGroupable type="0"
  2286. />
  2287. </product>
  2288. <product id="PHANTOMXB"
  2289. name="PHANTOM XB"
  2290. series="Helmet"
  2291. latestVersion="1.2.7"
  2292. latestVersionVoicePrompt="1.5"
  2293. show = "-1" >
  2294. <productMenu id="protocol"
  2295. type="2" >
  2296. </productMenu>
  2297. <productMenu id="ota"
  2298. type="2" >
  2299. <otaLanguages>
  2300. <otaLanguage
  2301. id="0"
  2302. name="English"
  2303. package="0"
  2304. />
  2305. <otaLanguage
  2306. id="0"
  2307. name="French"
  2308. package="1"
  2309. />
  2310. <otaLanguage
  2311. id="0"
  2312. name="Spanish"
  2313. package="2"
  2314. />
  2315. <otaLanguage
  2316. id="0"
  2317. name="Italian"
  2318. package="3"
  2319. />
  2320. <otaLanguage
  2321. id="0"
  2322. name="German"
  2323. package="4"
  2324. />
  2325. <otaLanguage
  2326. id="0"
  2327. name="Dutch"
  2328. package="5"
  2329. />
  2330. <otaLanguage
  2331. id="0"
  2332. name="Russian"
  2333. package="6"
  2334. />
  2335. <otaLanguage
  2336. id="0"
  2337. name="Chinese"
  2338. package="7"
  2339. />
  2340. <otaLanguage
  2341. id="0"
  2342. name="Korean"
  2343. package="8"
  2344. />
  2345. <otaLanguage
  2346. id="0"
  2347. name="Japanese"
  2348. package="9"
  2349. />
  2350. <otaLanguage
  2351. id="0"
  2352. name="Finnish"
  2353. package="10"
  2354. />
  2355. <otaLanguage
  2356. id="0"
  2357. name="Polish"
  2358. package="11"
  2359. />
  2360. </otaLanguages>
  2361. <otaPackages>
  2362. <package
  2363. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2364. size="5183988"
  2365. />
  2366. <package
  2367. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2368. size="5183988"
  2369. />
  2370. <package
  2371. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2372. size="5183988"
  2373. />
  2374. <package
  2375. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2376. size="5183988"
  2377. />
  2378. <package
  2379. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2380. size="5183988"
  2381. />
  2382. <package
  2383. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2384. size="5183988"
  2385. />
  2386. <package
  2387. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2388. size="5183988"
  2389. />
  2390. <package
  2391. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2392. size="5183988"
  2393. />
  2394. <package
  2395. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2396. size="5183988"
  2397. />
  2398. <package
  2399. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2400. size="5183988"
  2401. />
  2402. <package
  2403. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2404. size="5183988"
  2405. />
  2406. <package
  2407. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2408. size="5183988"
  2409. />
  2410. </otaPackages>
  2411. </productMenu>
  2412. <productMenu id="wa"
  2413. type="0" >
  2414. </productMenu>
  2415. <productMenu id="led"
  2416. type="5" >
  2417. </productMenu>
  2418. <productMenu id="led+"
  2419. type="2"
  2420. url="1" >
  2421. </productMenu>
  2422. <productMenu id="meshIntercom"
  2423. type="30" >
  2424. </productMenu>
  2425. <productMenu id="meshIntercom+"
  2426. type="3"
  2427. url="2" >
  2428. </productMenu>
  2429. <productMenu id="waveIntercom"
  2430. type="1" >
  2431. </productMenu>
  2432. <productMenu id="fmradio"
  2433. type="0" >
  2434. </productMenu>
  2435. <productMenu id="phone"
  2436. type="1" >
  2437. </productMenu>
  2438. <productMenu id="music"
  2439. type="1" >
  2440. </productMenu>
  2441. <productMenu id="musicSharing"
  2442. type="0" >
  2443. </productMenu>
  2444. <productMenu id="deviceSetting"
  2445. type="1"
  2446. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2447. <productMenuURL version="1.2.4"
  2448. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2449. />
  2450. <productMenuURL version="1.2.1"
  2451. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2452. />
  2453. </productMenu>
  2454. <productMenu id="quickGuide"
  2455. type="0"
  2456. url=""
  2457. size="1.12MB" >
  2458. </productMenu>
  2459. <productMenu id="userGuide"
  2460. type="1"
  2461. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2462. size="2.0MB" >
  2463. </productMenu>
  2464. <productMenu id="videoGuide"
  2465. type="0"
  2466. url=""
  2467. size="3.41MB" >
  2468. </productMenu>
  2469. <productMenu id="volume"
  2470. type="16" >
  2471. </productMenu>
  2472. <productMenu id="volume+"
  2473. type="2"
  2474. url="0x6004" >
  2475. </productMenu>
  2476. <productMenu id="battery"
  2477. type="1" >
  2478. </productMenu>
  2479. <productID id="6A0C"
  2480. />
  2481. <productGroupable type="0"
  2482. />
  2483. </product>
  2484. <product id="PHANTOMKV"
  2485. name="PHANTOM KV"
  2486. series="Helmet"
  2487. latestVersion="1.2.2"
  2488. latestVersionVoicePrompt="1.0"
  2489. show = "-1" >
  2490. <productMenu id="protocol"
  2491. type="2" >
  2492. </productMenu>
  2493. <productMenu id="ota"
  2494. type="0" >
  2495. <otaLanguages>
  2496. <otaLanguage
  2497. id="0"
  2498. name="English"
  2499. package="0"
  2500. />
  2501. <otaLanguage
  2502. id="0"
  2503. name="French"
  2504. package="1"
  2505. />
  2506. <otaLanguage
  2507. id="0"
  2508. name="Spanish"
  2509. package="2"
  2510. />
  2511. <otaLanguage
  2512. id="0"
  2513. name="Italian"
  2514. package="3"
  2515. />
  2516. <otaLanguage
  2517. id="0"
  2518. name="German"
  2519. package="4"
  2520. />
  2521. <otaLanguage
  2522. id="0"
  2523. name="Dutch"
  2524. package="5"
  2525. />
  2526. <otaLanguage
  2527. id="0"
  2528. name="Russian"
  2529. package="6"
  2530. />
  2531. <otaLanguage
  2532. id="0"
  2533. name="Chinese"
  2534. package="7"
  2535. />
  2536. <otaLanguage
  2537. id="0"
  2538. name="Korean"
  2539. package="8"
  2540. />
  2541. <otaLanguage
  2542. id="0"
  2543. name="Japanese"
  2544. package="9"
  2545. />
  2546. <otaLanguage
  2547. id="0"
  2548. name="Finnish"
  2549. package="10"
  2550. />
  2551. <otaLanguage
  2552. id="0"
  2553. name="Polish"
  2554. package="11"
  2555. />
  2556. </otaLanguages>
  2557. <otaPackages>
  2558. <package
  2559. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2560. size="5183988"
  2561. />
  2562. <package
  2563. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2564. size="5183988"
  2565. />
  2566. <package
  2567. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2568. size="5183988"
  2569. />
  2570. <package
  2571. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2572. size="5183988"
  2573. />
  2574. <package
  2575. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2576. size="5183988"
  2577. />
  2578. <package
  2579. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2580. size="5183988"
  2581. />
  2582. <package
  2583. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2584. size="5183988"
  2585. />
  2586. <package
  2587. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2588. size="5183988"
  2589. />
  2590. <package
  2591. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2592. size="5183988"
  2593. />
  2594. <package
  2595. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2596. size="5183988"
  2597. />
  2598. <package
  2599. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2600. size="5183988"
  2601. />
  2602. <package
  2603. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2604. size="5183988"
  2605. />
  2606. </otaPackages>
  2607. </productMenu>
  2608. <productMenu id="wa"
  2609. type="0" >
  2610. </productMenu>
  2611. <productMenu id="led"
  2612. type="5" >
  2613. </productMenu>
  2614. <productMenu id="led+"
  2615. type="2"
  2616. url="1" >
  2617. </productMenu>
  2618. <productMenu id="meshIntercom"
  2619. type="30" >
  2620. </productMenu>
  2621. <productMenu id="meshIntercom+"
  2622. type="3"
  2623. url="2" >
  2624. </productMenu>
  2625. <productMenu id="waveIntercom"
  2626. type="1" >
  2627. </productMenu>
  2628. <productMenu id="fmradio"
  2629. type="0" >
  2630. </productMenu>
  2631. <productMenu id="phone"
  2632. type="1" >
  2633. </productMenu>
  2634. <productMenu id="music"
  2635. type="1" >
  2636. </productMenu>
  2637. <productMenu id="musicSharing"
  2638. type="0" >
  2639. </productMenu>
  2640. <productMenu id="deviceSetting"
  2641. type="1"
  2642. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2643. <productMenuURL version="1.2.4"
  2644. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2645. />
  2646. </productMenu>
  2647. <productMenu id="quickGuide"
  2648. type="0"
  2649. url=""
  2650. size="1.12MB" >
  2651. </productMenu>
  2652. <productMenu id="userGuide"
  2653. type="1"
  2654. url=""
  2655. size="2.0MB" >
  2656. </productMenu>
  2657. <productMenu id="videoGuide"
  2658. type="0"
  2659. url=""
  2660. size="3.41MB" >
  2661. </productMenu>
  2662. <productMenu id="volume"
  2663. type="16" >
  2664. </productMenu>
  2665. <productMenu id="volume+"
  2666. type="2"
  2667. url="0x6004" >
  2668. </productMenu>
  2669. <productMenu id="battery"
  2670. type="1" >
  2671. </productMenu>
  2672. <productID id="6A14"
  2673. />
  2674. <productGroupable type="0"
  2675. />
  2676. </product>
  2677. <product id="PHANTOMKV"
  2678. name="PHANTOM KV"
  2679. series="Helmet"
  2680. latestVersion="1.2.2"
  2681. latestVersionVoicePrompt="1.0"
  2682. show = "-1" >
  2683. <productMenu id="protocol"
  2684. type="2" >
  2685. </productMenu>
  2686. <productMenu id="ota"
  2687. type="0" >
  2688. <otaLanguages>
  2689. <otaLanguage
  2690. id="0"
  2691. name="English"
  2692. package="0"
  2693. />
  2694. <otaLanguage
  2695. id="0"
  2696. name="French"
  2697. package="1"
  2698. />
  2699. <otaLanguage
  2700. id="0"
  2701. name="Spanish"
  2702. package="2"
  2703. />
  2704. <otaLanguage
  2705. id="0"
  2706. name="Italian"
  2707. package="3"
  2708. />
  2709. <otaLanguage
  2710. id="0"
  2711. name="German"
  2712. package="4"
  2713. />
  2714. <otaLanguage
  2715. id="0"
  2716. name="Dutch"
  2717. package="5"
  2718. />
  2719. <otaLanguage
  2720. id="0"
  2721. name="Russian"
  2722. package="6"
  2723. />
  2724. <otaLanguage
  2725. id="0"
  2726. name="Chinese"
  2727. package="7"
  2728. />
  2729. <otaLanguage
  2730. id="0"
  2731. name="Korean"
  2732. package="8"
  2733. />
  2734. <otaLanguage
  2735. id="0"
  2736. name="Japanese"
  2737. package="9"
  2738. />
  2739. <otaLanguage
  2740. id="0"
  2741. name="Finnish"
  2742. package="10"
  2743. />
  2744. <otaLanguage
  2745. id="0"
  2746. name="Polish"
  2747. package="11"
  2748. />
  2749. </otaLanguages>
  2750. <otaPackages>
  2751. <package
  2752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2753. size="5183988"
  2754. />
  2755. <package
  2756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2757. size="5183988"
  2758. />
  2759. <package
  2760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2761. size="5183988"
  2762. />
  2763. <package
  2764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2765. size="5183988"
  2766. />
  2767. <package
  2768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2769. size="5183988"
  2770. />
  2771. <package
  2772. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2773. size="5183988"
  2774. />
  2775. <package
  2776. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2777. size="5183988"
  2778. />
  2779. <package
  2780. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2781. size="5183988"
  2782. />
  2783. <package
  2784. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2785. size="5183988"
  2786. />
  2787. <package
  2788. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2789. size="5183988"
  2790. />
  2791. <package
  2792. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2793. size="5183988"
  2794. />
  2795. <package
  2796. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2797. size="5183988"
  2798. />
  2799. </otaPackages>
  2800. </productMenu>
  2801. <productMenu id="wa"
  2802. type="0" >
  2803. </productMenu>
  2804. <productMenu id="led"
  2805. type="5" >
  2806. </productMenu>
  2807. <productMenu id="led+"
  2808. type="2"
  2809. url="1" >
  2810. </productMenu>
  2811. <productMenu id="meshIntercom"
  2812. type="30" >
  2813. </productMenu>
  2814. <productMenu id="meshIntercom+"
  2815. type="3"
  2816. url="2" >
  2817. </productMenu>
  2818. <productMenu id="waveIntercom"
  2819. type="1" >
  2820. </productMenu>
  2821. <productMenu id="fmradio"
  2822. type="0" >
  2823. </productMenu>
  2824. <productMenu id="phone"
  2825. type="1" >
  2826. </productMenu>
  2827. <productMenu id="music"
  2828. type="1" >
  2829. </productMenu>
  2830. <productMenu id="musicSharing"
  2831. type="0" >
  2832. </productMenu>
  2833. <productMenu id="deviceSetting"
  2834. type="1"
  2835. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2836. <productMenuURL version="1.2.4"
  2837. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2838. />
  2839. </productMenu>
  2840. <productMenu id="quickGuide"
  2841. type="0"
  2842. url=""
  2843. size="1.12MB" >
  2844. </productMenu>
  2845. <productMenu id="userGuide"
  2846. type="1"
  2847. url=""
  2848. size="2.0MB" >
  2849. </productMenu>
  2850. <productMenu id="videoGuide"
  2851. type="0"
  2852. url=""
  2853. size="3.41MB" >
  2854. </productMenu>
  2855. <productMenu id="volume"
  2856. type="16" >
  2857. </productMenu>
  2858. <productMenu id="volume+"
  2859. type="2"
  2860. url="0x6004" >
  2861. </productMenu>
  2862. <productMenu id="battery"
  2863. type="1" >
  2864. </productMenu>
  2865. <productID id="6A13"
  2866. />
  2867. <productGroupable type="0"
  2868. />
  2869. </product>
  2870. <product id="PHANTOMCamera"
  2871. name="PHANTOM Camera"
  2872. series="Helmet"
  2873. latestVersion="1.0.1"
  2874. latestVersionVoicePrompt="0.4"
  2875. show = "-1" >
  2876. <productMenu id="protocol"
  2877. type="2" >
  2878. </productMenu>
  2879. <productMenu id="ota"
  2880. type="3" >
  2881. <otaLanguages>
  2882. <otaLanguage
  2883. id="0"
  2884. name="English"
  2885. package="0"
  2886. />
  2887. <otaLanguage
  2888. id="0"
  2889. name="French"
  2890. package="1"
  2891. />
  2892. <otaLanguage
  2893. id="0"
  2894. name="Spanish"
  2895. package="2"
  2896. />
  2897. <otaLanguage
  2898. id="0"
  2899. name="Italian"
  2900. package="3"
  2901. />
  2902. <otaLanguage
  2903. id="0"
  2904. name="German"
  2905. package="4"
  2906. />
  2907. <otaLanguage
  2908. id="0"
  2909. name="Dutch"
  2910. package="5"
  2911. />
  2912. <otaLanguage
  2913. id="0"
  2914. name="Russian"
  2915. package="6"
  2916. />
  2917. <otaLanguage
  2918. id="0"
  2919. name="Chinese"
  2920. package="7"
  2921. />
  2922. <otaLanguage
  2923. id="0"
  2924. name="Korean"
  2925. package="8"
  2926. />
  2927. <otaLanguage
  2928. id="0"
  2929. name="Japanese"
  2930. package="9"
  2931. />
  2932. <otaLanguage
  2933. id="0"
  2934. name="Finnish"
  2935. package="10"
  2936. />
  2937. <otaLanguage
  2938. id="0"
  2939. name="Polish"
  2940. package="11"
  2941. />
  2942. </otaLanguages>
  2943. <otaPackages>
  2944. <package
  2945. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2946. size="5183988"
  2947. />
  2948. <package
  2949. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2950. size="5183988"
  2951. />
  2952. <package
  2953. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2954. size="5183988"
  2955. />
  2956. <package
  2957. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2958. size="5183988"
  2959. />
  2960. <package
  2961. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2962. size="5183988"
  2963. />
  2964. <package
  2965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2966. size="5183988"
  2967. />
  2968. <package
  2969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2970. size="5183988"
  2971. />
  2972. <package
  2973. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2974. size="5183988"
  2975. />
  2976. <package
  2977. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2978. size="5183988"
  2979. />
  2980. <package
  2981. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2982. size="5183988"
  2983. />
  2984. <package
  2985. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2986. size="5183988"
  2987. />
  2988. <package
  2989. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2990. size="5183988"
  2991. />
  2992. </otaPackages>
  2993. </productMenu>
  2994. <productMenu id="wa"
  2995. type="0" >
  2996. </productMenu>
  2997. <productMenu id="led"
  2998. type="5" >
  2999. </productMenu>
  3000. <productMenu id="led+"
  3001. type="2"
  3002. url="1" >
  3003. </productMenu>
  3004. <productMenu id="meshIntercom"
  3005. type="30" >
  3006. </productMenu>
  3007. <productMenu id="meshIntercom+"
  3008. type="3"
  3009. url="2" >
  3010. </productMenu>
  3011. <productMenu id="waveIntercom"
  3012. type="1" >
  3013. </productMenu>
  3014. <productMenu id="fmradio"
  3015. type="0" >
  3016. </productMenu>
  3017. <productMenu id="phone"
  3018. type="1" >
  3019. </productMenu>
  3020. <productMenu id="music"
  3021. type="1" >
  3022. </productMenu>
  3023. <productMenu id="musicSharing"
  3024. type="0" >
  3025. </productMenu>
  3026. <productMenu id="deviceSetting"
  3027. type="1"
  3028. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3029. </productMenu>
  3030. <productMenu id="quickGuide"
  3031. type="0"
  3032. url=""
  3033. size="1.12MB" >
  3034. </productMenu>
  3035. <productMenu id="userGuide"
  3036. type="1"
  3037. url=""
  3038. size="2.0MB" >
  3039. </productMenu>
  3040. <productMenu id="videoGuide"
  3041. type="0"
  3042. url=""
  3043. size="3.41MB" >
  3044. </productMenu>
  3045. <productMenu id="volume"
  3046. type="16" >
  3047. </productMenu>
  3048. <productMenu id="battery"
  3049. type="1" >
  3050. </productMenu>
  3051. <productID id="6A10"
  3052. />
  3053. <productGroupable type="0"
  3054. />
  3055. </product>
  3056. <product id="PHANTOMCamera"
  3057. name="PHANTOM Camera"
  3058. series="Helmet"
  3059. latestVersion="1.0.1"
  3060. latestVersionVoicePrompt="0.4"
  3061. show = "-1" >
  3062. <productMenu id="protocol"
  3063. type="2" >
  3064. </productMenu>
  3065. <productMenu id="ota"
  3066. type="3" >
  3067. <otaLanguages>
  3068. <otaLanguage
  3069. id="0"
  3070. name="English"
  3071. package="0"
  3072. />
  3073. <otaLanguage
  3074. id="0"
  3075. name="French"
  3076. package="1"
  3077. />
  3078. <otaLanguage
  3079. id="0"
  3080. name="Spanish"
  3081. package="2"
  3082. />
  3083. <otaLanguage
  3084. id="0"
  3085. name="Italian"
  3086. package="3"
  3087. />
  3088. <otaLanguage
  3089. id="0"
  3090. name="German"
  3091. package="4"
  3092. />
  3093. <otaLanguage
  3094. id="0"
  3095. name="Dutch"
  3096. package="5"
  3097. />
  3098. <otaLanguage
  3099. id="0"
  3100. name="Russian"
  3101. package="6"
  3102. />
  3103. <otaLanguage
  3104. id="0"
  3105. name="Chinese"
  3106. package="7"
  3107. />
  3108. <otaLanguage
  3109. id="0"
  3110. name="Korean"
  3111. package="8"
  3112. />
  3113. <otaLanguage
  3114. id="0"
  3115. name="Japanese"
  3116. package="9"
  3117. />
  3118. <otaLanguage
  3119. id="0"
  3120. name="Finnish"
  3121. package="10"
  3122. />
  3123. <otaLanguage
  3124. id="0"
  3125. name="Polish"
  3126. package="11"
  3127. />
  3128. </otaLanguages>
  3129. <otaPackages>
  3130. <package
  3131. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3132. size="5183988"
  3133. />
  3134. <package
  3135. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3136. size="5183988"
  3137. />
  3138. <package
  3139. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3140. size="5183988"
  3141. />
  3142. <package
  3143. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3144. size="5183988"
  3145. />
  3146. <package
  3147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3148. size="5183988"
  3149. />
  3150. <package
  3151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3152. size="5183988"
  3153. />
  3154. <package
  3155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3156. size="5183988"
  3157. />
  3158. <package
  3159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3160. size="5183988"
  3161. />
  3162. <package
  3163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3164. size="5183988"
  3165. />
  3166. <package
  3167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3168. size="5183988"
  3169. />
  3170. <package
  3171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3172. size="5183988"
  3173. />
  3174. <package
  3175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3176. size="5183988"
  3177. />
  3178. </otaPackages>
  3179. </productMenu>
  3180. <productMenu id="wa"
  3181. type="0" >
  3182. </productMenu>
  3183. <productMenu id="led"
  3184. type="5" >
  3185. </productMenu>
  3186. <productMenu id="led+"
  3187. type="2"
  3188. url="1" >
  3189. </productMenu>
  3190. <productMenu id="meshIntercom"
  3191. type="30" >
  3192. </productMenu>
  3193. <productMenu id="meshIntercom+"
  3194. type="3"
  3195. url="2" >
  3196. </productMenu>
  3197. <productMenu id="waveIntercom"
  3198. type="1" >
  3199. </productMenu>
  3200. <productMenu id="fmradio"
  3201. type="0" >
  3202. </productMenu>
  3203. <productMenu id="phone"
  3204. type="1" >
  3205. </productMenu>
  3206. <productMenu id="music"
  3207. type="1" >
  3208. </productMenu>
  3209. <productMenu id="musicSharing"
  3210. type="0" >
  3211. </productMenu>
  3212. <productMenu id="deviceSetting"
  3213. type="1"
  3214. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3215. </productMenu>
  3216. <productMenu id="quickGuide"
  3217. type="0"
  3218. url=""
  3219. size="1.12MB" >
  3220. </productMenu>
  3221. <productMenu id="userGuide"
  3222. type="1"
  3223. url=""
  3224. size="2.0MB" >
  3225. </productMenu>
  3226. <productMenu id="videoGuide"
  3227. type="0"
  3228. url=""
  3229. size="3.41MB" >
  3230. </productMenu>
  3231. <productMenu id="volume"
  3232. type="16" >
  3233. </productMenu>
  3234. <productMenu id="battery"
  3235. type="1" >
  3236. </productMenu>
  3237. <productID id="6A09"
  3238. />
  3239. <productGroupable type="0"
  3240. />
  3241. </product>
  3242. <product id="PHANTOM"
  3243. name="PHANTOM ANC"
  3244. series="Helmet"
  3245. latestVersion="1.2.7"
  3246. latestVersionVoicePrompt="1.5"
  3247. show = "1" >
  3248. <productMenu id="protocol"
  3249. type="2" >
  3250. </productMenu>
  3251. <productMenu id="ota"
  3252. type="2" >
  3253. <productMenuType version="0.6.9"
  3254. type="0"
  3255. />
  3256. <otaLanguages>
  3257. <otaLanguage
  3258. id="0"
  3259. name="English"
  3260. package="0"
  3261. />
  3262. <otaLanguage
  3263. id="0"
  3264. name="French"
  3265. package="1"
  3266. />
  3267. <otaLanguage
  3268. id="0"
  3269. name="Spanish"
  3270. package="2"
  3271. />
  3272. <otaLanguage
  3273. id="0"
  3274. name="Italian"
  3275. package="3"
  3276. />
  3277. <otaLanguage
  3278. id="0"
  3279. name="German"
  3280. package="4"
  3281. />
  3282. <otaLanguage
  3283. id="0"
  3284. name="Dutch"
  3285. package="5"
  3286. />
  3287. <otaLanguage
  3288. id="0"
  3289. name="Russian"
  3290. package="6"
  3291. />
  3292. <otaLanguage
  3293. id="0"
  3294. name="Chinese"
  3295. package="7"
  3296. />
  3297. <otaLanguage
  3298. id="0"
  3299. name="Korean"
  3300. package="8"
  3301. />
  3302. <otaLanguage
  3303. id="0"
  3304. name="Japanese"
  3305. package="9"
  3306. />
  3307. <otaLanguage
  3308. id="0"
  3309. name="Finnish"
  3310. package="10"
  3311. />
  3312. <otaLanguage
  3313. id="0"
  3314. name="Polish"
  3315. package="11"
  3316. />
  3317. </otaLanguages>
  3318. <otaPackages>
  3319. <package
  3320. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3321. size="5183988"
  3322. />
  3323. <package
  3324. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3325. size="5183988"
  3326. />
  3327. <package
  3328. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3329. size="5183988"
  3330. />
  3331. <package
  3332. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3333. size="5183988"
  3334. />
  3335. <package
  3336. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3337. size="5183988"
  3338. />
  3339. <package
  3340. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3341. size="5183988"
  3342. />
  3343. <package
  3344. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3345. size="5183988"
  3346. />
  3347. <package
  3348. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3349. size="5183988"
  3350. />
  3351. <package
  3352. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3353. size="5183988"
  3354. />
  3355. <package
  3356. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3357. size="5183988"
  3358. />
  3359. <package
  3360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3361. size="5183988"
  3362. />
  3363. <package
  3364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3365. size="5183988"
  3366. />
  3367. </otaPackages>
  3368. </productMenu>
  3369. <productMenu id="wa"
  3370. type="0" >
  3371. </productMenu>
  3372. <productMenu id="led"
  3373. type="5" >
  3374. </productMenu>
  3375. <productMenu id="led+"
  3376. type="2"
  3377. url="1" >
  3378. </productMenu>
  3379. <productMenu id="meshIntercom"
  3380. type="30" >
  3381. </productMenu>
  3382. <productMenu id="meshIntercom+"
  3383. type="3"
  3384. url="2" >
  3385. <productMenuURL version="1.0.4"
  3386. url="10"
  3387. />
  3388. </productMenu>
  3389. <productMenu id="waveIntercom"
  3390. type="1" >
  3391. <productMenuType version="1.0.9"
  3392. type="0"
  3393. />
  3394. </productMenu>
  3395. <productMenu id="fmradio"
  3396. type="0" >
  3397. </productMenu>
  3398. <productMenu id="phone"
  3399. type="1" >
  3400. </productMenu>
  3401. <productMenu id="music"
  3402. type="1" >
  3403. </productMenu>
  3404. <productMenu id="musicSharing"
  3405. type="0" >
  3406. </productMenu>
  3407. <productMenu id="deviceSetting"
  3408. type="1"
  3409. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3410. <productMenuURL version="1.2.4"
  3411. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3412. />
  3413. <productMenuURL version="1.2.1"
  3414. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3415. />
  3416. <productMenuURL version="1.1.2"
  3417. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3418. />
  3419. <productMenuURL version="1.0.4"
  3420. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3421. />
  3422. </productMenu>
  3423. <productMenu id="quickGuide"
  3424. type="0"
  3425. url=""
  3426. size="1.12MB" >
  3427. </productMenu>
  3428. <productMenu id="userGuide"
  3429. type="1"
  3430. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3431. size="2.0MB" >
  3432. </productMenu>
  3433. <productMenu id="videoGuide"
  3434. type="0"
  3435. url=""
  3436. size="3.41MB" >
  3437. </productMenu>
  3438. <productMenu id="volume"
  3439. type="16" >
  3440. </productMenu>
  3441. <productMenu id="volume+"
  3442. type="2"
  3443. url="0x6004" >
  3444. </productMenu>
  3445. <productMenu id="soundMode"
  3446. type="1" >
  3447. <productMenuType version="0.9.11"
  3448. type="0"
  3449. />
  3450. </productMenu>
  3451. <productMenu id="battery"
  3452. type="1" >
  3453. </productMenu>
  3454. <productID id="6A01"
  3455. />
  3456. <productGroupable type="0"
  3457. />
  3458. </product>
  3459. <product id="PHANTOM"
  3460. name="PHANTOM ANC"
  3461. series="Helmet"
  3462. latestVersion="1.2.7"
  3463. latestVersionVoicePrompt="1.5"
  3464. show = "-1" >
  3465. <productMenu id="protocol"
  3466. type="2" >
  3467. </productMenu>
  3468. <productMenu id="ota"
  3469. type="2" >
  3470. <otaLanguages>
  3471. <otaLanguage
  3472. id="0"
  3473. name="English"
  3474. package="0"
  3475. />
  3476. <otaLanguage
  3477. id="0"
  3478. name="French"
  3479. package="1"
  3480. />
  3481. <otaLanguage
  3482. id="0"
  3483. name="Spanish"
  3484. package="2"
  3485. />
  3486. <otaLanguage
  3487. id="0"
  3488. name="Italian"
  3489. package="3"
  3490. />
  3491. <otaLanguage
  3492. id="0"
  3493. name="German"
  3494. package="4"
  3495. />
  3496. <otaLanguage
  3497. id="0"
  3498. name="Dutch"
  3499. package="5"
  3500. />
  3501. <otaLanguage
  3502. id="0"
  3503. name="Russian"
  3504. package="6"
  3505. />
  3506. <otaLanguage
  3507. id="0"
  3508. name="Chinese"
  3509. package="7"
  3510. />
  3511. <otaLanguage
  3512. id="0"
  3513. name="Korean"
  3514. package="8"
  3515. />
  3516. <otaLanguage
  3517. id="0"
  3518. name="Japanese"
  3519. package="9"
  3520. />
  3521. <otaLanguage
  3522. id="0"
  3523. name="Finnish"
  3524. package="10"
  3525. />
  3526. <otaLanguage
  3527. id="0"
  3528. name="Polish"
  3529. package="11"
  3530. />
  3531. </otaLanguages>
  3532. <otaPackages>
  3533. <package
  3534. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3535. size="5183988"
  3536. />
  3537. <package
  3538. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3539. size="5183988"
  3540. />
  3541. <package
  3542. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3543. size="5183988"
  3544. />
  3545. <package
  3546. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3547. size="5183988"
  3548. />
  3549. <package
  3550. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3551. size="5183988"
  3552. />
  3553. <package
  3554. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3555. size="5183988"
  3556. />
  3557. <package
  3558. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3559. size="5183988"
  3560. />
  3561. <package
  3562. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3563. size="5183988"
  3564. />
  3565. <package
  3566. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3567. size="5183988"
  3568. />
  3569. <package
  3570. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3571. size="5183988"
  3572. />
  3573. <package
  3574. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3575. size="5183988"
  3576. />
  3577. <package
  3578. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3579. size="5183988"
  3580. />
  3581. </otaPackages>
  3582. </productMenu>
  3583. <productMenu id="led"
  3584. type="5" >
  3585. </productMenu>
  3586. <productMenu id="led+"
  3587. type="2"
  3588. url="1" >
  3589. </productMenu>
  3590. <productMenu id="meshIntercom"
  3591. type="30" >
  3592. </productMenu>
  3593. <productMenu id="meshIntercom+"
  3594. type="3"
  3595. url="2" >
  3596. </productMenu>
  3597. <productMenu id="waveIntercom"
  3598. type="1" >
  3599. </productMenu>
  3600. <productMenu id="fmradio"
  3601. type="0" >
  3602. </productMenu>
  3603. <productMenu id="phone"
  3604. type="1" >
  3605. </productMenu>
  3606. <productMenu id="music"
  3607. type="1" >
  3608. </productMenu>
  3609. <productMenu id="musicSharing"
  3610. type="0" >
  3611. </productMenu>
  3612. <productMenu id="deviceSetting"
  3613. type="1"
  3614. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3615. <productMenuURL version="1.2.4"
  3616. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3617. />
  3618. </productMenu>
  3619. <productMenu id="quickGuide"
  3620. type="0"
  3621. url=""
  3622. size="1.12MB" >
  3623. </productMenu>
  3624. <productMenu id="userGuide"
  3625. type="1"
  3626. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3627. size="2.0MB" >
  3628. </productMenu>
  3629. <productMenu id="videoGuide"
  3630. type="0"
  3631. url=""
  3632. size="3.41MB" >
  3633. </productMenu>
  3634. <productMenu id="volume"
  3635. type="16" >
  3636. </productMenu>
  3637. <productMenu id="volume+"
  3638. type="2"
  3639. url="0x6004" >
  3640. </productMenu>
  3641. <productMenu id="soundMode"
  3642. type="1" >
  3643. </productMenu>
  3644. <productMenu id="battery"
  3645. type="1" >
  3646. </productMenu>
  3647. <productID id="6A19"
  3648. />
  3649. <productGroupable type="0"
  3650. />
  3651. </product>
  3652. <product id="PHANTOM"
  3653. name="PHANTOM"
  3654. series="Helmet"
  3655. latestVersion="1.2.7"
  3656. latestVersionVoicePrompt="1.5"
  3657. show = "-1" >
  3658. <productMenu id="protocol"
  3659. type="2" >
  3660. </productMenu>
  3661. <productMenu id="ota"
  3662. type="2" >
  3663. <otaLanguages>
  3664. <otaLanguage
  3665. id="0"
  3666. name="English"
  3667. package="0"
  3668. />
  3669. <otaLanguage
  3670. id="0"
  3671. name="French"
  3672. package="1"
  3673. />
  3674. <otaLanguage
  3675. id="0"
  3676. name="Spanish"
  3677. package="2"
  3678. />
  3679. <otaLanguage
  3680. id="0"
  3681. name="Italian"
  3682. package="3"
  3683. />
  3684. <otaLanguage
  3685. id="0"
  3686. name="German"
  3687. package="4"
  3688. />
  3689. <otaLanguage
  3690. id="0"
  3691. name="Dutch"
  3692. package="5"
  3693. />
  3694. <otaLanguage
  3695. id="0"
  3696. name="Russian"
  3697. package="6"
  3698. />
  3699. <otaLanguage
  3700. id="0"
  3701. name="Chinese"
  3702. package="7"
  3703. />
  3704. <otaLanguage
  3705. id="0"
  3706. name="Korean"
  3707. package="8"
  3708. />
  3709. <otaLanguage
  3710. id="0"
  3711. name="Japanese"
  3712. package="9"
  3713. />
  3714. <otaLanguage
  3715. id="0"
  3716. name="Finnish"
  3717. package="10"
  3718. />
  3719. <otaLanguage
  3720. id="0"
  3721. name="Polish"
  3722. package="11"
  3723. />
  3724. </otaLanguages>
  3725. <otaPackages>
  3726. <package
  3727. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3728. size="5183988"
  3729. />
  3730. <package
  3731. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3732. size="5183988"
  3733. />
  3734. <package
  3735. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3736. size="5183988"
  3737. />
  3738. <package
  3739. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3740. size="5183988"
  3741. />
  3742. <package
  3743. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3744. size="5183988"
  3745. />
  3746. <package
  3747. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3748. size="5183988"
  3749. />
  3750. <package
  3751. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3752. size="5183988"
  3753. />
  3754. <package
  3755. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3756. size="5183988"
  3757. />
  3758. <package
  3759. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3760. size="5183988"
  3761. />
  3762. <package
  3763. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3764. size="5183988"
  3765. />
  3766. <package
  3767. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3768. size="5183988"
  3769. />
  3770. <package
  3771. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3772. size="5183988"
  3773. />
  3774. </otaPackages>
  3775. </productMenu>
  3776. <productMenu id="wa"
  3777. type="0" >
  3778. </productMenu>
  3779. <productMenu id="led"
  3780. type="5" >
  3781. </productMenu>
  3782. <productMenu id="led+"
  3783. type="2"
  3784. url="1" >
  3785. </productMenu>
  3786. <productMenu id="meshIntercom"
  3787. type="30" >
  3788. </productMenu>
  3789. <productMenu id="meshIntercom+"
  3790. type="3"
  3791. url="2" >
  3792. </productMenu>
  3793. <productMenu id="waveIntercom"
  3794. type="1" >
  3795. </productMenu>
  3796. <productMenu id="fmradio"
  3797. type="0" >
  3798. </productMenu>
  3799. <productMenu id="phone"
  3800. type="1" >
  3801. </productMenu>
  3802. <productMenu id="music"
  3803. type="1" >
  3804. </productMenu>
  3805. <productMenu id="musicSharing"
  3806. type="0" >
  3807. </productMenu>
  3808. <productMenu id="deviceSetting"
  3809. type="1"
  3810. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3811. <productMenuURL version="1.2.4"
  3812. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3813. />
  3814. </productMenu>
  3815. <productMenu id="quickGuide"
  3816. type="0"
  3817. url=""
  3818. size="1.52MB" >
  3819. </productMenu>
  3820. <productMenu id="userGuide"
  3821. type="1"
  3822. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3823. size="2.01MB" >
  3824. </productMenu>
  3825. <productMenu id="videoGuide"
  3826. type="0"
  3827. url=""
  3828. size="3.46MB" >
  3829. </productMenu>
  3830. <productMenu id="connectGuide"
  3831. type="1"
  3832. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3833. size="1.1MB" >
  3834. </productMenu>
  3835. <productMenu id="volume"
  3836. type="16" >
  3837. </productMenu>
  3838. <productMenu id="volume+"
  3839. type="2"
  3840. url="0x6004" >
  3841. </productMenu>
  3842. <productMenu id="battery"
  3843. type="1" >
  3844. </productMenu>
  3845. <productID id="6A0E"
  3846. />
  3847. <productGroupable type="0"
  3848. />
  3849. </product>
  3850. <product id="PHANTOM"
  3851. name="PHANTOM"
  3852. series="Helmet"
  3853. latestVersion="1.2.7"
  3854. latestVersionVoicePrompt="1.5"
  3855. show = "1" >
  3856. <productMenu id="protocol"
  3857. type="2" >
  3858. </productMenu>
  3859. <productMenu id="ota"
  3860. type="2" >
  3861. <otaLanguages>
  3862. <otaLanguage
  3863. id="0"
  3864. name="English"
  3865. package="0"
  3866. />
  3867. <otaLanguage
  3868. id="0"
  3869. name="French"
  3870. package="1"
  3871. />
  3872. <otaLanguage
  3873. id="0"
  3874. name="Spanish"
  3875. package="2"
  3876. />
  3877. <otaLanguage
  3878. id="0"
  3879. name="Italian"
  3880. package="3"
  3881. />
  3882. <otaLanguage
  3883. id="0"
  3884. name="German"
  3885. package="4"
  3886. />
  3887. <otaLanguage
  3888. id="0"
  3889. name="Dutch"
  3890. package="5"
  3891. />
  3892. <otaLanguage
  3893. id="0"
  3894. name="Russian"
  3895. package="6"
  3896. />
  3897. <otaLanguage
  3898. id="0"
  3899. name="Chinese"
  3900. package="7"
  3901. />
  3902. <otaLanguage
  3903. id="0"
  3904. name="Korean"
  3905. package="8"
  3906. />
  3907. <otaLanguage
  3908. id="0"
  3909. name="Japanese"
  3910. package="9"
  3911. />
  3912. <otaLanguage
  3913. id="0"
  3914. name="Finnish"
  3915. package="10"
  3916. />
  3917. <otaLanguage
  3918. id="0"
  3919. name="Polish"
  3920. package="11"
  3921. />
  3922. </otaLanguages>
  3923. <otaPackages>
  3924. <package
  3925. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3926. size="5183988"
  3927. />
  3928. <package
  3929. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3930. size="5183988"
  3931. />
  3932. <package
  3933. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3934. size="5183988"
  3935. />
  3936. <package
  3937. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3938. size="5183988"
  3939. />
  3940. <package
  3941. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3942. size="5183988"
  3943. />
  3944. <package
  3945. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3946. size="5183988"
  3947. />
  3948. <package
  3949. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3950. size="5183988"
  3951. />
  3952. <package
  3953. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3954. size="5183988"
  3955. />
  3956. <package
  3957. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3958. size="5183988"
  3959. />
  3960. <package
  3961. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3962. size="5183988"
  3963. />
  3964. <package
  3965. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3966. size="5183988"
  3967. />
  3968. <package
  3969. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3970. size="5183988"
  3971. />
  3972. </otaPackages>
  3973. </productMenu>
  3974. <productMenu id="wa"
  3975. type="0" >
  3976. </productMenu>
  3977. <productMenu id="led"
  3978. type="5" >
  3979. <productMenuType version="1.0.1"
  3980. type="4"
  3981. />
  3982. </productMenu>
  3983. <productMenu id="led+"
  3984. type="2"
  3985. url="1" >
  3986. <productMenuType version="1.0.1"
  3987. type="-1"
  3988. />
  3989. </productMenu>
  3990. <productMenu id="meshIntercom"
  3991. type="30" >
  3992. </productMenu>
  3993. <productMenu id="meshIntercom+"
  3994. type="3"
  3995. url="2" >
  3996. <productMenuURL version="1.0.4"
  3997. url="10"
  3998. />
  3999. </productMenu>
  4000. <productMenu id="waveIntercom"
  4001. type="1" >
  4002. <productMenuType version="1.0.9"
  4003. type="0"
  4004. />
  4005. </productMenu>
  4006. <productMenu id="fmradio"
  4007. type="0" >
  4008. </productMenu>
  4009. <productMenu id="phone"
  4010. type="1" >
  4011. </productMenu>
  4012. <productMenu id="music"
  4013. type="1" >
  4014. </productMenu>
  4015. <productMenu id="musicSharing"
  4016. type="0" >
  4017. </productMenu>
  4018. <productMenu id="deviceSetting"
  4019. type="1"
  4020. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4021. <productMenuURL version="1.2.4"
  4022. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4023. />
  4024. <productMenuURL version="1.2.1"
  4025. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4026. />
  4027. <productMenuURL version="1.0.4"
  4028. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4029. />
  4030. <productMenuURL version="1.0.1"
  4031. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4032. />
  4033. </productMenu>
  4034. <productMenu id="quickGuide"
  4035. type="0"
  4036. url=""
  4037. size="1.12MB" >
  4038. </productMenu>
  4039. <productMenu id="userGuide"
  4040. type="1"
  4041. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4042. size="2.0MB" >
  4043. </productMenu>
  4044. <productMenu id="videoGuide"
  4045. type="0"
  4046. url=""
  4047. size="3.41MB" >
  4048. </productMenu>
  4049. <productMenu id="connectGuide"
  4050. type="1"
  4051. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4052. size="1.12MB" >
  4053. </productMenu>
  4054. <productMenu id="volume"
  4055. type="16" >
  4056. <productMenuType version="1.0"
  4057. type="13"
  4058. />
  4059. </productMenu>
  4060. <productMenu id="volume+"
  4061. type="2"
  4062. url="0x6004" >
  4063. </productMenu>
  4064. <productMenu id="battery"
  4065. type="1" >
  4066. </productMenu>
  4067. <productID id="6A04"
  4068. />
  4069. <productGroupable type="0"
  4070. />
  4071. </product>
  4072. <product id="PHANTOMEasyLink"
  4073. name="PHANTOM EasyLink"
  4074. series="Helmet"
  4075. latestVersion="0.1"
  4076. latestVersionVoicePrompt="1.2"
  4077. show = "-1" >
  4078. <productMenu id="protocol"
  4079. type="2" >
  4080. </productMenu>
  4081. <productMenu id="ota"
  4082. type="0" >
  4083. <otaLanguages>
  4084. <otaLanguage
  4085. id="0"
  4086. name="English"
  4087. package="0"
  4088. />
  4089. <otaLanguage
  4090. id="0"
  4091. name="French"
  4092. package="1"
  4093. />
  4094. <otaLanguage
  4095. id="0"
  4096. name="Spanish"
  4097. package="2"
  4098. />
  4099. <otaLanguage
  4100. id="0"
  4101. name="Italian"
  4102. package="3"
  4103. />
  4104. <otaLanguage
  4105. id="0"
  4106. name="German"
  4107. package="4"
  4108. />
  4109. <otaLanguage
  4110. id="0"
  4111. name="Dutch"
  4112. package="5"
  4113. />
  4114. <otaLanguage
  4115. id="0"
  4116. name="Russian"
  4117. package="6"
  4118. />
  4119. <otaLanguage
  4120. id="0"
  4121. name="Chinese"
  4122. package="7"
  4123. />
  4124. <otaLanguage
  4125. id="0"
  4126. name="Korean"
  4127. package="8"
  4128. />
  4129. <otaLanguage
  4130. id="0"
  4131. name="Japanese"
  4132. package="9"
  4133. />
  4134. <otaLanguage
  4135. id="0"
  4136. name="Finnish"
  4137. package="10"
  4138. />
  4139. <otaLanguage
  4140. id="0"
  4141. name="Polish"
  4142. package="11"
  4143. />
  4144. </otaLanguages>
  4145. <otaPackages>
  4146. <package
  4147. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4148. size="5183988"
  4149. />
  4150. <package
  4151. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4152. size="5183988"
  4153. />
  4154. <package
  4155. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4156. size="5183988"
  4157. />
  4158. <package
  4159. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4160. size="5183988"
  4161. />
  4162. <package
  4163. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4164. size="5183988"
  4165. />
  4166. <package
  4167. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4168. size="5183988"
  4169. />
  4170. <package
  4171. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4172. size="5183988"
  4173. />
  4174. <package
  4175. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4176. size="5183988"
  4177. />
  4178. <package
  4179. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4180. size="5183988"
  4181. />
  4182. <package
  4183. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4184. size="5183988"
  4185. />
  4186. <package
  4187. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4188. size="5183988"
  4189. />
  4190. <package
  4191. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4192. size="5183988"
  4193. />
  4194. </otaPackages>
  4195. </productMenu>
  4196. <productMenu id="meshIntercom"
  4197. type="30" >
  4198. </productMenu>
  4199. <productMenu id="meshIntercom+"
  4200. type="3"
  4201. url="2" >
  4202. </productMenu>
  4203. <productMenu id="waveIntercom"
  4204. type="1" >
  4205. </productMenu>
  4206. <productMenu id="fmradio"
  4207. type="0" >
  4208. </productMenu>
  4209. <productMenu id="phone"
  4210. type="1" >
  4211. </productMenu>
  4212. <productMenu id="music"
  4213. type="1" >
  4214. </productMenu>
  4215. <productMenu id="musicSharing"
  4216. type="0" >
  4217. </productMenu>
  4218. <productMenu id="deviceSetting"
  4219. type="1"
  4220. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4221. </productMenu>
  4222. <productMenu id="quickGuide"
  4223. type="0"
  4224. url=""
  4225. size="1.12MB" >
  4226. </productMenu>
  4227. <productMenu id="userGuide"
  4228. type="1"
  4229. url=""
  4230. size="2.0MB" >
  4231. </productMenu>
  4232. <productMenu id="videoGuide"
  4233. type="0"
  4234. url=""
  4235. size="3.41MB" >
  4236. </productMenu>
  4237. <productMenu id="connectGuide"
  4238. type="0"
  4239. url=""
  4240. size="1.12MB" >
  4241. </productMenu>
  4242. <productMenu id="volume"
  4243. type="16" >
  4244. </productMenu>
  4245. <productMenu id="battery"
  4246. type="1" >
  4247. </productMenu>
  4248. <productID id="6A18"
  4249. />
  4250. <productGroupable type="0"
  4251. />
  4252. </product>
  4253. <product id="SPIDERXSlim"
  4254. name="SPIDER X Slim"
  4255. series="SPIDER"
  4256. latestVersion="0.9"
  4257. latestVersionVoicePrompt="1.2"
  4258. show = "-1" >
  4259. <productMenu id="protocol"
  4260. type="2" >
  4261. </productMenu>
  4262. <productMenu id="ota"
  4263. type="2" >
  4264. <otaLanguages>
  4265. <otaLanguage
  4266. id="0"
  4267. name="English"
  4268. package="0"
  4269. />
  4270. <otaLanguage
  4271. id="0"
  4272. name="French"
  4273. package="1"
  4274. />
  4275. <otaLanguage
  4276. id="0"
  4277. name="Spanish"
  4278. package="2"
  4279. />
  4280. <otaLanguage
  4281. id="0"
  4282. name="Italian"
  4283. package="3"
  4284. />
  4285. <otaLanguage
  4286. id="0"
  4287. name="German"
  4288. package="4"
  4289. />
  4290. <otaLanguage
  4291. id="0"
  4292. name="Dutch"
  4293. package="5"
  4294. />
  4295. <otaLanguage
  4296. id="0"
  4297. name="Russian"
  4298. package="6"
  4299. />
  4300. <otaLanguage
  4301. id="0"
  4302. name="Chinese"
  4303. package="7"
  4304. />
  4305. <otaLanguage
  4306. id="0"
  4307. name="Korean"
  4308. package="8"
  4309. />
  4310. <otaLanguage
  4311. id="0"
  4312. name="Japanese"
  4313. package="9"
  4314. />
  4315. <otaLanguage
  4316. id="0"
  4317. name="Finnish"
  4318. package="10"
  4319. />
  4320. <otaLanguage
  4321. id="0"
  4322. name="Polish"
  4323. package="11"
  4324. />
  4325. </otaLanguages>
  4326. <otaPackages>
  4327. <package
  4328. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4329. size="5183988"
  4330. />
  4331. <package
  4332. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4333. size="5183988"
  4334. />
  4335. <package
  4336. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4337. size="5183988"
  4338. />
  4339. <package
  4340. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4341. size="5183988"
  4342. />
  4343. <package
  4344. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4345. size="5183988"
  4346. />
  4347. <package
  4348. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4349. size="5183988"
  4350. />
  4351. <package
  4352. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4353. size="5183988"
  4354. />
  4355. <package
  4356. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4357. size="5183988"
  4358. />
  4359. <package
  4360. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4361. size="5183988"
  4362. />
  4363. <package
  4364. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4365. size="5183988"
  4366. />
  4367. <package
  4368. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4369. size="5183988"
  4370. />
  4371. <package
  4372. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4373. size="5183988"
  4374. />
  4375. </otaPackages>
  4376. </productMenu>
  4377. <productMenu id="meshIntercom"
  4378. type="30" >
  4379. </productMenu>
  4380. <productMenu id="meshIntercom+"
  4381. type="3"
  4382. url="2" >
  4383. </productMenu>
  4384. <productMenu id="waveIntercom"
  4385. type="1" >
  4386. </productMenu>
  4387. <productMenu id="fmradio"
  4388. type="1"
  4389. url="1" >
  4390. </productMenu>
  4391. <productMenu id="phone"
  4392. type="1" >
  4393. </productMenu>
  4394. <productMenu id="music"
  4395. type="1" >
  4396. </productMenu>
  4397. <productMenu id="musicSharing"
  4398. type="0" >
  4399. </productMenu>
  4400. <productMenu id="deviceSetting"
  4401. type="1"
  4402. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4403. </productMenu>
  4404. <productMenu id="quickGuide"
  4405. type="0"
  4406. url=""
  4407. size="1.12MB" >
  4408. </productMenu>
  4409. <productMenu id="userGuide"
  4410. type="1"
  4411. url=""
  4412. size="2.0MB" >
  4413. </productMenu>
  4414. <productMenu id="videoGuide"
  4415. type="0"
  4416. url=""
  4417. size="3.41MB" >
  4418. </productMenu>
  4419. <productMenu id="volume"
  4420. type="16" >
  4421. </productMenu>
  4422. <productMenu id="volume+"
  4423. type="2"
  4424. url="0x6004" >
  4425. </productMenu>
  4426. <productMenu id="battery"
  4427. type="1" >
  4428. </productMenu>
  4429. <productID id="6A07"
  4430. />
  4431. <productGroupable type="0"
  4432. />
  4433. </product>
  4434. <product id="XFITM"
  4435. name="X-FIT M"
  4436. series="SPIDER"
  4437. latestVersion="0.1.11"
  4438. latestVersionVoicePrompt="1.1"
  4439. show = "-1" >
  4440. <productMenu id="protocol"
  4441. type="2" >
  4442. </productMenu>
  4443. <productMenu id="ota"
  4444. type="0" >
  4445. <otaLanguages>
  4446. <otaLanguage
  4447. id="0"
  4448. name="English"
  4449. package="0"
  4450. />
  4451. <otaLanguage
  4452. id="0"
  4453. name="French"
  4454. package="1"
  4455. />
  4456. <otaLanguage
  4457. id="0"
  4458. name="Spanish"
  4459. package="2"
  4460. />
  4461. <otaLanguage
  4462. id="0"
  4463. name="Italian"
  4464. package="3"
  4465. />
  4466. <otaLanguage
  4467. id="0"
  4468. name="German"
  4469. package="4"
  4470. />
  4471. <otaLanguage
  4472. id="0"
  4473. name="Dutch"
  4474. package="5"
  4475. />
  4476. <otaLanguage
  4477. id="0"
  4478. name="Russian"
  4479. package="6"
  4480. />
  4481. <otaLanguage
  4482. id="0"
  4483. name="Chinese"
  4484. package="7"
  4485. />
  4486. <otaLanguage
  4487. id="0"
  4488. name="Korean"
  4489. package="8"
  4490. />
  4491. <otaLanguage
  4492. id="0"
  4493. name="Japanese"
  4494. package="9"
  4495. />
  4496. <otaLanguage
  4497. id="0"
  4498. name="Finnish"
  4499. package="10"
  4500. />
  4501. <otaLanguage
  4502. id="0"
  4503. name="Polish"
  4504. package="11"
  4505. />
  4506. </otaLanguages>
  4507. <otaPackages>
  4508. <package
  4509. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4510. size="5183988"
  4511. />
  4512. <package
  4513. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4514. size="5183988"
  4515. />
  4516. <package
  4517. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4518. size="5183988"
  4519. />
  4520. <package
  4521. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4522. size="5183988"
  4523. />
  4524. <package
  4525. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4526. size="5183988"
  4527. />
  4528. <package
  4529. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4530. size="5183988"
  4531. />
  4532. <package
  4533. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4534. size="5183988"
  4535. />
  4536. <package
  4537. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4538. size="5183988"
  4539. />
  4540. <package
  4541. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4542. size="5183988"
  4543. />
  4544. <package
  4545. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4546. size="5183988"
  4547. />
  4548. <package
  4549. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4550. size="5183988"
  4551. />
  4552. <package
  4553. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4554. size="5183988"
  4555. />
  4556. </otaPackages>
  4557. </productMenu>
  4558. <productMenu id="meshIntercom"
  4559. type="30" >
  4560. </productMenu>
  4561. <productMenu id="meshIntercom+"
  4562. type="3"
  4563. url="2" >
  4564. </productMenu>
  4565. <productMenu id="waveIntercom"
  4566. type="1" >
  4567. </productMenu>
  4568. <productMenu id="fmradio"
  4569. type="1"
  4570. url="1" >
  4571. </productMenu>
  4572. <productMenu id="phone"
  4573. type="1" >
  4574. </productMenu>
  4575. <productMenu id="music"
  4576. type="1" >
  4577. </productMenu>
  4578. <productMenu id="musicSharing"
  4579. type="0" >
  4580. </productMenu>
  4581. <productMenu id="deviceSetting"
  4582. type="1"
  4583. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4584. </productMenu>
  4585. <productMenu id="quickGuide"
  4586. type="0"
  4587. url=""
  4588. size="1.12MB" >
  4589. </productMenu>
  4590. <productMenu id="userGuide"
  4591. type="1"
  4592. url=""
  4593. size="2.0MB" >
  4594. </productMenu>
  4595. <productMenu id="videoGuide"
  4596. type="0"
  4597. url=""
  4598. size="3.41MB" >
  4599. </productMenu>
  4600. <productMenu id="volume"
  4601. type="16" >
  4602. </productMenu>
  4603. <productMenu id="volume+"
  4604. type="2"
  4605. url="0x6004" >
  4606. </productMenu>
  4607. <productMenu id="battery"
  4608. type="1" >
  4609. </productMenu>
  4610. <productID id="6A17"
  4611. />
  4612. <productGroupable type="0"
  4613. />
  4614. </product>
  4615. <product id="VORTEXMESH"
  4616. name="VORTEX MESH"
  4617. series="Helmet"
  4618. latestVersion="0.1.11"
  4619. latestVersionVoicePrompt="1.1"
  4620. show = "-1" >
  4621. <productMenu id="protocol"
  4622. type="2" >
  4623. </productMenu>
  4624. <productMenu id="ota"
  4625. type="0" >
  4626. <otaLanguages>
  4627. <otaLanguage
  4628. id="0"
  4629. name="English"
  4630. package="0"
  4631. />
  4632. <otaLanguage
  4633. id="0"
  4634. name="French"
  4635. package="1"
  4636. />
  4637. <otaLanguage
  4638. id="0"
  4639. name="Spanish"
  4640. package="2"
  4641. />
  4642. <otaLanguage
  4643. id="0"
  4644. name="Italian"
  4645. package="3"
  4646. />
  4647. <otaLanguage
  4648. id="0"
  4649. name="German"
  4650. package="4"
  4651. />
  4652. <otaLanguage
  4653. id="0"
  4654. name="Dutch"
  4655. package="5"
  4656. />
  4657. <otaLanguage
  4658. id="0"
  4659. name="Russian"
  4660. package="6"
  4661. />
  4662. <otaLanguage
  4663. id="0"
  4664. name="Chinese"
  4665. package="7"
  4666. />
  4667. <otaLanguage
  4668. id="0"
  4669. name="Korean"
  4670. package="8"
  4671. />
  4672. <otaLanguage
  4673. id="0"
  4674. name="Japanese"
  4675. package="9"
  4676. />
  4677. <otaLanguage
  4678. id="0"
  4679. name="Finnish"
  4680. package="10"
  4681. />
  4682. <otaLanguage
  4683. id="0"
  4684. name="Polish"
  4685. package="11"
  4686. />
  4687. </otaLanguages>
  4688. <otaPackages>
  4689. <package
  4690. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4691. size="5183988"
  4692. />
  4693. <package
  4694. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4695. size="5183988"
  4696. />
  4697. <package
  4698. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4699. size="5183988"
  4700. />
  4701. <package
  4702. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4703. size="5183988"
  4704. />
  4705. <package
  4706. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4707. size="5183988"
  4708. />
  4709. <package
  4710. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4711. size="5183988"
  4712. />
  4713. <package
  4714. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4715. size="5183988"
  4716. />
  4717. <package
  4718. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4719. size="5183988"
  4720. />
  4721. <package
  4722. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4723. size="5183988"
  4724. />
  4725. <package
  4726. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4727. size="5183988"
  4728. />
  4729. <package
  4730. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4731. size="5183988"
  4732. />
  4733. <package
  4734. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4735. size="5183988"
  4736. />
  4737. </otaPackages>
  4738. </productMenu>
  4739. <productMenu id="wa"
  4740. type="0" >
  4741. </productMenu>
  4742. <productMenu id="led"
  4743. type="5" >
  4744. </productMenu>
  4745. <productMenu id="led+"
  4746. type="2"
  4747. url="1" >
  4748. </productMenu>
  4749. <productMenu id="meshIntercom"
  4750. type="30" >
  4751. </productMenu>
  4752. <productMenu id="meshIntercom+"
  4753. type="3"
  4754. url="2" >
  4755. </productMenu>
  4756. <productMenu id="waveIntercom"
  4757. type="1" >
  4758. </productMenu>
  4759. <productMenu id="fmradio"
  4760. type="0" >
  4761. </productMenu>
  4762. <productMenu id="phone"
  4763. type="1" >
  4764. </productMenu>
  4765. <productMenu id="music"
  4766. type="1" >
  4767. </productMenu>
  4768. <productMenu id="musicSharing"
  4769. type="0" >
  4770. </productMenu>
  4771. <productMenu id="deviceSetting"
  4772. type="1"
  4773. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4774. </productMenu>
  4775. <productMenu id="quickGuide"
  4776. type="0"
  4777. url=""
  4778. size="1.12MB" >
  4779. </productMenu>
  4780. <productMenu id="userGuide"
  4781. type="1"
  4782. url=""
  4783. size="2.0MB" >
  4784. </productMenu>
  4785. <productMenu id="videoGuide"
  4786. type="0"
  4787. url=""
  4788. size="3.41MB" >
  4789. </productMenu>
  4790. <productMenu id="volume"
  4791. type="16" >
  4792. </productMenu>
  4793. <productMenu id="battery"
  4794. type="1" >
  4795. </productMenu>
  4796. <productID id="6A12"
  4797. />
  4798. <productGroupable type="0"
  4799. />
  4800. </product>
  4801. <product id="MeshOn"
  4802. name="Mesh ON"
  4803. series="60"
  4804. latestVersion="1.0.1"
  4805. latestVersionVoicePrompt="0.7"
  4806. show = "-1" >
  4807. <productMenu id="protocol"
  4808. type="2" >
  4809. </productMenu>
  4810. <productMenu id="ota"
  4811. type="2" >
  4812. <otaPackages>
  4813. <package
  4814. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4815. size="2945812"
  4816. />
  4817. </otaPackages>
  4818. </productMenu>
  4819. <productMenu id="meshIntercom+"
  4820. type="3"
  4821. url="4" >
  4822. </productMenu>
  4823. <productMenu id="waveIntercom"
  4824. type="0" >
  4825. </productMenu>
  4826. <productMenu id="phone"
  4827. type="0" >
  4828. </productMenu>
  4829. <productMenu id="music"
  4830. type="0" >
  4831. </productMenu>
  4832. <productMenu id="musicSharing"
  4833. type="0" >
  4834. </productMenu>
  4835. <productMenu id="deviceSetting"
  4836. type="1"
  4837. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4838. </productMenu>
  4839. <productMenu id="userGuide"
  4840. type="1"
  4841. url=""
  4842. size="2.0MB" >
  4843. </productMenu>
  4844. <productMenu id="bluetoothHeadset"
  4845. type="1"
  4846. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4847. </productMenu>
  4848. <productMenu id="volume"
  4849. type="0" >
  4850. </productMenu>
  4851. <productMenu id="battery"
  4852. type="1" >
  4853. </productMenu>
  4854. <productID id="684E"
  4855. />
  4856. <productGroupable type="0"
  4857. />
  4858. </product>
  4859. <product id="Impulse"
  4860. name="Impulse"
  4861. series="Helmet"
  4862. latestVersion="1.4.1"
  4863. show = "1" >
  4864. <productMenu id="protocol"
  4865. type="2" >
  4866. </productMenu>
  4867. <productMenu id="alexa"
  4868. type="0" >
  4869. </productMenu>
  4870. <productMenu id="ota"
  4871. type="0" >
  4872. </productMenu>
  4873. <productMenu id="wa"
  4874. type="24" >
  4875. </productMenu>
  4876. <productMenu id="manager"
  4877. type="0" >
  4878. </productMenu>
  4879. <productMenu id="sip"
  4880. type="1" >
  4881. </productMenu>
  4882. <productMenu id="led"
  4883. type="1" >
  4884. <productMenuType version="1.0.1"
  4885. type="2"
  4886. />
  4887. <productMenuType version="1.0"
  4888. type="1"
  4889. />
  4890. </productMenu>
  4891. <productMenu id="meshIntercom"
  4892. type="30" >
  4893. <productMenuType version="1.1.1"
  4894. type="20"
  4895. />
  4896. </productMenu>
  4897. <productMenu id="meshIntercom+"
  4898. type="3"
  4899. url="2" >
  4900. <productMenuType version="1.3.9"
  4901. type="2"
  4902. />
  4903. <productMenuURL version="1.1.1"
  4904. url="0"
  4905. />
  4906. </productMenu>
  4907. <productMenu id="waveIntercom"
  4908. type="1" >
  4909. <productMenuType version="1.3.9"
  4910. type="0"
  4911. />
  4912. </productMenu>
  4913. <productMenu id="bluetoothIntercom"
  4914. type="1" >
  4915. </productMenu>
  4916. <productMenu id="phone"
  4917. type="1" >
  4918. </productMenu>
  4919. <productMenu id="music"
  4920. type="1" >
  4921. </productMenu>
  4922. <productMenu id="fmradio"
  4923. type="1" >
  4924. </productMenu>
  4925. <productMenu id="deviceSetting"
  4926. type="1"
  4927. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4928. <productMenuURL version="1.3.9"
  4929. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4930. />
  4931. <productMenuURL version="1.1.1"
  4932. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4933. />
  4934. <productMenuURL version="1.0.4"
  4935. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4936. />
  4937. </productMenu>
  4938. <productMenu id="quickGuide"
  4939. type="0"
  4940. url=""
  4941. size="344KB" >
  4942. </productMenu>
  4943. <productMenu id="userGuide"
  4944. type="1"
  4945. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4946. size="3.41MB" >
  4947. </productMenu>
  4948. <productMenu id="connectGuide"
  4949. type="1"
  4950. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4951. size="1.12MB" >
  4952. </productMenu>
  4953. <productMenu id="volume"
  4954. type="11" >
  4955. </productMenu>
  4956. <productMenu id="battery"
  4957. type="1" >
  4958. </productMenu>
  4959. <productID id="3148"
  4960. />
  4961. <productGroupable type="0"
  4962. />
  4963. </product>
  4964. <product id="Impulse"
  4965. name="Impulse"
  4966. series="Helmet"
  4967. latestVersion="2.0"
  4968. show = "-1" >
  4969. <productMenu id="protocol"
  4970. type="2" >
  4971. </productMenu>
  4972. <productMenu id="alexa"
  4973. type="0" >
  4974. </productMenu>
  4975. <productMenu id="ota"
  4976. type="0" >
  4977. </productMenu>
  4978. <productMenu id="wa"
  4979. type="8" >
  4980. </productMenu>
  4981. <productMenu id="manager"
  4982. type="0" >
  4983. </productMenu>
  4984. <productMenu id="sip"
  4985. type="1" >
  4986. </productMenu>
  4987. <productMenu id="led"
  4988. type="3" >
  4989. </productMenu>
  4990. <productMenu id="meshIntercom"
  4991. type="20" >
  4992. </productMenu>
  4993. <productMenu id="bluetoothIntercom"
  4994. type="1" >
  4995. </productMenu>
  4996. <productMenu id="phone"
  4997. type="1" >
  4998. </productMenu>
  4999. <productMenu id="music"
  5000. type="1" >
  5001. </productMenu>
  5002. <productMenu id="fmradio"
  5003. type="1" >
  5004. </productMenu>
  5005. <productMenu id="deviceSetting"
  5006. type="1"
  5007. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5008. </productMenu>
  5009. <productMenu id="quickGuide"
  5010. type="1"
  5011. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5012. size="344KB" >
  5013. </productMenu>
  5014. <productMenu id="userGuide"
  5015. type="1"
  5016. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5017. size="3.41MB" >
  5018. </productMenu>
  5019. <productMenu id="volume"
  5020. type="11" >
  5021. </productMenu>
  5022. <productMenu id="battery"
  5023. type="1" >
  5024. </productMenu>
  5025. <productID id="3221"
  5026. />
  5027. <productGroupable type="0"
  5028. />
  5029. </product>
  5030. <product id="Stryker"
  5031. name="Stryker"
  5032. series="Helmet"
  5033. latestVersion="1.4.1"
  5034. show = "1" >
  5035. <productMenu id="protocol"
  5036. type="2" >
  5037. </productMenu>
  5038. <productMenu id="alexa"
  5039. type="0" >
  5040. </productMenu>
  5041. <productMenu id="ota"
  5042. type="0" >
  5043. </productMenu>
  5044. <productMenu id="wa"
  5045. type="40" >
  5046. </productMenu>
  5047. <productMenu id="manager"
  5048. type="0" >
  5049. </productMenu>
  5050. <productMenu id="sip"
  5051. type="1" >
  5052. </productMenu>
  5053. <productMenu id="led"
  5054. type="1" >
  5055. <productMenuType version="1.0.1"
  5056. type="2"
  5057. />
  5058. <productMenuType version="1.0"
  5059. type="1"
  5060. />
  5061. </productMenu>
  5062. <productMenu id="meshIntercom"
  5063. type="30" >
  5064. <productMenuType version="1.1.1"
  5065. type="20"
  5066. />
  5067. </productMenu>
  5068. <productMenu id="meshIntercom+"
  5069. type="3"
  5070. url="2" >
  5071. <productMenuType version="1.3.9"
  5072. type="2"
  5073. />
  5074. <productMenuURL version="1.1.1"
  5075. url="0"
  5076. />
  5077. </productMenu>
  5078. <productMenu id="waveIntercom"
  5079. type="1" >
  5080. <productMenuType version="1.2.9"
  5081. type="0"
  5082. />
  5083. </productMenu>
  5084. <productMenu id="bluetoothIntercom"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="phone"
  5088. type="1" >
  5089. </productMenu>
  5090. <productMenu id="music"
  5091. type="1" >
  5092. </productMenu>
  5093. <productMenu id="fmradio"
  5094. type="1" >
  5095. </productMenu>
  5096. <productMenu id="deviceSetting"
  5097. type="1"
  5098. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5099. <productMenuURL version="1.3.9"
  5100. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5101. />
  5102. <productMenuURL version="1.1.1"
  5103. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5104. />
  5105. <productMenuURL version="1.0.4"
  5106. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5107. />
  5108. </productMenu>
  5109. <productMenu id="quickGuide"
  5110. type="0"
  5111. url=""
  5112. size="344KB" >
  5113. </productMenu>
  5114. <productMenu id="userGuide"
  5115. type="1"
  5116. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5117. size="3.41MB" >
  5118. </productMenu>
  5119. <productMenu id="connectGuide"
  5120. type="1"
  5121. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5122. size="1.12MB" >
  5123. </productMenu>
  5124. <productMenu id="volume"
  5125. type="11" >
  5126. </productMenu>
  5127. <productMenu id="battery"
  5128. type="1" >
  5129. </productMenu>
  5130. <productID id="3154"
  5131. />
  5132. <productGroupable type="0"
  5133. />
  5134. </product>
  5135. <product id="SRL3Plus"
  5136. name="SRL3 Plus"
  5137. series="60"
  5138. latestVersion="0.9.5"
  5139. latestVersionMesh="0.19"
  5140. latestVersionVoicePrompt="1.2"
  5141. show = "-1" >
  5142. <productMenu id="protocol"
  5143. type="2" >
  5144. </productMenu>
  5145. <productMenu id="ota"
  5146. type="2" >
  5147. <otaLanguages>
  5148. <otaLanguage
  5149. id="0"
  5150. name="English"
  5151. package="0"
  5152. />
  5153. <otaLanguage
  5154. id="0"
  5155. name="French"
  5156. package="1"
  5157. />
  5158. <otaLanguage
  5159. id="0"
  5160. name="Spanish"
  5161. package="2"
  5162. />
  5163. <otaLanguage
  5164. id="0"
  5165. name="Italian"
  5166. package="3"
  5167. />
  5168. <otaLanguage
  5169. id="0"
  5170. name="German"
  5171. package="4"
  5172. />
  5173. <otaLanguage
  5174. id="0"
  5175. name="Dutch"
  5176. package="5"
  5177. />
  5178. <otaLanguage
  5179. id="0"
  5180. name="Russian"
  5181. package="6"
  5182. />
  5183. <otaLanguage
  5184. id="0"
  5185. name="Chinese"
  5186. package="7"
  5187. />
  5188. <otaLanguage
  5189. id="0"
  5190. name="Korean"
  5191. package="8"
  5192. />
  5193. <otaLanguage
  5194. id="0"
  5195. name="Japanese"
  5196. package="9"
  5197. />
  5198. <otaLanguage
  5199. id="0"
  5200. name="Finnish"
  5201. package="10"
  5202. />
  5203. </otaLanguages>
  5204. <otaPackages>
  5205. <package
  5206. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5207. size="5183988"
  5208. />
  5209. <package
  5210. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5211. size="5183988"
  5212. />
  5213. <package
  5214. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5215. size="5183988"
  5216. />
  5217. <package
  5218. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5219. size="5183988"
  5220. />
  5221. <package
  5222. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5223. size="5183988"
  5224. />
  5225. <package
  5226. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5227. size="5183988"
  5228. />
  5229. <package
  5230. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5231. size="5183988"
  5232. />
  5233. <package
  5234. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5235. size="5183988"
  5236. />
  5237. <package
  5238. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5239. size="5183988"
  5240. />
  5241. <package
  5242. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5243. size="5183988"
  5244. />
  5245. <package
  5246. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5247. size="5183988"
  5248. />
  5249. </otaPackages>
  5250. </productMenu>
  5251. <productMenu id="sip"
  5252. type="1" >
  5253. </productMenu>
  5254. <productMenu id="illusion"
  5255. type="1" >
  5256. </productMenu>
  5257. <productMenu id="meshIntercom+"
  5258. type="3"
  5259. url="2" >
  5260. </productMenu>
  5261. <productMenu id="waveIntercom"
  5262. type="1" >
  5263. </productMenu>
  5264. <productMenu id="bluetoothIntercom"
  5265. type="1"
  5266. url="2" >
  5267. </productMenu>
  5268. <productMenu id="bluetoothIntercomGrouping"
  5269. type="0" >
  5270. </productMenu>
  5271. <productMenu id="fmradio"
  5272. type="1"
  5273. url="1" >
  5274. </productMenu>
  5275. <productMenu id="phone"
  5276. type="1" >
  5277. </productMenu>
  5278. <productMenu id="music"
  5279. type="1" >
  5280. </productMenu>
  5281. <productMenu id="musicSharing"
  5282. type="0" >
  5283. </productMenu>
  5284. <productMenu id="deviceSetting"
  5285. type="1"
  5286. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5287. </productMenu>
  5288. <productMenu id="quickGuide"
  5289. type="0"
  5290. url=""
  5291. size="1.12MB" >
  5292. </productMenu>
  5293. <productMenu id="userGuide"
  5294. type="0"
  5295. url=""
  5296. size="2.0MB" >
  5297. </productMenu>
  5298. <productMenu id="videoGuide"
  5299. type="0"
  5300. url=""
  5301. size="3.41MB" >
  5302. </productMenu>
  5303. <productMenu id="volume"
  5304. type="16" >
  5305. </productMenu>
  5306. <productMenu id="soundMode"
  5307. type="1" >
  5308. </productMenu>
  5309. <productMenu id="battery"
  5310. type="1" >
  5311. </productMenu>
  5312. <productID id="6A08"
  5313. />
  5314. <productGroupable type="0"
  5315. />
  5316. </product>
  5317. <product id="SRL3"
  5318. name="SRL3"
  5319. series="SRL"
  5320. latestVersion="1.5"
  5321. show = "1" >
  5322. <productMenu id="protocol"
  5323. type="2" >
  5324. </productMenu>
  5325. <productMenu id="alexa"
  5326. type="0" >
  5327. </productMenu>
  5328. <productMenu id="ota"
  5329. type="0" >
  5330. </productMenu>
  5331. <productMenu id="wa"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="sip"
  5335. type="1" >
  5336. </productMenu>
  5337. <productMenu id="meshIntercom"
  5338. type="30" >
  5339. </productMenu>
  5340. <productMenu id="meshIntercom+"
  5341. type="3"
  5342. url="2" >
  5343. <productMenuType version="1.3.9"
  5344. type="2"
  5345. />
  5346. </productMenu>
  5347. <productMenu id="waveIntercom"
  5348. type="1" >
  5349. <productMenuType version="1.4.9"
  5350. type="0"
  5351. />
  5352. </productMenu>
  5353. <productMenu id="bluetoothIntercom"
  5354. type="1" >
  5355. </productMenu>
  5356. <productMenu id="phone"
  5357. type="1" >
  5358. </productMenu>
  5359. <productMenu id="music"
  5360. type="1" >
  5361. </productMenu>
  5362. <productMenu id="fmradio"
  5363. type="1" >
  5364. </productMenu>
  5365. <productMenu id="deviceSetting"
  5366. type="1"
  5367. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5368. <productMenuURL version="1.3"
  5369. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5370. />
  5371. </productMenu>
  5372. <productMenu id="quickGuide"
  5373. type="0"
  5374. url=""
  5375. size="344KB" >
  5376. </productMenu>
  5377. <productMenu id="userGuide"
  5378. type="1"
  5379. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5380. size="3.41MB" >
  5381. </productMenu>
  5382. <productMenu id="connectGuide"
  5383. type="1"
  5384. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5385. size="1.12MB" >
  5386. </productMenu>
  5387. <productMenu id="volume"
  5388. type="11" >
  5389. </productMenu>
  5390. <productMenu id="battery"
  5391. type="1" >
  5392. </productMenu>
  5393. <productID id="3219"
  5394. />
  5395. <productGroupable type="0"
  5396. />
  5397. </product>
  5398. <product id="SRL_Mesh"
  5399. name="SRL-Mesh"
  5400. series="SRL"
  5401. latestVersion="1.7.1"
  5402. show = "1" >
  5403. <productMenu id="protocol"
  5404. type="2" >
  5405. </productMenu>
  5406. <productMenu id="alexa"
  5407. type="0" >
  5408. </productMenu>
  5409. <productMenu id="ota"
  5410. type="0" >
  5411. </productMenu>
  5412. <productMenu id="wa"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="sip"
  5416. type="1" >
  5417. </productMenu>
  5418. <productMenu id="meshIntercom"
  5419. type="30" >
  5420. <productMenuType version="1.1.1"
  5421. type="20"
  5422. />
  5423. </productMenu>
  5424. <productMenu id="meshIntercom+"
  5425. type="3"
  5426. url="2" >
  5427. <productMenuType version="1.5.9"
  5428. type="2"
  5429. />
  5430. <productMenuURL version="1.1.1"
  5431. url="0"
  5432. />
  5433. </productMenu>
  5434. <productMenu id="waveIntercom"
  5435. type="1" >
  5436. <productMenuType version="1.6.9"
  5437. type="0"
  5438. />
  5439. </productMenu>
  5440. <productMenu id="bluetoothIntercom"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="phone"
  5444. type="1" >
  5445. </productMenu>
  5446. <productMenu id="music"
  5447. type="1" >
  5448. </productMenu>
  5449. <productMenu id="fmradio"
  5450. type="1" >
  5451. </productMenu>
  5452. <productMenu id="deviceSetting"
  5453. type="1"
  5454. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5455. <productMenuURL version="1.5"
  5456. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5457. />
  5458. <productMenuURL version="1.1.1"
  5459. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5460. />
  5461. <productMenuURL version="1.0.3"
  5462. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5463. />
  5464. </productMenu>
  5465. <productMenu id="quickGuide"
  5466. type="0"
  5467. url=""
  5468. size="344KB" >
  5469. </productMenu>
  5470. <productMenu id="userGuide"
  5471. type="1"
  5472. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5473. size="3.41MB" >
  5474. </productMenu>
  5475. <productMenu id="connectGuide"
  5476. type="1"
  5477. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5478. size="1.12MB" >
  5479. </productMenu>
  5480. <productMenu id="volume"
  5481. type="11" >
  5482. </productMenu>
  5483. <productMenu id="battery"
  5484. type="1" >
  5485. </productMenu>
  5486. <productID id="3216"
  5487. />
  5488. <productGroupable type="0"
  5489. />
  5490. </product>
  5491. <product id="SRL_EXT"
  5492. name="SRL-EXT"
  5493. series="SRL"
  5494. latestVersion="1.7.1"
  5495. show = "1" >
  5496. <productMenu id="protocol"
  5497. type="2" >
  5498. </productMenu>
  5499. <productMenu id="alexa"
  5500. type="0" >
  5501. </productMenu>
  5502. <productMenu id="ota"
  5503. type="0" >
  5504. </productMenu>
  5505. <productMenu id="wa"
  5506. type="0" >
  5507. </productMenu>
  5508. <productMenu id="sip"
  5509. type="1" >
  5510. </productMenu>
  5511. <productMenu id="meshIntercom"
  5512. type="30" >
  5513. <productMenuType version="1.1.1"
  5514. type="20"
  5515. />
  5516. </productMenu>
  5517. <productMenu id="meshIntercom+"
  5518. type="3"
  5519. url="2" >
  5520. <productMenuType version="1.5.9"
  5521. type="2"
  5522. />
  5523. <productMenuURL version="1.1.1"
  5524. url="0"
  5525. />
  5526. </productMenu>
  5527. <productMenu id="waveIntercom"
  5528. type="1" >
  5529. <productMenuType version="1.6.9"
  5530. type="0"
  5531. />
  5532. </productMenu>
  5533. <productMenu id="bluetoothIntercom"
  5534. type="1" >
  5535. </productMenu>
  5536. <productMenu id="phone"
  5537. type="1" >
  5538. </productMenu>
  5539. <productMenu id="music"
  5540. type="1" >
  5541. </productMenu>
  5542. <productMenu id="fmradio"
  5543. type="1" >
  5544. </productMenu>
  5545. <productMenu id="deviceSetting"
  5546. type="1"
  5547. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5548. <productMenuURL version="1.5"
  5549. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5550. />
  5551. <productMenuURL version="1.1.1"
  5552. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5553. />
  5554. <productMenuURL version="1.0.3"
  5555. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5556. />
  5557. </productMenu>
  5558. <productMenu id="quickGuide"
  5559. type="0"
  5560. url=""
  5561. size="344KB" >
  5562. </productMenu>
  5563. <productMenu id="userGuide"
  5564. type="1"
  5565. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5566. size="3.41MB" >
  5567. </productMenu>
  5568. <productMenu id="connectGuide"
  5569. type="1"
  5570. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5571. size="1.12MB" >
  5572. </productMenu>
  5573. <productMenu id="volume"
  5574. type="11" >
  5575. </productMenu>
  5576. <productMenu id="battery"
  5577. type="1" >
  5578. </productMenu>
  5579. <productID id="3212"
  5580. />
  5581. <productGroupable type="0"
  5582. />
  5583. </product>
  5584. <product id="SRL2"
  5585. name="SRL2"
  5586. series="SRL"
  5587. latestVersion="1.0.9"
  5588. show = "1" >
  5589. <productMenu id="protocol"
  5590. type="0">
  5591. </productMenu>
  5592. <productMenu id="sip"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="bluetoothIntercom"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="intercomSetting"
  5599. type="1" >
  5600. </productMenu>
  5601. <productMenu id="phone"
  5602. type="2" >
  5603. </productMenu>
  5604. <productMenu id="fmradio"
  5605. type="3" >
  5606. </productMenu>
  5607. <productMenu id="deviceSetting"
  5608. type="1"
  5609. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5610. </productMenu>
  5611. <productMenu id="quickGuide"
  5612. type="1"
  5613. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5614. size="846KB" >
  5615. </productMenu>
  5616. <productMenu id="userGuide"
  5617. type="1"
  5618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5619. size="1.18MB" >
  5620. </productMenu>
  5621. <productMenu id="connectGuide"
  5622. type="1"
  5623. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5624. size="1.12MB" >
  5625. </productMenu>
  5626. <productID id="4530"
  5627. />
  5628. <productGroupable type="1"
  5629. />
  5630. </product>
  5631. <product id="Neotec2"
  5632. name="SRL Neotec2"
  5633. series="SRL"
  5634. latestVersion="1.1.5"
  5635. show = "1" >
  5636. <productMenu id="protocol"
  5637. type="0">
  5638. </productMenu>
  5639. <productMenu id="sip"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="bluetoothIntercom"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="intercomSetting"
  5646. type="1" >
  5647. </productMenu>
  5648. <productMenu id="phone"
  5649. type="2" >
  5650. </productMenu>
  5651. <productMenu id="fmradio"
  5652. type="3" >
  5653. </productMenu>
  5654. <productMenu id="deviceSetting"
  5655. type="1"
  5656. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5657. </productMenu>
  5658. <productMenu id="quickGuide"
  5659. type="0"
  5660. url=""
  5661. size="796KB" >
  5662. </productMenu>
  5663. <productMenu id="userGuide"
  5664. type="1"
  5665. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5666. size="1.90MB" >
  5667. </productMenu>
  5668. <productMenu id="connectGuide"
  5669. type="1"
  5670. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5671. size="1.12MB" >
  5672. </productMenu>
  5673. <productID id="4510"
  5674. />
  5675. <productGroupable type="1"
  5676. />
  5677. </product>
  5678. <product id="SPIDERST2ANC"
  5679. name="SPIDER ST2 ANC"
  5680. series="SPIDER"
  5681. latestVersion="0.5.1"
  5682. latestVersionVoicePrompt="0.2"
  5683. latestVersionMesh="0.8"
  5684. show = "-1" >
  5685. <productMenu id="protocol"
  5686. type="2" >
  5687. </productMenu>
  5688. <productMenu id="ota"
  5689. type="0" >
  5690. <otaPackages>
  5691. <package
  5692. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5693. size="2945812"
  5694. />
  5695. </otaPackages>
  5696. </productMenu>
  5697. <productMenu id="wa"
  5698. type="0" >
  5699. </productMenu>
  5700. <productMenu id="led"
  5701. type="1" >
  5702. </productMenu>
  5703. <productMenu id="meshIntercom"
  5704. type="30" >
  5705. </productMenu>
  5706. <productMenu id="fmradio"
  5707. type="1" >
  5708. </productMenu>
  5709. <productMenu id="phone"
  5710. type="1" >
  5711. </productMenu>
  5712. <productMenu id="music"
  5713. type="1" >
  5714. </productMenu>
  5715. <productMenu id="musicSharing"
  5716. type="0" >
  5717. </productMenu>
  5718. <productMenu id="deviceSetting"
  5719. type="1"
  5720. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5721. </productMenu>
  5722. <productMenu id="quickGuide"
  5723. type="1"
  5724. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5725. size="1.12MB" >
  5726. </productMenu>
  5727. <productMenu id="userGuide"
  5728. type="1"
  5729. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5730. size="2.0MB" >
  5731. </productMenu>
  5732. <productMenu id="videoGuide"
  5733. type="1"
  5734. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5735. size="3.41MB" >
  5736. </productMenu>
  5737. <productMenu id="volume"
  5738. type="12" >
  5739. </productMenu>
  5740. <productMenu id="battery"
  5741. type="1" >
  5742. </productMenu>
  5743. <productID id="6A00"
  5744. />
  5745. <productGroupable type="0"
  5746. />
  5747. </product>
  5748. <product id="SPIDER_ST1"
  5749. name="SPIDER ST1"
  5750. series="SPIDER"
  5751. latestVersion="2.5.2"
  5752. latestVersionVoicePrompt="1.6"
  5753. show = "1" >
  5754. <productMenu id="protocol"
  5755. type="2" >
  5756. </productMenu>
  5757. <productMenu id="alexa"
  5758. type="0" >
  5759. </productMenu>
  5760. <productMenu id="ota"
  5761. type="2" >
  5762. <productMenuType version="2.1.9"
  5763. type="0"
  5764. />
  5765. <otaPackages>
  5766. <package
  5767. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5768. size="2945812"
  5769. />
  5770. </otaPackages>
  5771. </productMenu>
  5772. <productMenu id="wa"
  5773. type="0" >
  5774. </productMenu>
  5775. <productMenu id="meshIntercom"
  5776. type="30" >
  5777. <productMenuType version="2.1.1"
  5778. type="20"
  5779. />
  5780. </productMenu>
  5781. <productMenu id="meshIntercom+"
  5782. type="3"
  5783. url="2" >
  5784. <productMenuType version="2.2.9"
  5785. type="2"
  5786. />
  5787. <productMenuURL version="2.1.1"
  5788. url="0"
  5789. />
  5790. </productMenu>
  5791. <productMenu id="waveIntercom"
  5792. type="1" >
  5793. <productMenuType version="2.3.9"
  5794. type="0"
  5795. />
  5796. </productMenu>
  5797. <productMenu id="phone"
  5798. type="1" >
  5799. </productMenu>
  5800. <productMenu id="music"
  5801. type="1" >
  5802. </productMenu>
  5803. <productMenu id="musicSharing"
  5804. type="0" >
  5805. </productMenu>
  5806. <productMenu id="deviceSetting"
  5807. type="1"
  5808. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5809. <productMenuURL version="2.4.9"
  5810. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5811. />
  5812. <productMenuURL version="2.2.2"
  5813. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5814. />
  5815. <productMenuURL version="2.1.1"
  5816. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5817. />
  5818. </productMenu>
  5819. <productMenu id="quickGuide"
  5820. type="0"
  5821. url=""
  5822. size="1.12MB" >
  5823. </productMenu>
  5824. <productMenu id="userGuide"
  5825. type="1"
  5826. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5827. size="2.0MB" >
  5828. </productMenu>
  5829. <productMenu id="videoGuide"
  5830. type="1"
  5831. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5832. size="3.41MB" >
  5833. </productMenu>
  5834. <productMenu id="connectGuide"
  5835. type="1"
  5836. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5837. size="1.12MB" >
  5838. </productMenu>
  5839. <productMenu id="volume"
  5840. type="12" >
  5841. </productMenu>
  5842. <productMenu id="battery"
  5843. type="1" >
  5844. </productMenu>
  5845. <productID id="6800"
  5846. />
  5847. <productGroupable type="0"
  5848. />
  5849. </product>
  5850. <product id="SPIDER_ST1"
  5851. name="SPIDER ST1"
  5852. series="SPIDER"
  5853. latestVersion="1.2.2"
  5854. show = "-1" >
  5855. <productMenu id="protocol"
  5856. type="2" >
  5857. </productMenu>
  5858. <productMenu id="alexa"
  5859. type="0" >
  5860. </productMenu>
  5861. <productMenu id="ota"
  5862. type="0" >
  5863. </productMenu>
  5864. <productMenu id="wa"
  5865. type="0" >
  5866. </productMenu>
  5867. <productMenu id="meshIntercom"
  5868. type="20" >
  5869. </productMenu>
  5870. <productMenu id="phone"
  5871. type="1" >
  5872. </productMenu>
  5873. <productMenu id="music"
  5874. type="1" >
  5875. </productMenu>
  5876. <productMenu id="deviceSetting"
  5877. type="1"
  5878. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5879. </productMenu>
  5880. <productMenu id="quickGuide"
  5881. type="0"
  5882. url=""
  5883. size="1.12MB" >
  5884. </productMenu>
  5885. <productMenu id="userGuide"
  5886. type="1"
  5887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5888. size="2.0MB" >
  5889. </productMenu>
  5890. <productMenu id="videoGuide"
  5891. type="1"
  5892. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5893. size="3.41MB" >
  5894. </productMenu>
  5895. <productMenu id="volume"
  5896. type="13" >
  5897. <productMenuType version="1.1.6"
  5898. type="14"/>
  5899. </productMenu>
  5900. <productMenu id="battery"
  5901. type="1" >
  5902. </productMenu>
  5903. <productID id="6510"
  5904. />
  5905. <productGroupable type="0"
  5906. />
  5907. </product>
  5908. <product id="SPIDER_RT1"
  5909. name="SPIDER RT1"
  5910. series="SPIDER"
  5911. latestVersion="2.5.2"
  5912. latestVersionVoicePrompt="1.6"
  5913. show = "1" >
  5914. <productMenu id="protocol"
  5915. type="2" >
  5916. </productMenu>
  5917. <productMenu id="alexa"
  5918. type="0" >
  5919. </productMenu>
  5920. <productMenu id="ota"
  5921. type="2" >
  5922. <productMenuType version="2.1.9"
  5923. type="0"
  5924. />
  5925. <otaPackages>
  5926. <package
  5927. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5928. size="2945812"
  5929. />
  5930. </otaPackages>
  5931. </productMenu>
  5932. <productMenu id="wa"
  5933. type="0" >
  5934. </productMenu>
  5935. <productMenu id="meshIntercom"
  5936. type="30" >
  5937. <productMenuType version="2.1.1"
  5938. type="20"
  5939. />
  5940. </productMenu>
  5941. <productMenu id="meshIntercom+"
  5942. type="3"
  5943. url="2" >
  5944. <productMenuType version="2.2.9"
  5945. type="2"
  5946. />
  5947. <productMenuURL version="2.1.1"
  5948. url="0"
  5949. />
  5950. </productMenu>
  5951. <productMenu id="waveIntercom"
  5952. type="1" >
  5953. <productMenuType version="2.3.9"
  5954. type="0"
  5955. />
  5956. </productMenu>
  5957. <productMenu id="phone"
  5958. type="1" >
  5959. </productMenu>
  5960. <productMenu id="music"
  5961. type="1" >
  5962. </productMenu>
  5963. <productMenu id="musicSharing"
  5964. type="0" >
  5965. </productMenu>
  5966. <productMenu id="deviceSetting"
  5967. type="1"
  5968. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5969. <productMenuURL version="2.4.9"
  5970. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5971. />
  5972. <productMenuURL version="2.2.2"
  5973. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5974. />
  5975. <productMenuURL version="2.1.1"
  5976. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5977. />
  5978. </productMenu>
  5979. <productMenu id="quickGuide"
  5980. type="0"
  5981. url=""
  5982. size="1.12MB" >
  5983. </productMenu>
  5984. <productMenu id="userGuide"
  5985. type="1"
  5986. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5987. size="2.0MB" >
  5988. </productMenu>
  5989. <productMenu id="videoGuide"
  5990. type="1"
  5991. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5992. size="3.41MB" >
  5993. </productMenu>
  5994. <productMenu id="connectGuide"
  5995. type="1"
  5996. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5997. size="1.12MB" >
  5998. </productMenu>
  5999. <productMenu id="volume"
  6000. type="12" >
  6001. </productMenu>
  6002. <productMenu id="battery"
  6003. type="1" >
  6004. </productMenu>
  6005. <productID id="6810"
  6006. />
  6007. <productGroupable type="0"
  6008. />
  6009. </product>
  6010. <product id="SPIDER_RT1"
  6011. name="SPIDER RT1"
  6012. series="SPIDER"
  6013. latestVersion="1.2.2"
  6014. show = "-1" >
  6015. <productMenu id="protocol"
  6016. type="2" >
  6017. </productMenu>
  6018. <productMenu id="alexa"
  6019. type="0" >
  6020. </productMenu>
  6021. <productMenu id="ota"
  6022. type="0" >
  6023. </productMenu>
  6024. <productMenu id="wa"
  6025. type="0" >
  6026. </productMenu>
  6027. <productMenu id="meshIntercom"
  6028. type="20" >
  6029. </productMenu>
  6030. <productMenu id="phone"
  6031. type="1" >
  6032. </productMenu>
  6033. <productMenu id="music"
  6034. type="1" >
  6035. </productMenu>
  6036. <productMenu id="deviceSetting"
  6037. type="1"
  6038. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6039. </productMenu>
  6040. <productMenu id="quickGuide"
  6041. type="0"
  6042. url=""
  6043. size="1.32MB" >
  6044. </productMenu>
  6045. <productMenu id="userGuide"
  6046. type="1"
  6047. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6048. size="1.79MB" >
  6049. </productMenu>
  6050. <productMenu id="videoGuide"
  6051. type="1"
  6052. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6053. size="3.41MB" >
  6054. </productMenu>
  6055. <productMenu id="volume"
  6056. type="13" >
  6057. <productMenuType version="1.1.6"
  6058. type="14"/>
  6059. </productMenu>
  6060. <productMenu id="battery"
  6061. type="1" >
  6062. </productMenu>
  6063. <productID id="6500"
  6064. />
  6065. <productGroupable type="0"
  6066. />
  6067. </product>
  6068. <product id="30K"
  6069. name="30K"
  6070. series="30"
  6071. latestVersion="4.5.1"
  6072. show = "1" >
  6073. <productMenu id="protocol"
  6074. type="2" >
  6075. </productMenu>
  6076. <productMenu id="alexa"
  6077. type="0" >
  6078. </productMenu>
  6079. <productMenu id="wa"
  6080. type="1" >
  6081. </productMenu>
  6082. <productMenu id="sip"
  6083. type="1" >
  6084. </productMenu>
  6085. <productMenu id="meshIntercom"
  6086. type="30" >
  6087. <productMenuType version="4.0.4"
  6088. type="20"
  6089. />
  6090. </productMenu>
  6091. <productMenu id="meshIntercom+"
  6092. type="3"
  6093. url="2" >
  6094. <productMenuType version="4.3.9"
  6095. type="2"
  6096. />
  6097. <productMenuURL version="4.0.4"
  6098. url="0"
  6099. />
  6100. </productMenu>
  6101. <productMenu id="waveIntercom"
  6102. type="1" >
  6103. <productMenuType version="4.4.9"
  6104. type="0"
  6105. />
  6106. </productMenu>
  6107. <productMenu id="bluetoothIntercom"
  6108. type="1" >
  6109. </productMenu>
  6110. <productMenu id="phone"
  6111. type="1" >
  6112. </productMenu>
  6113. <productMenu id="music"
  6114. type="1" >
  6115. </productMenu>
  6116. <productMenu id="fmradio"
  6117. type="1" >
  6118. </productMenu>
  6119. <productMenu id="deviceSetting"
  6120. type="1"
  6121. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6122. <productMenuURL version="4.3"
  6123. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6124. />
  6125. <productMenuURL version="4.2"
  6126. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6127. />
  6128. <productMenuURL version="4.0.4"
  6129. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6130. />
  6131. </productMenu>
  6132. <productMenu id="quickGuide"
  6133. type="0"
  6134. url=""
  6135. size="934KB" >
  6136. </productMenu>
  6137. <productMenu id="userGuide"
  6138. type="1"
  6139. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6140. size="1.14MB" >
  6141. </productMenu>
  6142. <productMenu id="connectGuide"
  6143. type="1"
  6144. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6145. size="1.12MB" >
  6146. </productMenu>
  6147. <productMenu id="volume"
  6148. type="11" >
  6149. </productMenu>
  6150. <productMenu id="battery"
  6151. type="1" >
  6152. </productMenu>
  6153. <productID id="3211"
  6154. />
  6155. <productGroupable type="0"
  6156. />
  6157. </product>
  6158. <product id="30K"
  6159. name="30K"
  6160. series="30"
  6161. latestVersion="3.5"
  6162. show = "-1" >
  6163. <productMenu id="protocol"
  6164. type="1"
  6165. url="0">
  6166. </productMenu>
  6167. <productMenu id="wa"
  6168. type="7" >
  6169. </productMenu>
  6170. <productMenu id="sip"
  6171. type="1" >
  6172. </productMenu>
  6173. <productMenu id="meshIntercom"
  6174. type="20" >
  6175. <productMenuType version="2.9.9"
  6176. type="10"
  6177. />
  6178. </productMenu>
  6179. <productMenu id="meshIntercom+"
  6180. type="3"
  6181. url="2" >
  6182. <productMenuType version="3.4.9"
  6183. type="2"
  6184. />
  6185. <productMenuType version="2.9.9"
  6186. type="1"
  6187. />
  6188. <productMenuURL version="3.3.1"
  6189. url="0"
  6190. />
  6191. </productMenu>
  6192. <productMenu id="bluetoothIntercom"
  6193. type="1" >
  6194. </productMenu>
  6195. <productMenu id="phone"
  6196. type="1" >
  6197. </productMenu>
  6198. <productMenu id="music"
  6199. type="1" >
  6200. </productMenu>
  6201. <productMenu id="fmradio"
  6202. type="1" >
  6203. </productMenu>
  6204. <productMenu id="deviceSetting"
  6205. type="1"
  6206. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6207. <productMenuURL version="3.4.9"
  6208. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6209. />
  6210. <productMenuURL version="3.3.1"
  6211. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6212. />
  6213. <productMenuURL version="3.0.1"
  6214. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6215. />
  6216. <productMenuURL version="2.3.1"
  6217. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6218. />
  6219. <productMenuURL version="2.0"
  6220. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6221. />
  6222. <productMenuURL version="1.0.3"
  6223. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6224. />
  6225. </productMenu>
  6226. <productMenu id="quickGuide"
  6227. type="0"
  6228. url=""
  6229. size="1.06MB" >
  6230. </productMenu>
  6231. <productMenu id="userGuide"
  6232. type="1"
  6233. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6234. size="3.15MB" >
  6235. </productMenu>
  6236. <productMenu id="volume"
  6237. type="1" >
  6238. </productMenu>
  6239. <productID id="3110"
  6240. />
  6241. <productGroupable type="0"
  6242. />
  6243. </product>
  6244. <product id="FURY"
  6245. name="FURY"
  6246. series="Helmet"
  6247. latestVersion="1.0"
  6248. show = "-1" >
  6249. <productMenu id="protocol"
  6250. type="2" >
  6251. </productMenu>
  6252. <productMenu id="alexa"
  6253. type="0" >
  6254. </productMenu>
  6255. <productMenu id="ota"
  6256. type="0" >
  6257. </productMenu>
  6258. <productMenu id="wa"
  6259. type="0" >
  6260. </productMenu>
  6261. <productMenu id="meshIntercom"
  6262. type="20" >
  6263. </productMenu>
  6264. <productMenu id="phone"
  6265. type="1" >
  6266. </productMenu>
  6267. <productMenu id="music"
  6268. type="1" >
  6269. </productMenu>
  6270. <productMenu id="fmradio"
  6271. type="1" >
  6272. </productMenu>
  6273. <productMenu id="deviceSetting"
  6274. type="1"
  6275. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6276. </productMenu>
  6277. <productMenu id="quickGuide"
  6278. type="1"
  6279. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6280. size="1.12MB" >
  6281. </productMenu>
  6282. <productMenu id="userGuide"
  6283. type="1"
  6284. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6285. size="2.0MB" >
  6286. </productMenu>
  6287. <productMenu id="volume"
  6288. type="13" >
  6289. </productMenu>
  6290. <productMenu id="battery"
  6291. type="1" >
  6292. </productMenu>
  6293. <productID id="5552"
  6294. />
  6295. <productGroupable type="0"
  6296. />
  6297. </product>
  6298. <product id="MomentumM"
  6299. name="Momentum EVO"
  6300. series="Helmet"
  6301. latestVersion="2.1.2"
  6302. show = "1" >
  6303. <productMenu id="protocol"
  6304. type="1"
  6305. url="0">
  6306. </productMenu>
  6307. <productMenu id="wa"
  6308. type="3" >
  6309. </productMenu>
  6310. <productMenu id="sip"
  6311. type="1" >
  6312. </productMenu>
  6313. <productMenu id="meshIntercom"
  6314. type="20" >
  6315. <productMenuType version="1.9.9"
  6316. type="10"
  6317. />
  6318. </productMenu>
  6319. <productMenu id="bluetoothIntercom"
  6320. type="1" >
  6321. </productMenu>
  6322. <productMenu id="phone"
  6323. type="1" >
  6324. </productMenu>
  6325. <productMenu id="music"
  6326. type="1" >
  6327. </productMenu>
  6328. <productMenu id="fmradio"
  6329. type="1" >
  6330. </productMenu>
  6331. <productMenu id="deviceSetting"
  6332. type="1"
  6333. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6334. <productMenuURL version="1.0.1"
  6335. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6336. />
  6337. </productMenu>
  6338. <productMenu id="quickGuide"
  6339. type="1"
  6340. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6341. size="1.06MB" >
  6342. </productMenu>
  6343. <productMenu id="userGuide"
  6344. type="1"
  6345. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6346. size="3.15MB" >
  6347. </productMenu>
  6348. <productMenu id="connectGuide"
  6349. type="1"
  6350. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6351. size="1.12MB" >
  6352. </productMenu>
  6353. <productMenu id="volume"
  6354. type="2" >
  6355. </productMenu>
  6356. <productID id="3116"
  6357. />
  6358. <productGroupable type="0"
  6359. />
  6360. </product>
  6361. <product id="Momentum"
  6362. name="Momentum"
  6363. series="Helmet"
  6364. latestVersion="1.0.9"
  6365. show = "1" >
  6366. <productMenu id="protocol"
  6367. type="0">
  6368. </productMenu>
  6369. <productMenu id="sip"
  6370. type="1" >
  6371. </productMenu>
  6372. <productMenu id="bluetoothIntercom"
  6373. type="1" >
  6374. </productMenu>
  6375. <productMenu id="intercomSetting"
  6376. type="1" >
  6377. </productMenu>
  6378. <productMenu id="phone"
  6379. type="2" >
  6380. </productMenu>
  6381. <productMenu id="fmradio"
  6382. type="3" >
  6383. </productMenu>
  6384. <productMenu id="deviceSetting"
  6385. type="1"
  6386. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6387. </productMenu>
  6388. <productMenu id="quickGuide"
  6389. type="1"
  6390. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6391. size="796KB" >
  6392. </productMenu>
  6393. <productMenu id="userGuide"
  6394. type="1"
  6395. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6396. size="1.90MB" >
  6397. </productMenu>
  6398. <productMenu id="connectGuide"
  6399. type="1"
  6400. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6401. size="1.12MB" >
  6402. </productMenu>
  6403. <productID id="4310"
  6404. />
  6405. <productGroupable type="1"
  6406. />
  6407. </product>
  6408. <product id="Momentum_Pro"
  6409. name="Momentum Pro"
  6410. series="Helmet"
  6411. latestVersion="1.0.6"
  6412. show = "1" >
  6413. <productMenu id="protocol"
  6414. type="0">
  6415. </productMenu>
  6416. <productMenu id="sip"
  6417. type="1" >
  6418. </productMenu>
  6419. <productMenu id="bluetoothIntercom"
  6420. type="1" >
  6421. </productMenu>
  6422. <productMenu id="intercomSetting"
  6423. type="1" >
  6424. </productMenu>
  6425. <productMenu id="phone"
  6426. type="2" >
  6427. </productMenu>
  6428. <productMenu id="fmradio"
  6429. type="3" >
  6430. </productMenu>
  6431. <productMenu id="deviceSetting"
  6432. type="1"
  6433. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6434. </productMenu>
  6435. <productMenu id="quickGuide"
  6436. type="1"
  6437. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6438. size="796KB" >
  6439. </productMenu>
  6440. <productMenu id="userGuide"
  6441. type="1"
  6442. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6443. size="1.90MB" >
  6444. </productMenu>
  6445. <productMenu id="connectGuide"
  6446. type="1"
  6447. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6448. size="1.12MB" >
  6449. </productMenu>
  6450. <productID id="4330"
  6451. />
  6452. <productGroupable type="1"
  6453. />
  6454. </product>
  6455. <product id="Momentum_INC"
  6456. name="Momentum INC"
  6457. series="Helmet"
  6458. latestVersion="1.0.7"
  6459. show = "1" >
  6460. <productMenu id="protocol"
  6461. type="0">
  6462. </productMenu>
  6463. <productMenu id="sip"
  6464. type="1" >
  6465. </productMenu>
  6466. <productMenu id="bluetoothIntercom"
  6467. type="1" >
  6468. </productMenu>
  6469. <productMenu id="intercomSetting"
  6470. type="1" >
  6471. </productMenu>
  6472. <productMenu id="phone"
  6473. type="2" >
  6474. </productMenu>
  6475. <productMenu id="fmradio"
  6476. type="3" >
  6477. </productMenu>
  6478. <productMenu id="deviceSetting"
  6479. type="1"
  6480. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6481. </productMenu>
  6482. <productMenu id="quickGuide"
  6483. type="1"
  6484. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6485. size="794KB" >
  6486. </productMenu>
  6487. <productMenu id="userGuide"
  6488. type="1"
  6489. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6490. size="1.53MB" >
  6491. </productMenu>
  6492. <productMenu id="connectGuide"
  6493. type="1"
  6494. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6495. size="1.12MB" >
  6496. </productMenu>
  6497. <productID id="4410"
  6498. />
  6499. <productGroupable type="1"
  6500. />
  6501. </product>
  6502. <product id="Momentum_INCP"
  6503. name="Momentum INC Pro"
  6504. series="Helmet"
  6505. latestVersion="1.0.4"
  6506. show = "1" >
  6507. <productMenu id="protocol"
  6508. type="0">
  6509. </productMenu>
  6510. <productMenu id="sip"
  6511. type="1" >
  6512. </productMenu>
  6513. <productMenu id="bluetoothIntercom"
  6514. type="1" >
  6515. </productMenu>
  6516. <productMenu id="intercomSetting"
  6517. type="1" >
  6518. </productMenu>
  6519. <productMenu id="phone"
  6520. type="2" >
  6521. </productMenu>
  6522. <productMenu id="fmradio"
  6523. type="3" >
  6524. </productMenu>
  6525. <productMenu id="deviceSetting"
  6526. type="1"
  6527. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6528. </productMenu>
  6529. <productMenu id="quickGuide"
  6530. type="1"
  6531. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6532. size="794KB" >
  6533. </productMenu>
  6534. <productMenu id="userGuide"
  6535. type="1"
  6536. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6537. size="1.53MB" >
  6538. </productMenu>
  6539. <productMenu id="connectGuide"
  6540. type="1"
  6541. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6542. size="1.12MB" >
  6543. </productMenu>
  6544. <productID id="4430"
  6545. />
  6546. <productGroupable type="1"
  6547. />
  6548. </product>
  6549. <product id="Momentum_Lite"
  6550. name="Momentum Lite"
  6551. series="Helmet"
  6552. latestVersion="2.0.3"
  6553. show = "1" >
  6554. <productMenu id="protocol"
  6555. type="0">
  6556. </productMenu>
  6557. <productMenu id="sip"
  6558. type="1" >
  6559. </productMenu>
  6560. <productMenu id="bluetoothIntercom"
  6561. type="1" >
  6562. </productMenu>
  6563. <productMenu id="phone"
  6564. type="2" >
  6565. </productMenu>
  6566. <productMenu id="fmradio"
  6567. type="3" >
  6568. </productMenu>
  6569. <productMenu id="deviceSetting"
  6570. type="1"
  6571. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6572. <productMenuURL version="1.1"
  6573. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6574. />
  6575. </productMenu>
  6576. <productMenu id="quickGuide"
  6577. type="1"
  6578. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6579. size="790KB" >
  6580. </productMenu>
  6581. <productMenu id="userGuide"
  6582. type="1"
  6583. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6584. size="1.42MB" >
  6585. </productMenu>
  6586. <productMenu id="connectGuide"
  6587. type="1"
  6588. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6589. size="1.12MB" >
  6590. </productMenu>
  6591. <productID id="5526"
  6592. />
  6593. <productGroupable type="0"
  6594. />
  6595. </product>
  6596. <product id="OUTRUSHM"
  6597. name="OUTRUSH M"
  6598. series="Helmet"
  6599. latestVersion="1.0"
  6600. show = "-1" >
  6601. <productMenu id="protocol"
  6602. type="2" >
  6603. </productMenu>
  6604. <productMenu id="alexa"
  6605. type="0" >
  6606. </productMenu>
  6607. <productMenu id="ota"
  6608. type="0" >
  6609. </productMenu>
  6610. <productMenu id="wa"
  6611. type="0" >
  6612. </productMenu>
  6613. <productMenu id="meshIntercom"
  6614. type="30" >
  6615. </productMenu>
  6616. <productMenu id="phone"
  6617. type="1" >
  6618. </productMenu>
  6619. <productMenu id="music"
  6620. type="1" >
  6621. </productMenu>
  6622. <productMenu id="fmradio"
  6623. type="1" >
  6624. </productMenu>
  6625. <productMenu id="deviceSetting"
  6626. type="1"
  6627. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6628. </productMenu>
  6629. <productMenu id="quickGuide"
  6630. type="1"
  6631. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6632. size="1.12MB" >
  6633. </productMenu>
  6634. <productMenu id="userGuide"
  6635. type="1"
  6636. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6637. size="2.0MB" >
  6638. </productMenu>
  6639. <productMenu id="volume"
  6640. type="13" >
  6641. </productMenu>
  6642. <productMenu id="battery"
  6643. type="1" >
  6644. </productMenu>
  6645. <productID id="5600"
  6646. />
  6647. <productGroupable type="0"
  6648. />
  6649. </product>
  6650. <product id="ProRideEVO"
  6651. name="ProRide EVO"
  6652. series="Helmet"
  6653. latestVersion="1.1.2"
  6654. show = "1" >
  6655. <productMenu id="protocol"
  6656. type="0">
  6657. </productMenu>
  6658. <productMenu id="sip"
  6659. type="1" >
  6660. </productMenu>
  6661. <productMenu id="bluetoothIntercom"
  6662. type="1" >
  6663. </productMenu>
  6664. <productMenu id="phone"
  6665. type="2" >
  6666. </productMenu>
  6667. <productMenu id="fmradio"
  6668. type="3" >
  6669. </productMenu>
  6670. <productMenu id="deviceSetting"
  6671. type="1"
  6672. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6673. </productMenu>
  6674. <productMenu id="userGuide"
  6675. type="1"
  6676. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6677. size="778KB" >
  6678. </productMenu>
  6679. <productMenu id="connectGuide"
  6680. type="1"
  6681. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6682. size="1.12MB" >
  6683. </productMenu>
  6684. <productID id="5426"
  6685. />
  6686. <productGroupable type="0"
  6687. />
  6688. </product>
  6689. <product id="OUTRUSHR"
  6690. name="OUTRUSH R"
  6691. series="Helmet"
  6692. latestVersion="2.1"
  6693. show = "1" >
  6694. <productMenu id="protocol"
  6695. type="3" >
  6696. </productMenu>
  6697. <productMenu id="sip"
  6698. type="1" >
  6699. </productMenu>
  6700. <productMenu id="bluetoothIntercom"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="phone"
  6704. type="1" >
  6705. </productMenu>
  6706. <productMenu id="fmradio"
  6707. type="0" >
  6708. </productMenu>
  6709. <productMenu id="deviceSetting"
  6710. type="1"
  6711. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6712. </productMenu>
  6713. <productMenu id="userGuide"
  6714. type="1"
  6715. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6716. size="1.14MB" >
  6717. </productMenu>
  6718. <productMenu id="connectGuide"
  6719. type="1"
  6720. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6721. size="1.12MB" >
  6722. </productMenu>
  6723. <productID id="5440"
  6724. />
  6725. <productGroupable type="0"
  6726. />
  6727. </product>
  6728. <product id="OUTRUSHR"
  6729. name="OUTRUSH R"
  6730. series="Helmet"
  6731. latestVersion="1.1.4"
  6732. show = "-1" >
  6733. <productMenu id="protocol"
  6734. type="0">
  6735. </productMenu>
  6736. <productMenu id="sip"
  6737. type="1" >
  6738. </productMenu>
  6739. <productMenu id="bluetoothIntercom"
  6740. type="1" >
  6741. </productMenu>
  6742. <productMenu id="phone"
  6743. type="2" >
  6744. </productMenu>
  6745. <productMenu id="fmradio"
  6746. type="3" >
  6747. </productMenu>
  6748. <productMenu id="deviceSetting"
  6749. type="1"
  6750. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6751. </productMenu>
  6752. <productMenu id="userGuide"
  6753. type="1"
  6754. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.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="5424"
  6763. />
  6764. <productGroupable type="0"
  6765. />
  6766. </product>
  6767. <product id="OUTSTARS"
  6768. name="OUTSTAR S"
  6769. series="Helmet"
  6770. latestVersion="2.0.1"
  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="phone"
  6782. type="1" >
  6783. </productMenu>
  6784. <productMenu id="fmradio"
  6785. type="0" >
  6786. </productMenu>
  6787. <productMenu id="deviceSetting"
  6788. type="1"
  6789. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6790. </productMenu>
  6791. <productMenu id="userGuide"
  6792. type="0"
  6793. url=""
  6794. size="1.14MB" >
  6795. </productMenu>
  6796. <productID id="5443"
  6797. />
  6798. <productGroupable type="0"
  6799. />
  6800. </product>
  6801. <product id="OUTSTARS"
  6802. name="OUTSTAR S"
  6803. series="Helmet"
  6804. latestVersion="1.1.4"
  6805. show = "1" >
  6806. <productMenu id="protocol"
  6807. type="0">
  6808. </productMenu>
  6809. <productMenu id="sip"
  6810. type="1" >
  6811. </productMenu>
  6812. <productMenu id="bluetoothIntercom"
  6813. type="1" >
  6814. </productMenu>
  6815. <productMenu id="phone"
  6816. type="2" >
  6817. </productMenu>
  6818. <productMenu id="fmradio"
  6819. type="3" >
  6820. </productMenu>
  6821. <productMenu id="deviceSetting"
  6822. type="1"
  6823. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6824. </productMenu>
  6825. <productMenu id="quickGuide"
  6826. type="1"
  6827. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6828. size="643KB" >
  6829. </productMenu>
  6830. <productMenu id="userGuide"
  6831. type="1"
  6832. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6833. size="1.15MB" >
  6834. </productMenu>
  6835. <productMenu id="connectGuide"
  6836. type="1"
  6837. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6838. size="1.12MB" >
  6839. </productMenu>
  6840. <productID id="5428"
  6841. />
  6842. <productGroupable type="0"
  6843. />
  6844. </product>
  6845. <product id="OUTRIDE"
  6846. name="OUTRIDE"
  6847. series="Helmet"
  6848. latestVersion="1.0.1"
  6849. show = "1" >
  6850. <productMenu id="protocol"
  6851. type="0">
  6852. </productMenu>
  6853. <productMenu id="sip"
  6854. type="1" >
  6855. </productMenu>
  6856. <productMenu id="bluetoothIntercom"
  6857. type="1" >
  6858. </productMenu>
  6859. <productMenu id="phone"
  6860. type="2" >
  6861. </productMenu>
  6862. <productMenu id="fmradio"
  6863. type="3" >
  6864. </productMenu>
  6865. <productMenu id="deviceSetting"
  6866. type="1"
  6867. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6868. </productMenu>
  6869. <productMenu id="quickGuide"
  6870. type="1"
  6871. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6872. size="643KB" >
  6873. </productMenu>
  6874. <productMenu id="userGuide"
  6875. type="1"
  6876. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6877. size="660KB" >
  6878. </productMenu>
  6879. <productMenu id="connectGuide"
  6880. type="1"
  6881. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6882. size="1.12MB" >
  6883. </productMenu>
  6884. <productID id="5432"
  6885. />
  6886. <productGroupable type="0"
  6887. />
  6888. </product>
  6889. <product id="OUTFORCE"
  6890. name="OUTFORCE"
  6891. series="Helmet"
  6892. latestVersion="1.0.1"
  6893. show = "1" >
  6894. <productMenu id="protocol"
  6895. type="0">
  6896. </productMenu>
  6897. <productMenu id="sip"
  6898. type="1" >
  6899. </productMenu>
  6900. <productMenu id="bluetoothIntercom"
  6901. type="1" >
  6902. </productMenu>
  6903. <productMenu id="phone"
  6904. type="2" >
  6905. </productMenu>
  6906. <productMenu id="fmradio"
  6907. type="3" >
  6908. </productMenu>
  6909. <productMenu id="deviceSetting"
  6910. type="1"
  6911. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6912. </productMenu>
  6913. <productMenu id="quickGuide"
  6914. type="1"
  6915. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6916. size="643KB" >
  6917. </productMenu>
  6918. <productMenu id="userGuide"
  6919. type="1"
  6920. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6921. size="660KB" >
  6922. </productMenu>
  6923. <productMenu id="connectGuide"
  6924. type="1"
  6925. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6926. size="1.12MB" >
  6927. </productMenu>
  6928. <productID id="5430"
  6929. />
  6930. <productGroupable type="0"
  6931. />
  6932. </product>
  6933. <product id="Rumba"
  6934. name="Rumba"
  6935. series="30"
  6936. latestVersion="2.0"
  6937. show = "-1" >
  6938. <productMenu id="protocol"
  6939. type="3" >
  6940. </productMenu>
  6941. <productMenu id="sip"
  6942. type="1" >
  6943. </productMenu>
  6944. <productMenu id="bluetoothIntercom"
  6945. type="1" >
  6946. </productMenu>
  6947. <productMenu id="deviceSetting"
  6948. type="1"
  6949. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6950. </productMenu>
  6951. <productMenu id="quickGuide"
  6952. type="1"
  6953. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6954. size="344KB" >
  6955. </productMenu>
  6956. <productMenu id="userGuide"
  6957. type="1"
  6958. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6959. size="1.14MB" >
  6960. </productMenu>
  6961. <productID id="6322"
  6962. />
  6963. <productGroupable type="0"
  6964. />
  6965. </product>
  6966. <product id="Savage"
  6967. name="Savage"
  6968. series="Helmet"
  6969. latestVersion="1.2.2"
  6970. show = "1" >
  6971. <productMenu id="protocol"
  6972. type="0">
  6973. </productMenu>
  6974. <productMenu id="sip"
  6975. type="1" >
  6976. </productMenu>
  6977. <productMenu id="bluetoothIntercom"
  6978. type="1" >
  6979. </productMenu>
  6980. <productMenu id="phone"
  6981. type="2" >
  6982. </productMenu>
  6983. <productMenu id="fmradio"
  6984. type="3" >
  6985. </productMenu>
  6986. <productMenu id="deviceSetting"
  6987. type="1"
  6988. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6989. <productMenuURL version="1.9"
  6990. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6991. />
  6992. <productMenuURL version="1.1"
  6993. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6994. />
  6995. </productMenu>
  6996. <productMenu id="quickGuide"
  6997. type="1"
  6998. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6999. size="796KB" >
  7000. </productMenu>
  7001. <productMenu id="userGuide"
  7002. type="1"
  7003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7004. size="910KB" >
  7005. </productMenu>
  7006. <productMenu id="connectGuide"
  7007. type="1"
  7008. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7009. size="1.12MB" >
  7010. </productMenu>
  7011. <productID id="5550"
  7012. />
  7013. <productGroupable type="0"
  7014. />
  7015. </product>
  7016. <product id="SPECTER"
  7017. name="SPECTER"
  7018. series="Helmet"
  7019. latestVersion="1.0.7"
  7020. latestVersionVoicePrompt="1.5"
  7021. show = "1" >
  7022. <productMenu id="protocol"
  7023. type="2" >
  7024. </productMenu>
  7025. <productMenu id="ota"
  7026. type="2" >
  7027. <otaLanguages>
  7028. <otaLanguage
  7029. id="0"
  7030. name="English"
  7031. package="0"
  7032. />
  7033. <otaLanguage
  7034. id="0"
  7035. name="French"
  7036. package="1"
  7037. />
  7038. <otaLanguage
  7039. id="0"
  7040. name="Spanish"
  7041. package="2"
  7042. />
  7043. <otaLanguage
  7044. id="0"
  7045. name="Italian"
  7046. package="3"
  7047. />
  7048. <otaLanguage
  7049. id="0"
  7050. name="German"
  7051. package="4"
  7052. />
  7053. <otaLanguage
  7054. id="0"
  7055. name="Dutch"
  7056. package="5"
  7057. />
  7058. <otaLanguage
  7059. id="0"
  7060. name="Russian"
  7061. package="6"
  7062. />
  7063. <otaLanguage
  7064. id="0"
  7065. name="Chinese"
  7066. package="7"
  7067. />
  7068. <otaLanguage
  7069. id="0"
  7070. name="Korean"
  7071. package="8"
  7072. />
  7073. <otaLanguage
  7074. id="0"
  7075. name="Japanese"
  7076. package="9"
  7077. />
  7078. <otaLanguage
  7079. id="0"
  7080. name="Finnish"
  7081. package="10"
  7082. />
  7083. <otaLanguage
  7084. id="0"
  7085. name="Polish"
  7086. package="11"
  7087. />
  7088. </otaLanguages>
  7089. <otaPackages>
  7090. <package
  7091. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7092. size="5183988"
  7093. />
  7094. <package
  7095. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7096. size="5183988"
  7097. />
  7098. <package
  7099. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7100. size="5183988"
  7101. />
  7102. <package
  7103. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7104. size="5183988"
  7105. />
  7106. <package
  7107. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7108. size="5183988"
  7109. />
  7110. <package
  7111. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7112. size="5183988"
  7113. />
  7114. <package
  7115. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7116. size="5183988"
  7117. />
  7118. <package
  7119. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7120. size="5183988"
  7121. />
  7122. <package
  7123. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7124. size="5183988"
  7125. />
  7126. <package
  7127. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7128. size="5183988"
  7129. />
  7130. <package
  7131. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7132. size="5183988"
  7133. />
  7134. <package
  7135. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7136. size="5183988"
  7137. />
  7138. </otaPackages>
  7139. </productMenu>
  7140. <productMenu id="wa"
  7141. type="0" >
  7142. </productMenu>
  7143. <productMenu id="led"
  7144. type="5" >
  7145. </productMenu>
  7146. <productMenu id="led+"
  7147. type="2"
  7148. url="1" >
  7149. </productMenu>
  7150. <productMenu id="meshIntercom+"
  7151. type="3"
  7152. url="2" >
  7153. </productMenu>
  7154. <productMenu id="waveIntercom"
  7155. type="1" >
  7156. </productMenu>
  7157. <productMenu id="fmradio"
  7158. type="0" >
  7159. </productMenu>
  7160. <productMenu id="phone"
  7161. type="1" >
  7162. </productMenu>
  7163. <productMenu id="music"
  7164. type="1" >
  7165. </productMenu>
  7166. <productMenu id="musicSharing"
  7167. type="0" >
  7168. </productMenu>
  7169. <productMenu id="deviceSetting"
  7170. type="1"
  7171. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7172. <productMenuURL version="1.0.4"
  7173. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7174. />
  7175. </productMenu>
  7176. <productMenu id="quickGuide"
  7177. type="0"
  7178. url=""
  7179. size="1.12MB" >
  7180. </productMenu>
  7181. <productMenu id="userGuide"
  7182. type="1"
  7183. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7184. size="2.0MB" >
  7185. </productMenu>
  7186. <productMenu id="videoGuide"
  7187. type="0"
  7188. url=""
  7189. size="3.41MB" >
  7190. </productMenu>
  7191. <productMenu id="volume"
  7192. type="16" >
  7193. </productMenu>
  7194. <productMenu id="volume+"
  7195. type="2"
  7196. url="0x6004" >
  7197. </productMenu>
  7198. <productMenu id="battery"
  7199. type="1" >
  7200. </productMenu>
  7201. <productID id="6A11"
  7202. />
  7203. <productGroupable type="0"
  7204. />
  7205. </product>
  7206. <product id="SPECTER"
  7207. name="SPECTER"
  7208. series="Helmet"
  7209. latestVersion="1.0.7"
  7210. latestVersionVoicePrompt="1.5"
  7211. show = "-1" >
  7212. <productMenu id="protocol"
  7213. type="2" >
  7214. </productMenu>
  7215. <productMenu id="ota"
  7216. type="2" >
  7217. <otaLanguages>
  7218. <otaLanguage
  7219. id="0"
  7220. name="English"
  7221. package="0"
  7222. />
  7223. <otaLanguage
  7224. id="0"
  7225. name="French"
  7226. package="1"
  7227. />
  7228. <otaLanguage
  7229. id="0"
  7230. name="Spanish"
  7231. package="2"
  7232. />
  7233. <otaLanguage
  7234. id="0"
  7235. name="Italian"
  7236. package="3"
  7237. />
  7238. <otaLanguage
  7239. id="0"
  7240. name="German"
  7241. package="4"
  7242. />
  7243. <otaLanguage
  7244. id="0"
  7245. name="Dutch"
  7246. package="5"
  7247. />
  7248. <otaLanguage
  7249. id="0"
  7250. name="Russian"
  7251. package="6"
  7252. />
  7253. <otaLanguage
  7254. id="0"
  7255. name="Chinese"
  7256. package="7"
  7257. />
  7258. <otaLanguage
  7259. id="0"
  7260. name="Korean"
  7261. package="8"
  7262. />
  7263. <otaLanguage
  7264. id="0"
  7265. name="Japanese"
  7266. package="9"
  7267. />
  7268. <otaLanguage
  7269. id="0"
  7270. name="Finnish"
  7271. package="10"
  7272. />
  7273. <otaLanguage
  7274. id="0"
  7275. name="Polish"
  7276. package="11"
  7277. />
  7278. </otaLanguages>
  7279. <otaPackages>
  7280. <package
  7281. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7282. size="5183988"
  7283. />
  7284. <package
  7285. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7286. size="5183988"
  7287. />
  7288. <package
  7289. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7290. size="5183988"
  7291. />
  7292. <package
  7293. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7294. size="5183988"
  7295. />
  7296. <package
  7297. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7298. size="5183988"
  7299. />
  7300. <package
  7301. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7302. size="5183988"
  7303. />
  7304. <package
  7305. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7306. size="5183988"
  7307. />
  7308. <package
  7309. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7310. size="5183988"
  7311. />
  7312. <package
  7313. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7314. size="5183988"
  7315. />
  7316. <package
  7317. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7318. size="5183988"
  7319. />
  7320. <package
  7321. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7322. size="5183988"
  7323. />
  7324. <package
  7325. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7326. size="5183988"
  7327. />
  7328. </otaPackages>
  7329. </productMenu>
  7330. <productMenu id="wa"
  7331. type="0" >
  7332. </productMenu>
  7333. <productMenu id="led"
  7334. type="5" >
  7335. </productMenu>
  7336. <productMenu id="led+"
  7337. type="2"
  7338. url="1" >
  7339. </productMenu>
  7340. <productMenu id="meshIntercom+"
  7341. type="3"
  7342. url="2" >
  7343. </productMenu>
  7344. <productMenu id="waveIntercom"
  7345. type="1" >
  7346. </productMenu>
  7347. <productMenu id="fmradio"
  7348. type="0" >
  7349. </productMenu>
  7350. <productMenu id="phone"
  7351. type="1" >
  7352. </productMenu>
  7353. <productMenu id="music"
  7354. type="1" >
  7355. </productMenu>
  7356. <productMenu id="musicSharing"
  7357. type="0" >
  7358. </productMenu>
  7359. <productMenu id="deviceSetting"
  7360. type="1"
  7361. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7362. <productMenuURL version="1.0.4"
  7363. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7364. />
  7365. <productMenuURL version="1.0"
  7366. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7367. />
  7368. </productMenu>
  7369. <productMenu id="quickGuide"
  7370. type="0"
  7371. url=""
  7372. size="1.12MB" >
  7373. </productMenu>
  7374. <productMenu id="userGuide"
  7375. type="1"
  7376. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7377. size="2.0MB" >
  7378. </productMenu>
  7379. <productMenu id="videoGuide"
  7380. type="0"
  7381. url=""
  7382. size="3.41MB" >
  7383. </productMenu>
  7384. <productMenu id="volume"
  7385. type="16" >
  7386. </productMenu>
  7387. <productMenu id="volume+"
  7388. type="2"
  7389. url="0x6004" >
  7390. </productMenu>
  7391. <productMenu id="battery"
  7392. type="1" >
  7393. </productMenu>
  7394. <productID id="6A0A"
  7395. />
  7396. <productGroupable type="0"
  7397. />
  7398. </product>
  7399. <product id="OUTLANDER"
  7400. name="OUTLANDER"
  7401. series="Helmet"
  7402. latestVersion="1.0.7"
  7403. latestVersionVoicePrompt="1.5"
  7404. show = "1" >
  7405. <productMenu id="protocol"
  7406. type="2" >
  7407. </productMenu>
  7408. <productMenu id="ota"
  7409. type="2" >
  7410. <otaLanguages>
  7411. <otaLanguage
  7412. id="0"
  7413. name="English"
  7414. package="0"
  7415. />
  7416. <otaLanguage
  7417. id="0"
  7418. name="French"
  7419. package="1"
  7420. />
  7421. <otaLanguage
  7422. id="0"
  7423. name="Spanish"
  7424. package="2"
  7425. />
  7426. <otaLanguage
  7427. id="0"
  7428. name="Italian"
  7429. package="3"
  7430. />
  7431. <otaLanguage
  7432. id="0"
  7433. name="German"
  7434. package="4"
  7435. />
  7436. <otaLanguage
  7437. id="0"
  7438. name="Dutch"
  7439. package="5"
  7440. />
  7441. <otaLanguage
  7442. id="0"
  7443. name="Russian"
  7444. package="6"
  7445. />
  7446. <otaLanguage
  7447. id="0"
  7448. name="Chinese"
  7449. package="7"
  7450. />
  7451. <otaLanguage
  7452. id="0"
  7453. name="Korean"
  7454. package="8"
  7455. />
  7456. <otaLanguage
  7457. id="0"
  7458. name="Japanese"
  7459. package="9"
  7460. />
  7461. <otaLanguage
  7462. id="0"
  7463. name="Finnish"
  7464. package="10"
  7465. />
  7466. <otaLanguage
  7467. id="0"
  7468. name="Polish"
  7469. package="11"
  7470. />
  7471. </otaLanguages>
  7472. <otaPackages>
  7473. <package
  7474. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7475. size="5183988"
  7476. />
  7477. <package
  7478. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7479. size="5183988"
  7480. />
  7481. <package
  7482. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7483. size="5183988"
  7484. />
  7485. <package
  7486. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7487. size="5183988"
  7488. />
  7489. <package
  7490. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7491. size="5183988"
  7492. />
  7493. <package
  7494. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7495. size="5183988"
  7496. />
  7497. <package
  7498. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7499. size="5183988"
  7500. />
  7501. <package
  7502. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7503. size="5183988"
  7504. />
  7505. <package
  7506. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7507. size="5183988"
  7508. />
  7509. <package
  7510. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7511. size="5183988"
  7512. />
  7513. <package
  7514. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7515. size="5183988"
  7516. />
  7517. <package
  7518. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7519. size="5183988"
  7520. />
  7521. </otaPackages>
  7522. </productMenu>
  7523. <productMenu id="wa"
  7524. type="0" >
  7525. </productMenu>
  7526. <productMenu id="led"
  7527. type="5" >
  7528. </productMenu>
  7529. <productMenu id="led+"
  7530. type="2"
  7531. url="1" >
  7532. </productMenu>
  7533. <productMenu id="meshIntercom+"
  7534. type="3"
  7535. url="2" >
  7536. </productMenu>
  7537. <productMenu id="waveIntercom"
  7538. type="1" >
  7539. </productMenu>
  7540. <productMenu id="fmradio"
  7541. type="0" >
  7542. </productMenu>
  7543. <productMenu id="phone"
  7544. type="1" >
  7545. </productMenu>
  7546. <productMenu id="music"
  7547. type="1" >
  7548. </productMenu>
  7549. <productMenu id="musicSharing"
  7550. type="0" >
  7551. </productMenu>
  7552. <productMenu id="deviceSetting"
  7553. type="1"
  7554. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7555. <productMenuURL version="1.0.4"
  7556. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7557. />
  7558. </productMenu>
  7559. <productMenu id="quickGuide"
  7560. type="0"
  7561. url=""
  7562. size="1.12MB" >
  7563. </productMenu>
  7564. <productMenu id="userGuide"
  7565. type="1"
  7566. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7567. size="2.0MB" >
  7568. </productMenu>
  7569. <productMenu id="videoGuide"
  7570. type="0"
  7571. url=""
  7572. size="3.41MB" >
  7573. </productMenu>
  7574. <productMenu id="volume"
  7575. type="16" >
  7576. </productMenu>
  7577. <productMenu id="volume+"
  7578. type="2"
  7579. url="0x6004" >
  7580. </productMenu>
  7581. <productMenu id="battery"
  7582. type="1" >
  7583. </productMenu>
  7584. <productID id="6A05"
  7585. />
  7586. <productGroupable type="0"
  7587. />
  7588. </product>
  7589. <product id="OUTRUSH2"
  7590. name="OUTRUSH 2"
  7591. series="Helmet"
  7592. latestVersion="1.0.2"
  7593. latestVersionVoicePrompt="1.1"
  7594. show = "1" >
  7595. <productMenu id="protocol"
  7596. type="2" >
  7597. </productMenu>
  7598. <productMenu id="alexa"
  7599. type="0" >
  7600. </productMenu>
  7601. <productMenu id="ota"
  7602. type="2" >
  7603. <otaPackages>
  7604. <package
  7605. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7606. size="2945812"
  7607. />
  7608. </otaPackages>
  7609. </productMenu>
  7610. <productMenu id="meshIntercom+"
  7611. type="3"
  7612. url="2" >
  7613. </productMenu>
  7614. <productMenu id="waveIntercom"
  7615. type="1" >
  7616. </productMenu>
  7617. <productMenu id="phone"
  7618. type="1" >
  7619. </productMenu>
  7620. <productMenu id="music"
  7621. type="1" >
  7622. </productMenu>
  7623. <productMenu id="musicSharing"
  7624. type="0" >
  7625. </productMenu>
  7626. <productMenu id="deviceSetting"
  7627. type="1"
  7628. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7629. <productMenuURL version="1.0"
  7630. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7631. />
  7632. </productMenu>
  7633. <productMenu id="quickGuide"
  7634. type="0"
  7635. url=""
  7636. size="1.12MB" >
  7637. </productMenu>
  7638. <productMenu id="userGuide"
  7639. type="1"
  7640. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7641. size="2.0MB" >
  7642. </productMenu>
  7643. <productMenu id="volume"
  7644. type="12" >
  7645. </productMenu>
  7646. <productMenu id="battery"
  7647. type="1" >
  7648. </productMenu>
  7649. <productID id="684A"
  7650. />
  7651. <productGroupable type="0"
  7652. />
  7653. </product>
  7654. <product id="OUTSTAR2"
  7655. name="OUTSTAR 2"
  7656. series="Helmet"
  7657. latestVersion="1.0.1"
  7658. latestVersionVoicePrompt="1.1"
  7659. show = "1" >
  7660. <productMenu id="protocol"
  7661. type="2" >
  7662. </productMenu>
  7663. <productMenu id="alexa"
  7664. type="0" >
  7665. </productMenu>
  7666. <productMenu id="ota"
  7667. type="2" >
  7668. <otaPackages>
  7669. <package
  7670. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7671. size="2945812"
  7672. />
  7673. </otaPackages>
  7674. </productMenu>
  7675. <productMenu id="meshIntercom+"
  7676. type="3"
  7677. url="2" >
  7678. </productMenu>
  7679. <productMenu id="waveIntercom"
  7680. type="1" >
  7681. </productMenu>
  7682. <productMenu id="phone"
  7683. type="1" >
  7684. </productMenu>
  7685. <productMenu id="music"
  7686. type="1" >
  7687. </productMenu>
  7688. <productMenu id="musicSharing"
  7689. type="0" >
  7690. </productMenu>
  7691. <productMenu id="deviceSetting"
  7692. type="1"
  7693. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7694. </productMenu>
  7695. <productMenu id="quickGuide"
  7696. type="0"
  7697. url=""
  7698. size="1.12MB" >
  7699. </productMenu>
  7700. <productMenu id="userGuide"
  7701. type="1"
  7702. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7703. size="2.0MB" >
  7704. </productMenu>
  7705. <productMenu id="volume"
  7706. type="12" >
  7707. </productMenu>
  7708. <productMenu id="battery"
  7709. type="1" >
  7710. </productMenu>
  7711. <productID id="684B"
  7712. />
  7713. <productGroupable type="0"
  7714. />
  7715. </product>
  7716. <product id="SURGE"
  7717. name="SURGE"
  7718. series="Helmet"
  7719. latestVersion="1.2"
  7720. latestVersionVoicePrompt="1.3"
  7721. show = "1" >
  7722. <productMenu id="protocol"
  7723. type="2" >
  7724. </productMenu>
  7725. <productMenu id="alexa"
  7726. type="0" >
  7727. </productMenu>
  7728. <productMenu id="ota"
  7729. type="2" >
  7730. <otaPackages>
  7731. <package
  7732. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7733. size="2945812"
  7734. />
  7735. </otaPackages>
  7736. </productMenu>
  7737. <productMenu id="meshIntercom"
  7738. type="30" >
  7739. </productMenu>
  7740. <productMenu id="meshIntercom+"
  7741. type="3"
  7742. url="2" >
  7743. <productMenuType version="1.0.1"
  7744. type="2"
  7745. />
  7746. </productMenu>
  7747. <productMenu id="waveIntercom"
  7748. type="1" >
  7749. <productMenuType version="1.0.9"
  7750. type="0"
  7751. />
  7752. </productMenu>
  7753. <productMenu id="phone"
  7754. type="1" >
  7755. </productMenu>
  7756. <productMenu id="music"
  7757. type="1" >
  7758. </productMenu>
  7759. <productMenu id="musicSharing"
  7760. type="0" >
  7761. </productMenu>
  7762. <productMenu id="deviceSetting"
  7763. type="1"
  7764. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7765. <productMenuURL version="1.1.9"
  7766. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7767. />
  7768. <productMenuURL version="1.0.1"
  7769. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7770. />
  7771. </productMenu>
  7772. <productMenu id="quickGuide"
  7773. type="0"
  7774. url=""
  7775. size="1.12MB" >
  7776. </productMenu>
  7777. <productMenu id="userGuide"
  7778. type="1"
  7779. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7780. size="2.0MB" >
  7781. </productMenu>
  7782. <productMenu id="volume"
  7783. type="12" >
  7784. </productMenu>
  7785. <productMenu id="battery"
  7786. type="1" >
  7787. </productMenu>
  7788. <productID id="6840"
  7789. />
  7790. <productGroupable type="0"
  7791. />
  7792. </product>
  7793. <product id="Cavalry2"
  7794. name="Cavalry 2"
  7795. series="Helmet"
  7796. latestVersion="1.2"
  7797. latestVersionVoicePrompt="1.3"
  7798. show = "1" >
  7799. <productMenu id="protocol"
  7800. type="2" >
  7801. </productMenu>
  7802. <productMenu id="alexa"
  7803. type="0" >
  7804. </productMenu>
  7805. <productMenu id="ota"
  7806. type="2" >
  7807. <otaPackages>
  7808. <package
  7809. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7810. size="3144148"
  7811. />
  7812. </otaPackages>
  7813. </productMenu>
  7814. <productMenu id="wa"
  7815. type="0" >
  7816. </productMenu>
  7817. <productMenu id="meshIntercom"
  7818. type="30" >
  7819. </productMenu>
  7820. <productMenu id="meshIntercom+"
  7821. type="3"
  7822. url="2" >
  7823. <productMenuType version="1.0"
  7824. type="2"
  7825. />
  7826. </productMenu>
  7827. <productMenu id="waveIntercom"
  7828. type="1" >
  7829. <productMenuType version="1.0.9"
  7830. type="0"
  7831. />
  7832. </productMenu>
  7833. <productMenu id="phone"
  7834. type="1" >
  7835. </productMenu>
  7836. <productMenu id="music"
  7837. type="1" >
  7838. </productMenu>
  7839. <productMenu id="musicSharing"
  7840. type="0" >
  7841. </productMenu>
  7842. <productMenu id="deviceSetting"
  7843. type="1"
  7844. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7845. <productMenuURL version="1.1.9"
  7846. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7847. />
  7848. <productMenuURL version="1.0"
  7849. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7850. />
  7851. </productMenu>
  7852. <productMenu id="quickGuide"
  7853. type="0"
  7854. url=""
  7855. size="1.12MB" >
  7856. </productMenu>
  7857. <productMenu id="userGuide"
  7858. type="1"
  7859. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7860. size="2.0MB" >
  7861. </productMenu>
  7862. <productMenu id="connectGuide"
  7863. type="1"
  7864. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7865. size="1.12MB" >
  7866. </productMenu>
  7867. <productMenu id="volume"
  7868. type="12" >
  7869. </productMenu>
  7870. <productMenu id="battery"
  7871. type="1" >
  7872. </productMenu>
  7873. <productID id="6839"
  7874. />
  7875. <productGroupable type="0"
  7876. />
  7877. </product>
  7878. <product id="Cavalry"
  7879. name="Cavalry"
  7880. series="Helmet"
  7881. latestVersion="1.2.2"
  7882. show = "1" >
  7883. <productMenu id="protocol"
  7884. type="0">
  7885. </productMenu>
  7886. <productMenu id="sip"
  7887. type="1" >
  7888. </productMenu>
  7889. <productMenu id="bluetoothIntercom"
  7890. type="1" >
  7891. </productMenu>
  7892. <productMenu id="phone"
  7893. type="2" >
  7894. </productMenu>
  7895. <productMenu id="fmradio"
  7896. type="3" >
  7897. </productMenu>
  7898. <productMenu id="deviceSetting"
  7899. type="1"
  7900. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7901. <productMenuURL version="1.9"
  7902. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7903. />
  7904. <productMenuURL version="1.0.1"
  7905. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7906. />
  7907. </productMenu>
  7908. <productMenu id="quickGuide"
  7909. type="1"
  7910. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7911. size="795KB" >
  7912. </productMenu>
  7913. <productMenu id="userGuide"
  7914. type="1"
  7915. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7916. size="1.87MB" >
  7917. </productMenu>
  7918. <productMenu id="connectGuide"
  7919. type="1"
  7920. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7921. size="1.12MB" >
  7922. </productMenu>
  7923. <productID id="5524"
  7924. />
  7925. <productGroupable type="0"
  7926. />
  7927. </product>
  7928. <product id="Cavalry_Lite"
  7929. name="Cavalry Lite"
  7930. series="Helmet"
  7931. latestVersion="1.0.2"
  7932. show = "1" >
  7933. <productMenu id="protocol"
  7934. type="0">
  7935. </productMenu>
  7936. <productMenu id="sip"
  7937. type="1" >
  7938. </productMenu>
  7939. <productMenu id="bluetoothIntercom"
  7940. type="1" >
  7941. </productMenu>
  7942. <productMenu id="phone"
  7943. type="2" >
  7944. </productMenu>
  7945. <productMenu id="fmradio"
  7946. type="3" >
  7947. </productMenu>
  7948. <productMenu id="deviceSetting"
  7949. type="1"
  7950. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7951. </productMenu>
  7952. <productMenu id="userGuide"
  7953. type="1"
  7954. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7955. size="1.74MB" >
  7956. </productMenu>
  7957. <productMenu id="connectGuide"
  7958. type="1"
  7959. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7960. size="1.12MB" >
  7961. </productMenu>
  7962. <productID id="5536"
  7963. />
  7964. <productGroupable type="0"
  7965. />
  7966. </product>
  7967. <product id="VORTEX"
  7968. name="VORTEX"
  7969. series="VORTEX"
  7970. latestVersion="1.0"
  7971. latestVersionVoicePrompt="1.0"
  7972. show = "-1" >
  7973. <productMenu id="protocol"
  7974. type="2" >
  7975. </productMenu>
  7976. <productMenu id="ota"
  7977. type="2" >
  7978. <otaLanguages>
  7979. <otaLanguage
  7980. id="0"
  7981. name="English"
  7982. package="0"
  7983. />
  7984. <otaLanguage
  7985. id="0"
  7986. name="French"
  7987. package="1"
  7988. />
  7989. <otaLanguage
  7990. id="0"
  7991. name="Spanish"
  7992. package="2"
  7993. />
  7994. <otaLanguage
  7995. id="0"
  7996. name="Italian"
  7997. package="3"
  7998. />
  7999. <otaLanguage
  8000. id="0"
  8001. name="German"
  8002. package="4"
  8003. />
  8004. <otaLanguage
  8005. id="0"
  8006. name="Dutch"
  8007. package="5"
  8008. />
  8009. <otaLanguage
  8010. id="0"
  8011. name="Russian"
  8012. package="6"
  8013. />
  8014. <otaLanguage
  8015. id="0"
  8016. name="Chinese"
  8017. package="7"
  8018. />
  8019. <otaLanguage
  8020. id="0"
  8021. name="Korean"
  8022. package="8"
  8023. />
  8024. <otaLanguage
  8025. id="0"
  8026. name="Japanese"
  8027. package="9"
  8028. />
  8029. <otaLanguage
  8030. id="0"
  8031. name="Finnish"
  8032. package="10"
  8033. />
  8034. <otaLanguage
  8035. id="0"
  8036. name="Polish"
  8037. package="11"
  8038. />
  8039. </otaLanguages>
  8040. <otaPackages>
  8041. <package
  8042. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8043. size="5183988"
  8044. />
  8045. <package
  8046. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8047. size="5183988"
  8048. />
  8049. <package
  8050. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8051. size="5183988"
  8052. />
  8053. <package
  8054. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8055. size="5183988"
  8056. />
  8057. <package
  8058. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8059. size="5183988"
  8060. />
  8061. <package
  8062. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8063. size="5183988"
  8064. />
  8065. <package
  8066. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8067. size="5183988"
  8068. />
  8069. <package
  8070. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8071. size="5183988"
  8072. />
  8073. <package
  8074. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8075. size="5183988"
  8076. />
  8077. <package
  8078. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8079. size="5183988"
  8080. />
  8081. <package
  8082. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8083. size="5183988"
  8084. />
  8085. <package
  8086. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8087. size="5183988"
  8088. />
  8089. </otaPackages>
  8090. </productMenu>
  8091. <productMenu id="sip"
  8092. type="1" >
  8093. </productMenu>
  8094. <productMenu id="bluetoothIntercom"
  8095. type="1" >
  8096. </productMenu>
  8097. <productMenu id="phone"
  8098. type="1" >
  8099. </productMenu>
  8100. <productMenu id="music"
  8101. type="1" >
  8102. </productMenu>
  8103. <productMenu id="fmradio"
  8104. type="1"
  8105. url="1" >
  8106. </productMenu>
  8107. <productMenu id="deviceSetting"
  8108. type="1"
  8109. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8110. </productMenu>
  8111. <productMenu id="quickGuide"
  8112. type="0"
  8113. url=""
  8114. size="934KB" >
  8115. </productMenu>
  8116. <productMenu id="userGuide"
  8117. type="1"
  8118. url=""
  8119. size="1.14MB" >
  8120. </productMenu>
  8121. <productMenu id="connectGuide"
  8122. type="0"
  8123. url=""
  8124. size="1.12MB" >
  8125. </productMenu>
  8126. <productMenu id="volume"
  8127. type="15" >
  8128. </productMenu>
  8129. <productID id="3451"
  8130. />
  8131. <productGroupable type="0"
  8132. />
  8133. </product>
  8134. <product id="SF4"
  8135. name="SF4"
  8136. series="SF"
  8137. latestVersion="1.1.5"
  8138. show = "-1" >
  8139. <productMenu id="protocol"
  8140. type="1"
  8141. url="3">
  8142. </productMenu>
  8143. <productMenu id="sip"
  8144. type="1" >
  8145. </productMenu>
  8146. <productMenu id="bluetoothIntercom"
  8147. type="1" >
  8148. </productMenu>
  8149. <productMenu id="phone"
  8150. type="1" >
  8151. </productMenu>
  8152. <productMenu id="music"
  8153. type="1" >
  8154. </productMenu>
  8155. <productMenu id="fmradio"
  8156. type="1" >
  8157. </productMenu>
  8158. <productMenu id="deviceSetting"
  8159. type="1"
  8160. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8161. <productMenuURL version="1.0.1"
  8162. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8163. />
  8164. </productMenu>
  8165. <productMenu id="quickGuide"
  8166. type="1"
  8167. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8168. size="607KB" >
  8169. </productMenu>
  8170. <productMenu id="userGuide"
  8171. type="1"
  8172. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8173. size="1.91MB" >
  8174. </productMenu>
  8175. <productMenu id="volume"
  8176. type="4" >
  8177. </productMenu>
  8178. <productID id="5414"
  8179. />
  8180. <productGroupable type="0"
  8181. />
  8182. </product>
  8183. <product id="SF4"
  8184. name="SF4"
  8185. series="SF"
  8186. latestVersion="3.4.4"
  8187. show = "1" >
  8188. <productMenu id="protocol"
  8189. type="2" >
  8190. </productMenu>
  8191. <productMenu id="sip"
  8192. type="1" >
  8193. </productMenu>
  8194. <productMenu id="bluetoothIntercom"
  8195. type="1" >
  8196. </productMenu>
  8197. <productMenu id="phone"
  8198. type="1" >
  8199. </productMenu>
  8200. <productMenu id="music"
  8201. type="1" >
  8202. </productMenu>
  8203. <productMenu id="fmradio"
  8204. type="1" >
  8205. </productMenu>
  8206. <productMenu id="deviceSetting"
  8207. type="1"
  8208. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8209. <productMenuURL version="3.0"
  8210. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8211. />
  8212. </productMenu>
  8213. <productMenu id="quickGuide"
  8214. type="0"
  8215. url=""
  8216. size="934KB" >
  8217. </productMenu>
  8218. <productMenu id="userGuide"
  8219. type="1"
  8220. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8221. size="1.14MB" >
  8222. </productMenu>
  8223. <productMenu id="connectGuide"
  8224. type="1"
  8225. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8226. size="1.12MB" >
  8227. </productMenu>
  8228. <productMenu id="volume"
  8229. type="15" >
  8230. </productMenu>
  8231. <productID id="3370"
  8232. />
  8233. <productGroupable type="0"
  8234. />
  8235. </product>
  8236. <product id="SF2"
  8237. name="SF2"
  8238. series="SF"
  8239. latestVersion="1.2.1"
  8240. show = "-1" >
  8241. <productMenu id="protocol"
  8242. type="1"
  8243. url="2">
  8244. </productMenu>
  8245. <productMenu id="sip"
  8246. type="1" >
  8247. </productMenu>
  8248. <productMenu id="bluetoothIntercom"
  8249. type="1" >
  8250. </productMenu>
  8251. <productMenu id="phone"
  8252. type="1" >
  8253. </productMenu>
  8254. <productMenu id="music"
  8255. type="1" >
  8256. </productMenu>
  8257. <productMenu id="fmradio"
  8258. type="1" >
  8259. </productMenu>
  8260. <productMenu id="deviceSetting"
  8261. type="1"
  8262. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8263. <productMenuURL version="1.0.1"
  8264. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8265. />
  8266. </productMenu>
  8267. <productMenu id="quickGuide"
  8268. type="1"
  8269. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8270. size="607KB" >
  8271. </productMenu>
  8272. <productMenu id="userGuide"
  8273. type="1"
  8274. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8275. size="1.91MB" >
  8276. </productMenu>
  8277. <productMenu id="volume"
  8278. type="4" >
  8279. </productMenu>
  8280. <productID id="5412"
  8281. />
  8282. <productGroupable type="0"
  8283. />
  8284. </product>
  8285. <product id="SF2"
  8286. name="SF2"
  8287. series="SF"
  8288. latestVersion="3.3.4"
  8289. show = "1" >
  8290. <productMenu id="protocol"
  8291. type="2" >
  8292. </productMenu>
  8293. <productMenu id="sip"
  8294. type="1" >
  8295. </productMenu>
  8296. <productMenu id="bluetoothIntercom"
  8297. type="1" >
  8298. </productMenu>
  8299. <productMenu id="phone"
  8300. type="1" >
  8301. </productMenu>
  8302. <productMenu id="music"
  8303. type="1" >
  8304. </productMenu>
  8305. <productMenu id="fmradio"
  8306. type="0" >
  8307. </productMenu>
  8308. <productMenu id="deviceSetting"
  8309. type="1"
  8310. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8311. <productMenuURL version="3.0"
  8312. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8313. />
  8314. </productMenu>
  8315. <productMenu id="quickGuide"
  8316. type="0"
  8317. url=""
  8318. size="934KB" >
  8319. </productMenu>
  8320. <productMenu id="userGuide"
  8321. type="1"
  8322. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8323. size="1.14MB" >
  8324. </productMenu>
  8325. <productMenu id="connectGuide"
  8326. type="1"
  8327. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8328. size="1.12MB" >
  8329. </productMenu>
  8330. <productMenu id="volume"
  8331. type="15" >
  8332. </productMenu>
  8333. <productID id="3360"
  8334. />
  8335. <productGroupable type="0"
  8336. />
  8337. </product>
  8338. <product id="SF1"
  8339. name="SF1"
  8340. series="SF"
  8341. latestVersion="2.0.5"
  8342. show = "-1" >
  8343. <productMenu id="protocol"
  8344. type="1"
  8345. url="1">
  8346. </productMenu>
  8347. <productMenu id="sip"
  8348. type="1" >
  8349. </productMenu>
  8350. <productMenu id="bluetoothIntercom"
  8351. type="1" >
  8352. <productMenuType version="1.1"
  8353. type="0"
  8354. />
  8355. </productMenu>
  8356. <productMenu id="phone"
  8357. type="1" >
  8358. </productMenu>
  8359. <productMenu id="music"
  8360. type="1" >
  8361. </productMenu>
  8362. <productMenu id="deviceSetting"
  8363. type="1"
  8364. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8365. <productMenuURL version="1.1"
  8366. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8367. />
  8368. <productMenuURL version="1.0"
  8369. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8370. />
  8371. </productMenu>
  8372. <productMenu id="quickGuide"
  8373. type="1"
  8374. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8375. size="401KB" >
  8376. </productMenu>
  8377. <productMenu id="userGuide"
  8378. type="1"
  8379. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8380. size="1.91MB" >
  8381. </productMenu>
  8382. <productMenu id="volume"
  8383. type="3" >
  8384. </productMenu>
  8385. <productID id="5410"
  8386. />
  8387. <productGroupable type="0"
  8388. />
  8389. </product>
  8390. <product id="SF1"
  8391. name="SF1"
  8392. series="SF"
  8393. latestVersion="3.3.4"
  8394. show = "1" >
  8395. <productMenu id="protocol"
  8396. type="2" >
  8397. </productMenu>
  8398. <productMenu id="sip"
  8399. type="1" >
  8400. </productMenu>
  8401. <productMenu id="bluetoothIntercom"
  8402. type="1" >
  8403. </productMenu>
  8404. <productMenu id="phone"
  8405. type="1" >
  8406. </productMenu>
  8407. <productMenu id="music"
  8408. type="1" >
  8409. </productMenu>
  8410. <productMenu id="fmradio"
  8411. type="0" >
  8412. </productMenu>
  8413. <productMenu id="deviceSetting"
  8414. type="1"
  8415. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8416. <productMenuURL version="3.0"
  8417. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8418. />
  8419. </productMenu>
  8420. <productMenu id="quickGuide"
  8421. type="0"
  8422. url=""
  8423. size="934KB" >
  8424. </productMenu>
  8425. <productMenu id="userGuide"
  8426. type="1"
  8427. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8428. size="1.14MB" >
  8429. </productMenu>
  8430. <productMenu id="connectGuide"
  8431. type="1"
  8432. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8433. size="1.12MB" >
  8434. </productMenu>
  8435. <productMenu id="volume"
  8436. type="15" >
  8437. </productMenu>
  8438. <productID id="3350"
  8439. />
  8440. <productGroupable type="0"
  8441. />
  8442. </product>
  8443. <product id="SFR"
  8444. name="SFR"
  8445. series="SF"
  8446. latestVersion="1.1.1"
  8447. show = "1" >
  8448. <productMenu id="protocol"
  8449. type="1"
  8450. url="3">
  8451. </productMenu>
  8452. <productMenu id="sip"
  8453. type="1" >
  8454. </productMenu>
  8455. <productMenu id="bluetoothIntercom"
  8456. type="1" >
  8457. </productMenu>
  8458. <productMenu id="phone"
  8459. type="1" >
  8460. </productMenu>
  8461. <productMenu id="music"
  8462. type="1" >
  8463. </productMenu>
  8464. <productMenu id="fmradio"
  8465. type="1" >
  8466. </productMenu>
  8467. <productMenu id="deviceSetting"
  8468. type="1"
  8469. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8470. </productMenu>
  8471. <productMenu id="quickGuide"
  8472. type="1"
  8473. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8474. size="607KB" >
  8475. </productMenu>
  8476. <productMenu id="userGuide"
  8477. type="1"
  8478. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8479. size="1.91MB" >
  8480. </productMenu>
  8481. <productMenu id="volume"
  8482. type="4" >
  8483. </productMenu>
  8484. <productID id="5418"
  8485. />
  8486. <productGroupable type="0"
  8487. />
  8488. </product>
  8489. <product id="20S"
  8490. name="20S"
  8491. series="20"
  8492. latestVersion="2.2.3"
  8493. show = "1" >
  8494. <productMenu id="protocol"
  8495. type="0">
  8496. </productMenu>
  8497. <productMenu id="wa"
  8498. type="5" >
  8499. </productMenu>
  8500. <productMenu id="sip"
  8501. type="1" >
  8502. <productMenuType version="1.0"
  8503. type="0"
  8504. />
  8505. </productMenu>
  8506. <productMenu id="bluetoothIntercom"
  8507. type="1" >
  8508. <productMenuType version="1.0"
  8509. type="0"
  8510. />
  8511. </productMenu>
  8512. <productMenu id="intercomSetting"
  8513. type="1" >
  8514. </productMenu>
  8515. <productMenu id="phone"
  8516. type="2" >
  8517. </productMenu>
  8518. <productMenu id="fmradio"
  8519. type="3" >
  8520. </productMenu>
  8521. <productMenu id="deviceSetting"
  8522. type="1"
  8523. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8524. <productMenuURL version="2.0.2"
  8525. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8526. />
  8527. <productMenuURL version="1.5"
  8528. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8529. />
  8530. <productMenuURL version="1.4.1"
  8531. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8532. />
  8533. <productMenuURL version="1.1"
  8534. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8535. />
  8536. <productMenuURL version="1.0"
  8537. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8538. />
  8539. </productMenu>
  8540. <productMenu id="quickGuide"
  8541. type="0"
  8542. url=""
  8543. size="264KB" >
  8544. </productMenu>
  8545. <productMenu id="userGuide"
  8546. type="1"
  8547. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8548. size="3.09MB" >
  8549. </productMenu>
  8550. <productMenu id="connectGuide"
  8551. type="1"
  8552. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8553. size="1.12MB" >
  8554. </productMenu>
  8555. <productID id="4210"
  8556. />
  8557. <productGroupable type="1"
  8558. />
  8559. </product>
  8560. <product id="20S_EVO"
  8561. name="20S EVO"
  8562. series="20"
  8563. latestVersion="2.2.3"
  8564. show = "1" >
  8565. <productMenu id="protocol"
  8566. type="0">
  8567. </productMenu>
  8568. <productMenu id="wa"
  8569. type="5" >
  8570. </productMenu>
  8571. <productMenu id="sip"
  8572. type="1" >
  8573. <productMenuType version="1.0"
  8574. type="0"
  8575. />
  8576. </productMenu>
  8577. <productMenu id="bluetoothIntercom"
  8578. type="1" >
  8579. <productMenuType version="1.0"
  8580. type="0"
  8581. />
  8582. </productMenu>
  8583. <productMenu id="intercomSetting"
  8584. type="1" >
  8585. </productMenu>
  8586. <productMenu id="phone"
  8587. type="2" >
  8588. </productMenu>
  8589. <productMenu id="fmradio"
  8590. type="3" >
  8591. </productMenu>
  8592. <productMenu id="deviceSetting"
  8593. type="1"
  8594. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8595. <productMenuURL version="2.0.2"
  8596. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8597. />
  8598. <productMenuURL version="1.5"
  8599. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8600. />
  8601. <productMenuURL version="1.4.1"
  8602. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8603. />
  8604. <productMenuURL version="1.1"
  8605. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8606. />
  8607. <productMenuURL version="1.0"
  8608. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8609. />
  8610. </productMenu>
  8611. <productMenu id="quickGuide"
  8612. type="0"
  8613. url=""
  8614. size="264KB" >
  8615. </productMenu>
  8616. <productMenu id="userGuide"
  8617. type="1"
  8618. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8619. size="3.09MB" >
  8620. </productMenu>
  8621. <productMenu id="connectGuide"
  8622. type="1"
  8623. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8624. size="1.12MB" >
  8625. </productMenu>
  8626. <productID id="4210"
  8627. />
  8628. <productProductKey key="16"
  8629. />
  8630. <productGroupable type="1"
  8631. />
  8632. </product>
  8633. <product id="10S"
  8634. name="10S"
  8635. series="10"
  8636. latestVersion="3.0.2"
  8637. show = "1" >
  8638. <productMenu id="protocol"
  8639. type="3" >
  8640. </productMenu>
  8641. <productMenu id="sip"
  8642. type="1" >
  8643. </productMenu>
  8644. <productMenu id="bluetoothIntercom"
  8645. type="1" >
  8646. </productMenu>
  8647. <productMenu id="phone"
  8648. type="1" >
  8649. </productMenu>
  8650. <productMenu id="deviceSetting"
  8651. type="1"
  8652. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8653. </productMenu>
  8654. <productMenu id="quickGuide"
  8655. type="1"
  8656. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8657. size="934KB" >
  8658. </productMenu>
  8659. <productMenu id="userGuide"
  8660. type="1"
  8661. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8662. size="1.14MB" >
  8663. </productMenu>
  8664. <productMenu id="connectGuide"
  8665. type="1"
  8666. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8667. size="1.12MB" >
  8668. </productMenu>
  8669. <productID id="3380"
  8670. />
  8671. <productGroupable type="0"
  8672. />
  8673. </product>
  8674. <product id="10S"
  8675. name="10S"
  8676. series="10"
  8677. latestVersion="2.1.1"
  8678. show = "-1" >
  8679. <productMenu id="protocol"
  8680. type="0">
  8681. </productMenu>
  8682. <productMenu id="sip"
  8683. type="1" >
  8684. </productMenu>
  8685. <productMenu id="bluetoothIntercom"
  8686. type="1" >
  8687. </productMenu>
  8688. <productMenu id="phone"
  8689. type="2" >
  8690. </productMenu>
  8691. <productMenu id="fmradio"
  8692. type="3" >
  8693. </productMenu>
  8694. <productMenu id="deviceSetting"
  8695. type="1"
  8696. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8697. <productMenuURL version="1.5"
  8698. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8699. />
  8700. <productMenuURL version="1.3.1"
  8701. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8702. />
  8703. </productMenu>
  8704. <productMenu id="quickGuide"
  8705. type="1"
  8706. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8707. size="310KB" >
  8708. </productMenu>
  8709. <productMenu id="userGuide"
  8710. type="1"
  8711. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8712. size="1.57MB" >
  8713. </productMenu>
  8714. <productID id="5530"
  8715. />
  8716. <productGroupable type="0"
  8717. />
  8718. </product>
  8719. <product id="Apex"
  8720. name="Apex"
  8721. series="Apex"
  8722. latestVersion="1.0"
  8723. latestVersionVoicePrompt="1.0"
  8724. show = "-1" >
  8725. <productMenu id="protocol"
  8726. type="2" >
  8727. </productMenu>
  8728. <productMenu id="serialNumber"
  8729. type="1" >
  8730. </productMenu>
  8731. <productMenu id="ota"
  8732. type="0" >
  8733. <otaLanguages>
  8734. <otaLanguage
  8735. id="0"
  8736. name="English"
  8737. package="0"
  8738. />
  8739. <otaLanguage
  8740. id="0"
  8741. name="French"
  8742. package="1"
  8743. />
  8744. <otaLanguage
  8745. id="0"
  8746. name="Spanish"
  8747. package="2"
  8748. />
  8749. <otaLanguage
  8750. id="0"
  8751. name="Italian"
  8752. package="3"
  8753. />
  8754. <otaLanguage
  8755. id="0"
  8756. name="German"
  8757. package="4"
  8758. />
  8759. <otaLanguage
  8760. id="0"
  8761. name="Dutch"
  8762. package="5"
  8763. />
  8764. <otaLanguage
  8765. id="0"
  8766. name="Russian"
  8767. package="6"
  8768. />
  8769. <otaLanguage
  8770. id="0"
  8771. name="Chinese"
  8772. package="7"
  8773. />
  8774. <otaLanguage
  8775. id="0"
  8776. name="Korean"
  8777. package="8"
  8778. />
  8779. <otaLanguage
  8780. id="0"
  8781. name="Japanese"
  8782. package="9"
  8783. />
  8784. <otaLanguage
  8785. id="0"
  8786. name="Finnish"
  8787. package="10"
  8788. />
  8789. <otaLanguage
  8790. id="0"
  8791. name="Polish"
  8792. package="11"
  8793. />
  8794. </otaLanguages>
  8795. <otaPackages>
  8796. <package
  8797. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8798. size="5183988"
  8799. />
  8800. <package
  8801. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8802. size="5183988"
  8803. />
  8804. <package
  8805. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8806. size="5183988"
  8807. />
  8808. <package
  8809. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8810. size="5183988"
  8811. />
  8812. <package
  8813. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8814. size="5183988"
  8815. />
  8816. <package
  8817. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8818. size="5183988"
  8819. />
  8820. <package
  8821. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8822. size="5183988"
  8823. />
  8824. <package
  8825. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8826. size="5183988"
  8827. />
  8828. <package
  8829. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8830. size="5183988"
  8831. />
  8832. <package
  8833. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8834. size="5183988"
  8835. />
  8836. <package
  8837. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8838. size="5183988"
  8839. />
  8840. <package
  8841. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8842. size="5183988"
  8843. />
  8844. </otaPackages>
  8845. </productMenu>
  8846. <productMenu id="sip"
  8847. type="1" >
  8848. </productMenu>
  8849. <productMenu id="bluetoothIntercom"
  8850. type="1" >
  8851. </productMenu>
  8852. <productMenu id="phone"
  8853. type="1" >
  8854. </productMenu>
  8855. <productMenu id="music"
  8856. type="1" >
  8857. </productMenu>
  8858. <productMenu id="fmradio"
  8859. type="1"
  8860. url="1" >
  8861. </productMenu>
  8862. <productMenu id="deviceSetting"
  8863. type="1"
  8864. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8865. </productMenu>
  8866. <productMenu id="quickGuide"
  8867. type="0"
  8868. url=""
  8869. size="934KB" >
  8870. </productMenu>
  8871. <productMenu id="userGuide"
  8872. type="1"
  8873. url=""
  8874. size="1.14MB" >
  8875. </productMenu>
  8876. <productMenu id="volume"
  8877. type="15" >
  8878. </productMenu>
  8879. <productID id="3452"
  8880. />
  8881. <productGroupable type="0"
  8882. />
  8883. </product>
  8884. <product id="ApexPlus"
  8885. name="Apex Plus"
  8886. series="Apex"
  8887. latestVersion="1.0"
  8888. latestVersionVoicePrompt="1.0"
  8889. show = "-1" >
  8890. <productMenu id="protocol"
  8891. type="2" >
  8892. </productMenu>
  8893. <productMenu id="serialNumber"
  8894. type="1" >
  8895. </productMenu>
  8896. <productMenu id="ota"
  8897. type="0" >
  8898. <otaLanguages>
  8899. <otaLanguage
  8900. id="0"
  8901. name="English"
  8902. package="0"
  8903. />
  8904. <otaLanguage
  8905. id="0"
  8906. name="French"
  8907. package="1"
  8908. />
  8909. <otaLanguage
  8910. id="0"
  8911. name="Spanish"
  8912. package="2"
  8913. />
  8914. <otaLanguage
  8915. id="0"
  8916. name="Italian"
  8917. package="3"
  8918. />
  8919. <otaLanguage
  8920. id="0"
  8921. name="German"
  8922. package="4"
  8923. />
  8924. <otaLanguage
  8925. id="0"
  8926. name="Dutch"
  8927. package="5"
  8928. />
  8929. <otaLanguage
  8930. id="0"
  8931. name="Russian"
  8932. package="6"
  8933. />
  8934. <otaLanguage
  8935. id="0"
  8936. name="Chinese"
  8937. package="7"
  8938. />
  8939. <otaLanguage
  8940. id="0"
  8941. name="Korean"
  8942. package="8"
  8943. />
  8944. <otaLanguage
  8945. id="0"
  8946. name="Japanese"
  8947. package="9"
  8948. />
  8949. <otaLanguage
  8950. id="0"
  8951. name="Finnish"
  8952. package="10"
  8953. />
  8954. <otaLanguage
  8955. id="0"
  8956. name="Polish"
  8957. package="11"
  8958. />
  8959. </otaLanguages>
  8960. <otaPackages>
  8961. <package
  8962. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8963. size="5183988"
  8964. />
  8965. <package
  8966. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8967. size="5183988"
  8968. />
  8969. <package
  8970. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8971. size="5183988"
  8972. />
  8973. <package
  8974. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  8975. size="5183988"
  8976. />
  8977. <package
  8978. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  8979. size="5183988"
  8980. />
  8981. <package
  8982. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  8983. size="5183988"
  8984. />
  8985. <package
  8986. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  8987. size="5183988"
  8988. />
  8989. <package
  8990. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  8991. size="5183988"
  8992. />
  8993. <package
  8994. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  8995. size="5183988"
  8996. />
  8997. <package
  8998. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  8999. size="5183988"
  9000. />
  9001. <package
  9002. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9003. size="5183988"
  9004. />
  9005. <package
  9006. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9007. size="5183988"
  9008. />
  9009. </otaPackages>
  9010. </productMenu>
  9011. <productMenu id="sip"
  9012. type="1" >
  9013. </productMenu>
  9014. <productMenu id="bluetoothIntercom"
  9015. type="1" >
  9016. </productMenu>
  9017. <productMenu id="phone"
  9018. type="1" >
  9019. </productMenu>
  9020. <productMenu id="music"
  9021. type="1" >
  9022. </productMenu>
  9023. <productMenu id="fmradio"
  9024. type="1"
  9025. url="1" >
  9026. </productMenu>
  9027. <productMenu id="deviceSetting"
  9028. type="1"
  9029. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  9030. </productMenu>
  9031. <productMenu id="quickGuide"
  9032. type="0"
  9033. url=""
  9034. size="934KB" >
  9035. </productMenu>
  9036. <productMenu id="userGuide"
  9037. type="1"
  9038. url=""
  9039. size="1.14MB" >
  9040. </productMenu>
  9041. <productMenu id="volume"
  9042. type="15" >
  9043. </productMenu>
  9044. <productID id="3453"
  9045. />
  9046. <productGroupable type="0"
  9047. />
  9048. </product>
  9049. <product id="10R2"
  9050. name="10R 2"
  9051. series="10"
  9052. latestVersion="0.9"
  9053. latestVersionVoicePrompt="1.1"
  9054. show = "-1" >
  9055. <productMenu id="protocol"
  9056. type="2" >
  9057. </productMenu>
  9058. <productMenu id="ota"
  9059. type="2" >
  9060. <otaPackages>
  9061. <package
  9062. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9063. size="2945812"
  9064. />
  9065. </otaPackages>
  9066. </productMenu>
  9067. <productMenu id="sip"
  9068. type="1" >
  9069. </productMenu>
  9070. <productMenu id="bluetoothIntercom"
  9071. type="1" >
  9072. </productMenu>
  9073. <productMenu id="phone"
  9074. type="1" >
  9075. </productMenu>
  9076. <productMenu id="music"
  9077. type="1" >
  9078. </productMenu>
  9079. <productMenu id="fmradio"
  9080. type="1"
  9081. url="1" >
  9082. </productMenu>
  9083. <productMenu id="deviceSetting"
  9084. type="1"
  9085. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9086. </productMenu>
  9087. <productMenu id="quickGuide"
  9088. type="1"
  9089. url=""
  9090. size="934KB" >
  9091. </productMenu>
  9092. <productMenu id="userGuide"
  9093. type="0"
  9094. url=""
  9095. size="1.14MB" >
  9096. </productMenu>
  9097. <productMenu id="volume"
  9098. type="15" >
  9099. </productMenu>
  9100. <productID id="4000"
  9101. />
  9102. <productGroupable type="0"
  9103. />
  9104. </product>
  9105. <product id="10R"
  9106. name="10R"
  9107. series="10"
  9108. latestVersion="2.1.1"
  9109. show = "1" >
  9110. <productMenu id="protocol"
  9111. type="0">
  9112. </productMenu>
  9113. <productMenu id="sip"
  9114. type="1" >
  9115. <productMenuType version="1.0.2"
  9116. type="0"
  9117. />
  9118. </productMenu>
  9119. <productMenu id="bluetoothIntercom"
  9120. type="1" >
  9121. <productMenuType version="1.0.2"
  9122. type="0"
  9123. />
  9124. </productMenu>
  9125. <productMenu id="phone"
  9126. type="2" >
  9127. </productMenu>
  9128. <productMenu id="fmradio"
  9129. type="3" >
  9130. </productMenu>
  9131. <productMenu id="deviceSetting"
  9132. type="1"
  9133. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9134. <productMenuURL version="1.4"
  9135. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9136. />
  9137. <productMenuURL version="1.2.1"
  9138. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9139. />
  9140. <productMenuURL version="1.0.2"
  9141. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9142. />
  9143. <productMenuURL version="1.0"
  9144. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9145. />
  9146. </productMenu>
  9147. <productMenu id="quickGuide"
  9148. type="1"
  9149. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9150. size="400KB" >
  9151. </productMenu>
  9152. <productMenu id="userGuide"
  9153. type="1"
  9154. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9155. size="2.75MB" >
  9156. </productMenu>
  9157. <productMenu id="connectGuide"
  9158. type="1"
  9159. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9160. size="1.12MB" >
  9161. </productMenu>
  9162. <productID id="5520"
  9163. />
  9164. <productGroupable type="0"
  9165. />
  9166. </product>
  9167. <product id="10C_EVO"
  9168. name="10C EVO"
  9169. series="10"
  9170. latestVersion="1.7"
  9171. show = "1" >
  9172. <productMenu id="protocol"
  9173. type="0">
  9174. </productMenu>
  9175. <productMenu id="sip"
  9176. type="1" >
  9177. </productMenu>
  9178. <productMenu id="bluetoothIntercom"
  9179. type="1" >
  9180. </productMenu>
  9181. <productMenu id="phone"
  9182. type="2" >
  9183. </productMenu>
  9184. <productMenu id="fmradio"
  9185. type="3" >
  9186. </productMenu>
  9187. <productMenu id="deviceSetting"
  9188. type="1"
  9189. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9190. <productMenuURL version="1.3.1"
  9191. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9192. />
  9193. </productMenu>
  9194. <productMenu id="quickGuide"
  9195. type="1"
  9196. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9197. size="1.32MB" >
  9198. </productMenu>
  9199. <productMenu id="userGuide"
  9200. type="1"
  9201. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9202. size="1.68MB" >
  9203. </productMenu>
  9204. <productMenu id="connectGuide"
  9205. type="1"
  9206. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9207. size="1.12MB" >
  9208. </productMenu>
  9209. <productID id="5570"
  9210. />
  9211. <productGroupable type="0"
  9212. />
  9213. </product>
  9214. <product id="10C_Pro"
  9215. name="10C Pro"
  9216. series="10"
  9217. latestVersion="2.7.1"
  9218. show = "1" >
  9219. <productMenu id="protocol"
  9220. type="0">
  9221. </productMenu>
  9222. <productMenu id="sip"
  9223. type="1" >
  9224. </productMenu>
  9225. <productMenu id="bluetoothIntercom"
  9226. type="1" >
  9227. </productMenu>
  9228. <productMenu id="phone"
  9229. type="2" >
  9230. </productMenu>
  9231. <productMenu id="fmradio"
  9232. type="3" >
  9233. </productMenu>
  9234. <productMenu id="deviceSetting"
  9235. type="1"
  9236. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9237. <productMenuURL version="2.5.1"
  9238. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9239. />
  9240. <productMenuURL version="1.0"
  9241. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9242. />
  9243. </productMenu>
  9244. <productMenu id="quickGuide"
  9245. type="1"
  9246. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9247. size="651KB" >
  9248. </productMenu>
  9249. <productMenu id="userGuide"
  9250. type="1"
  9251. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9252. size="2.34MB" >
  9253. </productMenu>
  9254. <productMenu id="connectGuide"
  9255. type="1"
  9256. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9257. size="1.12MB" >
  9258. </productMenu>
  9259. <productID id="5580"
  9260. />
  9261. <productGroupable type="0"
  9262. />
  9263. </product>
  9264. <product id="10C"
  9265. name="10C"
  9266. series="10"
  9267. latestVersion="3.0.4"
  9268. show = "1" >
  9269. <productMenu id="protocol"
  9270. type="0">
  9271. </productMenu>
  9272. <productMenu id="sip"
  9273. type="1" >
  9274. <productMenuType version="1.0.4"
  9275. type="0"
  9276. />
  9277. </productMenu>
  9278. <productMenu id="bluetoothIntercom"
  9279. type="1" >
  9280. <productMenuType version="1.0.4"
  9281. type="0"
  9282. />
  9283. </productMenu>
  9284. <productMenu id="phone"
  9285. type="2" >
  9286. </productMenu>
  9287. <productMenu id="fmradio"
  9288. type="3" >
  9289. </productMenu>
  9290. <productMenu id="deviceSetting"
  9291. type="1"
  9292. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9293. <productMenuURL version="2.3"
  9294. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9295. />
  9296. <productMenuURL version="2.1.1"
  9297. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9298. />
  9299. <productMenuURL version="1.0.4"
  9300. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9301. />
  9302. <productMenuURL version="1.0.2"
  9303. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9304. />
  9305. </productMenu>
  9306. <productMenu id="quickGuide"
  9307. type="1"
  9308. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9309. size="935KB" >
  9310. </productMenu>
  9311. <productMenu id="userGuide"
  9312. type="1"
  9313. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9314. size="2.82MB" >
  9315. </productMenu>
  9316. <productMenu id="connectGuide"
  9317. type="1"
  9318. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9319. size="1.12MB" >
  9320. </productMenu>
  9321. <productID id="5510"
  9322. />
  9323. <productGroupable type="0"
  9324. />
  9325. </product>
  9326. <product id="10U_GT_AIR"
  9327. name="10U GT-Air"
  9328. series="10"
  9329. latestVersion="2.0.4"
  9330. show = "1" >
  9331. <productMenu id="protocol"
  9332. type="0">
  9333. </productMenu>
  9334. <productMenu id="sip"
  9335. type="1" >
  9336. <productMenuType version="1.0.2"
  9337. type="0"
  9338. />
  9339. </productMenu>
  9340. <productMenu id="bluetoothIntercom"
  9341. type="1" >
  9342. <productMenuType version="1.0.2"
  9343. type="0"
  9344. />
  9345. </productMenu>
  9346. <productMenu id="phone"
  9347. type="2" >
  9348. </productMenu>
  9349. <productMenu id="fmradio"
  9350. type="3" >
  9351. </productMenu>
  9352. <productMenu id="deviceSetting"
  9353. type="1"
  9354. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9355. <productMenuURL version="1.3.2"
  9356. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9357. />
  9358. <productMenuURL version="1.0.2"
  9359. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9360. />
  9361. </productMenu>
  9362. <productMenu id="quickGuide"
  9363. type="1"
  9364. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9365. size="685KB" >
  9366. </productMenu>
  9367. <productMenu id="userGuide"
  9368. type="1"
  9369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9370. size="684KB" >
  9371. </productMenu>
  9372. <productMenu id="connectGuide"
  9373. type="1"
  9374. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9375. size="1.12MB" >
  9376. </productMenu>
  9377. <productID id="5610"
  9378. />
  9379. <productGroupable type="0"
  9380. />
  9381. </product>
  9382. <product id="10U_NEOTEC"
  9383. name="10U Neotec"
  9384. series="10"
  9385. latestVersion="2.0.4"
  9386. show = "1" >
  9387. <productMenu id="protocol"
  9388. type="0">
  9389. </productMenu>
  9390. <productMenu id="sip"
  9391. type="1" >
  9392. <productMenuType version="1.0.2"
  9393. type="0"
  9394. />
  9395. </productMenu>
  9396. <productMenu id="bluetoothIntercom"
  9397. type="1" >
  9398. <productMenuType version="1.0.2"
  9399. type="0"
  9400. />
  9401. </productMenu>
  9402. <productMenu id="phone"
  9403. type="2" >
  9404. </productMenu>
  9405. <productMenu id="fmradio"
  9406. type="3" >
  9407. </productMenu>
  9408. <productMenu id="deviceSetting"
  9409. type="1"
  9410. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9411. <productMenuURL version="1.3.2"
  9412. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9413. />
  9414. <productMenuURL version="1.0.2"
  9415. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9416. />
  9417. </productMenu>
  9418. <productMenu id="quickGuide"
  9419. type="1"
  9420. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9421. size="689KB" >
  9422. </productMenu>
  9423. <productMenu id="userGuide"
  9424. type="1"
  9425. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9426. size="684KB" >
  9427. </productMenu>
  9428. <productMenu id="connectGuide"
  9429. type="1"
  9430. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9431. size="1.12MB" >
  9432. </productMenu>
  9433. <productID id="5611"
  9434. />
  9435. <productGroupable type="0"
  9436. />
  9437. </product>
  9438. <product id="10U_J_CRUISE"
  9439. name="10U J-Cruise"
  9440. series="10"
  9441. latestVersion="2.0.4"
  9442. show = "1" >
  9443. <productMenu id="protocol"
  9444. type="0">
  9445. </productMenu>
  9446. <productMenu id="sip"
  9447. type="1" >
  9448. <productMenuType version="1.0.2"
  9449. type="0"
  9450. />
  9451. </productMenu>
  9452. <productMenu id="bluetoothIntercom"
  9453. type="1" >
  9454. <productMenuType version="1.0.2"
  9455. type="0"
  9456. />
  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/10U/DS_10U_v0200.xml" >
  9467. <productMenuURL version="1.3.2"
  9468. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9469. />
  9470. <productMenuURL version="1.0.2"
  9471. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9472. />
  9473. </productMenu>
  9474. <productMenu id="quickGuide"
  9475. type="1"
  9476. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9477. size="686KB" >
  9478. </productMenu>
  9479. <productMenu id="userGuide"
  9480. type="1"
  9481. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9482. size="684KB" >
  9483. </productMenu>
  9484. <productMenu id="connectGuide"
  9485. type="1"
  9486. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9487. size="1.12MB" >
  9488. </productMenu>
  9489. <productID id="5612"
  9490. />
  9491. <productGroupable type="0"
  9492. />
  9493. </product>
  9494. <product id="10U_C3"
  9495. name="10U C3/C3Pro"
  9496. series="10"
  9497. latestVersion="2.0.4"
  9498. show = "1" >
  9499. <productMenu id="protocol"
  9500. type="0">
  9501. </productMenu>
  9502. <productMenu id="sip"
  9503. type="1" >
  9504. <productMenuType version="1.0.2"
  9505. type="0"
  9506. />
  9507. </productMenu>
  9508. <productMenu id="bluetoothIntercom"
  9509. type="1" >
  9510. <productMenuType version="1.0.2"
  9511. type="0"
  9512. />
  9513. </productMenu>
  9514. <productMenu id="phone"
  9515. type="2" >
  9516. </productMenu>
  9517. <productMenu id="fmradio"
  9518. type="3" >
  9519. </productMenu>
  9520. <productMenu id="deviceSetting"
  9521. type="1"
  9522. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9523. <productMenuURL version="1.3.2"
  9524. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9525. />
  9526. <productMenuURL version="1.0.2"
  9527. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9528. />
  9529. </productMenu>
  9530. <productMenu id="quickGuide"
  9531. type="1"
  9532. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9533. size="199KB" >
  9534. </productMenu>
  9535. <productMenu id="userGuide"
  9536. type="1"
  9537. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9538. size="684KB" >
  9539. </productMenu>
  9540. <productMenu id="connectGuide"
  9541. type="1"
  9542. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9543. size="1.12MB" >
  9544. </productMenu>
  9545. <productID id="5620"
  9546. />
  9547. <productGroupable type="0"
  9548. />
  9549. </product>
  9550. <product id="10U_ARAI"
  9551. name="10U Arai"
  9552. series="10"
  9553. latestVersion="2.0.4"
  9554. show = "1" >
  9555. <productMenu id="protocol"
  9556. type="0">
  9557. </productMenu>
  9558. <productMenu id="sip"
  9559. type="1" >
  9560. <productMenuType version="1.0.2"
  9561. type="0"
  9562. />
  9563. </productMenu>
  9564. <productMenu id="bluetoothIntercom"
  9565. type="1" >
  9566. <productMenuType version="1.0.2"
  9567. type="0"
  9568. />
  9569. </productMenu>
  9570. <productMenu id="phone"
  9571. type="2" >
  9572. </productMenu>
  9573. <productMenu id="fmradio"
  9574. type="3" >
  9575. </productMenu>
  9576. <productMenu id="deviceSetting"
  9577. type="1"
  9578. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9579. <productMenuURL version="1.3.2"
  9580. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9581. />
  9582. <productMenuURL version="1.0.2"
  9583. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9584. />
  9585. </productMenu>
  9586. <productMenu id="quickGuide"
  9587. type="1"
  9588. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9589. size="689KB" >
  9590. </productMenu>
  9591. <productMenu id="userGuide"
  9592. type="1"
  9593. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9594. size="684KB" >
  9595. </productMenu>
  9596. <productMenu id="connectGuide"
  9597. type="1"
  9598. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9599. size="1.12MB" >
  9600. </productMenu>
  9601. <productID id="5621"
  9602. />
  9603. <productGroupable type="0"
  9604. />
  9605. </product>
  9606. <product id="10Upad"
  9607. name="10Upad"
  9608. series="10"
  9609. latestVersion="2.0.3"
  9610. show = "1" >
  9611. <productMenu id="protocol"
  9612. type="0">
  9613. </productMenu>
  9614. <productMenu id="sip"
  9615. type="1" >
  9616. </productMenu>
  9617. <productMenu id="bluetoothIntercom"
  9618. type="1" >
  9619. </productMenu>
  9620. <productMenu id="phone"
  9621. type="2" >
  9622. </productMenu>
  9623. <productMenu id="fmradio"
  9624. type="3" >
  9625. </productMenu>
  9626. <productMenu id="deviceSetting"
  9627. type="1"
  9628. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9629. <productMenuURL version="1.0.3"
  9630. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9631. />
  9632. </productMenu>
  9633. <productMenu id="quickGuide"
  9634. type="1"
  9635. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9636. size="615KB" >
  9637. </productMenu>
  9638. <productMenu id="userGuide"
  9639. type="1"
  9640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9641. size="0.99MB" >
  9642. </productMenu>
  9643. <productMenu id="connectGuide"
  9644. type="1"
  9645. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9646. size="1.12MB" >
  9647. </productMenu>
  9648. <productID id="6210"
  9649. />
  9650. <productGroupable type="0"
  9651. />
  9652. </product>
  9653. <product id="5S"
  9654. name="5S"
  9655. series="5"
  9656. latestVersion="2.3.1"
  9657. show = "1" >
  9658. <productMenu id="protocol"
  9659. type="3" >
  9660. </productMenu>
  9661. <productMenu id="sip"
  9662. type="1" >
  9663. </productMenu>
  9664. <productMenu id="bluetoothIntercom"
  9665. type="1" >
  9666. </productMenu>
  9667. <productMenu id="phone"
  9668. type="1" >
  9669. </productMenu>
  9670. <productMenu id="fmradio"
  9671. type="0" >
  9672. </productMenu>
  9673. <productMenu id="deviceSetting"
  9674. type="1"
  9675. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9676. </productMenu>
  9677. <productMenu id="quickGuide"
  9678. type="0"
  9679. url=""
  9680. size="934KB" >
  9681. </productMenu>
  9682. <productMenu id="userGuide"
  9683. type="1"
  9684. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9685. size="1.14MB" >
  9686. </productMenu>
  9687. <productMenu id="connectGuide"
  9688. type="1"
  9689. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9690. size="1.12MB" >
  9691. </productMenu>
  9692. <productID id="5590"
  9693. />
  9694. <productGroupable type="0"
  9695. />
  9696. </product>
  9697. <product id="5S"
  9698. name="5S"
  9699. series="5"
  9700. latestVersion="1.2"
  9701. show = "-1" >
  9702. <productMenu id="protocol"
  9703. type="0">
  9704. </productMenu>
  9705. <productMenu id="sip"
  9706. type="1" >
  9707. </productMenu>
  9708. <productMenu id="bluetoothIntercom"
  9709. type="1" >
  9710. </productMenu>
  9711. <productMenu id="phone"
  9712. type="2" >
  9713. </productMenu>
  9714. <productMenu id="fmradio"
  9715. type="3" >
  9716. </productMenu>
  9717. <productMenu id="deviceSetting"
  9718. type="1"
  9719. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9720. </productMenu>
  9721. <productMenu id="quickGuide"
  9722. type="0"
  9723. url=""
  9724. size="970KB" >
  9725. </productMenu>
  9726. <productMenu id="userGuide"
  9727. type="1"
  9728. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9729. size="1.26MB" >
  9730. </productMenu>
  9731. <productID id="5534"
  9732. />
  9733. <productGroupable type="0"
  9734. />
  9735. </product>
  9736. <product id="5S"
  9737. name="5S"
  9738. series="5"
  9739. latestVersion="3.0.1"
  9740. show = "-1" >
  9741. <productMenu id="protocol"
  9742. type="0">
  9743. </productMenu>
  9744. <productMenu id="sip"
  9745. type="1" >
  9746. </productMenu>
  9747. <productMenu id="bluetoothIntercom"
  9748. type="1" >
  9749. </productMenu>
  9750. <productMenu id="phone"
  9751. type="2" >
  9752. </productMenu>
  9753. <productMenu id="fmradio"
  9754. type="0" >
  9755. </productMenu>
  9756. <productMenu id="deviceSetting"
  9757. type="1"
  9758. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9759. </productMenu>
  9760. <productMenu id="quickGuide"
  9761. type="0"
  9762. url=""
  9763. size="970KB" >
  9764. </productMenu>
  9765. <productMenu id="userGuide"
  9766. type="1"
  9767. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9768. size="1.26MB" >
  9769. </productMenu>
  9770. <productID id="5538"
  9771. />
  9772. <productGroupable type="0"
  9773. />
  9774. </product>
  9775. <product id="3SPLUS"
  9776. name="3S PLUS"
  9777. series="3"
  9778. latestVersion="2.2"
  9779. show = "1" >
  9780. <productMenu id="protocol"
  9781. type="3" >
  9782. </productMenu>
  9783. <productMenu id="sip"
  9784. type="1" >
  9785. </productMenu>
  9786. <productMenu id="bluetoothIntercom"
  9787. type="1" >
  9788. </productMenu>
  9789. <productMenu id="deviceSetting"
  9790. type="1"
  9791. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9792. <productMenuURL version="2.2.1"
  9793. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9794. />
  9795. </productMenu>
  9796. <productMenu id="quickGuide"
  9797. type="1"
  9798. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9799. size="344KB" >
  9800. </productMenu>
  9801. <productMenu id="userGuide"
  9802. type="1"
  9803. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9804. size="1.14MB" >
  9805. </productMenu>
  9806. <productMenu id="connectGuide"
  9807. type="1"
  9808. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9809. size="1.12MB" >
  9810. </productMenu>
  9811. <productID id="4023"
  9812. />
  9813. <productGroupable type="0"
  9814. />
  9815. </product>
  9816. <product id="3SPLUS"
  9817. name="3S PLUS"
  9818. series="3"
  9819. latestVersion="1.1"
  9820. show = "-1" >
  9821. <productMenu id="protocol"
  9822. type="0">
  9823. </productMenu>
  9824. <productMenu id="sip"
  9825. type="1" >
  9826. </productMenu>
  9827. <productMenu id="bluetoothIntercom"
  9828. type="1" >
  9829. </productMenu>
  9830. <productMenu id="deviceSetting"
  9831. type="1"
  9832. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9833. </productMenu>
  9834. <productMenu id="quickGuide"
  9835. type="1"
  9836. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9837. size="842KB" >
  9838. </productMenu>
  9839. <productMenu id="userGuide"
  9840. type="1"
  9841. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9842. size="1.02MB" >
  9843. </productMenu>
  9844. <productID id="6320"
  9845. />
  9846. <productGroupable type="0"
  9847. />
  9848. </product>
  9849. <product id="AConnect"
  9850. name="Alpinestars A-Connect"
  9851. series="60"
  9852. latestVersion="1.0.2"
  9853. latestVersionMesh="0.19"
  9854. latestVersionVoicePrompt="1.6"
  9855. show = "-1" >
  9856. <productMenu id="protocol"
  9857. type="2" >
  9858. </productMenu>
  9859. <productMenu id="ota"
  9860. type="2" >
  9861. <otaLanguages>
  9862. <otaLanguage
  9863. id="0"
  9864. name="English"
  9865. package="0"
  9866. />
  9867. <otaLanguage
  9868. id="0"
  9869. name="French"
  9870. package="1"
  9871. />
  9872. <otaLanguage
  9873. id="0"
  9874. name="Spanish"
  9875. package="2"
  9876. />
  9877. <otaLanguage
  9878. id="0"
  9879. name="Italian"
  9880. package="3"
  9881. />
  9882. <otaLanguage
  9883. id="0"
  9884. name="German"
  9885. package="4"
  9886. />
  9887. <otaLanguage
  9888. id="0"
  9889. name="Dutch"
  9890. package="5"
  9891. />
  9892. <otaLanguage
  9893. id="0"
  9894. name="Russian"
  9895. package="6"
  9896. />
  9897. <otaLanguage
  9898. id="0"
  9899. name="Chinese"
  9900. package="7"
  9901. />
  9902. <otaLanguage
  9903. id="0"
  9904. name="Korean"
  9905. package="8"
  9906. />
  9907. <otaLanguage
  9908. id="0"
  9909. name="Japanese"
  9910. package="9"
  9911. />
  9912. <otaLanguage
  9913. id="0"
  9914. name="Finnish"
  9915. package="10"
  9916. />
  9917. <otaLanguage
  9918. id="0"
  9919. name="Polish"
  9920. package="11"
  9921. />
  9922. </otaLanguages>
  9923. <otaPackages>
  9924. <package
  9925. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9926. size="5183988"
  9927. />
  9928. <package
  9929. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9930. size="5183988"
  9931. />
  9932. <package
  9933. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9934. size="5183988"
  9935. />
  9936. <package
  9937. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9938. size="5183988"
  9939. />
  9940. <package
  9941. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9942. size="5183988"
  9943. />
  9944. <package
  9945. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9946. size="5183988"
  9947. />
  9948. <package
  9949. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9950. size="5183988"
  9951. />
  9952. <package
  9953. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9954. size="5183988"
  9955. />
  9956. <package
  9957. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9958. size="5183988"
  9959. />
  9960. <package
  9961. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9962. size="5183988"
  9963. />
  9964. <package
  9965. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9966. size="5183988"
  9967. />
  9968. <package
  9969. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9970. size="5183988"
  9971. />
  9972. </otaPackages>
  9973. </productMenu>
  9974. <productMenu id="sip"
  9975. type="1" >
  9976. </productMenu>
  9977. <productMenu id="illusion"
  9978. type="0" >
  9979. </productMenu>
  9980. <productMenu id="meshIntercom+"
  9981. type="3"
  9982. url="2" >
  9983. </productMenu>
  9984. <productMenu id="waveIntercom"
  9985. type="1" >
  9986. </productMenu>
  9987. <productMenu id="bluetoothIntercom"
  9988. type="1"
  9989. url="2" >
  9990. </productMenu>
  9991. <productMenu id="bluetoothIntercomGrouping"
  9992. type="0" >
  9993. </productMenu>
  9994. <productMenu id="fmradio"
  9995. type="1"
  9996. url="1" >
  9997. </productMenu>
  9998. <productMenu id="phone"
  9999. type="1" >
  10000. </productMenu>
  10001. <productMenu id="music"
  10002. type="1" >
  10003. </productMenu>
  10004. <productMenu id="musicSharing"
  10005. type="0" >
  10006. </productMenu>
  10007. <productMenu id="deviceSetting"
  10008. type="1"
  10009. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10010. </productMenu>
  10011. <productMenu id="quickGuide"
  10012. type="0"
  10013. url=""
  10014. size="1.12MB" >
  10015. </productMenu>
  10016. <productMenu id="userGuide"
  10017. type="0"
  10018. url=""
  10019. size="2.0MB" >
  10020. </productMenu>
  10021. <productMenu id="videoGuide"
  10022. type="0"
  10023. url=""
  10024. size="3.41MB" >
  10025. </productMenu>
  10026. <productMenu id="volume"
  10027. type="16" >
  10028. </productMenu>
  10029. <productMenu id="volume+"
  10030. type="2"
  10031. url="0x6004" >
  10032. </productMenu>
  10033. <productMenu id="soundMode"
  10034. type="0" >
  10035. </productMenu>
  10036. <productMenu id="battery"
  10037. type="1" >
  10038. </productMenu>
  10039. <productID id="6A82"
  10040. />
  10041. <productGroupable type="0"
  10042. />
  10043. </product>
  10044. <product id="iCon"
  10045. name="iCon"
  10046. series="50"
  10047. latestVersion="1.2"
  10048. show = "0" >
  10049. <productMenu id="protocol"
  10050. type="2" >
  10051. </productMenu>
  10052. <productMenu id="alexa"
  10053. type="0" >
  10054. </productMenu>
  10055. <productMenu id="wa"
  10056. type="0" >
  10057. </productMenu>
  10058. <productMenu id="sip"
  10059. type="1" >
  10060. </productMenu>
  10061. <productMenu id="led"
  10062. type="3" >
  10063. </productMenu>
  10064. <productMenu id="meshIntercom"
  10065. type="20" >
  10066. </productMenu>
  10067. <productMenu id="meshIntercom+"
  10068. type="3"
  10069. url="0" >
  10070. <productMenuType version="1.0.9"
  10071. type="2"
  10072. />
  10073. </productMenu>
  10074. <productMenu id="bluetoothIntercom"
  10075. type="1" >
  10076. </productMenu>
  10077. <productMenu id="phone"
  10078. type="1" >
  10079. </productMenu>
  10080. <productMenu id="music"
  10081. type="1" >
  10082. </productMenu>
  10083. <productMenu id="fmradio"
  10084. type="1" >
  10085. </productMenu>
  10086. <productMenu id="deviceSetting"
  10087. type="1"
  10088. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10089. <productMenuURL version="1.0.9"
  10090. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10091. />
  10092. </productMenu>
  10093. <productMenu id="quickGuide"
  10094. type="1"
  10095. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10096. size="344KB" >
  10097. </productMenu>
  10098. <productMenu id="userGuide"
  10099. type="1"
  10100. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10101. size="3.41MB" >
  10102. </productMenu>
  10103. <productMenu id="volume"
  10104. type="11" >
  10105. </productMenu>
  10106. <productMenu id="battery"
  10107. type="1" >
  10108. </productMenu>
  10109. <productID id="3900"
  10110. />
  10111. <productGroupable type="0"
  10112. />
  10113. </product>
  10114. <product id="ICONHelmLinkSL"
  10115. name="ICON HelmLink SL"
  10116. series="50"
  10117. latestVersion="1.0"
  10118. latestVersionVoicePrompt="1.6"
  10119. show = "-1" >
  10120. <productMenu id="protocol"
  10121. type="2" >
  10122. </productMenu>
  10123. <productMenu id="alexa"
  10124. type="0" >
  10125. </productMenu>
  10126. <productMenu id="ota"
  10127. type="0" >
  10128. <otaPackages>
  10129. <package
  10130. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10131. size="2945812"
  10132. />
  10133. </otaPackages>
  10134. </productMenu>
  10135. <productMenu id="wa"
  10136. type="0" >
  10137. </productMenu>
  10138. <productMenu id="meshIntercom"
  10139. type="30" >
  10140. </productMenu>
  10141. <productMenu id="meshIntercom+"
  10142. type="3"
  10143. url="2" >
  10144. </productMenu>
  10145. <productMenu id="waveIntercom"
  10146. type="1" >
  10147. </productMenu>
  10148. <productMenu id="phone"
  10149. type="1" >
  10150. </productMenu>
  10151. <productMenu id="music"
  10152. type="1" >
  10153. </productMenu>
  10154. <productMenu id="musicSharing"
  10155. type="0" >
  10156. </productMenu>
  10157. <productMenu id="deviceSetting"
  10158. type="1"
  10159. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10160. </productMenu>
  10161. <productMenu id="quickGuide"
  10162. type="0"
  10163. url=""
  10164. size="1.12MB" >
  10165. </productMenu>
  10166. <productMenu id="userGuide"
  10167. type="1"
  10168. url=""
  10169. size="2.0MB" >
  10170. </productMenu>
  10171. <productMenu id="volume"
  10172. type="12" >
  10173. </productMenu>
  10174. <productMenu id="battery"
  10175. type="1" >
  10176. </productMenu>
  10177. <productID id="6842"
  10178. />
  10179. <productGroupable type="0"
  10180. />
  10181. </product>
  10182. <product id="HD50S"
  10183. name="H-D Audio 50S"
  10184. series="50"
  10185. latestVersion="1.0.1"
  10186. show = "-1" >
  10187. <productMenu id="protocol"
  10188. type="2" >
  10189. </productMenu>
  10190. <productMenu id="alexa"
  10191. type="0" >
  10192. </productMenu>
  10193. <productMenu id="ota"
  10194. type="0"
  10195. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10196. size="1150234" >
  10197. </productMenu>
  10198. <productMenu id="wa"
  10199. type="1" >
  10200. </productMenu>
  10201. <productMenu id="sip"
  10202. type="1" >
  10203. </productMenu>
  10204. <productMenu id="meshIntercom"
  10205. type="20" >
  10206. </productMenu>
  10207. <productMenu id="meshIntercom+"
  10208. type="3"
  10209. url="0" >
  10210. <productMenuType version="1.0.9"
  10211. type="2"
  10212. />
  10213. </productMenu>
  10214. <productMenu id="bluetoothIntercom"
  10215. type="1" >
  10216. </productMenu>
  10217. <productMenu id="phone"
  10218. type="1" >
  10219. </productMenu>
  10220. <productMenu id="music"
  10221. type="1" >
  10222. </productMenu>
  10223. <productMenu id="fmradio"
  10224. type="1" >
  10225. </productMenu>
  10226. <productMenu id="deviceSetting"
  10227. type="1"
  10228. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10229. <productMenuURL version="1.0.9"
  10230. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10231. />
  10232. </productMenu>
  10233. <productMenu id="quickGuide"
  10234. type="1"
  10235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10236. size="934KB" >
  10237. </productMenu>
  10238. <productMenu id="userGuide"
  10239. type="1"
  10240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10241. size="1.14MB" >
  10242. </productMenu>
  10243. <productMenu id="volume"
  10244. type="11" >
  10245. </productMenu>
  10246. <productMenu id="battery"
  10247. type="1" >
  10248. </productMenu>
  10249. <productID id="3156"
  10250. />
  10251. <productGroupable type="0"
  10252. />
  10253. </product>
  10254. <product id="HD50S"
  10255. name="H-D Audio 50S"
  10256. series="50"
  10257. latestVersion="2.0.2"
  10258. show = "0" >
  10259. <productMenu id="protocol"
  10260. type="2" >
  10261. </productMenu>
  10262. <productMenu id="alexa"
  10263. type="0" >
  10264. </productMenu>
  10265. <productMenu id="ota"
  10266. type="0"
  10267. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10268. size="1150234" >
  10269. </productMenu>
  10270. <productMenu id="wa"
  10271. type="1" >
  10272. </productMenu>
  10273. <productMenu id="sip"
  10274. type="1" >
  10275. </productMenu>
  10276. <productMenu id="meshIntercom"
  10277. type="20" >
  10278. </productMenu>
  10279. <productMenu id="meshIntercom+"
  10280. type="3"
  10281. url="0" >
  10282. <productMenuType version="2.0.9"
  10283. type="2"
  10284. />
  10285. </productMenu>
  10286. <productMenu id="bluetoothIntercom"
  10287. type="1" >
  10288. </productMenu>
  10289. <productMenu id="phone"
  10290. type="1" >
  10291. </productMenu>
  10292. <productMenu id="music"
  10293. type="1" >
  10294. </productMenu>
  10295. <productMenu id="fmradio"
  10296. type="1" >
  10297. </productMenu>
  10298. <productMenu id="deviceSetting"
  10299. type="1"
  10300. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10301. <productMenuURL version="2.0.9"
  10302. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10303. />
  10304. </productMenu>
  10305. <productMenu id="quickGuide"
  10306. type="1"
  10307. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10308. size="934KB" >
  10309. </productMenu>
  10310. <productMenu id="userGuide"
  10311. type="1"
  10312. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10313. size="1.14MB" >
  10314. </productMenu>
  10315. <productMenu id="volume"
  10316. type="11" >
  10317. </productMenu>
  10318. <productMenu id="battery"
  10319. type="1" >
  10320. </productMenu>
  10321. <productID id="3213"
  10322. />
  10323. <productGroupable type="0"
  10324. />
  10325. </product>
  10326. <product id="HD50C"
  10327. name="H-D Audio 50C"
  10328. series="50"
  10329. latestVersion="1.0.1"
  10330. show = "0" >
  10331. <productMenu id="protocol"
  10332. type="2" >
  10333. </productMenu>
  10334. <productMenu id="ota"
  10335. type="0" >
  10336. </productMenu>
  10337. <productMenu id="wa"
  10338. type="1" >
  10339. </productMenu>
  10340. <productMenu id="sip"
  10341. type="1" >
  10342. </productMenu>
  10343. <productMenu id="meshIntercom"
  10344. type="20" >
  10345. </productMenu>
  10346. <productMenu id="meshIntercom+"
  10347. type="3"
  10348. url="0" >
  10349. <productMenuType version="1.0.9"
  10350. type="2"
  10351. />
  10352. </productMenu>
  10353. <productMenu id="bluetoothIntercom"
  10354. type="1" >
  10355. </productMenu>
  10356. <productMenu id="phone"
  10357. type="1" >
  10358. </productMenu>
  10359. <productMenu id="music"
  10360. type="1" >
  10361. </productMenu>
  10362. <productMenu id="fmradio"
  10363. type="1" >
  10364. </productMenu>
  10365. <productMenu id="deviceSetting"
  10366. type="1"
  10367. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10368. <productMenuURL version="1.0.9"
  10369. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10370. />
  10371. </productMenu>
  10372. <productMenu id="quickGuide"
  10373. type="1"
  10374. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10375. size="344KB" >
  10376. </productMenu>
  10377. <productMenu id="userGuide"
  10378. type="1"
  10379. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10380. size="3.41MB" >
  10381. </productMenu>
  10382. <productMenu id="volume"
  10383. type="11" >
  10384. </productMenu>
  10385. <productMenu id="battery"
  10386. type="1" >
  10387. </productMenu>
  10388. <productID id="3240"
  10389. />
  10390. <productGroupable type="0"
  10391. />
  10392. </product>
  10393. <product id="HD50S"
  10394. name="FURY N04"
  10395. series="Helmet"
  10396. latestVersion="1.0"
  10397. show = "0" >
  10398. <productMenu id="protocol"
  10399. type="2" >
  10400. </productMenu>
  10401. <productMenu id="alexa"
  10402. type="0" >
  10403. </productMenu>
  10404. <productMenu id="ota"
  10405. type="0" >
  10406. </productMenu>
  10407. <productMenu id="wa"
  10408. type="0" >
  10409. </productMenu>
  10410. <productMenu id="meshIntercom"
  10411. type="20" >
  10412. </productMenu>
  10413. <productMenu id="meshIntercom+"
  10414. type="3"
  10415. url="0" >
  10416. <productMenuType version="1.0.9"
  10417. type="2"
  10418. />
  10419. </productMenu>
  10420. <productMenu id="phone"
  10421. type="1" >
  10422. </productMenu>
  10423. <productMenu id="music"
  10424. type="1" >
  10425. </productMenu>
  10426. <productMenu id="fmradio"
  10427. type="1" >
  10428. </productMenu>
  10429. <productMenu id="deviceSetting"
  10430. type="1"
  10431. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10432. <productMenuURL version="1.0.9"
  10433. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10434. />
  10435. </productMenu>
  10436. <productMenu id="quickGuide"
  10437. type="1"
  10438. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10439. size="1.12MB" >
  10440. </productMenu>
  10441. <productMenu id="userGuide"
  10442. type="1"
  10443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10444. size="2.0MB" >
  10445. </productMenu>
  10446. <productMenu id="volume"
  10447. type="13" >
  10448. </productMenu>
  10449. <productMenu id="battery"
  10450. type="1" >
  10451. </productMenu>
  10452. <productID id="5553"
  10453. />
  10454. <productGroupable type="0"
  10455. />
  10456. </product>
  10457. <product id="XCOM3Pro"
  10458. name="X-COM3 Pro"
  10459. series="50"
  10460. latestVersion="1.1"
  10461. show = "0" >
  10462. <productMenu id="protocol"
  10463. type="2" >
  10464. </productMenu>
  10465. <productMenu id="alexa"
  10466. type="0" >
  10467. </productMenu>
  10468. <productMenu id="ota"
  10469. type="0" >
  10470. </productMenu>
  10471. <productMenu id="wa"
  10472. type="0" >
  10473. </productMenu>
  10474. <productMenu id="sip"
  10475. type="1" >
  10476. </productMenu>
  10477. <productMenu id="meshIntercom"
  10478. type="30" >
  10479. </productMenu>
  10480. <productMenu id="meshIntercom+"
  10481. type="3"
  10482. url="2" >
  10483. <productMenuType version="1.1"
  10484. type="2"
  10485. />
  10486. </productMenu>
  10487. <productMenu id="waveIntercom"
  10488. type="1" >
  10489. <productMenuType version="1.1"
  10490. type="0"
  10491. />
  10492. </productMenu>
  10493. <productMenu id="bluetoothIntercom"
  10494. type="1" >
  10495. </productMenu>
  10496. <productMenu id="phone"
  10497. type="1" >
  10498. </productMenu>
  10499. <productMenu id="music"
  10500. type="1" >
  10501. </productMenu>
  10502. <productMenu id="fmradio"
  10503. type="1" >
  10504. </productMenu>
  10505. <productMenu id="deviceSetting"
  10506. type="1"
  10507. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10508. <productMenuURL version="1.1"
  10509. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10510. />
  10511. </productMenu>
  10512. <productMenu id="quickGuide"
  10513. type="0"
  10514. url=""
  10515. size="344KB" >
  10516. </productMenu>
  10517. <productMenu id="userGuide"
  10518. type="1"
  10519. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10520. size="3.41MB" >
  10521. </productMenu>
  10522. <productMenu id="volume"
  10523. type="11" >
  10524. </productMenu>
  10525. <productMenu id="battery"
  10526. type="1" >
  10527. </productMenu>
  10528. <productID id="321A"
  10529. />
  10530. <productGroupable type="0"
  10531. />
  10532. </product>
  10533. <product id="XCOM3"
  10534. name="X-COM3"
  10535. series="20"
  10536. latestVersion="1.0"
  10537. show = "0" >
  10538. <productMenu id="protocol"
  10539. type="2" >
  10540. </productMenu>
  10541. <productMenu id="sip"
  10542. type="1" >
  10543. </productMenu>
  10544. <productMenu id="bluetoothIntercom"
  10545. type="1" >
  10546. </productMenu>
  10547. <productMenu id="phone"
  10548. type="1" >
  10549. </productMenu>
  10550. <productMenu id="music"
  10551. type="1" >
  10552. </productMenu>
  10553. <productMenu id="fmradio"
  10554. type="1" >
  10555. </productMenu>
  10556. <productMenu id="deviceSetting"
  10557. type="1"
  10558. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10559. </productMenu>
  10560. <productMenu id="quickGuide"
  10561. type="0"
  10562. url=""
  10563. size="934KB" >
  10564. </productMenu>
  10565. <productMenu id="userGuide"
  10566. type="1"
  10567. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10568. size="1.14MB" >
  10569. </productMenu>
  10570. <productMenu id="volume"
  10571. type="15" >
  10572. </productMenu>
  10573. <productID id="3410"
  10574. />
  10575. <productGroupable type="0"
  10576. />
  10577. </product>
  10578. <product id="X-COM2"
  10579. name="X-COM2"
  10580. series="20"
  10581. latestVersion="1.0.5"
  10582. show = "0" >
  10583. <productMenu id="protocol"
  10584. type="0">
  10585. </productMenu>
  10586. <productMenu id="sip"
  10587. type="1" >
  10588. </productMenu>
  10589. <productMenu id="bluetoothIntercom"
  10590. type="1" >
  10591. </productMenu>
  10592. <productMenu id="intercomSetting"
  10593. type="1" >
  10594. </productMenu>
  10595. <productMenu id="phone"
  10596. type="2" >
  10597. </productMenu>
  10598. <productMenu id="fmradio"
  10599. type="3" >
  10600. </productMenu>
  10601. <productMenu id="deviceSetting"
  10602. type="1"
  10603. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10604. </productMenu>
  10605. <productMenu id="quickGuide"
  10606. type="1"
  10607. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10608. size="796KB" >
  10609. </productMenu>
  10610. <productMenu id="userGuide"
  10611. type="1"
  10612. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10613. size="1.90MB" >
  10614. </productMenu>
  10615. <productID id="2030"
  10616. />
  10617. <productGroupable type="1"
  10618. />
  10619. </product>
  10620. <product id="AVAABC"
  10621. name="AVA ABC"
  10622. series="SPIDER"
  10623. latestVersion="1.1"
  10624. show = "0" >
  10625. <productMenu id="protocol"
  10626. type="2" >
  10627. </productMenu>
  10628. <productMenu id="alexa"
  10629. type="0" >
  10630. </productMenu>
  10631. <productMenu id="ota"
  10632. type="0" >
  10633. <productMenuType version="1.0"
  10634. type="0"
  10635. />
  10636. <otaPackages>
  10637. <package
  10638. url="https://api.sena.com/support/OTA/"
  10639. size="2945812"
  10640. />
  10641. </otaPackages>
  10642. </productMenu>
  10643. <productMenu id="wa"
  10644. type="0" >
  10645. </productMenu>
  10646. <productMenu id="meshIntercom"
  10647. type="30" >
  10648. <productMenuType version="1.0"
  10649. type="20"
  10650. />
  10651. </productMenu>
  10652. <productMenu id="meshIntercom+"
  10653. type="3"
  10654. url="2" >
  10655. <productMenuType version="1.0"
  10656. type="2"
  10657. />
  10658. <productMenuURL version="1.0"
  10659. url="0"
  10660. />
  10661. </productMenu>
  10662. <productMenu id="waveIntercom"
  10663. type="1" >
  10664. <productMenuType version="1.0"
  10665. type="0"
  10666. />
  10667. </productMenu>
  10668. <productMenu id="phone"
  10669. type="1" >
  10670. </productMenu>
  10671. <productMenu id="music"
  10672. type="1" >
  10673. </productMenu>
  10674. <productMenu id="musicSharing"
  10675. type="0" >
  10676. </productMenu>
  10677. <productMenu id="deviceSetting"
  10678. type="1"
  10679. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10680. <productMenuURL version="1.0"
  10681. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10682. />
  10683. </productMenu>
  10684. <productMenu id="quickGuide"
  10685. type="1"
  10686. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10687. size="1.12MB" >
  10688. </productMenu>
  10689. <productMenu id="userGuide"
  10690. type="1"
  10691. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10692. size="2.0MB" >
  10693. </productMenu>
  10694. <productMenu id="volume"
  10695. type="12" >
  10696. </productMenu>
  10697. <productMenu id="battery"
  10698. type="1" >
  10699. </productMenu>
  10700. <productID id="6808"
  10701. />
  10702. <productGroupable type="0"
  10703. />
  10704. </product>
  10705. <product id="ADVANCEProCOM2"
  10706. name="ADVANCE ProCOM 2"
  10707. series="Helmet"
  10708. latestVersion="0.5"
  10709. latestVersionVoicePrompt="0.3"
  10710. show = "-1" >
  10711. <productMenu id="protocol"
  10712. type="2" >
  10713. </productMenu>
  10714. <productMenu id="ota"
  10715. type="2" >
  10716. <otaLanguages>
  10717. <otaLanguage
  10718. id="0"
  10719. name="English"
  10720. package="0"
  10721. />
  10722. <otaLanguage
  10723. id="0"
  10724. name="French"
  10725. package="1"
  10726. />
  10727. <otaLanguage
  10728. id="0"
  10729. name="Spanish"
  10730. package="2"
  10731. />
  10732. <otaLanguage
  10733. id="0"
  10734. name="Italian"
  10735. package="3"
  10736. />
  10737. <otaLanguage
  10738. id="0"
  10739. name="German"
  10740. package="4"
  10741. />
  10742. <otaLanguage
  10743. id="0"
  10744. name="Dutch"
  10745. package="5"
  10746. />
  10747. <otaLanguage
  10748. id="0"
  10749. name="Russian"
  10750. package="6"
  10751. />
  10752. <otaLanguage
  10753. id="0"
  10754. name="Chinese"
  10755. package="7"
  10756. />
  10757. <otaLanguage
  10758. id="0"
  10759. name="Korean"
  10760. package="8"
  10761. />
  10762. <otaLanguage
  10763. id="0"
  10764. name="Japanese"
  10765. package="9"
  10766. />
  10767. <otaLanguage
  10768. id="0"
  10769. name="Finnish"
  10770. package="10"
  10771. />
  10772. <otaLanguage
  10773. id="0"
  10774. name="Polish"
  10775. package="11"
  10776. />
  10777. </otaLanguages>
  10778. <otaPackages>
  10779. <package
  10780. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10781. size="5183988"
  10782. />
  10783. <package
  10784. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10785. size="5183988"
  10786. />
  10787. <package
  10788. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10789. size="5183988"
  10790. />
  10791. <package
  10792. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10793. size="5183988"
  10794. />
  10795. <package
  10796. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10797. size="5183988"
  10798. />
  10799. <package
  10800. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10801. size="5183988"
  10802. />
  10803. <package
  10804. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10805. size="5183988"
  10806. />
  10807. <package
  10808. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10809. size="5183988"
  10810. />
  10811. <package
  10812. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10813. size="5183988"
  10814. />
  10815. <package
  10816. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10817. size="5183988"
  10818. />
  10819. <package
  10820. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10821. size="5183988"
  10822. />
  10823. <package
  10824. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10825. size="5183988"
  10826. />
  10827. </otaPackages>
  10828. </productMenu>
  10829. <productMenu id="wa"
  10830. type="0" >
  10831. </productMenu>
  10832. <productMenu id="meshIntercom"
  10833. type="30" >
  10834. </productMenu>
  10835. <productMenu id="meshIntercom+"
  10836. type="3"
  10837. url="2" >
  10838. </productMenu>
  10839. <productMenu id="waveIntercom"
  10840. type="1" >
  10841. </productMenu>
  10842. <productMenu id="fmradio"
  10843. type="1" >
  10844. </productMenu>
  10845. <productMenu id="phone"
  10846. type="0" >
  10847. </productMenu>
  10848. <productMenu id="music"
  10849. type="1" >
  10850. </productMenu>
  10851. <productMenu id="musicSharing"
  10852. type="0" >
  10853. </productMenu>
  10854. <productMenu id="deviceSetting"
  10855. type="1"
  10856. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10857. </productMenu>
  10858. <productMenu id="quickGuide"
  10859. type="0"
  10860. url=""
  10861. size="1.12MB" >
  10862. </productMenu>
  10863. <productMenu id="userGuide"
  10864. type="1"
  10865. url=""
  10866. size="2.0MB" >
  10867. </productMenu>
  10868. <productMenu id="videoGuide"
  10869. type="0"
  10870. url=""
  10871. size="3.41MB" >
  10872. </productMenu>
  10873. <productMenu id="connectGuide"
  10874. type="1"
  10875. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10876. size="1.12MB" >
  10877. </productMenu>
  10878. <productMenu id="volume"
  10879. type="16" >
  10880. </productMenu>
  10881. <productMenu id="battery"
  10882. type="1" >
  10883. </productMenu>
  10884. <productID id="6A85"
  10885. />
  10886. <productGroupable type="0"
  10887. />
  10888. </product>
  10889. <product id="Triumph_50S"
  10890. name="Triumph 50S"
  10891. series="50"
  10892. latestVersion="1.5"
  10893. show = "0" >
  10894. <productMenu id="protocol"
  10895. type="2" >
  10896. </productMenu>
  10897. <productMenu id="alexa"
  10898. type="0" >
  10899. </productMenu>
  10900. <productMenu id="ota"
  10901. type="0"
  10902. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10903. size="1150234" >
  10904. </productMenu>
  10905. <productMenu id="wa"
  10906. type="1" >
  10907. </productMenu>
  10908. <productMenu id="sip"
  10909. type="1" >
  10910. </productMenu>
  10911. <productMenu id="meshIntercom"
  10912. type="20" >
  10913. </productMenu>
  10914. <productMenu id="bluetoothIntercom"
  10915. type="1" >
  10916. </productMenu>
  10917. <productMenu id="meshIntercom+"
  10918. type="3"
  10919. url="2" >
  10920. <productMenuType version="1.2.9"
  10921. type="2"
  10922. />
  10923. <productMenuURL version="1.2.9"
  10924. url="0"
  10925. />
  10926. </productMenu>
  10927. <productMenu id="waveIntercom"
  10928. type="1" >
  10929. <productMenuType version="1.2.9"
  10930. type="0"
  10931. />
  10932. </productMenu>
  10933. <productMenu id="phone"
  10934. type="1" >
  10935. </productMenu>
  10936. <productMenu id="music"
  10937. type="1" >
  10938. </productMenu>
  10939. <productMenu id="fmradio"
  10940. type="1" >
  10941. </productMenu>
  10942. <productMenu id="deviceSetting"
  10943. type="1"
  10944. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10945. <productMenuURL version="1.2.9"
  10946. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10947. />
  10948. <productMenuURL version="1.0"
  10949. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10950. />
  10951. </productMenu>
  10952. <productMenu id="quickGuide"
  10953. type="1"
  10954. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10955. size="934KB" >
  10956. </productMenu>
  10957. <productMenu id="userGuide"
  10958. type="1"
  10959. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10960. size="1.14MB" >
  10961. </productMenu>
  10962. <productMenu id="volume"
  10963. type="11" >
  10964. </productMenu>
  10965. <productMenu id="battery"
  10966. type="1" >
  10967. </productMenu>
  10968. <productID id="3264"
  10969. />
  10970. <productGroupable type="0"
  10971. />
  10972. </product>
  10973. <product id="RE50S"
  10974. name="RE 50S"
  10975. series="50"
  10976. latestVersion="2.7"
  10977. show = "0" >
  10978. <productMenu id="protocol"
  10979. type="2" >
  10980. </productMenu>
  10981. <productMenu id="alexa"
  10982. type="0" >
  10983. </productMenu>
  10984. <productMenu id="ota"
  10985. type="0"
  10986. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10987. size="1150234" >
  10988. </productMenu>
  10989. <productMenu id="wa"
  10990. type="1" >
  10991. </productMenu>
  10992. <productMenu id="sip"
  10993. type="1" >
  10994. </productMenu>
  10995. <productMenu id="meshIntercom"
  10996. type="30" >
  10997. </productMenu>
  10998. <productMenu id="meshIntercom+"
  10999. type="3"
  11000. url="2" >
  11001. <productMenuType version="2.5"
  11002. type="2"
  11003. />
  11004. </productMenu>
  11005. <productMenu id="waveIntercom"
  11006. type="1" >
  11007. <productMenuType version="2.5"
  11008. type="0"
  11009. />
  11010. </productMenu>
  11011. <productMenu id="bluetoothIntercom"
  11012. type="1" >
  11013. </productMenu>
  11014. <productMenu id="phone"
  11015. type="1" >
  11016. </productMenu>
  11017. <productMenu id="music"
  11018. type="1" >
  11019. </productMenu>
  11020. <productMenu id="fmradio"
  11021. type="1" >
  11022. </productMenu>
  11023. <productMenu id="deviceSetting"
  11024. type="1"
  11025. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11026. <productMenuURL version="2.5.9"
  11027. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11028. />
  11029. </productMenu>
  11030. <productMenu id="quickGuide"
  11031. type="1"
  11032. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11033. size="934KB" >
  11034. </productMenu>
  11035. <productMenu id="userGuide"
  11036. type="1"
  11037. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11038. size="1.14MB" >
  11039. </productMenu>
  11040. <productMenu id="videoGuide"
  11041. type="0"
  11042. url=""
  11043. size="3.41MB" >
  11044. </productMenu>
  11045. <productMenu id="volume"
  11046. type="11" >
  11047. </productMenu>
  11048. <productMenu id="battery"
  11049. type="1" >
  11050. </productMenu>
  11051. <productID id="321C"
  11052. />
  11053. <productGroupable type="0"
  11054. />
  11055. </product>
  11056. <product id="BMW_HELMET_II_U1"
  11057. name="BMW HELMET II U1"
  11058. series="50"
  11059. latestVersion="1.0"
  11060. show = "0" >
  11061. <productMenu id="protocol"
  11062. type="2" >
  11063. </productMenu>
  11064. <productMenu id="alexa"
  11065. type="0" >
  11066. </productMenu>
  11067. <productMenu id="sip"
  11068. type="1" >
  11069. </productMenu>
  11070. <productMenu id="meshIntercom"
  11071. type="20" >
  11072. </productMenu>
  11073. <productMenu id="bluetoothIntercom"
  11074. type="1" >
  11075. </productMenu>
  11076. <productMenu id="bluetoothIntercom2"
  11077. type="1" >
  11078. </productMenu>
  11079. <productMenu id="phone"
  11080. type="1" >
  11081. </productMenu>
  11082. <productMenu id="music"
  11083. type="1" >
  11084. </productMenu>
  11085. <productMenu id="fmradio"
  11086. type="1" >
  11087. </productMenu>
  11088. <productMenu id="deviceSetting"
  11089. type="1"
  11090. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11091. </productMenu>
  11092. <productMenu id="quickGuide"
  11093. type="1"
  11094. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11095. size="934KB" >
  11096. </productMenu>
  11097. <productMenu id="userGuide"
  11098. type="1"
  11099. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11100. size="1.14MB" >
  11101. </productMenu>
  11102. <productMenu id="volume"
  11103. type="11" >
  11104. </productMenu>
  11105. <productMenu id="battery"
  11106. type="1" >
  11107. </productMenu>
  11108. <productID id="3260"
  11109. />
  11110. <productGroupable type="0"
  11111. />
  11112. </product>
  11113. <product id="OUTRUSHR"
  11114. name="CX935"
  11115. series="Helmet"
  11116. latestVersion="2.1"
  11117. show = "-1" >
  11118. <productMenu id="protocol"
  11119. type="3">
  11120. </productMenu>
  11121. <productMenu id="sip"
  11122. type="1" >
  11123. </productMenu>
  11124. <productMenu id="bluetoothIntercom"
  11125. type="1" >
  11126. </productMenu>
  11127. <productMenu id="phone"
  11128. type="1" >
  11129. </productMenu>
  11130. <productMenu id="fmradio"
  11131. type="0" >
  11132. </productMenu>
  11133. <productMenu id="deviceSetting"
  11134. type="1"
  11135. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11136. </productMenu>
  11137. <productMenu id="userGuide"
  11138. type="1"
  11139. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11140. size="660KB" >
  11141. </productMenu>
  11142. <productID id="5446"
  11143. />
  11144. <productGroupable type="0"
  11145. />
  11146. </product>
  11147. <product id="LSE_01"
  11148. name="LSE-01"
  11149. series="SF"
  11150. latestVersion="1.2.3"
  11151. show = "0" >
  11152. <productMenu id="protocol"
  11153. type="1"
  11154. url="3">
  11155. </productMenu>
  11156. <productMenu id="sip"
  11157. type="1" >
  11158. </productMenu>
  11159. <productMenu id="bluetoothIntercom"
  11160. type="1" >
  11161. </productMenu>
  11162. <productMenu id="phone"
  11163. type="1" >
  11164. </productMenu>
  11165. <productMenu id="music"
  11166. type="1" >
  11167. </productMenu>
  11168. <productMenu id="fmradio"
  11169. type="1" >
  11170. </productMenu>
  11171. <productMenu id="deviceSetting"
  11172. type="1"
  11173. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11174. <productMenuURL version="1.1"
  11175. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11176. />
  11177. <productMenuURL version="1.0"
  11178. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11179. />
  11180. </productMenu>
  11181. <productMenu id="quickGuide"
  11182. type="1"
  11183. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11184. size="607KB" >
  11185. </productMenu>
  11186. <productMenu id="userGuide"
  11187. type="1"
  11188. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11189. size="1.91MB" >
  11190. </productMenu>
  11191. <productMenu id="volume"
  11192. type="4" >
  11193. </productMenu>
  11194. <productID id="5416"
  11195. />
  11196. <productGroupable type="0"
  11197. />
  11198. </product>
  11199. <product id="AGV_ARK"
  11200. name="AGV ARK"
  11201. series="SF"
  11202. latestVersion="1.0.3"
  11203. show = "0" >
  11204. <productMenu id="protocol"
  11205. type="1"
  11206. url="3">
  11207. </productMenu>
  11208. <productMenu id="sip"
  11209. type="1" >
  11210. </productMenu>
  11211. <productMenu id="bluetoothIntercom"
  11212. type="1" >
  11213. </productMenu>
  11214. <productMenu id="phone"
  11215. type="1" >
  11216. </productMenu>
  11217. <productMenu id="music"
  11218. type="1" >
  11219. </productMenu>
  11220. <productMenu id="fmradio"
  11221. type="1" >
  11222. </productMenu>
  11223. <productMenu id="deviceSetting"
  11224. type="1"
  11225. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11226. </productMenu>
  11227. <productMenu id="quickGuide"
  11228. type="1"
  11229. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11230. size="607KB" >
  11231. </productMenu>
  11232. <productMenu id="userGuide"
  11233. type="1"
  11234. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11235. size="1.91MB" >
  11236. </productMenu>
  11237. <productMenu id="volume"
  11238. type="4" >
  11239. </productMenu>
  11240. <productID id="5420"
  11241. />
  11242. <productGroupable type="0"
  11243. />
  11244. </product>
  11245. <product id="KLIM_KRIOS"
  11246. name="KLIM Krios"
  11247. series="10"
  11248. latestVersion="1.1.2"
  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="phone"
  11260. type="2" >
  11261. </productMenu>
  11262. <productMenu id="fmradio"
  11263. type="3" >
  11264. </productMenu>
  11265. <productMenu id="deviceSetting"
  11266. type="1"
  11267. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11268. <productMenuURL version="1.0"
  11269. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11270. />
  11271. </productMenu>
  11272. <productMenu id="quickGuide"
  11273. type="1"
  11274. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11275. size="649KB" >
  11276. </productMenu>
  11277. <productMenu id="userGuide"
  11278. type="1"
  11279. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11280. size="1.43MB" >
  11281. </productMenu>
  11282. <productID id="5910"
  11283. />
  11284. <productGroupable type="0"
  11285. />
  11286. </product>
  11287. <product id="POLARIS_SLINGSHOT"
  11288. name="Polaris Slingshot"
  11289. series="10"
  11290. latestVersion="1.1.2"
  11291. show = "0" >
  11292. <productMenu id="protocol"
  11293. type="0">
  11294. </productMenu>
  11295. <productMenu id="sip"
  11296. type="1" >
  11297. </productMenu>
  11298. <productMenu id="bluetoothIntercom"
  11299. type="1" >
  11300. </productMenu>
  11301. <productMenu id="phone"
  11302. type="2" >
  11303. </productMenu>
  11304. <productMenu id="fmradio"
  11305. type="3" >
  11306. </productMenu>
  11307. <productMenu id="deviceSetting"
  11308. type="1"
  11309. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11310. <productMenuURL version="1.0"
  11311. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11312. />
  11313. </productMenu>
  11314. <productMenu id="quickGuide"
  11315. type="1"
  11316. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11317. size="689KB" >
  11318. </productMenu>
  11319. <productMenu id="userGuide"
  11320. type="1"
  11321. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11322. size="1.43MB" >
  11323. </productMenu>
  11324. <productID id="5920"
  11325. />
  11326. <productGroupable type="0"
  11327. />
  11328. </product>
  11329. <product id="DWO6"
  11330. name="SEDICI DWO6-PRO"
  11331. series="10"
  11332. latestVersion="1.0.2"
  11333. show = "0" >
  11334. <productMenu id="protocol"
  11335. type="0">
  11336. </productMenu>
  11337. <productMenu id="sip"
  11338. type="1" >
  11339. </productMenu>
  11340. <productMenu id="bluetoothIntercom"
  11341. type="1" >
  11342. </productMenu>
  11343. <productMenu id="phone"
  11344. type="2" >
  11345. </productMenu>
  11346. <productMenu id="fmradio"
  11347. type="3" >
  11348. </productMenu>
  11349. <productMenu id="deviceSetting"
  11350. type="1"
  11351. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11352. </productMenu>
  11353. <productMenu id="quickGuide"
  11354. type="1"
  11355. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11356. size="529KB" >
  11357. </productMenu>
  11358. <productMenu id="userGuide"
  11359. type="1"
  11360. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11361. size="4.09MB" >
  11362. </productMenu>
  11363. <productID id="6112"
  11364. />
  11365. <productGroupable type="0"
  11366. />
  11367. </product>
  11368. <product id="DWO6A"
  11369. name="SEDICI DWO-6"
  11370. series="10"
  11371. latestVersion="1.0.2"
  11372. show = "0" >
  11373. <productMenu id="protocol"
  11374. type="0">
  11375. </productMenu>
  11376. <productMenu id="sip"
  11377. type="1" >
  11378. </productMenu>
  11379. <productMenu id="bluetoothIntercom"
  11380. type="1" >
  11381. </productMenu>
  11382. <productMenu id="phone"
  11383. type="2" >
  11384. </productMenu>
  11385. <productMenu id="fmradio"
  11386. type="3" >
  11387. </productMenu>
  11388. <productMenu id="deviceSetting"
  11389. type="1"
  11390. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11391. </productMenu>
  11392. <productMenu id="quickGuide"
  11393. type="1"
  11394. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11395. size="522KB" >
  11396. </productMenu>
  11397. <productMenu id="userGuide"
  11398. type="1"
  11399. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11400. size="2.71MB" >
  11401. </productMenu>
  11402. <productID id="6114"
  11403. />
  11404. <productGroupable type="0"
  11405. />
  11406. </product>
  11407. <product id="3SPLUS"
  11408. name="ZILL"
  11409. series="3"
  11410. latestVersion="1.0.4"
  11411. show = "0" >
  11412. <productMenu id="protocol"
  11413. type="0">
  11414. </productMenu>
  11415. <productMenu id="sip"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="bluetoothIntercom"
  11419. type="1" >
  11420. </productMenu>
  11421. <productMenu id="deviceSetting"
  11422. type="1"
  11423. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11424. </productMenu>
  11425. <productMenu id="quickGuide"
  11426. type="1"
  11427. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11428. size="842KB" >
  11429. </productMenu>
  11430. <productMenu id="userGuide"
  11431. type="1"
  11432. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11433. size="1.02MB" >
  11434. </productMenu>
  11435. <productID id="6335"
  11436. />
  11437. <productGroupable type="0"
  11438. />
  11439. </product>
  11440. <product id="HD50S"
  11441. name="Boom! Audio 30K"
  11442. series="30"
  11443. latestVersion="3.4"
  11444. show = "0" >
  11445. <productMenu id="protocol"
  11446. type="1"
  11447. url="0">
  11448. </productMenu>
  11449. <productMenu id="wa"
  11450. type="0" >
  11451. </productMenu>
  11452. <productMenu id="sip"
  11453. type="1" >
  11454. </productMenu>
  11455. <productMenu id="meshIntercom"
  11456. type="20" >
  11457. <productMenuType version="2.9.9"
  11458. type="10"
  11459. />
  11460. </productMenu>
  11461. <productMenu id="bluetoothIntercom"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="phone"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="music"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="fmradio"
  11471. type="1" >
  11472. </productMenu>
  11473. <productMenu id="deviceSetting"
  11474. type="1"
  11475. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11476. <productMenuURL version="3.2"
  11477. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11478. />
  11479. <productMenuURL version="3.0"
  11480. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11481. />
  11482. <productMenuURL version="2.2"
  11483. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11484. />
  11485. </productMenu>
  11486. <productMenu id="quickGuide"
  11487. type="1"
  11488. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11489. size="1.06MB" >
  11490. </productMenu>
  11491. <productMenu id="userGuide"
  11492. type="1"
  11493. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11494. size="3.15MB" >
  11495. </productMenu>
  11496. <productMenu id="volume"
  11497. type="1" >
  11498. </productMenu>
  11499. <productID id="3112"
  11500. />
  11501. <productGroupable type="0"
  11502. />
  11503. </product>
  11504. <product id="HD50S"
  11505. name="Boom! Audio N02"
  11506. series="30"
  11507. latestVersion="3.1"
  11508. show = "0" >
  11509. <productMenu id="protocol"
  11510. type="1"
  11511. url="0">
  11512. </productMenu>
  11513. <productMenu id="wa"
  11514. type="2" >
  11515. </productMenu>
  11516. <productMenu id="sip"
  11517. type="1" >
  11518. </productMenu>
  11519. <productMenu id="meshIntercom"
  11520. type="20" >
  11521. <productMenuType version="2.9.9"
  11522. type="10"
  11523. />
  11524. </productMenu>
  11525. <productMenu id="bluetoothIntercom"
  11526. type="1" >
  11527. </productMenu>
  11528. <productMenu id="phone"
  11529. type="1" >
  11530. </productMenu>
  11531. <productMenu id="music"
  11532. type="1" >
  11533. </productMenu>
  11534. <productMenu id="fmradio"
  11535. type="1" >
  11536. </productMenu>
  11537. <productMenu id="deviceSetting"
  11538. type="1"
  11539. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11540. <productMenuURL version="2.2"
  11541. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11542. />
  11543. </productMenu>
  11544. <productMenu id="quickGuide"
  11545. type="1"
  11546. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11547. size="1.06MB" >
  11548. </productMenu>
  11549. <productMenu id="userGuide"
  11550. type="1"
  11551. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11552. size="3.15MB" >
  11553. </productMenu>
  11554. <productMenu id="volume"
  11555. type="2" >
  11556. </productMenu>
  11557. <productID id="3114"
  11558. />
  11559. <productGroupable type="0"
  11560. />
  11561. </product>
  11562. <product id="HD50S"
  11563. name="Boom Audio 20S"
  11564. series="50"
  11565. latestVersion="2.5.2"
  11566. show = "0" >
  11567. <productMenu id="protocol"
  11568. type="0">
  11569. </productMenu>
  11570. <productMenu id="sip"
  11571. type="1" >
  11572. <productMenuType version="1.0"
  11573. type="0"
  11574. />
  11575. </productMenu>
  11576. <productMenu id="bluetoothIntercom"
  11577. type="1" >
  11578. <productMenuType version="1.0"
  11579. type="0"
  11580. />
  11581. </productMenu>
  11582. <productMenu id="intercomSetting"
  11583. type="1" >
  11584. </productMenu>
  11585. <productMenu id="phone"
  11586. type="2" >
  11587. </productMenu>
  11588. <productMenu id="fmradio"
  11589. type="3" >
  11590. </productMenu>
  11591. <productMenu id="deviceSetting"
  11592. type="1"
  11593. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11594. <productMenuURL version="2.4"
  11595. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11596. />
  11597. <productMenuURL version="1.5"
  11598. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11599. />
  11600. <productMenuURL version="1.4.1"
  11601. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11602. />
  11603. <productMenuURL version="1.1"
  11604. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11605. />
  11606. <productMenuURL version="1.0"
  11607. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11608. />
  11609. </productMenu>
  11610. <productMenu id="quickGuide"
  11611. type="1"
  11612. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11613. size="264KB" >
  11614. </productMenu>
  11615. <productMenu id="userGuide"
  11616. type="1"
  11617. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11618. size="3.09MB" >
  11619. </productMenu>
  11620. <productMenu id="connectGuide"
  11621. type="1"
  11622. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11623. size="1.12MB" >
  11624. </productMenu>
  11625. <productID id="4210"
  11626. />
  11627. <productProductKey key="11"
  11628. />
  11629. <productID id="4230"
  11630. />
  11631. <productProductKey key="11"
  11632. />
  11633. <productGroupable type="1"
  11634. />
  11635. </product>
  11636. <product id="HD50S"
  11637. name="Boom Audio 20S EVO"
  11638. series="50"
  11639. latestVersion="2.5.2"
  11640. show = "0" >
  11641. <productMenu id="protocol"
  11642. type="0">
  11643. </productMenu>
  11644. <productMenu id="sip"
  11645. type="1" >
  11646. <productMenuType version="1.0"
  11647. type="0"
  11648. />
  11649. </productMenu>
  11650. <productMenu id="bluetoothIntercom"
  11651. type="1" >
  11652. <productMenuType version="1.0"
  11653. type="0"
  11654. />
  11655. </productMenu>
  11656. <productMenu id="intercomSetting"
  11657. type="1" >
  11658. </productMenu>
  11659. <productMenu id="phone"
  11660. type="2" >
  11661. </productMenu>
  11662. <productMenu id="fmradio"
  11663. type="3" >
  11664. </productMenu>
  11665. <productMenu id="deviceSetting"
  11666. type="1"
  11667. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11668. <productMenuURL version="2.4"
  11669. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11670. />
  11671. <productMenuURL version="1.5"
  11672. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11673. />
  11674. <productMenuURL version="1.4.1"
  11675. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11676. />
  11677. <productMenuURL version="1.1"
  11678. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11679. />
  11680. <productMenuURL version="1.0"
  11681. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11682. />
  11683. </productMenu>
  11684. <productMenu id="quickGuide"
  11685. type="1"
  11686. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11687. size="321KB" >
  11688. </productMenu>
  11689. <productMenu id="userGuide"
  11690. type="1"
  11691. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11692. size="2.46MB" >
  11693. </productMenu>
  11694. <productID id="4230"
  11695. />
  11696. <productProductKey key="27"
  11697. />
  11698. <productGroupable type="1"
  11699. />
  11700. </product>
  11701. <product id="HD50S"
  11702. name="Boom! Audio 10S"
  11703. series="50"
  11704. latestVersion="1.1.3"
  11705. show = "0" >
  11706. <productMenu id="protocol"
  11707. type="0">
  11708. </productMenu>
  11709. <productMenu id="sip"
  11710. type="1" >
  11711. </productMenu>
  11712. <productMenu id="bluetoothIntercom"
  11713. type="1" >
  11714. </productMenu>
  11715. <productMenu id="phone"
  11716. type="2" >
  11717. </productMenu>
  11718. <productMenu id="fmradio"
  11719. type="3" >
  11720. </productMenu>
  11721. <productMenu id="deviceSetting"
  11722. type="1"
  11723. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11724. </productMenu>
  11725. <productMenu id="quickGuide"
  11726. type="1"
  11727. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11728. size="538KB" >
  11729. </productMenu>
  11730. <productMenu id="userGuide"
  11731. type="1"
  11732. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11733. size="1.55MB" >
  11734. </productMenu>
  11735. <productID id="5532"
  11736. />
  11737. <productGroupable type="0"
  11738. />
  11739. </product>
  11740. <product id="HD50S"
  11741. name="Boom! Audio N01 10R"
  11742. series="50"
  11743. latestVersion="1.1.3"
  11744. show = "0" >
  11745. <productMenu id="protocol"
  11746. type="0">
  11747. </productMenu>
  11748. <productMenu id="sip"
  11749. type="1" >
  11750. </productMenu>
  11751. <productMenu id="bluetoothIntercom"
  11752. type="1" >
  11753. </productMenu>
  11754. <productMenu id="phone"
  11755. type="2" >
  11756. </productMenu>
  11757. <productMenu id="fmradio"
  11758. type="3" >
  11759. </productMenu>
  11760. <productMenu id="deviceSetting"
  11761. type="1"
  11762. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11763. </productMenu>
  11764. <productMenu id="quickGuide"
  11765. type="1"
  11766. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11767. size="766KB" >
  11768. </productMenu>
  11769. <productMenu id="userGuide"
  11770. type="1"
  11771. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11772. size="1.45MB" >
  11773. </productMenu>
  11774. <productID id="5522"
  11775. />
  11776. <productGroupable type="0"
  11777. />
  11778. </product>
  11779. <product id="HD50S"
  11780. name="OUTRUSH-R N03"
  11781. series="50"
  11782. latestVersion="1.2.1"
  11783. show = "-1" >
  11784. <productMenu id="protocol"
  11785. type="0">
  11786. </productMenu>
  11787. <productMenu id="sip"
  11788. type="1" >
  11789. </productMenu>
  11790. <productMenu id="bluetoothIntercom"
  11791. type="1" >
  11792. </productMenu>
  11793. <productMenu id="phone"
  11794. type="2" >
  11795. </productMenu>
  11796. <productMenu id="fmradio"
  11797. type="3" >
  11798. </productMenu>
  11799. <productMenu id="deviceSetting"
  11800. type="1"
  11801. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11802. </productMenu>
  11803. <productMenu id="userGuide"
  11804. type="1"
  11805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11806. size="660KB" >
  11807. </productMenu>
  11808. <productID id="5434"
  11809. />
  11810. <productGroupable type="0"
  11811. />
  11812. </product>
  11813. <product id="HD50S"
  11814. name="OUTRUSH-R N03"
  11815. series="50"
  11816. latestVersion="2.0"
  11817. show = "0" >
  11818. <productMenu id="protocol"
  11819. type="3" >
  11820. </productMenu>
  11821. <productMenu id="sip"
  11822. type="1" >
  11823. </productMenu>
  11824. <productMenu id="bluetoothIntercom"
  11825. type="1" >
  11826. </productMenu>
  11827. <productMenu id="phone"
  11828. type="1" >
  11829. </productMenu>
  11830. <productMenu id="fmradio"
  11831. type="1" >
  11832. </productMenu>
  11833. <productMenu id="deviceSetting"
  11834. type="1"
  11835. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11836. </productMenu>
  11837. <productMenu id="userGuide"
  11838. type="1"
  11839. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11840. size="1.14MB" >
  11841. </productMenu>
  11842. <productID id="5441"
  11843. />
  11844. <productGroupable type="0"
  11845. />
  11846. </product>
  11847. <product id="5R"
  11848. name="5R"
  11849. series="5"
  11850. latestVersion="1.0.1"
  11851. show = "1" >
  11852. <productMenu id="protocol"
  11853. type="3" >
  11854. </productMenu>
  11855. <productMenu id="sip"
  11856. type="1" >
  11857. </productMenu>
  11858. <productMenu id="bluetoothIntercom"
  11859. type="1" >
  11860. </productMenu>
  11861. <productMenu id="phone"
  11862. type="1" >
  11863. </productMenu>
  11864. <productMenu id="fmradio"
  11865. type="1" >
  11866. </productMenu>
  11867. <productMenu id="deviceSetting"
  11868. type="1"
  11869. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11870. </productMenu>
  11871. <productMenu id="quickGuide"
  11872. type="0"
  11873. url=""
  11874. size="934KB" >
  11875. </productMenu>
  11876. <productMenu id="userGuide"
  11877. type="1"
  11878. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11879. size="1.14MB" >
  11880. </productMenu>
  11881. <productMenu id="connectGuide"
  11882. type="1"
  11883. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11884. size="1.12MB" >
  11885. </productMenu>
  11886. <productID id="5591"
  11887. />
  11888. <productGroupable type="0"
  11889. />
  11890. </product>
  11891. <product id="5R"
  11892. name="5R LITE"
  11893. series="5"
  11894. latestVersion="1.0.1"
  11895. show = "1" >
  11896. <productMenu id="protocol"
  11897. type="3" >
  11898. </productMenu>
  11899. <productMenu id="sip"
  11900. type="1" >
  11901. </productMenu>
  11902. <productMenu id="bluetoothIntercom"
  11903. type="1" >
  11904. </productMenu>
  11905. <productMenu id="phone"
  11906. type="1" >
  11907. </productMenu>
  11908. <productMenu id="fmradio"
  11909. type="1" >
  11910. </productMenu>
  11911. <productMenu id="deviceSetting"
  11912. type="1"
  11913. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11914. </productMenu>
  11915. <productMenu id="quickGuide"
  11916. type="0"
  11917. url=""
  11918. size="934KB" >
  11919. </productMenu>
  11920. <productMenu id="userGuide"
  11921. type="1"
  11922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11923. size="1.14MB" >
  11924. </productMenu>
  11925. <productMenu id="connectGuide"
  11926. type="1"
  11927. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11928. size="1.12MB" >
  11929. </productMenu>
  11930. <productID id="5592"
  11931. />
  11932. <productGroupable type="0"
  11933. />
  11934. </product>
  11935. <product id="50RLE"
  11936. name="50R LE"
  11937. series="50"
  11938. latestVersion="1.1"
  11939. show = "0" >
  11940. <productMenu id="protocol"
  11941. type="2" >
  11942. </productMenu>
  11943. <productMenu id="alexa"
  11944. type="0" >
  11945. </productMenu>
  11946. <productMenu id="sip"
  11947. type="1" >
  11948. </productMenu>
  11949. <productMenu id="meshIntercom"
  11950. type="30" >
  11951. </productMenu>
  11952. <productMenu id="meshIntercom+"
  11953. type="3"
  11954. url="2" >
  11955. <productMenuType version="1.0.9"
  11956. type="2"
  11957. />
  11958. </productMenu>
  11959. <productMenu id="waveIntercom"
  11960. type="1" >
  11961. <productMenuType version="1.0.9"
  11962. type="0"
  11963. />
  11964. </productMenu>
  11965. <productMenu id="bluetoothIntercom"
  11966. type="1" >
  11967. </productMenu>
  11968. <productMenu id="phone"
  11969. type="1" >
  11970. </productMenu>
  11971. <productMenu id="music"
  11972. type="1" >
  11973. </productMenu>
  11974. <productMenu id="fmradio"
  11975. type="0" >
  11976. </productMenu>
  11977. <productMenu id="deviceSetting"
  11978. type="1"
  11979. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11980. <productMenuURL version="1.0.9"
  11981. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11982. />
  11983. </productMenu>
  11984. <productMenu id="quickGuide"
  11985. type="0"
  11986. url=""
  11987. size="344KB" >
  11988. </productMenu>
  11989. <productMenu id="userGuide"
  11990. type="0"
  11991. url=""
  11992. size="3.41MB" >
  11993. </productMenu>
  11994. <productMenu id="volume"
  11995. type="11" >
  11996. </productMenu>
  11997. <productMenu id="battery"
  11998. type="1" >
  11999. </productMenu>
  12000. <productID id="3223"
  12001. />
  12002. <productGroupable type="0"
  12003. />
  12004. </product>
  12005. <product id="5RLOUIS"
  12006. name="5R LOUIS EDITION"
  12007. series="5"
  12008. latestVersion="1.0"
  12009. show = "-1" >
  12010. <productMenu id="protocol"
  12011. type="3" >
  12012. </productMenu>
  12013. <productMenu id="sip"
  12014. type="1" >
  12015. </productMenu>
  12016. <productMenu id="bluetoothIntercom"
  12017. type="1" >
  12018. </productMenu>
  12019. <productMenu id="phone"
  12020. type="1" >
  12021. </productMenu>
  12022. <productMenu id="fmradio"
  12023. type="1" >
  12024. </productMenu>
  12025. <productMenu id="deviceSetting"
  12026. type="1"
  12027. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12028. </productMenu>
  12029. <productMenu id="quickGuide"
  12030. type="0"
  12031. url=""
  12032. size="934KB" >
  12033. </productMenu>
  12034. <productMenu id="userGuide"
  12035. type="0"
  12036. url=""
  12037. size="1.14MB" >
  12038. </productMenu>
  12039. <productID id="5597"
  12040. />
  12041. <productGroupable type="0"
  12042. />
  12043. </product>
  12044. <product id="5S"
  12045. name="Ridekont 5S"
  12046. series="5"
  12047. latestVersion="2.3"
  12048. show = "-1" >
  12049. <productMenu id="protocol"
  12050. type="3" >
  12051. </productMenu>
  12052. <productMenu id="sip"
  12053. type="1" >
  12054. </productMenu>
  12055. <productMenu id="bluetoothIntercom"
  12056. type="1" >
  12057. </productMenu>
  12058. <productMenu id="phone"
  12059. type="1" >
  12060. </productMenu>
  12061. <productMenu id="fmradio"
  12062. type="0" >
  12063. </productMenu>
  12064. <productMenu id="deviceSetting"
  12065. type="1"
  12066. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12067. </productMenu>
  12068. <productMenu id="quickGuide"
  12069. type="0"
  12070. url=""
  12071. size="934KB" >
  12072. </productMenu>
  12073. <productMenu id="userGuide"
  12074. type="1"
  12075. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12076. size="1.14MB" >
  12077. </productMenu>
  12078. <productID id="5589"
  12079. />
  12080. <productGroupable type="0"
  12081. />
  12082. </product>
  12083. <product id="5R"
  12084. name="Ridekont 5R"
  12085. series="5"
  12086. latestVersion="1.0"
  12087. show = "0" >
  12088. <productMenu id="protocol"
  12089. type="3" >
  12090. </productMenu>
  12091. <productMenu id="sip"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="bluetoothIntercom"
  12095. type="1" >
  12096. </productMenu>
  12097. <productMenu id="phone"
  12098. type="1" >
  12099. </productMenu>
  12100. <productMenu id="fmradio"
  12101. type="1" >
  12102. </productMenu>
  12103. <productMenu id="deviceSetting"
  12104. type="1"
  12105. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12106. </productMenu>
  12107. <productMenu id="quickGuide"
  12108. type="1"
  12109. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12110. size="934KB" >
  12111. </productMenu>
  12112. <productMenu id="userGuide"
  12113. type="1"
  12114. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12115. size="1.14MB" >
  12116. </productMenu>
  12117. <productID id="5593"
  12118. />
  12119. <productGroupable type="0"
  12120. />
  12121. </product>
  12122. <product id="5R"
  12123. name="Ridekont 5R LITE"
  12124. series="5"
  12125. latestVersion="1.0"
  12126. show = "0" >
  12127. <productMenu id="protocol"
  12128. type="3" >
  12129. </productMenu>
  12130. <productMenu id="sip"
  12131. type="1" >
  12132. </productMenu>
  12133. <productMenu id="bluetoothIntercom"
  12134. type="1" >
  12135. </productMenu>
  12136. <productMenu id="phone"
  12137. type="1" >
  12138. </productMenu>
  12139. <productMenu id="fmradio"
  12140. type="1" >
  12141. </productMenu>
  12142. <productMenu id="deviceSetting"
  12143. type="1"
  12144. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12145. </productMenu>
  12146. <productMenu id="quickGuide"
  12147. type="0"
  12148. url=""
  12149. size="934KB" >
  12150. </productMenu>
  12151. <productMenu id="userGuide"
  12152. type="1"
  12153. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12154. size="1.14MB" >
  12155. </productMenu>
  12156. <productID id="5594"
  12157. />
  12158. <productGroupable type="0"
  12159. />
  12160. </product>
  12161. <product id="SA30"
  12162. name="SA30"
  12163. series="SA"
  12164. latestVersion="1.0.1"
  12165. latestVersionVoicePrompt="0.15"
  12166. show = "-1" >
  12167. <productMenu id="protocol"
  12168. type="2" >
  12169. </productMenu>
  12170. <productMenu id="ota"
  12171. type="2" >
  12172. <otaPackages>
  12173. <package
  12174. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12175. size="3144148"
  12176. />
  12177. </otaPackages>
  12178. </productMenu>
  12179. <productMenu id="meshIntercom"
  12180. type="30" >
  12181. </productMenu>
  12182. <productMenu id="meshIntercom+"
  12183. type="3"
  12184. url="2" >
  12185. </productMenu>
  12186. <productMenu id="phone"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="music"
  12190. type="1" >
  12191. </productMenu>
  12192. <productMenu id="musicSharing"
  12193. type="0" >
  12194. </productMenu>
  12195. <productMenu id="deviceSetting"
  12196. type="1"
  12197. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12198. </productMenu>
  12199. <productMenu id="quickGuide"
  12200. type="0"
  12201. url=""
  12202. size="1.12MB" >
  12203. </productMenu>
  12204. <productMenu id="userGuide"
  12205. type="1"
  12206. url=""
  12207. size="2.0MB" >
  12208. </productMenu>
  12209. <productMenu id="videoGuide"
  12210. type="0"
  12211. url=""
  12212. size="3.41MB" >
  12213. </productMenu>
  12214. <productMenu id="volume"
  12215. type="12" >
  12216. </productMenu>
  12217. <productMenu id="battery"
  12218. type="1" >
  12219. </productMenu>
  12220. <productID id="6852"
  12221. />
  12222. <productGroupable type="0"
  12223. />
  12224. </product>
  12225. <product id="I30"
  12226. name="I30"
  12227. series="I"
  12228. latestVersion="1.0.1"
  12229. latestVersionVoicePrompt="0.2"
  12230. show = "-1" >
  12231. <productMenu id="protocol"
  12232. type="2" >
  12233. </productMenu>
  12234. <productMenu id="ota"
  12235. type="2" >
  12236. <otaPackages>
  12237. <package
  12238. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12239. size="3144148"
  12240. />
  12241. </otaPackages>
  12242. </productMenu>
  12243. <productMenu id="meshIntercom"
  12244. type="30" >
  12245. </productMenu>
  12246. <productMenu id="meshIntercom+"
  12247. type="3"
  12248. url="2" >
  12249. </productMenu>
  12250. <productMenu id="phone"
  12251. type="1" >
  12252. </productMenu>
  12253. <productMenu id="music"
  12254. type="1" >
  12255. </productMenu>
  12256. <productMenu id="musicSharing"
  12257. type="0" >
  12258. </productMenu>
  12259. <productMenu id="deviceSetting"
  12260. type="1"
  12261. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12262. </productMenu>
  12263. <productMenu id="quickGuide"
  12264. type="0"
  12265. url=""
  12266. size="1.12MB" >
  12267. </productMenu>
  12268. <productMenu id="userGuide"
  12269. type="1"
  12270. url=""
  12271. size="2.10MB" >
  12272. </productMenu>
  12273. <productMenu id="videoGuide"
  12274. type="0"
  12275. url=""
  12276. size="3.11MB" >
  12277. </productMenu>
  12278. <productMenu id="volume"
  12279. type="12" >
  12280. </productMenu>
  12281. <productMenu id="battery"
  12282. type="1" >
  12283. </productMenu>
  12284. <productID id="6853"
  12285. />
  12286. <productGroupable type="0"
  12287. />
  12288. </product>
  12289. <product id="C30"
  12290. name="SENA C30"
  12291. series="C"
  12292. latestVersion="1.2.2"
  12293. latestVersionVoicePrompt="0.13"
  12294. show = "1" >
  12295. <productMenu id="protocol"
  12296. type="2" >
  12297. </productMenu>
  12298. <productMenu id="alexa"
  12299. type="0" >
  12300. </productMenu>
  12301. <productMenu id="ota"
  12302. type="2" >
  12303. <otaPackages>
  12304. <package
  12305. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12306. size="3144148"
  12307. />
  12308. </otaPackages>
  12309. </productMenu>
  12310. <productMenu id="wa"
  12311. type="0" >
  12312. </productMenu>
  12313. <productMenu id="meshIntercom"
  12314. type="30" >
  12315. </productMenu>
  12316. <productMenu id="meshIntercom+"
  12317. type="3"
  12318. url="2" >
  12319. <productMenuType version="1.0.9"
  12320. type="2"
  12321. />
  12322. </productMenu>
  12323. <productMenu id="waveIntercom"
  12324. type="1" >
  12325. <productMenuType version="1.1.9"
  12326. type="0"
  12327. />
  12328. </productMenu>
  12329. <productMenu id="phone"
  12330. type="1" >
  12331. </productMenu>
  12332. <productMenu id="music"
  12333. type="1" >
  12334. </productMenu>
  12335. <productMenu id="musicSharing"
  12336. type="0" >
  12337. </productMenu>
  12338. <productMenu id="deviceSetting"
  12339. type="1"
  12340. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12341. <productMenuURL version="1.1.3"
  12342. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12343. />
  12344. <productMenuURL version="1.0.9"
  12345. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12346. />
  12347. </productMenu>
  12348. <productMenu id="quickGuide"
  12349. type="1"
  12350. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12351. size="1.12MB" >
  12352. </productMenu>
  12353. <productMenu id="userGuide"
  12354. type="0"
  12355. url=""
  12356. size="2.0MB" >
  12357. </productMenu>
  12358. <productMenu id="videoGuide"
  12359. type="0"
  12360. url=""
  12361. size="3.41MB" >
  12362. </productMenu>
  12363. <productMenu id="volume"
  12364. type="12" >
  12365. </productMenu>
  12366. <productMenu id="battery"
  12367. type="1" >
  12368. </productMenu>
  12369. <productID id="683A"
  12370. />
  12371. <productGroupable type="0"
  12372. />
  12373. </product>
  12374. <product id="C20"
  12375. name="C20"
  12376. series="C"
  12377. latestVersion="1.0"
  12378. show = "1" >
  12379. <productMenu id="protocol"
  12380. type="3" >
  12381. </productMenu>
  12382. <productMenu id="sip"
  12383. type="1" >
  12384. </productMenu>
  12385. <productMenu id="bluetoothIntercom"
  12386. type="1" >
  12387. </productMenu>
  12388. <productMenu id="phone"
  12389. type="1" >
  12390. </productMenu>
  12391. <productMenu id="deviceSetting"
  12392. type="1"
  12393. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12394. </productMenu>
  12395. <productMenu id="quickGuide"
  12396. type="1"
  12397. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12398. size="934KB" >
  12399. </productMenu>
  12400. <productMenu id="userGuide"
  12401. type="1"
  12402. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12403. size="1.14MB" >
  12404. </productMenu>
  12405. <productID id="3701"
  12406. />
  12407. <productGroupable type="0"
  12408. />
  12409. </product>
  12410. <product id="C10"
  12411. name="C10"
  12412. series="C"
  12413. latestVersion="1.4.4"
  12414. show = "1" >
  12415. <productMenu id="protocol"
  12416. type="3" >
  12417. </productMenu>
  12418. <productMenu id="sip"
  12419. type="1" >
  12420. </productMenu>
  12421. <productMenu id="bluetoothIntercom"
  12422. type="1" >
  12423. </productMenu>
  12424. <productMenu id="phone"
  12425. type="1" >
  12426. </productMenu>
  12427. <productMenu id="fmradio"
  12428. type="0" >
  12429. </productMenu>
  12430. <productMenu id="deviceSetting"
  12431. type="1"
  12432. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12433. </productMenu>
  12434. <productMenu id="userGuide"
  12435. type="1"
  12436. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12437. size="1.14MB" >
  12438. </productMenu>
  12439. <productID id="5595"
  12440. />
  12441. <productGroupable type="0"
  12442. />
  12443. </product>
  12444. <product id="J30"
  12445. name="J30"
  12446. series="J"
  12447. latestVersion="1.2.2"
  12448. latestVersionVoicePrompt="0.14"
  12449. show = "0" >
  12450. <productMenu id="protocol"
  12451. type="2" >
  12452. </productMenu>
  12453. <productMenu id="alexa"
  12454. type="0" >
  12455. </productMenu>
  12456. <productMenu id="ota"
  12457. type="2" >
  12458. <otaPackages>
  12459. <package
  12460. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12461. size="3144148"
  12462. />
  12463. </otaPackages>
  12464. </productMenu>
  12465. <productMenu id="wa"
  12466. type="0" >
  12467. </productMenu>
  12468. <productMenu id="meshIntercom"
  12469. type="30" >
  12470. </productMenu>
  12471. <productMenu id="meshIntercom+"
  12472. type="3"
  12473. url="2" >
  12474. <productMenuType version="1.0.9"
  12475. type="2"
  12476. />
  12477. </productMenu>
  12478. <productMenu id="waveIntercom"
  12479. type="1" >
  12480. <productMenuType version="1.1.9"
  12481. type="0"
  12482. />
  12483. </productMenu>
  12484. <productMenu id="phone"
  12485. type="1" >
  12486. </productMenu>
  12487. <productMenu id="music"
  12488. type="1" >
  12489. </productMenu>
  12490. <productMenu id="musicSharing"
  12491. type="0" >
  12492. </productMenu>
  12493. <productMenu id="deviceSetting"
  12494. type="1"
  12495. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12496. <productMenuURL version="1.0.9"
  12497. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12498. />
  12499. </productMenu>
  12500. <productMenu id="quickGuide"
  12501. type="0"
  12502. url=""
  12503. size="1.12MB" >
  12504. </productMenu>
  12505. <productMenu id="userGuide"
  12506. type="1"
  12507. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12508. size="2.0MB" >
  12509. </productMenu>
  12510. <productMenu id="videoGuide"
  12511. type="0"
  12512. url=""
  12513. size="3.41MB" >
  12514. </productMenu>
  12515. <productMenu id="volume"
  12516. type="12" >
  12517. </productMenu>
  12518. <productMenu id="battery"
  12519. type="1" >
  12520. </productMenu>
  12521. <productID id="6848"
  12522. />
  12523. <productGroupable type="0"
  12524. />
  12525. </product>
  12526. <product id="J10"
  12527. name="J10"
  12528. series="5"
  12529. latestVersion="1.1.4"
  12530. show = "0" >
  12531. <productMenu id="protocol"
  12532. type="3" >
  12533. </productMenu>
  12534. <productMenu id="sip"
  12535. type="1" >
  12536. </productMenu>
  12537. <productMenu id="bluetoothIntercom"
  12538. type="1" >
  12539. </productMenu>
  12540. <productMenu id="phone"
  12541. type="1" >
  12542. </productMenu>
  12543. <productMenu id="fmradio"
  12544. type="0" >
  12545. </productMenu>
  12546. <productMenu id="deviceSetting"
  12547. type="1"
  12548. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12549. </productMenu>
  12550. <productMenu id="userGuide"
  12551. type="1"
  12552. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12553. size="1.14MB" >
  12554. </productMenu>
  12555. <productID id="5598"
  12556. />
  12557. <productGroupable type="0"
  12558. />
  12559. </product>
  12560. <product id="B20"
  12561. name="B20"
  12562. series="B"
  12563. latestVersion="1.1.2"
  12564. latestVersionVoicePrompt="0.14"
  12565. show = "0" >
  12566. <productMenu id="protocol"
  12567. type="2" >
  12568. </productMenu>
  12569. <productMenu id="alexa"
  12570. type="0" >
  12571. </productMenu>
  12572. <productMenu id="ota"
  12573. type="2" >
  12574. <otaPackages>
  12575. <package
  12576. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12577. size="3144148"
  12578. />
  12579. </otaPackages>
  12580. </productMenu>
  12581. <productMenu id="wa"
  12582. type="0" >
  12583. </productMenu>
  12584. <productMenu id="meshIntercom"
  12585. type="30" >
  12586. </productMenu>
  12587. <productMenu id="phone"
  12588. type="1" >
  12589. </productMenu>
  12590. <productMenu id="music"
  12591. type="1" >
  12592. </productMenu>
  12593. <productMenu id="musicSharing"
  12594. type="0" >
  12595. </productMenu>
  12596. <productMenu id="deviceSetting"
  12597. type="1"
  12598. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12599. <productMenuURL version="1.0.9"
  12600. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12601. />
  12602. </productMenu>
  12603. <productMenu id="quickGuide"
  12604. type="0"
  12605. url=""
  12606. size="1.12MB" >
  12607. </productMenu>
  12608. <productMenu id="userGuide"
  12609. type="1"
  12610. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12611. size="2.0MB" >
  12612. </productMenu>
  12613. <productMenu id="videoGuide"
  12614. type="0"
  12615. url=""
  12616. size="3.41MB" >
  12617. </productMenu>
  12618. <productMenu id="volume"
  12619. type="12" >
  12620. </productMenu>
  12621. <productMenu id="battery"
  12622. type="1" >
  12623. </productMenu>
  12624. <productID id="6847"
  12625. />
  12626. <productGroupable type="0"
  12627. />
  12628. </product>
  12629. <product id="B10"
  12630. name="B10"
  12631. series="5"
  12632. latestVersion="1.2.4"
  12633. show = "0" >
  12634. <productMenu id="protocol"
  12635. type="3" >
  12636. </productMenu>
  12637. <productMenu id="sip"
  12638. type="1" >
  12639. </productMenu>
  12640. <productMenu id="bluetoothIntercom"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="phone"
  12644. type="1" >
  12645. </productMenu>
  12646. <productMenu id="fmradio"
  12647. type="0" >
  12648. </productMenu>
  12649. <productMenu id="deviceSetting"
  12650. type="1"
  12651. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12652. </productMenu>
  12653. <productMenu id="userGuide"
  12654. type="1"
  12655. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12656. size="1.14MB" >
  12657. </productMenu>
  12658. <productID id="5596"
  12659. />
  12660. <productGroupable type="0"
  12661. />
  12662. </product>
  12663. <product id="E30"
  12664. name="E30"
  12665. series="E"
  12666. latestVersion="1.1.2"
  12667. latestVersionVoicePrompt="0.14"
  12668. show = "0" >
  12669. <productMenu id="protocol"
  12670. type="2" >
  12671. </productMenu>
  12672. <productMenu id="alexa"
  12673. type="0" >
  12674. </productMenu>
  12675. <productMenu id="ota"
  12676. type="2" >
  12677. <otaPackages>
  12678. <package
  12679. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12680. size="3144148"
  12681. />
  12682. </otaPackages>
  12683. </productMenu>
  12684. <productMenu id="wa"
  12685. type="0" >
  12686. </productMenu>
  12687. <productMenu id="meshIntercom"
  12688. type="30" >
  12689. </productMenu>
  12690. <productMenu id="meshIntercom+"
  12691. type="3"
  12692. url="2" >
  12693. </productMenu>
  12694. <productMenu id="waveIntercom"
  12695. type="1" >
  12696. <productMenuType version="1.0.9"
  12697. type="0"
  12698. />
  12699. </productMenu>
  12700. <productMenu id="phone"
  12701. type="1" >
  12702. </productMenu>
  12703. <productMenu id="music"
  12704. type="1" >
  12705. </productMenu>
  12706. <productMenu id="musicSharing"
  12707. type="0" >
  12708. </productMenu>
  12709. <productMenu id="deviceSetting"
  12710. type="1"
  12711. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12712. </productMenu>
  12713. <productMenu id="quickGuide"
  12714. type="0"
  12715. url=""
  12716. size="1.12MB" >
  12717. </productMenu>
  12718. <productMenu id="userGuide"
  12719. type="1"
  12720. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12721. size="2.0MB" >
  12722. </productMenu>
  12723. <productMenu id="videoGuide"
  12724. type="0"
  12725. url=""
  12726. size="3.41MB" >
  12727. </productMenu>
  12728. <productMenu id="volume"
  12729. type="12" >
  12730. </productMenu>
  12731. <productMenu id="battery"
  12732. type="1" >
  12733. </productMenu>
  12734. <productID id="6846"
  12735. />
  12736. <productGroupable type="0"
  12737. />
  12738. </product>
  12739. <product id="ACSRAM"
  12740. name="ACS-RAM"
  12741. series="ACS"
  12742. latestVersion="1.0.5"
  12743. show = "1" >
  12744. <productMenu id="protocol"
  12745. type="3" >
  12746. </productMenu>
  12747. <productMenu id="sip"
  12748. type="1" >
  12749. </productMenu>
  12750. <productMenu id="bluetoothIntercom"
  12751. type="1" >
  12752. </productMenu>
  12753. <productMenu id="deviceSetting"
  12754. type="1"
  12755. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12756. </productMenu>
  12757. <productMenu id="quickGuide"
  12758. type="1"
  12759. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12760. size="344KB" >
  12761. </productMenu>
  12762. <productMenu id="userGuide"
  12763. type="1"
  12764. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12765. size="1.14MB" >
  12766. </productMenu>
  12767. <productMenu id="connectGuide"
  12768. type="1"
  12769. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12770. size="1.12MB" >
  12771. </productMenu>
  12772. <productID id="3400"
  12773. />
  12774. <productGroupable type="0"
  12775. />
  12776. </product>
  12777. <product id="ACS10"
  12778. name="ACS10"
  12779. series="ACS"
  12780. latestVersion="1.0.2"
  12781. show = "1" >
  12782. <productMenu id="protocol"
  12783. type="0">
  12784. </productMenu>
  12785. <productMenu id="sip"
  12786. type="1" >
  12787. </productMenu>
  12788. <productMenu id="bluetoothIntercom"
  12789. type="1" >
  12790. </productMenu>
  12791. <productMenu id="phone"
  12792. type="2" >
  12793. </productMenu>
  12794. <productMenu id="deviceSetting"
  12795. type="1"
  12796. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12797. </productMenu>
  12798. <productMenu id="quickGuide"
  12799. type="1"
  12800. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12801. size="970KB" >
  12802. </productMenu>
  12803. <productMenu id="userGuide"
  12804. type="1"
  12805. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12806. size="1.26MB" >
  12807. </productMenu>
  12808. <productMenu id="connectGuide"
  12809. type="1"
  12810. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12811. size="1.12MB" >
  12812. </productMenu>
  12813. <productID id="3300"
  12814. />
  12815. <productGroupable type="0"
  12816. />
  12817. </product>
  12818. <product id="DWO7ProMesh"
  12819. name="DWO 7 Pro Mesh"
  12820. series="50"
  12821. latestVersion="1.1"
  12822. latestVersionVoicePrompt="0.9"
  12823. show = "0" >
  12824. <productMenu id="protocol"
  12825. type="2" >
  12826. </productMenu>
  12827. <productMenu id="alexa"
  12828. type="0" >
  12829. </productMenu>
  12830. <productMenu id="ota"
  12831. type="2" >
  12832. <otaPackages>
  12833. <package
  12834. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12835. size="2945812"
  12836. />
  12837. </otaPackages>
  12838. </productMenu>
  12839. <productMenu id="wa"
  12840. type="0" >
  12841. </productMenu>
  12842. <productMenu id="meshIntercom"
  12843. type="20" >
  12844. </productMenu>
  12845. <productMenu id="meshIntercom+"
  12846. type="3"
  12847. url="2" >
  12848. <productMenuType version="1.0.9"
  12849. type="2"
  12850. />
  12851. <productMenuURL version="2.1.1"
  12852. url="0"
  12853. />
  12854. </productMenu>
  12855. <productMenu id="waveIntercom"
  12856. type="1" >
  12857. <productMenuType version="1.0.9"
  12858. type="0"
  12859. />
  12860. </productMenu>
  12861. <productMenu id="phone"
  12862. type="1" >
  12863. </productMenu>
  12864. <productMenu id="music"
  12865. type="1" >
  12866. </productMenu>
  12867. <productMenu id="fmradio"
  12868. type="1" >
  12869. </productMenu>
  12870. <productMenu id="musicSharing"
  12871. type="0" >
  12872. </productMenu>
  12873. <productMenu id="deviceSetting"
  12874. type="1"
  12875. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12876. <productMenuURL version="1.0.9"
  12877. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12878. />
  12879. </productMenu>
  12880. <productMenu id="quickGuide"
  12881. type="1"
  12882. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12883. size="1.12MB" >
  12884. </productMenu>
  12885. <productMenu id="userGuide"
  12886. type="1"
  12887. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12888. size="2.0MB" >
  12889. </productMenu>
  12890. <productMenu id="volume"
  12891. type="12" >
  12892. </productMenu>
  12893. <productMenu id="battery"
  12894. type="1" >
  12895. </productMenu>
  12896. <productID id="6806"
  12897. />
  12898. <productGroupable type="0"
  12899. />
  12900. </product>
  12901. <product id="ERA1X"
  12902. name="ERA 1 X"
  12903. series="UCOM"
  12904. latestVersion="0.2.1"
  12905. latestVersionMesh="0.19"
  12906. latestVersionVoicePrompt="1.2"
  12907. show = "-1" >
  12908. <productMenu id="protocol"
  12909. type="2" >
  12910. </productMenu>
  12911. <productMenu id="ota"
  12912. type="2" >
  12913. <otaLanguages>
  12914. <otaLanguage
  12915. id="0"
  12916. name="English"
  12917. package="0"
  12918. />
  12919. <otaLanguage
  12920. id="0"
  12921. name="French"
  12922. package="1"
  12923. />
  12924. <otaLanguage
  12925. id="0"
  12926. name="Spanish"
  12927. package="2"
  12928. />
  12929. <otaLanguage
  12930. id="0"
  12931. name="Italian"
  12932. package="3"
  12933. />
  12934. <otaLanguage
  12935. id="0"
  12936. name="German"
  12937. package="4"
  12938. />
  12939. <otaLanguage
  12940. id="0"
  12941. name="Dutch"
  12942. package="5"
  12943. />
  12944. <otaLanguage
  12945. id="0"
  12946. name="Russian"
  12947. package="6"
  12948. />
  12949. <otaLanguage
  12950. id="0"
  12951. name="Chinese"
  12952. package="7"
  12953. />
  12954. <otaLanguage
  12955. id="0"
  12956. name="Korean"
  12957. package="8"
  12958. />
  12959. <otaLanguage
  12960. id="0"
  12961. name="Japanese"
  12962. package="9"
  12963. />
  12964. <otaLanguage
  12965. id="0"
  12966. name="Finnish"
  12967. package="10"
  12968. />
  12969. <otaLanguage
  12970. id="0"
  12971. name="Polish"
  12972. package="11"
  12973. />
  12974. <otaLanguage
  12975. id="0"
  12976. name="Czech"
  12977. package="12"
  12978. />
  12979. <otaLanguage
  12980. id="0"
  12981. name="Danish"
  12982. package="13"
  12983. />
  12984. <otaLanguage
  12985. id="0"
  12986. name="Norwegian"
  12987. package="14"
  12988. />
  12989. <otaLanguage
  12990. id="0"
  12991. name="Swedish"
  12992. package="15"
  12993. />
  12994. <otaLanguage
  12995. id="0"
  12996. name="Turkish"
  12997. package="16"
  12998. />
  12999. <otaLanguage
  13000. id="0"
  13001. name="Hungarian"
  13002. package="17"
  13003. />
  13004. <otaLanguage
  13005. id="0"
  13006. name="Portuguese"
  13007. package="18"
  13008. />
  13009. <otaLanguage
  13010. id="0"
  13011. name="Hebrew"
  13012. package="19"
  13013. />
  13014. <otaLanguage
  13015. id="0"
  13016. name="Greek"
  13017. package="20"
  13018. />
  13019. </otaLanguages>
  13020. <otaPackages>
  13021. <package
  13022. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13023. size="5183988"
  13024. />
  13025. <package
  13026. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13027. size="5183988"
  13028. />
  13029. <package
  13030. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13031. size="5183988"
  13032. />
  13033. <package
  13034. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13035. size="5183988"
  13036. />
  13037. <package
  13038. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13039. size="5183988"
  13040. />
  13041. <package
  13042. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13043. size="5183988"
  13044. />
  13045. <package
  13046. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13047. size="5183988"
  13048. />
  13049. <package
  13050. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13051. size="5183988"
  13052. />
  13053. <package
  13054. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13055. size="5183988"
  13056. />
  13057. <package
  13058. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13059. size="5183988"
  13060. />
  13061. <package
  13062. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13063. size="5183988"
  13064. />
  13065. <package
  13066. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13067. size="5183988"
  13068. />
  13069. <package
  13070. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13071. size="5183988"
  13072. />
  13073. <package
  13074. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13075. size="5183988"
  13076. />
  13077. <package
  13078. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13079. size="5183988"
  13080. />
  13081. <package
  13082. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13083. size="5183988"
  13084. />
  13085. <package
  13086. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13087. size="5183988"
  13088. />
  13089. <package
  13090. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13091. size="5183988"
  13092. />
  13093. <package
  13094. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13095. size="5183988"
  13096. />
  13097. <package
  13098. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13099. size="5183988"
  13100. />
  13101. <package
  13102. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13103. size="5183988"
  13104. />
  13105. </otaPackages>
  13106. </productMenu>
  13107. <productMenu id="wa"
  13108. type="0" >
  13109. </productMenu>
  13110. <productMenu id="sip"
  13111. type="1" >
  13112. </productMenu>
  13113. <productMenu id="led"
  13114. type="0" >
  13115. </productMenu>
  13116. <productMenu id="illusion"
  13117. type="1" >
  13118. </productMenu>
  13119. <productMenu id="meshIntercom"
  13120. type="30" >
  13121. </productMenu>
  13122. <productMenu id="meshIntercom+"
  13123. type="3"
  13124. url="2" >
  13125. </productMenu>
  13126. <productMenu id="waveIntercom"
  13127. type="0" >
  13128. </productMenu>
  13129. <productMenu id="bluetoothIntercom"
  13130. type="1" >
  13131. </productMenu>
  13132. <productMenu id="bluetoothIntercomGrouping"
  13133. type="0" >
  13134. </productMenu>
  13135. <productMenu id="fmradio"
  13136. type="1"
  13137. url="1" >
  13138. </productMenu>
  13139. <productMenu id="phone"
  13140. type="1" >
  13141. </productMenu>
  13142. <productMenu id="music"
  13143. type="1" >
  13144. </productMenu>
  13145. <productMenu id="musicSharing"
  13146. type="0" >
  13147. </productMenu>
  13148. <productMenu id="deviceSetting"
  13149. type="1"
  13150. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13151. </productMenu>
  13152. <productMenu id="quickGuide"
  13153. type="0"
  13154. url=""
  13155. size="1.12MB" >
  13156. </productMenu>
  13157. <productMenu id="userGuide"
  13158. type="1"
  13159. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13160. size="2.0MB" >
  13161. </productMenu>
  13162. <productMenu id="videoGuide"
  13163. type="0"
  13164. url=""
  13165. size="3.41MB" >
  13166. </productMenu>
  13167. <productMenu id="volume"
  13168. type="16" >
  13169. </productMenu>
  13170. <productMenu id="soundMode"
  13171. type="1" >
  13172. </productMenu>
  13173. <productMenu id="battery"
  13174. type="1" >
  13175. </productMenu>
  13176. <productID id="6A83"
  13177. />
  13178. <productGroupable type="0"
  13179. />
  13180. </product>
  13181. <product id="MeshStation"
  13182. name="Mesh Station"
  13183. series="50"
  13184. latestVersion="0.9"
  13185. show = "-1" >
  13186. <productMenu id="protocol"
  13187. type="2" >
  13188. </productMenu>
  13189. <productMenu id="meshIntercom"
  13190. type="20"
  13191. url="99" >
  13192. </productMenu>
  13193. <productID id="3161"
  13194. />
  13195. <productGroupable type="0"
  13196. />
  13197. </product>
  13198. </products>
  13199. </sna>