snm.xml 465 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260077" 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="phone"
  1134. type="1" >
  1135. </productMenu>
  1136. <productMenu id="music"
  1137. type="1" >
  1138. </productMenu>
  1139. <productMenu id="musicSharing"
  1140. type="0" >
  1141. </productMenu>
  1142. <productMenu id="deviceSetting"
  1143. type="1"
  1144. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  1145. </productMenu>
  1146. <productMenu id="quickGuide"
  1147. type="0"
  1148. url=""
  1149. size="1.12MB" >
  1150. </productMenu>
  1151. <productMenu id="userGuide"
  1152. type="0"
  1153. url=""
  1154. size="2.0MB" >
  1155. </productMenu>
  1156. <productMenu id="videoGuide"
  1157. type="0"
  1158. url=""
  1159. size="3.41MB" >
  1160. </productMenu>
  1161. <productMenu id="keySettings"
  1162. type="1"
  1163. url="0|https://api.sena.com/support/Common/CustomButton/60x_key_info_20260427.json" >
  1164. </productMenu>
  1165. <productMenu id="volume"
  1166. type="13" >
  1167. </productMenu>
  1168. <productMenu id="volume+"
  1169. type="2"
  1170. url="0x6004" >
  1171. </productMenu>
  1172. <productMenu id="battery"
  1173. type="1" >
  1174. </productMenu>
  1175. <productID id="6A03"
  1176. />
  1177. <productGroupable type="0"
  1178. />
  1179. </product>
  1180. <product id="R35"
  1181. name="R35"
  1182. series="R"
  1183. latestVersion="1.1"
  1184. latestVersionVoicePrompt="1.5"
  1185. show = "-1" >
  1186. <productMenu id="protocol"
  1187. type="2" >
  1188. </productMenu>
  1189. <productMenu id="ota"
  1190. type="2" >
  1191. <otaLanguages>
  1192. <otaLanguage
  1193. id="0"
  1194. name="English"
  1195. package="0"
  1196. />
  1197. <otaLanguage
  1198. id="0"
  1199. name="Chinese"
  1200. package="1"
  1201. />
  1202. <otaLanguage
  1203. id="0"
  1204. name="Chinese Singapore"
  1205. package="2"
  1206. />
  1207. <otaLanguage
  1208. id="0"
  1209. name="Filipino"
  1210. package="3"
  1211. />
  1212. <otaLanguage
  1213. id="0"
  1214. name="Hebrew"
  1215. package="4"
  1216. />
  1217. <otaLanguage
  1218. id="0"
  1219. name="Hindi"
  1220. package="5"
  1221. />
  1222. <otaLanguage
  1223. id="0"
  1224. name="Indonesian"
  1225. package="6"
  1226. />
  1227. <otaLanguage
  1228. id="0"
  1229. name="Japanese"
  1230. package="7"
  1231. />
  1232. <otaLanguage
  1233. id="0"
  1234. name="Korean"
  1235. package="8"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Malay"
  1240. package="9"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="Modern Standard Arabic"
  1245. package="10"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="Taiwanese"
  1250. package="11"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="Tamil"
  1255. package="12"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="Thai"
  1260. package="13"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="东北话"
  1265. package="14"
  1266. />
  1267. <otaLanguage
  1268. id="0"
  1269. name="广东话"
  1270. package="15"
  1271. />
  1272. <otaLanguage
  1273. id="0"
  1274. name="江浙沪"
  1275. package="16"
  1276. />
  1277. <otaLanguage
  1278. id="0"
  1279. name="四川话"
  1280. package="17"
  1281. />
  1282. <otaLanguage
  1283. id="0"
  1284. name="陕西话"
  1285. package="18"
  1286. />
  1287. </otaLanguages>
  1288. <otaPackages>
  1289. <package
  1290. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1291. size="5183988"
  1292. />
  1293. <package
  1294. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1295. size="5183988"
  1296. />
  1297. <package
  1298. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1299. size="5183988"
  1300. />
  1301. <package
  1302. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1303. size="5183988"
  1304. />
  1305. <package
  1306. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1307. size="5183988"
  1308. />
  1309. <package
  1310. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1311. size="5183988"
  1312. />
  1313. <package
  1314. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1315. size="5183988"
  1316. />
  1317. <package
  1318. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1319. size="5183988"
  1320. />
  1321. <package
  1322. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1323. size="5183988"
  1324. />
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1343. size="5183988"
  1344. />
  1345. <package
  1346. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1347. size="5183988"
  1348. />
  1349. <package
  1350. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1351. size="5183988"
  1352. />
  1353. <package
  1354. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1355. size="5183988"
  1356. />
  1357. <package
  1358. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1359. size="5183988"
  1360. />
  1361. <package
  1362. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1363. size="5183988"
  1364. />
  1365. </otaPackages>
  1366. </productMenu>
  1367. <productMenu id="sip"
  1368. type="1" >
  1369. </productMenu>
  1370. <productMenu id="illusion"
  1371. type="1" >
  1372. </productMenu>
  1373. <productMenu id="meshIntercom"
  1374. type="30" >
  1375. </productMenu>
  1376. <productMenu id="meshIntercom+"
  1377. type="3"
  1378. url="2" >
  1379. </productMenu>
  1380. <productMenu id="waveIntercom"
  1381. type="1" >
  1382. </productMenu>
  1383. <productMenu id="phone"
  1384. type="1" >
  1385. </productMenu>
  1386. <productMenu id="music"
  1387. type="1" >
  1388. </productMenu>
  1389. <productMenu id="musicSharing"
  1390. type="0" >
  1391. </productMenu>
  1392. <productMenu id="deviceSetting"
  1393. type="1"
  1394. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1395. <productMenuURL version="1.0.3"
  1396. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1397. />
  1398. </productMenu>
  1399. <productMenu id="quickGuide"
  1400. type="0"
  1401. url=""
  1402. size="1.12MB" >
  1403. </productMenu>
  1404. <productMenu id="userGuide"
  1405. type="1"
  1406. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1407. size="2.0MB" >
  1408. </productMenu>
  1409. <productMenu id="videoGuide"
  1410. type="0"
  1411. url=""
  1412. size="3.41MB" >
  1413. </productMenu>
  1414. <productMenu id="connectGuide"
  1415. type="0"
  1416. url=""
  1417. size="1.12MB" >
  1418. </productMenu>
  1419. <productMenu id="volume"
  1420. type="16" >
  1421. </productMenu>
  1422. <productMenu id="volume+"
  1423. type="2"
  1424. url="0x6004" >
  1425. </productMenu>
  1426. <productMenu id="soundMode"
  1427. type="0" >
  1428. </productMenu>
  1429. <productMenu id="battery"
  1430. type="1" >
  1431. </productMenu>
  1432. <productID id="6A06"
  1433. />
  1434. <productGroupable type="0"
  1435. />
  1436. </product>
  1437. <product id="COMP1"
  1438. name="BMW COM P1"
  1439. series="60"
  1440. latestVersion="1.0.6"
  1441. latestVersionMesh="0.19"
  1442. latestVersionVoicePrompt="1.0"
  1443. show = "-1" >
  1444. <productMenu id="protocol"
  1445. type="2" >
  1446. </productMenu>
  1447. <productMenu id="ota"
  1448. type="2" >
  1449. <otaLanguages>
  1450. <otaLanguage
  1451. id="0"
  1452. name="English"
  1453. package="0"
  1454. />
  1455. <otaLanguage
  1456. id="0"
  1457. name="French"
  1458. package="1"
  1459. />
  1460. <otaLanguage
  1461. id="0"
  1462. name="Spanish"
  1463. package="2"
  1464. />
  1465. <otaLanguage
  1466. id="0"
  1467. name="Italian"
  1468. package="3"
  1469. />
  1470. <otaLanguage
  1471. id="0"
  1472. name="German"
  1473. package="4"
  1474. />
  1475. <otaLanguage
  1476. id="0"
  1477. name="Dutch"
  1478. package="5"
  1479. />
  1480. <otaLanguage
  1481. id="0"
  1482. name="Russian"
  1483. package="6"
  1484. />
  1485. <otaLanguage
  1486. id="0"
  1487. name="Chinese"
  1488. package="7"
  1489. />
  1490. <otaLanguage
  1491. id="0"
  1492. name="Korean"
  1493. package="8"
  1494. />
  1495. <otaLanguage
  1496. id="0"
  1497. name="Japanese"
  1498. package="9"
  1499. />
  1500. <otaLanguage
  1501. id="0"
  1502. name="Finnish"
  1503. package="10"
  1504. />
  1505. </otaLanguages>
  1506. <otaPackages>
  1507. <package
  1508. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1509. size="5183988"
  1510. />
  1511. <package
  1512. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1513. size="5183988"
  1514. />
  1515. <package
  1516. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1517. size="5183988"
  1518. />
  1519. <package
  1520. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1521. size="5183988"
  1522. />
  1523. <package
  1524. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1525. size="5183988"
  1526. />
  1527. <package
  1528. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1529. size="5183988"
  1530. />
  1531. <package
  1532. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1533. size="5183988"
  1534. />
  1535. <package
  1536. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1537. size="5183988"
  1538. />
  1539. <package
  1540. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1541. size="5183988"
  1542. />
  1543. <package
  1544. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1545. size="5183988"
  1546. />
  1547. <package
  1548. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1549. size="5183988"
  1550. />
  1551. </otaPackages>
  1552. </productMenu>
  1553. <productMenu id="wa"
  1554. type="0" >
  1555. </productMenu>
  1556. <productMenu id="sip"
  1557. type="1" >
  1558. </productMenu>
  1559. <productMenu id="led"
  1560. type="0" >
  1561. </productMenu>
  1562. <productMenu id="illusion"
  1563. type="0" >
  1564. </productMenu>
  1565. <productMenu id="meshIntercom"
  1566. type="30" >
  1567. </productMenu>
  1568. <productMenu id="bluetoothIntercom"
  1569. type="1" >
  1570. </productMenu>
  1571. <productMenu id="bluetoothIntercomGrouping"
  1572. type="0" >
  1573. </productMenu>
  1574. <productMenu id="fmradio"
  1575. type="0" >
  1576. </productMenu>
  1577. <productMenu id="phone"
  1578. type="1" >
  1579. </productMenu>
  1580. <productMenu id="music"
  1581. type="1" >
  1582. </productMenu>
  1583. <productMenu id="musicSharing"
  1584. type="0" >
  1585. </productMenu>
  1586. <productMenu id="deviceSetting"
  1587. type="1"
  1588. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1589. </productMenu>
  1590. <productMenu id="quickGuide"
  1591. type="0"
  1592. url=""
  1593. size="1.12MB" >
  1594. </productMenu>
  1595. <productMenu id="userGuide"
  1596. type="0"
  1597. url=""
  1598. size="2.0MB" >
  1599. </productMenu>
  1600. <productMenu id="videoGuide"
  1601. type="0"
  1602. url=""
  1603. size="3.41MB" >
  1604. </productMenu>
  1605. <productMenu id="volume"
  1606. type="16" >
  1607. </productMenu>
  1608. <productMenu id="battery"
  1609. type="1" >
  1610. </productMenu>
  1611. <productID id="6A80"
  1612. />
  1613. <productGroupable type="0"
  1614. />
  1615. </product>
  1616. <product id="50S"
  1617. name="50S"
  1618. series="50"
  1619. latestVersion="2.7.2"
  1620. show = "1" >
  1621. <productMenu id="protocol"
  1622. type="2" >
  1623. </productMenu>
  1624. <productMenu id="alexa"
  1625. type="0" >
  1626. </productMenu>
  1627. <productMenu id="ota"
  1628. type="0"
  1629. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1630. size="1150234" >
  1631. </productMenu>
  1632. <productMenu id="wa"
  1633. type="1" >
  1634. </productMenu>
  1635. <productMenu id="sip"
  1636. type="1" >
  1637. </productMenu>
  1638. <productMenu id="meshIntercom"
  1639. type="30" >
  1640. <productMenuType version="2.1.1"
  1641. type="20"
  1642. />
  1643. </productMenu>
  1644. <productMenu id="meshIntercom+"
  1645. type="3"
  1646. url="2" >
  1647. <productMenuType version="2.5.9"
  1648. type="2"
  1649. />
  1650. <productMenuURL version="2.1.1"
  1651. url="0"
  1652. />
  1653. </productMenu>
  1654. <productMenu id="waveIntercom"
  1655. type="1" >
  1656. <productMenuType version="2.6"
  1657. type="0"
  1658. />
  1659. </productMenu>
  1660. <productMenu id="bluetoothIntercom"
  1661. type="1" >
  1662. </productMenu>
  1663. <productMenu id="phone"
  1664. type="1" >
  1665. </productMenu>
  1666. <productMenu id="music"
  1667. type="1" >
  1668. </productMenu>
  1669. <productMenu id="fmradio"
  1670. type="1" >
  1671. </productMenu>
  1672. <productMenu id="deviceSetting"
  1673. type="1"
  1674. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1675. <productMenuURL version="2.5.9"
  1676. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1677. />
  1678. <productMenuURL version="2.1.1"
  1679. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1680. />
  1681. <productMenuURL version="2.0.3"
  1682. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1683. />
  1684. </productMenu>
  1685. <productMenu id="quickGuide"
  1686. type="0"
  1687. url=""
  1688. size="934KB" >
  1689. </productMenu>
  1690. <productMenu id="userGuide"
  1691. type="1"
  1692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1693. size="1.14MB" >
  1694. </productMenu>
  1695. <productMenu id="videoGuide"
  1696. type="1"
  1697. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1698. size="3.41MB" >
  1699. </productMenu>
  1700. <productMenu id="connectGuide"
  1701. type="1"
  1702. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1703. size="1.12MB" >
  1704. </productMenu>
  1705. <productMenu id="volume"
  1706. type="11" >
  1707. </productMenu>
  1708. <productMenu id="battery"
  1709. type="1" >
  1710. </productMenu>
  1711. <productID id="3210"
  1712. />
  1713. <productGroupable type="0"
  1714. />
  1715. </product>
  1716. <product id="50S"
  1717. name="50S"
  1718. series="50"
  1719. latestVersion="1.5.1"
  1720. show = "-1" >
  1721. <productMenu id="protocol"
  1722. type="2" >
  1723. </productMenu>
  1724. <productMenu id="alexa"
  1725. type="0" >
  1726. </productMenu>
  1727. <productMenu id="wa"
  1728. type="1" >
  1729. </productMenu>
  1730. <productMenu id="sip"
  1731. type="1" >
  1732. </productMenu>
  1733. <productMenu id="meshIntercom"
  1734. type="30" >
  1735. <productMenuType version="1.2.2"
  1736. type="20"
  1737. />
  1738. </productMenu>
  1739. <productMenu id="meshIntercom+"
  1740. type="3"
  1741. url="2" >
  1742. <productMenuType version="1.4.9"
  1743. type="2"
  1744. />
  1745. <productMenuURL version="1.2.2"
  1746. url="0"
  1747. />
  1748. </productMenu>
  1749. <productMenu id="waveIntercom"
  1750. type="1" >
  1751. <productMenuType version="1.3.9"
  1752. type="0"
  1753. />
  1754. </productMenu>
  1755. <productMenu id="bluetoothIntercom"
  1756. type="1" >
  1757. </productMenu>
  1758. <productMenu id="phone"
  1759. type="1" >
  1760. </productMenu>
  1761. <productMenu id="music"
  1762. type="1" >
  1763. </productMenu>
  1764. <productMenu id="fmradio"
  1765. type="1" >
  1766. </productMenu>
  1767. <productMenu id="deviceSetting"
  1768. type="1"
  1769. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1770. <productMenuURL version="1.4.9"
  1771. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1772. />
  1773. <productMenuURL version="1.3.9"
  1774. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1775. />
  1776. <productMenuURL version="1.2.2"
  1777. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1778. />
  1779. <productMenuURL version="1.1.1"
  1780. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1781. />
  1782. </productMenu>
  1783. <productMenu id="quickGuide"
  1784. type="0"
  1785. url=""
  1786. size="934KB" >
  1787. </productMenu>
  1788. <productMenu id="userGuide"
  1789. type="1"
  1790. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1791. size="1.14MB" >
  1792. </productMenu>
  1793. <productMenu id="videoGuide"
  1794. type="1"
  1795. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1796. size="3.41MB" >
  1797. </productMenu>
  1798. <productMenu id="volume"
  1799. type="11" >
  1800. </productMenu>
  1801. <productMenu id="battery"
  1802. type="1" >
  1803. </productMenu>
  1804. <productID id="3132"
  1805. />
  1806. <productGroupable type="0"
  1807. />
  1808. </product>
  1809. <product id="50R"
  1810. name="50R"
  1811. series="50"
  1812. latestVersion="2.7.1"
  1813. show = "1" >
  1814. <productMenu id="protocol"
  1815. type="2" >
  1816. </productMenu>
  1817. <productMenu id="alexa"
  1818. type="0" >
  1819. </productMenu>
  1820. <productMenu id="ota"
  1821. type="0"
  1822. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1823. size="1150234" >
  1824. </productMenu>
  1825. <productMenu id="wa"
  1826. type="1" >
  1827. </productMenu>
  1828. <productMenu id="sip"
  1829. type="1" >
  1830. </productMenu>
  1831. <productMenu id="meshIntercom"
  1832. type="30" >
  1833. <productMenuType version="2.1.1"
  1834. type="20"
  1835. />
  1836. </productMenu>
  1837. <productMenu id="meshIntercom+"
  1838. type="3"
  1839. url="2" >
  1840. <productMenuType version="2.5.9"
  1841. type="2"
  1842. />
  1843. <productMenuURL version="2.1.1"
  1844. url="0"
  1845. />
  1846. </productMenu>
  1847. <productMenu id="waveIntercom"
  1848. type="1" >
  1849. <productMenuType version="2.6"
  1850. type="0"
  1851. />
  1852. </productMenu>
  1853. <productMenu id="bluetoothIntercom"
  1854. type="1" >
  1855. </productMenu>
  1856. <productMenu id="phone"
  1857. type="1" >
  1858. </productMenu>
  1859. <productMenu id="music"
  1860. type="1" >
  1861. </productMenu>
  1862. <productMenu id="fmradio"
  1863. type="1" >
  1864. </productMenu>
  1865. <productMenu id="deviceSetting"
  1866. type="1"
  1867. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1868. <productMenuURL version="2.5.9"
  1869. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1870. />
  1871. <productMenuURL version="2.1.1"
  1872. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1873. />
  1874. <productMenuURL version="2.0"
  1875. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1876. />
  1877. </productMenu>
  1878. <productMenu id="quickGuide"
  1879. type="0"
  1880. url=""
  1881. size="344KB" >
  1882. </productMenu>
  1883. <productMenu id="userGuide"
  1884. type="1"
  1885. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1886. size="3.41MB" >
  1887. </productMenu>
  1888. <productMenu id="videoGuide"
  1889. type="1"
  1890. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1891. size="3.41MB" >
  1892. </productMenu>
  1893. <productMenu id="connectGuide"
  1894. type="1"
  1895. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1896. size="1.12MB" >
  1897. </productMenu>
  1898. <productMenu id="volume"
  1899. type="11" >
  1900. </productMenu>
  1901. <productMenu id="battery"
  1902. type="1" >
  1903. </productMenu>
  1904. <productID id="3218"
  1905. />
  1906. <productGroupable type="0"
  1907. />
  1908. </product>
  1909. <product id="50R"
  1910. name="50R"
  1911. series="50"
  1912. latestVersion="1.5.1"
  1913. show = "-1" >
  1914. <productMenu id="protocol"
  1915. type="2" >
  1916. </productMenu>
  1917. <productMenu id="alexa"
  1918. type="0" >
  1919. </productMenu>
  1920. <productMenu id="wa"
  1921. type="1" >
  1922. </productMenu>
  1923. <productMenu id="sip"
  1924. type="1" >
  1925. </productMenu>
  1926. <productMenu id="meshIntercom"
  1927. type="30" >
  1928. <productMenuType version="1.2.2"
  1929. type="20"
  1930. />
  1931. </productMenu>
  1932. <productMenu id="meshIntercom+"
  1933. type="3"
  1934. url="2" >
  1935. <productMenuType version="1.4.9"
  1936. type="2"
  1937. />
  1938. <productMenuURL version="1.2.2"
  1939. url="0"
  1940. />
  1941. </productMenu>
  1942. <productMenu id="waveIntercom"
  1943. type="1" >
  1944. <productMenuType version="1.3.9"
  1945. type="0"
  1946. />
  1947. </productMenu>
  1948. <productMenu id="bluetoothIntercom"
  1949. type="1" >
  1950. </productMenu>
  1951. <productMenu id="phone"
  1952. type="1" >
  1953. </productMenu>
  1954. <productMenu id="music"
  1955. type="1" >
  1956. </productMenu>
  1957. <productMenu id="fmradio"
  1958. type="1" >
  1959. </productMenu>
  1960. <productMenu id="deviceSetting"
  1961. type="1"
  1962. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1963. <productMenuURL version="1.4.9"
  1964. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1965. />
  1966. <productMenuURL version="1.3.9"
  1967. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1968. />
  1969. <productMenuURL version="1.2.2"
  1970. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1971. />
  1972. <productMenuURL version="1.1.1"
  1973. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1974. />
  1975. </productMenu>
  1976. <productMenu id="quickGuide"
  1977. type="0"
  1978. url=""
  1979. size="344KB" >
  1980. </productMenu>
  1981. <productMenu id="userGuide"
  1982. type="1"
  1983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1984. size="3.41MB" >
  1985. </productMenu>
  1986. <productMenu id="videoGuide"
  1987. type="1"
  1988. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1989. size="3.41MB" >
  1990. </productMenu>
  1991. <productMenu id="volume"
  1992. type="11" >
  1993. </productMenu>
  1994. <productMenu id="battery"
  1995. type="1" >
  1996. </productMenu>
  1997. <productID id="3134"
  1998. />
  1999. <productGroupable type="0"
  2000. />
  2001. </product>
  2002. <product id="50C"
  2003. name="50C"
  2004. series="50"
  2005. latestVersion="1.4.3"
  2006. show = "1" >
  2007. <productMenu id="protocol"
  2008. type="2" >
  2009. </productMenu>
  2010. <productMenu id="ota"
  2011. type="0" >
  2012. </productMenu>
  2013. <productMenu id="wa"
  2014. type="1" >
  2015. </productMenu>
  2016. <productMenu id="sip"
  2017. type="1" >
  2018. </productMenu>
  2019. <productMenu id="meshIntercom"
  2020. type="30" >
  2021. <productMenuType version="1.1.1"
  2022. type="20"
  2023. />
  2024. </productMenu>
  2025. <productMenu id="meshIntercom+"
  2026. type="3"
  2027. url="2" >
  2028. <productMenuType version="1.3.9"
  2029. type="2"
  2030. />
  2031. <productMenuURL version="1.1.1"
  2032. url="0"
  2033. />
  2034. </productMenu>
  2035. <productMenu id="waveIntercom"
  2036. type="1" >
  2037. <productMenuType version="1.2.9"
  2038. type="0"
  2039. />
  2040. </productMenu>
  2041. <productMenu id="bluetoothIntercom"
  2042. type="1" >
  2043. </productMenu>
  2044. <productMenu id="phone"
  2045. type="1" >
  2046. </productMenu>
  2047. <productMenu id="music"
  2048. type="1" >
  2049. </productMenu>
  2050. <productMenu id="fmradio"
  2051. type="1" >
  2052. </productMenu>
  2053. <productMenu id="deviceSetting"
  2054. type="1"
  2055. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2056. <productMenuURL version="1.3.9"
  2057. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2058. />
  2059. <productMenuURL version="1.1.1"
  2060. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2061. />
  2062. <productMenuURL version="1.0.1"
  2063. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2064. />
  2065. </productMenu>
  2066. <productMenu id="quickGuide"
  2067. type="0"
  2068. url=""
  2069. size="344KB" >
  2070. </productMenu>
  2071. <productMenu id="userGuide"
  2072. type="1"
  2073. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2074. size="3.41MB" >
  2075. </productMenu>
  2076. <productMenu id="connectGuide"
  2077. type="1"
  2078. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2079. size="1.12MB" >
  2080. </productMenu>
  2081. <productMenu id="volume"
  2082. type="11" >
  2083. </productMenu>
  2084. <productMenu id="battery"
  2085. type="1" >
  2086. </productMenu>
  2087. <productID id="3232"
  2088. />
  2089. <productGroupable type="0"
  2090. />
  2091. </product>
  2092. <product id="PHANTOMXB"
  2093. name="PHANTOM XB"
  2094. series="Helmet"
  2095. latestVersion="1.2.7"
  2096. latestVersionVoicePrompt="1.5"
  2097. show = "-1" >
  2098. <productMenu id="protocol"
  2099. type="2" >
  2100. </productMenu>
  2101. <productMenu id="ota"
  2102. type="2" >
  2103. <otaLanguages>
  2104. <otaLanguage
  2105. id="0"
  2106. name="English"
  2107. package="0"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="French"
  2112. package="1"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="Spanish"
  2117. package="2"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Italian"
  2122. package="3"
  2123. />
  2124. <otaLanguage
  2125. id="0"
  2126. name="German"
  2127. package="4"
  2128. />
  2129. <otaLanguage
  2130. id="0"
  2131. name="Dutch"
  2132. package="5"
  2133. />
  2134. <otaLanguage
  2135. id="0"
  2136. name="Russian"
  2137. package="6"
  2138. />
  2139. <otaLanguage
  2140. id="0"
  2141. name="Chinese"
  2142. package="7"
  2143. />
  2144. <otaLanguage
  2145. id="0"
  2146. name="Korean"
  2147. package="8"
  2148. />
  2149. <otaLanguage
  2150. id="0"
  2151. name="Japanese"
  2152. package="9"
  2153. />
  2154. <otaLanguage
  2155. id="0"
  2156. name="Finnish"
  2157. package="10"
  2158. />
  2159. <otaLanguage
  2160. id="0"
  2161. name="Polish"
  2162. package="11"
  2163. />
  2164. </otaLanguages>
  2165. <otaPackages>
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2172. size="5183988"
  2173. />
  2174. <package
  2175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2176. size="5183988"
  2177. />
  2178. <package
  2179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2180. size="5183988"
  2181. />
  2182. <package
  2183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2184. size="5183988"
  2185. />
  2186. <package
  2187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2188. size="5183988"
  2189. />
  2190. <package
  2191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2192. size="5183988"
  2193. />
  2194. <package
  2195. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2196. size="5183988"
  2197. />
  2198. <package
  2199. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2200. size="5183988"
  2201. />
  2202. <package
  2203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2204. size="5183988"
  2205. />
  2206. <package
  2207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2208. size="5183988"
  2209. />
  2210. <package
  2211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2212. size="5183988"
  2213. />
  2214. </otaPackages>
  2215. </productMenu>
  2216. <productMenu id="wa"
  2217. type="0" >
  2218. </productMenu>
  2219. <productMenu id="led"
  2220. type="5" >
  2221. </productMenu>
  2222. <productMenu id="led+"
  2223. type="2"
  2224. url="1" >
  2225. </productMenu>
  2226. <productMenu id="meshIntercom"
  2227. type="30" >
  2228. </productMenu>
  2229. <productMenu id="meshIntercom+"
  2230. type="3"
  2231. url="2" >
  2232. </productMenu>
  2233. <productMenu id="waveIntercom"
  2234. type="1" >
  2235. </productMenu>
  2236. <productMenu id="fmradio"
  2237. type="0" >
  2238. </productMenu>
  2239. <productMenu id="phone"
  2240. type="1" >
  2241. </productMenu>
  2242. <productMenu id="music"
  2243. type="1" >
  2244. </productMenu>
  2245. <productMenu id="musicSharing"
  2246. type="0" >
  2247. </productMenu>
  2248. <productMenu id="deviceSetting"
  2249. type="1"
  2250. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2251. <productMenuURL version="1.2.4"
  2252. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2253. />
  2254. </productMenu>
  2255. <productMenu id="quickGuide"
  2256. type="0"
  2257. url=""
  2258. size="1.12MB" >
  2259. </productMenu>
  2260. <productMenu id="userGuide"
  2261. type="1"
  2262. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2263. size="2.0MB" >
  2264. </productMenu>
  2265. <productMenu id="videoGuide"
  2266. type="0"
  2267. url=""
  2268. size="3.41MB" >
  2269. </productMenu>
  2270. <productMenu id="volume"
  2271. type="16" >
  2272. </productMenu>
  2273. <productMenu id="volume+"
  2274. type="2"
  2275. url="0x6004" >
  2276. </productMenu>
  2277. <productMenu id="battery"
  2278. type="1" >
  2279. </productMenu>
  2280. <productID id="6A0F"
  2281. />
  2282. <productGroupable type="0"
  2283. />
  2284. </product>
  2285. <product id="PHANTOMXB"
  2286. name="PHANTOM XB"
  2287. series="Helmet"
  2288. latestVersion="1.2.7"
  2289. latestVersionVoicePrompt="1.5"
  2290. show = "-1" >
  2291. <productMenu id="protocol"
  2292. type="2" >
  2293. </productMenu>
  2294. <productMenu id="ota"
  2295. type="2" >
  2296. <otaLanguages>
  2297. <otaLanguage
  2298. id="0"
  2299. name="English"
  2300. package="0"
  2301. />
  2302. <otaLanguage
  2303. id="0"
  2304. name="French"
  2305. package="1"
  2306. />
  2307. <otaLanguage
  2308. id="0"
  2309. name="Spanish"
  2310. package="2"
  2311. />
  2312. <otaLanguage
  2313. id="0"
  2314. name="Italian"
  2315. package="3"
  2316. />
  2317. <otaLanguage
  2318. id="0"
  2319. name="German"
  2320. package="4"
  2321. />
  2322. <otaLanguage
  2323. id="0"
  2324. name="Dutch"
  2325. package="5"
  2326. />
  2327. <otaLanguage
  2328. id="0"
  2329. name="Russian"
  2330. package="6"
  2331. />
  2332. <otaLanguage
  2333. id="0"
  2334. name="Chinese"
  2335. package="7"
  2336. />
  2337. <otaLanguage
  2338. id="0"
  2339. name="Korean"
  2340. package="8"
  2341. />
  2342. <otaLanguage
  2343. id="0"
  2344. name="Japanese"
  2345. package="9"
  2346. />
  2347. <otaLanguage
  2348. id="0"
  2349. name="Finnish"
  2350. package="10"
  2351. />
  2352. <otaLanguage
  2353. id="0"
  2354. name="Polish"
  2355. package="11"
  2356. />
  2357. </otaLanguages>
  2358. <otaPackages>
  2359. <package
  2360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2361. size="5183988"
  2362. />
  2363. <package
  2364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2365. size="5183988"
  2366. />
  2367. <package
  2368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2369. size="5183988"
  2370. />
  2371. <package
  2372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2373. size="5183988"
  2374. />
  2375. <package
  2376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2377. size="5183988"
  2378. />
  2379. <package
  2380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2381. size="5183988"
  2382. />
  2383. <package
  2384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2385. size="5183988"
  2386. />
  2387. <package
  2388. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2389. size="5183988"
  2390. />
  2391. <package
  2392. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2393. size="5183988"
  2394. />
  2395. <package
  2396. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2397. size="5183988"
  2398. />
  2399. <package
  2400. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2401. size="5183988"
  2402. />
  2403. <package
  2404. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2405. size="5183988"
  2406. />
  2407. </otaPackages>
  2408. </productMenu>
  2409. <productMenu id="wa"
  2410. type="0" >
  2411. </productMenu>
  2412. <productMenu id="led"
  2413. type="5" >
  2414. </productMenu>
  2415. <productMenu id="led+"
  2416. type="2"
  2417. url="1" >
  2418. </productMenu>
  2419. <productMenu id="meshIntercom"
  2420. type="30" >
  2421. </productMenu>
  2422. <productMenu id="meshIntercom+"
  2423. type="3"
  2424. url="2" >
  2425. </productMenu>
  2426. <productMenu id="waveIntercom"
  2427. type="1" >
  2428. </productMenu>
  2429. <productMenu id="fmradio"
  2430. type="0" >
  2431. </productMenu>
  2432. <productMenu id="phone"
  2433. type="1" >
  2434. </productMenu>
  2435. <productMenu id="music"
  2436. type="1" >
  2437. </productMenu>
  2438. <productMenu id="musicSharing"
  2439. type="0" >
  2440. </productMenu>
  2441. <productMenu id="deviceSetting"
  2442. type="1"
  2443. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  2444. <productMenuURL version="1.2.4"
  2445. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2446. />
  2447. <productMenuURL version="1.2.1"
  2448. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2449. />
  2450. </productMenu>
  2451. <productMenu id="quickGuide"
  2452. type="0"
  2453. url=""
  2454. size="1.12MB" >
  2455. </productMenu>
  2456. <productMenu id="userGuide"
  2457. type="1"
  2458. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2459. size="2.0MB" >
  2460. </productMenu>
  2461. <productMenu id="videoGuide"
  2462. type="0"
  2463. url=""
  2464. size="3.41MB" >
  2465. </productMenu>
  2466. <productMenu id="volume"
  2467. type="16" >
  2468. </productMenu>
  2469. <productMenu id="volume+"
  2470. type="2"
  2471. url="0x6004" >
  2472. </productMenu>
  2473. <productMenu id="battery"
  2474. type="1" >
  2475. </productMenu>
  2476. <productID id="6A0C"
  2477. />
  2478. <productGroupable type="0"
  2479. />
  2480. </product>
  2481. <product id="PHANTOMKV"
  2482. name="PHANTOM KV"
  2483. series="Helmet"
  2484. latestVersion="1.2.2"
  2485. latestVersionVoicePrompt="1.0"
  2486. show = "-1" >
  2487. <productMenu id="protocol"
  2488. type="2" >
  2489. </productMenu>
  2490. <productMenu id="ota"
  2491. type="0" >
  2492. <otaLanguages>
  2493. <otaLanguage
  2494. id="0"
  2495. name="English"
  2496. package="0"
  2497. />
  2498. <otaLanguage
  2499. id="0"
  2500. name="French"
  2501. package="1"
  2502. />
  2503. <otaLanguage
  2504. id="0"
  2505. name="Spanish"
  2506. package="2"
  2507. />
  2508. <otaLanguage
  2509. id="0"
  2510. name="Italian"
  2511. package="3"
  2512. />
  2513. <otaLanguage
  2514. id="0"
  2515. name="German"
  2516. package="4"
  2517. />
  2518. <otaLanguage
  2519. id="0"
  2520. name="Dutch"
  2521. package="5"
  2522. />
  2523. <otaLanguage
  2524. id="0"
  2525. name="Russian"
  2526. package="6"
  2527. />
  2528. <otaLanguage
  2529. id="0"
  2530. name="Chinese"
  2531. package="7"
  2532. />
  2533. <otaLanguage
  2534. id="0"
  2535. name="Korean"
  2536. package="8"
  2537. />
  2538. <otaLanguage
  2539. id="0"
  2540. name="Japanese"
  2541. package="9"
  2542. />
  2543. <otaLanguage
  2544. id="0"
  2545. name="Finnish"
  2546. package="10"
  2547. />
  2548. <otaLanguage
  2549. id="0"
  2550. name="Polish"
  2551. package="11"
  2552. />
  2553. </otaLanguages>
  2554. <otaPackages>
  2555. <package
  2556. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2557. size="5183988"
  2558. />
  2559. <package
  2560. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2561. size="5183988"
  2562. />
  2563. <package
  2564. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2565. size="5183988"
  2566. />
  2567. <package
  2568. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2569. size="5183988"
  2570. />
  2571. <package
  2572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2573. size="5183988"
  2574. />
  2575. <package
  2576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2577. size="5183988"
  2578. />
  2579. <package
  2580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2581. size="5183988"
  2582. />
  2583. <package
  2584. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2585. size="5183988"
  2586. />
  2587. <package
  2588. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2589. size="5183988"
  2590. />
  2591. <package
  2592. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2593. size="5183988"
  2594. />
  2595. <package
  2596. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2597. size="5183988"
  2598. />
  2599. <package
  2600. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2601. size="5183988"
  2602. />
  2603. </otaPackages>
  2604. </productMenu>
  2605. <productMenu id="wa"
  2606. type="0" >
  2607. </productMenu>
  2608. <productMenu id="led"
  2609. type="5" >
  2610. </productMenu>
  2611. <productMenu id="led+"
  2612. type="2"
  2613. url="1" >
  2614. </productMenu>
  2615. <productMenu id="meshIntercom"
  2616. type="30" >
  2617. </productMenu>
  2618. <productMenu id="meshIntercom+"
  2619. type="3"
  2620. url="2" >
  2621. </productMenu>
  2622. <productMenu id="waveIntercom"
  2623. type="1" >
  2624. </productMenu>
  2625. <productMenu id="fmradio"
  2626. type="0" >
  2627. </productMenu>
  2628. <productMenu id="phone"
  2629. type="1" >
  2630. </productMenu>
  2631. <productMenu id="music"
  2632. type="1" >
  2633. </productMenu>
  2634. <productMenu id="musicSharing"
  2635. type="0" >
  2636. </productMenu>
  2637. <productMenu id="deviceSetting"
  2638. type="1"
  2639. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2640. <productMenuURL version="1.2.4"
  2641. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2642. />
  2643. </productMenu>
  2644. <productMenu id="quickGuide"
  2645. type="0"
  2646. url=""
  2647. size="1.12MB" >
  2648. </productMenu>
  2649. <productMenu id="userGuide"
  2650. type="1"
  2651. url=""
  2652. size="2.0MB" >
  2653. </productMenu>
  2654. <productMenu id="videoGuide"
  2655. type="0"
  2656. url=""
  2657. size="3.41MB" >
  2658. </productMenu>
  2659. <productMenu id="volume"
  2660. type="16" >
  2661. </productMenu>
  2662. <productMenu id="volume+"
  2663. type="2"
  2664. url="0x6004" >
  2665. </productMenu>
  2666. <productMenu id="battery"
  2667. type="1" >
  2668. </productMenu>
  2669. <productID id="6A14"
  2670. />
  2671. <productGroupable type="0"
  2672. />
  2673. </product>
  2674. <product id="PHANTOMKV"
  2675. name="PHANTOM KV"
  2676. series="Helmet"
  2677. latestVersion="1.2.2"
  2678. latestVersionVoicePrompt="1.0"
  2679. show = "-1" >
  2680. <productMenu id="protocol"
  2681. type="2" >
  2682. </productMenu>
  2683. <productMenu id="ota"
  2684. type="0" >
  2685. <otaLanguages>
  2686. <otaLanguage
  2687. id="0"
  2688. name="English"
  2689. package="0"
  2690. />
  2691. <otaLanguage
  2692. id="0"
  2693. name="French"
  2694. package="1"
  2695. />
  2696. <otaLanguage
  2697. id="0"
  2698. name="Spanish"
  2699. package="2"
  2700. />
  2701. <otaLanguage
  2702. id="0"
  2703. name="Italian"
  2704. package="3"
  2705. />
  2706. <otaLanguage
  2707. id="0"
  2708. name="German"
  2709. package="4"
  2710. />
  2711. <otaLanguage
  2712. id="0"
  2713. name="Dutch"
  2714. package="5"
  2715. />
  2716. <otaLanguage
  2717. id="0"
  2718. name="Russian"
  2719. package="6"
  2720. />
  2721. <otaLanguage
  2722. id="0"
  2723. name="Chinese"
  2724. package="7"
  2725. />
  2726. <otaLanguage
  2727. id="0"
  2728. name="Korean"
  2729. package="8"
  2730. />
  2731. <otaLanguage
  2732. id="0"
  2733. name="Japanese"
  2734. package="9"
  2735. />
  2736. <otaLanguage
  2737. id="0"
  2738. name="Finnish"
  2739. package="10"
  2740. />
  2741. <otaLanguage
  2742. id="0"
  2743. name="Polish"
  2744. package="11"
  2745. />
  2746. </otaLanguages>
  2747. <otaPackages>
  2748. <package
  2749. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2750. size="5183988"
  2751. />
  2752. <package
  2753. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2754. size="5183988"
  2755. />
  2756. <package
  2757. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2758. size="5183988"
  2759. />
  2760. <package
  2761. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2762. size="5183988"
  2763. />
  2764. <package
  2765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2766. size="5183988"
  2767. />
  2768. <package
  2769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2770. size="5183988"
  2771. />
  2772. <package
  2773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2774. size="5183988"
  2775. />
  2776. <package
  2777. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2778. size="5183988"
  2779. />
  2780. <package
  2781. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2782. size="5183988"
  2783. />
  2784. <package
  2785. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2786. size="5183988"
  2787. />
  2788. <package
  2789. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2790. size="5183988"
  2791. />
  2792. <package
  2793. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2794. size="5183988"
  2795. />
  2796. </otaPackages>
  2797. </productMenu>
  2798. <productMenu id="wa"
  2799. type="0" >
  2800. </productMenu>
  2801. <productMenu id="led"
  2802. type="5" >
  2803. </productMenu>
  2804. <productMenu id="led+"
  2805. type="2"
  2806. url="1" >
  2807. </productMenu>
  2808. <productMenu id="meshIntercom"
  2809. type="30" >
  2810. </productMenu>
  2811. <productMenu id="meshIntercom+"
  2812. type="3"
  2813. url="2" >
  2814. </productMenu>
  2815. <productMenu id="waveIntercom"
  2816. type="1" >
  2817. </productMenu>
  2818. <productMenu id="fmradio"
  2819. type="0" >
  2820. </productMenu>
  2821. <productMenu id="phone"
  2822. type="1" >
  2823. </productMenu>
  2824. <productMenu id="music"
  2825. type="1" >
  2826. </productMenu>
  2827. <productMenu id="musicSharing"
  2828. type="0" >
  2829. </productMenu>
  2830. <productMenu id="deviceSetting"
  2831. type="1"
  2832. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2833. <productMenuURL version="1.2.4"
  2834. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2835. />
  2836. </productMenu>
  2837. <productMenu id="quickGuide"
  2838. type="0"
  2839. url=""
  2840. size="1.12MB" >
  2841. </productMenu>
  2842. <productMenu id="userGuide"
  2843. type="1"
  2844. url=""
  2845. size="2.0MB" >
  2846. </productMenu>
  2847. <productMenu id="videoGuide"
  2848. type="0"
  2849. url=""
  2850. size="3.41MB" >
  2851. </productMenu>
  2852. <productMenu id="volume"
  2853. type="16" >
  2854. </productMenu>
  2855. <productMenu id="volume+"
  2856. type="2"
  2857. url="0x6004" >
  2858. </productMenu>
  2859. <productMenu id="battery"
  2860. type="1" >
  2861. </productMenu>
  2862. <productID id="6A13"
  2863. />
  2864. <productGroupable type="0"
  2865. />
  2866. </product>
  2867. <product id="PHANTOMCamera"
  2868. name="PHANTOM Camera"
  2869. series="Helmet"
  2870. latestVersion="1.0.1"
  2871. latestVersionVoicePrompt="0.4"
  2872. show = "-1" >
  2873. <productMenu id="protocol"
  2874. type="2" >
  2875. </productMenu>
  2876. <productMenu id="ota"
  2877. type="3" >
  2878. <otaLanguages>
  2879. <otaLanguage
  2880. id="0"
  2881. name="English"
  2882. package="0"
  2883. />
  2884. <otaLanguage
  2885. id="0"
  2886. name="French"
  2887. package="1"
  2888. />
  2889. <otaLanguage
  2890. id="0"
  2891. name="Spanish"
  2892. package="2"
  2893. />
  2894. <otaLanguage
  2895. id="0"
  2896. name="Italian"
  2897. package="3"
  2898. />
  2899. <otaLanguage
  2900. id="0"
  2901. name="German"
  2902. package="4"
  2903. />
  2904. <otaLanguage
  2905. id="0"
  2906. name="Dutch"
  2907. package="5"
  2908. />
  2909. <otaLanguage
  2910. id="0"
  2911. name="Russian"
  2912. package="6"
  2913. />
  2914. <otaLanguage
  2915. id="0"
  2916. name="Chinese"
  2917. package="7"
  2918. />
  2919. <otaLanguage
  2920. id="0"
  2921. name="Korean"
  2922. package="8"
  2923. />
  2924. <otaLanguage
  2925. id="0"
  2926. name="Japanese"
  2927. package="9"
  2928. />
  2929. <otaLanguage
  2930. id="0"
  2931. name="Finnish"
  2932. package="10"
  2933. />
  2934. <otaLanguage
  2935. id="0"
  2936. name="Polish"
  2937. package="11"
  2938. />
  2939. </otaLanguages>
  2940. <otaPackages>
  2941. <package
  2942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2943. size="5183988"
  2944. />
  2945. <package
  2946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2947. size="5183988"
  2948. />
  2949. <package
  2950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2951. size="5183988"
  2952. />
  2953. <package
  2954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2955. size="5183988"
  2956. />
  2957. <package
  2958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2959. size="5183988"
  2960. />
  2961. <package
  2962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2963. size="5183988"
  2964. />
  2965. <package
  2966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2967. size="5183988"
  2968. />
  2969. <package
  2970. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2971. size="5183988"
  2972. />
  2973. <package
  2974. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2975. size="5183988"
  2976. />
  2977. <package
  2978. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2979. size="5183988"
  2980. />
  2981. <package
  2982. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2983. size="5183988"
  2984. />
  2985. <package
  2986. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2987. size="5183988"
  2988. />
  2989. </otaPackages>
  2990. </productMenu>
  2991. <productMenu id="wa"
  2992. type="0" >
  2993. </productMenu>
  2994. <productMenu id="led"
  2995. type="5" >
  2996. </productMenu>
  2997. <productMenu id="led+"
  2998. type="2"
  2999. url="1" >
  3000. </productMenu>
  3001. <productMenu id="meshIntercom"
  3002. type="30" >
  3003. </productMenu>
  3004. <productMenu id="meshIntercom+"
  3005. type="3"
  3006. url="2" >
  3007. </productMenu>
  3008. <productMenu id="waveIntercom"
  3009. type="1" >
  3010. </productMenu>
  3011. <productMenu id="fmradio"
  3012. type="0" >
  3013. </productMenu>
  3014. <productMenu id="phone"
  3015. type="1" >
  3016. </productMenu>
  3017. <productMenu id="music"
  3018. type="1" >
  3019. </productMenu>
  3020. <productMenu id="musicSharing"
  3021. type="0" >
  3022. </productMenu>
  3023. <productMenu id="deviceSetting"
  3024. type="1"
  3025. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3026. </productMenu>
  3027. <productMenu id="quickGuide"
  3028. type="0"
  3029. url=""
  3030. size="1.12MB" >
  3031. </productMenu>
  3032. <productMenu id="userGuide"
  3033. type="1"
  3034. url=""
  3035. size="2.0MB" >
  3036. </productMenu>
  3037. <productMenu id="videoGuide"
  3038. type="0"
  3039. url=""
  3040. size="3.41MB" >
  3041. </productMenu>
  3042. <productMenu id="volume"
  3043. type="16" >
  3044. </productMenu>
  3045. <productMenu id="battery"
  3046. type="1" >
  3047. </productMenu>
  3048. <productID id="6A10"
  3049. />
  3050. <productGroupable type="0"
  3051. />
  3052. </product>
  3053. <product id="PHANTOMCamera"
  3054. name="PHANTOM Camera"
  3055. series="Helmet"
  3056. latestVersion="1.0.1"
  3057. latestVersionVoicePrompt="0.4"
  3058. show = "-1" >
  3059. <productMenu id="protocol"
  3060. type="2" >
  3061. </productMenu>
  3062. <productMenu id="ota"
  3063. type="3" >
  3064. <otaLanguages>
  3065. <otaLanguage
  3066. id="0"
  3067. name="English"
  3068. package="0"
  3069. />
  3070. <otaLanguage
  3071. id="0"
  3072. name="French"
  3073. package="1"
  3074. />
  3075. <otaLanguage
  3076. id="0"
  3077. name="Spanish"
  3078. package="2"
  3079. />
  3080. <otaLanguage
  3081. id="0"
  3082. name="Italian"
  3083. package="3"
  3084. />
  3085. <otaLanguage
  3086. id="0"
  3087. name="German"
  3088. package="4"
  3089. />
  3090. <otaLanguage
  3091. id="0"
  3092. name="Dutch"
  3093. package="5"
  3094. />
  3095. <otaLanguage
  3096. id="0"
  3097. name="Russian"
  3098. package="6"
  3099. />
  3100. <otaLanguage
  3101. id="0"
  3102. name="Chinese"
  3103. package="7"
  3104. />
  3105. <otaLanguage
  3106. id="0"
  3107. name="Korean"
  3108. package="8"
  3109. />
  3110. <otaLanguage
  3111. id="0"
  3112. name="Japanese"
  3113. package="9"
  3114. />
  3115. <otaLanguage
  3116. id="0"
  3117. name="Finnish"
  3118. package="10"
  3119. />
  3120. <otaLanguage
  3121. id="0"
  3122. name="Polish"
  3123. package="11"
  3124. />
  3125. </otaLanguages>
  3126. <otaPackages>
  3127. <package
  3128. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3129. size="5183988"
  3130. />
  3131. <package
  3132. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3133. size="5183988"
  3134. />
  3135. <package
  3136. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3137. size="5183988"
  3138. />
  3139. <package
  3140. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3141. size="5183988"
  3142. />
  3143. <package
  3144. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3145. size="5183988"
  3146. />
  3147. <package
  3148. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3149. size="5183988"
  3150. />
  3151. <package
  3152. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3153. size="5183988"
  3154. />
  3155. <package
  3156. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3157. size="5183988"
  3158. />
  3159. <package
  3160. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3161. size="5183988"
  3162. />
  3163. <package
  3164. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3165. size="5183988"
  3166. />
  3167. <package
  3168. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3169. size="5183988"
  3170. />
  3171. <package
  3172. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3173. size="5183988"
  3174. />
  3175. </otaPackages>
  3176. </productMenu>
  3177. <productMenu id="wa"
  3178. type="0" >
  3179. </productMenu>
  3180. <productMenu id="led"
  3181. type="5" >
  3182. </productMenu>
  3183. <productMenu id="led+"
  3184. type="2"
  3185. url="1" >
  3186. </productMenu>
  3187. <productMenu id="meshIntercom"
  3188. type="30" >
  3189. </productMenu>
  3190. <productMenu id="meshIntercom+"
  3191. type="3"
  3192. url="2" >
  3193. </productMenu>
  3194. <productMenu id="waveIntercom"
  3195. type="1" >
  3196. </productMenu>
  3197. <productMenu id="fmradio"
  3198. type="0" >
  3199. </productMenu>
  3200. <productMenu id="phone"
  3201. type="1" >
  3202. </productMenu>
  3203. <productMenu id="music"
  3204. type="1" >
  3205. </productMenu>
  3206. <productMenu id="musicSharing"
  3207. type="0" >
  3208. </productMenu>
  3209. <productMenu id="deviceSetting"
  3210. type="1"
  3211. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3212. </productMenu>
  3213. <productMenu id="quickGuide"
  3214. type="0"
  3215. url=""
  3216. size="1.12MB" >
  3217. </productMenu>
  3218. <productMenu id="userGuide"
  3219. type="1"
  3220. url=""
  3221. size="2.0MB" >
  3222. </productMenu>
  3223. <productMenu id="videoGuide"
  3224. type="0"
  3225. url=""
  3226. size="3.41MB" >
  3227. </productMenu>
  3228. <productMenu id="volume"
  3229. type="16" >
  3230. </productMenu>
  3231. <productMenu id="battery"
  3232. type="1" >
  3233. </productMenu>
  3234. <productID id="6A09"
  3235. />
  3236. <productGroupable type="0"
  3237. />
  3238. </product>
  3239. <product id="PHANTOM"
  3240. name="PHANTOM ANC"
  3241. series="Helmet"
  3242. latestVersion="1.2.7"
  3243. latestVersionVoicePrompt="1.5"
  3244. show = "1" >
  3245. <productMenu id="protocol"
  3246. type="2" >
  3247. </productMenu>
  3248. <productMenu id="ota"
  3249. type="2" >
  3250. <productMenuType version="0.6.9"
  3251. type="0"
  3252. />
  3253. <otaLanguages>
  3254. <otaLanguage
  3255. id="0"
  3256. name="English"
  3257. package="0"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="French"
  3262. package="1"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Spanish"
  3267. package="2"
  3268. />
  3269. <otaLanguage
  3270. id="0"
  3271. name="Italian"
  3272. package="3"
  3273. />
  3274. <otaLanguage
  3275. id="0"
  3276. name="German"
  3277. package="4"
  3278. />
  3279. <otaLanguage
  3280. id="0"
  3281. name="Dutch"
  3282. package="5"
  3283. />
  3284. <otaLanguage
  3285. id="0"
  3286. name="Russian"
  3287. package="6"
  3288. />
  3289. <otaLanguage
  3290. id="0"
  3291. name="Chinese"
  3292. package="7"
  3293. />
  3294. <otaLanguage
  3295. id="0"
  3296. name="Korean"
  3297. package="8"
  3298. />
  3299. <otaLanguage
  3300. id="0"
  3301. name="Japanese"
  3302. package="9"
  3303. />
  3304. <otaLanguage
  3305. id="0"
  3306. name="Finnish"
  3307. package="10"
  3308. />
  3309. <otaLanguage
  3310. id="0"
  3311. name="Polish"
  3312. package="11"
  3313. />
  3314. </otaLanguages>
  3315. <otaPackages>
  3316. <package
  3317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3318. size="5183988"
  3319. />
  3320. <package
  3321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3322. size="5183988"
  3323. />
  3324. <package
  3325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3326. size="5183988"
  3327. />
  3328. <package
  3329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3330. size="5183988"
  3331. />
  3332. <package
  3333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3334. size="5183988"
  3335. />
  3336. <package
  3337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3338. size="5183988"
  3339. />
  3340. <package
  3341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3342. size="5183988"
  3343. />
  3344. <package
  3345. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3346. size="5183988"
  3347. />
  3348. <package
  3349. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3350. size="5183988"
  3351. />
  3352. <package
  3353. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3354. size="5183988"
  3355. />
  3356. <package
  3357. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3358. size="5183988"
  3359. />
  3360. <package
  3361. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3362. size="5183988"
  3363. />
  3364. </otaPackages>
  3365. </productMenu>
  3366. <productMenu id="wa"
  3367. type="0" >
  3368. </productMenu>
  3369. <productMenu id="led"
  3370. type="5" >
  3371. </productMenu>
  3372. <productMenu id="led+"
  3373. type="2"
  3374. url="1" >
  3375. </productMenu>
  3376. <productMenu id="meshIntercom"
  3377. type="30" >
  3378. </productMenu>
  3379. <productMenu id="meshIntercom+"
  3380. type="3"
  3381. url="2" >
  3382. <productMenuURL version="1.0.4"
  3383. url="10"
  3384. />
  3385. </productMenu>
  3386. <productMenu id="waveIntercom"
  3387. type="1" >
  3388. <productMenuType version="1.0.9"
  3389. type="0"
  3390. />
  3391. </productMenu>
  3392. <productMenu id="fmradio"
  3393. type="0" >
  3394. </productMenu>
  3395. <productMenu id="phone"
  3396. type="1" >
  3397. </productMenu>
  3398. <productMenu id="music"
  3399. type="1" >
  3400. </productMenu>
  3401. <productMenu id="musicSharing"
  3402. type="0" >
  3403. </productMenu>
  3404. <productMenu id="deviceSetting"
  3405. type="1"
  3406. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3407. <productMenuURL version="1.2.4"
  3408. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3409. />
  3410. <productMenuURL version="1.2.1"
  3411. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3412. />
  3413. <productMenuURL version="1.1.2"
  3414. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3415. />
  3416. <productMenuURL version="1.0.4"
  3417. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3418. />
  3419. </productMenu>
  3420. <productMenu id="quickGuide"
  3421. type="0"
  3422. url=""
  3423. size="1.12MB" >
  3424. </productMenu>
  3425. <productMenu id="userGuide"
  3426. type="1"
  3427. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3428. size="2.0MB" >
  3429. </productMenu>
  3430. <productMenu id="videoGuide"
  3431. type="0"
  3432. url=""
  3433. size="3.41MB" >
  3434. </productMenu>
  3435. <productMenu id="volume"
  3436. type="16" >
  3437. </productMenu>
  3438. <productMenu id="volume+"
  3439. type="2"
  3440. url="0x6004" >
  3441. </productMenu>
  3442. <productMenu id="soundMode"
  3443. type="1" >
  3444. <productMenuType version="0.9.11"
  3445. type="0"
  3446. />
  3447. </productMenu>
  3448. <productMenu id="battery"
  3449. type="1" >
  3450. </productMenu>
  3451. <productID id="6A01"
  3452. />
  3453. <productGroupable type="0"
  3454. />
  3455. </product>
  3456. <product id="PHANTOM"
  3457. name="PHANTOM ANC"
  3458. series="Helmet"
  3459. latestVersion="1.2.7"
  3460. latestVersionVoicePrompt="1.5"
  3461. show = "-1" >
  3462. <productMenu id="protocol"
  3463. type="2" >
  3464. </productMenu>
  3465. <productMenu id="ota"
  3466. type="2" >
  3467. <otaLanguages>
  3468. <otaLanguage
  3469. id="0"
  3470. name="English"
  3471. package="0"
  3472. />
  3473. <otaLanguage
  3474. id="0"
  3475. name="French"
  3476. package="1"
  3477. />
  3478. <otaLanguage
  3479. id="0"
  3480. name="Spanish"
  3481. package="2"
  3482. />
  3483. <otaLanguage
  3484. id="0"
  3485. name="Italian"
  3486. package="3"
  3487. />
  3488. <otaLanguage
  3489. id="0"
  3490. name="German"
  3491. package="4"
  3492. />
  3493. <otaLanguage
  3494. id="0"
  3495. name="Dutch"
  3496. package="5"
  3497. />
  3498. <otaLanguage
  3499. id="0"
  3500. name="Russian"
  3501. package="6"
  3502. />
  3503. <otaLanguage
  3504. id="0"
  3505. name="Chinese"
  3506. package="7"
  3507. />
  3508. <otaLanguage
  3509. id="0"
  3510. name="Korean"
  3511. package="8"
  3512. />
  3513. <otaLanguage
  3514. id="0"
  3515. name="Japanese"
  3516. package="9"
  3517. />
  3518. <otaLanguage
  3519. id="0"
  3520. name="Finnish"
  3521. package="10"
  3522. />
  3523. <otaLanguage
  3524. id="0"
  3525. name="Polish"
  3526. package="11"
  3527. />
  3528. </otaLanguages>
  3529. <otaPackages>
  3530. <package
  3531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3532. size="5183988"
  3533. />
  3534. <package
  3535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3536. size="5183988"
  3537. />
  3538. <package
  3539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3540. size="5183988"
  3541. />
  3542. <package
  3543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3544. size="5183988"
  3545. />
  3546. <package
  3547. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3548. size="5183988"
  3549. />
  3550. <package
  3551. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3552. size="5183988"
  3553. />
  3554. <package
  3555. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3556. size="5183988"
  3557. />
  3558. <package
  3559. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3560. size="5183988"
  3561. />
  3562. <package
  3563. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3564. size="5183988"
  3565. />
  3566. <package
  3567. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3568. size="5183988"
  3569. />
  3570. <package
  3571. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3572. size="5183988"
  3573. />
  3574. <package
  3575. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3576. size="5183988"
  3577. />
  3578. </otaPackages>
  3579. </productMenu>
  3580. <productMenu id="led"
  3581. type="5" >
  3582. </productMenu>
  3583. <productMenu id="led+"
  3584. type="2"
  3585. url="1" >
  3586. </productMenu>
  3587. <productMenu id="meshIntercom"
  3588. type="30" >
  3589. </productMenu>
  3590. <productMenu id="meshIntercom+"
  3591. type="3"
  3592. url="2" >
  3593. </productMenu>
  3594. <productMenu id="waveIntercom"
  3595. type="1" >
  3596. </productMenu>
  3597. <productMenu id="fmradio"
  3598. type="0" >
  3599. </productMenu>
  3600. <productMenu id="phone"
  3601. type="1" >
  3602. </productMenu>
  3603. <productMenu id="music"
  3604. type="1" >
  3605. </productMenu>
  3606. <productMenu id="musicSharing"
  3607. type="0" >
  3608. </productMenu>
  3609. <productMenu id="deviceSetting"
  3610. type="1"
  3611. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3612. <productMenuURL version="1.2.4"
  3613. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3614. />
  3615. </productMenu>
  3616. <productMenu id="quickGuide"
  3617. type="0"
  3618. url=""
  3619. size="1.12MB" >
  3620. </productMenu>
  3621. <productMenu id="userGuide"
  3622. type="1"
  3623. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3624. size="2.0MB" >
  3625. </productMenu>
  3626. <productMenu id="videoGuide"
  3627. type="0"
  3628. url=""
  3629. size="3.41MB" >
  3630. </productMenu>
  3631. <productMenu id="volume"
  3632. type="16" >
  3633. </productMenu>
  3634. <productMenu id="volume+"
  3635. type="2"
  3636. url="0x6004" >
  3637. </productMenu>
  3638. <productMenu id="soundMode"
  3639. type="1" >
  3640. </productMenu>
  3641. <productMenu id="battery"
  3642. type="1" >
  3643. </productMenu>
  3644. <productID id="6A19"
  3645. />
  3646. <productGroupable type="0"
  3647. />
  3648. </product>
  3649. <product id="PHANTOM"
  3650. name="PHANTOM"
  3651. series="Helmet"
  3652. latestVersion="1.2.7"
  3653. latestVersionVoicePrompt="1.5"
  3654. show = "-1" >
  3655. <productMenu id="protocol"
  3656. type="2" >
  3657. </productMenu>
  3658. <productMenu id="ota"
  3659. type="2" >
  3660. <otaLanguages>
  3661. <otaLanguage
  3662. id="0"
  3663. name="English"
  3664. package="0"
  3665. />
  3666. <otaLanguage
  3667. id="0"
  3668. name="French"
  3669. package="1"
  3670. />
  3671. <otaLanguage
  3672. id="0"
  3673. name="Spanish"
  3674. package="2"
  3675. />
  3676. <otaLanguage
  3677. id="0"
  3678. name="Italian"
  3679. package="3"
  3680. />
  3681. <otaLanguage
  3682. id="0"
  3683. name="German"
  3684. package="4"
  3685. />
  3686. <otaLanguage
  3687. id="0"
  3688. name="Dutch"
  3689. package="5"
  3690. />
  3691. <otaLanguage
  3692. id="0"
  3693. name="Russian"
  3694. package="6"
  3695. />
  3696. <otaLanguage
  3697. id="0"
  3698. name="Chinese"
  3699. package="7"
  3700. />
  3701. <otaLanguage
  3702. id="0"
  3703. name="Korean"
  3704. package="8"
  3705. />
  3706. <otaLanguage
  3707. id="0"
  3708. name="Japanese"
  3709. package="9"
  3710. />
  3711. <otaLanguage
  3712. id="0"
  3713. name="Finnish"
  3714. package="10"
  3715. />
  3716. <otaLanguage
  3717. id="0"
  3718. name="Polish"
  3719. package="11"
  3720. />
  3721. </otaLanguages>
  3722. <otaPackages>
  3723. <package
  3724. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3725. size="5183988"
  3726. />
  3727. <package
  3728. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3729. size="5183988"
  3730. />
  3731. <package
  3732. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3733. size="5183988"
  3734. />
  3735. <package
  3736. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3737. size="5183988"
  3738. />
  3739. <package
  3740. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3741. size="5183988"
  3742. />
  3743. <package
  3744. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3745. size="5183988"
  3746. />
  3747. <package
  3748. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3749. size="5183988"
  3750. />
  3751. <package
  3752. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3753. size="5183988"
  3754. />
  3755. <package
  3756. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3757. size="5183988"
  3758. />
  3759. <package
  3760. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3761. size="5183988"
  3762. />
  3763. <package
  3764. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3765. size="5183988"
  3766. />
  3767. <package
  3768. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3769. size="5183988"
  3770. />
  3771. </otaPackages>
  3772. </productMenu>
  3773. <productMenu id="wa"
  3774. type="0" >
  3775. </productMenu>
  3776. <productMenu id="led"
  3777. type="5" >
  3778. </productMenu>
  3779. <productMenu id="led+"
  3780. type="2"
  3781. url="1" >
  3782. </productMenu>
  3783. <productMenu id="meshIntercom"
  3784. type="30" >
  3785. </productMenu>
  3786. <productMenu id="meshIntercom+"
  3787. type="3"
  3788. url="2" >
  3789. </productMenu>
  3790. <productMenu id="waveIntercom"
  3791. type="1" >
  3792. </productMenu>
  3793. <productMenu id="fmradio"
  3794. type="0" >
  3795. </productMenu>
  3796. <productMenu id="phone"
  3797. type="1" >
  3798. </productMenu>
  3799. <productMenu id="music"
  3800. type="1" >
  3801. </productMenu>
  3802. <productMenu id="musicSharing"
  3803. type="0" >
  3804. </productMenu>
  3805. <productMenu id="deviceSetting"
  3806. type="1"
  3807. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  3808. <productMenuURL version="1.2.4"
  3809. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3810. />
  3811. </productMenu>
  3812. <productMenu id="quickGuide"
  3813. type="0"
  3814. url=""
  3815. size="1.52MB" >
  3816. </productMenu>
  3817. <productMenu id="userGuide"
  3818. type="1"
  3819. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3820. size="2.01MB" >
  3821. </productMenu>
  3822. <productMenu id="videoGuide"
  3823. type="0"
  3824. url=""
  3825. size="3.46MB" >
  3826. </productMenu>
  3827. <productMenu id="connectGuide"
  3828. type="1"
  3829. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3830. size="1.1MB" >
  3831. </productMenu>
  3832. <productMenu id="volume"
  3833. type="16" >
  3834. </productMenu>
  3835. <productMenu id="volume+"
  3836. type="2"
  3837. url="0x6004" >
  3838. </productMenu>
  3839. <productMenu id="battery"
  3840. type="1" >
  3841. </productMenu>
  3842. <productID id="6A0E"
  3843. />
  3844. <productGroupable type="0"
  3845. />
  3846. </product>
  3847. <product id="PHANTOM"
  3848. name="PHANTOM"
  3849. series="Helmet"
  3850. latestVersion="1.2.7"
  3851. latestVersionVoicePrompt="1.5"
  3852. show = "1" >
  3853. <productMenu id="protocol"
  3854. type="2" >
  3855. </productMenu>
  3856. <productMenu id="ota"
  3857. type="2" >
  3858. <otaLanguages>
  3859. <otaLanguage
  3860. id="0"
  3861. name="English"
  3862. package="0"
  3863. />
  3864. <otaLanguage
  3865. id="0"
  3866. name="French"
  3867. package="1"
  3868. />
  3869. <otaLanguage
  3870. id="0"
  3871. name="Spanish"
  3872. package="2"
  3873. />
  3874. <otaLanguage
  3875. id="0"
  3876. name="Italian"
  3877. package="3"
  3878. />
  3879. <otaLanguage
  3880. id="0"
  3881. name="German"
  3882. package="4"
  3883. />
  3884. <otaLanguage
  3885. id="0"
  3886. name="Dutch"
  3887. package="5"
  3888. />
  3889. <otaLanguage
  3890. id="0"
  3891. name="Russian"
  3892. package="6"
  3893. />
  3894. <otaLanguage
  3895. id="0"
  3896. name="Chinese"
  3897. package="7"
  3898. />
  3899. <otaLanguage
  3900. id="0"
  3901. name="Korean"
  3902. package="8"
  3903. />
  3904. <otaLanguage
  3905. id="0"
  3906. name="Japanese"
  3907. package="9"
  3908. />
  3909. <otaLanguage
  3910. id="0"
  3911. name="Finnish"
  3912. package="10"
  3913. />
  3914. <otaLanguage
  3915. id="0"
  3916. name="Polish"
  3917. package="11"
  3918. />
  3919. </otaLanguages>
  3920. <otaPackages>
  3921. <package
  3922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3923. size="5183988"
  3924. />
  3925. <package
  3926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3927. size="5183988"
  3928. />
  3929. <package
  3930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3931. size="5183988"
  3932. />
  3933. <package
  3934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3935. size="5183988"
  3936. />
  3937. <package
  3938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3939. size="5183988"
  3940. />
  3941. <package
  3942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3943. size="5183988"
  3944. />
  3945. <package
  3946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3947. size="5183988"
  3948. />
  3949. <package
  3950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3951. size="5183988"
  3952. />
  3953. <package
  3954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3955. size="5183988"
  3956. />
  3957. <package
  3958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3959. size="5183988"
  3960. />
  3961. <package
  3962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3963. size="5183988"
  3964. />
  3965. <package
  3966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3967. size="5183988"
  3968. />
  3969. </otaPackages>
  3970. </productMenu>
  3971. <productMenu id="wa"
  3972. type="0" >
  3973. </productMenu>
  3974. <productMenu id="led"
  3975. type="5" >
  3976. <productMenuType version="1.0.1"
  3977. type="4"
  3978. />
  3979. </productMenu>
  3980. <productMenu id="led+"
  3981. type="2"
  3982. url="1" >
  3983. <productMenuType version="1.0.1"
  3984. type="-1"
  3985. />
  3986. </productMenu>
  3987. <productMenu id="meshIntercom"
  3988. type="30" >
  3989. </productMenu>
  3990. <productMenu id="meshIntercom+"
  3991. type="3"
  3992. url="2" >
  3993. <productMenuURL version="1.0.4"
  3994. url="10"
  3995. />
  3996. </productMenu>
  3997. <productMenu id="waveIntercom"
  3998. type="1" >
  3999. <productMenuType version="1.0.9"
  4000. type="0"
  4001. />
  4002. </productMenu>
  4003. <productMenu id="fmradio"
  4004. type="0" >
  4005. </productMenu>
  4006. <productMenu id="phone"
  4007. type="1" >
  4008. </productMenu>
  4009. <productMenu id="music"
  4010. type="1" >
  4011. </productMenu>
  4012. <productMenu id="musicSharing"
  4013. type="0" >
  4014. </productMenu>
  4015. <productMenu id="deviceSetting"
  4016. type="1"
  4017. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_11.xml" >
  4018. <productMenuURL version="1.2.4"
  4019. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4020. />
  4021. <productMenuURL version="1.2.1"
  4022. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4023. />
  4024. <productMenuURL version="1.0.4"
  4025. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4026. />
  4027. <productMenuURL version="1.0.1"
  4028. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4029. />
  4030. </productMenu>
  4031. <productMenu id="quickGuide"
  4032. type="0"
  4033. url=""
  4034. size="1.12MB" >
  4035. </productMenu>
  4036. <productMenu id="userGuide"
  4037. type="1"
  4038. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4039. size="2.0MB" >
  4040. </productMenu>
  4041. <productMenu id="videoGuide"
  4042. type="0"
  4043. url=""
  4044. size="3.41MB" >
  4045. </productMenu>
  4046. <productMenu id="connectGuide"
  4047. type="1"
  4048. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4049. size="1.12MB" >
  4050. </productMenu>
  4051. <productMenu id="volume"
  4052. type="16" >
  4053. <productMenuType version="1.0"
  4054. type="13"
  4055. />
  4056. </productMenu>
  4057. <productMenu id="volume+"
  4058. type="2"
  4059. url="0x6004" >
  4060. </productMenu>
  4061. <productMenu id="battery"
  4062. type="1" >
  4063. </productMenu>
  4064. <productID id="6A04"
  4065. />
  4066. <productGroupable type="0"
  4067. />
  4068. </product>
  4069. <product id="PHANTOMEasyLink"
  4070. name="PHANTOM EasyLink"
  4071. series="Helmet"
  4072. latestVersion="0.1"
  4073. latestVersionVoicePrompt="1.2"
  4074. show = "-1" >
  4075. <productMenu id="protocol"
  4076. type="2" >
  4077. </productMenu>
  4078. <productMenu id="ota"
  4079. type="0" >
  4080. <otaLanguages>
  4081. <otaLanguage
  4082. id="0"
  4083. name="English"
  4084. package="0"
  4085. />
  4086. <otaLanguage
  4087. id="0"
  4088. name="French"
  4089. package="1"
  4090. />
  4091. <otaLanguage
  4092. id="0"
  4093. name="Spanish"
  4094. package="2"
  4095. />
  4096. <otaLanguage
  4097. id="0"
  4098. name="Italian"
  4099. package="3"
  4100. />
  4101. <otaLanguage
  4102. id="0"
  4103. name="German"
  4104. package="4"
  4105. />
  4106. <otaLanguage
  4107. id="0"
  4108. name="Dutch"
  4109. package="5"
  4110. />
  4111. <otaLanguage
  4112. id="0"
  4113. name="Russian"
  4114. package="6"
  4115. />
  4116. <otaLanguage
  4117. id="0"
  4118. name="Chinese"
  4119. package="7"
  4120. />
  4121. <otaLanguage
  4122. id="0"
  4123. name="Korean"
  4124. package="8"
  4125. />
  4126. <otaLanguage
  4127. id="0"
  4128. name="Japanese"
  4129. package="9"
  4130. />
  4131. <otaLanguage
  4132. id="0"
  4133. name="Finnish"
  4134. package="10"
  4135. />
  4136. <otaLanguage
  4137. id="0"
  4138. name="Polish"
  4139. package="11"
  4140. />
  4141. </otaLanguages>
  4142. <otaPackages>
  4143. <package
  4144. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4145. size="5183988"
  4146. />
  4147. <package
  4148. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4149. size="5183988"
  4150. />
  4151. <package
  4152. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4153. size="5183988"
  4154. />
  4155. <package
  4156. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4157. size="5183988"
  4158. />
  4159. <package
  4160. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4161. size="5183988"
  4162. />
  4163. <package
  4164. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4165. size="5183988"
  4166. />
  4167. <package
  4168. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4169. size="5183988"
  4170. />
  4171. <package
  4172. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4173. size="5183988"
  4174. />
  4175. <package
  4176. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4177. size="5183988"
  4178. />
  4179. <package
  4180. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4181. size="5183988"
  4182. />
  4183. <package
  4184. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4185. size="5183988"
  4186. />
  4187. <package
  4188. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4189. size="5183988"
  4190. />
  4191. </otaPackages>
  4192. </productMenu>
  4193. <productMenu id="meshIntercom"
  4194. type="30" >
  4195. </productMenu>
  4196. <productMenu id="meshIntercom+"
  4197. type="3"
  4198. url="2" >
  4199. </productMenu>
  4200. <productMenu id="waveIntercom"
  4201. type="1" >
  4202. </productMenu>
  4203. <productMenu id="fmradio"
  4204. type="0" >
  4205. </productMenu>
  4206. <productMenu id="phone"
  4207. type="1" >
  4208. </productMenu>
  4209. <productMenu id="music"
  4210. type="1" >
  4211. </productMenu>
  4212. <productMenu id="musicSharing"
  4213. type="0" >
  4214. </productMenu>
  4215. <productMenu id="deviceSetting"
  4216. type="1"
  4217. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4218. </productMenu>
  4219. <productMenu id="quickGuide"
  4220. type="0"
  4221. url=""
  4222. size="1.12MB" >
  4223. </productMenu>
  4224. <productMenu id="userGuide"
  4225. type="1"
  4226. url=""
  4227. size="2.0MB" >
  4228. </productMenu>
  4229. <productMenu id="videoGuide"
  4230. type="0"
  4231. url=""
  4232. size="3.41MB" >
  4233. </productMenu>
  4234. <productMenu id="connectGuide"
  4235. type="0"
  4236. url=""
  4237. size="1.12MB" >
  4238. </productMenu>
  4239. <productMenu id="volume"
  4240. type="16" >
  4241. </productMenu>
  4242. <productMenu id="battery"
  4243. type="1" >
  4244. </productMenu>
  4245. <productID id="6A18"
  4246. />
  4247. <productGroupable type="0"
  4248. />
  4249. </product>
  4250. <product id="SPIDERXSlim"
  4251. name="SPIDER X Slim"
  4252. series="SPIDER"
  4253. latestVersion="0.9"
  4254. latestVersionVoicePrompt="1.2"
  4255. show = "-1" >
  4256. <productMenu id="protocol"
  4257. type="2" >
  4258. </productMenu>
  4259. <productMenu id="ota"
  4260. type="2" >
  4261. <otaLanguages>
  4262. <otaLanguage
  4263. id="0"
  4264. name="English"
  4265. package="0"
  4266. />
  4267. <otaLanguage
  4268. id="0"
  4269. name="French"
  4270. package="1"
  4271. />
  4272. <otaLanguage
  4273. id="0"
  4274. name="Spanish"
  4275. package="2"
  4276. />
  4277. <otaLanguage
  4278. id="0"
  4279. name="Italian"
  4280. package="3"
  4281. />
  4282. <otaLanguage
  4283. id="0"
  4284. name="German"
  4285. package="4"
  4286. />
  4287. <otaLanguage
  4288. id="0"
  4289. name="Dutch"
  4290. package="5"
  4291. />
  4292. <otaLanguage
  4293. id="0"
  4294. name="Russian"
  4295. package="6"
  4296. />
  4297. <otaLanguage
  4298. id="0"
  4299. name="Chinese"
  4300. package="7"
  4301. />
  4302. <otaLanguage
  4303. id="0"
  4304. name="Korean"
  4305. package="8"
  4306. />
  4307. <otaLanguage
  4308. id="0"
  4309. name="Japanese"
  4310. package="9"
  4311. />
  4312. <otaLanguage
  4313. id="0"
  4314. name="Finnish"
  4315. package="10"
  4316. />
  4317. <otaLanguage
  4318. id="0"
  4319. name="Polish"
  4320. package="11"
  4321. />
  4322. </otaLanguages>
  4323. <otaPackages>
  4324. <package
  4325. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4326. size="5183988"
  4327. />
  4328. <package
  4329. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4330. size="5183988"
  4331. />
  4332. <package
  4333. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4334. size="5183988"
  4335. />
  4336. <package
  4337. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4338. size="5183988"
  4339. />
  4340. <package
  4341. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4342. size="5183988"
  4343. />
  4344. <package
  4345. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4346. size="5183988"
  4347. />
  4348. <package
  4349. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4350. size="5183988"
  4351. />
  4352. <package
  4353. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4354. size="5183988"
  4355. />
  4356. <package
  4357. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4358. size="5183988"
  4359. />
  4360. <package
  4361. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4362. size="5183988"
  4363. />
  4364. <package
  4365. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4366. size="5183988"
  4367. />
  4368. <package
  4369. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4370. size="5183988"
  4371. />
  4372. </otaPackages>
  4373. </productMenu>
  4374. <productMenu id="meshIntercom"
  4375. type="30" >
  4376. </productMenu>
  4377. <productMenu id="meshIntercom+"
  4378. type="3"
  4379. url="2" >
  4380. </productMenu>
  4381. <productMenu id="waveIntercom"
  4382. type="1" >
  4383. </productMenu>
  4384. <productMenu id="fmradio"
  4385. type="1"
  4386. url="1" >
  4387. </productMenu>
  4388. <productMenu id="phone"
  4389. type="1" >
  4390. </productMenu>
  4391. <productMenu id="music"
  4392. type="1" >
  4393. </productMenu>
  4394. <productMenu id="musicSharing"
  4395. type="0" >
  4396. </productMenu>
  4397. <productMenu id="deviceSetting"
  4398. type="1"
  4399. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4400. </productMenu>
  4401. <productMenu id="quickGuide"
  4402. type="0"
  4403. url=""
  4404. size="1.12MB" >
  4405. </productMenu>
  4406. <productMenu id="userGuide"
  4407. type="1"
  4408. url=""
  4409. size="2.0MB" >
  4410. </productMenu>
  4411. <productMenu id="videoGuide"
  4412. type="0"
  4413. url=""
  4414. size="3.41MB" >
  4415. </productMenu>
  4416. <productMenu id="volume"
  4417. type="16" >
  4418. </productMenu>
  4419. <productMenu id="volume+"
  4420. type="2"
  4421. url="0x6004" >
  4422. </productMenu>
  4423. <productMenu id="battery"
  4424. type="1" >
  4425. </productMenu>
  4426. <productID id="6A07"
  4427. />
  4428. <productGroupable type="0"
  4429. />
  4430. </product>
  4431. <product id="XFITM"
  4432. name="X-FIT M"
  4433. series="SPIDER"
  4434. latestVersion="0.1.11"
  4435. latestVersionVoicePrompt="1.1"
  4436. show = "-1" >
  4437. <productMenu id="protocol"
  4438. type="2" >
  4439. </productMenu>
  4440. <productMenu id="ota"
  4441. type="0" >
  4442. <otaLanguages>
  4443. <otaLanguage
  4444. id="0"
  4445. name="English"
  4446. package="0"
  4447. />
  4448. <otaLanguage
  4449. id="0"
  4450. name="French"
  4451. package="1"
  4452. />
  4453. <otaLanguage
  4454. id="0"
  4455. name="Spanish"
  4456. package="2"
  4457. />
  4458. <otaLanguage
  4459. id="0"
  4460. name="Italian"
  4461. package="3"
  4462. />
  4463. <otaLanguage
  4464. id="0"
  4465. name="German"
  4466. package="4"
  4467. />
  4468. <otaLanguage
  4469. id="0"
  4470. name="Dutch"
  4471. package="5"
  4472. />
  4473. <otaLanguage
  4474. id="0"
  4475. name="Russian"
  4476. package="6"
  4477. />
  4478. <otaLanguage
  4479. id="0"
  4480. name="Chinese"
  4481. package="7"
  4482. />
  4483. <otaLanguage
  4484. id="0"
  4485. name="Korean"
  4486. package="8"
  4487. />
  4488. <otaLanguage
  4489. id="0"
  4490. name="Japanese"
  4491. package="9"
  4492. />
  4493. <otaLanguage
  4494. id="0"
  4495. name="Finnish"
  4496. package="10"
  4497. />
  4498. <otaLanguage
  4499. id="0"
  4500. name="Polish"
  4501. package="11"
  4502. />
  4503. </otaLanguages>
  4504. <otaPackages>
  4505. <package
  4506. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4507. size="5183988"
  4508. />
  4509. <package
  4510. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4511. size="5183988"
  4512. />
  4513. <package
  4514. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4515. size="5183988"
  4516. />
  4517. <package
  4518. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4519. size="5183988"
  4520. />
  4521. <package
  4522. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4523. size="5183988"
  4524. />
  4525. <package
  4526. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4527. size="5183988"
  4528. />
  4529. <package
  4530. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4531. size="5183988"
  4532. />
  4533. <package
  4534. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4535. size="5183988"
  4536. />
  4537. <package
  4538. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4539. size="5183988"
  4540. />
  4541. <package
  4542. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4543. size="5183988"
  4544. />
  4545. <package
  4546. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4547. size="5183988"
  4548. />
  4549. <package
  4550. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4551. size="5183988"
  4552. />
  4553. </otaPackages>
  4554. </productMenu>
  4555. <productMenu id="meshIntercom"
  4556. type="30" >
  4557. </productMenu>
  4558. <productMenu id="meshIntercom+"
  4559. type="3"
  4560. url="2" >
  4561. </productMenu>
  4562. <productMenu id="waveIntercom"
  4563. type="1" >
  4564. </productMenu>
  4565. <productMenu id="fmradio"
  4566. type="1"
  4567. url="1" >
  4568. </productMenu>
  4569. <productMenu id="phone"
  4570. type="1" >
  4571. </productMenu>
  4572. <productMenu id="music"
  4573. type="1" >
  4574. </productMenu>
  4575. <productMenu id="musicSharing"
  4576. type="0" >
  4577. </productMenu>
  4578. <productMenu id="deviceSetting"
  4579. type="1"
  4580. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim_01.xml" >
  4581. </productMenu>
  4582. <productMenu id="quickGuide"
  4583. type="0"
  4584. url=""
  4585. size="1.12MB" >
  4586. </productMenu>
  4587. <productMenu id="userGuide"
  4588. type="1"
  4589. url=""
  4590. size="2.0MB" >
  4591. </productMenu>
  4592. <productMenu id="videoGuide"
  4593. type="0"
  4594. url=""
  4595. size="3.41MB" >
  4596. </productMenu>
  4597. <productMenu id="volume"
  4598. type="16" >
  4599. </productMenu>
  4600. <productMenu id="volume+"
  4601. type="2"
  4602. url="0x6004" >
  4603. </productMenu>
  4604. <productMenu id="battery"
  4605. type="1" >
  4606. </productMenu>
  4607. <productID id="6A17"
  4608. />
  4609. <productGroupable type="0"
  4610. />
  4611. </product>
  4612. <product id="VORTEXMESH"
  4613. name="VORTEX MESH"
  4614. series="Helmet"
  4615. latestVersion="0.1.11"
  4616. latestVersionVoicePrompt="1.1"
  4617. show = "-1" >
  4618. <productMenu id="protocol"
  4619. type="2" >
  4620. </productMenu>
  4621. <productMenu id="ota"
  4622. type="0" >
  4623. <otaLanguages>
  4624. <otaLanguage
  4625. id="0"
  4626. name="English"
  4627. package="0"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="French"
  4632. package="1"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Spanish"
  4637. package="2"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Italian"
  4642. package="3"
  4643. />
  4644. <otaLanguage
  4645. id="0"
  4646. name="German"
  4647. package="4"
  4648. />
  4649. <otaLanguage
  4650. id="0"
  4651. name="Dutch"
  4652. package="5"
  4653. />
  4654. <otaLanguage
  4655. id="0"
  4656. name="Russian"
  4657. package="6"
  4658. />
  4659. <otaLanguage
  4660. id="0"
  4661. name="Chinese"
  4662. package="7"
  4663. />
  4664. <otaLanguage
  4665. id="0"
  4666. name="Korean"
  4667. package="8"
  4668. />
  4669. <otaLanguage
  4670. id="0"
  4671. name="Japanese"
  4672. package="9"
  4673. />
  4674. <otaLanguage
  4675. id="0"
  4676. name="Finnish"
  4677. package="10"
  4678. />
  4679. <otaLanguage
  4680. id="0"
  4681. name="Polish"
  4682. package="11"
  4683. />
  4684. </otaLanguages>
  4685. <otaPackages>
  4686. <package
  4687. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4692. size="5183988"
  4693. />
  4694. <package
  4695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4696. size="5183988"
  4697. />
  4698. <package
  4699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4700. size="5183988"
  4701. />
  4702. <package
  4703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4704. size="5183988"
  4705. />
  4706. <package
  4707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4708. size="5183988"
  4709. />
  4710. <package
  4711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4712. size="5183988"
  4713. />
  4714. <package
  4715. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4716. size="5183988"
  4717. />
  4718. <package
  4719. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4720. size="5183988"
  4721. />
  4722. <package
  4723. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4724. size="5183988"
  4725. />
  4726. <package
  4727. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4728. size="5183988"
  4729. />
  4730. <package
  4731. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4732. size="5183988"
  4733. />
  4734. </otaPackages>
  4735. </productMenu>
  4736. <productMenu id="wa"
  4737. type="0" >
  4738. </productMenu>
  4739. <productMenu id="led"
  4740. type="5" >
  4741. </productMenu>
  4742. <productMenu id="led+"
  4743. type="2"
  4744. url="1" >
  4745. </productMenu>
  4746. <productMenu id="meshIntercom"
  4747. type="30" >
  4748. </productMenu>
  4749. <productMenu id="meshIntercom+"
  4750. type="3"
  4751. url="2" >
  4752. </productMenu>
  4753. <productMenu id="waveIntercom"
  4754. type="1" >
  4755. </productMenu>
  4756. <productMenu id="fmradio"
  4757. type="0" >
  4758. </productMenu>
  4759. <productMenu id="phone"
  4760. type="1" >
  4761. </productMenu>
  4762. <productMenu id="music"
  4763. type="1" >
  4764. </productMenu>
  4765. <productMenu id="musicSharing"
  4766. type="0" >
  4767. </productMenu>
  4768. <productMenu id="deviceSetting"
  4769. type="1"
  4770. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4771. </productMenu>
  4772. <productMenu id="quickGuide"
  4773. type="0"
  4774. url=""
  4775. size="1.12MB" >
  4776. </productMenu>
  4777. <productMenu id="userGuide"
  4778. type="1"
  4779. url=""
  4780. size="2.0MB" >
  4781. </productMenu>
  4782. <productMenu id="videoGuide"
  4783. type="0"
  4784. url=""
  4785. size="3.41MB" >
  4786. </productMenu>
  4787. <productMenu id="volume"
  4788. type="16" >
  4789. </productMenu>
  4790. <productMenu id="battery"
  4791. type="1" >
  4792. </productMenu>
  4793. <productID id="6A12"
  4794. />
  4795. <productGroupable type="0"
  4796. />
  4797. </product>
  4798. <product id="MeshOn"
  4799. name="Mesh ON"
  4800. series="60"
  4801. latestVersion="1.0.1"
  4802. latestVersionVoicePrompt="0.7"
  4803. show = "-1" >
  4804. <productMenu id="protocol"
  4805. type="2" >
  4806. </productMenu>
  4807. <productMenu id="ota"
  4808. type="2" >
  4809. <otaPackages>
  4810. <package
  4811. url="https://api.sena.com/support/OTA/Motorcycles/MESHON/MESH_ON-v1.0.1-build0.img"
  4812. size="2945812"
  4813. />
  4814. </otaPackages>
  4815. </productMenu>
  4816. <productMenu id="meshIntercom+"
  4817. type="3"
  4818. url="4" >
  4819. </productMenu>
  4820. <productMenu id="waveIntercom"
  4821. type="0" >
  4822. </productMenu>
  4823. <productMenu id="phone"
  4824. type="0" >
  4825. </productMenu>
  4826. <productMenu id="music"
  4827. type="0" >
  4828. </productMenu>
  4829. <productMenu id="musicSharing"
  4830. type="0" >
  4831. </productMenu>
  4832. <productMenu id="deviceSetting"
  4833. type="1"
  4834. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4835. </productMenu>
  4836. <productMenu id="userGuide"
  4837. type="1"
  4838. url=""
  4839. size="2.0MB" >
  4840. </productMenu>
  4841. <productMenu id="bluetoothHeadset"
  4842. type="1"
  4843. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4844. </productMenu>
  4845. <productMenu id="volume"
  4846. type="0" >
  4847. </productMenu>
  4848. <productMenu id="battery"
  4849. type="1" >
  4850. </productMenu>
  4851. <productID id="684E"
  4852. />
  4853. <productGroupable type="0"
  4854. />
  4855. </product>
  4856. <product id="Impulse"
  4857. name="Impulse"
  4858. series="Helmet"
  4859. latestVersion="1.4.1"
  4860. show = "1" >
  4861. <productMenu id="protocol"
  4862. type="2" >
  4863. </productMenu>
  4864. <productMenu id="alexa"
  4865. type="0" >
  4866. </productMenu>
  4867. <productMenu id="ota"
  4868. type="0" >
  4869. </productMenu>
  4870. <productMenu id="wa"
  4871. type="24" >
  4872. </productMenu>
  4873. <productMenu id="manager"
  4874. type="0" >
  4875. </productMenu>
  4876. <productMenu id="sip"
  4877. type="1" >
  4878. </productMenu>
  4879. <productMenu id="led"
  4880. type="1" >
  4881. <productMenuType version="1.0.1"
  4882. type="2"
  4883. />
  4884. <productMenuType version="1.0"
  4885. type="1"
  4886. />
  4887. </productMenu>
  4888. <productMenu id="meshIntercom"
  4889. type="30" >
  4890. <productMenuType version="1.1.1"
  4891. type="20"
  4892. />
  4893. </productMenu>
  4894. <productMenu id="meshIntercom+"
  4895. type="3"
  4896. url="2" >
  4897. <productMenuType version="1.3.9"
  4898. type="2"
  4899. />
  4900. <productMenuURL version="1.1.1"
  4901. url="0"
  4902. />
  4903. </productMenu>
  4904. <productMenu id="waveIntercom"
  4905. type="1" >
  4906. <productMenuType version="1.3.9"
  4907. type="0"
  4908. />
  4909. </productMenu>
  4910. <productMenu id="bluetoothIntercom"
  4911. type="1" >
  4912. </productMenu>
  4913. <productMenu id="phone"
  4914. type="1" >
  4915. </productMenu>
  4916. <productMenu id="music"
  4917. type="1" >
  4918. </productMenu>
  4919. <productMenu id="fmradio"
  4920. type="1" >
  4921. </productMenu>
  4922. <productMenu id="deviceSetting"
  4923. type="1"
  4924. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4925. <productMenuURL version="1.3.9"
  4926. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4927. />
  4928. <productMenuURL version="1.1.1"
  4929. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4930. />
  4931. <productMenuURL version="1.0.4"
  4932. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4933. />
  4934. </productMenu>
  4935. <productMenu id="quickGuide"
  4936. type="0"
  4937. url=""
  4938. size="344KB" >
  4939. </productMenu>
  4940. <productMenu id="userGuide"
  4941. type="1"
  4942. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4943. size="3.41MB" >
  4944. </productMenu>
  4945. <productMenu id="connectGuide"
  4946. type="1"
  4947. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4948. size="1.12MB" >
  4949. </productMenu>
  4950. <productMenu id="volume"
  4951. type="11" >
  4952. </productMenu>
  4953. <productMenu id="battery"
  4954. type="1" >
  4955. </productMenu>
  4956. <productID id="3148"
  4957. />
  4958. <productGroupable type="0"
  4959. />
  4960. </product>
  4961. <product id="Impulse"
  4962. name="Impulse"
  4963. series="Helmet"
  4964. latestVersion="2.0"
  4965. show = "-1" >
  4966. <productMenu id="protocol"
  4967. type="2" >
  4968. </productMenu>
  4969. <productMenu id="alexa"
  4970. type="0" >
  4971. </productMenu>
  4972. <productMenu id="ota"
  4973. type="0" >
  4974. </productMenu>
  4975. <productMenu id="wa"
  4976. type="8" >
  4977. </productMenu>
  4978. <productMenu id="manager"
  4979. type="0" >
  4980. </productMenu>
  4981. <productMenu id="sip"
  4982. type="1" >
  4983. </productMenu>
  4984. <productMenu id="led"
  4985. type="3" >
  4986. </productMenu>
  4987. <productMenu id="meshIntercom"
  4988. type="20" >
  4989. </productMenu>
  4990. <productMenu id="bluetoothIntercom"
  4991. type="1" >
  4992. </productMenu>
  4993. <productMenu id="phone"
  4994. type="1" >
  4995. </productMenu>
  4996. <productMenu id="music"
  4997. type="1" >
  4998. </productMenu>
  4999. <productMenu id="fmradio"
  5000. type="1" >
  5001. </productMenu>
  5002. <productMenu id="deviceSetting"
  5003. type="1"
  5004. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  5005. </productMenu>
  5006. <productMenu id="quickGuide"
  5007. type="1"
  5008. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  5009. size="344KB" >
  5010. </productMenu>
  5011. <productMenu id="userGuide"
  5012. type="1"
  5013. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  5014. size="3.41MB" >
  5015. </productMenu>
  5016. <productMenu id="volume"
  5017. type="11" >
  5018. </productMenu>
  5019. <productMenu id="battery"
  5020. type="1" >
  5021. </productMenu>
  5022. <productID id="3221"
  5023. />
  5024. <productGroupable type="0"
  5025. />
  5026. </product>
  5027. <product id="Stryker"
  5028. name="Stryker"
  5029. series="Helmet"
  5030. latestVersion="1.4.1"
  5031. show = "1" >
  5032. <productMenu id="protocol"
  5033. type="2" >
  5034. </productMenu>
  5035. <productMenu id="alexa"
  5036. type="0" >
  5037. </productMenu>
  5038. <productMenu id="ota"
  5039. type="0" >
  5040. </productMenu>
  5041. <productMenu id="wa"
  5042. type="40" >
  5043. </productMenu>
  5044. <productMenu id="manager"
  5045. type="0" >
  5046. </productMenu>
  5047. <productMenu id="sip"
  5048. type="1" >
  5049. </productMenu>
  5050. <productMenu id="led"
  5051. type="1" >
  5052. <productMenuType version="1.0.1"
  5053. type="2"
  5054. />
  5055. <productMenuType version="1.0"
  5056. type="1"
  5057. />
  5058. </productMenu>
  5059. <productMenu id="meshIntercom"
  5060. type="30" >
  5061. <productMenuType version="1.1.1"
  5062. type="20"
  5063. />
  5064. </productMenu>
  5065. <productMenu id="meshIntercom+"
  5066. type="3"
  5067. url="2" >
  5068. <productMenuType version="1.3.9"
  5069. type="2"
  5070. />
  5071. <productMenuURL version="1.1.1"
  5072. url="0"
  5073. />
  5074. </productMenu>
  5075. <productMenu id="waveIntercom"
  5076. type="1" >
  5077. <productMenuType version="1.2.9"
  5078. type="0"
  5079. />
  5080. </productMenu>
  5081. <productMenu id="bluetoothIntercom"
  5082. type="1" >
  5083. </productMenu>
  5084. <productMenu id="phone"
  5085. type="1" >
  5086. </productMenu>
  5087. <productMenu id="music"
  5088. type="1" >
  5089. </productMenu>
  5090. <productMenu id="fmradio"
  5091. type="1" >
  5092. </productMenu>
  5093. <productMenu id="deviceSetting"
  5094. type="1"
  5095. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5096. <productMenuURL version="1.3.9"
  5097. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5098. />
  5099. <productMenuURL version="1.1.1"
  5100. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5101. />
  5102. <productMenuURL version="1.0.4"
  5103. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5104. />
  5105. </productMenu>
  5106. <productMenu id="quickGuide"
  5107. type="0"
  5108. url=""
  5109. size="344KB" >
  5110. </productMenu>
  5111. <productMenu id="userGuide"
  5112. type="1"
  5113. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5114. size="3.41MB" >
  5115. </productMenu>
  5116. <productMenu id="connectGuide"
  5117. type="1"
  5118. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5119. size="1.12MB" >
  5120. </productMenu>
  5121. <productMenu id="volume"
  5122. type="11" >
  5123. </productMenu>
  5124. <productMenu id="battery"
  5125. type="1" >
  5126. </productMenu>
  5127. <productID id="3154"
  5128. />
  5129. <productGroupable type="0"
  5130. />
  5131. </product>
  5132. <product id="SRL3Plus"
  5133. name="SRL3 Plus"
  5134. series="60"
  5135. latestVersion="0.9.5"
  5136. latestVersionMesh="0.19"
  5137. latestVersionVoicePrompt="1.2"
  5138. show = "-1" >
  5139. <productMenu id="protocol"
  5140. type="2" >
  5141. </productMenu>
  5142. <productMenu id="ota"
  5143. type="2" >
  5144. <otaLanguages>
  5145. <otaLanguage
  5146. id="0"
  5147. name="English"
  5148. package="0"
  5149. />
  5150. <otaLanguage
  5151. id="0"
  5152. name="French"
  5153. package="1"
  5154. />
  5155. <otaLanguage
  5156. id="0"
  5157. name="Spanish"
  5158. package="2"
  5159. />
  5160. <otaLanguage
  5161. id="0"
  5162. name="Italian"
  5163. package="3"
  5164. />
  5165. <otaLanguage
  5166. id="0"
  5167. name="German"
  5168. package="4"
  5169. />
  5170. <otaLanguage
  5171. id="0"
  5172. name="Dutch"
  5173. package="5"
  5174. />
  5175. <otaLanguage
  5176. id="0"
  5177. name="Russian"
  5178. package="6"
  5179. />
  5180. <otaLanguage
  5181. id="0"
  5182. name="Chinese"
  5183. package="7"
  5184. />
  5185. <otaLanguage
  5186. id="0"
  5187. name="Korean"
  5188. package="8"
  5189. />
  5190. <otaLanguage
  5191. id="0"
  5192. name="Japanese"
  5193. package="9"
  5194. />
  5195. <otaLanguage
  5196. id="0"
  5197. name="Finnish"
  5198. package="10"
  5199. />
  5200. </otaLanguages>
  5201. <otaPackages>
  5202. <package
  5203. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5204. size="5183988"
  5205. />
  5206. <package
  5207. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5208. size="5183988"
  5209. />
  5210. <package
  5211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5212. size="5183988"
  5213. />
  5214. <package
  5215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5216. size="5183988"
  5217. />
  5218. <package
  5219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5220. size="5183988"
  5221. />
  5222. <package
  5223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5224. size="5183988"
  5225. />
  5226. <package
  5227. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5228. size="5183988"
  5229. />
  5230. <package
  5231. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5232. size="5183988"
  5233. />
  5234. <package
  5235. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5236. size="5183988"
  5237. />
  5238. <package
  5239. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5240. size="5183988"
  5241. />
  5242. <package
  5243. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5244. size="5183988"
  5245. />
  5246. </otaPackages>
  5247. </productMenu>
  5248. <productMenu id="sip"
  5249. type="1" >
  5250. </productMenu>
  5251. <productMenu id="illusion"
  5252. type="1" >
  5253. </productMenu>
  5254. <productMenu id="meshIntercom+"
  5255. type="3"
  5256. url="2" >
  5257. </productMenu>
  5258. <productMenu id="waveIntercom"
  5259. type="1" >
  5260. </productMenu>
  5261. <productMenu id="bluetoothIntercom"
  5262. type="1"
  5263. url="2" >
  5264. </productMenu>
  5265. <productMenu id="bluetoothIntercomGrouping"
  5266. type="0" >
  5267. </productMenu>
  5268. <productMenu id="fmradio"
  5269. type="1"
  5270. url="1" >
  5271. </productMenu>
  5272. <productMenu id="phone"
  5273. type="1" >
  5274. </productMenu>
  5275. <productMenu id="music"
  5276. type="1" >
  5277. </productMenu>
  5278. <productMenu id="musicSharing"
  5279. type="0" >
  5280. </productMenu>
  5281. <productMenu id="deviceSetting"
  5282. type="1"
  5283. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5284. </productMenu>
  5285. <productMenu id="quickGuide"
  5286. type="0"
  5287. url=""
  5288. size="1.12MB" >
  5289. </productMenu>
  5290. <productMenu id="userGuide"
  5291. type="0"
  5292. url=""
  5293. size="2.0MB" >
  5294. </productMenu>
  5295. <productMenu id="videoGuide"
  5296. type="0"
  5297. url=""
  5298. size="3.41MB" >
  5299. </productMenu>
  5300. <productMenu id="volume"
  5301. type="16" >
  5302. </productMenu>
  5303. <productMenu id="soundMode"
  5304. type="1" >
  5305. </productMenu>
  5306. <productMenu id="battery"
  5307. type="1" >
  5308. </productMenu>
  5309. <productID id="6A08"
  5310. />
  5311. <productGroupable type="0"
  5312. />
  5313. </product>
  5314. <product id="SRL3"
  5315. name="SRL3"
  5316. series="SRL"
  5317. latestVersion="1.5"
  5318. show = "1" >
  5319. <productMenu id="protocol"
  5320. type="2" >
  5321. </productMenu>
  5322. <productMenu id="alexa"
  5323. type="0" >
  5324. </productMenu>
  5325. <productMenu id="ota"
  5326. type="0" >
  5327. </productMenu>
  5328. <productMenu id="wa"
  5329. type="1" >
  5330. </productMenu>
  5331. <productMenu id="sip"
  5332. type="1" >
  5333. </productMenu>
  5334. <productMenu id="meshIntercom"
  5335. type="30" >
  5336. </productMenu>
  5337. <productMenu id="meshIntercom+"
  5338. type="3"
  5339. url="2" >
  5340. <productMenuType version="1.3.9"
  5341. type="2"
  5342. />
  5343. </productMenu>
  5344. <productMenu id="waveIntercom"
  5345. type="1" >
  5346. <productMenuType version="1.4.9"
  5347. type="0"
  5348. />
  5349. </productMenu>
  5350. <productMenu id="bluetoothIntercom"
  5351. type="1" >
  5352. </productMenu>
  5353. <productMenu id="phone"
  5354. type="1" >
  5355. </productMenu>
  5356. <productMenu id="music"
  5357. type="1" >
  5358. </productMenu>
  5359. <productMenu id="fmradio"
  5360. type="1" >
  5361. </productMenu>
  5362. <productMenu id="deviceSetting"
  5363. type="1"
  5364. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5365. <productMenuURL version="1.3"
  5366. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5367. />
  5368. </productMenu>
  5369. <productMenu id="quickGuide"
  5370. type="0"
  5371. url=""
  5372. size="344KB" >
  5373. </productMenu>
  5374. <productMenu id="userGuide"
  5375. type="1"
  5376. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5377. size="3.41MB" >
  5378. </productMenu>
  5379. <productMenu id="connectGuide"
  5380. type="1"
  5381. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5382. size="1.12MB" >
  5383. </productMenu>
  5384. <productMenu id="volume"
  5385. type="11" >
  5386. </productMenu>
  5387. <productMenu id="battery"
  5388. type="1" >
  5389. </productMenu>
  5390. <productID id="3219"
  5391. />
  5392. <productGroupable type="0"
  5393. />
  5394. </product>
  5395. <product id="SRL_Mesh"
  5396. name="SRL-Mesh"
  5397. series="SRL"
  5398. latestVersion="1.7.1"
  5399. show = "1" >
  5400. <productMenu id="protocol"
  5401. type="2" >
  5402. </productMenu>
  5403. <productMenu id="alexa"
  5404. type="0" >
  5405. </productMenu>
  5406. <productMenu id="ota"
  5407. type="0" >
  5408. </productMenu>
  5409. <productMenu id="wa"
  5410. type="1" >
  5411. </productMenu>
  5412. <productMenu id="sip"
  5413. type="1" >
  5414. </productMenu>
  5415. <productMenu id="meshIntercom"
  5416. type="30" >
  5417. <productMenuType version="1.1.1"
  5418. type="20"
  5419. />
  5420. </productMenu>
  5421. <productMenu id="meshIntercom+"
  5422. type="3"
  5423. url="2" >
  5424. <productMenuType version="1.5.9"
  5425. type="2"
  5426. />
  5427. <productMenuURL version="1.1.1"
  5428. url="0"
  5429. />
  5430. </productMenu>
  5431. <productMenu id="waveIntercom"
  5432. type="1" >
  5433. <productMenuType version="1.6.9"
  5434. type="0"
  5435. />
  5436. </productMenu>
  5437. <productMenu id="bluetoothIntercom"
  5438. type="1" >
  5439. </productMenu>
  5440. <productMenu id="phone"
  5441. type="1" >
  5442. </productMenu>
  5443. <productMenu id="music"
  5444. type="1" >
  5445. </productMenu>
  5446. <productMenu id="fmradio"
  5447. type="1" >
  5448. </productMenu>
  5449. <productMenu id="deviceSetting"
  5450. type="1"
  5451. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5452. <productMenuURL version="1.5"
  5453. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5454. />
  5455. <productMenuURL version="1.1.1"
  5456. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5457. />
  5458. <productMenuURL version="1.0.3"
  5459. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5460. />
  5461. </productMenu>
  5462. <productMenu id="quickGuide"
  5463. type="0"
  5464. url=""
  5465. size="344KB" >
  5466. </productMenu>
  5467. <productMenu id="userGuide"
  5468. type="1"
  5469. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5470. size="3.41MB" >
  5471. </productMenu>
  5472. <productMenu id="connectGuide"
  5473. type="1"
  5474. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5475. size="1.12MB" >
  5476. </productMenu>
  5477. <productMenu id="volume"
  5478. type="11" >
  5479. </productMenu>
  5480. <productMenu id="battery"
  5481. type="1" >
  5482. </productMenu>
  5483. <productID id="3216"
  5484. />
  5485. <productGroupable type="0"
  5486. />
  5487. </product>
  5488. <product id="SRL_EXT"
  5489. name="SRL-EXT"
  5490. series="SRL"
  5491. latestVersion="1.7.1"
  5492. show = "1" >
  5493. <productMenu id="protocol"
  5494. type="2" >
  5495. </productMenu>
  5496. <productMenu id="alexa"
  5497. type="0" >
  5498. </productMenu>
  5499. <productMenu id="ota"
  5500. type="0" >
  5501. </productMenu>
  5502. <productMenu id="wa"
  5503. type="0" >
  5504. </productMenu>
  5505. <productMenu id="sip"
  5506. type="1" >
  5507. </productMenu>
  5508. <productMenu id="meshIntercom"
  5509. type="30" >
  5510. <productMenuType version="1.1.1"
  5511. type="20"
  5512. />
  5513. </productMenu>
  5514. <productMenu id="meshIntercom+"
  5515. type="3"
  5516. url="2" >
  5517. <productMenuType version="1.5.9"
  5518. type="2"
  5519. />
  5520. <productMenuURL version="1.1.1"
  5521. url="0"
  5522. />
  5523. </productMenu>
  5524. <productMenu id="waveIntercom"
  5525. type="1" >
  5526. <productMenuType version="1.6.9"
  5527. type="0"
  5528. />
  5529. </productMenu>
  5530. <productMenu id="bluetoothIntercom"
  5531. type="1" >
  5532. </productMenu>
  5533. <productMenu id="phone"
  5534. type="1" >
  5535. </productMenu>
  5536. <productMenu id="music"
  5537. type="1" >
  5538. </productMenu>
  5539. <productMenu id="fmradio"
  5540. type="1" >
  5541. </productMenu>
  5542. <productMenu id="deviceSetting"
  5543. type="1"
  5544. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5545. <productMenuURL version="1.5"
  5546. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5547. />
  5548. <productMenuURL version="1.1.1"
  5549. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5550. />
  5551. <productMenuURL version="1.0.3"
  5552. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5553. />
  5554. </productMenu>
  5555. <productMenu id="quickGuide"
  5556. type="0"
  5557. url=""
  5558. size="344KB" >
  5559. </productMenu>
  5560. <productMenu id="userGuide"
  5561. type="1"
  5562. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5563. size="3.41MB" >
  5564. </productMenu>
  5565. <productMenu id="connectGuide"
  5566. type="1"
  5567. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5568. size="1.12MB" >
  5569. </productMenu>
  5570. <productMenu id="volume"
  5571. type="11" >
  5572. </productMenu>
  5573. <productMenu id="battery"
  5574. type="1" >
  5575. </productMenu>
  5576. <productID id="3212"
  5577. />
  5578. <productGroupable type="0"
  5579. />
  5580. </product>
  5581. <product id="SRL2"
  5582. name="SRL2"
  5583. series="SRL"
  5584. latestVersion="1.0.9"
  5585. show = "1" >
  5586. <productMenu id="protocol"
  5587. type="0">
  5588. </productMenu>
  5589. <productMenu id="sip"
  5590. type="1" >
  5591. </productMenu>
  5592. <productMenu id="bluetoothIntercom"
  5593. type="1" >
  5594. </productMenu>
  5595. <productMenu id="intercomSetting"
  5596. type="1" >
  5597. </productMenu>
  5598. <productMenu id="phone"
  5599. type="2" >
  5600. </productMenu>
  5601. <productMenu id="fmradio"
  5602. type="3" >
  5603. </productMenu>
  5604. <productMenu id="deviceSetting"
  5605. type="1"
  5606. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5607. </productMenu>
  5608. <productMenu id="quickGuide"
  5609. type="1"
  5610. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5611. size="846KB" >
  5612. </productMenu>
  5613. <productMenu id="userGuide"
  5614. type="1"
  5615. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5616. size="1.18MB" >
  5617. </productMenu>
  5618. <productMenu id="connectGuide"
  5619. type="1"
  5620. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5621. size="1.12MB" >
  5622. </productMenu>
  5623. <productID id="4530"
  5624. />
  5625. <productGroupable type="1"
  5626. />
  5627. </product>
  5628. <product id="Neotec2"
  5629. name="SRL Neotec2"
  5630. series="SRL"
  5631. latestVersion="1.1.5"
  5632. show = "1" >
  5633. <productMenu id="protocol"
  5634. type="0">
  5635. </productMenu>
  5636. <productMenu id="sip"
  5637. type="1" >
  5638. </productMenu>
  5639. <productMenu id="bluetoothIntercom"
  5640. type="1" >
  5641. </productMenu>
  5642. <productMenu id="intercomSetting"
  5643. type="1" >
  5644. </productMenu>
  5645. <productMenu id="phone"
  5646. type="2" >
  5647. </productMenu>
  5648. <productMenu id="fmradio"
  5649. type="3" >
  5650. </productMenu>
  5651. <productMenu id="deviceSetting"
  5652. type="1"
  5653. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5654. </productMenu>
  5655. <productMenu id="quickGuide"
  5656. type="0"
  5657. url=""
  5658. size="796KB" >
  5659. </productMenu>
  5660. <productMenu id="userGuide"
  5661. type="1"
  5662. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5663. size="1.90MB" >
  5664. </productMenu>
  5665. <productMenu id="connectGuide"
  5666. type="1"
  5667. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5668. size="1.12MB" >
  5669. </productMenu>
  5670. <productID id="4510"
  5671. />
  5672. <productGroupable type="1"
  5673. />
  5674. </product>
  5675. <product id="SPIDERST2ANC"
  5676. name="SPIDER ST2 ANC"
  5677. series="SPIDER"
  5678. latestVersion="0.5.1"
  5679. latestVersionVoicePrompt="0.2"
  5680. latestVersionMesh="0.8"
  5681. show = "-1" >
  5682. <productMenu id="protocol"
  5683. type="2" >
  5684. </productMenu>
  5685. <productMenu id="ota"
  5686. type="0" >
  5687. <otaPackages>
  5688. <package
  5689. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5690. size="2945812"
  5691. />
  5692. </otaPackages>
  5693. </productMenu>
  5694. <productMenu id="wa"
  5695. type="0" >
  5696. </productMenu>
  5697. <productMenu id="led"
  5698. type="1" >
  5699. </productMenu>
  5700. <productMenu id="meshIntercom"
  5701. type="30" >
  5702. </productMenu>
  5703. <productMenu id="fmradio"
  5704. type="1" >
  5705. </productMenu>
  5706. <productMenu id="phone"
  5707. type="1" >
  5708. </productMenu>
  5709. <productMenu id="music"
  5710. type="1" >
  5711. </productMenu>
  5712. <productMenu id="musicSharing"
  5713. type="0" >
  5714. </productMenu>
  5715. <productMenu id="deviceSetting"
  5716. type="1"
  5717. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5718. </productMenu>
  5719. <productMenu id="quickGuide"
  5720. type="1"
  5721. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5722. size="1.12MB" >
  5723. </productMenu>
  5724. <productMenu id="userGuide"
  5725. type="1"
  5726. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5727. size="2.0MB" >
  5728. </productMenu>
  5729. <productMenu id="videoGuide"
  5730. type="1"
  5731. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5732. size="3.41MB" >
  5733. </productMenu>
  5734. <productMenu id="volume"
  5735. type="12" >
  5736. </productMenu>
  5737. <productMenu id="battery"
  5738. type="1" >
  5739. </productMenu>
  5740. <productID id="6A00"
  5741. />
  5742. <productGroupable type="0"
  5743. />
  5744. </product>
  5745. <product id="SPIDER_ST1"
  5746. name="SPIDER ST1"
  5747. series="SPIDER"
  5748. latestVersion="2.5.2"
  5749. latestVersionVoicePrompt="1.6"
  5750. show = "1" >
  5751. <productMenu id="protocol"
  5752. type="2" >
  5753. </productMenu>
  5754. <productMenu id="alexa"
  5755. type="0" >
  5756. </productMenu>
  5757. <productMenu id="ota"
  5758. type="2" >
  5759. <productMenuType version="2.1.9"
  5760. type="0"
  5761. />
  5762. <otaPackages>
  5763. <package
  5764. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_ST1-v2.5.2-build1.img"
  5765. size="2945812"
  5766. />
  5767. </otaPackages>
  5768. </productMenu>
  5769. <productMenu id="wa"
  5770. type="0" >
  5771. </productMenu>
  5772. <productMenu id="meshIntercom"
  5773. type="30" >
  5774. <productMenuType version="2.1.1"
  5775. type="20"
  5776. />
  5777. </productMenu>
  5778. <productMenu id="meshIntercom+"
  5779. type="3"
  5780. url="2" >
  5781. <productMenuType version="2.2.9"
  5782. type="2"
  5783. />
  5784. <productMenuURL version="2.1.1"
  5785. url="0"
  5786. />
  5787. </productMenu>
  5788. <productMenu id="waveIntercom"
  5789. type="1" >
  5790. <productMenuType version="2.3.9"
  5791. type="0"
  5792. />
  5793. </productMenu>
  5794. <productMenu id="phone"
  5795. type="1" >
  5796. </productMenu>
  5797. <productMenu id="music"
  5798. type="1" >
  5799. </productMenu>
  5800. <productMenu id="musicSharing"
  5801. type="0" >
  5802. </productMenu>
  5803. <productMenu id="deviceSetting"
  5804. type="1"
  5805. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5806. <productMenuURL version="2.4.9"
  5807. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5808. />
  5809. <productMenuURL version="2.2.2"
  5810. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5811. />
  5812. <productMenuURL version="2.1.1"
  5813. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5814. />
  5815. </productMenu>
  5816. <productMenu id="quickGuide"
  5817. type="0"
  5818. url=""
  5819. size="1.12MB" >
  5820. </productMenu>
  5821. <productMenu id="userGuide"
  5822. type="1"
  5823. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5824. size="2.0MB" >
  5825. </productMenu>
  5826. <productMenu id="videoGuide"
  5827. type="1"
  5828. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5829. size="3.41MB" >
  5830. </productMenu>
  5831. <productMenu id="connectGuide"
  5832. type="1"
  5833. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5834. size="1.12MB" >
  5835. </productMenu>
  5836. <productMenu id="volume"
  5837. type="12" >
  5838. </productMenu>
  5839. <productMenu id="battery"
  5840. type="1" >
  5841. </productMenu>
  5842. <productID id="6800"
  5843. />
  5844. <productGroupable type="0"
  5845. />
  5846. </product>
  5847. <product id="SPIDER_ST1"
  5848. name="SPIDER ST1"
  5849. series="SPIDER"
  5850. latestVersion="1.2.2"
  5851. show = "-1" >
  5852. <productMenu id="protocol"
  5853. type="2" >
  5854. </productMenu>
  5855. <productMenu id="alexa"
  5856. type="0" >
  5857. </productMenu>
  5858. <productMenu id="ota"
  5859. type="0" >
  5860. </productMenu>
  5861. <productMenu id="wa"
  5862. type="0" >
  5863. </productMenu>
  5864. <productMenu id="meshIntercom"
  5865. type="20" >
  5866. </productMenu>
  5867. <productMenu id="phone"
  5868. type="1" >
  5869. </productMenu>
  5870. <productMenu id="music"
  5871. type="1" >
  5872. </productMenu>
  5873. <productMenu id="deviceSetting"
  5874. type="1"
  5875. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5876. </productMenu>
  5877. <productMenu id="quickGuide"
  5878. type="0"
  5879. url=""
  5880. size="1.12MB" >
  5881. </productMenu>
  5882. <productMenu id="userGuide"
  5883. type="1"
  5884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5885. size="2.0MB" >
  5886. </productMenu>
  5887. <productMenu id="videoGuide"
  5888. type="1"
  5889. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5890. size="3.41MB" >
  5891. </productMenu>
  5892. <productMenu id="volume"
  5893. type="13" >
  5894. <productMenuType version="1.1.6"
  5895. type="14"/>
  5896. </productMenu>
  5897. <productMenu id="battery"
  5898. type="1" >
  5899. </productMenu>
  5900. <productID id="6510"
  5901. />
  5902. <productGroupable type="0"
  5903. />
  5904. </product>
  5905. <product id="SPIDER_RT1"
  5906. name="SPIDER RT1"
  5907. series="SPIDER"
  5908. latestVersion="2.5.2"
  5909. latestVersionVoicePrompt="1.6"
  5910. show = "1" >
  5911. <productMenu id="protocol"
  5912. type="2" >
  5913. </productMenu>
  5914. <productMenu id="alexa"
  5915. type="0" >
  5916. </productMenu>
  5917. <productMenu id="ota"
  5918. type="2" >
  5919. <productMenuType version="2.1.9"
  5920. type="0"
  5921. />
  5922. <otaPackages>
  5923. <package
  5924. url="https://api.sena.com/support/OTA/Motorcycles/SPIDER/SPIDER_RT1-v2.5.2-build1.img"
  5925. size="2945812"
  5926. />
  5927. </otaPackages>
  5928. </productMenu>
  5929. <productMenu id="wa"
  5930. type="0" >
  5931. </productMenu>
  5932. <productMenu id="meshIntercom"
  5933. type="30" >
  5934. <productMenuType version="2.1.1"
  5935. type="20"
  5936. />
  5937. </productMenu>
  5938. <productMenu id="meshIntercom+"
  5939. type="3"
  5940. url="2" >
  5941. <productMenuType version="2.2.9"
  5942. type="2"
  5943. />
  5944. <productMenuURL version="2.1.1"
  5945. url="0"
  5946. />
  5947. </productMenu>
  5948. <productMenu id="waveIntercom"
  5949. type="1" >
  5950. <productMenuType version="2.3.9"
  5951. type="0"
  5952. />
  5953. </productMenu>
  5954. <productMenu id="phone"
  5955. type="1" >
  5956. </productMenu>
  5957. <productMenu id="music"
  5958. type="1" >
  5959. </productMenu>
  5960. <productMenu id="musicSharing"
  5961. type="0" >
  5962. </productMenu>
  5963. <productMenu id="deviceSetting"
  5964. type="1"
  5965. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5966. <productMenuURL version="2.4.9"
  5967. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5968. />
  5969. <productMenuURL version="2.2.2"
  5970. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5971. />
  5972. <productMenuURL version="2.1.1"
  5973. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5974. />
  5975. </productMenu>
  5976. <productMenu id="quickGuide"
  5977. type="0"
  5978. url=""
  5979. size="1.12MB" >
  5980. </productMenu>
  5981. <productMenu id="userGuide"
  5982. type="1"
  5983. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5984. size="2.0MB" >
  5985. </productMenu>
  5986. <productMenu id="videoGuide"
  5987. type="1"
  5988. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5989. size="3.41MB" >
  5990. </productMenu>
  5991. <productMenu id="connectGuide"
  5992. type="1"
  5993. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5994. size="1.12MB" >
  5995. </productMenu>
  5996. <productMenu id="volume"
  5997. type="12" >
  5998. </productMenu>
  5999. <productMenu id="battery"
  6000. type="1" >
  6001. </productMenu>
  6002. <productID id="6810"
  6003. />
  6004. <productGroupable type="0"
  6005. />
  6006. </product>
  6007. <product id="SPIDER_RT1"
  6008. name="SPIDER RT1"
  6009. series="SPIDER"
  6010. latestVersion="1.2.2"
  6011. show = "-1" >
  6012. <productMenu id="protocol"
  6013. type="2" >
  6014. </productMenu>
  6015. <productMenu id="alexa"
  6016. type="0" >
  6017. </productMenu>
  6018. <productMenu id="ota"
  6019. type="0" >
  6020. </productMenu>
  6021. <productMenu id="wa"
  6022. type="0" >
  6023. </productMenu>
  6024. <productMenu id="meshIntercom"
  6025. type="20" >
  6026. </productMenu>
  6027. <productMenu id="phone"
  6028. type="1" >
  6029. </productMenu>
  6030. <productMenu id="music"
  6031. type="1" >
  6032. </productMenu>
  6033. <productMenu id="deviceSetting"
  6034. type="1"
  6035. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6036. </productMenu>
  6037. <productMenu id="quickGuide"
  6038. type="0"
  6039. url=""
  6040. size="1.32MB" >
  6041. </productMenu>
  6042. <productMenu id="userGuide"
  6043. type="1"
  6044. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6045. size="1.79MB" >
  6046. </productMenu>
  6047. <productMenu id="videoGuide"
  6048. type="1"
  6049. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6050. size="3.41MB" >
  6051. </productMenu>
  6052. <productMenu id="volume"
  6053. type="13" >
  6054. <productMenuType version="1.1.6"
  6055. type="14"/>
  6056. </productMenu>
  6057. <productMenu id="battery"
  6058. type="1" >
  6059. </productMenu>
  6060. <productID id="6500"
  6061. />
  6062. <productGroupable type="0"
  6063. />
  6064. </product>
  6065. <product id="30K"
  6066. name="30K"
  6067. series="30"
  6068. latestVersion="4.5.1"
  6069. show = "1" >
  6070. <productMenu id="protocol"
  6071. type="2" >
  6072. </productMenu>
  6073. <productMenu id="alexa"
  6074. type="0" >
  6075. </productMenu>
  6076. <productMenu id="wa"
  6077. type="1" >
  6078. </productMenu>
  6079. <productMenu id="sip"
  6080. type="1" >
  6081. </productMenu>
  6082. <productMenu id="meshIntercom"
  6083. type="30" >
  6084. <productMenuType version="4.0.4"
  6085. type="20"
  6086. />
  6087. </productMenu>
  6088. <productMenu id="meshIntercom+"
  6089. type="3"
  6090. url="2" >
  6091. <productMenuType version="4.3.9"
  6092. type="2"
  6093. />
  6094. <productMenuURL version="4.0.4"
  6095. url="0"
  6096. />
  6097. </productMenu>
  6098. <productMenu id="waveIntercom"
  6099. type="1" >
  6100. <productMenuType version="4.4.9"
  6101. type="0"
  6102. />
  6103. </productMenu>
  6104. <productMenu id="bluetoothIntercom"
  6105. type="1" >
  6106. </productMenu>
  6107. <productMenu id="phone"
  6108. type="1" >
  6109. </productMenu>
  6110. <productMenu id="music"
  6111. type="1" >
  6112. </productMenu>
  6113. <productMenu id="fmradio"
  6114. type="1" >
  6115. </productMenu>
  6116. <productMenu id="deviceSetting"
  6117. type="1"
  6118. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6119. <productMenuURL version="4.3"
  6120. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6121. />
  6122. <productMenuURL version="4.2"
  6123. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6124. />
  6125. <productMenuURL version="4.0.4"
  6126. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6127. />
  6128. </productMenu>
  6129. <productMenu id="quickGuide"
  6130. type="0"
  6131. url=""
  6132. size="934KB" >
  6133. </productMenu>
  6134. <productMenu id="userGuide"
  6135. type="1"
  6136. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6137. size="1.14MB" >
  6138. </productMenu>
  6139. <productMenu id="connectGuide"
  6140. type="1"
  6141. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6142. size="1.12MB" >
  6143. </productMenu>
  6144. <productMenu id="volume"
  6145. type="11" >
  6146. </productMenu>
  6147. <productMenu id="battery"
  6148. type="1" >
  6149. </productMenu>
  6150. <productID id="3211"
  6151. />
  6152. <productGroupable type="0"
  6153. />
  6154. </product>
  6155. <product id="30K"
  6156. name="30K"
  6157. series="30"
  6158. latestVersion="3.5"
  6159. show = "-1" >
  6160. <productMenu id="protocol"
  6161. type="1"
  6162. url="0">
  6163. </productMenu>
  6164. <productMenu id="wa"
  6165. type="7" >
  6166. </productMenu>
  6167. <productMenu id="sip"
  6168. type="1" >
  6169. </productMenu>
  6170. <productMenu id="meshIntercom"
  6171. type="20" >
  6172. <productMenuType version="2.9.9"
  6173. type="10"
  6174. />
  6175. </productMenu>
  6176. <productMenu id="meshIntercom+"
  6177. type="3"
  6178. url="2" >
  6179. <productMenuType version="3.4.9"
  6180. type="2"
  6181. />
  6182. <productMenuType version="2.9.9"
  6183. type="1"
  6184. />
  6185. <productMenuURL version="3.3.1"
  6186. url="0"
  6187. />
  6188. </productMenu>
  6189. <productMenu id="bluetoothIntercom"
  6190. type="1" >
  6191. </productMenu>
  6192. <productMenu id="phone"
  6193. type="1" >
  6194. </productMenu>
  6195. <productMenu id="music"
  6196. type="1" >
  6197. </productMenu>
  6198. <productMenu id="fmradio"
  6199. type="1" >
  6200. </productMenu>
  6201. <productMenu id="deviceSetting"
  6202. type="1"
  6203. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6204. <productMenuURL version="3.4.9"
  6205. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6206. />
  6207. <productMenuURL version="3.3.1"
  6208. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6209. />
  6210. <productMenuURL version="3.0.1"
  6211. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6212. />
  6213. <productMenuURL version="2.3.1"
  6214. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6215. />
  6216. <productMenuURL version="2.0"
  6217. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6218. />
  6219. <productMenuURL version="1.0.3"
  6220. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6221. />
  6222. </productMenu>
  6223. <productMenu id="quickGuide"
  6224. type="0"
  6225. url=""
  6226. size="1.06MB" >
  6227. </productMenu>
  6228. <productMenu id="userGuide"
  6229. type="1"
  6230. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6231. size="3.15MB" >
  6232. </productMenu>
  6233. <productMenu id="volume"
  6234. type="1" >
  6235. </productMenu>
  6236. <productID id="3110"
  6237. />
  6238. <productGroupable type="0"
  6239. />
  6240. </product>
  6241. <product id="FURY"
  6242. name="FURY"
  6243. series="Helmet"
  6244. latestVersion="1.0"
  6245. show = "-1" >
  6246. <productMenu id="protocol"
  6247. type="2" >
  6248. </productMenu>
  6249. <productMenu id="alexa"
  6250. type="0" >
  6251. </productMenu>
  6252. <productMenu id="ota"
  6253. type="0" >
  6254. </productMenu>
  6255. <productMenu id="wa"
  6256. type="0" >
  6257. </productMenu>
  6258. <productMenu id="meshIntercom"
  6259. type="20" >
  6260. </productMenu>
  6261. <productMenu id="phone"
  6262. type="1" >
  6263. </productMenu>
  6264. <productMenu id="music"
  6265. type="1" >
  6266. </productMenu>
  6267. <productMenu id="fmradio"
  6268. type="1" >
  6269. </productMenu>
  6270. <productMenu id="deviceSetting"
  6271. type="1"
  6272. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6273. </productMenu>
  6274. <productMenu id="quickGuide"
  6275. type="1"
  6276. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6277. size="1.12MB" >
  6278. </productMenu>
  6279. <productMenu id="userGuide"
  6280. type="1"
  6281. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6282. size="2.0MB" >
  6283. </productMenu>
  6284. <productMenu id="volume"
  6285. type="13" >
  6286. </productMenu>
  6287. <productMenu id="battery"
  6288. type="1" >
  6289. </productMenu>
  6290. <productID id="5552"
  6291. />
  6292. <productGroupable type="0"
  6293. />
  6294. </product>
  6295. <product id="MomentumM"
  6296. name="Momentum EVO"
  6297. series="Helmet"
  6298. latestVersion="2.1.2"
  6299. show = "1" >
  6300. <productMenu id="protocol"
  6301. type="1"
  6302. url="0">
  6303. </productMenu>
  6304. <productMenu id="wa"
  6305. type="3" >
  6306. </productMenu>
  6307. <productMenu id="sip"
  6308. type="1" >
  6309. </productMenu>
  6310. <productMenu id="meshIntercom"
  6311. type="20" >
  6312. <productMenuType version="1.9.9"
  6313. type="10"
  6314. />
  6315. </productMenu>
  6316. <productMenu id="bluetoothIntercom"
  6317. type="1" >
  6318. </productMenu>
  6319. <productMenu id="phone"
  6320. type="1" >
  6321. </productMenu>
  6322. <productMenu id="music"
  6323. type="1" >
  6324. </productMenu>
  6325. <productMenu id="fmradio"
  6326. type="1" >
  6327. </productMenu>
  6328. <productMenu id="deviceSetting"
  6329. type="1"
  6330. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6331. <productMenuURL version="1.0.1"
  6332. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6333. />
  6334. </productMenu>
  6335. <productMenu id="quickGuide"
  6336. type="1"
  6337. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6338. size="1.06MB" >
  6339. </productMenu>
  6340. <productMenu id="userGuide"
  6341. type="1"
  6342. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6343. size="3.15MB" >
  6344. </productMenu>
  6345. <productMenu id="connectGuide"
  6346. type="1"
  6347. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6348. size="1.12MB" >
  6349. </productMenu>
  6350. <productMenu id="volume"
  6351. type="2" >
  6352. </productMenu>
  6353. <productID id="3116"
  6354. />
  6355. <productGroupable type="0"
  6356. />
  6357. </product>
  6358. <product id="Momentum"
  6359. name="Momentum"
  6360. series="Helmet"
  6361. latestVersion="1.0.9"
  6362. show = "1" >
  6363. <productMenu id="protocol"
  6364. type="0">
  6365. </productMenu>
  6366. <productMenu id="sip"
  6367. type="1" >
  6368. </productMenu>
  6369. <productMenu id="bluetoothIntercom"
  6370. type="1" >
  6371. </productMenu>
  6372. <productMenu id="intercomSetting"
  6373. type="1" >
  6374. </productMenu>
  6375. <productMenu id="phone"
  6376. type="2" >
  6377. </productMenu>
  6378. <productMenu id="fmradio"
  6379. type="3" >
  6380. </productMenu>
  6381. <productMenu id="deviceSetting"
  6382. type="1"
  6383. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6384. </productMenu>
  6385. <productMenu id="quickGuide"
  6386. type="1"
  6387. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6388. size="796KB" >
  6389. </productMenu>
  6390. <productMenu id="userGuide"
  6391. type="1"
  6392. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6393. size="1.90MB" >
  6394. </productMenu>
  6395. <productMenu id="connectGuide"
  6396. type="1"
  6397. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6398. size="1.12MB" >
  6399. </productMenu>
  6400. <productID id="4310"
  6401. />
  6402. <productGroupable type="1"
  6403. />
  6404. </product>
  6405. <product id="Momentum_Pro"
  6406. name="Momentum Pro"
  6407. series="Helmet"
  6408. latestVersion="1.0.6"
  6409. show = "1" >
  6410. <productMenu id="protocol"
  6411. type="0">
  6412. </productMenu>
  6413. <productMenu id="sip"
  6414. type="1" >
  6415. </productMenu>
  6416. <productMenu id="bluetoothIntercom"
  6417. type="1" >
  6418. </productMenu>
  6419. <productMenu id="intercomSetting"
  6420. type="1" >
  6421. </productMenu>
  6422. <productMenu id="phone"
  6423. type="2" >
  6424. </productMenu>
  6425. <productMenu id="fmradio"
  6426. type="3" >
  6427. </productMenu>
  6428. <productMenu id="deviceSetting"
  6429. type="1"
  6430. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6431. </productMenu>
  6432. <productMenu id="quickGuide"
  6433. type="1"
  6434. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6435. size="796KB" >
  6436. </productMenu>
  6437. <productMenu id="userGuide"
  6438. type="1"
  6439. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6440. size="1.90MB" >
  6441. </productMenu>
  6442. <productMenu id="connectGuide"
  6443. type="1"
  6444. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6445. size="1.12MB" >
  6446. </productMenu>
  6447. <productID id="4330"
  6448. />
  6449. <productGroupable type="1"
  6450. />
  6451. </product>
  6452. <product id="Momentum_INC"
  6453. name="Momentum INC"
  6454. series="Helmet"
  6455. latestVersion="1.0.7"
  6456. show = "1" >
  6457. <productMenu id="protocol"
  6458. type="0">
  6459. </productMenu>
  6460. <productMenu id="sip"
  6461. type="1" >
  6462. </productMenu>
  6463. <productMenu id="bluetoothIntercom"
  6464. type="1" >
  6465. </productMenu>
  6466. <productMenu id="intercomSetting"
  6467. type="1" >
  6468. </productMenu>
  6469. <productMenu id="phone"
  6470. type="2" >
  6471. </productMenu>
  6472. <productMenu id="fmradio"
  6473. type="3" >
  6474. </productMenu>
  6475. <productMenu id="deviceSetting"
  6476. type="1"
  6477. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6478. </productMenu>
  6479. <productMenu id="quickGuide"
  6480. type="1"
  6481. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6482. size="794KB" >
  6483. </productMenu>
  6484. <productMenu id="userGuide"
  6485. type="1"
  6486. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6487. size="1.53MB" >
  6488. </productMenu>
  6489. <productMenu id="connectGuide"
  6490. type="1"
  6491. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6492. size="1.12MB" >
  6493. </productMenu>
  6494. <productID id="4410"
  6495. />
  6496. <productGroupable type="1"
  6497. />
  6498. </product>
  6499. <product id="Momentum_INCP"
  6500. name="Momentum INC Pro"
  6501. series="Helmet"
  6502. latestVersion="1.0.4"
  6503. show = "1" >
  6504. <productMenu id="protocol"
  6505. type="0">
  6506. </productMenu>
  6507. <productMenu id="sip"
  6508. type="1" >
  6509. </productMenu>
  6510. <productMenu id="bluetoothIntercom"
  6511. type="1" >
  6512. </productMenu>
  6513. <productMenu id="intercomSetting"
  6514. type="1" >
  6515. </productMenu>
  6516. <productMenu id="phone"
  6517. type="2" >
  6518. </productMenu>
  6519. <productMenu id="fmradio"
  6520. type="3" >
  6521. </productMenu>
  6522. <productMenu id="deviceSetting"
  6523. type="1"
  6524. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6525. </productMenu>
  6526. <productMenu id="quickGuide"
  6527. type="1"
  6528. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6529. size="794KB" >
  6530. </productMenu>
  6531. <productMenu id="userGuide"
  6532. type="1"
  6533. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6534. size="1.53MB" >
  6535. </productMenu>
  6536. <productMenu id="connectGuide"
  6537. type="1"
  6538. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6539. size="1.12MB" >
  6540. </productMenu>
  6541. <productID id="4430"
  6542. />
  6543. <productGroupable type="1"
  6544. />
  6545. </product>
  6546. <product id="Momentum_Lite"
  6547. name="Momentum Lite"
  6548. series="Helmet"
  6549. latestVersion="2.0.3"
  6550. show = "1" >
  6551. <productMenu id="protocol"
  6552. type="0">
  6553. </productMenu>
  6554. <productMenu id="sip"
  6555. type="1" >
  6556. </productMenu>
  6557. <productMenu id="bluetoothIntercom"
  6558. type="1" >
  6559. </productMenu>
  6560. <productMenu id="phone"
  6561. type="2" >
  6562. </productMenu>
  6563. <productMenu id="fmradio"
  6564. type="3" >
  6565. </productMenu>
  6566. <productMenu id="deviceSetting"
  6567. type="1"
  6568. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6569. <productMenuURL version="1.1"
  6570. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6571. />
  6572. </productMenu>
  6573. <productMenu id="quickGuide"
  6574. type="1"
  6575. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6576. size="790KB" >
  6577. </productMenu>
  6578. <productMenu id="userGuide"
  6579. type="1"
  6580. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6581. size="1.42MB" >
  6582. </productMenu>
  6583. <productMenu id="connectGuide"
  6584. type="1"
  6585. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6586. size="1.12MB" >
  6587. </productMenu>
  6588. <productID id="5526"
  6589. />
  6590. <productGroupable type="0"
  6591. />
  6592. </product>
  6593. <product id="OUTRUSHM"
  6594. name="OUTRUSH M"
  6595. series="Helmet"
  6596. latestVersion="1.0"
  6597. show = "-1" >
  6598. <productMenu id="protocol"
  6599. type="2" >
  6600. </productMenu>
  6601. <productMenu id="alexa"
  6602. type="0" >
  6603. </productMenu>
  6604. <productMenu id="ota"
  6605. type="0" >
  6606. </productMenu>
  6607. <productMenu id="wa"
  6608. type="0" >
  6609. </productMenu>
  6610. <productMenu id="meshIntercom"
  6611. type="30" >
  6612. </productMenu>
  6613. <productMenu id="phone"
  6614. type="1" >
  6615. </productMenu>
  6616. <productMenu id="music"
  6617. type="1" >
  6618. </productMenu>
  6619. <productMenu id="fmradio"
  6620. type="1" >
  6621. </productMenu>
  6622. <productMenu id="deviceSetting"
  6623. type="1"
  6624. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6625. </productMenu>
  6626. <productMenu id="quickGuide"
  6627. type="1"
  6628. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6629. size="1.12MB" >
  6630. </productMenu>
  6631. <productMenu id="userGuide"
  6632. type="1"
  6633. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6634. size="2.0MB" >
  6635. </productMenu>
  6636. <productMenu id="volume"
  6637. type="13" >
  6638. </productMenu>
  6639. <productMenu id="battery"
  6640. type="1" >
  6641. </productMenu>
  6642. <productID id="5600"
  6643. />
  6644. <productGroupable type="0"
  6645. />
  6646. </product>
  6647. <product id="ProRideEVO"
  6648. name="ProRide EVO"
  6649. series="Helmet"
  6650. latestVersion="1.1.2"
  6651. show = "1" >
  6652. <productMenu id="protocol"
  6653. type="0">
  6654. </productMenu>
  6655. <productMenu id="sip"
  6656. type="1" >
  6657. </productMenu>
  6658. <productMenu id="bluetoothIntercom"
  6659. type="1" >
  6660. </productMenu>
  6661. <productMenu id="phone"
  6662. type="2" >
  6663. </productMenu>
  6664. <productMenu id="fmradio"
  6665. type="3" >
  6666. </productMenu>
  6667. <productMenu id="deviceSetting"
  6668. type="1"
  6669. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6670. </productMenu>
  6671. <productMenu id="userGuide"
  6672. type="1"
  6673. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6674. size="778KB" >
  6675. </productMenu>
  6676. <productMenu id="connectGuide"
  6677. type="1"
  6678. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6679. size="1.12MB" >
  6680. </productMenu>
  6681. <productID id="5426"
  6682. />
  6683. <productGroupable type="0"
  6684. />
  6685. </product>
  6686. <product id="OUTRUSHR"
  6687. name="OUTRUSH R"
  6688. series="Helmet"
  6689. latestVersion="2.1"
  6690. show = "1" >
  6691. <productMenu id="protocol"
  6692. type="3" >
  6693. </productMenu>
  6694. <productMenu id="sip"
  6695. type="1" >
  6696. </productMenu>
  6697. <productMenu id="bluetoothIntercom"
  6698. type="1" >
  6699. </productMenu>
  6700. <productMenu id="phone"
  6701. type="1" >
  6702. </productMenu>
  6703. <productMenu id="fmradio"
  6704. type="0" >
  6705. </productMenu>
  6706. <productMenu id="deviceSetting"
  6707. type="1"
  6708. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6709. </productMenu>
  6710. <productMenu id="userGuide"
  6711. type="1"
  6712. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6713. size="1.14MB" >
  6714. </productMenu>
  6715. <productMenu id="connectGuide"
  6716. type="1"
  6717. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6718. size="1.12MB" >
  6719. </productMenu>
  6720. <productID id="5440"
  6721. />
  6722. <productGroupable type="0"
  6723. />
  6724. </product>
  6725. <product id="OUTRUSHR"
  6726. name="OUTRUSH R"
  6727. series="Helmet"
  6728. latestVersion="1.1.4"
  6729. show = "-1" >
  6730. <productMenu id="protocol"
  6731. type="0">
  6732. </productMenu>
  6733. <productMenu id="sip"
  6734. type="1" >
  6735. </productMenu>
  6736. <productMenu id="bluetoothIntercom"
  6737. type="1" >
  6738. </productMenu>
  6739. <productMenu id="phone"
  6740. type="2" >
  6741. </productMenu>
  6742. <productMenu id="fmradio"
  6743. type="3" >
  6744. </productMenu>
  6745. <productMenu id="deviceSetting"
  6746. type="1"
  6747. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6748. </productMenu>
  6749. <productMenu id="userGuide"
  6750. type="1"
  6751. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6752. size="660KB" >
  6753. </productMenu>
  6754. <productMenu id="connectGuide"
  6755. type="1"
  6756. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6757. size="1.12MB" >
  6758. </productMenu>
  6759. <productID id="5424"
  6760. />
  6761. <productGroupable type="0"
  6762. />
  6763. </product>
  6764. <product id="OUTSTARS"
  6765. name="OUTSTAR S"
  6766. series="Helmet"
  6767. latestVersion="2.0.1"
  6768. show = "-1" >
  6769. <productMenu id="protocol"
  6770. type="3" >
  6771. </productMenu>
  6772. <productMenu id="sip"
  6773. type="1" >
  6774. </productMenu>
  6775. <productMenu id="bluetoothIntercom"
  6776. type="1" >
  6777. </productMenu>
  6778. <productMenu id="phone"
  6779. type="1" >
  6780. </productMenu>
  6781. <productMenu id="fmradio"
  6782. type="0" >
  6783. </productMenu>
  6784. <productMenu id="deviceSetting"
  6785. type="1"
  6786. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6787. </productMenu>
  6788. <productMenu id="userGuide"
  6789. type="0"
  6790. url=""
  6791. size="1.14MB" >
  6792. </productMenu>
  6793. <productID id="5443"
  6794. />
  6795. <productGroupable type="0"
  6796. />
  6797. </product>
  6798. <product id="OUTSTARS"
  6799. name="OUTSTAR S"
  6800. series="Helmet"
  6801. latestVersion="1.1.4"
  6802. show = "1" >
  6803. <productMenu id="protocol"
  6804. type="0">
  6805. </productMenu>
  6806. <productMenu id="sip"
  6807. type="1" >
  6808. </productMenu>
  6809. <productMenu id="bluetoothIntercom"
  6810. type="1" >
  6811. </productMenu>
  6812. <productMenu id="phone"
  6813. type="2" >
  6814. </productMenu>
  6815. <productMenu id="fmradio"
  6816. type="3" >
  6817. </productMenu>
  6818. <productMenu id="deviceSetting"
  6819. type="1"
  6820. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6821. </productMenu>
  6822. <productMenu id="quickGuide"
  6823. type="1"
  6824. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6825. size="643KB" >
  6826. </productMenu>
  6827. <productMenu id="userGuide"
  6828. type="1"
  6829. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6830. size="1.15MB" >
  6831. </productMenu>
  6832. <productMenu id="connectGuide"
  6833. type="1"
  6834. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6835. size="1.12MB" >
  6836. </productMenu>
  6837. <productID id="5428"
  6838. />
  6839. <productGroupable type="0"
  6840. />
  6841. </product>
  6842. <product id="OUTRIDE"
  6843. name="OUTRIDE"
  6844. series="Helmet"
  6845. latestVersion="1.0.1"
  6846. show = "1" >
  6847. <productMenu id="protocol"
  6848. type="0">
  6849. </productMenu>
  6850. <productMenu id="sip"
  6851. type="1" >
  6852. </productMenu>
  6853. <productMenu id="bluetoothIntercom"
  6854. type="1" >
  6855. </productMenu>
  6856. <productMenu id="phone"
  6857. type="2" >
  6858. </productMenu>
  6859. <productMenu id="fmradio"
  6860. type="3" >
  6861. </productMenu>
  6862. <productMenu id="deviceSetting"
  6863. type="1"
  6864. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6865. </productMenu>
  6866. <productMenu id="quickGuide"
  6867. type="1"
  6868. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6869. size="643KB" >
  6870. </productMenu>
  6871. <productMenu id="userGuide"
  6872. type="1"
  6873. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6874. size="660KB" >
  6875. </productMenu>
  6876. <productMenu id="connectGuide"
  6877. type="1"
  6878. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6879. size="1.12MB" >
  6880. </productMenu>
  6881. <productID id="5432"
  6882. />
  6883. <productGroupable type="0"
  6884. />
  6885. </product>
  6886. <product id="OUTFORCE"
  6887. name="OUTFORCE"
  6888. series="Helmet"
  6889. latestVersion="1.0.1"
  6890. show = "1" >
  6891. <productMenu id="protocol"
  6892. type="0">
  6893. </productMenu>
  6894. <productMenu id="sip"
  6895. type="1" >
  6896. </productMenu>
  6897. <productMenu id="bluetoothIntercom"
  6898. type="1" >
  6899. </productMenu>
  6900. <productMenu id="phone"
  6901. type="2" >
  6902. </productMenu>
  6903. <productMenu id="fmradio"
  6904. type="3" >
  6905. </productMenu>
  6906. <productMenu id="deviceSetting"
  6907. type="1"
  6908. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6909. </productMenu>
  6910. <productMenu id="quickGuide"
  6911. type="1"
  6912. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6913. size="643KB" >
  6914. </productMenu>
  6915. <productMenu id="userGuide"
  6916. type="1"
  6917. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6918. size="660KB" >
  6919. </productMenu>
  6920. <productMenu id="connectGuide"
  6921. type="1"
  6922. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6923. size="1.12MB" >
  6924. </productMenu>
  6925. <productID id="5430"
  6926. />
  6927. <productGroupable type="0"
  6928. />
  6929. </product>
  6930. <product id="Rumba"
  6931. name="Rumba"
  6932. series="30"
  6933. latestVersion="2.0"
  6934. show = "-1" >
  6935. <productMenu id="protocol"
  6936. type="3" >
  6937. </productMenu>
  6938. <productMenu id="sip"
  6939. type="1" >
  6940. </productMenu>
  6941. <productMenu id="bluetoothIntercom"
  6942. type="1" >
  6943. </productMenu>
  6944. <productMenu id="deviceSetting"
  6945. type="1"
  6946. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6947. </productMenu>
  6948. <productMenu id="quickGuide"
  6949. type="1"
  6950. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6951. size="344KB" >
  6952. </productMenu>
  6953. <productMenu id="userGuide"
  6954. type="1"
  6955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6956. size="1.14MB" >
  6957. </productMenu>
  6958. <productID id="6322"
  6959. />
  6960. <productGroupable type="0"
  6961. />
  6962. </product>
  6963. <product id="Savage"
  6964. name="Savage"
  6965. series="Helmet"
  6966. latestVersion="1.2.2"
  6967. show = "1" >
  6968. <productMenu id="protocol"
  6969. type="0">
  6970. </productMenu>
  6971. <productMenu id="sip"
  6972. type="1" >
  6973. </productMenu>
  6974. <productMenu id="bluetoothIntercom"
  6975. type="1" >
  6976. </productMenu>
  6977. <productMenu id="phone"
  6978. type="2" >
  6979. </productMenu>
  6980. <productMenu id="fmradio"
  6981. type="3" >
  6982. </productMenu>
  6983. <productMenu id="deviceSetting"
  6984. type="1"
  6985. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6986. <productMenuURL version="1.9"
  6987. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6988. />
  6989. <productMenuURL version="1.1"
  6990. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6991. />
  6992. </productMenu>
  6993. <productMenu id="quickGuide"
  6994. type="1"
  6995. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6996. size="796KB" >
  6997. </productMenu>
  6998. <productMenu id="userGuide"
  6999. type="1"
  7000. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  7001. size="910KB" >
  7002. </productMenu>
  7003. <productMenu id="connectGuide"
  7004. type="1"
  7005. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  7006. size="1.12MB" >
  7007. </productMenu>
  7008. <productID id="5550"
  7009. />
  7010. <productGroupable type="0"
  7011. />
  7012. </product>
  7013. <product id="SPECTER"
  7014. name="SPECTER"
  7015. series="Helmet"
  7016. latestVersion="1.0.7"
  7017. latestVersionVoicePrompt="1.5"
  7018. show = "1" >
  7019. <productMenu id="protocol"
  7020. type="2" >
  7021. </productMenu>
  7022. <productMenu id="ota"
  7023. type="2" >
  7024. <otaLanguages>
  7025. <otaLanguage
  7026. id="0"
  7027. name="English"
  7028. package="0"
  7029. />
  7030. <otaLanguage
  7031. id="0"
  7032. name="French"
  7033. package="1"
  7034. />
  7035. <otaLanguage
  7036. id="0"
  7037. name="Spanish"
  7038. package="2"
  7039. />
  7040. <otaLanguage
  7041. id="0"
  7042. name="Italian"
  7043. package="3"
  7044. />
  7045. <otaLanguage
  7046. id="0"
  7047. name="German"
  7048. package="4"
  7049. />
  7050. <otaLanguage
  7051. id="0"
  7052. name="Dutch"
  7053. package="5"
  7054. />
  7055. <otaLanguage
  7056. id="0"
  7057. name="Russian"
  7058. package="6"
  7059. />
  7060. <otaLanguage
  7061. id="0"
  7062. name="Chinese"
  7063. package="7"
  7064. />
  7065. <otaLanguage
  7066. id="0"
  7067. name="Korean"
  7068. package="8"
  7069. />
  7070. <otaLanguage
  7071. id="0"
  7072. name="Japanese"
  7073. package="9"
  7074. />
  7075. <otaLanguage
  7076. id="0"
  7077. name="Finnish"
  7078. package="10"
  7079. />
  7080. <otaLanguage
  7081. id="0"
  7082. name="Polish"
  7083. package="11"
  7084. />
  7085. </otaLanguages>
  7086. <otaPackages>
  7087. <package
  7088. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7089. size="5183988"
  7090. />
  7091. <package
  7092. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7093. size="5183988"
  7094. />
  7095. <package
  7096. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7097. size="5183988"
  7098. />
  7099. <package
  7100. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7101. size="5183988"
  7102. />
  7103. <package
  7104. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7105. size="5183988"
  7106. />
  7107. <package
  7108. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7109. size="5183988"
  7110. />
  7111. <package
  7112. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7113. size="5183988"
  7114. />
  7115. <package
  7116. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7117. size="5183988"
  7118. />
  7119. <package
  7120. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7121. size="5183988"
  7122. />
  7123. <package
  7124. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7125. size="5183988"
  7126. />
  7127. <package
  7128. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7129. size="5183988"
  7130. />
  7131. <package
  7132. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7133. size="5183988"
  7134. />
  7135. </otaPackages>
  7136. </productMenu>
  7137. <productMenu id="wa"
  7138. type="0" >
  7139. </productMenu>
  7140. <productMenu id="led"
  7141. type="5" >
  7142. </productMenu>
  7143. <productMenu id="led+"
  7144. type="2"
  7145. url="1" >
  7146. </productMenu>
  7147. <productMenu id="meshIntercom+"
  7148. type="3"
  7149. url="2" >
  7150. </productMenu>
  7151. <productMenu id="waveIntercom"
  7152. type="1" >
  7153. </productMenu>
  7154. <productMenu id="fmradio"
  7155. type="0" >
  7156. </productMenu>
  7157. <productMenu id="phone"
  7158. type="1" >
  7159. </productMenu>
  7160. <productMenu id="music"
  7161. type="1" >
  7162. </productMenu>
  7163. <productMenu id="musicSharing"
  7164. type="0" >
  7165. </productMenu>
  7166. <productMenu id="deviceSetting"
  7167. type="1"
  7168. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7169. <productMenuURL version="1.0.4"
  7170. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7171. />
  7172. </productMenu>
  7173. <productMenu id="quickGuide"
  7174. type="0"
  7175. url=""
  7176. size="1.12MB" >
  7177. </productMenu>
  7178. <productMenu id="userGuide"
  7179. type="1"
  7180. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7181. size="2.0MB" >
  7182. </productMenu>
  7183. <productMenu id="videoGuide"
  7184. type="0"
  7185. url=""
  7186. size="3.41MB" >
  7187. </productMenu>
  7188. <productMenu id="volume"
  7189. type="16" >
  7190. </productMenu>
  7191. <productMenu id="volume+"
  7192. type="2"
  7193. url="0x6004" >
  7194. </productMenu>
  7195. <productMenu id="battery"
  7196. type="1" >
  7197. </productMenu>
  7198. <productID id="6A11"
  7199. />
  7200. <productGroupable type="0"
  7201. />
  7202. </product>
  7203. <product id="SPECTER"
  7204. name="SPECTER"
  7205. series="Helmet"
  7206. latestVersion="1.0.7"
  7207. latestVersionVoicePrompt="1.5"
  7208. show = "-1" >
  7209. <productMenu id="protocol"
  7210. type="2" >
  7211. </productMenu>
  7212. <productMenu id="ota"
  7213. type="2" >
  7214. <otaLanguages>
  7215. <otaLanguage
  7216. id="0"
  7217. name="English"
  7218. package="0"
  7219. />
  7220. <otaLanguage
  7221. id="0"
  7222. name="French"
  7223. package="1"
  7224. />
  7225. <otaLanguage
  7226. id="0"
  7227. name="Spanish"
  7228. package="2"
  7229. />
  7230. <otaLanguage
  7231. id="0"
  7232. name="Italian"
  7233. package="3"
  7234. />
  7235. <otaLanguage
  7236. id="0"
  7237. name="German"
  7238. package="4"
  7239. />
  7240. <otaLanguage
  7241. id="0"
  7242. name="Dutch"
  7243. package="5"
  7244. />
  7245. <otaLanguage
  7246. id="0"
  7247. name="Russian"
  7248. package="6"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="Chinese"
  7253. package="7"
  7254. />
  7255. <otaLanguage
  7256. id="0"
  7257. name="Korean"
  7258. package="8"
  7259. />
  7260. <otaLanguage
  7261. id="0"
  7262. name="Japanese"
  7263. package="9"
  7264. />
  7265. <otaLanguage
  7266. id="0"
  7267. name="Finnish"
  7268. package="10"
  7269. />
  7270. <otaLanguage
  7271. id="0"
  7272. name="Polish"
  7273. package="11"
  7274. />
  7275. </otaLanguages>
  7276. <otaPackages>
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7303. size="5183988"
  7304. />
  7305. <package
  7306. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7307. size="5183988"
  7308. />
  7309. <package
  7310. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7311. size="5183988"
  7312. />
  7313. <package
  7314. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7315. size="5183988"
  7316. />
  7317. <package
  7318. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7319. size="5183988"
  7320. />
  7321. <package
  7322. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7323. size="5183988"
  7324. />
  7325. </otaPackages>
  7326. </productMenu>
  7327. <productMenu id="wa"
  7328. type="0" >
  7329. </productMenu>
  7330. <productMenu id="led"
  7331. type="5" >
  7332. </productMenu>
  7333. <productMenu id="led+"
  7334. type="2"
  7335. url="1" >
  7336. </productMenu>
  7337. <productMenu id="meshIntercom+"
  7338. type="3"
  7339. url="2" >
  7340. </productMenu>
  7341. <productMenu id="waveIntercom"
  7342. type="1" >
  7343. </productMenu>
  7344. <productMenu id="fmradio"
  7345. type="0" >
  7346. </productMenu>
  7347. <productMenu id="phone"
  7348. type="1" >
  7349. </productMenu>
  7350. <productMenu id="music"
  7351. type="1" >
  7352. </productMenu>
  7353. <productMenu id="musicSharing"
  7354. type="0" >
  7355. </productMenu>
  7356. <productMenu id="deviceSetting"
  7357. type="1"
  7358. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7359. <productMenuURL version="1.0.4"
  7360. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7361. />
  7362. <productMenuURL version="1.0"
  7363. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7364. />
  7365. </productMenu>
  7366. <productMenu id="quickGuide"
  7367. type="0"
  7368. url=""
  7369. size="1.12MB" >
  7370. </productMenu>
  7371. <productMenu id="userGuide"
  7372. type="1"
  7373. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7374. size="2.0MB" >
  7375. </productMenu>
  7376. <productMenu id="videoGuide"
  7377. type="0"
  7378. url=""
  7379. size="3.41MB" >
  7380. </productMenu>
  7381. <productMenu id="volume"
  7382. type="16" >
  7383. </productMenu>
  7384. <productMenu id="volume+"
  7385. type="2"
  7386. url="0x6004" >
  7387. </productMenu>
  7388. <productMenu id="battery"
  7389. type="1" >
  7390. </productMenu>
  7391. <productID id="6A0A"
  7392. />
  7393. <productGroupable type="0"
  7394. />
  7395. </product>
  7396. <product id="OUTLANDER"
  7397. name="OUTLANDER"
  7398. series="Helmet"
  7399. latestVersion="1.0.7"
  7400. latestVersionVoicePrompt="1.5"
  7401. show = "1" >
  7402. <productMenu id="protocol"
  7403. type="2" >
  7404. </productMenu>
  7405. <productMenu id="ota"
  7406. type="2" >
  7407. <otaLanguages>
  7408. <otaLanguage
  7409. id="0"
  7410. name="English"
  7411. package="0"
  7412. />
  7413. <otaLanguage
  7414. id="0"
  7415. name="French"
  7416. package="1"
  7417. />
  7418. <otaLanguage
  7419. id="0"
  7420. name="Spanish"
  7421. package="2"
  7422. />
  7423. <otaLanguage
  7424. id="0"
  7425. name="Italian"
  7426. package="3"
  7427. />
  7428. <otaLanguage
  7429. id="0"
  7430. name="German"
  7431. package="4"
  7432. />
  7433. <otaLanguage
  7434. id="0"
  7435. name="Dutch"
  7436. package="5"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="Russian"
  7441. package="6"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="Chinese"
  7446. package="7"
  7447. />
  7448. <otaLanguage
  7449. id="0"
  7450. name="Korean"
  7451. package="8"
  7452. />
  7453. <otaLanguage
  7454. id="0"
  7455. name="Japanese"
  7456. package="9"
  7457. />
  7458. <otaLanguage
  7459. id="0"
  7460. name="Finnish"
  7461. package="10"
  7462. />
  7463. <otaLanguage
  7464. id="0"
  7465. name="Polish"
  7466. package="11"
  7467. />
  7468. </otaLanguages>
  7469. <otaPackages>
  7470. <package
  7471. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7472. size="5183988"
  7473. />
  7474. <package
  7475. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7476. size="5183988"
  7477. />
  7478. <package
  7479. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7480. size="5183988"
  7481. />
  7482. <package
  7483. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7484. size="5183988"
  7485. />
  7486. <package
  7487. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7488. size="5183988"
  7489. />
  7490. <package
  7491. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7492. size="5183988"
  7493. />
  7494. <package
  7495. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7496. size="5183988"
  7497. />
  7498. <package
  7499. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7500. size="5183988"
  7501. />
  7502. <package
  7503. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7504. size="5183988"
  7505. />
  7506. <package
  7507. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7508. size="5183988"
  7509. />
  7510. <package
  7511. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7512. size="5183988"
  7513. />
  7514. <package
  7515. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7516. size="5183988"
  7517. />
  7518. </otaPackages>
  7519. </productMenu>
  7520. <productMenu id="wa"
  7521. type="0" >
  7522. </productMenu>
  7523. <productMenu id="led"
  7524. type="5" >
  7525. </productMenu>
  7526. <productMenu id="led+"
  7527. type="2"
  7528. url="1" >
  7529. </productMenu>
  7530. <productMenu id="meshIntercom+"
  7531. type="3"
  7532. url="2" >
  7533. </productMenu>
  7534. <productMenu id="waveIntercom"
  7535. type="1" >
  7536. </productMenu>
  7537. <productMenu id="fmradio"
  7538. type="0" >
  7539. </productMenu>
  7540. <productMenu id="phone"
  7541. type="1" >
  7542. </productMenu>
  7543. <productMenu id="music"
  7544. type="1" >
  7545. </productMenu>
  7546. <productMenu id="musicSharing"
  7547. type="0" >
  7548. </productMenu>
  7549. <productMenu id="deviceSetting"
  7550. type="1"
  7551. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_05.xml" >
  7552. <productMenuURL version="1.0.4"
  7553. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7554. />
  7555. </productMenu>
  7556. <productMenu id="quickGuide"
  7557. type="0"
  7558. url=""
  7559. size="1.12MB" >
  7560. </productMenu>
  7561. <productMenu id="userGuide"
  7562. type="1"
  7563. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7564. size="2.0MB" >
  7565. </productMenu>
  7566. <productMenu id="videoGuide"
  7567. type="0"
  7568. url=""
  7569. size="3.41MB" >
  7570. </productMenu>
  7571. <productMenu id="volume"
  7572. type="16" >
  7573. </productMenu>
  7574. <productMenu id="volume+"
  7575. type="2"
  7576. url="0x6004" >
  7577. </productMenu>
  7578. <productMenu id="battery"
  7579. type="1" >
  7580. </productMenu>
  7581. <productID id="6A05"
  7582. />
  7583. <productGroupable type="0"
  7584. />
  7585. </product>
  7586. <product id="OUTRUSH2"
  7587. name="OUTRUSH 2"
  7588. series="Helmet"
  7589. latestVersion="1.0.2"
  7590. latestVersionVoicePrompt="1.1"
  7591. show = "1" >
  7592. <productMenu id="protocol"
  7593. type="2" >
  7594. </productMenu>
  7595. <productMenu id="alexa"
  7596. type="0" >
  7597. </productMenu>
  7598. <productMenu id="ota"
  7599. type="2" >
  7600. <otaPackages>
  7601. <package
  7602. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7603. size="2945812"
  7604. />
  7605. </otaPackages>
  7606. </productMenu>
  7607. <productMenu id="meshIntercom+"
  7608. type="3"
  7609. url="2" >
  7610. </productMenu>
  7611. <productMenu id="waveIntercom"
  7612. type="1" >
  7613. </productMenu>
  7614. <productMenu id="phone"
  7615. type="1" >
  7616. </productMenu>
  7617. <productMenu id="music"
  7618. type="1" >
  7619. </productMenu>
  7620. <productMenu id="musicSharing"
  7621. type="0" >
  7622. </productMenu>
  7623. <productMenu id="deviceSetting"
  7624. type="1"
  7625. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7626. <productMenuURL version="1.0"
  7627. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7628. />
  7629. </productMenu>
  7630. <productMenu id="quickGuide"
  7631. type="0"
  7632. url=""
  7633. size="1.12MB" >
  7634. </productMenu>
  7635. <productMenu id="userGuide"
  7636. type="1"
  7637. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.1_en_260414.pdf"
  7638. size="2.0MB" >
  7639. </productMenu>
  7640. <productMenu id="volume"
  7641. type="12" >
  7642. </productMenu>
  7643. <productMenu id="battery"
  7644. type="1" >
  7645. </productMenu>
  7646. <productID id="684A"
  7647. />
  7648. <productGroupable type="0"
  7649. />
  7650. </product>
  7651. <product id="OUTSTAR2"
  7652. name="OUTSTAR 2"
  7653. series="Helmet"
  7654. latestVersion="1.0.1"
  7655. latestVersionVoicePrompt="1.1"
  7656. show = "1" >
  7657. <productMenu id="protocol"
  7658. type="2" >
  7659. </productMenu>
  7660. <productMenu id="alexa"
  7661. type="0" >
  7662. </productMenu>
  7663. <productMenu id="ota"
  7664. type="2" >
  7665. <otaPackages>
  7666. <package
  7667. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7668. size="2945812"
  7669. />
  7670. </otaPackages>
  7671. </productMenu>
  7672. <productMenu id="meshIntercom+"
  7673. type="3"
  7674. url="2" >
  7675. </productMenu>
  7676. <productMenu id="waveIntercom"
  7677. type="1" >
  7678. </productMenu>
  7679. <productMenu id="phone"
  7680. type="1" >
  7681. </productMenu>
  7682. <productMenu id="music"
  7683. type="1" >
  7684. </productMenu>
  7685. <productMenu id="musicSharing"
  7686. type="0" >
  7687. </productMenu>
  7688. <productMenu id="deviceSetting"
  7689. type="1"
  7690. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7691. </productMenu>
  7692. <productMenu id="quickGuide"
  7693. type="0"
  7694. url=""
  7695. size="1.12MB" >
  7696. </productMenu>
  7697. <productMenu id="userGuide"
  7698. type="1"
  7699. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.1_en_260416.pdf"
  7700. size="2.0MB" >
  7701. </productMenu>
  7702. <productMenu id="volume"
  7703. type="12" >
  7704. </productMenu>
  7705. <productMenu id="battery"
  7706. type="1" >
  7707. </productMenu>
  7708. <productID id="684B"
  7709. />
  7710. <productGroupable type="0"
  7711. />
  7712. </product>
  7713. <product id="SURGE"
  7714. name="SURGE"
  7715. series="Helmet"
  7716. latestVersion="1.2"
  7717. latestVersionVoicePrompt="1.3"
  7718. show = "1" >
  7719. <productMenu id="protocol"
  7720. type="2" >
  7721. </productMenu>
  7722. <productMenu id="alexa"
  7723. type="0" >
  7724. </productMenu>
  7725. <productMenu id="ota"
  7726. type="2" >
  7727. <otaPackages>
  7728. <package
  7729. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7730. size="2945812"
  7731. />
  7732. </otaPackages>
  7733. </productMenu>
  7734. <productMenu id="meshIntercom"
  7735. type="30" >
  7736. </productMenu>
  7737. <productMenu id="meshIntercom+"
  7738. type="3"
  7739. url="2" >
  7740. <productMenuType version="1.0.1"
  7741. type="2"
  7742. />
  7743. </productMenu>
  7744. <productMenu id="waveIntercom"
  7745. type="1" >
  7746. <productMenuType version="1.0.9"
  7747. type="0"
  7748. />
  7749. </productMenu>
  7750. <productMenu id="phone"
  7751. type="1" >
  7752. </productMenu>
  7753. <productMenu id="music"
  7754. type="1" >
  7755. </productMenu>
  7756. <productMenu id="musicSharing"
  7757. type="0" >
  7758. </productMenu>
  7759. <productMenu id="deviceSetting"
  7760. type="1"
  7761. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7762. <productMenuURL version="1.1.9"
  7763. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7764. />
  7765. <productMenuURL version="1.0.1"
  7766. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7767. />
  7768. </productMenu>
  7769. <productMenu id="quickGuide"
  7770. type="0"
  7771. url=""
  7772. size="1.12MB" >
  7773. </productMenu>
  7774. <productMenu id="userGuide"
  7775. type="1"
  7776. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7777. size="2.0MB" >
  7778. </productMenu>
  7779. <productMenu id="volume"
  7780. type="12" >
  7781. </productMenu>
  7782. <productMenu id="battery"
  7783. type="1" >
  7784. </productMenu>
  7785. <productID id="6840"
  7786. />
  7787. <productGroupable type="0"
  7788. />
  7789. </product>
  7790. <product id="Cavalry2"
  7791. name="Cavalry 2"
  7792. series="Helmet"
  7793. latestVersion="1.2"
  7794. latestVersionVoicePrompt="1.3"
  7795. show = "1" >
  7796. <productMenu id="protocol"
  7797. type="2" >
  7798. </productMenu>
  7799. <productMenu id="alexa"
  7800. type="0" >
  7801. </productMenu>
  7802. <productMenu id="ota"
  7803. type="2" >
  7804. <otaPackages>
  7805. <package
  7806. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7807. size="3144148"
  7808. />
  7809. </otaPackages>
  7810. </productMenu>
  7811. <productMenu id="wa"
  7812. type="0" >
  7813. </productMenu>
  7814. <productMenu id="meshIntercom"
  7815. type="30" >
  7816. </productMenu>
  7817. <productMenu id="meshIntercom+"
  7818. type="3"
  7819. url="2" >
  7820. <productMenuType version="1.0"
  7821. type="2"
  7822. />
  7823. </productMenu>
  7824. <productMenu id="waveIntercom"
  7825. type="1" >
  7826. <productMenuType version="1.0.9"
  7827. type="0"
  7828. />
  7829. </productMenu>
  7830. <productMenu id="phone"
  7831. type="1" >
  7832. </productMenu>
  7833. <productMenu id="music"
  7834. type="1" >
  7835. </productMenu>
  7836. <productMenu id="musicSharing"
  7837. type="0" >
  7838. </productMenu>
  7839. <productMenu id="deviceSetting"
  7840. type="1"
  7841. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7842. <productMenuURL version="1.1.9"
  7843. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7844. />
  7845. <productMenuURL version="1.0"
  7846. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7847. />
  7848. </productMenu>
  7849. <productMenu id="quickGuide"
  7850. type="0"
  7851. url=""
  7852. size="1.12MB" >
  7853. </productMenu>
  7854. <productMenu id="userGuide"
  7855. type="1"
  7856. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7857. size="2.0MB" >
  7858. </productMenu>
  7859. <productMenu id="connectGuide"
  7860. type="1"
  7861. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7862. size="1.12MB" >
  7863. </productMenu>
  7864. <productMenu id="volume"
  7865. type="12" >
  7866. </productMenu>
  7867. <productMenu id="battery"
  7868. type="1" >
  7869. </productMenu>
  7870. <productID id="6839"
  7871. />
  7872. <productGroupable type="0"
  7873. />
  7874. </product>
  7875. <product id="Cavalry"
  7876. name="Cavalry"
  7877. series="Helmet"
  7878. latestVersion="1.2.2"
  7879. show = "1" >
  7880. <productMenu id="protocol"
  7881. type="0">
  7882. </productMenu>
  7883. <productMenu id="sip"
  7884. type="1" >
  7885. </productMenu>
  7886. <productMenu id="bluetoothIntercom"
  7887. type="1" >
  7888. </productMenu>
  7889. <productMenu id="phone"
  7890. type="2" >
  7891. </productMenu>
  7892. <productMenu id="fmradio"
  7893. type="3" >
  7894. </productMenu>
  7895. <productMenu id="deviceSetting"
  7896. type="1"
  7897. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7898. <productMenuURL version="1.9"
  7899. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7900. />
  7901. <productMenuURL version="1.0.1"
  7902. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7903. />
  7904. </productMenu>
  7905. <productMenu id="quickGuide"
  7906. type="1"
  7907. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7908. size="795KB" >
  7909. </productMenu>
  7910. <productMenu id="userGuide"
  7911. type="1"
  7912. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7913. size="1.87MB" >
  7914. </productMenu>
  7915. <productMenu id="connectGuide"
  7916. type="1"
  7917. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7918. size="1.12MB" >
  7919. </productMenu>
  7920. <productID id="5524"
  7921. />
  7922. <productGroupable type="0"
  7923. />
  7924. </product>
  7925. <product id="Cavalry_Lite"
  7926. name="Cavalry Lite"
  7927. series="Helmet"
  7928. latestVersion="1.0.2"
  7929. show = "1" >
  7930. <productMenu id="protocol"
  7931. type="0">
  7932. </productMenu>
  7933. <productMenu id="sip"
  7934. type="1" >
  7935. </productMenu>
  7936. <productMenu id="bluetoothIntercom"
  7937. type="1" >
  7938. </productMenu>
  7939. <productMenu id="phone"
  7940. type="2" >
  7941. </productMenu>
  7942. <productMenu id="fmradio"
  7943. type="3" >
  7944. </productMenu>
  7945. <productMenu id="deviceSetting"
  7946. type="1"
  7947. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7948. </productMenu>
  7949. <productMenu id="userGuide"
  7950. type="1"
  7951. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7952. size="1.74MB" >
  7953. </productMenu>
  7954. <productMenu id="connectGuide"
  7955. type="1"
  7956. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7957. size="1.12MB" >
  7958. </productMenu>
  7959. <productID id="5536"
  7960. />
  7961. <productGroupable type="0"
  7962. />
  7963. </product>
  7964. <product id="VORTEX"
  7965. name="VORTEX"
  7966. series="VORTEX"
  7967. latestVersion="1.0"
  7968. latestVersionVoicePrompt="1.0"
  7969. show = "-1" >
  7970. <productMenu id="protocol"
  7971. type="2" >
  7972. </productMenu>
  7973. <productMenu id="ota"
  7974. type="2" >
  7975. <otaLanguages>
  7976. <otaLanguage
  7977. id="0"
  7978. name="English"
  7979. package="0"
  7980. />
  7981. <otaLanguage
  7982. id="0"
  7983. name="French"
  7984. package="1"
  7985. />
  7986. <otaLanguage
  7987. id="0"
  7988. name="Spanish"
  7989. package="2"
  7990. />
  7991. <otaLanguage
  7992. id="0"
  7993. name="Italian"
  7994. package="3"
  7995. />
  7996. <otaLanguage
  7997. id="0"
  7998. name="German"
  7999. package="4"
  8000. />
  8001. <otaLanguage
  8002. id="0"
  8003. name="Dutch"
  8004. package="5"
  8005. />
  8006. <otaLanguage
  8007. id="0"
  8008. name="Russian"
  8009. package="6"
  8010. />
  8011. <otaLanguage
  8012. id="0"
  8013. name="Chinese"
  8014. package="7"
  8015. />
  8016. <otaLanguage
  8017. id="0"
  8018. name="Korean"
  8019. package="8"
  8020. />
  8021. <otaLanguage
  8022. id="0"
  8023. name="Japanese"
  8024. package="9"
  8025. />
  8026. <otaLanguage
  8027. id="0"
  8028. name="Finnish"
  8029. package="10"
  8030. />
  8031. <otaLanguage
  8032. id="0"
  8033. name="Polish"
  8034. package="11"
  8035. />
  8036. </otaLanguages>
  8037. <otaPackages>
  8038. <package
  8039. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4.img"
  8040. size="5183988"
  8041. />
  8042. <package
  8043. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fr-FR.img"
  8044. size="5183988"
  8045. />
  8046. <package
  8047. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-es-ES.img"
  8048. size="5183988"
  8049. />
  8050. <package
  8051. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-it-IT.img"
  8052. size="5183988"
  8053. />
  8054. <package
  8055. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-de-DE.img"
  8056. size="5183988"
  8057. />
  8058. <package
  8059. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-nl-NL.img"
  8060. size="5183988"
  8061. />
  8062. <package
  8063. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ru-RU.img"
  8064. size="5183988"
  8065. />
  8066. <package
  8067. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-cmn-CN.img"
  8068. size="5183988"
  8069. />
  8070. <package
  8071. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ko-KR.img"
  8072. size="5183988"
  8073. />
  8074. <package
  8075. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-ja-JP.img"
  8076. size="5183988"
  8077. />
  8078. <package
  8079. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-fi-FI.img"
  8080. size="5183988"
  8081. />
  8082. <package
  8083. url="https://api.sena.com/support/OTA/Motorcycles/VORTEX/VORTEX-v1.0-build4-pl-PL.img"
  8084. size="5183988"
  8085. />
  8086. </otaPackages>
  8087. </productMenu>
  8088. <productMenu id="sip"
  8089. type="1" >
  8090. </productMenu>
  8091. <productMenu id="bluetoothIntercom"
  8092. type="1" >
  8093. </productMenu>
  8094. <productMenu id="phone"
  8095. type="1" >
  8096. </productMenu>
  8097. <productMenu id="music"
  8098. type="1" >
  8099. </productMenu>
  8100. <productMenu id="fmradio"
  8101. type="1"
  8102. url="1" >
  8103. </productMenu>
  8104. <productMenu id="deviceSetting"
  8105. type="1"
  8106. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_02.xml" >
  8107. </productMenu>
  8108. <productMenu id="quickGuide"
  8109. type="0"
  8110. url=""
  8111. size="934KB" >
  8112. </productMenu>
  8113. <productMenu id="userGuide"
  8114. type="1"
  8115. url=""
  8116. size="1.14MB" >
  8117. </productMenu>
  8118. <productMenu id="connectGuide"
  8119. type="0"
  8120. url=""
  8121. size="1.12MB" >
  8122. </productMenu>
  8123. <productMenu id="volume"
  8124. type="15" >
  8125. </productMenu>
  8126. <productID id="3451"
  8127. />
  8128. <productGroupable type="0"
  8129. />
  8130. </product>
  8131. <product id="SF4"
  8132. name="SF4"
  8133. series="SF"
  8134. latestVersion="1.1.5"
  8135. show = "-1" >
  8136. <productMenu id="protocol"
  8137. type="1"
  8138. url="3">
  8139. </productMenu>
  8140. <productMenu id="sip"
  8141. type="1" >
  8142. </productMenu>
  8143. <productMenu id="bluetoothIntercom"
  8144. type="1" >
  8145. </productMenu>
  8146. <productMenu id="phone"
  8147. type="1" >
  8148. </productMenu>
  8149. <productMenu id="music"
  8150. type="1" >
  8151. </productMenu>
  8152. <productMenu id="fmradio"
  8153. type="1" >
  8154. </productMenu>
  8155. <productMenu id="deviceSetting"
  8156. type="1"
  8157. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8158. <productMenuURL version="1.0.1"
  8159. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8160. />
  8161. </productMenu>
  8162. <productMenu id="quickGuide"
  8163. type="1"
  8164. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8165. size="607KB" >
  8166. </productMenu>
  8167. <productMenu id="userGuide"
  8168. type="1"
  8169. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8170. size="1.91MB" >
  8171. </productMenu>
  8172. <productMenu id="volume"
  8173. type="4" >
  8174. </productMenu>
  8175. <productID id="5414"
  8176. />
  8177. <productGroupable type="0"
  8178. />
  8179. </product>
  8180. <product id="SF4"
  8181. name="SF4"
  8182. series="SF"
  8183. latestVersion="3.4.4"
  8184. show = "1" >
  8185. <productMenu id="protocol"
  8186. type="2" >
  8187. </productMenu>
  8188. <productMenu id="sip"
  8189. type="1" >
  8190. </productMenu>
  8191. <productMenu id="bluetoothIntercom"
  8192. type="1" >
  8193. </productMenu>
  8194. <productMenu id="phone"
  8195. type="1" >
  8196. </productMenu>
  8197. <productMenu id="music"
  8198. type="1" >
  8199. </productMenu>
  8200. <productMenu id="fmradio"
  8201. type="1" >
  8202. </productMenu>
  8203. <productMenu id="deviceSetting"
  8204. type="1"
  8205. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8206. <productMenuURL version="3.0"
  8207. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8208. />
  8209. </productMenu>
  8210. <productMenu id="quickGuide"
  8211. type="0"
  8212. url=""
  8213. size="934KB" >
  8214. </productMenu>
  8215. <productMenu id="userGuide"
  8216. type="1"
  8217. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8218. size="1.14MB" >
  8219. </productMenu>
  8220. <productMenu id="connectGuide"
  8221. type="1"
  8222. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8223. size="1.12MB" >
  8224. </productMenu>
  8225. <productMenu id="volume"
  8226. type="15" >
  8227. </productMenu>
  8228. <productID id="3370"
  8229. />
  8230. <productGroupable type="0"
  8231. />
  8232. </product>
  8233. <product id="SF2"
  8234. name="SF2"
  8235. series="SF"
  8236. latestVersion="1.2.1"
  8237. show = "-1" >
  8238. <productMenu id="protocol"
  8239. type="1"
  8240. url="2">
  8241. </productMenu>
  8242. <productMenu id="sip"
  8243. type="1" >
  8244. </productMenu>
  8245. <productMenu id="bluetoothIntercom"
  8246. type="1" >
  8247. </productMenu>
  8248. <productMenu id="phone"
  8249. type="1" >
  8250. </productMenu>
  8251. <productMenu id="music"
  8252. type="1" >
  8253. </productMenu>
  8254. <productMenu id="fmradio"
  8255. type="1" >
  8256. </productMenu>
  8257. <productMenu id="deviceSetting"
  8258. type="1"
  8259. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8260. <productMenuURL version="1.0.1"
  8261. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8262. />
  8263. </productMenu>
  8264. <productMenu id="quickGuide"
  8265. type="1"
  8266. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8267. size="607KB" >
  8268. </productMenu>
  8269. <productMenu id="userGuide"
  8270. type="1"
  8271. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8272. size="1.91MB" >
  8273. </productMenu>
  8274. <productMenu id="volume"
  8275. type="4" >
  8276. </productMenu>
  8277. <productID id="5412"
  8278. />
  8279. <productGroupable type="0"
  8280. />
  8281. </product>
  8282. <product id="SF2"
  8283. name="SF2"
  8284. series="SF"
  8285. latestVersion="3.3.4"
  8286. show = "1" >
  8287. <productMenu id="protocol"
  8288. type="2" >
  8289. </productMenu>
  8290. <productMenu id="sip"
  8291. type="1" >
  8292. </productMenu>
  8293. <productMenu id="bluetoothIntercom"
  8294. type="1" >
  8295. </productMenu>
  8296. <productMenu id="phone"
  8297. type="1" >
  8298. </productMenu>
  8299. <productMenu id="music"
  8300. type="1" >
  8301. </productMenu>
  8302. <productMenu id="fmradio"
  8303. type="0" >
  8304. </productMenu>
  8305. <productMenu id="deviceSetting"
  8306. type="1"
  8307. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8308. <productMenuURL version="3.0"
  8309. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8310. />
  8311. </productMenu>
  8312. <productMenu id="quickGuide"
  8313. type="0"
  8314. url=""
  8315. size="934KB" >
  8316. </productMenu>
  8317. <productMenu id="userGuide"
  8318. type="1"
  8319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8320. size="1.14MB" >
  8321. </productMenu>
  8322. <productMenu id="connectGuide"
  8323. type="1"
  8324. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8325. size="1.12MB" >
  8326. </productMenu>
  8327. <productMenu id="volume"
  8328. type="15" >
  8329. </productMenu>
  8330. <productID id="3360"
  8331. />
  8332. <productGroupable type="0"
  8333. />
  8334. </product>
  8335. <product id="SF1"
  8336. name="SF1"
  8337. series="SF"
  8338. latestVersion="2.0.5"
  8339. show = "-1" >
  8340. <productMenu id="protocol"
  8341. type="1"
  8342. url="1">
  8343. </productMenu>
  8344. <productMenu id="sip"
  8345. type="1" >
  8346. </productMenu>
  8347. <productMenu id="bluetoothIntercom"
  8348. type="1" >
  8349. <productMenuType version="1.1"
  8350. type="0"
  8351. />
  8352. </productMenu>
  8353. <productMenu id="phone"
  8354. type="1" >
  8355. </productMenu>
  8356. <productMenu id="music"
  8357. type="1" >
  8358. </productMenu>
  8359. <productMenu id="deviceSetting"
  8360. type="1"
  8361. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8362. <productMenuURL version="1.1"
  8363. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8364. />
  8365. <productMenuURL version="1.0"
  8366. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8367. />
  8368. </productMenu>
  8369. <productMenu id="quickGuide"
  8370. type="1"
  8371. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8372. size="401KB" >
  8373. </productMenu>
  8374. <productMenu id="userGuide"
  8375. type="1"
  8376. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8377. size="1.91MB" >
  8378. </productMenu>
  8379. <productMenu id="volume"
  8380. type="3" >
  8381. </productMenu>
  8382. <productID id="5410"
  8383. />
  8384. <productGroupable type="0"
  8385. />
  8386. </product>
  8387. <product id="SF1"
  8388. name="SF1"
  8389. series="SF"
  8390. latestVersion="3.3.4"
  8391. show = "1" >
  8392. <productMenu id="protocol"
  8393. type="2" >
  8394. </productMenu>
  8395. <productMenu id="sip"
  8396. type="1" >
  8397. </productMenu>
  8398. <productMenu id="bluetoothIntercom"
  8399. type="1" >
  8400. </productMenu>
  8401. <productMenu id="phone"
  8402. type="1" >
  8403. </productMenu>
  8404. <productMenu id="music"
  8405. type="1" >
  8406. </productMenu>
  8407. <productMenu id="fmradio"
  8408. type="0" >
  8409. </productMenu>
  8410. <productMenu id="deviceSetting"
  8411. type="1"
  8412. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8413. <productMenuURL version="3.0"
  8414. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8415. />
  8416. </productMenu>
  8417. <productMenu id="quickGuide"
  8418. type="0"
  8419. url=""
  8420. size="934KB" >
  8421. </productMenu>
  8422. <productMenu id="userGuide"
  8423. type="1"
  8424. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8425. size="1.14MB" >
  8426. </productMenu>
  8427. <productMenu id="connectGuide"
  8428. type="1"
  8429. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8430. size="1.12MB" >
  8431. </productMenu>
  8432. <productMenu id="volume"
  8433. type="15" >
  8434. </productMenu>
  8435. <productID id="3350"
  8436. />
  8437. <productGroupable type="0"
  8438. />
  8439. </product>
  8440. <product id="SFR"
  8441. name="SFR"
  8442. series="SF"
  8443. latestVersion="1.1.1"
  8444. show = "1" >
  8445. <productMenu id="protocol"
  8446. type="1"
  8447. url="3">
  8448. </productMenu>
  8449. <productMenu id="sip"
  8450. type="1" >
  8451. </productMenu>
  8452. <productMenu id="bluetoothIntercom"
  8453. type="1" >
  8454. </productMenu>
  8455. <productMenu id="phone"
  8456. type="1" >
  8457. </productMenu>
  8458. <productMenu id="music"
  8459. type="1" >
  8460. </productMenu>
  8461. <productMenu id="fmradio"
  8462. type="1" >
  8463. </productMenu>
  8464. <productMenu id="deviceSetting"
  8465. type="1"
  8466. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8467. </productMenu>
  8468. <productMenu id="quickGuide"
  8469. type="1"
  8470. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8471. size="607KB" >
  8472. </productMenu>
  8473. <productMenu id="userGuide"
  8474. type="1"
  8475. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8476. size="1.91MB" >
  8477. </productMenu>
  8478. <productMenu id="volume"
  8479. type="4" >
  8480. </productMenu>
  8481. <productID id="5418"
  8482. />
  8483. <productGroupable type="0"
  8484. />
  8485. </product>
  8486. <product id="20S"
  8487. name="20S"
  8488. series="20"
  8489. latestVersion="2.2.3"
  8490. show = "1" >
  8491. <productMenu id="protocol"
  8492. type="0">
  8493. </productMenu>
  8494. <productMenu id="wa"
  8495. type="5" >
  8496. </productMenu>
  8497. <productMenu id="sip"
  8498. type="1" >
  8499. <productMenuType version="1.0"
  8500. type="0"
  8501. />
  8502. </productMenu>
  8503. <productMenu id="bluetoothIntercom"
  8504. type="1" >
  8505. <productMenuType version="1.0"
  8506. type="0"
  8507. />
  8508. </productMenu>
  8509. <productMenu id="intercomSetting"
  8510. type="1" >
  8511. </productMenu>
  8512. <productMenu id="phone"
  8513. type="2" >
  8514. </productMenu>
  8515. <productMenu id="fmradio"
  8516. type="3" >
  8517. </productMenu>
  8518. <productMenu id="deviceSetting"
  8519. type="1"
  8520. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8521. <productMenuURL version="2.0.2"
  8522. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8523. />
  8524. <productMenuURL version="1.5"
  8525. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8526. />
  8527. <productMenuURL version="1.4.1"
  8528. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8529. />
  8530. <productMenuURL version="1.1"
  8531. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8532. />
  8533. <productMenuURL version="1.0"
  8534. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8535. />
  8536. </productMenu>
  8537. <productMenu id="quickGuide"
  8538. type="0"
  8539. url=""
  8540. size="264KB" >
  8541. </productMenu>
  8542. <productMenu id="userGuide"
  8543. type="1"
  8544. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8545. size="3.09MB" >
  8546. </productMenu>
  8547. <productMenu id="connectGuide"
  8548. type="1"
  8549. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8550. size="1.12MB" >
  8551. </productMenu>
  8552. <productID id="4210"
  8553. />
  8554. <productGroupable type="1"
  8555. />
  8556. </product>
  8557. <product id="20S_EVO"
  8558. name="20S EVO"
  8559. series="20"
  8560. latestVersion="2.2.3"
  8561. show = "1" >
  8562. <productMenu id="protocol"
  8563. type="0">
  8564. </productMenu>
  8565. <productMenu id="wa"
  8566. type="5" >
  8567. </productMenu>
  8568. <productMenu id="sip"
  8569. type="1" >
  8570. <productMenuType version="1.0"
  8571. type="0"
  8572. />
  8573. </productMenu>
  8574. <productMenu id="bluetoothIntercom"
  8575. type="1" >
  8576. <productMenuType version="1.0"
  8577. type="0"
  8578. />
  8579. </productMenu>
  8580. <productMenu id="intercomSetting"
  8581. type="1" >
  8582. </productMenu>
  8583. <productMenu id="phone"
  8584. type="2" >
  8585. </productMenu>
  8586. <productMenu id="fmradio"
  8587. type="3" >
  8588. </productMenu>
  8589. <productMenu id="deviceSetting"
  8590. type="1"
  8591. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8592. <productMenuURL version="2.0.2"
  8593. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8594. />
  8595. <productMenuURL version="1.5"
  8596. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8597. />
  8598. <productMenuURL version="1.4.1"
  8599. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8600. />
  8601. <productMenuURL version="1.1"
  8602. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8603. />
  8604. <productMenuURL version="1.0"
  8605. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8606. />
  8607. </productMenu>
  8608. <productMenu id="quickGuide"
  8609. type="0"
  8610. url=""
  8611. size="264KB" >
  8612. </productMenu>
  8613. <productMenu id="userGuide"
  8614. type="1"
  8615. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8616. size="3.09MB" >
  8617. </productMenu>
  8618. <productMenu id="connectGuide"
  8619. type="1"
  8620. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8621. size="1.12MB" >
  8622. </productMenu>
  8623. <productID id="4210"
  8624. />
  8625. <productProductKey key="16"
  8626. />
  8627. <productGroupable type="1"
  8628. />
  8629. </product>
  8630. <product id="10S"
  8631. name="10S"
  8632. series="10"
  8633. latestVersion="3.0.2"
  8634. show = "1" >
  8635. <productMenu id="protocol"
  8636. type="3" >
  8637. </productMenu>
  8638. <productMenu id="sip"
  8639. type="1" >
  8640. </productMenu>
  8641. <productMenu id="bluetoothIntercom"
  8642. type="1" >
  8643. </productMenu>
  8644. <productMenu id="phone"
  8645. type="1" >
  8646. </productMenu>
  8647. <productMenu id="deviceSetting"
  8648. type="1"
  8649. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8650. </productMenu>
  8651. <productMenu id="quickGuide"
  8652. type="1"
  8653. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8654. size="934KB" >
  8655. </productMenu>
  8656. <productMenu id="userGuide"
  8657. type="1"
  8658. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8659. size="1.14MB" >
  8660. </productMenu>
  8661. <productMenu id="connectGuide"
  8662. type="1"
  8663. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8664. size="1.12MB" >
  8665. </productMenu>
  8666. <productID id="3380"
  8667. />
  8668. <productGroupable type="0"
  8669. />
  8670. </product>
  8671. <product id="10S"
  8672. name="10S"
  8673. series="10"
  8674. latestVersion="2.1.1"
  8675. show = "-1" >
  8676. <productMenu id="protocol"
  8677. type="0">
  8678. </productMenu>
  8679. <productMenu id="sip"
  8680. type="1" >
  8681. </productMenu>
  8682. <productMenu id="bluetoothIntercom"
  8683. type="1" >
  8684. </productMenu>
  8685. <productMenu id="phone"
  8686. type="2" >
  8687. </productMenu>
  8688. <productMenu id="fmradio"
  8689. type="3" >
  8690. </productMenu>
  8691. <productMenu id="deviceSetting"
  8692. type="1"
  8693. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8694. <productMenuURL version="1.5"
  8695. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8696. />
  8697. <productMenuURL version="1.3.1"
  8698. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8699. />
  8700. </productMenu>
  8701. <productMenu id="quickGuide"
  8702. type="1"
  8703. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8704. size="310KB" >
  8705. </productMenu>
  8706. <productMenu id="userGuide"
  8707. type="1"
  8708. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8709. size="1.57MB" >
  8710. </productMenu>
  8711. <productID id="5530"
  8712. />
  8713. <productGroupable type="0"
  8714. />
  8715. </product>
  8716. <product id="Apex"
  8717. name="Apex"
  8718. series="Apex"
  8719. latestVersion="1.0"
  8720. latestVersionVoicePrompt="1.0"
  8721. show = "-1" >
  8722. <productMenu id="protocol"
  8723. type="2" >
  8724. </productMenu>
  8725. <productMenu id="serialNumber"
  8726. type="1" >
  8727. </productMenu>
  8728. <productMenu id="ota"
  8729. type="0" >
  8730. <otaLanguages>
  8731. <otaLanguage
  8732. id="0"
  8733. name="English"
  8734. package="0"
  8735. />
  8736. <otaLanguage
  8737. id="0"
  8738. name="French"
  8739. package="1"
  8740. />
  8741. <otaLanguage
  8742. id="0"
  8743. name="Spanish"
  8744. package="2"
  8745. />
  8746. <otaLanguage
  8747. id="0"
  8748. name="Italian"
  8749. package="3"
  8750. />
  8751. <otaLanguage
  8752. id="0"
  8753. name="German"
  8754. package="4"
  8755. />
  8756. <otaLanguage
  8757. id="0"
  8758. name="Dutch"
  8759. package="5"
  8760. />
  8761. <otaLanguage
  8762. id="0"
  8763. name="Russian"
  8764. package="6"
  8765. />
  8766. <otaLanguage
  8767. id="0"
  8768. name="Chinese"
  8769. package="7"
  8770. />
  8771. <otaLanguage
  8772. id="0"
  8773. name="Korean"
  8774. package="8"
  8775. />
  8776. <otaLanguage
  8777. id="0"
  8778. name="Japanese"
  8779. package="9"
  8780. />
  8781. <otaLanguage
  8782. id="0"
  8783. name="Finnish"
  8784. package="10"
  8785. />
  8786. <otaLanguage
  8787. id="0"
  8788. name="Polish"
  8789. package="11"
  8790. />
  8791. </otaLanguages>
  8792. <otaPackages>
  8793. <package
  8794. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0.img"
  8795. size="5183988"
  8796. />
  8797. <package
  8798. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fr-FR.img"
  8799. size="5183988"
  8800. />
  8801. <package
  8802. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-es-ES.img"
  8803. size="5183988"
  8804. />
  8805. <package
  8806. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-it-IT.img"
  8807. size="5183988"
  8808. />
  8809. <package
  8810. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-de-DE.img"
  8811. size="5183988"
  8812. />
  8813. <package
  8814. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-nl-NL.img"
  8815. size="5183988"
  8816. />
  8817. <package
  8818. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ru-RU.img"
  8819. size="5183988"
  8820. />
  8821. <package
  8822. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-cmn-CN.img"
  8823. size="5183988"
  8824. />
  8825. <package
  8826. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ko-KR.img"
  8827. size="5183988"
  8828. />
  8829. <package
  8830. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-ja-JP.img"
  8831. size="5183988"
  8832. />
  8833. <package
  8834. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-fi-FI.img"
  8835. size="5183988"
  8836. />
  8837. <package
  8838. url="https://api.sena.com/support/OTA/60S/ApexPlus-v1.2.8-build0-pl-PL.img"
  8839. size="5183988"
  8840. />
  8841. </otaPackages>
  8842. </productMenu>
  8843. <productMenu id="sip"
  8844. type="1" >
  8845. </productMenu>
  8846. <productMenu id="bluetoothIntercom"
  8847. type="1" >
  8848. </productMenu>
  8849. <productMenu id="phone"
  8850. type="1" >
  8851. </productMenu>
  8852. <productMenu id="music"
  8853. type="1" >
  8854. </productMenu>
  8855. <productMenu id="fmradio"
  8856. type="1"
  8857. url="1" >
  8858. </productMenu>
  8859. <productMenu id="deviceSetting"
  8860. type="1"
  8861. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  8862. </productMenu>
  8863. <productMenu id="quickGuide"
  8864. type="0"
  8865. url=""
  8866. size="934KB" >
  8867. </productMenu>
  8868. <productMenu id="userGuide"
  8869. type="1"
  8870. url=""
  8871. size="1.14MB" >
  8872. </productMenu>
  8873. <productMenu id="volume"
  8874. type="15" >
  8875. </productMenu>
  8876. <productID id="3452"
  8877. />
  8878. <productGroupable type="0"
  8879. />
  8880. </product>
  8881. <product id="ApexPlus"
  8882. name="Apex Plus"
  8883. series="Apex"
  8884. latestVersion="1.0"
  8885. latestVersionVoicePrompt="1.0"
  8886. show = "-1" >
  8887. <productMenu id="protocol"
  8888. type="2" >
  8889. </productMenu>
  8890. <productMenu id="serialNumber"
  8891. type="1" >
  8892. </productMenu>
  8893. <productMenu id="ota"
  8894. type="0" >
  8895. <otaLanguages>
  8896. <otaLanguage
  8897. id="0"
  8898. name="English"
  8899. package="0"
  8900. />
  8901. <otaLanguage
  8902. id="0"
  8903. name="French"
  8904. package="1"
  8905. />
  8906. <otaLanguage
  8907. id="0"
  8908. name="Spanish"
  8909. package="2"
  8910. />
  8911. <otaLanguage
  8912. id="0"
  8913. name="Italian"
  8914. package="3"
  8915. />
  8916. <otaLanguage
  8917. id="0"
  8918. name="German"
  8919. package="4"
  8920. />
  8921. <otaLanguage
  8922. id="0"
  8923. name="Dutch"
  8924. package="5"
  8925. />
  8926. <otaLanguage
  8927. id="0"
  8928. name="Russian"
  8929. package="6"
  8930. />
  8931. <otaLanguage
  8932. id="0"
  8933. name="Chinese"
  8934. package="7"
  8935. />
  8936. <otaLanguage
  8937. id="0"
  8938. name="Korean"
  8939. package="8"
  8940. />
  8941. <otaLanguage
  8942. id="0"
  8943. name="Japanese"
  8944. package="9"
  8945. />
  8946. <otaLanguage
  8947. id="0"
  8948. name="Finnish"
  8949. package="10"
  8950. />
  8951. <otaLanguage
  8952. id="0"
  8953. name="Polish"
  8954. package="11"
  8955. />
  8956. </otaLanguages>
  8957. <otaPackages>
  8958. <package
  8959. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0.img"
  8960. size="5183988"
  8961. />
  8962. <package
  8963. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fr-FR.img"
  8964. size="5183988"
  8965. />
  8966. <package
  8967. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-es-ES.img"
  8968. size="5183988"
  8969. />
  8970. <package
  8971. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-it-IT.img"
  8972. size="5183988"
  8973. />
  8974. <package
  8975. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-de-DE.img"
  8976. size="5183988"
  8977. />
  8978. <package
  8979. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-nl-NL.img"
  8980. size="5183988"
  8981. />
  8982. <package
  8983. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ru-RU.img"
  8984. size="5183988"
  8985. />
  8986. <package
  8987. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-cmn-CN.img"
  8988. size="5183988"
  8989. />
  8990. <package
  8991. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ko-KR.img"
  8992. size="5183988"
  8993. />
  8994. <package
  8995. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-ja-JP.img"
  8996. size="5183988"
  8997. />
  8998. <package
  8999. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-fi-FI.img"
  9000. size="5183988"
  9001. />
  9002. <package
  9003. url="https://api.sena.com/support/OTA/60S/Apex-v1.2.8-build0-pl-PL.img"
  9004. size="5183988"
  9005. />
  9006. </otaPackages>
  9007. </productMenu>
  9008. <productMenu id="sip"
  9009. type="1" >
  9010. </productMenu>
  9011. <productMenu id="bluetoothIntercom"
  9012. type="1" >
  9013. </productMenu>
  9014. <productMenu id="phone"
  9015. type="1" >
  9016. </productMenu>
  9017. <productMenu id="music"
  9018. type="1" >
  9019. </productMenu>
  9020. <productMenu id="fmradio"
  9021. type="1"
  9022. url="1" >
  9023. </productMenu>
  9024. <productMenu id="deviceSetting"
  9025. type="1"
  9026. url="https://api.sena.com/support/test/xml/NS_Apex_test.xml" >
  9027. </productMenu>
  9028. <productMenu id="quickGuide"
  9029. type="0"
  9030. url=""
  9031. size="934KB" >
  9032. </productMenu>
  9033. <productMenu id="userGuide"
  9034. type="1"
  9035. url=""
  9036. size="1.14MB" >
  9037. </productMenu>
  9038. <productMenu id="volume"
  9039. type="15" >
  9040. </productMenu>
  9041. <productID id="3453"
  9042. />
  9043. <productGroupable type="0"
  9044. />
  9045. </product>
  9046. <product id="10R2"
  9047. name="10R 2"
  9048. series="10"
  9049. latestVersion="0.9"
  9050. latestVersionVoicePrompt="1.1"
  9051. show = "-1" >
  9052. <productMenu id="protocol"
  9053. type="2" >
  9054. </productMenu>
  9055. <productMenu id="ota"
  9056. type="2" >
  9057. <otaPackages>
  9058. <package
  9059. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  9060. size="2945812"
  9061. />
  9062. </otaPackages>
  9063. </productMenu>
  9064. <productMenu id="sip"
  9065. type="1" >
  9066. </productMenu>
  9067. <productMenu id="bluetoothIntercom"
  9068. type="1" >
  9069. </productMenu>
  9070. <productMenu id="phone"
  9071. type="1" >
  9072. </productMenu>
  9073. <productMenu id="music"
  9074. type="1" >
  9075. </productMenu>
  9076. <productMenu id="fmradio"
  9077. type="1"
  9078. url="1" >
  9079. </productMenu>
  9080. <productMenu id="deviceSetting"
  9081. type="1"
  9082. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  9083. </productMenu>
  9084. <productMenu id="quickGuide"
  9085. type="1"
  9086. url=""
  9087. size="934KB" >
  9088. </productMenu>
  9089. <productMenu id="userGuide"
  9090. type="0"
  9091. url=""
  9092. size="1.14MB" >
  9093. </productMenu>
  9094. <productMenu id="volume"
  9095. type="15" >
  9096. </productMenu>
  9097. <productID id="4000"
  9098. />
  9099. <productGroupable type="0"
  9100. />
  9101. </product>
  9102. <product id="10R"
  9103. name="10R"
  9104. series="10"
  9105. latestVersion="2.1.1"
  9106. show = "1" >
  9107. <productMenu id="protocol"
  9108. type="0">
  9109. </productMenu>
  9110. <productMenu id="sip"
  9111. type="1" >
  9112. <productMenuType version="1.0.2"
  9113. type="0"
  9114. />
  9115. </productMenu>
  9116. <productMenu id="bluetoothIntercom"
  9117. type="1" >
  9118. <productMenuType version="1.0.2"
  9119. type="0"
  9120. />
  9121. </productMenu>
  9122. <productMenu id="phone"
  9123. type="2" >
  9124. </productMenu>
  9125. <productMenu id="fmradio"
  9126. type="3" >
  9127. </productMenu>
  9128. <productMenu id="deviceSetting"
  9129. type="1"
  9130. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  9131. <productMenuURL version="1.4"
  9132. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  9133. />
  9134. <productMenuURL version="1.2.1"
  9135. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  9136. />
  9137. <productMenuURL version="1.0.2"
  9138. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  9139. />
  9140. <productMenuURL version="1.0"
  9141. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  9142. />
  9143. </productMenu>
  9144. <productMenu id="quickGuide"
  9145. type="1"
  9146. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  9147. size="400KB" >
  9148. </productMenu>
  9149. <productMenu id="userGuide"
  9150. type="1"
  9151. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  9152. size="2.75MB" >
  9153. </productMenu>
  9154. <productMenu id="connectGuide"
  9155. type="1"
  9156. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9157. size="1.12MB" >
  9158. </productMenu>
  9159. <productID id="5520"
  9160. />
  9161. <productGroupable type="0"
  9162. />
  9163. </product>
  9164. <product id="10C_EVO"
  9165. name="10C EVO"
  9166. series="10"
  9167. latestVersion="1.7"
  9168. show = "1" >
  9169. <productMenu id="protocol"
  9170. type="0">
  9171. </productMenu>
  9172. <productMenu id="sip"
  9173. type="1" >
  9174. </productMenu>
  9175. <productMenu id="bluetoothIntercom"
  9176. type="1" >
  9177. </productMenu>
  9178. <productMenu id="phone"
  9179. type="2" >
  9180. </productMenu>
  9181. <productMenu id="fmradio"
  9182. type="3" >
  9183. </productMenu>
  9184. <productMenu id="deviceSetting"
  9185. type="1"
  9186. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  9187. <productMenuURL version="1.3.1"
  9188. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9189. />
  9190. </productMenu>
  9191. <productMenu id="quickGuide"
  9192. type="1"
  9193. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  9194. size="1.32MB" >
  9195. </productMenu>
  9196. <productMenu id="userGuide"
  9197. type="1"
  9198. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  9199. size="1.68MB" >
  9200. </productMenu>
  9201. <productMenu id="connectGuide"
  9202. type="1"
  9203. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9204. size="1.12MB" >
  9205. </productMenu>
  9206. <productID id="5570"
  9207. />
  9208. <productGroupable type="0"
  9209. />
  9210. </product>
  9211. <product id="10C_Pro"
  9212. name="10C Pro"
  9213. series="10"
  9214. latestVersion="2.7.1"
  9215. show = "1" >
  9216. <productMenu id="protocol"
  9217. type="0">
  9218. </productMenu>
  9219. <productMenu id="sip"
  9220. type="1" >
  9221. </productMenu>
  9222. <productMenu id="bluetoothIntercom"
  9223. type="1" >
  9224. </productMenu>
  9225. <productMenu id="phone"
  9226. type="2" >
  9227. </productMenu>
  9228. <productMenu id="fmradio"
  9229. type="3" >
  9230. </productMenu>
  9231. <productMenu id="deviceSetting"
  9232. type="1"
  9233. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  9234. <productMenuURL version="2.5.1"
  9235. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  9236. />
  9237. <productMenuURL version="1.0"
  9238. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  9239. />
  9240. </productMenu>
  9241. <productMenu id="quickGuide"
  9242. type="1"
  9243. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  9244. size="651KB" >
  9245. </productMenu>
  9246. <productMenu id="userGuide"
  9247. type="1"
  9248. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  9249. size="2.34MB" >
  9250. </productMenu>
  9251. <productMenu id="connectGuide"
  9252. type="1"
  9253. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9254. size="1.12MB" >
  9255. </productMenu>
  9256. <productID id="5580"
  9257. />
  9258. <productGroupable type="0"
  9259. />
  9260. </product>
  9261. <product id="10C"
  9262. name="10C"
  9263. series="10"
  9264. latestVersion="3.0.4"
  9265. show = "1" >
  9266. <productMenu id="protocol"
  9267. type="0">
  9268. </productMenu>
  9269. <productMenu id="sip"
  9270. type="1" >
  9271. <productMenuType version="1.0.4"
  9272. type="0"
  9273. />
  9274. </productMenu>
  9275. <productMenu id="bluetoothIntercom"
  9276. type="1" >
  9277. <productMenuType version="1.0.4"
  9278. type="0"
  9279. />
  9280. </productMenu>
  9281. <productMenu id="phone"
  9282. type="2" >
  9283. </productMenu>
  9284. <productMenu id="fmradio"
  9285. type="3" >
  9286. </productMenu>
  9287. <productMenu id="deviceSetting"
  9288. type="1"
  9289. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  9290. <productMenuURL version="2.3"
  9291. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  9292. />
  9293. <productMenuURL version="2.1.1"
  9294. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  9295. />
  9296. <productMenuURL version="1.0.4"
  9297. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  9298. />
  9299. <productMenuURL version="1.0.2"
  9300. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  9301. />
  9302. </productMenu>
  9303. <productMenu id="quickGuide"
  9304. type="1"
  9305. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  9306. size="935KB" >
  9307. </productMenu>
  9308. <productMenu id="userGuide"
  9309. type="1"
  9310. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  9311. size="2.82MB" >
  9312. </productMenu>
  9313. <productMenu id="connectGuide"
  9314. type="1"
  9315. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  9316. size="1.12MB" >
  9317. </productMenu>
  9318. <productID id="5510"
  9319. />
  9320. <productGroupable type="0"
  9321. />
  9322. </product>
  9323. <product id="10U_GT_AIR"
  9324. name="10U GT-Air"
  9325. series="10"
  9326. latestVersion="2.0.4"
  9327. show = "1" >
  9328. <productMenu id="protocol"
  9329. type="0">
  9330. </productMenu>
  9331. <productMenu id="sip"
  9332. type="1" >
  9333. <productMenuType version="1.0.2"
  9334. type="0"
  9335. />
  9336. </productMenu>
  9337. <productMenu id="bluetoothIntercom"
  9338. type="1" >
  9339. <productMenuType version="1.0.2"
  9340. type="0"
  9341. />
  9342. </productMenu>
  9343. <productMenu id="phone"
  9344. type="2" >
  9345. </productMenu>
  9346. <productMenu id="fmradio"
  9347. type="3" >
  9348. </productMenu>
  9349. <productMenu id="deviceSetting"
  9350. type="1"
  9351. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9352. <productMenuURL version="1.3.2"
  9353. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9354. />
  9355. <productMenuURL version="1.0.2"
  9356. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9357. />
  9358. </productMenu>
  9359. <productMenu id="quickGuide"
  9360. type="1"
  9361. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9362. size="685KB" >
  9363. </productMenu>
  9364. <productMenu id="userGuide"
  9365. type="1"
  9366. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9367. size="684KB" >
  9368. </productMenu>
  9369. <productMenu id="connectGuide"
  9370. type="1"
  9371. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9372. size="1.12MB" >
  9373. </productMenu>
  9374. <productID id="5610"
  9375. />
  9376. <productGroupable type="0"
  9377. />
  9378. </product>
  9379. <product id="10U_NEOTEC"
  9380. name="10U Neotec"
  9381. series="10"
  9382. latestVersion="2.0.4"
  9383. show = "1" >
  9384. <productMenu id="protocol"
  9385. type="0">
  9386. </productMenu>
  9387. <productMenu id="sip"
  9388. type="1" >
  9389. <productMenuType version="1.0.2"
  9390. type="0"
  9391. />
  9392. </productMenu>
  9393. <productMenu id="bluetoothIntercom"
  9394. type="1" >
  9395. <productMenuType version="1.0.2"
  9396. type="0"
  9397. />
  9398. </productMenu>
  9399. <productMenu id="phone"
  9400. type="2" >
  9401. </productMenu>
  9402. <productMenu id="fmradio"
  9403. type="3" >
  9404. </productMenu>
  9405. <productMenu id="deviceSetting"
  9406. type="1"
  9407. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9408. <productMenuURL version="1.3.2"
  9409. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9410. />
  9411. <productMenuURL version="1.0.2"
  9412. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9413. />
  9414. </productMenu>
  9415. <productMenu id="quickGuide"
  9416. type="1"
  9417. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9418. size="689KB" >
  9419. </productMenu>
  9420. <productMenu id="userGuide"
  9421. type="1"
  9422. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9423. size="684KB" >
  9424. </productMenu>
  9425. <productMenu id="connectGuide"
  9426. type="1"
  9427. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9428. size="1.12MB" >
  9429. </productMenu>
  9430. <productID id="5611"
  9431. />
  9432. <productGroupable type="0"
  9433. />
  9434. </product>
  9435. <product id="10U_J_CRUISE"
  9436. name="10U J-Cruise"
  9437. series="10"
  9438. latestVersion="2.0.4"
  9439. show = "1" >
  9440. <productMenu id="protocol"
  9441. type="0">
  9442. </productMenu>
  9443. <productMenu id="sip"
  9444. type="1" >
  9445. <productMenuType version="1.0.2"
  9446. type="0"
  9447. />
  9448. </productMenu>
  9449. <productMenu id="bluetoothIntercom"
  9450. type="1" >
  9451. <productMenuType version="1.0.2"
  9452. type="0"
  9453. />
  9454. </productMenu>
  9455. <productMenu id="phone"
  9456. type="2" >
  9457. </productMenu>
  9458. <productMenu id="fmradio"
  9459. type="3" >
  9460. </productMenu>
  9461. <productMenu id="deviceSetting"
  9462. type="1"
  9463. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9464. <productMenuURL version="1.3.2"
  9465. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9466. />
  9467. <productMenuURL version="1.0.2"
  9468. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9469. />
  9470. </productMenu>
  9471. <productMenu id="quickGuide"
  9472. type="1"
  9473. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9474. size="686KB" >
  9475. </productMenu>
  9476. <productMenu id="userGuide"
  9477. type="1"
  9478. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9479. size="684KB" >
  9480. </productMenu>
  9481. <productMenu id="connectGuide"
  9482. type="1"
  9483. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9484. size="1.12MB" >
  9485. </productMenu>
  9486. <productID id="5612"
  9487. />
  9488. <productGroupable type="0"
  9489. />
  9490. </product>
  9491. <product id="10U_C3"
  9492. name="10U C3/C3Pro"
  9493. series="10"
  9494. latestVersion="2.0.4"
  9495. show = "1" >
  9496. <productMenu id="protocol"
  9497. type="0">
  9498. </productMenu>
  9499. <productMenu id="sip"
  9500. type="1" >
  9501. <productMenuType version="1.0.2"
  9502. type="0"
  9503. />
  9504. </productMenu>
  9505. <productMenu id="bluetoothIntercom"
  9506. type="1" >
  9507. <productMenuType version="1.0.2"
  9508. type="0"
  9509. />
  9510. </productMenu>
  9511. <productMenu id="phone"
  9512. type="2" >
  9513. </productMenu>
  9514. <productMenu id="fmradio"
  9515. type="3" >
  9516. </productMenu>
  9517. <productMenu id="deviceSetting"
  9518. type="1"
  9519. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9520. <productMenuURL version="1.3.2"
  9521. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9522. />
  9523. <productMenuURL version="1.0.2"
  9524. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9525. />
  9526. </productMenu>
  9527. <productMenu id="quickGuide"
  9528. type="1"
  9529. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9530. size="199KB" >
  9531. </productMenu>
  9532. <productMenu id="userGuide"
  9533. type="1"
  9534. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9535. size="684KB" >
  9536. </productMenu>
  9537. <productMenu id="connectGuide"
  9538. type="1"
  9539. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9540. size="1.12MB" >
  9541. </productMenu>
  9542. <productID id="5620"
  9543. />
  9544. <productGroupable type="0"
  9545. />
  9546. </product>
  9547. <product id="10U_ARAI"
  9548. name="10U Arai"
  9549. series="10"
  9550. latestVersion="2.0.4"
  9551. show = "1" >
  9552. <productMenu id="protocol"
  9553. type="0">
  9554. </productMenu>
  9555. <productMenu id="sip"
  9556. type="1" >
  9557. <productMenuType version="1.0.2"
  9558. type="0"
  9559. />
  9560. </productMenu>
  9561. <productMenu id="bluetoothIntercom"
  9562. type="1" >
  9563. <productMenuType version="1.0.2"
  9564. type="0"
  9565. />
  9566. </productMenu>
  9567. <productMenu id="phone"
  9568. type="2" >
  9569. </productMenu>
  9570. <productMenu id="fmradio"
  9571. type="3" >
  9572. </productMenu>
  9573. <productMenu id="deviceSetting"
  9574. type="1"
  9575. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9576. <productMenuURL version="1.3.2"
  9577. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9578. />
  9579. <productMenuURL version="1.0.2"
  9580. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9581. />
  9582. </productMenu>
  9583. <productMenu id="quickGuide"
  9584. type="1"
  9585. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9586. size="689KB" >
  9587. </productMenu>
  9588. <productMenu id="userGuide"
  9589. type="1"
  9590. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9591. size="684KB" >
  9592. </productMenu>
  9593. <productMenu id="connectGuide"
  9594. type="1"
  9595. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9596. size="1.12MB" >
  9597. </productMenu>
  9598. <productID id="5621"
  9599. />
  9600. <productGroupable type="0"
  9601. />
  9602. </product>
  9603. <product id="10Upad"
  9604. name="10Upad"
  9605. series="10"
  9606. latestVersion="2.0.3"
  9607. show = "1" >
  9608. <productMenu id="protocol"
  9609. type="0">
  9610. </productMenu>
  9611. <productMenu id="sip"
  9612. type="1" >
  9613. </productMenu>
  9614. <productMenu id="bluetoothIntercom"
  9615. type="1" >
  9616. </productMenu>
  9617. <productMenu id="phone"
  9618. type="2" >
  9619. </productMenu>
  9620. <productMenu id="fmradio"
  9621. type="3" >
  9622. </productMenu>
  9623. <productMenu id="deviceSetting"
  9624. type="1"
  9625. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9626. <productMenuURL version="1.0.3"
  9627. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9628. />
  9629. </productMenu>
  9630. <productMenu id="quickGuide"
  9631. type="1"
  9632. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9633. size="615KB" >
  9634. </productMenu>
  9635. <productMenu id="userGuide"
  9636. type="1"
  9637. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9638. size="0.99MB" >
  9639. </productMenu>
  9640. <productMenu id="connectGuide"
  9641. type="1"
  9642. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9643. size="1.12MB" >
  9644. </productMenu>
  9645. <productID id="6210"
  9646. />
  9647. <productGroupable type="0"
  9648. />
  9649. </product>
  9650. <product id="5S"
  9651. name="5S"
  9652. series="5"
  9653. latestVersion="2.3.1"
  9654. show = "1" >
  9655. <productMenu id="protocol"
  9656. type="3" >
  9657. </productMenu>
  9658. <productMenu id="sip"
  9659. type="1" >
  9660. </productMenu>
  9661. <productMenu id="bluetoothIntercom"
  9662. type="1" >
  9663. </productMenu>
  9664. <productMenu id="phone"
  9665. type="1" >
  9666. </productMenu>
  9667. <productMenu id="fmradio"
  9668. type="0" >
  9669. </productMenu>
  9670. <productMenu id="deviceSetting"
  9671. type="1"
  9672. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9673. </productMenu>
  9674. <productMenu id="quickGuide"
  9675. type="0"
  9676. url=""
  9677. size="934KB" >
  9678. </productMenu>
  9679. <productMenu id="userGuide"
  9680. type="1"
  9681. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9682. size="1.14MB" >
  9683. </productMenu>
  9684. <productMenu id="connectGuide"
  9685. type="1"
  9686. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9687. size="1.12MB" >
  9688. </productMenu>
  9689. <productID id="5590"
  9690. />
  9691. <productGroupable type="0"
  9692. />
  9693. </product>
  9694. <product id="5S"
  9695. name="5S"
  9696. series="5"
  9697. latestVersion="1.2"
  9698. show = "-1" >
  9699. <productMenu id="protocol"
  9700. type="0">
  9701. </productMenu>
  9702. <productMenu id="sip"
  9703. type="1" >
  9704. </productMenu>
  9705. <productMenu id="bluetoothIntercom"
  9706. type="1" >
  9707. </productMenu>
  9708. <productMenu id="phone"
  9709. type="2" >
  9710. </productMenu>
  9711. <productMenu id="fmradio"
  9712. type="3" >
  9713. </productMenu>
  9714. <productMenu id="deviceSetting"
  9715. type="1"
  9716. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9717. </productMenu>
  9718. <productMenu id="quickGuide"
  9719. type="0"
  9720. url=""
  9721. size="970KB" >
  9722. </productMenu>
  9723. <productMenu id="userGuide"
  9724. type="1"
  9725. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9726. size="1.26MB" >
  9727. </productMenu>
  9728. <productID id="5534"
  9729. />
  9730. <productGroupable type="0"
  9731. />
  9732. </product>
  9733. <product id="5S"
  9734. name="5S"
  9735. series="5"
  9736. latestVersion="3.0.1"
  9737. show = "-1" >
  9738. <productMenu id="protocol"
  9739. type="0">
  9740. </productMenu>
  9741. <productMenu id="sip"
  9742. type="1" >
  9743. </productMenu>
  9744. <productMenu id="bluetoothIntercom"
  9745. type="1" >
  9746. </productMenu>
  9747. <productMenu id="phone"
  9748. type="2" >
  9749. </productMenu>
  9750. <productMenu id="fmradio"
  9751. type="0" >
  9752. </productMenu>
  9753. <productMenu id="deviceSetting"
  9754. type="1"
  9755. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9756. </productMenu>
  9757. <productMenu id="quickGuide"
  9758. type="0"
  9759. url=""
  9760. size="970KB" >
  9761. </productMenu>
  9762. <productMenu id="userGuide"
  9763. type="1"
  9764. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9765. size="1.26MB" >
  9766. </productMenu>
  9767. <productID id="5538"
  9768. />
  9769. <productGroupable type="0"
  9770. />
  9771. </product>
  9772. <product id="3SPLUS"
  9773. name="3S PLUS"
  9774. series="3"
  9775. latestVersion="2.2"
  9776. show = "1" >
  9777. <productMenu id="protocol"
  9778. type="3" >
  9779. </productMenu>
  9780. <productMenu id="sip"
  9781. type="1" >
  9782. </productMenu>
  9783. <productMenu id="bluetoothIntercom"
  9784. type="1" >
  9785. </productMenu>
  9786. <productMenu id="deviceSetting"
  9787. type="1"
  9788. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9789. <productMenuURL version="2.2.1"
  9790. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9791. />
  9792. </productMenu>
  9793. <productMenu id="quickGuide"
  9794. type="1"
  9795. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9796. size="344KB" >
  9797. </productMenu>
  9798. <productMenu id="userGuide"
  9799. type="1"
  9800. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9801. size="1.14MB" >
  9802. </productMenu>
  9803. <productMenu id="connectGuide"
  9804. type="1"
  9805. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9806. size="1.12MB" >
  9807. </productMenu>
  9808. <productID id="4023"
  9809. />
  9810. <productGroupable type="0"
  9811. />
  9812. </product>
  9813. <product id="3SPLUS"
  9814. name="3S PLUS"
  9815. series="3"
  9816. latestVersion="1.1"
  9817. show = "-1" >
  9818. <productMenu id="protocol"
  9819. type="0">
  9820. </productMenu>
  9821. <productMenu id="sip"
  9822. type="1" >
  9823. </productMenu>
  9824. <productMenu id="bluetoothIntercom"
  9825. type="1" >
  9826. </productMenu>
  9827. <productMenu id="deviceSetting"
  9828. type="1"
  9829. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9830. </productMenu>
  9831. <productMenu id="quickGuide"
  9832. type="1"
  9833. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9834. size="842KB" >
  9835. </productMenu>
  9836. <productMenu id="userGuide"
  9837. type="1"
  9838. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9839. size="1.02MB" >
  9840. </productMenu>
  9841. <productID id="6320"
  9842. />
  9843. <productGroupable type="0"
  9844. />
  9845. </product>
  9846. <product id="AConnect"
  9847. name="Alpinestars A-Connect"
  9848. series="60"
  9849. latestVersion="1.0.2"
  9850. latestVersionMesh="0.19"
  9851. latestVersionVoicePrompt="1.6"
  9852. show = "-1" >
  9853. <productMenu id="protocol"
  9854. type="2" >
  9855. </productMenu>
  9856. <productMenu id="ota"
  9857. type="2" >
  9858. <otaLanguages>
  9859. <otaLanguage
  9860. id="0"
  9861. name="English"
  9862. package="0"
  9863. />
  9864. <otaLanguage
  9865. id="0"
  9866. name="French"
  9867. package="1"
  9868. />
  9869. <otaLanguage
  9870. id="0"
  9871. name="Spanish"
  9872. package="2"
  9873. />
  9874. <otaLanguage
  9875. id="0"
  9876. name="Italian"
  9877. package="3"
  9878. />
  9879. <otaLanguage
  9880. id="0"
  9881. name="German"
  9882. package="4"
  9883. />
  9884. <otaLanguage
  9885. id="0"
  9886. name="Dutch"
  9887. package="5"
  9888. />
  9889. <otaLanguage
  9890. id="0"
  9891. name="Russian"
  9892. package="6"
  9893. />
  9894. <otaLanguage
  9895. id="0"
  9896. name="Chinese"
  9897. package="7"
  9898. />
  9899. <otaLanguage
  9900. id="0"
  9901. name="Korean"
  9902. package="8"
  9903. />
  9904. <otaLanguage
  9905. id="0"
  9906. name="Japanese"
  9907. package="9"
  9908. />
  9909. <otaLanguage
  9910. id="0"
  9911. name="Finnish"
  9912. package="10"
  9913. />
  9914. <otaLanguage
  9915. id="0"
  9916. name="Polish"
  9917. package="11"
  9918. />
  9919. </otaLanguages>
  9920. <otaPackages>
  9921. <package
  9922. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9923. size="5183988"
  9924. />
  9925. <package
  9926. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9927. size="5183988"
  9928. />
  9929. <package
  9930. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9931. size="5183988"
  9932. />
  9933. <package
  9934. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9935. size="5183988"
  9936. />
  9937. <package
  9938. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9939. size="5183988"
  9940. />
  9941. <package
  9942. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9943. size="5183988"
  9944. />
  9945. <package
  9946. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9947. size="5183988"
  9948. />
  9949. <package
  9950. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9951. size="5183988"
  9952. />
  9953. <package
  9954. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9955. size="5183988"
  9956. />
  9957. <package
  9958. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9959. size="5183988"
  9960. />
  9961. <package
  9962. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9963. size="5183988"
  9964. />
  9965. <package
  9966. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9967. size="5183988"
  9968. />
  9969. </otaPackages>
  9970. </productMenu>
  9971. <productMenu id="sip"
  9972. type="1" >
  9973. </productMenu>
  9974. <productMenu id="illusion"
  9975. type="0" >
  9976. </productMenu>
  9977. <productMenu id="meshIntercom+"
  9978. type="3"
  9979. url="2" >
  9980. </productMenu>
  9981. <productMenu id="waveIntercom"
  9982. type="1" >
  9983. </productMenu>
  9984. <productMenu id="bluetoothIntercom"
  9985. type="1"
  9986. url="2" >
  9987. </productMenu>
  9988. <productMenu id="bluetoothIntercomGrouping"
  9989. type="0" >
  9990. </productMenu>
  9991. <productMenu id="fmradio"
  9992. type="1"
  9993. url="1" >
  9994. </productMenu>
  9995. <productMenu id="phone"
  9996. type="1" >
  9997. </productMenu>
  9998. <productMenu id="music"
  9999. type="1" >
  10000. </productMenu>
  10001. <productMenu id="musicSharing"
  10002. type="0" >
  10003. </productMenu>
  10004. <productMenu id="deviceSetting"
  10005. type="1"
  10006. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  10007. </productMenu>
  10008. <productMenu id="quickGuide"
  10009. type="0"
  10010. url=""
  10011. size="1.12MB" >
  10012. </productMenu>
  10013. <productMenu id="userGuide"
  10014. type="0"
  10015. url=""
  10016. size="2.0MB" >
  10017. </productMenu>
  10018. <productMenu id="videoGuide"
  10019. type="0"
  10020. url=""
  10021. size="3.41MB" >
  10022. </productMenu>
  10023. <productMenu id="volume"
  10024. type="16" >
  10025. </productMenu>
  10026. <productMenu id="volume+"
  10027. type="2"
  10028. url="0x6004" >
  10029. </productMenu>
  10030. <productMenu id="soundMode"
  10031. type="0" >
  10032. </productMenu>
  10033. <productMenu id="battery"
  10034. type="1" >
  10035. </productMenu>
  10036. <productID id="6A82"
  10037. />
  10038. <productGroupable type="0"
  10039. />
  10040. </product>
  10041. <product id="iCon"
  10042. name="iCon"
  10043. series="50"
  10044. latestVersion="1.2"
  10045. show = "0" >
  10046. <productMenu id="protocol"
  10047. type="2" >
  10048. </productMenu>
  10049. <productMenu id="alexa"
  10050. type="0" >
  10051. </productMenu>
  10052. <productMenu id="wa"
  10053. type="0" >
  10054. </productMenu>
  10055. <productMenu id="sip"
  10056. type="1" >
  10057. </productMenu>
  10058. <productMenu id="led"
  10059. type="3" >
  10060. </productMenu>
  10061. <productMenu id="meshIntercom"
  10062. type="20" >
  10063. </productMenu>
  10064. <productMenu id="meshIntercom+"
  10065. type="3"
  10066. url="0" >
  10067. <productMenuType version="1.0.9"
  10068. type="2"
  10069. />
  10070. </productMenu>
  10071. <productMenu id="bluetoothIntercom"
  10072. type="1" >
  10073. </productMenu>
  10074. <productMenu id="phone"
  10075. type="1" >
  10076. </productMenu>
  10077. <productMenu id="music"
  10078. type="1" >
  10079. </productMenu>
  10080. <productMenu id="fmradio"
  10081. type="1" >
  10082. </productMenu>
  10083. <productMenu id="deviceSetting"
  10084. type="1"
  10085. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  10086. <productMenuURL version="1.0.9"
  10087. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10088. />
  10089. </productMenu>
  10090. <productMenu id="quickGuide"
  10091. type="1"
  10092. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  10093. size="344KB" >
  10094. </productMenu>
  10095. <productMenu id="userGuide"
  10096. type="1"
  10097. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  10098. size="3.41MB" >
  10099. </productMenu>
  10100. <productMenu id="volume"
  10101. type="11" >
  10102. </productMenu>
  10103. <productMenu id="battery"
  10104. type="1" >
  10105. </productMenu>
  10106. <productID id="3900"
  10107. />
  10108. <productGroupable type="0"
  10109. />
  10110. </product>
  10111. <product id="ICONHelmLinkSL"
  10112. name="ICON HelmLink SL"
  10113. series="50"
  10114. latestVersion="1.0"
  10115. latestVersionVoicePrompt="1.6"
  10116. show = "-1" >
  10117. <productMenu id="protocol"
  10118. type="2" >
  10119. </productMenu>
  10120. <productMenu id="alexa"
  10121. type="0" >
  10122. </productMenu>
  10123. <productMenu id="ota"
  10124. type="0" >
  10125. <otaPackages>
  10126. <package
  10127. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  10128. size="2945812"
  10129. />
  10130. </otaPackages>
  10131. </productMenu>
  10132. <productMenu id="wa"
  10133. type="0" >
  10134. </productMenu>
  10135. <productMenu id="meshIntercom"
  10136. type="30" >
  10137. </productMenu>
  10138. <productMenu id="meshIntercom+"
  10139. type="3"
  10140. url="2" >
  10141. </productMenu>
  10142. <productMenu id="waveIntercom"
  10143. type="1" >
  10144. </productMenu>
  10145. <productMenu id="phone"
  10146. type="1" >
  10147. </productMenu>
  10148. <productMenu id="music"
  10149. type="1" >
  10150. </productMenu>
  10151. <productMenu id="musicSharing"
  10152. type="0" >
  10153. </productMenu>
  10154. <productMenu id="deviceSetting"
  10155. type="1"
  10156. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  10157. </productMenu>
  10158. <productMenu id="quickGuide"
  10159. type="0"
  10160. url=""
  10161. size="1.12MB" >
  10162. </productMenu>
  10163. <productMenu id="userGuide"
  10164. type="1"
  10165. url=""
  10166. size="2.0MB" >
  10167. </productMenu>
  10168. <productMenu id="volume"
  10169. type="12" >
  10170. </productMenu>
  10171. <productMenu id="battery"
  10172. type="1" >
  10173. </productMenu>
  10174. <productID id="6842"
  10175. />
  10176. <productGroupable type="0"
  10177. />
  10178. </product>
  10179. <product id="HD50S"
  10180. name="H-D Audio 50S"
  10181. series="50"
  10182. latestVersion="1.0.1"
  10183. show = "-1" >
  10184. <productMenu id="protocol"
  10185. type="2" >
  10186. </productMenu>
  10187. <productMenu id="alexa"
  10188. type="0" >
  10189. </productMenu>
  10190. <productMenu id="ota"
  10191. type="0"
  10192. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10193. size="1150234" >
  10194. </productMenu>
  10195. <productMenu id="wa"
  10196. type="1" >
  10197. </productMenu>
  10198. <productMenu id="sip"
  10199. type="1" >
  10200. </productMenu>
  10201. <productMenu id="meshIntercom"
  10202. type="20" >
  10203. </productMenu>
  10204. <productMenu id="meshIntercom+"
  10205. type="3"
  10206. url="0" >
  10207. <productMenuType version="1.0.9"
  10208. type="2"
  10209. />
  10210. </productMenu>
  10211. <productMenu id="bluetoothIntercom"
  10212. type="1" >
  10213. </productMenu>
  10214. <productMenu id="phone"
  10215. type="1" >
  10216. </productMenu>
  10217. <productMenu id="music"
  10218. type="1" >
  10219. </productMenu>
  10220. <productMenu id="fmradio"
  10221. type="1" >
  10222. </productMenu>
  10223. <productMenu id="deviceSetting"
  10224. type="1"
  10225. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10226. <productMenuURL version="1.0.9"
  10227. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10228. />
  10229. </productMenu>
  10230. <productMenu id="quickGuide"
  10231. type="1"
  10232. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10233. size="934KB" >
  10234. </productMenu>
  10235. <productMenu id="userGuide"
  10236. type="1"
  10237. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  10238. size="1.14MB" >
  10239. </productMenu>
  10240. <productMenu id="volume"
  10241. type="11" >
  10242. </productMenu>
  10243. <productMenu id="battery"
  10244. type="1" >
  10245. </productMenu>
  10246. <productID id="3156"
  10247. />
  10248. <productGroupable type="0"
  10249. />
  10250. </product>
  10251. <product id="HD50S"
  10252. name="H-D Audio 50S"
  10253. series="50"
  10254. latestVersion="2.0.2"
  10255. show = "0" >
  10256. <productMenu id="protocol"
  10257. type="2" >
  10258. </productMenu>
  10259. <productMenu id="alexa"
  10260. type="0" >
  10261. </productMenu>
  10262. <productMenu id="ota"
  10263. type="0"
  10264. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10265. size="1150234" >
  10266. </productMenu>
  10267. <productMenu id="wa"
  10268. type="1" >
  10269. </productMenu>
  10270. <productMenu id="sip"
  10271. type="1" >
  10272. </productMenu>
  10273. <productMenu id="meshIntercom"
  10274. type="20" >
  10275. </productMenu>
  10276. <productMenu id="meshIntercom+"
  10277. type="3"
  10278. url="0" >
  10279. <productMenuType version="2.0.9"
  10280. type="2"
  10281. />
  10282. </productMenu>
  10283. <productMenu id="bluetoothIntercom"
  10284. type="1" >
  10285. </productMenu>
  10286. <productMenu id="phone"
  10287. type="1" >
  10288. </productMenu>
  10289. <productMenu id="music"
  10290. type="1" >
  10291. </productMenu>
  10292. <productMenu id="fmradio"
  10293. type="1" >
  10294. </productMenu>
  10295. <productMenu id="deviceSetting"
  10296. type="1"
  10297. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10298. <productMenuURL version="2.0.9"
  10299. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10300. />
  10301. </productMenu>
  10302. <productMenu id="quickGuide"
  10303. type="1"
  10304. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10305. size="934KB" >
  10306. </productMenu>
  10307. <productMenu id="userGuide"
  10308. type="1"
  10309. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  10310. size="1.14MB" >
  10311. </productMenu>
  10312. <productMenu id="volume"
  10313. type="11" >
  10314. </productMenu>
  10315. <productMenu id="battery"
  10316. type="1" >
  10317. </productMenu>
  10318. <productID id="3213"
  10319. />
  10320. <productGroupable type="0"
  10321. />
  10322. </product>
  10323. <product id="HD50C"
  10324. name="H-D Audio 50C"
  10325. series="50"
  10326. latestVersion="1.0.1"
  10327. show = "0" >
  10328. <productMenu id="protocol"
  10329. type="2" >
  10330. </productMenu>
  10331. <productMenu id="ota"
  10332. type="0" >
  10333. </productMenu>
  10334. <productMenu id="wa"
  10335. type="1" >
  10336. </productMenu>
  10337. <productMenu id="sip"
  10338. type="1" >
  10339. </productMenu>
  10340. <productMenu id="meshIntercom"
  10341. type="20" >
  10342. </productMenu>
  10343. <productMenu id="meshIntercom+"
  10344. type="3"
  10345. url="0" >
  10346. <productMenuType version="1.0.9"
  10347. type="2"
  10348. />
  10349. </productMenu>
  10350. <productMenu id="bluetoothIntercom"
  10351. type="1" >
  10352. </productMenu>
  10353. <productMenu id="phone"
  10354. type="1" >
  10355. </productMenu>
  10356. <productMenu id="music"
  10357. type="1" >
  10358. </productMenu>
  10359. <productMenu id="fmradio"
  10360. type="1" >
  10361. </productMenu>
  10362. <productMenu id="deviceSetting"
  10363. type="1"
  10364. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10365. <productMenuURL version="1.0.9"
  10366. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10367. />
  10368. </productMenu>
  10369. <productMenu id="quickGuide"
  10370. type="1"
  10371. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10372. size="344KB" >
  10373. </productMenu>
  10374. <productMenu id="userGuide"
  10375. type="1"
  10376. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10377. size="3.41MB" >
  10378. </productMenu>
  10379. <productMenu id="volume"
  10380. type="11" >
  10381. </productMenu>
  10382. <productMenu id="battery"
  10383. type="1" >
  10384. </productMenu>
  10385. <productID id="3240"
  10386. />
  10387. <productGroupable type="0"
  10388. />
  10389. </product>
  10390. <product id="HD50S"
  10391. name="FURY N04"
  10392. series="Helmet"
  10393. latestVersion="1.0"
  10394. show = "0" >
  10395. <productMenu id="protocol"
  10396. type="2" >
  10397. </productMenu>
  10398. <productMenu id="alexa"
  10399. type="0" >
  10400. </productMenu>
  10401. <productMenu id="ota"
  10402. type="0" >
  10403. </productMenu>
  10404. <productMenu id="wa"
  10405. type="0" >
  10406. </productMenu>
  10407. <productMenu id="meshIntercom"
  10408. type="20" >
  10409. </productMenu>
  10410. <productMenu id="meshIntercom+"
  10411. type="3"
  10412. url="0" >
  10413. <productMenuType version="1.0.9"
  10414. type="2"
  10415. />
  10416. </productMenu>
  10417. <productMenu id="phone"
  10418. type="1" >
  10419. </productMenu>
  10420. <productMenu id="music"
  10421. type="1" >
  10422. </productMenu>
  10423. <productMenu id="fmradio"
  10424. type="1" >
  10425. </productMenu>
  10426. <productMenu id="deviceSetting"
  10427. type="1"
  10428. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10429. <productMenuURL version="1.0.9"
  10430. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10431. />
  10432. </productMenu>
  10433. <productMenu id="quickGuide"
  10434. type="1"
  10435. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10436. size="1.12MB" >
  10437. </productMenu>
  10438. <productMenu id="userGuide"
  10439. type="1"
  10440. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10441. size="2.0MB" >
  10442. </productMenu>
  10443. <productMenu id="volume"
  10444. type="13" >
  10445. </productMenu>
  10446. <productMenu id="battery"
  10447. type="1" >
  10448. </productMenu>
  10449. <productID id="5553"
  10450. />
  10451. <productGroupable type="0"
  10452. />
  10453. </product>
  10454. <product id="XCOM3Pro"
  10455. name="X-COM3 Pro"
  10456. series="50"
  10457. latestVersion="1.1"
  10458. show = "0" >
  10459. <productMenu id="protocol"
  10460. type="2" >
  10461. </productMenu>
  10462. <productMenu id="alexa"
  10463. type="0" >
  10464. </productMenu>
  10465. <productMenu id="ota"
  10466. type="0" >
  10467. </productMenu>
  10468. <productMenu id="wa"
  10469. type="0" >
  10470. </productMenu>
  10471. <productMenu id="sip"
  10472. type="1" >
  10473. </productMenu>
  10474. <productMenu id="meshIntercom"
  10475. type="30" >
  10476. </productMenu>
  10477. <productMenu id="meshIntercom+"
  10478. type="3"
  10479. url="2" >
  10480. <productMenuType version="1.1"
  10481. type="2"
  10482. />
  10483. </productMenu>
  10484. <productMenu id="waveIntercom"
  10485. type="1" >
  10486. <productMenuType version="1.1"
  10487. type="0"
  10488. />
  10489. </productMenu>
  10490. <productMenu id="bluetoothIntercom"
  10491. type="1" >
  10492. </productMenu>
  10493. <productMenu id="phone"
  10494. type="1" >
  10495. </productMenu>
  10496. <productMenu id="music"
  10497. type="1" >
  10498. </productMenu>
  10499. <productMenu id="fmradio"
  10500. type="1" >
  10501. </productMenu>
  10502. <productMenu id="deviceSetting"
  10503. type="1"
  10504. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10505. <productMenuURL version="1.1"
  10506. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10507. />
  10508. </productMenu>
  10509. <productMenu id="quickGuide"
  10510. type="0"
  10511. url=""
  10512. size="344KB" >
  10513. </productMenu>
  10514. <productMenu id="userGuide"
  10515. type="1"
  10516. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10517. size="3.41MB" >
  10518. </productMenu>
  10519. <productMenu id="volume"
  10520. type="11" >
  10521. </productMenu>
  10522. <productMenu id="battery"
  10523. type="1" >
  10524. </productMenu>
  10525. <productID id="321A"
  10526. />
  10527. <productGroupable type="0"
  10528. />
  10529. </product>
  10530. <product id="XCOM3"
  10531. name="X-COM3"
  10532. series="20"
  10533. latestVersion="1.0"
  10534. show = "0" >
  10535. <productMenu id="protocol"
  10536. type="2" >
  10537. </productMenu>
  10538. <productMenu id="sip"
  10539. type="1" >
  10540. </productMenu>
  10541. <productMenu id="bluetoothIntercom"
  10542. type="1" >
  10543. </productMenu>
  10544. <productMenu id="phone"
  10545. type="1" >
  10546. </productMenu>
  10547. <productMenu id="music"
  10548. type="1" >
  10549. </productMenu>
  10550. <productMenu id="fmradio"
  10551. type="1" >
  10552. </productMenu>
  10553. <productMenu id="deviceSetting"
  10554. type="1"
  10555. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10556. </productMenu>
  10557. <productMenu id="quickGuide"
  10558. type="0"
  10559. url=""
  10560. size="934KB" >
  10561. </productMenu>
  10562. <productMenu id="userGuide"
  10563. type="1"
  10564. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10565. size="1.14MB" >
  10566. </productMenu>
  10567. <productMenu id="volume"
  10568. type="15" >
  10569. </productMenu>
  10570. <productID id="3410"
  10571. />
  10572. <productGroupable type="0"
  10573. />
  10574. </product>
  10575. <product id="X-COM2"
  10576. name="X-COM2"
  10577. series="20"
  10578. latestVersion="1.0.5"
  10579. show = "0" >
  10580. <productMenu id="protocol"
  10581. type="0">
  10582. </productMenu>
  10583. <productMenu id="sip"
  10584. type="1" >
  10585. </productMenu>
  10586. <productMenu id="bluetoothIntercom"
  10587. type="1" >
  10588. </productMenu>
  10589. <productMenu id="intercomSetting"
  10590. type="1" >
  10591. </productMenu>
  10592. <productMenu id="phone"
  10593. type="2" >
  10594. </productMenu>
  10595. <productMenu id="fmradio"
  10596. type="3" >
  10597. </productMenu>
  10598. <productMenu id="deviceSetting"
  10599. type="1"
  10600. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10601. </productMenu>
  10602. <productMenu id="quickGuide"
  10603. type="1"
  10604. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10605. size="796KB" >
  10606. </productMenu>
  10607. <productMenu id="userGuide"
  10608. type="1"
  10609. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10610. size="1.90MB" >
  10611. </productMenu>
  10612. <productID id="2030"
  10613. />
  10614. <productGroupable type="1"
  10615. />
  10616. </product>
  10617. <product id="AVAABC"
  10618. name="AVA ABC"
  10619. series="SPIDER"
  10620. latestVersion="1.1"
  10621. show = "0" >
  10622. <productMenu id="protocol"
  10623. type="2" >
  10624. </productMenu>
  10625. <productMenu id="alexa"
  10626. type="0" >
  10627. </productMenu>
  10628. <productMenu id="ota"
  10629. type="0" >
  10630. <productMenuType version="1.0"
  10631. type="0"
  10632. />
  10633. <otaPackages>
  10634. <package
  10635. url="https://api.sena.com/support/OTA/"
  10636. size="2945812"
  10637. />
  10638. </otaPackages>
  10639. </productMenu>
  10640. <productMenu id="wa"
  10641. type="0" >
  10642. </productMenu>
  10643. <productMenu id="meshIntercom"
  10644. type="30" >
  10645. <productMenuType version="1.0"
  10646. type="20"
  10647. />
  10648. </productMenu>
  10649. <productMenu id="meshIntercom+"
  10650. type="3"
  10651. url="2" >
  10652. <productMenuType version="1.0"
  10653. type="2"
  10654. />
  10655. <productMenuURL version="1.0"
  10656. url="0"
  10657. />
  10658. </productMenu>
  10659. <productMenu id="waveIntercom"
  10660. type="1" >
  10661. <productMenuType version="1.0"
  10662. type="0"
  10663. />
  10664. </productMenu>
  10665. <productMenu id="phone"
  10666. type="1" >
  10667. </productMenu>
  10668. <productMenu id="music"
  10669. type="1" >
  10670. </productMenu>
  10671. <productMenu id="musicSharing"
  10672. type="0" >
  10673. </productMenu>
  10674. <productMenu id="deviceSetting"
  10675. type="1"
  10676. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10677. <productMenuURL version="1.0"
  10678. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10679. />
  10680. </productMenu>
  10681. <productMenu id="quickGuide"
  10682. type="1"
  10683. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10684. size="1.12MB" >
  10685. </productMenu>
  10686. <productMenu id="userGuide"
  10687. type="1"
  10688. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10689. size="2.0MB" >
  10690. </productMenu>
  10691. <productMenu id="volume"
  10692. type="12" >
  10693. </productMenu>
  10694. <productMenu id="battery"
  10695. type="1" >
  10696. </productMenu>
  10697. <productID id="6808"
  10698. />
  10699. <productGroupable type="0"
  10700. />
  10701. </product>
  10702. <product id="ADVANCEProCOM2"
  10703. name="ADVANCE ProCOM 2"
  10704. series="Helmet"
  10705. latestVersion="0.5"
  10706. latestVersionVoicePrompt="0.3"
  10707. show = "-1" >
  10708. <productMenu id="protocol"
  10709. type="2" >
  10710. </productMenu>
  10711. <productMenu id="ota"
  10712. type="2" >
  10713. <otaLanguages>
  10714. <otaLanguage
  10715. id="0"
  10716. name="English"
  10717. package="0"
  10718. />
  10719. <otaLanguage
  10720. id="0"
  10721. name="French"
  10722. package="1"
  10723. />
  10724. <otaLanguage
  10725. id="0"
  10726. name="Spanish"
  10727. package="2"
  10728. />
  10729. <otaLanguage
  10730. id="0"
  10731. name="Italian"
  10732. package="3"
  10733. />
  10734. <otaLanguage
  10735. id="0"
  10736. name="German"
  10737. package="4"
  10738. />
  10739. <otaLanguage
  10740. id="0"
  10741. name="Dutch"
  10742. package="5"
  10743. />
  10744. <otaLanguage
  10745. id="0"
  10746. name="Russian"
  10747. package="6"
  10748. />
  10749. <otaLanguage
  10750. id="0"
  10751. name="Chinese"
  10752. package="7"
  10753. />
  10754. <otaLanguage
  10755. id="0"
  10756. name="Korean"
  10757. package="8"
  10758. />
  10759. <otaLanguage
  10760. id="0"
  10761. name="Japanese"
  10762. package="9"
  10763. />
  10764. <otaLanguage
  10765. id="0"
  10766. name="Finnish"
  10767. package="10"
  10768. />
  10769. <otaLanguage
  10770. id="0"
  10771. name="Polish"
  10772. package="11"
  10773. />
  10774. </otaLanguages>
  10775. <otaPackages>
  10776. <package
  10777. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10778. size="5183988"
  10779. />
  10780. <package
  10781. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10782. size="5183988"
  10783. />
  10784. <package
  10785. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10786. size="5183988"
  10787. />
  10788. <package
  10789. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10790. size="5183988"
  10791. />
  10792. <package
  10793. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10794. size="5183988"
  10795. />
  10796. <package
  10797. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10798. size="5183988"
  10799. />
  10800. <package
  10801. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10802. size="5183988"
  10803. />
  10804. <package
  10805. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10806. size="5183988"
  10807. />
  10808. <package
  10809. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10810. size="5183988"
  10811. />
  10812. <package
  10813. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10814. size="5183988"
  10815. />
  10816. <package
  10817. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10818. size="5183988"
  10819. />
  10820. <package
  10821. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10822. size="5183988"
  10823. />
  10824. </otaPackages>
  10825. </productMenu>
  10826. <productMenu id="wa"
  10827. type="0" >
  10828. </productMenu>
  10829. <productMenu id="meshIntercom"
  10830. type="30" >
  10831. </productMenu>
  10832. <productMenu id="meshIntercom+"
  10833. type="3"
  10834. url="2" >
  10835. </productMenu>
  10836. <productMenu id="waveIntercom"
  10837. type="1" >
  10838. </productMenu>
  10839. <productMenu id="fmradio"
  10840. type="1" >
  10841. </productMenu>
  10842. <productMenu id="phone"
  10843. type="0" >
  10844. </productMenu>
  10845. <productMenu id="music"
  10846. type="1" >
  10847. </productMenu>
  10848. <productMenu id="musicSharing"
  10849. type="0" >
  10850. </productMenu>
  10851. <productMenu id="deviceSetting"
  10852. type="1"
  10853. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10854. </productMenu>
  10855. <productMenu id="quickGuide"
  10856. type="0"
  10857. url=""
  10858. size="1.12MB" >
  10859. </productMenu>
  10860. <productMenu id="userGuide"
  10861. type="1"
  10862. url=""
  10863. size="2.0MB" >
  10864. </productMenu>
  10865. <productMenu id="videoGuide"
  10866. type="0"
  10867. url=""
  10868. size="3.41MB" >
  10869. </productMenu>
  10870. <productMenu id="connectGuide"
  10871. type="1"
  10872. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10873. size="1.12MB" >
  10874. </productMenu>
  10875. <productMenu id="volume"
  10876. type="16" >
  10877. </productMenu>
  10878. <productMenu id="battery"
  10879. type="1" >
  10880. </productMenu>
  10881. <productID id="6A85"
  10882. />
  10883. <productGroupable type="0"
  10884. />
  10885. </product>
  10886. <product id="Triumph_50S"
  10887. name="Triumph 50S"
  10888. series="50"
  10889. latestVersion="1.5"
  10890. show = "0" >
  10891. <productMenu id="protocol"
  10892. type="2" >
  10893. </productMenu>
  10894. <productMenu id="alexa"
  10895. type="0" >
  10896. </productMenu>
  10897. <productMenu id="ota"
  10898. type="0"
  10899. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10900. size="1150234" >
  10901. </productMenu>
  10902. <productMenu id="wa"
  10903. type="1" >
  10904. </productMenu>
  10905. <productMenu id="sip"
  10906. type="1" >
  10907. </productMenu>
  10908. <productMenu id="meshIntercom"
  10909. type="20" >
  10910. </productMenu>
  10911. <productMenu id="bluetoothIntercom"
  10912. type="1" >
  10913. </productMenu>
  10914. <productMenu id="meshIntercom+"
  10915. type="3"
  10916. url="2" >
  10917. <productMenuType version="1.2.9"
  10918. type="2"
  10919. />
  10920. <productMenuURL version="1.2.9"
  10921. url="0"
  10922. />
  10923. </productMenu>
  10924. <productMenu id="waveIntercom"
  10925. type="1" >
  10926. <productMenuType version="1.2.9"
  10927. type="0"
  10928. />
  10929. </productMenu>
  10930. <productMenu id="phone"
  10931. type="1" >
  10932. </productMenu>
  10933. <productMenu id="music"
  10934. type="1" >
  10935. </productMenu>
  10936. <productMenu id="fmradio"
  10937. type="1" >
  10938. </productMenu>
  10939. <productMenu id="deviceSetting"
  10940. type="1"
  10941. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10942. <productMenuURL version="1.2.9"
  10943. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10944. />
  10945. <productMenuURL version="1.0"
  10946. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10947. />
  10948. </productMenu>
  10949. <productMenu id="quickGuide"
  10950. type="1"
  10951. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10952. size="934KB" >
  10953. </productMenu>
  10954. <productMenu id="userGuide"
  10955. type="1"
  10956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10957. size="1.14MB" >
  10958. </productMenu>
  10959. <productMenu id="volume"
  10960. type="11" >
  10961. </productMenu>
  10962. <productMenu id="battery"
  10963. type="1" >
  10964. </productMenu>
  10965. <productID id="3264"
  10966. />
  10967. <productGroupable type="0"
  10968. />
  10969. </product>
  10970. <product id="RE50S"
  10971. name="RE 50S"
  10972. series="50"
  10973. latestVersion="2.7"
  10974. show = "0" >
  10975. <productMenu id="protocol"
  10976. type="2" >
  10977. </productMenu>
  10978. <productMenu id="alexa"
  10979. type="0" >
  10980. </productMenu>
  10981. <productMenu id="ota"
  10982. type="0"
  10983. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10984. size="1150234" >
  10985. </productMenu>
  10986. <productMenu id="wa"
  10987. type="1" >
  10988. </productMenu>
  10989. <productMenu id="sip"
  10990. type="1" >
  10991. </productMenu>
  10992. <productMenu id="meshIntercom"
  10993. type="30" >
  10994. </productMenu>
  10995. <productMenu id="meshIntercom+"
  10996. type="3"
  10997. url="2" >
  10998. <productMenuType version="2.5"
  10999. type="2"
  11000. />
  11001. </productMenu>
  11002. <productMenu id="waveIntercom"
  11003. type="1" >
  11004. <productMenuType version="2.5"
  11005. type="0"
  11006. />
  11007. </productMenu>
  11008. <productMenu id="bluetoothIntercom"
  11009. type="1" >
  11010. </productMenu>
  11011. <productMenu id="phone"
  11012. type="1" >
  11013. </productMenu>
  11014. <productMenu id="music"
  11015. type="1" >
  11016. </productMenu>
  11017. <productMenu id="fmradio"
  11018. type="1" >
  11019. </productMenu>
  11020. <productMenu id="deviceSetting"
  11021. type="1"
  11022. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  11023. <productMenuURL version="2.5.9"
  11024. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  11025. />
  11026. </productMenu>
  11027. <productMenu id="quickGuide"
  11028. type="1"
  11029. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  11030. size="934KB" >
  11031. </productMenu>
  11032. <productMenu id="userGuide"
  11033. type="1"
  11034. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  11035. size="1.14MB" >
  11036. </productMenu>
  11037. <productMenu id="videoGuide"
  11038. type="0"
  11039. url=""
  11040. size="3.41MB" >
  11041. </productMenu>
  11042. <productMenu id="volume"
  11043. type="11" >
  11044. </productMenu>
  11045. <productMenu id="battery"
  11046. type="1" >
  11047. </productMenu>
  11048. <productID id="321C"
  11049. />
  11050. <productGroupable type="0"
  11051. />
  11052. </product>
  11053. <product id="BMW_HELMET_II_U1"
  11054. name="BMW HELMET II U1"
  11055. series="50"
  11056. latestVersion="1.0"
  11057. show = "0" >
  11058. <productMenu id="protocol"
  11059. type="2" >
  11060. </productMenu>
  11061. <productMenu id="alexa"
  11062. type="0" >
  11063. </productMenu>
  11064. <productMenu id="sip"
  11065. type="1" >
  11066. </productMenu>
  11067. <productMenu id="meshIntercom"
  11068. type="20" >
  11069. </productMenu>
  11070. <productMenu id="bluetoothIntercom"
  11071. type="1" >
  11072. </productMenu>
  11073. <productMenu id="bluetoothIntercom2"
  11074. type="1" >
  11075. </productMenu>
  11076. <productMenu id="phone"
  11077. type="1" >
  11078. </productMenu>
  11079. <productMenu id="music"
  11080. type="1" >
  11081. </productMenu>
  11082. <productMenu id="fmradio"
  11083. type="1" >
  11084. </productMenu>
  11085. <productMenu id="deviceSetting"
  11086. type="1"
  11087. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  11088. </productMenu>
  11089. <productMenu id="quickGuide"
  11090. type="1"
  11091. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  11092. size="934KB" >
  11093. </productMenu>
  11094. <productMenu id="userGuide"
  11095. type="1"
  11096. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  11097. size="1.14MB" >
  11098. </productMenu>
  11099. <productMenu id="volume"
  11100. type="11" >
  11101. </productMenu>
  11102. <productMenu id="battery"
  11103. type="1" >
  11104. </productMenu>
  11105. <productID id="3260"
  11106. />
  11107. <productGroupable type="0"
  11108. />
  11109. </product>
  11110. <product id="OUTRUSHR"
  11111. name="CX935"
  11112. series="Helmet"
  11113. latestVersion="2.1"
  11114. show = "-1" >
  11115. <productMenu id="protocol"
  11116. type="3">
  11117. </productMenu>
  11118. <productMenu id="sip"
  11119. type="1" >
  11120. </productMenu>
  11121. <productMenu id="bluetoothIntercom"
  11122. type="1" >
  11123. </productMenu>
  11124. <productMenu id="phone"
  11125. type="1" >
  11126. </productMenu>
  11127. <productMenu id="fmradio"
  11128. type="0" >
  11129. </productMenu>
  11130. <productMenu id="deviceSetting"
  11131. type="1"
  11132. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  11133. </productMenu>
  11134. <productMenu id="userGuide"
  11135. type="1"
  11136. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  11137. size="660KB" >
  11138. </productMenu>
  11139. <productID id="5446"
  11140. />
  11141. <productGroupable type="0"
  11142. />
  11143. </product>
  11144. <product id="LSE_01"
  11145. name="LSE-01"
  11146. series="SF"
  11147. latestVersion="1.2.3"
  11148. show = "0" >
  11149. <productMenu id="protocol"
  11150. type="1"
  11151. url="3">
  11152. </productMenu>
  11153. <productMenu id="sip"
  11154. type="1" >
  11155. </productMenu>
  11156. <productMenu id="bluetoothIntercom"
  11157. type="1" >
  11158. </productMenu>
  11159. <productMenu id="phone"
  11160. type="1" >
  11161. </productMenu>
  11162. <productMenu id="music"
  11163. type="1" >
  11164. </productMenu>
  11165. <productMenu id="fmradio"
  11166. type="1" >
  11167. </productMenu>
  11168. <productMenu id="deviceSetting"
  11169. type="1"
  11170. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11171. <productMenuURL version="1.1"
  11172. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  11173. />
  11174. <productMenuURL version="1.0"
  11175. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  11176. />
  11177. </productMenu>
  11178. <productMenu id="quickGuide"
  11179. type="1"
  11180. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  11181. size="607KB" >
  11182. </productMenu>
  11183. <productMenu id="userGuide"
  11184. type="1"
  11185. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  11186. size="1.91MB" >
  11187. </productMenu>
  11188. <productMenu id="volume"
  11189. type="4" >
  11190. </productMenu>
  11191. <productID id="5416"
  11192. />
  11193. <productGroupable type="0"
  11194. />
  11195. </product>
  11196. <product id="AGV_ARK"
  11197. name="AGV ARK"
  11198. series="SF"
  11199. latestVersion="1.0.3"
  11200. show = "0" >
  11201. <productMenu id="protocol"
  11202. type="1"
  11203. url="3">
  11204. </productMenu>
  11205. <productMenu id="sip"
  11206. type="1" >
  11207. </productMenu>
  11208. <productMenu id="bluetoothIntercom"
  11209. type="1" >
  11210. </productMenu>
  11211. <productMenu id="phone"
  11212. type="1" >
  11213. </productMenu>
  11214. <productMenu id="music"
  11215. type="1" >
  11216. </productMenu>
  11217. <productMenu id="fmradio"
  11218. type="1" >
  11219. </productMenu>
  11220. <productMenu id="deviceSetting"
  11221. type="1"
  11222. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  11223. </productMenu>
  11224. <productMenu id="quickGuide"
  11225. type="1"
  11226. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  11227. size="607KB" >
  11228. </productMenu>
  11229. <productMenu id="userGuide"
  11230. type="1"
  11231. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  11232. size="1.91MB" >
  11233. </productMenu>
  11234. <productMenu id="volume"
  11235. type="4" >
  11236. </productMenu>
  11237. <productID id="5420"
  11238. />
  11239. <productGroupable type="0"
  11240. />
  11241. </product>
  11242. <product id="KLIM_KRIOS"
  11243. name="KLIM Krios"
  11244. series="10"
  11245. latestVersion="1.1.2"
  11246. show = "0" >
  11247. <productMenu id="protocol"
  11248. type="0">
  11249. </productMenu>
  11250. <productMenu id="sip"
  11251. type="1" >
  11252. </productMenu>
  11253. <productMenu id="bluetoothIntercom"
  11254. type="1" >
  11255. </productMenu>
  11256. <productMenu id="phone"
  11257. type="2" >
  11258. </productMenu>
  11259. <productMenu id="fmradio"
  11260. type="3" >
  11261. </productMenu>
  11262. <productMenu id="deviceSetting"
  11263. type="1"
  11264. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  11265. <productMenuURL version="1.0"
  11266. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  11267. />
  11268. </productMenu>
  11269. <productMenu id="quickGuide"
  11270. type="1"
  11271. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  11272. size="649KB" >
  11273. </productMenu>
  11274. <productMenu id="userGuide"
  11275. type="1"
  11276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  11277. size="1.43MB" >
  11278. </productMenu>
  11279. <productID id="5910"
  11280. />
  11281. <productGroupable type="0"
  11282. />
  11283. </product>
  11284. <product id="POLARIS_SLINGSHOT"
  11285. name="Polaris Slingshot"
  11286. series="10"
  11287. latestVersion="1.1.2"
  11288. show = "0" >
  11289. <productMenu id="protocol"
  11290. type="0">
  11291. </productMenu>
  11292. <productMenu id="sip"
  11293. type="1" >
  11294. </productMenu>
  11295. <productMenu id="bluetoothIntercom"
  11296. type="1" >
  11297. </productMenu>
  11298. <productMenu id="phone"
  11299. type="2" >
  11300. </productMenu>
  11301. <productMenu id="fmradio"
  11302. type="3" >
  11303. </productMenu>
  11304. <productMenu id="deviceSetting"
  11305. type="1"
  11306. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  11307. <productMenuURL version="1.0"
  11308. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  11309. />
  11310. </productMenu>
  11311. <productMenu id="quickGuide"
  11312. type="1"
  11313. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  11314. size="689KB" >
  11315. </productMenu>
  11316. <productMenu id="userGuide"
  11317. type="1"
  11318. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  11319. size="1.43MB" >
  11320. </productMenu>
  11321. <productID id="5920"
  11322. />
  11323. <productGroupable type="0"
  11324. />
  11325. </product>
  11326. <product id="DWO6"
  11327. name="SEDICI DWO6-PRO"
  11328. series="10"
  11329. latestVersion="1.0.2"
  11330. show = "0" >
  11331. <productMenu id="protocol"
  11332. type="0">
  11333. </productMenu>
  11334. <productMenu id="sip"
  11335. type="1" >
  11336. </productMenu>
  11337. <productMenu id="bluetoothIntercom"
  11338. type="1" >
  11339. </productMenu>
  11340. <productMenu id="phone"
  11341. type="2" >
  11342. </productMenu>
  11343. <productMenu id="fmradio"
  11344. type="3" >
  11345. </productMenu>
  11346. <productMenu id="deviceSetting"
  11347. type="1"
  11348. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  11349. </productMenu>
  11350. <productMenu id="quickGuide"
  11351. type="1"
  11352. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11353. size="529KB" >
  11354. </productMenu>
  11355. <productMenu id="userGuide"
  11356. type="1"
  11357. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11358. size="4.09MB" >
  11359. </productMenu>
  11360. <productID id="6112"
  11361. />
  11362. <productGroupable type="0"
  11363. />
  11364. </product>
  11365. <product id="DWO6A"
  11366. name="SEDICI DWO-6"
  11367. series="10"
  11368. latestVersion="1.0.2"
  11369. show = "0" >
  11370. <productMenu id="protocol"
  11371. type="0">
  11372. </productMenu>
  11373. <productMenu id="sip"
  11374. type="1" >
  11375. </productMenu>
  11376. <productMenu id="bluetoothIntercom"
  11377. type="1" >
  11378. </productMenu>
  11379. <productMenu id="phone"
  11380. type="2" >
  11381. </productMenu>
  11382. <productMenu id="fmradio"
  11383. type="3" >
  11384. </productMenu>
  11385. <productMenu id="deviceSetting"
  11386. type="1"
  11387. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11388. </productMenu>
  11389. <productMenu id="quickGuide"
  11390. type="1"
  11391. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11392. size="522KB" >
  11393. </productMenu>
  11394. <productMenu id="userGuide"
  11395. type="1"
  11396. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11397. size="2.71MB" >
  11398. </productMenu>
  11399. <productID id="6114"
  11400. />
  11401. <productGroupable type="0"
  11402. />
  11403. </product>
  11404. <product id="3SPLUS"
  11405. name="ZILL"
  11406. series="3"
  11407. latestVersion="1.0.4"
  11408. show = "0" >
  11409. <productMenu id="protocol"
  11410. type="0">
  11411. </productMenu>
  11412. <productMenu id="sip"
  11413. type="1" >
  11414. </productMenu>
  11415. <productMenu id="bluetoothIntercom"
  11416. type="1" >
  11417. </productMenu>
  11418. <productMenu id="deviceSetting"
  11419. type="1"
  11420. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11421. </productMenu>
  11422. <productMenu id="quickGuide"
  11423. type="1"
  11424. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11425. size="842KB" >
  11426. </productMenu>
  11427. <productMenu id="userGuide"
  11428. type="1"
  11429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11430. size="1.02MB" >
  11431. </productMenu>
  11432. <productID id="6335"
  11433. />
  11434. <productGroupable type="0"
  11435. />
  11436. </product>
  11437. <product id="HD50S"
  11438. name="Boom! Audio 30K"
  11439. series="30"
  11440. latestVersion="3.4"
  11441. show = "0" >
  11442. <productMenu id="protocol"
  11443. type="1"
  11444. url="0">
  11445. </productMenu>
  11446. <productMenu id="wa"
  11447. type="0" >
  11448. </productMenu>
  11449. <productMenu id="sip"
  11450. type="1" >
  11451. </productMenu>
  11452. <productMenu id="meshIntercom"
  11453. type="20" >
  11454. <productMenuType version="2.9.9"
  11455. type="10"
  11456. />
  11457. </productMenu>
  11458. <productMenu id="bluetoothIntercom"
  11459. type="1" >
  11460. </productMenu>
  11461. <productMenu id="phone"
  11462. type="1" >
  11463. </productMenu>
  11464. <productMenu id="music"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="fmradio"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="deviceSetting"
  11471. type="1"
  11472. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11473. <productMenuURL version="3.2"
  11474. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11475. />
  11476. <productMenuURL version="3.0"
  11477. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11478. />
  11479. <productMenuURL version="2.2"
  11480. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11481. />
  11482. </productMenu>
  11483. <productMenu id="quickGuide"
  11484. type="1"
  11485. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11486. size="1.06MB" >
  11487. </productMenu>
  11488. <productMenu id="userGuide"
  11489. type="1"
  11490. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11491. size="3.15MB" >
  11492. </productMenu>
  11493. <productMenu id="volume"
  11494. type="1" >
  11495. </productMenu>
  11496. <productID id="3112"
  11497. />
  11498. <productGroupable type="0"
  11499. />
  11500. </product>
  11501. <product id="HD50S"
  11502. name="Boom! Audio N02"
  11503. series="30"
  11504. latestVersion="3.1"
  11505. show = "0" >
  11506. <productMenu id="protocol"
  11507. type="1"
  11508. url="0">
  11509. </productMenu>
  11510. <productMenu id="wa"
  11511. type="2" >
  11512. </productMenu>
  11513. <productMenu id="sip"
  11514. type="1" >
  11515. </productMenu>
  11516. <productMenu id="meshIntercom"
  11517. type="20" >
  11518. <productMenuType version="2.9.9"
  11519. type="10"
  11520. />
  11521. </productMenu>
  11522. <productMenu id="bluetoothIntercom"
  11523. type="1" >
  11524. </productMenu>
  11525. <productMenu id="phone"
  11526. type="1" >
  11527. </productMenu>
  11528. <productMenu id="music"
  11529. type="1" >
  11530. </productMenu>
  11531. <productMenu id="fmradio"
  11532. type="1" >
  11533. </productMenu>
  11534. <productMenu id="deviceSetting"
  11535. type="1"
  11536. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11537. <productMenuURL version="2.2"
  11538. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11539. />
  11540. </productMenu>
  11541. <productMenu id="quickGuide"
  11542. type="1"
  11543. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11544. size="1.06MB" >
  11545. </productMenu>
  11546. <productMenu id="userGuide"
  11547. type="1"
  11548. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11549. size="3.15MB" >
  11550. </productMenu>
  11551. <productMenu id="volume"
  11552. type="2" >
  11553. </productMenu>
  11554. <productID id="3114"
  11555. />
  11556. <productGroupable type="0"
  11557. />
  11558. </product>
  11559. <product id="HD50S"
  11560. name="Boom Audio 20S"
  11561. series="50"
  11562. latestVersion="2.5.2"
  11563. show = "0" >
  11564. <productMenu id="protocol"
  11565. type="0">
  11566. </productMenu>
  11567. <productMenu id="sip"
  11568. type="1" >
  11569. <productMenuType version="1.0"
  11570. type="0"
  11571. />
  11572. </productMenu>
  11573. <productMenu id="bluetoothIntercom"
  11574. type="1" >
  11575. <productMenuType version="1.0"
  11576. type="0"
  11577. />
  11578. </productMenu>
  11579. <productMenu id="intercomSetting"
  11580. type="1" >
  11581. </productMenu>
  11582. <productMenu id="phone"
  11583. type="2" >
  11584. </productMenu>
  11585. <productMenu id="fmradio"
  11586. type="3" >
  11587. </productMenu>
  11588. <productMenu id="deviceSetting"
  11589. type="1"
  11590. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11591. <productMenuURL version="2.4"
  11592. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11593. />
  11594. <productMenuURL version="1.5"
  11595. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11596. />
  11597. <productMenuURL version="1.4.1"
  11598. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11599. />
  11600. <productMenuURL version="1.1"
  11601. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11602. />
  11603. <productMenuURL version="1.0"
  11604. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11605. />
  11606. </productMenu>
  11607. <productMenu id="quickGuide"
  11608. type="1"
  11609. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11610. size="264KB" >
  11611. </productMenu>
  11612. <productMenu id="userGuide"
  11613. type="1"
  11614. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11615. size="3.09MB" >
  11616. </productMenu>
  11617. <productMenu id="connectGuide"
  11618. type="1"
  11619. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11620. size="1.12MB" >
  11621. </productMenu>
  11622. <productID id="4210"
  11623. />
  11624. <productProductKey key="11"
  11625. />
  11626. <productID id="4230"
  11627. />
  11628. <productProductKey key="11"
  11629. />
  11630. <productGroupable type="1"
  11631. />
  11632. </product>
  11633. <product id="HD50S"
  11634. name="Boom Audio 20S EVO"
  11635. series="50"
  11636. latestVersion="2.5.2"
  11637. show = "0" >
  11638. <productMenu id="protocol"
  11639. type="0">
  11640. </productMenu>
  11641. <productMenu id="sip"
  11642. type="1" >
  11643. <productMenuType version="1.0"
  11644. type="0"
  11645. />
  11646. </productMenu>
  11647. <productMenu id="bluetoothIntercom"
  11648. type="1" >
  11649. <productMenuType version="1.0"
  11650. type="0"
  11651. />
  11652. </productMenu>
  11653. <productMenu id="intercomSetting"
  11654. type="1" >
  11655. </productMenu>
  11656. <productMenu id="phone"
  11657. type="2" >
  11658. </productMenu>
  11659. <productMenu id="fmradio"
  11660. type="3" >
  11661. </productMenu>
  11662. <productMenu id="deviceSetting"
  11663. type="1"
  11664. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11665. <productMenuURL version="2.4"
  11666. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11667. />
  11668. <productMenuURL version="1.5"
  11669. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11670. />
  11671. <productMenuURL version="1.4.1"
  11672. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11673. />
  11674. <productMenuURL version="1.1"
  11675. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11676. />
  11677. <productMenuURL version="1.0"
  11678. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11679. />
  11680. </productMenu>
  11681. <productMenu id="quickGuide"
  11682. type="1"
  11683. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11684. size="321KB" >
  11685. </productMenu>
  11686. <productMenu id="userGuide"
  11687. type="1"
  11688. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11689. size="2.46MB" >
  11690. </productMenu>
  11691. <productID id="4230"
  11692. />
  11693. <productProductKey key="27"
  11694. />
  11695. <productGroupable type="1"
  11696. />
  11697. </product>
  11698. <product id="HD50S"
  11699. name="Boom! Audio 10S"
  11700. series="50"
  11701. latestVersion="1.1.3"
  11702. show = "0" >
  11703. <productMenu id="protocol"
  11704. type="0">
  11705. </productMenu>
  11706. <productMenu id="sip"
  11707. type="1" >
  11708. </productMenu>
  11709. <productMenu id="bluetoothIntercom"
  11710. type="1" >
  11711. </productMenu>
  11712. <productMenu id="phone"
  11713. type="2" >
  11714. </productMenu>
  11715. <productMenu id="fmradio"
  11716. type="3" >
  11717. </productMenu>
  11718. <productMenu id="deviceSetting"
  11719. type="1"
  11720. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11721. </productMenu>
  11722. <productMenu id="quickGuide"
  11723. type="1"
  11724. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11725. size="538KB" >
  11726. </productMenu>
  11727. <productMenu id="userGuide"
  11728. type="1"
  11729. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11730. size="1.55MB" >
  11731. </productMenu>
  11732. <productID id="5532"
  11733. />
  11734. <productGroupable type="0"
  11735. />
  11736. </product>
  11737. <product id="HD50S"
  11738. name="Boom! Audio N01 10R"
  11739. series="50"
  11740. latestVersion="1.1.3"
  11741. show = "0" >
  11742. <productMenu id="protocol"
  11743. type="0">
  11744. </productMenu>
  11745. <productMenu id="sip"
  11746. type="1" >
  11747. </productMenu>
  11748. <productMenu id="bluetoothIntercom"
  11749. type="1" >
  11750. </productMenu>
  11751. <productMenu id="phone"
  11752. type="2" >
  11753. </productMenu>
  11754. <productMenu id="fmradio"
  11755. type="3" >
  11756. </productMenu>
  11757. <productMenu id="deviceSetting"
  11758. type="1"
  11759. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11760. </productMenu>
  11761. <productMenu id="quickGuide"
  11762. type="1"
  11763. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11764. size="766KB" >
  11765. </productMenu>
  11766. <productMenu id="userGuide"
  11767. type="1"
  11768. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11769. size="1.45MB" >
  11770. </productMenu>
  11771. <productID id="5522"
  11772. />
  11773. <productGroupable type="0"
  11774. />
  11775. </product>
  11776. <product id="HD50S"
  11777. name="OUTRUSH-R N03"
  11778. series="50"
  11779. latestVersion="1.2.1"
  11780. show = "-1" >
  11781. <productMenu id="protocol"
  11782. type="0">
  11783. </productMenu>
  11784. <productMenu id="sip"
  11785. type="1" >
  11786. </productMenu>
  11787. <productMenu id="bluetoothIntercom"
  11788. type="1" >
  11789. </productMenu>
  11790. <productMenu id="phone"
  11791. type="2" >
  11792. </productMenu>
  11793. <productMenu id="fmradio"
  11794. type="3" >
  11795. </productMenu>
  11796. <productMenu id="deviceSetting"
  11797. type="1"
  11798. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11799. </productMenu>
  11800. <productMenu id="userGuide"
  11801. type="1"
  11802. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11803. size="660KB" >
  11804. </productMenu>
  11805. <productID id="5434"
  11806. />
  11807. <productGroupable type="0"
  11808. />
  11809. </product>
  11810. <product id="HD50S"
  11811. name="OUTRUSH-R N03"
  11812. series="50"
  11813. latestVersion="2.0"
  11814. show = "0" >
  11815. <productMenu id="protocol"
  11816. type="3" >
  11817. </productMenu>
  11818. <productMenu id="sip"
  11819. type="1" >
  11820. </productMenu>
  11821. <productMenu id="bluetoothIntercom"
  11822. type="1" >
  11823. </productMenu>
  11824. <productMenu id="phone"
  11825. type="1" >
  11826. </productMenu>
  11827. <productMenu id="fmradio"
  11828. type="1" >
  11829. </productMenu>
  11830. <productMenu id="deviceSetting"
  11831. type="1"
  11832. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11833. </productMenu>
  11834. <productMenu id="userGuide"
  11835. type="1"
  11836. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11837. size="1.14MB" >
  11838. </productMenu>
  11839. <productID id="5441"
  11840. />
  11841. <productGroupable type="0"
  11842. />
  11843. </product>
  11844. <product id="5R"
  11845. name="5R"
  11846. series="5"
  11847. latestVersion="1.0.1"
  11848. show = "1" >
  11849. <productMenu id="protocol"
  11850. type="3" >
  11851. </productMenu>
  11852. <productMenu id="sip"
  11853. type="1" >
  11854. </productMenu>
  11855. <productMenu id="bluetoothIntercom"
  11856. type="1" >
  11857. </productMenu>
  11858. <productMenu id="phone"
  11859. type="1" >
  11860. </productMenu>
  11861. <productMenu id="fmradio"
  11862. type="1" >
  11863. </productMenu>
  11864. <productMenu id="deviceSetting"
  11865. type="1"
  11866. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11867. </productMenu>
  11868. <productMenu id="quickGuide"
  11869. type="0"
  11870. url=""
  11871. size="934KB" >
  11872. </productMenu>
  11873. <productMenu id="userGuide"
  11874. type="1"
  11875. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11876. size="1.14MB" >
  11877. </productMenu>
  11878. <productMenu id="connectGuide"
  11879. type="1"
  11880. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11881. size="1.12MB" >
  11882. </productMenu>
  11883. <productID id="5591"
  11884. />
  11885. <productGroupable type="0"
  11886. />
  11887. </product>
  11888. <product id="5R"
  11889. name="5R LITE"
  11890. series="5"
  11891. latestVersion="1.0.1"
  11892. show = "1" >
  11893. <productMenu id="protocol"
  11894. type="3" >
  11895. </productMenu>
  11896. <productMenu id="sip"
  11897. type="1" >
  11898. </productMenu>
  11899. <productMenu id="bluetoothIntercom"
  11900. type="1" >
  11901. </productMenu>
  11902. <productMenu id="phone"
  11903. type="1" >
  11904. </productMenu>
  11905. <productMenu id="fmradio"
  11906. type="1" >
  11907. </productMenu>
  11908. <productMenu id="deviceSetting"
  11909. type="1"
  11910. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11911. </productMenu>
  11912. <productMenu id="quickGuide"
  11913. type="0"
  11914. url=""
  11915. size="934KB" >
  11916. </productMenu>
  11917. <productMenu id="userGuide"
  11918. type="1"
  11919. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11920. size="1.14MB" >
  11921. </productMenu>
  11922. <productMenu id="connectGuide"
  11923. type="1"
  11924. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11925. size="1.12MB" >
  11926. </productMenu>
  11927. <productID id="5592"
  11928. />
  11929. <productGroupable type="0"
  11930. />
  11931. </product>
  11932. <product id="50RLE"
  11933. name="50R LE"
  11934. series="50"
  11935. latestVersion="1.1"
  11936. show = "0" >
  11937. <productMenu id="protocol"
  11938. type="2" >
  11939. </productMenu>
  11940. <productMenu id="alexa"
  11941. type="0" >
  11942. </productMenu>
  11943. <productMenu id="sip"
  11944. type="1" >
  11945. </productMenu>
  11946. <productMenu id="meshIntercom"
  11947. type="30" >
  11948. </productMenu>
  11949. <productMenu id="meshIntercom+"
  11950. type="3"
  11951. url="2" >
  11952. <productMenuType version="1.0.9"
  11953. type="2"
  11954. />
  11955. </productMenu>
  11956. <productMenu id="waveIntercom"
  11957. type="1" >
  11958. <productMenuType version="1.0.9"
  11959. type="0"
  11960. />
  11961. </productMenu>
  11962. <productMenu id="bluetoothIntercom"
  11963. type="1" >
  11964. </productMenu>
  11965. <productMenu id="phone"
  11966. type="1" >
  11967. </productMenu>
  11968. <productMenu id="music"
  11969. type="1" >
  11970. </productMenu>
  11971. <productMenu id="fmradio"
  11972. type="0" >
  11973. </productMenu>
  11974. <productMenu id="deviceSetting"
  11975. type="1"
  11976. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11977. <productMenuURL version="1.0.9"
  11978. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11979. />
  11980. </productMenu>
  11981. <productMenu id="quickGuide"
  11982. type="0"
  11983. url=""
  11984. size="344KB" >
  11985. </productMenu>
  11986. <productMenu id="userGuide"
  11987. type="0"
  11988. url=""
  11989. size="3.41MB" >
  11990. </productMenu>
  11991. <productMenu id="volume"
  11992. type="11" >
  11993. </productMenu>
  11994. <productMenu id="battery"
  11995. type="1" >
  11996. </productMenu>
  11997. <productID id="3223"
  11998. />
  11999. <productGroupable type="0"
  12000. />
  12001. </product>
  12002. <product id="5RLOUIS"
  12003. name="5R LOUIS EDITION"
  12004. series="5"
  12005. latestVersion="1.0"
  12006. show = "-1" >
  12007. <productMenu id="protocol"
  12008. type="3" >
  12009. </productMenu>
  12010. <productMenu id="sip"
  12011. type="1" >
  12012. </productMenu>
  12013. <productMenu id="bluetoothIntercom"
  12014. type="1" >
  12015. </productMenu>
  12016. <productMenu id="phone"
  12017. type="1" >
  12018. </productMenu>
  12019. <productMenu id="fmradio"
  12020. type="1" >
  12021. </productMenu>
  12022. <productMenu id="deviceSetting"
  12023. type="1"
  12024. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12025. </productMenu>
  12026. <productMenu id="quickGuide"
  12027. type="0"
  12028. url=""
  12029. size="934KB" >
  12030. </productMenu>
  12031. <productMenu id="userGuide"
  12032. type="0"
  12033. url=""
  12034. size="1.14MB" >
  12035. </productMenu>
  12036. <productID id="5597"
  12037. />
  12038. <productGroupable type="0"
  12039. />
  12040. </product>
  12041. <product id="5S"
  12042. name="Ridekont 5S"
  12043. series="5"
  12044. latestVersion="2.3"
  12045. show = "-1" >
  12046. <productMenu id="protocol"
  12047. type="3" >
  12048. </productMenu>
  12049. <productMenu id="sip"
  12050. type="1" >
  12051. </productMenu>
  12052. <productMenu id="bluetoothIntercom"
  12053. type="1" >
  12054. </productMenu>
  12055. <productMenu id="phone"
  12056. type="1" >
  12057. </productMenu>
  12058. <productMenu id="fmradio"
  12059. type="0" >
  12060. </productMenu>
  12061. <productMenu id="deviceSetting"
  12062. type="1"
  12063. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12064. </productMenu>
  12065. <productMenu id="quickGuide"
  12066. type="0"
  12067. url=""
  12068. size="934KB" >
  12069. </productMenu>
  12070. <productMenu id="userGuide"
  12071. type="1"
  12072. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  12073. size="1.14MB" >
  12074. </productMenu>
  12075. <productID id="5589"
  12076. />
  12077. <productGroupable type="0"
  12078. />
  12079. </product>
  12080. <product id="5R"
  12081. name="Ridekont 5R"
  12082. series="5"
  12083. latestVersion="1.0"
  12084. show = "0" >
  12085. <productMenu id="protocol"
  12086. type="3" >
  12087. </productMenu>
  12088. <productMenu id="sip"
  12089. type="1" >
  12090. </productMenu>
  12091. <productMenu id="bluetoothIntercom"
  12092. type="1" >
  12093. </productMenu>
  12094. <productMenu id="phone"
  12095. type="1" >
  12096. </productMenu>
  12097. <productMenu id="fmradio"
  12098. type="1" >
  12099. </productMenu>
  12100. <productMenu id="deviceSetting"
  12101. type="1"
  12102. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  12103. </productMenu>
  12104. <productMenu id="quickGuide"
  12105. type="1"
  12106. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  12107. size="934KB" >
  12108. </productMenu>
  12109. <productMenu id="userGuide"
  12110. type="1"
  12111. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  12112. size="1.14MB" >
  12113. </productMenu>
  12114. <productID id="5593"
  12115. />
  12116. <productGroupable type="0"
  12117. />
  12118. </product>
  12119. <product id="5R"
  12120. name="Ridekont 5R LITE"
  12121. series="5"
  12122. latestVersion="1.0"
  12123. show = "0" >
  12124. <productMenu id="protocol"
  12125. type="3" >
  12126. </productMenu>
  12127. <productMenu id="sip"
  12128. type="1" >
  12129. </productMenu>
  12130. <productMenu id="bluetoothIntercom"
  12131. type="1" >
  12132. </productMenu>
  12133. <productMenu id="phone"
  12134. type="1" >
  12135. </productMenu>
  12136. <productMenu id="fmradio"
  12137. type="1" >
  12138. </productMenu>
  12139. <productMenu id="deviceSetting"
  12140. type="1"
  12141. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  12142. </productMenu>
  12143. <productMenu id="quickGuide"
  12144. type="0"
  12145. url=""
  12146. size="934KB" >
  12147. </productMenu>
  12148. <productMenu id="userGuide"
  12149. type="1"
  12150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  12151. size="1.14MB" >
  12152. </productMenu>
  12153. <productID id="5594"
  12154. />
  12155. <productGroupable type="0"
  12156. />
  12157. </product>
  12158. <product id="SA30"
  12159. name="SA30"
  12160. series="SA"
  12161. latestVersion="1.0.1"
  12162. latestVersionVoicePrompt="0.15"
  12163. show = "-1" >
  12164. <productMenu id="protocol"
  12165. type="2" >
  12166. </productMenu>
  12167. <productMenu id="ota"
  12168. type="2" >
  12169. <otaPackages>
  12170. <package
  12171. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0.1-build0.img"
  12172. size="3144148"
  12173. />
  12174. </otaPackages>
  12175. </productMenu>
  12176. <productMenu id="meshIntercom"
  12177. type="30" >
  12178. </productMenu>
  12179. <productMenu id="meshIntercom+"
  12180. type="3"
  12181. url="2" >
  12182. </productMenu>
  12183. <productMenu id="phone"
  12184. type="1" >
  12185. </productMenu>
  12186. <productMenu id="music"
  12187. type="1" >
  12188. </productMenu>
  12189. <productMenu id="musicSharing"
  12190. type="0" >
  12191. </productMenu>
  12192. <productMenu id="deviceSetting"
  12193. type="1"
  12194. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  12195. </productMenu>
  12196. <productMenu id="quickGuide"
  12197. type="0"
  12198. url=""
  12199. size="1.12MB" >
  12200. </productMenu>
  12201. <productMenu id="userGuide"
  12202. type="1"
  12203. url=""
  12204. size="2.0MB" >
  12205. </productMenu>
  12206. <productMenu id="videoGuide"
  12207. type="0"
  12208. url=""
  12209. size="3.41MB" >
  12210. </productMenu>
  12211. <productMenu id="volume"
  12212. type="12" >
  12213. </productMenu>
  12214. <productMenu id="battery"
  12215. type="1" >
  12216. </productMenu>
  12217. <productID id="6852"
  12218. />
  12219. <productGroupable type="0"
  12220. />
  12221. </product>
  12222. <product id="I30"
  12223. name="I30"
  12224. series="I"
  12225. latestVersion="1.0.1"
  12226. latestVersionVoicePrompt="0.2"
  12227. show = "-1" >
  12228. <productMenu id="protocol"
  12229. type="2" >
  12230. </productMenu>
  12231. <productMenu id="ota"
  12232. type="2" >
  12233. <otaPackages>
  12234. <package
  12235. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0.1-build0.img"
  12236. size="3144148"
  12237. />
  12238. </otaPackages>
  12239. </productMenu>
  12240. <productMenu id="meshIntercom"
  12241. type="30" >
  12242. </productMenu>
  12243. <productMenu id="meshIntercom+"
  12244. type="3"
  12245. url="2" >
  12246. </productMenu>
  12247. <productMenu id="phone"
  12248. type="1" >
  12249. </productMenu>
  12250. <productMenu id="music"
  12251. type="1" >
  12252. </productMenu>
  12253. <productMenu id="musicSharing"
  12254. type="0" >
  12255. </productMenu>
  12256. <productMenu id="deviceSetting"
  12257. type="1"
  12258. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  12259. </productMenu>
  12260. <productMenu id="quickGuide"
  12261. type="0"
  12262. url=""
  12263. size="1.12MB" >
  12264. </productMenu>
  12265. <productMenu id="userGuide"
  12266. type="1"
  12267. url=""
  12268. size="2.10MB" >
  12269. </productMenu>
  12270. <productMenu id="videoGuide"
  12271. type="0"
  12272. url=""
  12273. size="3.11MB" >
  12274. </productMenu>
  12275. <productMenu id="volume"
  12276. type="12" >
  12277. </productMenu>
  12278. <productMenu id="battery"
  12279. type="1" >
  12280. </productMenu>
  12281. <productID id="6853"
  12282. />
  12283. <productGroupable type="0"
  12284. />
  12285. </product>
  12286. <product id="C30"
  12287. name="SENA C30"
  12288. series="C"
  12289. latestVersion="1.2.2"
  12290. latestVersionVoicePrompt="0.13"
  12291. show = "1" >
  12292. <productMenu id="protocol"
  12293. type="2" >
  12294. </productMenu>
  12295. <productMenu id="alexa"
  12296. type="0" >
  12297. </productMenu>
  12298. <productMenu id="ota"
  12299. type="2" >
  12300. <otaPackages>
  12301. <package
  12302. url="https://api.sena.com/support/OTA/Motorcycles/C30/SENA_C30-v1.2.2-build0.img"
  12303. size="3144148"
  12304. />
  12305. </otaPackages>
  12306. </productMenu>
  12307. <productMenu id="wa"
  12308. type="0" >
  12309. </productMenu>
  12310. <productMenu id="meshIntercom"
  12311. type="30" >
  12312. </productMenu>
  12313. <productMenu id="meshIntercom+"
  12314. type="3"
  12315. url="2" >
  12316. <productMenuType version="1.0.9"
  12317. type="2"
  12318. />
  12319. </productMenu>
  12320. <productMenu id="waveIntercom"
  12321. type="1" >
  12322. <productMenuType version="1.1.9"
  12323. type="0"
  12324. />
  12325. </productMenu>
  12326. <productMenu id="phone"
  12327. type="1" >
  12328. </productMenu>
  12329. <productMenu id="music"
  12330. type="1" >
  12331. </productMenu>
  12332. <productMenu id="musicSharing"
  12333. type="0" >
  12334. </productMenu>
  12335. <productMenu id="deviceSetting"
  12336. type="1"
  12337. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_09_zh_rCN.xml" >
  12338. <productMenuURL version="1.1.3"
  12339. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  12340. />
  12341. <productMenuURL version="1.0.9"
  12342. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  12343. />
  12344. </productMenu>
  12345. <productMenu id="quickGuide"
  12346. type="1"
  12347. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  12348. size="1.12MB" >
  12349. </productMenu>
  12350. <productMenu id="userGuide"
  12351. type="0"
  12352. url=""
  12353. size="2.0MB" >
  12354. </productMenu>
  12355. <productMenu id="videoGuide"
  12356. type="0"
  12357. url=""
  12358. size="3.41MB" >
  12359. </productMenu>
  12360. <productMenu id="volume"
  12361. type="12" >
  12362. </productMenu>
  12363. <productMenu id="battery"
  12364. type="1" >
  12365. </productMenu>
  12366. <productID id="683A"
  12367. />
  12368. <productGroupable type="0"
  12369. />
  12370. </product>
  12371. <product id="C20"
  12372. name="C20"
  12373. series="C"
  12374. latestVersion="1.0"
  12375. show = "1" >
  12376. <productMenu id="protocol"
  12377. type="3" >
  12378. </productMenu>
  12379. <productMenu id="sip"
  12380. type="1" >
  12381. </productMenu>
  12382. <productMenu id="bluetoothIntercom"
  12383. type="1" >
  12384. </productMenu>
  12385. <productMenu id="phone"
  12386. type="1" >
  12387. </productMenu>
  12388. <productMenu id="deviceSetting"
  12389. type="1"
  12390. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12391. </productMenu>
  12392. <productMenu id="quickGuide"
  12393. type="1"
  12394. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12395. size="934KB" >
  12396. </productMenu>
  12397. <productMenu id="userGuide"
  12398. type="1"
  12399. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12400. size="1.14MB" >
  12401. </productMenu>
  12402. <productID id="3701"
  12403. />
  12404. <productGroupable type="0"
  12405. />
  12406. </product>
  12407. <product id="C10"
  12408. name="C10"
  12409. series="C"
  12410. latestVersion="1.4.4"
  12411. show = "1" >
  12412. <productMenu id="protocol"
  12413. type="3" >
  12414. </productMenu>
  12415. <productMenu id="sip"
  12416. type="1" >
  12417. </productMenu>
  12418. <productMenu id="bluetoothIntercom"
  12419. type="1" >
  12420. </productMenu>
  12421. <productMenu id="phone"
  12422. type="1" >
  12423. </productMenu>
  12424. <productMenu id="fmradio"
  12425. type="0" >
  12426. </productMenu>
  12427. <productMenu id="deviceSetting"
  12428. type="1"
  12429. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12430. </productMenu>
  12431. <productMenu id="userGuide"
  12432. type="1"
  12433. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12434. size="1.14MB" >
  12435. </productMenu>
  12436. <productID id="5595"
  12437. />
  12438. <productGroupable type="0"
  12439. />
  12440. </product>
  12441. <product id="J30"
  12442. name="J30"
  12443. series="J"
  12444. latestVersion="1.2.2"
  12445. latestVersionVoicePrompt="0.14"
  12446. show = "0" >
  12447. <productMenu id="protocol"
  12448. type="2" >
  12449. </productMenu>
  12450. <productMenu id="alexa"
  12451. type="0" >
  12452. </productMenu>
  12453. <productMenu id="ota"
  12454. type="2" >
  12455. <otaPackages>
  12456. <package
  12457. url="https://api.sena.com/support/OTA/Motorcycles/J30/SENA_J30-v1.2.2-build1.img"
  12458. size="3144148"
  12459. />
  12460. </otaPackages>
  12461. </productMenu>
  12462. <productMenu id="wa"
  12463. type="0" >
  12464. </productMenu>
  12465. <productMenu id="meshIntercom"
  12466. type="30" >
  12467. </productMenu>
  12468. <productMenu id="meshIntercom+"
  12469. type="3"
  12470. url="2" >
  12471. <productMenuType version="1.0.9"
  12472. type="2"
  12473. />
  12474. </productMenu>
  12475. <productMenu id="waveIntercom"
  12476. type="1" >
  12477. <productMenuType version="1.1.9"
  12478. type="0"
  12479. />
  12480. </productMenu>
  12481. <productMenu id="phone"
  12482. type="1" >
  12483. </productMenu>
  12484. <productMenu id="music"
  12485. type="1" >
  12486. </productMenu>
  12487. <productMenu id="musicSharing"
  12488. type="0" >
  12489. </productMenu>
  12490. <productMenu id="deviceSetting"
  12491. type="1"
  12492. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12493. <productMenuURL version="1.0.9"
  12494. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12495. />
  12496. </productMenu>
  12497. <productMenu id="quickGuide"
  12498. type="0"
  12499. url=""
  12500. size="1.12MB" >
  12501. </productMenu>
  12502. <productMenu id="userGuide"
  12503. type="1"
  12504. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12505. size="2.0MB" >
  12506. </productMenu>
  12507. <productMenu id="videoGuide"
  12508. type="0"
  12509. url=""
  12510. size="3.41MB" >
  12511. </productMenu>
  12512. <productMenu id="volume"
  12513. type="12" >
  12514. </productMenu>
  12515. <productMenu id="battery"
  12516. type="1" >
  12517. </productMenu>
  12518. <productID id="6848"
  12519. />
  12520. <productGroupable type="0"
  12521. />
  12522. </product>
  12523. <product id="J10"
  12524. name="J10"
  12525. series="5"
  12526. latestVersion="1.1.4"
  12527. show = "0" >
  12528. <productMenu id="protocol"
  12529. type="3" >
  12530. </productMenu>
  12531. <productMenu id="sip"
  12532. type="1" >
  12533. </productMenu>
  12534. <productMenu id="bluetoothIntercom"
  12535. type="1" >
  12536. </productMenu>
  12537. <productMenu id="phone"
  12538. type="1" >
  12539. </productMenu>
  12540. <productMenu id="fmradio"
  12541. type="0" >
  12542. </productMenu>
  12543. <productMenu id="deviceSetting"
  12544. type="1"
  12545. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12546. </productMenu>
  12547. <productMenu id="userGuide"
  12548. type="1"
  12549. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12550. size="1.14MB" >
  12551. </productMenu>
  12552. <productID id="5598"
  12553. />
  12554. <productGroupable type="0"
  12555. />
  12556. </product>
  12557. <product id="B20"
  12558. name="B20"
  12559. series="B"
  12560. latestVersion="1.1.2"
  12561. latestVersionVoicePrompt="0.14"
  12562. show = "0" >
  12563. <productMenu id="protocol"
  12564. type="2" >
  12565. </productMenu>
  12566. <productMenu id="alexa"
  12567. type="0" >
  12568. </productMenu>
  12569. <productMenu id="ota"
  12570. type="2" >
  12571. <otaPackages>
  12572. <package
  12573. url="https://api.sena.com/support/OTA/Motorcycles/B20/SENA_B20-v1.1.2-build1.img"
  12574. size="3144148"
  12575. />
  12576. </otaPackages>
  12577. </productMenu>
  12578. <productMenu id="wa"
  12579. type="0" >
  12580. </productMenu>
  12581. <productMenu id="meshIntercom"
  12582. type="30" >
  12583. </productMenu>
  12584. <productMenu id="phone"
  12585. type="1" >
  12586. </productMenu>
  12587. <productMenu id="music"
  12588. type="1" >
  12589. </productMenu>
  12590. <productMenu id="musicSharing"
  12591. type="0" >
  12592. </productMenu>
  12593. <productMenu id="deviceSetting"
  12594. type="1"
  12595. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12596. <productMenuURL version="1.0.9"
  12597. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12598. />
  12599. </productMenu>
  12600. <productMenu id="quickGuide"
  12601. type="0"
  12602. url=""
  12603. size="1.12MB" >
  12604. </productMenu>
  12605. <productMenu id="userGuide"
  12606. type="1"
  12607. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12608. size="2.0MB" >
  12609. </productMenu>
  12610. <productMenu id="videoGuide"
  12611. type="0"
  12612. url=""
  12613. size="3.41MB" >
  12614. </productMenu>
  12615. <productMenu id="volume"
  12616. type="12" >
  12617. </productMenu>
  12618. <productMenu id="battery"
  12619. type="1" >
  12620. </productMenu>
  12621. <productID id="6847"
  12622. />
  12623. <productGroupable type="0"
  12624. />
  12625. </product>
  12626. <product id="B10"
  12627. name="B10"
  12628. series="5"
  12629. latestVersion="1.2.4"
  12630. show = "0" >
  12631. <productMenu id="protocol"
  12632. type="3" >
  12633. </productMenu>
  12634. <productMenu id="sip"
  12635. type="1" >
  12636. </productMenu>
  12637. <productMenu id="bluetoothIntercom"
  12638. type="1" >
  12639. </productMenu>
  12640. <productMenu id="phone"
  12641. type="1" >
  12642. </productMenu>
  12643. <productMenu id="fmradio"
  12644. type="0" >
  12645. </productMenu>
  12646. <productMenu id="deviceSetting"
  12647. type="1"
  12648. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12649. </productMenu>
  12650. <productMenu id="userGuide"
  12651. type="1"
  12652. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12653. size="1.14MB" >
  12654. </productMenu>
  12655. <productID id="5596"
  12656. />
  12657. <productGroupable type="0"
  12658. />
  12659. </product>
  12660. <product id="E30"
  12661. name="E30"
  12662. series="E"
  12663. latestVersion="1.1.2"
  12664. latestVersionVoicePrompt="0.14"
  12665. show = "0" >
  12666. <productMenu id="protocol"
  12667. type="2" >
  12668. </productMenu>
  12669. <productMenu id="alexa"
  12670. type="0" >
  12671. </productMenu>
  12672. <productMenu id="ota"
  12673. type="2" >
  12674. <otaPackages>
  12675. <package
  12676. url="https://api.sena.com/support/OTA/Motorcycles/E30/SENA_E30-v1.1.2-build1.img"
  12677. size="3144148"
  12678. />
  12679. </otaPackages>
  12680. </productMenu>
  12681. <productMenu id="wa"
  12682. type="0" >
  12683. </productMenu>
  12684. <productMenu id="meshIntercom"
  12685. type="30" >
  12686. </productMenu>
  12687. <productMenu id="meshIntercom+"
  12688. type="3"
  12689. url="2" >
  12690. </productMenu>
  12691. <productMenu id="waveIntercom"
  12692. type="1" >
  12693. <productMenuType version="1.0.9"
  12694. type="0"
  12695. />
  12696. </productMenu>
  12697. <productMenu id="phone"
  12698. type="1" >
  12699. </productMenu>
  12700. <productMenu id="music"
  12701. type="1" >
  12702. </productMenu>
  12703. <productMenu id="musicSharing"
  12704. type="0" >
  12705. </productMenu>
  12706. <productMenu id="deviceSetting"
  12707. type="1"
  12708. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12709. </productMenu>
  12710. <productMenu id="quickGuide"
  12711. type="0"
  12712. url=""
  12713. size="1.12MB" >
  12714. </productMenu>
  12715. <productMenu id="userGuide"
  12716. type="1"
  12717. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12718. size="2.0MB" >
  12719. </productMenu>
  12720. <productMenu id="videoGuide"
  12721. type="0"
  12722. url=""
  12723. size="3.41MB" >
  12724. </productMenu>
  12725. <productMenu id="volume"
  12726. type="12" >
  12727. </productMenu>
  12728. <productMenu id="battery"
  12729. type="1" >
  12730. </productMenu>
  12731. <productID id="6846"
  12732. />
  12733. <productGroupable type="0"
  12734. />
  12735. </product>
  12736. <product id="ACSRAM"
  12737. name="ACS-RAM"
  12738. series="ACS"
  12739. latestVersion="1.0.5"
  12740. show = "1" >
  12741. <productMenu id="protocol"
  12742. type="3" >
  12743. </productMenu>
  12744. <productMenu id="sip"
  12745. type="1" >
  12746. </productMenu>
  12747. <productMenu id="bluetoothIntercom"
  12748. type="1" >
  12749. </productMenu>
  12750. <productMenu id="deviceSetting"
  12751. type="1"
  12752. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12753. </productMenu>
  12754. <productMenu id="quickGuide"
  12755. type="1"
  12756. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12757. size="344KB" >
  12758. </productMenu>
  12759. <productMenu id="userGuide"
  12760. type="1"
  12761. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12762. size="1.14MB" >
  12763. </productMenu>
  12764. <productMenu id="connectGuide"
  12765. type="1"
  12766. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12767. size="1.12MB" >
  12768. </productMenu>
  12769. <productID id="3400"
  12770. />
  12771. <productGroupable type="0"
  12772. />
  12773. </product>
  12774. <product id="ACS10"
  12775. name="ACS10"
  12776. series="ACS"
  12777. latestVersion="1.0.2"
  12778. show = "1" >
  12779. <productMenu id="protocol"
  12780. type="0">
  12781. </productMenu>
  12782. <productMenu id="sip"
  12783. type="1" >
  12784. </productMenu>
  12785. <productMenu id="bluetoothIntercom"
  12786. type="1" >
  12787. </productMenu>
  12788. <productMenu id="phone"
  12789. type="2" >
  12790. </productMenu>
  12791. <productMenu id="deviceSetting"
  12792. type="1"
  12793. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12794. </productMenu>
  12795. <productMenu id="quickGuide"
  12796. type="1"
  12797. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12798. size="970KB" >
  12799. </productMenu>
  12800. <productMenu id="userGuide"
  12801. type="1"
  12802. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12803. size="1.26MB" >
  12804. </productMenu>
  12805. <productMenu id="connectGuide"
  12806. type="1"
  12807. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12808. size="1.12MB" >
  12809. </productMenu>
  12810. <productID id="3300"
  12811. />
  12812. <productGroupable type="0"
  12813. />
  12814. </product>
  12815. <product id="DWO7ProMesh"
  12816. name="DWO 7 Pro Mesh"
  12817. series="50"
  12818. latestVersion="1.1"
  12819. latestVersionVoicePrompt="0.9"
  12820. show = "0" >
  12821. <productMenu id="protocol"
  12822. type="2" >
  12823. </productMenu>
  12824. <productMenu id="alexa"
  12825. type="0" >
  12826. </productMenu>
  12827. <productMenu id="ota"
  12828. type="2" >
  12829. <otaPackages>
  12830. <package
  12831. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12832. size="2945812"
  12833. />
  12834. </otaPackages>
  12835. </productMenu>
  12836. <productMenu id="wa"
  12837. type="0" >
  12838. </productMenu>
  12839. <productMenu id="meshIntercom"
  12840. type="20" >
  12841. </productMenu>
  12842. <productMenu id="meshIntercom+"
  12843. type="3"
  12844. url="2" >
  12845. <productMenuType version="1.0.9"
  12846. type="2"
  12847. />
  12848. <productMenuURL version="2.1.1"
  12849. url="0"
  12850. />
  12851. </productMenu>
  12852. <productMenu id="waveIntercom"
  12853. type="1" >
  12854. <productMenuType version="1.0.9"
  12855. type="0"
  12856. />
  12857. </productMenu>
  12858. <productMenu id="phone"
  12859. type="1" >
  12860. </productMenu>
  12861. <productMenu id="music"
  12862. type="1" >
  12863. </productMenu>
  12864. <productMenu id="fmradio"
  12865. type="1" >
  12866. </productMenu>
  12867. <productMenu id="musicSharing"
  12868. type="0" >
  12869. </productMenu>
  12870. <productMenu id="deviceSetting"
  12871. type="1"
  12872. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12873. <productMenuURL version="1.0.9"
  12874. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12875. />
  12876. </productMenu>
  12877. <productMenu id="quickGuide"
  12878. type="1"
  12879. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12880. size="1.12MB" >
  12881. </productMenu>
  12882. <productMenu id="userGuide"
  12883. type="1"
  12884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12885. size="2.0MB" >
  12886. </productMenu>
  12887. <productMenu id="volume"
  12888. type="12" >
  12889. </productMenu>
  12890. <productMenu id="battery"
  12891. type="1" >
  12892. </productMenu>
  12893. <productID id="6806"
  12894. />
  12895. <productGroupable type="0"
  12896. />
  12897. </product>
  12898. <product id="ERA1X"
  12899. name="ERA 1 X"
  12900. series="UCOM"
  12901. latestVersion="0.2.1"
  12902. latestVersionMesh="0.19"
  12903. latestVersionVoicePrompt="1.2"
  12904. show = "-1" >
  12905. <productMenu id="protocol"
  12906. type="2" >
  12907. </productMenu>
  12908. <productMenu id="ota"
  12909. type="2" >
  12910. <otaLanguages>
  12911. <otaLanguage
  12912. id="0"
  12913. name="English"
  12914. package="0"
  12915. />
  12916. <otaLanguage
  12917. id="0"
  12918. name="French"
  12919. package="1"
  12920. />
  12921. <otaLanguage
  12922. id="0"
  12923. name="Spanish"
  12924. package="2"
  12925. />
  12926. <otaLanguage
  12927. id="0"
  12928. name="Italian"
  12929. package="3"
  12930. />
  12931. <otaLanguage
  12932. id="0"
  12933. name="German"
  12934. package="4"
  12935. />
  12936. <otaLanguage
  12937. id="0"
  12938. name="Dutch"
  12939. package="5"
  12940. />
  12941. <otaLanguage
  12942. id="0"
  12943. name="Russian"
  12944. package="6"
  12945. />
  12946. <otaLanguage
  12947. id="0"
  12948. name="Chinese"
  12949. package="7"
  12950. />
  12951. <otaLanguage
  12952. id="0"
  12953. name="Korean"
  12954. package="8"
  12955. />
  12956. <otaLanguage
  12957. id="0"
  12958. name="Japanese"
  12959. package="9"
  12960. />
  12961. <otaLanguage
  12962. id="0"
  12963. name="Finnish"
  12964. package="10"
  12965. />
  12966. <otaLanguage
  12967. id="0"
  12968. name="Polish"
  12969. package="11"
  12970. />
  12971. <otaLanguage
  12972. id="0"
  12973. name="Czech"
  12974. package="12"
  12975. />
  12976. <otaLanguage
  12977. id="0"
  12978. name="Danish"
  12979. package="13"
  12980. />
  12981. <otaLanguage
  12982. id="0"
  12983. name="Norwegian"
  12984. package="14"
  12985. />
  12986. <otaLanguage
  12987. id="0"
  12988. name="Swedish"
  12989. package="15"
  12990. />
  12991. <otaLanguage
  12992. id="0"
  12993. name="Turkish"
  12994. package="16"
  12995. />
  12996. <otaLanguage
  12997. id="0"
  12998. name="Hungarian"
  12999. package="17"
  13000. />
  13001. <otaLanguage
  13002. id="0"
  13003. name="Portuguese"
  13004. package="18"
  13005. />
  13006. <otaLanguage
  13007. id="0"
  13008. name="Hebrew"
  13009. package="19"
  13010. />
  13011. <otaLanguage
  13012. id="0"
  13013. name="Greek"
  13014. package="20"
  13015. />
  13016. </otaLanguages>
  13017. <otaPackages>
  13018. <package
  13019. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  13020. size="5183988"
  13021. />
  13022. <package
  13023. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  13024. size="5183988"
  13025. />
  13026. <package
  13027. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  13028. size="5183988"
  13029. />
  13030. <package
  13031. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  13032. size="5183988"
  13033. />
  13034. <package
  13035. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  13036. size="5183988"
  13037. />
  13038. <package
  13039. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  13040. size="5183988"
  13041. />
  13042. <package
  13043. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  13044. size="5183988"
  13045. />
  13046. <package
  13047. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  13048. size="5183988"
  13049. />
  13050. <package
  13051. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  13052. size="5183988"
  13053. />
  13054. <package
  13055. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  13056. size="5183988"
  13057. />
  13058. <package
  13059. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  13060. size="5183988"
  13061. />
  13062. <package
  13063. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  13064. size="5183988"
  13065. />
  13066. <package
  13067. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  13068. size="5183988"
  13069. />
  13070. <package
  13071. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  13072. size="5183988"
  13073. />
  13074. <package
  13075. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  13076. size="5183988"
  13077. />
  13078. <package
  13079. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  13080. size="5183988"
  13081. />
  13082. <package
  13083. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  13084. size="5183988"
  13085. />
  13086. <package
  13087. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  13088. size="5183988"
  13089. />
  13090. <package
  13091. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  13092. size="5183988"
  13093. />
  13094. <package
  13095. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  13096. size="5183988"
  13097. />
  13098. <package
  13099. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  13100. size="5183988"
  13101. />
  13102. </otaPackages>
  13103. </productMenu>
  13104. <productMenu id="wa"
  13105. type="0" >
  13106. </productMenu>
  13107. <productMenu id="sip"
  13108. type="1" >
  13109. </productMenu>
  13110. <productMenu id="led"
  13111. type="0" >
  13112. </productMenu>
  13113. <productMenu id="illusion"
  13114. type="1" >
  13115. </productMenu>
  13116. <productMenu id="meshIntercom"
  13117. type="30" >
  13118. </productMenu>
  13119. <productMenu id="meshIntercom+"
  13120. type="3"
  13121. url="2" >
  13122. </productMenu>
  13123. <productMenu id="waveIntercom"
  13124. type="0" >
  13125. </productMenu>
  13126. <productMenu id="bluetoothIntercom"
  13127. type="1" >
  13128. </productMenu>
  13129. <productMenu id="bluetoothIntercomGrouping"
  13130. type="0" >
  13131. </productMenu>
  13132. <productMenu id="fmradio"
  13133. type="1"
  13134. url="1" >
  13135. </productMenu>
  13136. <productMenu id="phone"
  13137. type="1" >
  13138. </productMenu>
  13139. <productMenu id="music"
  13140. type="1" >
  13141. </productMenu>
  13142. <productMenu id="musicSharing"
  13143. type="0" >
  13144. </productMenu>
  13145. <productMenu id="deviceSetting"
  13146. type="1"
  13147. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  13148. </productMenu>
  13149. <productMenu id="quickGuide"
  13150. type="0"
  13151. url=""
  13152. size="1.12MB" >
  13153. </productMenu>
  13154. <productMenu id="userGuide"
  13155. type="1"
  13156. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  13157. size="2.0MB" >
  13158. </productMenu>
  13159. <productMenu id="videoGuide"
  13160. type="0"
  13161. url=""
  13162. size="3.41MB" >
  13163. </productMenu>
  13164. <productMenu id="volume"
  13165. type="16" >
  13166. </productMenu>
  13167. <productMenu id="soundMode"
  13168. type="1" >
  13169. </productMenu>
  13170. <productMenu id="battery"
  13171. type="1" >
  13172. </productMenu>
  13173. <productID id="6A83"
  13174. />
  13175. <productGroupable type="0"
  13176. />
  13177. </product>
  13178. <product id="MeshStation"
  13179. name="Mesh Station"
  13180. series="50"
  13181. latestVersion="0.9"
  13182. show = "-1" >
  13183. <productMenu id="protocol"
  13184. type="2" >
  13185. </productMenu>
  13186. <productMenu id="meshIntercom"
  13187. type="20"
  13188. url="99" >
  13189. </productMenu>
  13190. <productID id="3161"
  13191. />
  13192. <productGroupable type="0"
  13193. />
  13194. </product>
  13195. </products>
  13196. </sna>