snm.xml 452 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260058" appVer="2.14" iosAppVer="2.14" central="1" withoutPhone="1">
  3. <tu url="https://www.sena.com/terms-of-use/"
  4. />
  5. <pp url="https://www.sena.com/privacy"
  6. />
  7. <profile url="https://www.sena.com/subscribe/"
  8. />
  9. <wa url="https://firmware.sena.com/senabluetoothmanager/UserGuide_WiFi_Charging_Cable_1.0.2_en_250212.pdf"
  10. />
  11. <wc url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Sync_Cable_2.0.0_en_220906.pdf"
  12. />
  13. <wds url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_WiFi_Docking_Station_2.0.0_en_220906.pdf"
  14. />
  15. <wim url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_Firmware_Update_1.0.0_en_250212.pdf"
  16. />
  17. <wst url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_Firmware_Update_1.0.0_en_250211.pdf"
  18. />
  19. <support url="https://www.sena.com/support"
  20. />
  21. <forum url="https://community.sena.com/hc/en-us"
  22. />
  23. <sip url="https://community.sena.com/hc/en-us"
  24. />
  25. <productKeys>
  26. <productKey id="4210"
  27. userPSKey="5"
  28. valueLength="1"
  29. />
  30. <productKey id="4230"
  31. userPSKey="5"
  32. valueLength="1"
  33. />
  34. </productKeys>
  35. <!--
  36. <menus>
  37. <menu id="protocol" />
  38. <menu id="alexa" />
  39. <menu id="ota" />
  40. <menu id="wa" />
  41. <menu id="manager" />
  42. <menu id="sip" />
  43. <menu id="meshIntercom" />
  44. <menu id="bluetoothIntercom" />
  45. <menu id="music" />
  46. <menu id="musicSharing" />
  47. <menu id="fmradio" />
  48. <menu id="phone" />
  49. <menu id="led" />
  50. <menu id="volume" />
  51. <menu id="battery" />
  52. <menu id="deviceSetting" />
  53. <menu id="quickGuide" />
  54. <menu id="userGuide" />
  55. </menus>
  56. -->
  57. <serieses>
  58. <series id="60"
  59. name="60 Series"
  60. show="1"
  61. />
  62. <series id="50"
  63. name="50 Series"
  64. show="1"
  65. />
  66. <series id="Helmet"
  67. name="Smart Helmet"
  68. show="1"
  69. />
  70. <series id="30"
  71. name="30 Series"
  72. show="1"
  73. />
  74. <series id="SF"
  75. name="SF Series"
  76. show="1"
  77. />
  78. <series id="SPIDER"
  79. name="SPIDER Series"
  80. show="1"
  81. />
  82. <series id="20"
  83. name="20 Series"
  84. show="1"
  85. />
  86. <series id="SRL"
  87. name="SRL Series"
  88. show="1"
  89. />
  90. <series id="ACS"
  91. name="ACS Series"
  92. show="1"
  93. />
  94. <series id="10"
  95. name="10 Series"
  96. show="1"
  97. />
  98. <series id="5"
  99. name="5 Series"
  100. show="1"
  101. />
  102. <series id="3"
  103. name="3 Series"
  104. show="1"
  105. />
  106. <series id="C"
  107. name="C Series"
  108. show="1"
  109. />
  110. <!--
  111. <series id="smh"
  112. name="SMH"
  113. />
  114. <series id="cavalry"
  115. name="CAVALRY"
  116. show="0"
  117. />
  118. -->
  119. </serieses>
  120. <products>
  121. <product id="60SPRO"
  122. name="60S PRO"
  123. series="60"
  124. latestVersion="0.1"
  125. latestVersionMesh="0.19"
  126. latestVersionVoicePrompt="1.2"
  127. show = "-1" >
  128. <productMenu id="protocol"
  129. type="2" >
  130. </productMenu>
  131. <productMenu id="ota"
  132. type="0" >
  133. <otaLanguages>
  134. <otaLanguage
  135. id="0"
  136. name="English"
  137. package="0"
  138. />
  139. <otaLanguage
  140. id="0"
  141. name="French"
  142. package="1"
  143. />
  144. <otaLanguage
  145. id="0"
  146. name="Spanish"
  147. package="2"
  148. />
  149. <otaLanguage
  150. id="0"
  151. name="Italian"
  152. package="3"
  153. />
  154. <otaLanguage
  155. id="0"
  156. name="German"
  157. package="4"
  158. />
  159. <otaLanguage
  160. id="0"
  161. name="Dutch"
  162. package="5"
  163. />
  164. <otaLanguage
  165. id="0"
  166. name="Russian"
  167. package="6"
  168. />
  169. <otaLanguage
  170. id="0"
  171. name="Chinese"
  172. package="7"
  173. />
  174. <otaLanguage
  175. id="0"
  176. name="Korean"
  177. package="8"
  178. />
  179. <otaLanguage
  180. id="0"
  181. name="Japanese"
  182. package="9"
  183. />
  184. <otaLanguage
  185. id="0"
  186. name="Finnish"
  187. package="10"
  188. />
  189. <otaLanguage
  190. id="0"
  191. name="Polish"
  192. package="11"
  193. />
  194. </otaLanguages>
  195. <otaPackages>
  196. <package
  197. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1.img"
  198. size="5183988"
  199. />
  200. <package
  201. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fr-FR.img"
  202. size="5183988"
  203. />
  204. <package
  205. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-es-ES.img"
  206. size="5183988"
  207. />
  208. <package
  209. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-it-IT.img"
  210. size="5183988"
  211. />
  212. <package
  213. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-de-DE.img"
  214. size="5183988"
  215. />
  216. <package
  217. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-nl-NL.img"
  218. size="5183988"
  219. />
  220. <package
  221. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ru-RU.img"
  222. size="5183988"
  223. />
  224. <package
  225. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-cmn-CN.img"
  226. size="5183988"
  227. />
  228. <package
  229. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ko-KR.img"
  230. size="5183988"
  231. />
  232. <package
  233. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-ja-JP.img"
  234. size="5183988"
  235. />
  236. <package
  237. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-fi-FI.img"
  238. size="5183988"
  239. />
  240. <package
  241. url="https://api.sena.com/support/OTA/60S/60SPRO-v1.2.1-build1-pl-PL.img"
  242. size="5183988"
  243. />
  244. </otaPackages>
  245. </productMenu>
  246. <productMenu id="sip"
  247. type="1" >
  248. </productMenu>
  249. <productMenu id="illusion"
  250. type="1" >
  251. </productMenu>
  252. <productMenu id="meshIntercom"
  253. type="30" >
  254. </productMenu>
  255. <productMenu id="meshIntercom+"
  256. type="3"
  257. url="2" >
  258. </productMenu>
  259. <productMenu id="waveIntercom"
  260. type="1" >
  261. </productMenu>
  262. <productMenu id="bluetoothIntercom"
  263. type="1"
  264. url="2" >
  265. </productMenu>
  266. <productMenu id="bluetoothIntercomGrouping"
  267. type="0" >
  268. </productMenu>
  269. <productMenu id="fmradio"
  270. type="1"
  271. url="1" >
  272. </productMenu>
  273. <productMenu id="phone"
  274. type="1" >
  275. </productMenu>
  276. <productMenu id="music"
  277. type="1" >
  278. </productMenu>
  279. <productMenu id="musicSharing"
  280. type="0" >
  281. </productMenu>
  282. <productMenu id="deviceSetting"
  283. type="1"
  284. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  285. </productMenu>
  286. <productMenu id="quickGuide"
  287. type="0"
  288. url=""
  289. size="1.12MB" >
  290. </productMenu>
  291. <productMenu id="userGuide"
  292. type="1"
  293. url=""
  294. size="2.0MB" >
  295. </productMenu>
  296. <productMenu id="videoGuide"
  297. type="0"
  298. url=""
  299. size="3.41MB" >
  300. </productMenu>
  301. <productMenu id="connectGuide"
  302. type="0"
  303. url=""
  304. size="1.12MB" >
  305. </productMenu>
  306. <productMenu id="volume"
  307. type="16" >
  308. </productMenu>
  309. <productMenu id="soundMode"
  310. type="1" >
  311. </productMenu>
  312. <productMenu id="battery"
  313. type="1" >
  314. </productMenu>
  315. <productID id="6A1A"
  316. />
  317. <productGroupable type="0"
  318. />
  319. </product>
  320. <product id="60SEVO"
  321. name="60S EVO"
  322. series="60"
  323. latestVersion="1.0"
  324. latestVersionMesh="0.19"
  325. latestVersionVoicePrompt="1.5"
  326. show = "-1" >
  327. <productMenu id="protocol"
  328. type="2" >
  329. </productMenu>
  330. <productMenu id="ota"
  331. type="0" >
  332. <otaLanguages>
  333. <otaLanguage
  334. id="0"
  335. name="English"
  336. package="0"
  337. />
  338. <otaLanguage
  339. id="0"
  340. name="French"
  341. package="1"
  342. />
  343. <otaLanguage
  344. id="0"
  345. name="Spanish"
  346. package="2"
  347. />
  348. <otaLanguage
  349. id="0"
  350. name="Italian"
  351. package="3"
  352. />
  353. <otaLanguage
  354. id="0"
  355. name="German"
  356. package="4"
  357. />
  358. <otaLanguage
  359. id="0"
  360. name="Dutch"
  361. package="5"
  362. />
  363. <otaLanguage
  364. id="0"
  365. name="Russian"
  366. package="6"
  367. />
  368. <otaLanguage
  369. id="0"
  370. name="Chinese"
  371. package="7"
  372. />
  373. <otaLanguage
  374. id="0"
  375. name="Korean"
  376. package="8"
  377. />
  378. <otaLanguage
  379. id="0"
  380. name="Japanese"
  381. package="9"
  382. />
  383. <otaLanguage
  384. id="0"
  385. name="Finnish"
  386. package="10"
  387. />
  388. <otaLanguage
  389. id="0"
  390. name="Polish"
  391. package="11"
  392. />
  393. </otaLanguages>
  394. <otaPackages>
  395. <package
  396. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1.img"
  397. size="5183988"
  398. />
  399. <package
  400. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fr-FR.img"
  401. size="5183988"
  402. />
  403. <package
  404. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-es-ES.img"
  405. size="5183988"
  406. />
  407. <package
  408. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-it-IT.img"
  409. size="5183988"
  410. />
  411. <package
  412. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-de-DE.img"
  413. size="5183988"
  414. />
  415. <package
  416. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-nl-NL.img"
  417. size="5183988"
  418. />
  419. <package
  420. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ru-RU.img"
  421. size="5183988"
  422. />
  423. <package
  424. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-cmn-CN.img"
  425. size="5183988"
  426. />
  427. <package
  428. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ko-KR.img"
  429. size="5183988"
  430. />
  431. <package
  432. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-ja-JP.img"
  433. size="5183988"
  434. />
  435. <package
  436. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-fi-FI.img"
  437. size="5183988"
  438. />
  439. <package
  440. url="https://api.sena.com/support/OTA/60S/60SEVO-v1.2.1-build1-pl-PL.img"
  441. size="5183988"
  442. />
  443. </otaPackages>
  444. </productMenu>
  445. <productMenu id="sip"
  446. type="1" >
  447. </productMenu>
  448. <productMenu id="illusion"
  449. type="1" >
  450. </productMenu>
  451. <productMenu id="meshIntercom"
  452. type="30" >
  453. </productMenu>
  454. <productMenu id="meshIntercom+"
  455. type="3"
  456. url="2" >
  457. </productMenu>
  458. <productMenu id="waveIntercom"
  459. type="1" >
  460. </productMenu>
  461. <productMenu id="bluetoothIntercom"
  462. type="1"
  463. url="2" >
  464. </productMenu>
  465. <productMenu id="bluetoothIntercomGrouping"
  466. type="0" >
  467. </productMenu>
  468. <productMenu id="fmradio"
  469. type="1"
  470. url="1" >
  471. </productMenu>
  472. <productMenu id="phone"
  473. type="1" >
  474. </productMenu>
  475. <productMenu id="music"
  476. type="1" >
  477. </productMenu>
  478. <productMenu id="musicSharing"
  479. type="0" >
  480. </productMenu>
  481. <productMenu id="deviceSetting"
  482. type="1"
  483. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_05_Auto.xml" >
  484. </productMenu>
  485. <productMenu id="quickGuide"
  486. type="0"
  487. url=""
  488. size="1.12MB" >
  489. </productMenu>
  490. <productMenu id="userGuide"
  491. type="1"
  492. url=""
  493. size="2.0MB" >
  494. </productMenu>
  495. <productMenu id="videoGuide"
  496. type="0"
  497. url=""
  498. size="3.41MB" >
  499. </productMenu>
  500. <productMenu id="connectGuide"
  501. type="0"
  502. url=""
  503. size="1.12MB" >
  504. </productMenu>
  505. <productMenu id="volume"
  506. type="16" >
  507. </productMenu>
  508. <productMenu id="soundMode"
  509. type="1" >
  510. </productMenu>
  511. <productMenu id="battery"
  512. type="1" >
  513. </productMenu>
  514. <productID id="6A15"
  515. />
  516. <productGroupable type="0"
  517. />
  518. </product>
  519. <product id="60S"
  520. name="60S"
  521. series="60"
  522. latestVersion="1.2.8"
  523. latestVersionMesh="1.2"
  524. latestVersionVoicePrompt="1.5"
  525. show = "1" >
  526. <productMenu id="protocol"
  527. type="2" >
  528. </productMenu>
  529. <productMenu id="ota"
  530. type="2" >
  531. <otaLanguages>
  532. <otaLanguage
  533. id="0"
  534. name="English"
  535. package="0"
  536. />
  537. <otaLanguage
  538. id="0"
  539. name="French"
  540. package="1"
  541. />
  542. <otaLanguage
  543. id="0"
  544. name="Spanish"
  545. package="2"
  546. />
  547. <otaLanguage
  548. id="0"
  549. name="Italian"
  550. package="3"
  551. />
  552. <otaLanguage
  553. id="0"
  554. name="German"
  555. package="4"
  556. />
  557. <otaLanguage
  558. id="0"
  559. name="Dutch"
  560. package="5"
  561. />
  562. <otaLanguage
  563. id="0"
  564. name="Russian"
  565. package="6"
  566. />
  567. <otaLanguage
  568. id="0"
  569. name="Chinese"
  570. package="7"
  571. />
  572. <otaLanguage
  573. id="0"
  574. name="Korean"
  575. package="8"
  576. />
  577. <otaLanguage
  578. id="0"
  579. name="Japanese"
  580. package="9"
  581. />
  582. <otaLanguage
  583. id="0"
  584. name="Finnish"
  585. package="10"
  586. />
  587. <otaLanguage
  588. id="0"
  589. name="Polish"
  590. package="11"
  591. />
  592. </otaLanguages>
  593. <otaPackages>
  594. <package
  595. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0.img"
  596. size="5183988"
  597. />
  598. <package
  599. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fr-FR.img"
  600. size="5183988"
  601. />
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-es-ES.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-it-IT.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-de-DE.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-nl-NL.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ru-RU.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-cmn-CN.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ko-KR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-ja-JP.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-fi-FI.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.8-build0-pl-PL.img"
  640. size="5183988"
  641. />
  642. </otaPackages>
  643. </productMenu>
  644. <productMenu id="sip"
  645. type="1" >
  646. </productMenu>
  647. <productMenu id="illusion"
  648. type="1" >
  649. </productMenu>
  650. <productMenu id="meshIntercom"
  651. type="30" >
  652. </productMenu>
  653. <productMenu id="meshIntercom+"
  654. type="3"
  655. url="2" >
  656. </productMenu>
  657. <productMenu id="waveIntercom"
  658. type="1" >
  659. </productMenu>
  660. <productMenu id="bluetoothIntercom"
  661. type="1"
  662. url="2" >
  663. </productMenu>
  664. <productMenu id="bluetoothIntercomGrouping"
  665. type="0" >
  666. </productMenu>
  667. <productMenu id="fmradio"
  668. type="1"
  669. url="1" >
  670. </productMenu>
  671. <productMenu id="phone"
  672. type="1" >
  673. </productMenu>
  674. <productMenu id="music"
  675. type="1" >
  676. </productMenu>
  677. <productMenu id="musicSharing"
  678. type="0" >
  679. </productMenu>
  680. <productMenu id="deviceSetting"
  681. type="1"
  682. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" > <!--NS_60_09-->
  683. <productMenuURL version="1.2.6"
  684. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  685. />
  686. <productMenuURL version="1.2.3"
  687. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  688. />
  689. </productMenu>
  690. <productMenu id="quickGuide"
  691. type="0"
  692. url=""
  693. size="1.12MB" >
  694. </productMenu>
  695. <productMenu id="userGuide"
  696. type="1"
  697. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  698. size="2.0MB" >
  699. </productMenu>
  700. <productMenu id="videoGuide"
  701. type="0"
  702. url=""
  703. size="3.41MB" >
  704. </productMenu>
  705. <productMenu id="connectGuide"
  706. type="1"
  707. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  708. size="1.12MB" >
  709. </productMenu>
  710. <productMenu id="volume"
  711. type="16" >
  712. </productMenu>
  713. <productMenu id="volume+"
  714. type="2"
  715. url="0x6004" >
  716. <productMenuURL version="1.2.3"
  717. url="0x6004"
  718. />
  719. </productMenu>
  720. <productMenu id="soundMode"
  721. type="0" >
  722. </productMenu>
  723. <productMenu id="battery"
  724. type="1" >
  725. </productMenu>
  726. <productID id="6A0D"
  727. />
  728. <productGroupable type="0"
  729. />
  730. </product>
  731. <product id="60S"
  732. name="60S"
  733. series="60"
  734. latestVersion="1.2.8"
  735. latestVersionMesh="1.2"
  736. latestVersionVoicePrompt="1.5"
  737. show = "-1" >
  738. <productMenu id="protocol"
  739. type="2" >
  740. </productMenu>
  741. <productMenu id="ota"
  742. type="2" >
  743. <otaLanguages>
  744. <otaLanguage
  745. id="0"
  746. name="English"
  747. package="0"
  748. />
  749. <otaLanguage
  750. id="0"
  751. name="French"
  752. package="1"
  753. />
  754. <otaLanguage
  755. id="0"
  756. name="Spanish"
  757. package="2"
  758. />
  759. <otaLanguage
  760. id="0"
  761. name="Italian"
  762. package="3"
  763. />
  764. <otaLanguage
  765. id="0"
  766. name="German"
  767. package="4"
  768. />
  769. <otaLanguage
  770. id="0"
  771. name="Dutch"
  772. package="5"
  773. />
  774. <otaLanguage
  775. id="0"
  776. name="Russian"
  777. package="6"
  778. />
  779. <otaLanguage
  780. id="0"
  781. name="Chinese"
  782. package="7"
  783. />
  784. <otaLanguage
  785. id="0"
  786. name="Korean"
  787. package="8"
  788. />
  789. <otaLanguage
  790. id="0"
  791. name="Japanese"
  792. package="9"
  793. />
  794. <otaLanguage
  795. id="0"
  796. name="Finnish"
  797. package="10"
  798. />
  799. <otaLanguage
  800. id="0"
  801. name="Polish"
  802. package="11"
  803. />
  804. </otaLanguages>
  805. <otaPackages>
  806. <package
  807. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0.img"
  808. size="5183988"
  809. />
  810. <package
  811. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fr-FR.img"
  812. size="5183988"
  813. />
  814. <package
  815. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-es-ES.img"
  816. size="5183988"
  817. />
  818. <package
  819. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-it-IT.img"
  820. size="5183988"
  821. />
  822. <package
  823. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-de-DE.img"
  824. size="5183988"
  825. />
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-nl-NL.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ru-RU.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-cmn-CN.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ko-KR.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-ja-JP.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-fi-FI.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.8-build0-pl-PL.img"
  852. size="5183988"
  853. />
  854. </otaPackages>
  855. </productMenu>
  856. <productMenu id="wa"
  857. type="0" >
  858. </productMenu>
  859. <productMenu id="sip"
  860. type="1" >
  861. </productMenu>
  862. <productMenu id="led"
  863. type="0" >
  864. </productMenu>
  865. <productMenu id="illusion"
  866. type="1" >
  867. </productMenu>
  868. <productMenu id="meshIntercom"
  869. type="30" >
  870. </productMenu>
  871. <productMenu id="meshIntercom+"
  872. type="3"
  873. url="2" >
  874. <productMenuURL version="1.0.2"
  875. url="10"
  876. />
  877. </productMenu>
  878. <productMenu id="waveIntercom"
  879. type="1" >
  880. <productMenuType version="1.0.9"
  881. type="0"
  882. />
  883. </productMenu>
  884. <productMenu id="bluetoothIntercom"
  885. type="1"
  886. url="2" >
  887. </productMenu>
  888. <productMenu id="bluetoothIntercomGrouping"
  889. type="0" >
  890. </productMenu>
  891. <productMenu id="fmradio"
  892. type="1"
  893. url="1" >
  894. </productMenu>
  895. <productMenu id="phone"
  896. type="1" >
  897. </productMenu>
  898. <productMenu id="music"
  899. type="1" >
  900. </productMenu>
  901. <productMenu id="musicSharing"
  902. type="0" >
  903. </productMenu>
  904. <productMenu id="deviceSetting"
  905. type="1"
  906. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml" ><!--NS_60_09-->
  907. <productMenuURL version="1.2.6"
  908. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_06.xml"
  909. />
  910. <productMenuURL version="1.2.3"
  911. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml"
  912. />
  913. <productMenuURL version="1.0.2"
  914. url="https://api.sena.com/support/SenaNeoApp/60/NS_60.xml"
  915. />
  916. <productMenuURL version="1.0"
  917. url="https://api.sena.com/support/test/xml/NS_60_Test_13.xml"
  918. />
  919. <productMenuURL version="0.9.11"
  920. url="https://api.sena.com/support/test/xml/NS_60_Test_05.xml"
  921. />
  922. </productMenu>
  923. <productMenu id="quickGuide"
  924. type="0"
  925. url=""
  926. size="1.12MB" >
  927. </productMenu>
  928. <productMenu id="userGuide"
  929. type="1"
  930. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.2.1_en_251015.pdf"
  931. size="2.0MB" >
  932. </productMenu>
  933. <productMenu id="videoGuide"
  934. type="0"
  935. url=""
  936. size="3.41MB" >
  937. </productMenu>
  938. <productMenu id="connectGuide"
  939. type="1"
  940. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_60s.json"
  941. size="1.12MB" >
  942. </productMenu>
  943. <productMenu id="volume"
  944. type="16" >
  945. <productMenuType version="0.9.11"
  946. type="13"
  947. />
  948. </productMenu>
  949. <productMenu id="volume+"
  950. type="2"
  951. url="0x6004" >
  952. <productMenuURL version="1.2.3"
  953. url="0x6004"
  954. />
  955. </productMenu>
  956. <productMenu id="soundMode"
  957. type="0" >
  958. <productMenuType version="0.9.11"
  959. type="0"
  960. />
  961. </productMenu>
  962. <productMenu id="battery"
  963. type="1" >
  964. </productMenu>
  965. <productID id="6A02"
  966. />
  967. <productGroupable type="0"
  968. />
  969. </product>
  970. <product id="60X"
  971. name="60X"
  972. series="60"
  973. latestVersion="0.9.2"
  974. latestVersionMesh="0.19"
  975. latestVersionVoicePrompt="1.5"
  976. show = "-1" >
  977. <productMenu id="protocol"
  978. type="2" >
  979. </productMenu>
  980. <productMenu id="ota"
  981. type="2" >
  982. <otaLanguages>
  983. <otaLanguage
  984. id="0"
  985. name="English"
  986. package="0"
  987. />
  988. <otaLanguage
  989. id="0"
  990. name="French"
  991. package="1"
  992. />
  993. <otaLanguage
  994. id="0"
  995. name="Spanish"
  996. package="2"
  997. />
  998. <otaLanguage
  999. id="0"
  1000. name="Italian"
  1001. package="3"
  1002. />
  1003. <otaLanguage
  1004. id="0"
  1005. name="German"
  1006. package="4"
  1007. />
  1008. <otaLanguage
  1009. id="0"
  1010. name="Dutch"
  1011. package="5"
  1012. />
  1013. <otaLanguage
  1014. id="0"
  1015. name="Russian"
  1016. package="6"
  1017. />
  1018. <otaLanguage
  1019. id="0"
  1020. name="Chinese"
  1021. package="7"
  1022. />
  1023. <otaLanguage
  1024. id="0"
  1025. name="Korean"
  1026. package="8"
  1027. />
  1028. <otaLanguage
  1029. id="0"
  1030. name="Japanese"
  1031. package="9"
  1032. />
  1033. <otaLanguage
  1034. id="0"
  1035. name="Finnish"
  1036. package="10"
  1037. />
  1038. <otaLanguage
  1039. id="0"
  1040. name="Polish"
  1041. package="11"
  1042. />
  1043. </otaLanguages>
  1044. <otaPackages>
  1045. <package
  1046. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0.img"
  1047. size="5183988"
  1048. />
  1049. <package
  1050. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fr-FR.img"
  1051. size="5183988"
  1052. />
  1053. <package
  1054. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-es-ES.img"
  1055. size="5183988"
  1056. />
  1057. <package
  1058. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-it-IT.img"
  1059. size="5183988"
  1060. />
  1061. <package
  1062. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-de-DE.img"
  1063. size="5183988"
  1064. />
  1065. <package
  1066. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-nl-NL.img"
  1067. size="5183988"
  1068. />
  1069. <package
  1070. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ru-RU.img"
  1071. size="5183988"
  1072. />
  1073. <package
  1074. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-cmn-CN.img"
  1075. size="5183988"
  1076. />
  1077. <package
  1078. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ko-KR.img"
  1079. size="5183988"
  1080. />
  1081. <package
  1082. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-ja-JP.img"
  1083. size="5183988"
  1084. />
  1085. <package
  1086. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-fi-FI.img"
  1087. size="5183988"
  1088. />
  1089. <package
  1090. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/60X/60X-v0.9.2-build0-pl-PL.img"
  1091. size="5183988"
  1092. />
  1093. </otaPackages>
  1094. </productMenu>
  1095. <productMenu id="wa"
  1096. type="0" >
  1097. </productMenu>
  1098. <productMenu id="sip"
  1099. type="1" >
  1100. </productMenu>
  1101. <productMenu id="led"
  1102. type="1" >
  1103. </productMenu>
  1104. <productMenu id="illusion"
  1105. type="1" >
  1106. </productMenu>
  1107. <productMenu id="meshIntercom"
  1108. type="30" >
  1109. </productMenu>
  1110. <productMenu id="meshIntercom+"
  1111. type="3"
  1112. url="2" >
  1113. </productMenu>
  1114. <productMenu id="bluetoothIntercom"
  1115. type="1" >
  1116. </productMenu>
  1117. <productMenu id="fmradio"
  1118. type="1"
  1119. url="1" >
  1120. </productMenu>
  1121. <productMenu id="phone"
  1122. type="1" >
  1123. </productMenu>
  1124. <productMenu id="music"
  1125. type="1" >
  1126. </productMenu>
  1127. <productMenu id="musicSharing"
  1128. type="0" >
  1129. </productMenu>
  1130. <productMenu id="deviceSetting"
  1131. type="1"
  1132. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  1133. </productMenu>
  1134. <productMenu id="quickGuide"
  1135. type="0"
  1136. url=""
  1137. size="1.12MB" >
  1138. </productMenu>
  1139. <productMenu id="userGuide"
  1140. type="0"
  1141. url=""
  1142. size="2.0MB" >
  1143. </productMenu>
  1144. <productMenu id="videoGuide"
  1145. type="0"
  1146. url=""
  1147. size="3.41MB" >
  1148. </productMenu>
  1149. <productMenu id="volume"
  1150. type="13" >
  1151. </productMenu>
  1152. <productMenu id="battery"
  1153. type="1" >
  1154. </productMenu>
  1155. <productID id="6A03"
  1156. />
  1157. <productGroupable type="0"
  1158. />
  1159. </product>
  1160. <product id="R35"
  1161. name="R35"
  1162. series="R"
  1163. latestVersion="1.1"
  1164. latestVersionVoicePrompt="1.5"
  1165. show = "-1" >
  1166. <productMenu id="protocol"
  1167. type="2" >
  1168. </productMenu>
  1169. <productMenu id="ota"
  1170. type="2" >
  1171. <otaLanguages>
  1172. <otaLanguage
  1173. id="0"
  1174. name="English"
  1175. package="0"
  1176. />
  1177. <otaLanguage
  1178. id="0"
  1179. name="Chinese"
  1180. package="1"
  1181. />
  1182. <otaLanguage
  1183. id="0"
  1184. name="Chinese Singapore"
  1185. package="2"
  1186. />
  1187. <otaLanguage
  1188. id="0"
  1189. name="Filipino"
  1190. package="3"
  1191. />
  1192. <otaLanguage
  1193. id="0"
  1194. name="Hebrew"
  1195. package="4"
  1196. />
  1197. <otaLanguage
  1198. id="0"
  1199. name="Hindi"
  1200. package="5"
  1201. />
  1202. <otaLanguage
  1203. id="0"
  1204. name="Indonesian"
  1205. package="6"
  1206. />
  1207. <otaLanguage
  1208. id="0"
  1209. name="Japanese"
  1210. package="7"
  1211. />
  1212. <otaLanguage
  1213. id="0"
  1214. name="Korean"
  1215. package="8"
  1216. />
  1217. <otaLanguage
  1218. id="0"
  1219. name="Malay"
  1220. package="9"
  1221. />
  1222. <otaLanguage
  1223. id="0"
  1224. name="Modern Standard Arabic"
  1225. package="10"
  1226. />
  1227. <otaLanguage
  1228. id="0"
  1229. name="Taiwanese"
  1230. package="11"
  1231. />
  1232. <otaLanguage
  1233. id="0"
  1234. name="Tamil"
  1235. package="12"
  1236. />
  1237. <otaLanguage
  1238. id="0"
  1239. name="Thai"
  1240. package="13"
  1241. />
  1242. <otaLanguage
  1243. id="0"
  1244. name="东北话"
  1245. package="14"
  1246. />
  1247. <otaLanguage
  1248. id="0"
  1249. name="广东话"
  1250. package="15"
  1251. />
  1252. <otaLanguage
  1253. id="0"
  1254. name="江浙沪"
  1255. package="16"
  1256. />
  1257. <otaLanguage
  1258. id="0"
  1259. name="四川话"
  1260. package="17"
  1261. />
  1262. <otaLanguage
  1263. id="0"
  1264. name="陕西话"
  1265. package="18"
  1266. />
  1267. </otaLanguages>
  1268. <otaPackages>
  1269. <package
  1270. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0.img"
  1271. size="5183988"
  1272. />
  1273. <package
  1274. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-CN.img"
  1275. size="5183988"
  1276. />
  1277. <package
  1278. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-cmn-SG.img"
  1279. size="5183988"
  1280. />
  1281. <package
  1282. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-tl-PH.img"
  1283. size="5183988"
  1284. />
  1285. <package
  1286. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-he-IL.img"
  1287. size="5183988"
  1288. />
  1289. <package
  1290. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-hi-IN.img"
  1291. size="5183988"
  1292. />
  1293. <package
  1294. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-id-ID.img"
  1295. size="5183988"
  1296. />
  1297. <package
  1298. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ja-JP.img"
  1299. size="5183988"
  1300. />
  1301. <package
  1302. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ko-KR.img"
  1303. size="5183988"
  1304. />
  1305. <package
  1306. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ms-MY.img"
  1307. size="5183988"
  1308. />
  1309. <package
  1310. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ar-XA.img"
  1311. size="5183988"
  1312. />
  1313. <package
  1314. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-nan-TW.img"
  1315. size="5183988"
  1316. />
  1317. <package
  1318. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-ta-IN.img"
  1319. size="5183988"
  1320. />
  1321. <package
  1322. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-th-TH.img"
  1323. size="5183988"
  1324. />
  1325. <package
  1326. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zdb-CN.img"
  1327. size="5183988"
  1328. />
  1329. <package
  1330. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-yue-CN.img"
  1331. size="5183988"
  1332. />
  1333. <package
  1334. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-wuu-CN.img"
  1335. size="5183988"
  1336. />
  1337. <package
  1338. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsc-CN.img"
  1339. size="5183988"
  1340. />
  1341. <package
  1342. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.1-build0-zsn-CN.img"
  1343. size="5183988"
  1344. />
  1345. </otaPackages>
  1346. </productMenu>
  1347. <productMenu id="sip"
  1348. type="1" >
  1349. </productMenu>
  1350. <productMenu id="illusion"
  1351. type="1" >
  1352. </productMenu>
  1353. <productMenu id="meshIntercom"
  1354. type="30" >
  1355. </productMenu>
  1356. <productMenu id="meshIntercom+"
  1357. type="3"
  1358. url="2" >
  1359. </productMenu>
  1360. <productMenu id="waveIntercom"
  1361. type="1" >
  1362. </productMenu>
  1363. <productMenu id="phone"
  1364. type="1" >
  1365. </productMenu>
  1366. <productMenu id="music"
  1367. type="1" >
  1368. </productMenu>
  1369. <productMenu id="musicSharing"
  1370. type="0" >
  1371. </productMenu>
  1372. <productMenu id="deviceSetting"
  1373. type="1"
  1374. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" > <!--NS_R35_01-->
  1375. <productMenuURL version="1.0.3"
  1376. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1377. />
  1378. </productMenu>
  1379. <productMenu id="quickGuide"
  1380. type="0"
  1381. url=""
  1382. size="1.12MB" >
  1383. </productMenu>
  1384. <productMenu id="userGuide"
  1385. type="1"
  1386. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.1.1_en_260226.pdf"
  1387. size="2.0MB" >
  1388. </productMenu>
  1389. <productMenu id="videoGuide"
  1390. type="0"
  1391. url=""
  1392. size="3.41MB" >
  1393. </productMenu>
  1394. <productMenu id="connectGuide"
  1395. type="0"
  1396. url=""
  1397. size="1.12MB" >
  1398. </productMenu>
  1399. <productMenu id="volume"
  1400. type="16" >
  1401. </productMenu>
  1402. <productMenu id="volume+"
  1403. type="2"
  1404. url="0x6004" >
  1405. </productMenu>
  1406. <productMenu id="soundMode"
  1407. type="0" >
  1408. </productMenu>
  1409. <productMenu id="battery"
  1410. type="1" >
  1411. </productMenu>
  1412. <productID id="6A06"
  1413. />
  1414. <productGroupable type="0"
  1415. />
  1416. </product>
  1417. <product id="COMP1"
  1418. name="BMW COM P1"
  1419. series="60"
  1420. latestVersion="1.0.6"
  1421. latestVersionMesh="0.19"
  1422. latestVersionVoicePrompt="1.0"
  1423. show = "-1" >
  1424. <productMenu id="protocol"
  1425. type="2" >
  1426. </productMenu>
  1427. <productMenu id="ota"
  1428. type="2" >
  1429. <otaLanguages>
  1430. <otaLanguage
  1431. id="0"
  1432. name="English"
  1433. package="0"
  1434. />
  1435. <otaLanguage
  1436. id="0"
  1437. name="French"
  1438. package="1"
  1439. />
  1440. <otaLanguage
  1441. id="0"
  1442. name="Spanish"
  1443. package="2"
  1444. />
  1445. <otaLanguage
  1446. id="0"
  1447. name="Italian"
  1448. package="3"
  1449. />
  1450. <otaLanguage
  1451. id="0"
  1452. name="German"
  1453. package="4"
  1454. />
  1455. <otaLanguage
  1456. id="0"
  1457. name="Dutch"
  1458. package="5"
  1459. />
  1460. <otaLanguage
  1461. id="0"
  1462. name="Russian"
  1463. package="6"
  1464. />
  1465. <otaLanguage
  1466. id="0"
  1467. name="Chinese"
  1468. package="7"
  1469. />
  1470. <otaLanguage
  1471. id="0"
  1472. name="Korean"
  1473. package="8"
  1474. />
  1475. <otaLanguage
  1476. id="0"
  1477. name="Japanese"
  1478. package="9"
  1479. />
  1480. <otaLanguage
  1481. id="0"
  1482. name="Finnish"
  1483. package="10"
  1484. />
  1485. </otaLanguages>
  1486. <otaPackages>
  1487. <package
  1488. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1489. size="5183988"
  1490. />
  1491. <package
  1492. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1493. size="5183988"
  1494. />
  1495. <package
  1496. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1497. size="5183988"
  1498. />
  1499. <package
  1500. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1501. size="5183988"
  1502. />
  1503. <package
  1504. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1505. size="5183988"
  1506. />
  1507. <package
  1508. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1509. size="5183988"
  1510. />
  1511. <package
  1512. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1513. size="5183988"
  1514. />
  1515. <package
  1516. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1517. size="5183988"
  1518. />
  1519. <package
  1520. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1521. size="5183988"
  1522. />
  1523. <package
  1524. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1525. size="5183988"
  1526. />
  1527. <package
  1528. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1529. size="5183988"
  1530. />
  1531. </otaPackages>
  1532. </productMenu>
  1533. <productMenu id="wa"
  1534. type="0" >
  1535. </productMenu>
  1536. <productMenu id="sip"
  1537. type="1" >
  1538. </productMenu>
  1539. <productMenu id="led"
  1540. type="0" >
  1541. </productMenu>
  1542. <productMenu id="illusion"
  1543. type="0" >
  1544. </productMenu>
  1545. <productMenu id="meshIntercom"
  1546. type="30" >
  1547. </productMenu>
  1548. <productMenu id="bluetoothIntercom"
  1549. type="1" >
  1550. </productMenu>
  1551. <productMenu id="bluetoothIntercomGrouping"
  1552. type="0" >
  1553. </productMenu>
  1554. <productMenu id="fmradio"
  1555. type="0" >
  1556. </productMenu>
  1557. <productMenu id="phone"
  1558. type="1" >
  1559. </productMenu>
  1560. <productMenu id="music"
  1561. type="1" >
  1562. </productMenu>
  1563. <productMenu id="musicSharing"
  1564. type="0" >
  1565. </productMenu>
  1566. <productMenu id="deviceSetting"
  1567. type="1"
  1568. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1569. </productMenu>
  1570. <productMenu id="quickGuide"
  1571. type="0"
  1572. url=""
  1573. size="1.12MB" >
  1574. </productMenu>
  1575. <productMenu id="userGuide"
  1576. type="0"
  1577. url=""
  1578. size="2.0MB" >
  1579. </productMenu>
  1580. <productMenu id="videoGuide"
  1581. type="0"
  1582. url=""
  1583. size="3.41MB" >
  1584. </productMenu>
  1585. <productMenu id="volume"
  1586. type="16" >
  1587. </productMenu>
  1588. <productMenu id="battery"
  1589. type="1" >
  1590. </productMenu>
  1591. <productID id="6A80"
  1592. />
  1593. <productGroupable type="0"
  1594. />
  1595. </product>
  1596. <product id="50S"
  1597. name="50S"
  1598. series="50"
  1599. latestVersion="2.7.1"
  1600. show = "1" >
  1601. <productMenu id="protocol"
  1602. type="2" >
  1603. </productMenu>
  1604. <productMenu id="alexa"
  1605. type="0" >
  1606. </productMenu>
  1607. <productMenu id="ota"
  1608. type="0"
  1609. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1610. size="1150234" >
  1611. </productMenu>
  1612. <productMenu id="wa"
  1613. type="1" >
  1614. </productMenu>
  1615. <productMenu id="sip"
  1616. type="1" >
  1617. </productMenu>
  1618. <productMenu id="meshIntercom"
  1619. type="30" >
  1620. <productMenuType version="2.1.1"
  1621. type="20"
  1622. />
  1623. </productMenu>
  1624. <productMenu id="meshIntercom+"
  1625. type="3"
  1626. url="2" >
  1627. <productMenuType version="2.5.9"
  1628. type="2"
  1629. />
  1630. <productMenuURL version="2.1.1"
  1631. url="0"
  1632. />
  1633. </productMenu>
  1634. <productMenu id="waveIntercom"
  1635. type="1" >
  1636. <productMenuType version="2.6"
  1637. type="0"
  1638. />
  1639. </productMenu>
  1640. <productMenu id="bluetoothIntercom"
  1641. type="1" >
  1642. </productMenu>
  1643. <productMenu id="phone"
  1644. type="1" >
  1645. </productMenu>
  1646. <productMenu id="music"
  1647. type="1" >
  1648. </productMenu>
  1649. <productMenu id="fmradio"
  1650. type="1" >
  1651. </productMenu>
  1652. <productMenu id="deviceSetting"
  1653. type="1"
  1654. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1655. <productMenuURL version="2.5.9"
  1656. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1657. />
  1658. <productMenuURL version="2.1.1"
  1659. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1660. />
  1661. <productMenuURL version="2.0.3"
  1662. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1663. />
  1664. </productMenu>
  1665. <productMenu id="quickGuide"
  1666. type="0"
  1667. url=""
  1668. size="934KB" >
  1669. </productMenu>
  1670. <productMenu id="userGuide"
  1671. type="1"
  1672. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1673. size="1.14MB" >
  1674. </productMenu>
  1675. <productMenu id="videoGuide"
  1676. type="1"
  1677. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1678. size="3.41MB" >
  1679. </productMenu>
  1680. <productMenu id="connectGuide"
  1681. type="1"
  1682. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1683. size="1.12MB" >
  1684. </productMenu>
  1685. <productMenu id="volume"
  1686. type="11" >
  1687. </productMenu>
  1688. <productMenu id="battery"
  1689. type="1" >
  1690. </productMenu>
  1691. <productID id="3210"
  1692. />
  1693. <productGroupable type="0"
  1694. />
  1695. </product>
  1696. <product id="50S"
  1697. name="50S"
  1698. series="50"
  1699. latestVersion="1.5.1"
  1700. show = "-1" >
  1701. <productMenu id="protocol"
  1702. type="2" >
  1703. </productMenu>
  1704. <productMenu id="alexa"
  1705. type="0" >
  1706. </productMenu>
  1707. <productMenu id="wa"
  1708. type="1" >
  1709. </productMenu>
  1710. <productMenu id="sip"
  1711. type="1" >
  1712. </productMenu>
  1713. <productMenu id="meshIntercom"
  1714. type="30" >
  1715. <productMenuType version="1.2.2"
  1716. type="20"
  1717. />
  1718. </productMenu>
  1719. <productMenu id="meshIntercom+"
  1720. type="3"
  1721. url="2" >
  1722. <productMenuType version="1.4.9"
  1723. type="2"
  1724. />
  1725. <productMenuURL version="1.2.2"
  1726. url="0"
  1727. />
  1728. </productMenu>
  1729. <productMenu id="waveIntercom"
  1730. type="1" >
  1731. <productMenuType version="1.3.9"
  1732. type="0"
  1733. />
  1734. </productMenu>
  1735. <productMenu id="bluetoothIntercom"
  1736. type="1" >
  1737. </productMenu>
  1738. <productMenu id="phone"
  1739. type="1" >
  1740. </productMenu>
  1741. <productMenu id="music"
  1742. type="1" >
  1743. </productMenu>
  1744. <productMenu id="fmradio"
  1745. type="1" >
  1746. </productMenu>
  1747. <productMenu id="deviceSetting"
  1748. type="1"
  1749. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1750. <productMenuURL version="1.4.9"
  1751. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1752. />
  1753. <productMenuURL version="1.3.9"
  1754. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1755. />
  1756. <productMenuURL version="1.2.2"
  1757. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1758. />
  1759. <productMenuURL version="1.1.1"
  1760. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1761. />
  1762. </productMenu>
  1763. <productMenu id="quickGuide"
  1764. type="0"
  1765. url=""
  1766. size="934KB" >
  1767. </productMenu>
  1768. <productMenu id="userGuide"
  1769. type="1"
  1770. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1771. size="1.14MB" >
  1772. </productMenu>
  1773. <productMenu id="videoGuide"
  1774. type="1"
  1775. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1776. size="3.41MB" >
  1777. </productMenu>
  1778. <productMenu id="volume"
  1779. type="11" >
  1780. </productMenu>
  1781. <productMenu id="battery"
  1782. type="1" >
  1783. </productMenu>
  1784. <productID id="3132"
  1785. />
  1786. <productGroupable type="0"
  1787. />
  1788. </product>
  1789. <product id="50R"
  1790. name="50R"
  1791. series="50"
  1792. latestVersion="2.7"
  1793. show = "1" >
  1794. <productMenu id="protocol"
  1795. type="2" >
  1796. </productMenu>
  1797. <productMenu id="alexa"
  1798. type="0" >
  1799. </productMenu>
  1800. <productMenu id="ota"
  1801. type="0"
  1802. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1803. size="1150234" >
  1804. </productMenu>
  1805. <productMenu id="wa"
  1806. type="1" >
  1807. </productMenu>
  1808. <productMenu id="sip"
  1809. type="1" >
  1810. </productMenu>
  1811. <productMenu id="meshIntercom"
  1812. type="30" >
  1813. <productMenuType version="2.1.1"
  1814. type="20"
  1815. />
  1816. </productMenu>
  1817. <productMenu id="meshIntercom+"
  1818. type="3"
  1819. url="2" >
  1820. <productMenuType version="2.5.9"
  1821. type="2"
  1822. />
  1823. <productMenuURL version="2.1.1"
  1824. url="0"
  1825. />
  1826. </productMenu>
  1827. <productMenu id="waveIntercom"
  1828. type="1" >
  1829. <productMenuType version="2.6"
  1830. type="0"
  1831. />
  1832. </productMenu>
  1833. <productMenu id="bluetoothIntercom"
  1834. type="1" >
  1835. </productMenu>
  1836. <productMenu id="phone"
  1837. type="1" >
  1838. </productMenu>
  1839. <productMenu id="music"
  1840. type="1" >
  1841. </productMenu>
  1842. <productMenu id="fmradio"
  1843. type="1" >
  1844. </productMenu>
  1845. <productMenu id="deviceSetting"
  1846. type="1"
  1847. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1848. <productMenuURL version="2.5.9"
  1849. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1850. />
  1851. <productMenuURL version="2.1.1"
  1852. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1853. />
  1854. <productMenuURL version="2.0"
  1855. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1856. />
  1857. </productMenu>
  1858. <productMenu id="quickGuide"
  1859. type="0"
  1860. url=""
  1861. size="344KB" >
  1862. </productMenu>
  1863. <productMenu id="userGuide"
  1864. type="1"
  1865. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1866. size="3.41MB" >
  1867. </productMenu>
  1868. <productMenu id="videoGuide"
  1869. type="1"
  1870. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1871. size="3.41MB" >
  1872. </productMenu>
  1873. <productMenu id="connectGuide"
  1874. type="1"
  1875. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1876. size="1.12MB" >
  1877. </productMenu>
  1878. <productMenu id="volume"
  1879. type="11" >
  1880. </productMenu>
  1881. <productMenu id="battery"
  1882. type="1" >
  1883. </productMenu>
  1884. <productID id="3218"
  1885. />
  1886. <productGroupable type="0"
  1887. />
  1888. </product>
  1889. <product id="50R"
  1890. name="50R"
  1891. series="50"
  1892. latestVersion="1.5.1"
  1893. show = "-1" >
  1894. <productMenu id="protocol"
  1895. type="2" >
  1896. </productMenu>
  1897. <productMenu id="alexa"
  1898. type="0" >
  1899. </productMenu>
  1900. <productMenu id="wa"
  1901. type="1" >
  1902. </productMenu>
  1903. <productMenu id="sip"
  1904. type="1" >
  1905. </productMenu>
  1906. <productMenu id="meshIntercom"
  1907. type="30" >
  1908. <productMenuType version="1.2.2"
  1909. type="20"
  1910. />
  1911. </productMenu>
  1912. <productMenu id="meshIntercom+"
  1913. type="3"
  1914. url="2" >
  1915. <productMenuType version="1.4.9"
  1916. type="2"
  1917. />
  1918. <productMenuURL version="1.2.2"
  1919. url="0"
  1920. />
  1921. </productMenu>
  1922. <productMenu id="waveIntercom"
  1923. type="1" >
  1924. <productMenuType version="1.3.9"
  1925. type="0"
  1926. />
  1927. </productMenu>
  1928. <productMenu id="bluetoothIntercom"
  1929. type="1" >
  1930. </productMenu>
  1931. <productMenu id="phone"
  1932. type="1" >
  1933. </productMenu>
  1934. <productMenu id="music"
  1935. type="1" >
  1936. </productMenu>
  1937. <productMenu id="fmradio"
  1938. type="1" >
  1939. </productMenu>
  1940. <productMenu id="deviceSetting"
  1941. type="1"
  1942. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1943. <productMenuURL version="1.4.9"
  1944. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1945. />
  1946. <productMenuURL version="1.3.9"
  1947. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1948. />
  1949. <productMenuURL version="1.2.2"
  1950. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1951. />
  1952. <productMenuURL version="1.1.1"
  1953. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1954. />
  1955. </productMenu>
  1956. <productMenu id="quickGuide"
  1957. type="0"
  1958. url=""
  1959. size="344KB" >
  1960. </productMenu>
  1961. <productMenu id="userGuide"
  1962. type="1"
  1963. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1964. size="3.41MB" >
  1965. </productMenu>
  1966. <productMenu id="videoGuide"
  1967. type="1"
  1968. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1969. size="3.41MB" >
  1970. </productMenu>
  1971. <productMenu id="volume"
  1972. type="11" >
  1973. </productMenu>
  1974. <productMenu id="battery"
  1975. type="1" >
  1976. </productMenu>
  1977. <productID id="3134"
  1978. />
  1979. <productGroupable type="0"
  1980. />
  1981. </product>
  1982. <product id="50C"
  1983. name="50C"
  1984. series="50"
  1985. latestVersion="1.4.3"
  1986. show = "1" >
  1987. <productMenu id="protocol"
  1988. type="2" >
  1989. </productMenu>
  1990. <productMenu id="ota"
  1991. type="0" >
  1992. </productMenu>
  1993. <productMenu id="wa"
  1994. type="1" >
  1995. </productMenu>
  1996. <productMenu id="sip"
  1997. type="1" >
  1998. </productMenu>
  1999. <productMenu id="meshIntercom"
  2000. type="30" >
  2001. <productMenuType version="1.1.1"
  2002. type="20"
  2003. />
  2004. </productMenu>
  2005. <productMenu id="meshIntercom+"
  2006. type="3"
  2007. url="2" >
  2008. <productMenuType version="1.3.9"
  2009. type="2"
  2010. />
  2011. <productMenuURL version="1.1.1"
  2012. url="0"
  2013. />
  2014. </productMenu>
  2015. <productMenu id="waveIntercom"
  2016. type="1" >
  2017. <productMenuType version="1.2.9"
  2018. type="0"
  2019. />
  2020. </productMenu>
  2021. <productMenu id="bluetoothIntercom"
  2022. type="1" >
  2023. </productMenu>
  2024. <productMenu id="phone"
  2025. type="1" >
  2026. </productMenu>
  2027. <productMenu id="music"
  2028. type="1" >
  2029. </productMenu>
  2030. <productMenu id="fmradio"
  2031. type="1" >
  2032. </productMenu>
  2033. <productMenu id="deviceSetting"
  2034. type="1"
  2035. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  2036. <productMenuURL version="1.3.9"
  2037. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  2038. />
  2039. <productMenuURL version="1.1.1"
  2040. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  2041. />
  2042. <productMenuURL version="1.0.1"
  2043. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  2044. />
  2045. </productMenu>
  2046. <productMenu id="quickGuide"
  2047. type="0"
  2048. url=""
  2049. size="344KB" >
  2050. </productMenu>
  2051. <productMenu id="userGuide"
  2052. type="1"
  2053. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  2054. size="3.41MB" >
  2055. </productMenu>
  2056. <productMenu id="connectGuide"
  2057. type="1"
  2058. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  2059. size="1.12MB" >
  2060. </productMenu>
  2061. <productMenu id="volume"
  2062. type="11" >
  2063. </productMenu>
  2064. <productMenu id="battery"
  2065. type="1" >
  2066. </productMenu>
  2067. <productID id="3232"
  2068. />
  2069. <productGroupable type="0"
  2070. />
  2071. </product>
  2072. <product id="PHANTOMXB"
  2073. name="PHANTOM XB"
  2074. series="Helmet"
  2075. latestVersion="1.2.7"
  2076. latestVersionVoicePrompt="1.5"
  2077. show = "-1" >
  2078. <productMenu id="protocol"
  2079. type="2" >
  2080. </productMenu>
  2081. <productMenu id="ota"
  2082. type="2" >
  2083. <otaLanguages>
  2084. <otaLanguage
  2085. id="0"
  2086. name="English"
  2087. package="0"
  2088. />
  2089. <otaLanguage
  2090. id="0"
  2091. name="French"
  2092. package="1"
  2093. />
  2094. <otaLanguage
  2095. id="0"
  2096. name="Spanish"
  2097. package="2"
  2098. />
  2099. <otaLanguage
  2100. id="0"
  2101. name="Italian"
  2102. package="3"
  2103. />
  2104. <otaLanguage
  2105. id="0"
  2106. name="German"
  2107. package="4"
  2108. />
  2109. <otaLanguage
  2110. id="0"
  2111. name="Dutch"
  2112. package="5"
  2113. />
  2114. <otaLanguage
  2115. id="0"
  2116. name="Russian"
  2117. package="6"
  2118. />
  2119. <otaLanguage
  2120. id="0"
  2121. name="Chinese"
  2122. package="7"
  2123. />
  2124. <otaLanguage
  2125. id="0"
  2126. name="Korean"
  2127. package="8"
  2128. />
  2129. <otaLanguage
  2130. id="0"
  2131. name="Japanese"
  2132. package="9"
  2133. />
  2134. <otaLanguage
  2135. id="0"
  2136. name="Finnish"
  2137. package="10"
  2138. />
  2139. <otaLanguage
  2140. id="0"
  2141. name="Polish"
  2142. package="11"
  2143. />
  2144. </otaLanguages>
  2145. <otaPackages>
  2146. <package
  2147. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1.img"
  2148. size="5183988"
  2149. />
  2150. <package
  2151. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fr-FR.img"
  2152. size="5183988"
  2153. />
  2154. <package
  2155. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-es-ES.img"
  2156. size="5183988"
  2157. />
  2158. <package
  2159. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-it-IT.img"
  2160. size="5183988"
  2161. />
  2162. <package
  2163. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-de-DE.img"
  2164. size="5183988"
  2165. />
  2166. <package
  2167. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-nl-NL.img"
  2168. size="5183988"
  2169. />
  2170. <package
  2171. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ru-RU.img"
  2172. size="5183988"
  2173. />
  2174. <package
  2175. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-cmn-CN.img"
  2176. size="5183988"
  2177. />
  2178. <package
  2179. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ko-KR.img"
  2180. size="5183988"
  2181. />
  2182. <package
  2183. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-ja-JP.img"
  2184. size="5183988"
  2185. />
  2186. <package
  2187. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-fi-FI.img"
  2188. size="5183988"
  2189. />
  2190. <package
  2191. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.7-build1-pl-PL.img"
  2192. size="5183988"
  2193. />
  2194. </otaPackages>
  2195. </productMenu>
  2196. <productMenu id="wa"
  2197. type="0" >
  2198. </productMenu>
  2199. <productMenu id="led"
  2200. type="5" >
  2201. </productMenu>
  2202. <productMenu id="led+"
  2203. type="2"
  2204. url="1" >
  2205. </productMenu>
  2206. <productMenu id="meshIntercom"
  2207. type="30" >
  2208. </productMenu>
  2209. <productMenu id="meshIntercom+"
  2210. type="3"
  2211. url="2" >
  2212. </productMenu>
  2213. <productMenu id="waveIntercom"
  2214. type="1" >
  2215. </productMenu>
  2216. <productMenu id="fmradio"
  2217. type="0" >
  2218. </productMenu>
  2219. <productMenu id="phone"
  2220. type="1" >
  2221. </productMenu>
  2222. <productMenu id="music"
  2223. type="1" >
  2224. </productMenu>
  2225. <productMenu id="musicSharing"
  2226. type="0" >
  2227. </productMenu>
  2228. <productMenu id="deviceSetting"
  2229. type="1"
  2230. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2231. <productMenuURL version="1.2.4"
  2232. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2233. />
  2234. </productMenu>
  2235. <productMenu id="quickGuide"
  2236. type="0"
  2237. url=""
  2238. size="1.12MB" >
  2239. </productMenu>
  2240. <productMenu id="userGuide"
  2241. type="1"
  2242. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2243. size="2.0MB" >
  2244. </productMenu>
  2245. <productMenu id="videoGuide"
  2246. type="0"
  2247. url=""
  2248. size="3.41MB" >
  2249. </productMenu>
  2250. <productMenu id="volume"
  2251. type="16" >
  2252. </productMenu>
  2253. <productMenu id="volume+"
  2254. type="2"
  2255. url="0x6004" >
  2256. </productMenu>
  2257. <productMenu id="battery"
  2258. type="1" >
  2259. </productMenu>
  2260. <productID id="6A0F"
  2261. />
  2262. <productGroupable type="0"
  2263. />
  2264. </product>
  2265. <product id="PHANTOMXB"
  2266. name="PHANTOM XB"
  2267. series="Helmet"
  2268. latestVersion="1.2.7"
  2269. latestVersionVoicePrompt="1.5"
  2270. show = "-1" >
  2271. <productMenu id="protocol"
  2272. type="2" >
  2273. </productMenu>
  2274. <productMenu id="ota"
  2275. type="2" >
  2276. <otaLanguages>
  2277. <otaLanguage
  2278. id="0"
  2279. name="English"
  2280. package="0"
  2281. />
  2282. <otaLanguage
  2283. id="0"
  2284. name="French"
  2285. package="1"
  2286. />
  2287. <otaLanguage
  2288. id="0"
  2289. name="Spanish"
  2290. package="2"
  2291. />
  2292. <otaLanguage
  2293. id="0"
  2294. name="Italian"
  2295. package="3"
  2296. />
  2297. <otaLanguage
  2298. id="0"
  2299. name="German"
  2300. package="4"
  2301. />
  2302. <otaLanguage
  2303. id="0"
  2304. name="Dutch"
  2305. package="5"
  2306. />
  2307. <otaLanguage
  2308. id="0"
  2309. name="Russian"
  2310. package="6"
  2311. />
  2312. <otaLanguage
  2313. id="0"
  2314. name="Chinese"
  2315. package="7"
  2316. />
  2317. <otaLanguage
  2318. id="0"
  2319. name="Korean"
  2320. package="8"
  2321. />
  2322. <otaLanguage
  2323. id="0"
  2324. name="Japanese"
  2325. package="9"
  2326. />
  2327. <otaLanguage
  2328. id="0"
  2329. name="Finnish"
  2330. package="10"
  2331. />
  2332. <otaLanguage
  2333. id="0"
  2334. name="Polish"
  2335. package="11"
  2336. />
  2337. </otaLanguages>
  2338. <otaPackages>
  2339. <package
  2340. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1.img"
  2341. size="5183988"
  2342. />
  2343. <package
  2344. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fr-FR.img"
  2345. size="5183988"
  2346. />
  2347. <package
  2348. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-es-ES.img"
  2349. size="5183988"
  2350. />
  2351. <package
  2352. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-it-IT.img"
  2353. size="5183988"
  2354. />
  2355. <package
  2356. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-de-DE.img"
  2357. size="5183988"
  2358. />
  2359. <package
  2360. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-nl-NL.img"
  2361. size="5183988"
  2362. />
  2363. <package
  2364. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ru-RU.img"
  2365. size="5183988"
  2366. />
  2367. <package
  2368. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-cmn-CN.img"
  2369. size="5183988"
  2370. />
  2371. <package
  2372. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ko-KR.img"
  2373. size="5183988"
  2374. />
  2375. <package
  2376. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-ja-JP.img"
  2377. size="5183988"
  2378. />
  2379. <package
  2380. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-fi-FI.img"
  2381. size="5183988"
  2382. />
  2383. <package
  2384. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.7-build1-pl-PL.img"
  2385. size="5183988"
  2386. />
  2387. </otaPackages>
  2388. </productMenu>
  2389. <productMenu id="wa"
  2390. type="0" >
  2391. </productMenu>
  2392. <productMenu id="led"
  2393. type="5" >
  2394. </productMenu>
  2395. <productMenu id="led+"
  2396. type="2"
  2397. url="1" >
  2398. </productMenu>
  2399. <productMenu id="meshIntercom"
  2400. type="30" >
  2401. </productMenu>
  2402. <productMenu id="meshIntercom+"
  2403. type="3"
  2404. url="2" >
  2405. </productMenu>
  2406. <productMenu id="waveIntercom"
  2407. type="1" >
  2408. </productMenu>
  2409. <productMenu id="fmradio"
  2410. type="0" >
  2411. </productMenu>
  2412. <productMenu id="phone"
  2413. type="1" >
  2414. </productMenu>
  2415. <productMenu id="music"
  2416. type="1" >
  2417. </productMenu>
  2418. <productMenu id="musicSharing"
  2419. type="0" >
  2420. </productMenu>
  2421. <productMenu id="deviceSetting"
  2422. type="1"
  2423. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  2424. <productMenuURL version="1.2.4"
  2425. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2426. />
  2427. <productMenuURL version="1.2.1"
  2428. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2429. />
  2430. </productMenu>
  2431. <productMenu id="quickGuide"
  2432. type="0"
  2433. url=""
  2434. size="1.12MB" >
  2435. </productMenu>
  2436. <productMenu id="userGuide"
  2437. type="1"
  2438. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2439. size="2.0MB" >
  2440. </productMenu>
  2441. <productMenu id="videoGuide"
  2442. type="0"
  2443. url=""
  2444. size="3.41MB" >
  2445. </productMenu>
  2446. <productMenu id="volume"
  2447. type="16" >
  2448. </productMenu>
  2449. <productMenu id="volume+"
  2450. type="2"
  2451. url="0x6004" >
  2452. </productMenu>
  2453. <productMenu id="battery"
  2454. type="1" >
  2455. </productMenu>
  2456. <productID id="6A0C"
  2457. />
  2458. <productGroupable type="0"
  2459. />
  2460. </product>
  2461. <product id="PHANTOMKV"
  2462. name="PHANTOM KV"
  2463. series="Helmet"
  2464. latestVersion="1.2.2"
  2465. latestVersionVoicePrompt="1.0"
  2466. show = "-1" >
  2467. <productMenu id="protocol"
  2468. type="2" >
  2469. </productMenu>
  2470. <productMenu id="ota"
  2471. type="0" >
  2472. <otaLanguages>
  2473. <otaLanguage
  2474. id="0"
  2475. name="English"
  2476. package="0"
  2477. />
  2478. <otaLanguage
  2479. id="0"
  2480. name="French"
  2481. package="1"
  2482. />
  2483. <otaLanguage
  2484. id="0"
  2485. name="Spanish"
  2486. package="2"
  2487. />
  2488. <otaLanguage
  2489. id="0"
  2490. name="Italian"
  2491. package="3"
  2492. />
  2493. <otaLanguage
  2494. id="0"
  2495. name="German"
  2496. package="4"
  2497. />
  2498. <otaLanguage
  2499. id="0"
  2500. name="Dutch"
  2501. package="5"
  2502. />
  2503. <otaLanguage
  2504. id="0"
  2505. name="Russian"
  2506. package="6"
  2507. />
  2508. <otaLanguage
  2509. id="0"
  2510. name="Chinese"
  2511. package="7"
  2512. />
  2513. <otaLanguage
  2514. id="0"
  2515. name="Korean"
  2516. package="8"
  2517. />
  2518. <otaLanguage
  2519. id="0"
  2520. name="Japanese"
  2521. package="9"
  2522. />
  2523. <otaLanguage
  2524. id="0"
  2525. name="Finnish"
  2526. package="10"
  2527. />
  2528. <otaLanguage
  2529. id="0"
  2530. name="Polish"
  2531. package="11"
  2532. />
  2533. </otaLanguages>
  2534. <otaPackages>
  2535. <package
  2536. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2537. size="5183988"
  2538. />
  2539. <package
  2540. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2541. size="5183988"
  2542. />
  2543. <package
  2544. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2545. size="5183988"
  2546. />
  2547. <package
  2548. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2549. size="5183988"
  2550. />
  2551. <package
  2552. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2553. size="5183988"
  2554. />
  2555. <package
  2556. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2557. size="5183988"
  2558. />
  2559. <package
  2560. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2561. size="5183988"
  2562. />
  2563. <package
  2564. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2565. size="5183988"
  2566. />
  2567. <package
  2568. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2569. size="5183988"
  2570. />
  2571. <package
  2572. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2573. size="5183988"
  2574. />
  2575. <package
  2576. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2577. size="5183988"
  2578. />
  2579. <package
  2580. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2581. size="5183988"
  2582. />
  2583. </otaPackages>
  2584. </productMenu>
  2585. <productMenu id="wa"
  2586. type="0" >
  2587. </productMenu>
  2588. <productMenu id="led"
  2589. type="5" >
  2590. </productMenu>
  2591. <productMenu id="led+"
  2592. type="2"
  2593. url="1" >
  2594. </productMenu>
  2595. <productMenu id="meshIntercom"
  2596. type="30" >
  2597. </productMenu>
  2598. <productMenu id="meshIntercom+"
  2599. type="3"
  2600. url="2" >
  2601. </productMenu>
  2602. <productMenu id="waveIntercom"
  2603. type="1" >
  2604. </productMenu>
  2605. <productMenu id="fmradio"
  2606. type="0" >
  2607. </productMenu>
  2608. <productMenu id="phone"
  2609. type="1" >
  2610. </productMenu>
  2611. <productMenu id="music"
  2612. type="1" >
  2613. </productMenu>
  2614. <productMenu id="musicSharing"
  2615. type="0" >
  2616. </productMenu>
  2617. <productMenu id="deviceSetting"
  2618. type="1"
  2619. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2620. <productMenuURL version="1.2.4"
  2621. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2622. />
  2623. </productMenu>
  2624. <productMenu id="quickGuide"
  2625. type="0"
  2626. url=""
  2627. size="1.12MB" >
  2628. </productMenu>
  2629. <productMenu id="userGuide"
  2630. type="1"
  2631. url=""
  2632. size="2.0MB" >
  2633. </productMenu>
  2634. <productMenu id="videoGuide"
  2635. type="0"
  2636. url=""
  2637. size="3.41MB" >
  2638. </productMenu>
  2639. <productMenu id="volume"
  2640. type="16" >
  2641. </productMenu>
  2642. <productMenu id="volume+"
  2643. type="2"
  2644. url="0x6004" >
  2645. </productMenu>
  2646. <productMenu id="battery"
  2647. type="1" >
  2648. </productMenu>
  2649. <productID id="6A14"
  2650. />
  2651. <productGroupable type="0"
  2652. />
  2653. </product>
  2654. <product id="PHANTOMKV"
  2655. name="PHANTOM KV"
  2656. series="Helmet"
  2657. latestVersion="1.2.2"
  2658. latestVersionVoicePrompt="1.0"
  2659. show = "-1" >
  2660. <productMenu id="protocol"
  2661. type="2" >
  2662. </productMenu>
  2663. <productMenu id="ota"
  2664. type="0" >
  2665. <otaLanguages>
  2666. <otaLanguage
  2667. id="0"
  2668. name="English"
  2669. package="0"
  2670. />
  2671. <otaLanguage
  2672. id="0"
  2673. name="French"
  2674. package="1"
  2675. />
  2676. <otaLanguage
  2677. id="0"
  2678. name="Spanish"
  2679. package="2"
  2680. />
  2681. <otaLanguage
  2682. id="0"
  2683. name="Italian"
  2684. package="3"
  2685. />
  2686. <otaLanguage
  2687. id="0"
  2688. name="German"
  2689. package="4"
  2690. />
  2691. <otaLanguage
  2692. id="0"
  2693. name="Dutch"
  2694. package="5"
  2695. />
  2696. <otaLanguage
  2697. id="0"
  2698. name="Russian"
  2699. package="6"
  2700. />
  2701. <otaLanguage
  2702. id="0"
  2703. name="Chinese"
  2704. package="7"
  2705. />
  2706. <otaLanguage
  2707. id="0"
  2708. name="Korean"
  2709. package="8"
  2710. />
  2711. <otaLanguage
  2712. id="0"
  2713. name="Japanese"
  2714. package="9"
  2715. />
  2716. <otaLanguage
  2717. id="0"
  2718. name="Finnish"
  2719. package="10"
  2720. />
  2721. <otaLanguage
  2722. id="0"
  2723. name="Polish"
  2724. package="11"
  2725. />
  2726. </otaLanguages>
  2727. <otaPackages>
  2728. <package
  2729. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2730. size="5183988"
  2731. />
  2732. <package
  2733. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2734. size="5183988"
  2735. />
  2736. <package
  2737. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2738. size="5183988"
  2739. />
  2740. <package
  2741. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2742. size="5183988"
  2743. />
  2744. <package
  2745. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2746. size="5183988"
  2747. />
  2748. <package
  2749. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2750. size="5183988"
  2751. />
  2752. <package
  2753. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2754. size="5183988"
  2755. />
  2756. <package
  2757. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2758. size="5183988"
  2759. />
  2760. <package
  2761. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2762. size="5183988"
  2763. />
  2764. <package
  2765. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2766. size="5183988"
  2767. />
  2768. <package
  2769. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2770. size="5183988"
  2771. />
  2772. <package
  2773. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2774. size="5183988"
  2775. />
  2776. </otaPackages>
  2777. </productMenu>
  2778. <productMenu id="wa"
  2779. type="0" >
  2780. </productMenu>
  2781. <productMenu id="led"
  2782. type="5" >
  2783. </productMenu>
  2784. <productMenu id="led+"
  2785. type="2"
  2786. url="1" >
  2787. </productMenu>
  2788. <productMenu id="meshIntercom"
  2789. type="30" >
  2790. </productMenu>
  2791. <productMenu id="meshIntercom+"
  2792. type="3"
  2793. url="2" >
  2794. </productMenu>
  2795. <productMenu id="waveIntercom"
  2796. type="1" >
  2797. </productMenu>
  2798. <productMenu id="fmradio"
  2799. type="0" >
  2800. </productMenu>
  2801. <productMenu id="phone"
  2802. type="1" >
  2803. </productMenu>
  2804. <productMenu id="music"
  2805. type="1" >
  2806. </productMenu>
  2807. <productMenu id="musicSharing"
  2808. type="0" >
  2809. </productMenu>
  2810. <productMenu id="deviceSetting"
  2811. type="1"
  2812. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2813. <productMenuURL version="1.2.4"
  2814. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2815. />
  2816. </productMenu>
  2817. <productMenu id="quickGuide"
  2818. type="0"
  2819. url=""
  2820. size="1.12MB" >
  2821. </productMenu>
  2822. <productMenu id="userGuide"
  2823. type="1"
  2824. url=""
  2825. size="2.0MB" >
  2826. </productMenu>
  2827. <productMenu id="videoGuide"
  2828. type="0"
  2829. url=""
  2830. size="3.41MB" >
  2831. </productMenu>
  2832. <productMenu id="volume"
  2833. type="16" >
  2834. </productMenu>
  2835. <productMenu id="volume+"
  2836. type="2"
  2837. url="0x6004" >
  2838. </productMenu>
  2839. <productMenu id="battery"
  2840. type="1" >
  2841. </productMenu>
  2842. <productID id="6A13"
  2843. />
  2844. <productGroupable type="0"
  2845. />
  2846. </product>
  2847. <product id="PHANTOMCamera"
  2848. name="PHANTOM Camera"
  2849. series="Helmet"
  2850. latestVersion="1.0.1"
  2851. latestVersionVoicePrompt="0.4"
  2852. show = "-1" >
  2853. <productMenu id="protocol"
  2854. type="2" >
  2855. </productMenu>
  2856. <productMenu id="ota"
  2857. type="3" >
  2858. <otaLanguages>
  2859. <otaLanguage
  2860. id="0"
  2861. name="English"
  2862. package="0"
  2863. />
  2864. <otaLanguage
  2865. id="0"
  2866. name="French"
  2867. package="1"
  2868. />
  2869. <otaLanguage
  2870. id="0"
  2871. name="Spanish"
  2872. package="2"
  2873. />
  2874. <otaLanguage
  2875. id="0"
  2876. name="Italian"
  2877. package="3"
  2878. />
  2879. <otaLanguage
  2880. id="0"
  2881. name="German"
  2882. package="4"
  2883. />
  2884. <otaLanguage
  2885. id="0"
  2886. name="Dutch"
  2887. package="5"
  2888. />
  2889. <otaLanguage
  2890. id="0"
  2891. name="Russian"
  2892. package="6"
  2893. />
  2894. <otaLanguage
  2895. id="0"
  2896. name="Chinese"
  2897. package="7"
  2898. />
  2899. <otaLanguage
  2900. id="0"
  2901. name="Korean"
  2902. package="8"
  2903. />
  2904. <otaLanguage
  2905. id="0"
  2906. name="Japanese"
  2907. package="9"
  2908. />
  2909. <otaLanguage
  2910. id="0"
  2911. name="Finnish"
  2912. package="10"
  2913. />
  2914. <otaLanguage
  2915. id="0"
  2916. name="Polish"
  2917. package="11"
  2918. />
  2919. </otaLanguages>
  2920. <otaPackages>
  2921. <package
  2922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2923. size="5183988"
  2924. />
  2925. <package
  2926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2927. size="5183988"
  2928. />
  2929. <package
  2930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2931. size="5183988"
  2932. />
  2933. <package
  2934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2935. size="5183988"
  2936. />
  2937. <package
  2938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2939. size="5183988"
  2940. />
  2941. <package
  2942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2943. size="5183988"
  2944. />
  2945. <package
  2946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2947. size="5183988"
  2948. />
  2949. <package
  2950. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2951. size="5183988"
  2952. />
  2953. <package
  2954. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2955. size="5183988"
  2956. />
  2957. <package
  2958. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2959. size="5183988"
  2960. />
  2961. <package
  2962. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2963. size="5183988"
  2964. />
  2965. <package
  2966. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2967. size="5183988"
  2968. />
  2969. </otaPackages>
  2970. </productMenu>
  2971. <productMenu id="wa"
  2972. type="0" >
  2973. </productMenu>
  2974. <productMenu id="led"
  2975. type="5" >
  2976. </productMenu>
  2977. <productMenu id="led+"
  2978. type="2"
  2979. url="1" >
  2980. </productMenu>
  2981. <productMenu id="meshIntercom"
  2982. type="30" >
  2983. </productMenu>
  2984. <productMenu id="meshIntercom+"
  2985. type="3"
  2986. url="2" >
  2987. </productMenu>
  2988. <productMenu id="waveIntercom"
  2989. type="1" >
  2990. </productMenu>
  2991. <productMenu id="fmradio"
  2992. type="0" >
  2993. </productMenu>
  2994. <productMenu id="phone"
  2995. type="1" >
  2996. </productMenu>
  2997. <productMenu id="music"
  2998. type="1" >
  2999. </productMenu>
  3000. <productMenu id="musicSharing"
  3001. type="0" >
  3002. </productMenu>
  3003. <productMenu id="deviceSetting"
  3004. type="1"
  3005. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3006. </productMenu>
  3007. <productMenu id="quickGuide"
  3008. type="0"
  3009. url=""
  3010. size="1.12MB" >
  3011. </productMenu>
  3012. <productMenu id="userGuide"
  3013. type="1"
  3014. url=""
  3015. size="2.0MB" >
  3016. </productMenu>
  3017. <productMenu id="videoGuide"
  3018. type="0"
  3019. url=""
  3020. size="3.41MB" >
  3021. </productMenu>
  3022. <productMenu id="volume"
  3023. type="16" >
  3024. </productMenu>
  3025. <productMenu id="battery"
  3026. type="1" >
  3027. </productMenu>
  3028. <productID id="6A10"
  3029. />
  3030. <productGroupable type="0"
  3031. />
  3032. </product>
  3033. <product id="PHANTOMCamera"
  3034. name="PHANTOM Camera"
  3035. series="Helmet"
  3036. latestVersion="1.0.1"
  3037. latestVersionVoicePrompt="0.4"
  3038. show = "-1" >
  3039. <productMenu id="protocol"
  3040. type="2" >
  3041. </productMenu>
  3042. <productMenu id="ota"
  3043. type="3" >
  3044. <otaLanguages>
  3045. <otaLanguage
  3046. id="0"
  3047. name="English"
  3048. package="0"
  3049. />
  3050. <otaLanguage
  3051. id="0"
  3052. name="French"
  3053. package="1"
  3054. />
  3055. <otaLanguage
  3056. id="0"
  3057. name="Spanish"
  3058. package="2"
  3059. />
  3060. <otaLanguage
  3061. id="0"
  3062. name="Italian"
  3063. package="3"
  3064. />
  3065. <otaLanguage
  3066. id="0"
  3067. name="German"
  3068. package="4"
  3069. />
  3070. <otaLanguage
  3071. id="0"
  3072. name="Dutch"
  3073. package="5"
  3074. />
  3075. <otaLanguage
  3076. id="0"
  3077. name="Russian"
  3078. package="6"
  3079. />
  3080. <otaLanguage
  3081. id="0"
  3082. name="Chinese"
  3083. package="7"
  3084. />
  3085. <otaLanguage
  3086. id="0"
  3087. name="Korean"
  3088. package="8"
  3089. />
  3090. <otaLanguage
  3091. id="0"
  3092. name="Japanese"
  3093. package="9"
  3094. />
  3095. <otaLanguage
  3096. id="0"
  3097. name="Finnish"
  3098. package="10"
  3099. />
  3100. <otaLanguage
  3101. id="0"
  3102. name="Polish"
  3103. package="11"
  3104. />
  3105. </otaLanguages>
  3106. <otaPackages>
  3107. <package
  3108. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3109. size="5183988"
  3110. />
  3111. <package
  3112. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3113. size="5183988"
  3114. />
  3115. <package
  3116. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3117. size="5183988"
  3118. />
  3119. <package
  3120. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3121. size="5183988"
  3122. />
  3123. <package
  3124. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3125. size="5183988"
  3126. />
  3127. <package
  3128. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3129. size="5183988"
  3130. />
  3131. <package
  3132. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3133. size="5183988"
  3134. />
  3135. <package
  3136. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3137. size="5183988"
  3138. />
  3139. <package
  3140. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3141. size="5183988"
  3142. />
  3143. <package
  3144. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3145. size="5183988"
  3146. />
  3147. <package
  3148. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3149. size="5183988"
  3150. />
  3151. <package
  3152. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3153. size="5183988"
  3154. />
  3155. </otaPackages>
  3156. </productMenu>
  3157. <productMenu id="wa"
  3158. type="0" >
  3159. </productMenu>
  3160. <productMenu id="led"
  3161. type="5" >
  3162. </productMenu>
  3163. <productMenu id="led+"
  3164. type="2"
  3165. url="1" >
  3166. </productMenu>
  3167. <productMenu id="meshIntercom"
  3168. type="30" >
  3169. </productMenu>
  3170. <productMenu id="meshIntercom+"
  3171. type="3"
  3172. url="2" >
  3173. </productMenu>
  3174. <productMenu id="waveIntercom"
  3175. type="1" >
  3176. </productMenu>
  3177. <productMenu id="fmradio"
  3178. type="0" >
  3179. </productMenu>
  3180. <productMenu id="phone"
  3181. type="1" >
  3182. </productMenu>
  3183. <productMenu id="music"
  3184. type="1" >
  3185. </productMenu>
  3186. <productMenu id="musicSharing"
  3187. type="0" >
  3188. </productMenu>
  3189. <productMenu id="deviceSetting"
  3190. type="1"
  3191. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3192. </productMenu>
  3193. <productMenu id="quickGuide"
  3194. type="0"
  3195. url=""
  3196. size="1.12MB" >
  3197. </productMenu>
  3198. <productMenu id="userGuide"
  3199. type="1"
  3200. url=""
  3201. size="2.0MB" >
  3202. </productMenu>
  3203. <productMenu id="videoGuide"
  3204. type="0"
  3205. url=""
  3206. size="3.41MB" >
  3207. </productMenu>
  3208. <productMenu id="volume"
  3209. type="16" >
  3210. </productMenu>
  3211. <productMenu id="battery"
  3212. type="1" >
  3213. </productMenu>
  3214. <productID id="6A09"
  3215. />
  3216. <productGroupable type="0"
  3217. />
  3218. </product>
  3219. <product id="PHANTOM"
  3220. name="PHANTOM ANC"
  3221. series="Helmet"
  3222. latestVersion="1.2.7"
  3223. latestVersionVoicePrompt="1.5"
  3224. show = "1" >
  3225. <productMenu id="protocol"
  3226. type="2" >
  3227. </productMenu>
  3228. <productMenu id="ota"
  3229. type="2" >
  3230. <productMenuType version="0.6.9"
  3231. type="0"
  3232. />
  3233. <otaLanguages>
  3234. <otaLanguage
  3235. id="0"
  3236. name="English"
  3237. package="0"
  3238. />
  3239. <otaLanguage
  3240. id="0"
  3241. name="French"
  3242. package="1"
  3243. />
  3244. <otaLanguage
  3245. id="0"
  3246. name="Spanish"
  3247. package="2"
  3248. />
  3249. <otaLanguage
  3250. id="0"
  3251. name="Italian"
  3252. package="3"
  3253. />
  3254. <otaLanguage
  3255. id="0"
  3256. name="German"
  3257. package="4"
  3258. />
  3259. <otaLanguage
  3260. id="0"
  3261. name="Dutch"
  3262. package="5"
  3263. />
  3264. <otaLanguage
  3265. id="0"
  3266. name="Russian"
  3267. package="6"
  3268. />
  3269. <otaLanguage
  3270. id="0"
  3271. name="Chinese"
  3272. package="7"
  3273. />
  3274. <otaLanguage
  3275. id="0"
  3276. name="Korean"
  3277. package="8"
  3278. />
  3279. <otaLanguage
  3280. id="0"
  3281. name="Japanese"
  3282. package="9"
  3283. />
  3284. <otaLanguage
  3285. id="0"
  3286. name="Finnish"
  3287. package="10"
  3288. />
  3289. <otaLanguage
  3290. id="0"
  3291. name="Polish"
  3292. package="11"
  3293. />
  3294. </otaLanguages>
  3295. <otaPackages>
  3296. <package
  3297. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1.img"
  3298. size="5183988"
  3299. />
  3300. <package
  3301. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fr-FR.img"
  3302. size="5183988"
  3303. />
  3304. <package
  3305. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-es-ES.img"
  3306. size="5183988"
  3307. />
  3308. <package
  3309. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-it-IT.img"
  3310. size="5183988"
  3311. />
  3312. <package
  3313. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-de-DE.img"
  3314. size="5183988"
  3315. />
  3316. <package
  3317. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-nl-NL.img"
  3318. size="5183988"
  3319. />
  3320. <package
  3321. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ru-RU.img"
  3322. size="5183988"
  3323. />
  3324. <package
  3325. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-cmn-CN.img"
  3326. size="5183988"
  3327. />
  3328. <package
  3329. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ko-KR.img"
  3330. size="5183988"
  3331. />
  3332. <package
  3333. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-ja-JP.img"
  3334. size="5183988"
  3335. />
  3336. <package
  3337. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-fi-FI.img"
  3338. size="5183988"
  3339. />
  3340. <package
  3341. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.7-build1-pl-PL.img"
  3342. size="5183988"
  3343. />
  3344. </otaPackages>
  3345. </productMenu>
  3346. <productMenu id="wa"
  3347. type="0" >
  3348. </productMenu>
  3349. <productMenu id="led"
  3350. type="5" >
  3351. </productMenu>
  3352. <productMenu id="led+"
  3353. type="2"
  3354. url="1" >
  3355. </productMenu>
  3356. <productMenu id="meshIntercom"
  3357. type="30" >
  3358. </productMenu>
  3359. <productMenu id="meshIntercom+"
  3360. type="3"
  3361. url="2" >
  3362. <productMenuURL version="1.0.4"
  3363. url="10"
  3364. />
  3365. </productMenu>
  3366. <productMenu id="waveIntercom"
  3367. type="1" >
  3368. <productMenuType version="1.0.9"
  3369. type="0"
  3370. />
  3371. </productMenu>
  3372. <productMenu id="fmradio"
  3373. type="0" >
  3374. </productMenu>
  3375. <productMenu id="phone"
  3376. type="1" >
  3377. </productMenu>
  3378. <productMenu id="music"
  3379. type="1" >
  3380. </productMenu>
  3381. <productMenu id="musicSharing"
  3382. type="0" >
  3383. </productMenu>
  3384. <productMenu id="deviceSetting"
  3385. type="1"
  3386. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3387. <productMenuURL version="1.2.4"
  3388. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3389. />
  3390. <productMenuURL version="1.2.1"
  3391. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3392. />
  3393. <productMenuURL version="1.1.2"
  3394. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3395. />
  3396. <productMenuURL version="1.0.4"
  3397. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3398. />
  3399. </productMenu>
  3400. <productMenu id="quickGuide"
  3401. type="0"
  3402. url=""
  3403. size="1.12MB" >
  3404. </productMenu>
  3405. <productMenu id="userGuide"
  3406. type="1"
  3407. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3408. size="2.0MB" >
  3409. </productMenu>
  3410. <productMenu id="videoGuide"
  3411. type="0"
  3412. url=""
  3413. size="3.41MB" >
  3414. </productMenu>
  3415. <productMenu id="volume"
  3416. type="16" >
  3417. </productMenu>
  3418. <productMenu id="volume+"
  3419. type="2"
  3420. url="0x6004" >
  3421. </productMenu>
  3422. <productMenu id="soundMode"
  3423. type="1" >
  3424. <productMenuType version="0.9.11"
  3425. type="0"
  3426. />
  3427. </productMenu>
  3428. <productMenu id="battery"
  3429. type="1" >
  3430. </productMenu>
  3431. <productID id="6A01"
  3432. />
  3433. <productGroupable type="0"
  3434. />
  3435. </product>
  3436. <product id="PHANTOM"
  3437. name="PHANTOM ANC"
  3438. series="Helmet"
  3439. latestVersion="1.2.7"
  3440. latestVersionVoicePrompt="1.5"
  3441. show = "-1" >
  3442. <productMenu id="protocol"
  3443. type="2" >
  3444. </productMenu>
  3445. <productMenu id="ota"
  3446. type="2" >
  3447. <otaLanguages>
  3448. <otaLanguage
  3449. id="0"
  3450. name="English"
  3451. package="0"
  3452. />
  3453. <otaLanguage
  3454. id="0"
  3455. name="French"
  3456. package="1"
  3457. />
  3458. <otaLanguage
  3459. id="0"
  3460. name="Spanish"
  3461. package="2"
  3462. />
  3463. <otaLanguage
  3464. id="0"
  3465. name="Italian"
  3466. package="3"
  3467. />
  3468. <otaLanguage
  3469. id="0"
  3470. name="German"
  3471. package="4"
  3472. />
  3473. <otaLanguage
  3474. id="0"
  3475. name="Dutch"
  3476. package="5"
  3477. />
  3478. <otaLanguage
  3479. id="0"
  3480. name="Russian"
  3481. package="6"
  3482. />
  3483. <otaLanguage
  3484. id="0"
  3485. name="Chinese"
  3486. package="7"
  3487. />
  3488. <otaLanguage
  3489. id="0"
  3490. name="Korean"
  3491. package="8"
  3492. />
  3493. <otaLanguage
  3494. id="0"
  3495. name="Japanese"
  3496. package="9"
  3497. />
  3498. <otaLanguage
  3499. id="0"
  3500. name="Finnish"
  3501. package="10"
  3502. />
  3503. <otaLanguage
  3504. id="0"
  3505. name="Polish"
  3506. package="11"
  3507. />
  3508. </otaLanguages>
  3509. <otaPackages>
  3510. <package
  3511. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1.img"
  3512. size="5183988"
  3513. />
  3514. <package
  3515. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fr-FR.img"
  3516. size="5183988"
  3517. />
  3518. <package
  3519. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-es-ES.img"
  3520. size="5183988"
  3521. />
  3522. <package
  3523. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-it-IT.img"
  3524. size="5183988"
  3525. />
  3526. <package
  3527. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-de-DE.img"
  3528. size="5183988"
  3529. />
  3530. <package
  3531. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-nl-NL.img"
  3532. size="5183988"
  3533. />
  3534. <package
  3535. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ru-RU.img"
  3536. size="5183988"
  3537. />
  3538. <package
  3539. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-cmn-CN.img"
  3540. size="5183988"
  3541. />
  3542. <package
  3543. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ko-KR.img"
  3544. size="5183988"
  3545. />
  3546. <package
  3547. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-ja-JP.img"
  3548. size="5183988"
  3549. />
  3550. <package
  3551. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-fi-FI.img"
  3552. size="5183988"
  3553. />
  3554. <package
  3555. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.7-build1-pl-PL.img"
  3556. size="5183988"
  3557. />
  3558. </otaPackages>
  3559. </productMenu>
  3560. <productMenu id="led"
  3561. type="5" >
  3562. </productMenu>
  3563. <productMenu id="led+"
  3564. type="2"
  3565. url="1" >
  3566. </productMenu>
  3567. <productMenu id="meshIntercom"
  3568. type="30" >
  3569. </productMenu>
  3570. <productMenu id="meshIntercom+"
  3571. type="3"
  3572. url="2" >
  3573. </productMenu>
  3574. <productMenu id="waveIntercom"
  3575. type="1" >
  3576. </productMenu>
  3577. <productMenu id="fmradio"
  3578. type="0" >
  3579. </productMenu>
  3580. <productMenu id="phone"
  3581. type="1" >
  3582. </productMenu>
  3583. <productMenu id="music"
  3584. type="1" >
  3585. </productMenu>
  3586. <productMenu id="musicSharing"
  3587. type="0" >
  3588. </productMenu>
  3589. <productMenu id="deviceSetting"
  3590. type="1"
  3591. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3592. <productMenuURL version="1.2.4"
  3593. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3594. />
  3595. </productMenu>
  3596. <productMenu id="quickGuide"
  3597. type="0"
  3598. url=""
  3599. size="1.12MB" >
  3600. </productMenu>
  3601. <productMenu id="userGuide"
  3602. type="1"
  3603. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3604. size="2.0MB" >
  3605. </productMenu>
  3606. <productMenu id="videoGuide"
  3607. type="0"
  3608. url=""
  3609. size="3.41MB" >
  3610. </productMenu>
  3611. <productMenu id="volume"
  3612. type="16" >
  3613. </productMenu>
  3614. <productMenu id="volume+"
  3615. type="2"
  3616. url="0x6004" >
  3617. </productMenu>
  3618. <productMenu id="soundMode"
  3619. type="1" >
  3620. </productMenu>
  3621. <productMenu id="battery"
  3622. type="1" >
  3623. </productMenu>
  3624. <productID id="6A19"
  3625. />
  3626. <productGroupable type="0"
  3627. />
  3628. </product>
  3629. <product id="PHANTOM"
  3630. name="PHANTOM"
  3631. series="Helmet"
  3632. latestVersion="1.2.7"
  3633. latestVersionVoicePrompt="1.5"
  3634. show = "-1" >
  3635. <productMenu id="protocol"
  3636. type="2" >
  3637. </productMenu>
  3638. <productMenu id="ota"
  3639. type="2" >
  3640. <otaLanguages>
  3641. <otaLanguage
  3642. id="0"
  3643. name="English"
  3644. package="0"
  3645. />
  3646. <otaLanguage
  3647. id="0"
  3648. name="French"
  3649. package="1"
  3650. />
  3651. <otaLanguage
  3652. id="0"
  3653. name="Spanish"
  3654. package="2"
  3655. />
  3656. <otaLanguage
  3657. id="0"
  3658. name="Italian"
  3659. package="3"
  3660. />
  3661. <otaLanguage
  3662. id="0"
  3663. name="German"
  3664. package="4"
  3665. />
  3666. <otaLanguage
  3667. id="0"
  3668. name="Dutch"
  3669. package="5"
  3670. />
  3671. <otaLanguage
  3672. id="0"
  3673. name="Russian"
  3674. package="6"
  3675. />
  3676. <otaLanguage
  3677. id="0"
  3678. name="Chinese"
  3679. package="7"
  3680. />
  3681. <otaLanguage
  3682. id="0"
  3683. name="Korean"
  3684. package="8"
  3685. />
  3686. <otaLanguage
  3687. id="0"
  3688. name="Japanese"
  3689. package="9"
  3690. />
  3691. <otaLanguage
  3692. id="0"
  3693. name="Finnish"
  3694. package="10"
  3695. />
  3696. <otaLanguage
  3697. id="0"
  3698. name="Polish"
  3699. package="11"
  3700. />
  3701. </otaLanguages>
  3702. <otaPackages>
  3703. <package
  3704. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1.img"
  3705. size="5183988"
  3706. />
  3707. <package
  3708. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fr-FR.img"
  3709. size="5183988"
  3710. />
  3711. <package
  3712. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-es-ES.img"
  3713. size="5183988"
  3714. />
  3715. <package
  3716. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-it-IT.img"
  3717. size="5183988"
  3718. />
  3719. <package
  3720. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-de-DE.img"
  3721. size="5183988"
  3722. />
  3723. <package
  3724. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-nl-NL.img"
  3725. size="5183988"
  3726. />
  3727. <package
  3728. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ru-RU.img"
  3729. size="5183988"
  3730. />
  3731. <package
  3732. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-cmn-CN.img"
  3733. size="5183988"
  3734. />
  3735. <package
  3736. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ko-KR.img"
  3737. size="5183988"
  3738. />
  3739. <package
  3740. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-ja-JP.img"
  3741. size="5183988"
  3742. />
  3743. <package
  3744. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-fi-FI.img"
  3745. size="5183988"
  3746. />
  3747. <package
  3748. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM_REV2-v1.2.7-build1-pl-PL.img"
  3749. size="5183988"
  3750. />
  3751. </otaPackages>
  3752. </productMenu>
  3753. <productMenu id="wa"
  3754. type="0" >
  3755. </productMenu>
  3756. <productMenu id="led"
  3757. type="5" >
  3758. </productMenu>
  3759. <productMenu id="led+"
  3760. type="2"
  3761. url="1" >
  3762. </productMenu>
  3763. <productMenu id="meshIntercom"
  3764. type="30" >
  3765. </productMenu>
  3766. <productMenu id="meshIntercom+"
  3767. type="3"
  3768. url="2" >
  3769. </productMenu>
  3770. <productMenu id="waveIntercom"
  3771. type="1" >
  3772. </productMenu>
  3773. <productMenu id="fmradio"
  3774. type="0" >
  3775. </productMenu>
  3776. <productMenu id="phone"
  3777. type="1" >
  3778. </productMenu>
  3779. <productMenu id="music"
  3780. type="1" >
  3781. </productMenu>
  3782. <productMenu id="musicSharing"
  3783. type="0" >
  3784. </productMenu>
  3785. <productMenu id="deviceSetting"
  3786. type="1"
  3787. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3788. <productMenuURL version="1.2.4"
  3789. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3790. />
  3791. </productMenu>
  3792. <productMenu id="quickGuide"
  3793. type="0"
  3794. url=""
  3795. size="1.52MB" >
  3796. </productMenu>
  3797. <productMenu id="userGuide"
  3798. type="1"
  3799. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3800. size="2.01MB" >
  3801. </productMenu>
  3802. <productMenu id="videoGuide"
  3803. type="0"
  3804. url=""
  3805. size="3.46MB" >
  3806. </productMenu>
  3807. <productMenu id="connectGuide"
  3808. type="1"
  3809. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3810. size="1.1MB" >
  3811. </productMenu>
  3812. <productMenu id="volume"
  3813. type="16" >
  3814. </productMenu>
  3815. <productMenu id="volume+"
  3816. type="2"
  3817. url="0x6004" >
  3818. </productMenu>
  3819. <productMenu id="battery"
  3820. type="1" >
  3821. </productMenu>
  3822. <productID id="6A0E"
  3823. />
  3824. <productGroupable type="0"
  3825. />
  3826. </product>
  3827. <product id="PHANTOM"
  3828. name="PHANTOM"
  3829. series="Helmet"
  3830. latestVersion="1.2.7"
  3831. latestVersionVoicePrompt="1.5"
  3832. show = "1" >
  3833. <productMenu id="protocol"
  3834. type="2" >
  3835. </productMenu>
  3836. <productMenu id="ota"
  3837. type="2" >
  3838. <otaLanguages>
  3839. <otaLanguage
  3840. id="0"
  3841. name="English"
  3842. package="0"
  3843. />
  3844. <otaLanguage
  3845. id="0"
  3846. name="French"
  3847. package="1"
  3848. />
  3849. <otaLanguage
  3850. id="0"
  3851. name="Spanish"
  3852. package="2"
  3853. />
  3854. <otaLanguage
  3855. id="0"
  3856. name="Italian"
  3857. package="3"
  3858. />
  3859. <otaLanguage
  3860. id="0"
  3861. name="German"
  3862. package="4"
  3863. />
  3864. <otaLanguage
  3865. id="0"
  3866. name="Dutch"
  3867. package="5"
  3868. />
  3869. <otaLanguage
  3870. id="0"
  3871. name="Russian"
  3872. package="6"
  3873. />
  3874. <otaLanguage
  3875. id="0"
  3876. name="Chinese"
  3877. package="7"
  3878. />
  3879. <otaLanguage
  3880. id="0"
  3881. name="Korean"
  3882. package="8"
  3883. />
  3884. <otaLanguage
  3885. id="0"
  3886. name="Japanese"
  3887. package="9"
  3888. />
  3889. <otaLanguage
  3890. id="0"
  3891. name="Finnish"
  3892. package="10"
  3893. />
  3894. <otaLanguage
  3895. id="0"
  3896. name="Polish"
  3897. package="11"
  3898. />
  3899. </otaLanguages>
  3900. <otaPackages>
  3901. <package
  3902. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1.img"
  3903. size="5183988"
  3904. />
  3905. <package
  3906. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fr-FR.img"
  3907. size="5183988"
  3908. />
  3909. <package
  3910. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-es-ES.img"
  3911. size="5183988"
  3912. />
  3913. <package
  3914. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-it-IT.img"
  3915. size="5183988"
  3916. />
  3917. <package
  3918. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-de-DE.img"
  3919. size="5183988"
  3920. />
  3921. <package
  3922. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-nl-NL.img"
  3923. size="5183988"
  3924. />
  3925. <package
  3926. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ru-RU.img"
  3927. size="5183988"
  3928. />
  3929. <package
  3930. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-cmn-CN.img"
  3931. size="5183988"
  3932. />
  3933. <package
  3934. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ko-KR.img"
  3935. size="5183988"
  3936. />
  3937. <package
  3938. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-ja-JP.img"
  3939. size="5183988"
  3940. />
  3941. <package
  3942. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-fi-FI.img"
  3943. size="5183988"
  3944. />
  3945. <package
  3946. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOM/PHANTOM-v1.2.7-build1-pl-PL.img"
  3947. size="5183988"
  3948. />
  3949. </otaPackages>
  3950. </productMenu>
  3951. <productMenu id="wa"
  3952. type="0" >
  3953. </productMenu>
  3954. <productMenu id="led"
  3955. type="5" >
  3956. <productMenuType version="1.0.1"
  3957. type="4"
  3958. />
  3959. </productMenu>
  3960. <productMenu id="led+"
  3961. type="2"
  3962. url="1" >
  3963. <productMenuType version="1.0.1"
  3964. type="-1"
  3965. />
  3966. </productMenu>
  3967. <productMenu id="meshIntercom"
  3968. type="30" >
  3969. </productMenu>
  3970. <productMenu id="meshIntercom+"
  3971. type="3"
  3972. url="2" >
  3973. <productMenuURL version="1.0.4"
  3974. url="10"
  3975. />
  3976. </productMenu>
  3977. <productMenu id="waveIntercom"
  3978. type="1" >
  3979. <productMenuType version="1.0.9"
  3980. type="0"
  3981. />
  3982. </productMenu>
  3983. <productMenu id="fmradio"
  3984. type="0" >
  3985. </productMenu>
  3986. <productMenu id="phone"
  3987. type="1" >
  3988. </productMenu>
  3989. <productMenu id="music"
  3990. type="1" >
  3991. </productMenu>
  3992. <productMenu id="musicSharing"
  3993. type="0" >
  3994. </productMenu>
  3995. <productMenu id="deviceSetting"
  3996. type="1"
  3997. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" ><!--NS_PHANTOM_11-->
  3998. <productMenuURL version="1.2.4"
  3999. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  4000. />
  4001. <productMenuURL version="1.2.1"
  4002. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  4003. />
  4004. <productMenuURL version="1.0.4"
  4005. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  4006. />
  4007. <productMenuURL version="1.0.1"
  4008. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  4009. />
  4010. </productMenu>
  4011. <productMenu id="quickGuide"
  4012. type="0"
  4013. url=""
  4014. size="1.12MB" >
  4015. </productMenu>
  4016. <productMenu id="userGuide"
  4017. type="1"
  4018. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  4019. size="2.0MB" >
  4020. </productMenu>
  4021. <productMenu id="videoGuide"
  4022. type="0"
  4023. url=""
  4024. size="3.41MB" >
  4025. </productMenu>
  4026. <productMenu id="connectGuide"
  4027. type="1"
  4028. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  4029. size="1.12MB" >
  4030. </productMenu>
  4031. <productMenu id="volume"
  4032. type="16" >
  4033. <productMenuType version="1.0"
  4034. type="13"
  4035. />
  4036. </productMenu>
  4037. <productMenu id="volume+"
  4038. type="2"
  4039. url="0x6004" >
  4040. </productMenu>
  4041. <productMenu id="battery"
  4042. type="1" >
  4043. </productMenu>
  4044. <productID id="6A04"
  4045. />
  4046. <productGroupable type="0"
  4047. />
  4048. </product>
  4049. <product id="PHANTOMEasyLink"
  4050. name="PHANTOM EasyLink"
  4051. series="Helmet"
  4052. latestVersion="0.1"
  4053. latestVersionVoicePrompt="1.2"
  4054. show = "-1" >
  4055. <productMenu id="protocol"
  4056. type="2" >
  4057. </productMenu>
  4058. <productMenu id="ota"
  4059. type="0" >
  4060. <otaLanguages>
  4061. <otaLanguage
  4062. id="0"
  4063. name="English"
  4064. package="0"
  4065. />
  4066. <otaLanguage
  4067. id="0"
  4068. name="French"
  4069. package="1"
  4070. />
  4071. <otaLanguage
  4072. id="0"
  4073. name="Spanish"
  4074. package="2"
  4075. />
  4076. <otaLanguage
  4077. id="0"
  4078. name="Italian"
  4079. package="3"
  4080. />
  4081. <otaLanguage
  4082. id="0"
  4083. name="German"
  4084. package="4"
  4085. />
  4086. <otaLanguage
  4087. id="0"
  4088. name="Dutch"
  4089. package="5"
  4090. />
  4091. <otaLanguage
  4092. id="0"
  4093. name="Russian"
  4094. package="6"
  4095. />
  4096. <otaLanguage
  4097. id="0"
  4098. name="Chinese"
  4099. package="7"
  4100. />
  4101. <otaLanguage
  4102. id="0"
  4103. name="Korean"
  4104. package="8"
  4105. />
  4106. <otaLanguage
  4107. id="0"
  4108. name="Japanese"
  4109. package="9"
  4110. />
  4111. <otaLanguage
  4112. id="0"
  4113. name="Finnish"
  4114. package="10"
  4115. />
  4116. <otaLanguage
  4117. id="0"
  4118. name="Polish"
  4119. package="11"
  4120. />
  4121. </otaLanguages>
  4122. <otaPackages>
  4123. <package
  4124. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4125. size="5183988"
  4126. />
  4127. <package
  4128. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4129. size="5183988"
  4130. />
  4131. <package
  4132. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4133. size="5183988"
  4134. />
  4135. <package
  4136. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4137. size="5183988"
  4138. />
  4139. <package
  4140. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4141. size="5183988"
  4142. />
  4143. <package
  4144. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4145. size="5183988"
  4146. />
  4147. <package
  4148. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4149. size="5183988"
  4150. />
  4151. <package
  4152. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4153. size="5183988"
  4154. />
  4155. <package
  4156. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4157. size="5183988"
  4158. />
  4159. <package
  4160. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4161. size="5183988"
  4162. />
  4163. <package
  4164. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4165. size="5183988"
  4166. />
  4167. <package
  4168. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4169. size="5183988"
  4170. />
  4171. </otaPackages>
  4172. </productMenu>
  4173. <productMenu id="meshIntercom"
  4174. type="30" >
  4175. </productMenu>
  4176. <productMenu id="meshIntercom+"
  4177. type="3"
  4178. url="2" >
  4179. </productMenu>
  4180. <productMenu id="waveIntercom"
  4181. type="1" >
  4182. </productMenu>
  4183. <productMenu id="fmradio"
  4184. type="0" >
  4185. </productMenu>
  4186. <productMenu id="phone"
  4187. type="1" >
  4188. </productMenu>
  4189. <productMenu id="music"
  4190. type="1" >
  4191. </productMenu>
  4192. <productMenu id="musicSharing"
  4193. type="0" >
  4194. </productMenu>
  4195. <productMenu id="deviceSetting"
  4196. type="1"
  4197. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4198. </productMenu>
  4199. <productMenu id="quickGuide"
  4200. type="0"
  4201. url=""
  4202. size="1.12MB" >
  4203. </productMenu>
  4204. <productMenu id="userGuide"
  4205. type="1"
  4206. url=""
  4207. size="2.0MB" >
  4208. </productMenu>
  4209. <productMenu id="videoGuide"
  4210. type="0"
  4211. url=""
  4212. size="3.41MB" >
  4213. </productMenu>
  4214. <productMenu id="connectGuide"
  4215. type="0"
  4216. url=""
  4217. size="1.12MB" >
  4218. </productMenu>
  4219. <productMenu id="volume"
  4220. type="16" >
  4221. </productMenu>
  4222. <productMenu id="battery"
  4223. type="1" >
  4224. </productMenu>
  4225. <productID id="6A18"
  4226. />
  4227. <productGroupable type="0"
  4228. />
  4229. </product>
  4230. <product id="SPIDERXSlim"
  4231. name="SPIDER X Slim"
  4232. series="SPIDER"
  4233. latestVersion="0.9"
  4234. latestVersionVoicePrompt="1.2"
  4235. show = "-1" >
  4236. <productMenu id="protocol"
  4237. type="2" >
  4238. </productMenu>
  4239. <productMenu id="ota"
  4240. type="2" >
  4241. <otaLanguages>
  4242. <otaLanguage
  4243. id="0"
  4244. name="English"
  4245. package="0"
  4246. />
  4247. <otaLanguage
  4248. id="0"
  4249. name="French"
  4250. package="1"
  4251. />
  4252. <otaLanguage
  4253. id="0"
  4254. name="Spanish"
  4255. package="2"
  4256. />
  4257. <otaLanguage
  4258. id="0"
  4259. name="Italian"
  4260. package="3"
  4261. />
  4262. <otaLanguage
  4263. id="0"
  4264. name="German"
  4265. package="4"
  4266. />
  4267. <otaLanguage
  4268. id="0"
  4269. name="Dutch"
  4270. package="5"
  4271. />
  4272. <otaLanguage
  4273. id="0"
  4274. name="Russian"
  4275. package="6"
  4276. />
  4277. <otaLanguage
  4278. id="0"
  4279. name="Chinese"
  4280. package="7"
  4281. />
  4282. <otaLanguage
  4283. id="0"
  4284. name="Korean"
  4285. package="8"
  4286. />
  4287. <otaLanguage
  4288. id="0"
  4289. name="Japanese"
  4290. package="9"
  4291. />
  4292. <otaLanguage
  4293. id="0"
  4294. name="Finnish"
  4295. package="10"
  4296. />
  4297. <otaLanguage
  4298. id="0"
  4299. name="Polish"
  4300. package="11"
  4301. />
  4302. </otaLanguages>
  4303. <otaPackages>
  4304. <package
  4305. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4306. size="5183988"
  4307. />
  4308. <package
  4309. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4310. size="5183988"
  4311. />
  4312. <package
  4313. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4314. size="5183988"
  4315. />
  4316. <package
  4317. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4318. size="5183988"
  4319. />
  4320. <package
  4321. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4322. size="5183988"
  4323. />
  4324. <package
  4325. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4326. size="5183988"
  4327. />
  4328. <package
  4329. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4330. size="5183988"
  4331. />
  4332. <package
  4333. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4334. size="5183988"
  4335. />
  4336. <package
  4337. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4338. size="5183988"
  4339. />
  4340. <package
  4341. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4342. size="5183988"
  4343. />
  4344. <package
  4345. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4346. size="5183988"
  4347. />
  4348. <package
  4349. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4350. size="5183988"
  4351. />
  4352. </otaPackages>
  4353. </productMenu>
  4354. <productMenu id="meshIntercom"
  4355. type="30" >
  4356. </productMenu>
  4357. <productMenu id="meshIntercom+"
  4358. type="3"
  4359. url="2" >
  4360. </productMenu>
  4361. <productMenu id="waveIntercom"
  4362. type="1" >
  4363. </productMenu>
  4364. <productMenu id="fmradio"
  4365. type="1"
  4366. url="1" >
  4367. </productMenu>
  4368. <productMenu id="phone"
  4369. type="1" >
  4370. </productMenu>
  4371. <productMenu id="music"
  4372. type="1" >
  4373. </productMenu>
  4374. <productMenu id="musicSharing"
  4375. type="0" >
  4376. </productMenu>
  4377. <productMenu id="deviceSetting"
  4378. type="1"
  4379. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4380. </productMenu>
  4381. <productMenu id="quickGuide"
  4382. type="0"
  4383. url=""
  4384. size="1.12MB" >
  4385. </productMenu>
  4386. <productMenu id="userGuide"
  4387. type="1"
  4388. url=""
  4389. size="2.0MB" >
  4390. </productMenu>
  4391. <productMenu id="videoGuide"
  4392. type="0"
  4393. url=""
  4394. size="3.41MB" >
  4395. </productMenu>
  4396. <productMenu id="volume"
  4397. type="16" >
  4398. </productMenu>
  4399. <productMenu id="volume+"
  4400. type="2"
  4401. url="0x6004" >
  4402. </productMenu>
  4403. <productMenu id="battery"
  4404. type="1" >
  4405. </productMenu>
  4406. <productID id="6A07"
  4407. />
  4408. <productGroupable type="0"
  4409. />
  4410. </product>
  4411. <product id="XFITM"
  4412. name="X-FIT M"
  4413. series="SPIDER"
  4414. latestVersion="0.1.11"
  4415. latestVersionVoicePrompt="1.1"
  4416. show = "-1" >
  4417. <productMenu id="protocol"
  4418. type="2" >
  4419. </productMenu>
  4420. <productMenu id="ota"
  4421. type="0" >
  4422. <otaLanguages>
  4423. <otaLanguage
  4424. id="0"
  4425. name="English"
  4426. package="0"
  4427. />
  4428. <otaLanguage
  4429. id="0"
  4430. name="French"
  4431. package="1"
  4432. />
  4433. <otaLanguage
  4434. id="0"
  4435. name="Spanish"
  4436. package="2"
  4437. />
  4438. <otaLanguage
  4439. id="0"
  4440. name="Italian"
  4441. package="3"
  4442. />
  4443. <otaLanguage
  4444. id="0"
  4445. name="German"
  4446. package="4"
  4447. />
  4448. <otaLanguage
  4449. id="0"
  4450. name="Dutch"
  4451. package="5"
  4452. />
  4453. <otaLanguage
  4454. id="0"
  4455. name="Russian"
  4456. package="6"
  4457. />
  4458. <otaLanguage
  4459. id="0"
  4460. name="Chinese"
  4461. package="7"
  4462. />
  4463. <otaLanguage
  4464. id="0"
  4465. name="Korean"
  4466. package="8"
  4467. />
  4468. <otaLanguage
  4469. id="0"
  4470. name="Japanese"
  4471. package="9"
  4472. />
  4473. <otaLanguage
  4474. id="0"
  4475. name="Finnish"
  4476. package="10"
  4477. />
  4478. <otaLanguage
  4479. id="0"
  4480. name="Polish"
  4481. package="11"
  4482. />
  4483. </otaLanguages>
  4484. <otaPackages>
  4485. <package
  4486. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4487. size="5183988"
  4488. />
  4489. <package
  4490. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4491. size="5183988"
  4492. />
  4493. <package
  4494. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4495. size="5183988"
  4496. />
  4497. <package
  4498. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4499. size="5183988"
  4500. />
  4501. <package
  4502. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4503. size="5183988"
  4504. />
  4505. <package
  4506. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4507. size="5183988"
  4508. />
  4509. <package
  4510. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4511. size="5183988"
  4512. />
  4513. <package
  4514. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4515. size="5183988"
  4516. />
  4517. <package
  4518. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4519. size="5183988"
  4520. />
  4521. <package
  4522. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4523. size="5183988"
  4524. />
  4525. <package
  4526. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4527. size="5183988"
  4528. />
  4529. <package
  4530. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4531. size="5183988"
  4532. />
  4533. </otaPackages>
  4534. </productMenu>
  4535. <productMenu id="meshIntercom"
  4536. type="30" >
  4537. </productMenu>
  4538. <productMenu id="meshIntercom+"
  4539. type="3"
  4540. url="2" >
  4541. </productMenu>
  4542. <productMenu id="waveIntercom"
  4543. type="1" >
  4544. </productMenu>
  4545. <productMenu id="fmradio"
  4546. type="1"
  4547. url="1" >
  4548. </productMenu>
  4549. <productMenu id="phone"
  4550. type="1" >
  4551. </productMenu>
  4552. <productMenu id="music"
  4553. type="1" >
  4554. </productMenu>
  4555. <productMenu id="musicSharing"
  4556. type="0" >
  4557. </productMenu>
  4558. <productMenu id="deviceSetting"
  4559. type="1"
  4560. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4561. </productMenu>
  4562. <productMenu id="quickGuide"
  4563. type="0"
  4564. url=""
  4565. size="1.12MB" >
  4566. </productMenu>
  4567. <productMenu id="userGuide"
  4568. type="1"
  4569. url=""
  4570. size="2.0MB" >
  4571. </productMenu>
  4572. <productMenu id="videoGuide"
  4573. type="0"
  4574. url=""
  4575. size="3.41MB" >
  4576. </productMenu>
  4577. <productMenu id="volume"
  4578. type="16" >
  4579. </productMenu>
  4580. <productMenu id="volume+"
  4581. type="2"
  4582. url="0x6004" >
  4583. </productMenu>
  4584. <productMenu id="battery"
  4585. type="1" >
  4586. </productMenu>
  4587. <productID id="6A17"
  4588. />
  4589. <productGroupable type="0"
  4590. />
  4591. </product>
  4592. <product id="VORTEXMESH"
  4593. name="VORTEX MESH"
  4594. series="Helmet"
  4595. latestVersion="0.1.11"
  4596. latestVersionVoicePrompt="1.1"
  4597. show = "-1" >
  4598. <productMenu id="protocol"
  4599. type="2" >
  4600. </productMenu>
  4601. <productMenu id="ota"
  4602. type="0" >
  4603. <otaLanguages>
  4604. <otaLanguage
  4605. id="0"
  4606. name="English"
  4607. package="0"
  4608. />
  4609. <otaLanguage
  4610. id="0"
  4611. name="French"
  4612. package="1"
  4613. />
  4614. <otaLanguage
  4615. id="0"
  4616. name="Spanish"
  4617. package="2"
  4618. />
  4619. <otaLanguage
  4620. id="0"
  4621. name="Italian"
  4622. package="3"
  4623. />
  4624. <otaLanguage
  4625. id="0"
  4626. name="German"
  4627. package="4"
  4628. />
  4629. <otaLanguage
  4630. id="0"
  4631. name="Dutch"
  4632. package="5"
  4633. />
  4634. <otaLanguage
  4635. id="0"
  4636. name="Russian"
  4637. package="6"
  4638. />
  4639. <otaLanguage
  4640. id="0"
  4641. name="Chinese"
  4642. package="7"
  4643. />
  4644. <otaLanguage
  4645. id="0"
  4646. name="Korean"
  4647. package="8"
  4648. />
  4649. <otaLanguage
  4650. id="0"
  4651. name="Japanese"
  4652. package="9"
  4653. />
  4654. <otaLanguage
  4655. id="0"
  4656. name="Finnish"
  4657. package="10"
  4658. />
  4659. <otaLanguage
  4660. id="0"
  4661. name="Polish"
  4662. package="11"
  4663. />
  4664. </otaLanguages>
  4665. <otaPackages>
  4666. <package
  4667. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4668. size="5183988"
  4669. />
  4670. <package
  4671. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4672. size="5183988"
  4673. />
  4674. <package
  4675. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4676. size="5183988"
  4677. />
  4678. <package
  4679. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4680. size="5183988"
  4681. />
  4682. <package
  4683. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4684. size="5183988"
  4685. />
  4686. <package
  4687. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4688. size="5183988"
  4689. />
  4690. <package
  4691. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4692. size="5183988"
  4693. />
  4694. <package
  4695. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4696. size="5183988"
  4697. />
  4698. <package
  4699. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4700. size="5183988"
  4701. />
  4702. <package
  4703. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4704. size="5183988"
  4705. />
  4706. <package
  4707. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4708. size="5183988"
  4709. />
  4710. <package
  4711. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4712. size="5183988"
  4713. />
  4714. </otaPackages>
  4715. </productMenu>
  4716. <productMenu id="wa"
  4717. type="0" >
  4718. </productMenu>
  4719. <productMenu id="led"
  4720. type="5" >
  4721. </productMenu>
  4722. <productMenu id="led+"
  4723. type="2"
  4724. url="1" >
  4725. </productMenu>
  4726. <productMenu id="meshIntercom"
  4727. type="30" >
  4728. </productMenu>
  4729. <productMenu id="meshIntercom+"
  4730. type="3"
  4731. url="2" >
  4732. </productMenu>
  4733. <productMenu id="waveIntercom"
  4734. type="1" >
  4735. </productMenu>
  4736. <productMenu id="fmradio"
  4737. type="0" >
  4738. </productMenu>
  4739. <productMenu id="phone"
  4740. type="1" >
  4741. </productMenu>
  4742. <productMenu id="music"
  4743. type="1" >
  4744. </productMenu>
  4745. <productMenu id="musicSharing"
  4746. type="0" >
  4747. </productMenu>
  4748. <productMenu id="deviceSetting"
  4749. type="1"
  4750. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4751. </productMenu>
  4752. <productMenu id="quickGuide"
  4753. type="0"
  4754. url=""
  4755. size="1.12MB" >
  4756. </productMenu>
  4757. <productMenu id="userGuide"
  4758. type="1"
  4759. url=""
  4760. size="2.0MB" >
  4761. </productMenu>
  4762. <productMenu id="videoGuide"
  4763. type="0"
  4764. url=""
  4765. size="3.41MB" >
  4766. </productMenu>
  4767. <productMenu id="volume"
  4768. type="16" >
  4769. </productMenu>
  4770. <productMenu id="battery"
  4771. type="1" >
  4772. </productMenu>
  4773. <productID id="6A12"
  4774. />
  4775. <productGroupable type="0"
  4776. />
  4777. </product>
  4778. <product id="MeshOn"
  4779. name="Mesh ON"
  4780. series="60"
  4781. latestVersion="1.0"
  4782. latestVersionVoicePrompt="0.7"
  4783. show = "-1" >
  4784. <productMenu id="protocol"
  4785. type="2" >
  4786. </productMenu>
  4787. <productMenu id="ota"
  4788. type="0" >
  4789. <otaPackages>
  4790. <package
  4791. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/MESH_ON-v1.0-build1.img"
  4792. size="2945812"
  4793. />
  4794. </otaPackages>
  4795. </productMenu>
  4796. <productMenu id="meshIntercom+"
  4797. type="3"
  4798. url="4" >
  4799. </productMenu>
  4800. <productMenu id="waveIntercom"
  4801. type="0" >
  4802. </productMenu>
  4803. <productMenu id="phone"
  4804. type="0" >
  4805. </productMenu>
  4806. <productMenu id="music"
  4807. type="0" >
  4808. </productMenu>
  4809. <productMenu id="musicSharing"
  4810. type="0" >
  4811. </productMenu>
  4812. <productMenu id="deviceSetting"
  4813. type="1"
  4814. url="https://api.sena.com/support/SenaNeoApp/MeshOn/NS_MESHON_AIROHA_01.xml" >
  4815. </productMenu>
  4816. <productMenu id="userGuide"
  4817. type="1"
  4818. url=""
  4819. size="2.0MB" >
  4820. </productMenu>
  4821. <productMenu id="bluetoothHeadset"
  4822. type="1"
  4823. url="0|https://api.sena.com/support/HeadsetPairingGuide/meshon_v1_20260102.json" >
  4824. </productMenu>
  4825. <productMenu id="volume"
  4826. type="0" >
  4827. </productMenu>
  4828. <productMenu id="battery"
  4829. type="1" >
  4830. </productMenu>
  4831. <productID id="684E"
  4832. />
  4833. <productGroupable type="0"
  4834. />
  4835. </product>
  4836. <product id="Impulse"
  4837. name="Impulse"
  4838. series="Helmet"
  4839. latestVersion="1.4.1"
  4840. show = "1" >
  4841. <productMenu id="protocol"
  4842. type="2" >
  4843. </productMenu>
  4844. <productMenu id="alexa"
  4845. type="0" >
  4846. </productMenu>
  4847. <productMenu id="ota"
  4848. type="0" >
  4849. </productMenu>
  4850. <productMenu id="wa"
  4851. type="24" >
  4852. </productMenu>
  4853. <productMenu id="manager"
  4854. type="0" >
  4855. </productMenu>
  4856. <productMenu id="sip"
  4857. type="1" >
  4858. </productMenu>
  4859. <productMenu id="led"
  4860. type="1" >
  4861. <productMenuType version="1.0.1"
  4862. type="2"
  4863. />
  4864. <productMenuType version="1.0"
  4865. type="1"
  4866. />
  4867. </productMenu>
  4868. <productMenu id="meshIntercom"
  4869. type="30" >
  4870. <productMenuType version="1.1.1"
  4871. type="20"
  4872. />
  4873. </productMenu>
  4874. <productMenu id="meshIntercom+"
  4875. type="3"
  4876. url="2" >
  4877. <productMenuType version="1.3.9"
  4878. type="2"
  4879. />
  4880. <productMenuURL version="1.1.1"
  4881. url="0"
  4882. />
  4883. </productMenu>
  4884. <productMenu id="waveIntercom"
  4885. type="1" >
  4886. <productMenuType version="1.3.9"
  4887. type="0"
  4888. />
  4889. </productMenu>
  4890. <productMenu id="bluetoothIntercom"
  4891. type="1" >
  4892. </productMenu>
  4893. <productMenu id="phone"
  4894. type="1" >
  4895. </productMenu>
  4896. <productMenu id="music"
  4897. type="1" >
  4898. </productMenu>
  4899. <productMenu id="fmradio"
  4900. type="1" >
  4901. </productMenu>
  4902. <productMenu id="deviceSetting"
  4903. type="1"
  4904. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4905. <productMenuURL version="1.3.9"
  4906. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4907. />
  4908. <productMenuURL version="1.1.1"
  4909. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4910. />
  4911. <productMenuURL version="1.0.4"
  4912. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4913. />
  4914. </productMenu>
  4915. <productMenu id="quickGuide"
  4916. type="0"
  4917. url=""
  4918. size="344KB" >
  4919. </productMenu>
  4920. <productMenu id="userGuide"
  4921. type="1"
  4922. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4923. size="3.41MB" >
  4924. </productMenu>
  4925. <productMenu id="connectGuide"
  4926. type="1"
  4927. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4928. size="1.12MB" >
  4929. </productMenu>
  4930. <productMenu id="volume"
  4931. type="11" >
  4932. </productMenu>
  4933. <productMenu id="battery"
  4934. type="1" >
  4935. </productMenu>
  4936. <productID id="3148"
  4937. />
  4938. <productGroupable type="0"
  4939. />
  4940. </product>
  4941. <product id="Impulse"
  4942. name="Impulse"
  4943. series="Helmet"
  4944. latestVersion="2.0"
  4945. show = "-1" >
  4946. <productMenu id="protocol"
  4947. type="2" >
  4948. </productMenu>
  4949. <productMenu id="alexa"
  4950. type="0" >
  4951. </productMenu>
  4952. <productMenu id="ota"
  4953. type="0" >
  4954. </productMenu>
  4955. <productMenu id="wa"
  4956. type="8" >
  4957. </productMenu>
  4958. <productMenu id="manager"
  4959. type="0" >
  4960. </productMenu>
  4961. <productMenu id="sip"
  4962. type="1" >
  4963. </productMenu>
  4964. <productMenu id="led"
  4965. type="3" >
  4966. </productMenu>
  4967. <productMenu id="meshIntercom"
  4968. type="20" >
  4969. </productMenu>
  4970. <productMenu id="bluetoothIntercom"
  4971. type="1" >
  4972. </productMenu>
  4973. <productMenu id="phone"
  4974. type="1" >
  4975. </productMenu>
  4976. <productMenu id="music"
  4977. type="1" >
  4978. </productMenu>
  4979. <productMenu id="fmradio"
  4980. type="1" >
  4981. </productMenu>
  4982. <productMenu id="deviceSetting"
  4983. type="1"
  4984. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4985. </productMenu>
  4986. <productMenu id="quickGuide"
  4987. type="1"
  4988. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4989. size="344KB" >
  4990. </productMenu>
  4991. <productMenu id="userGuide"
  4992. type="1"
  4993. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4994. size="3.41MB" >
  4995. </productMenu>
  4996. <productMenu id="volume"
  4997. type="11" >
  4998. </productMenu>
  4999. <productMenu id="battery"
  5000. type="1" >
  5001. </productMenu>
  5002. <productID id="3221"
  5003. />
  5004. <productGroupable type="0"
  5005. />
  5006. </product>
  5007. <product id="Stryker"
  5008. name="Stryker"
  5009. series="Helmet"
  5010. latestVersion="1.4.1"
  5011. show = "1" >
  5012. <productMenu id="protocol"
  5013. type="2" >
  5014. </productMenu>
  5015. <productMenu id="alexa"
  5016. type="0" >
  5017. </productMenu>
  5018. <productMenu id="ota"
  5019. type="0" >
  5020. </productMenu>
  5021. <productMenu id="wa"
  5022. type="40" >
  5023. </productMenu>
  5024. <productMenu id="manager"
  5025. type="0" >
  5026. </productMenu>
  5027. <productMenu id="sip"
  5028. type="1" >
  5029. </productMenu>
  5030. <productMenu id="led"
  5031. type="1" >
  5032. <productMenuType version="1.0.1"
  5033. type="2"
  5034. />
  5035. <productMenuType version="1.0"
  5036. type="1"
  5037. />
  5038. </productMenu>
  5039. <productMenu id="meshIntercom"
  5040. type="30" >
  5041. <productMenuType version="1.1.1"
  5042. type="20"
  5043. />
  5044. </productMenu>
  5045. <productMenu id="meshIntercom+"
  5046. type="3"
  5047. url="2" >
  5048. <productMenuType version="1.3.9"
  5049. type="2"
  5050. />
  5051. <productMenuURL version="1.1.1"
  5052. url="0"
  5053. />
  5054. </productMenu>
  5055. <productMenu id="waveIntercom"
  5056. type="1" >
  5057. <productMenuType version="1.2.9"
  5058. type="0"
  5059. />
  5060. </productMenu>
  5061. <productMenu id="bluetoothIntercom"
  5062. type="1" >
  5063. </productMenu>
  5064. <productMenu id="phone"
  5065. type="1" >
  5066. </productMenu>
  5067. <productMenu id="music"
  5068. type="1" >
  5069. </productMenu>
  5070. <productMenu id="fmradio"
  5071. type="1" >
  5072. </productMenu>
  5073. <productMenu id="deviceSetting"
  5074. type="1"
  5075. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  5076. <productMenuURL version="1.3.9"
  5077. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  5078. />
  5079. <productMenuURL version="1.1.1"
  5080. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  5081. />
  5082. <productMenuURL version="1.0.4"
  5083. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  5084. />
  5085. </productMenu>
  5086. <productMenu id="quickGuide"
  5087. type="0"
  5088. url=""
  5089. size="344KB" >
  5090. </productMenu>
  5091. <productMenu id="userGuide"
  5092. type="1"
  5093. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  5094. size="3.41MB" >
  5095. </productMenu>
  5096. <productMenu id="connectGuide"
  5097. type="1"
  5098. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5099. size="1.12MB" >
  5100. </productMenu>
  5101. <productMenu id="volume"
  5102. type="11" >
  5103. </productMenu>
  5104. <productMenu id="battery"
  5105. type="1" >
  5106. </productMenu>
  5107. <productID id="3154"
  5108. />
  5109. <productGroupable type="0"
  5110. />
  5111. </product>
  5112. <product id="SRL3Plus"
  5113. name="SRL3 Plus"
  5114. series="60"
  5115. latestVersion="0.9.5"
  5116. latestVersionMesh="0.19"
  5117. latestVersionVoicePrompt="1.2"
  5118. show = "-1" >
  5119. <productMenu id="protocol"
  5120. type="2" >
  5121. </productMenu>
  5122. <productMenu id="ota"
  5123. type="2" >
  5124. <otaLanguages>
  5125. <otaLanguage
  5126. id="0"
  5127. name="English"
  5128. package="0"
  5129. />
  5130. <otaLanguage
  5131. id="0"
  5132. name="French"
  5133. package="1"
  5134. />
  5135. <otaLanguage
  5136. id="0"
  5137. name="Spanish"
  5138. package="2"
  5139. />
  5140. <otaLanguage
  5141. id="0"
  5142. name="Italian"
  5143. package="3"
  5144. />
  5145. <otaLanguage
  5146. id="0"
  5147. name="German"
  5148. package="4"
  5149. />
  5150. <otaLanguage
  5151. id="0"
  5152. name="Dutch"
  5153. package="5"
  5154. />
  5155. <otaLanguage
  5156. id="0"
  5157. name="Russian"
  5158. package="6"
  5159. />
  5160. <otaLanguage
  5161. id="0"
  5162. name="Chinese"
  5163. package="7"
  5164. />
  5165. <otaLanguage
  5166. id="0"
  5167. name="Korean"
  5168. package="8"
  5169. />
  5170. <otaLanguage
  5171. id="0"
  5172. name="Japanese"
  5173. package="9"
  5174. />
  5175. <otaLanguage
  5176. id="0"
  5177. name="Finnish"
  5178. package="10"
  5179. />
  5180. </otaLanguages>
  5181. <otaPackages>
  5182. <package
  5183. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5184. size="5183988"
  5185. />
  5186. <package
  5187. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5188. size="5183988"
  5189. />
  5190. <package
  5191. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5192. size="5183988"
  5193. />
  5194. <package
  5195. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5196. size="5183988"
  5197. />
  5198. <package
  5199. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5200. size="5183988"
  5201. />
  5202. <package
  5203. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5204. size="5183988"
  5205. />
  5206. <package
  5207. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5208. size="5183988"
  5209. />
  5210. <package
  5211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5212. size="5183988"
  5213. />
  5214. <package
  5215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5216. size="5183988"
  5217. />
  5218. <package
  5219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5220. size="5183988"
  5221. />
  5222. <package
  5223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5224. size="5183988"
  5225. />
  5226. </otaPackages>
  5227. </productMenu>
  5228. <productMenu id="sip"
  5229. type="1" >
  5230. </productMenu>
  5231. <productMenu id="illusion"
  5232. type="1" >
  5233. </productMenu>
  5234. <productMenu id="meshIntercom+"
  5235. type="3"
  5236. url="2" >
  5237. </productMenu>
  5238. <productMenu id="waveIntercom"
  5239. type="1" >
  5240. </productMenu>
  5241. <productMenu id="bluetoothIntercom"
  5242. type="1"
  5243. url="2" >
  5244. </productMenu>
  5245. <productMenu id="bluetoothIntercomGrouping"
  5246. type="0" >
  5247. </productMenu>
  5248. <productMenu id="fmradio"
  5249. type="1"
  5250. url="1" >
  5251. </productMenu>
  5252. <productMenu id="phone"
  5253. type="1" >
  5254. </productMenu>
  5255. <productMenu id="music"
  5256. type="1" >
  5257. </productMenu>
  5258. <productMenu id="musicSharing"
  5259. type="0" >
  5260. </productMenu>
  5261. <productMenu id="deviceSetting"
  5262. type="1"
  5263. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5264. </productMenu>
  5265. <productMenu id="quickGuide"
  5266. type="0"
  5267. url=""
  5268. size="1.12MB" >
  5269. </productMenu>
  5270. <productMenu id="userGuide"
  5271. type="0"
  5272. url=""
  5273. size="2.0MB" >
  5274. </productMenu>
  5275. <productMenu id="videoGuide"
  5276. type="0"
  5277. url=""
  5278. size="3.41MB" >
  5279. </productMenu>
  5280. <productMenu id="volume"
  5281. type="16" >
  5282. </productMenu>
  5283. <productMenu id="soundMode"
  5284. type="1" >
  5285. </productMenu>
  5286. <productMenu id="battery"
  5287. type="1" >
  5288. </productMenu>
  5289. <productID id="6A08"
  5290. />
  5291. <productGroupable type="0"
  5292. />
  5293. </product>
  5294. <product id="SRL3"
  5295. name="SRL3"
  5296. series="SRL"
  5297. latestVersion="1.5"
  5298. show = "1" >
  5299. <productMenu id="protocol"
  5300. type="2" >
  5301. </productMenu>
  5302. <productMenu id="alexa"
  5303. type="0" >
  5304. </productMenu>
  5305. <productMenu id="ota"
  5306. type="0" >
  5307. </productMenu>
  5308. <productMenu id="wa"
  5309. type="1" >
  5310. </productMenu>
  5311. <productMenu id="sip"
  5312. type="1" >
  5313. </productMenu>
  5314. <productMenu id="meshIntercom"
  5315. type="30" >
  5316. </productMenu>
  5317. <productMenu id="meshIntercom+"
  5318. type="3"
  5319. url="2" >
  5320. <productMenuType version="1.3.9"
  5321. type="2"
  5322. />
  5323. </productMenu>
  5324. <productMenu id="waveIntercom"
  5325. type="1" >
  5326. <productMenuType version="1.4.9"
  5327. type="0"
  5328. />
  5329. </productMenu>
  5330. <productMenu id="bluetoothIntercom"
  5331. type="1" >
  5332. </productMenu>
  5333. <productMenu id="phone"
  5334. type="1" >
  5335. </productMenu>
  5336. <productMenu id="music"
  5337. type="1" >
  5338. </productMenu>
  5339. <productMenu id="fmradio"
  5340. type="1" >
  5341. </productMenu>
  5342. <productMenu id="deviceSetting"
  5343. type="1"
  5344. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5345. <productMenuURL version="1.3"
  5346. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5347. />
  5348. </productMenu>
  5349. <productMenu id="quickGuide"
  5350. type="0"
  5351. url=""
  5352. size="344KB" >
  5353. </productMenu>
  5354. <productMenu id="userGuide"
  5355. type="1"
  5356. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5357. size="3.41MB" >
  5358. </productMenu>
  5359. <productMenu id="connectGuide"
  5360. type="1"
  5361. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5362. size="1.12MB" >
  5363. </productMenu>
  5364. <productMenu id="volume"
  5365. type="11" >
  5366. </productMenu>
  5367. <productMenu id="battery"
  5368. type="1" >
  5369. </productMenu>
  5370. <productID id="3219"
  5371. />
  5372. <productGroupable type="0"
  5373. />
  5374. </product>
  5375. <product id="SRL_Mesh"
  5376. name="SRL-Mesh"
  5377. series="SRL"
  5378. latestVersion="1.7"
  5379. show = "1" >
  5380. <productMenu id="protocol"
  5381. type="2" >
  5382. </productMenu>
  5383. <productMenu id="alexa"
  5384. type="0" >
  5385. </productMenu>
  5386. <productMenu id="ota"
  5387. type="0" >
  5388. </productMenu>
  5389. <productMenu id="wa"
  5390. type="1" >
  5391. </productMenu>
  5392. <productMenu id="sip"
  5393. type="1" >
  5394. </productMenu>
  5395. <productMenu id="meshIntercom"
  5396. type="30" >
  5397. <productMenuType version="1.1.1"
  5398. type="20"
  5399. />
  5400. </productMenu>
  5401. <productMenu id="meshIntercom+"
  5402. type="3"
  5403. url="2" >
  5404. <productMenuType version="1.5.9"
  5405. type="2"
  5406. />
  5407. <productMenuURL version="1.1.1"
  5408. url="0"
  5409. />
  5410. </productMenu>
  5411. <productMenu id="waveIntercom"
  5412. type="1" >
  5413. <productMenuType version="1.6.9"
  5414. type="0"
  5415. />
  5416. </productMenu>
  5417. <productMenu id="bluetoothIntercom"
  5418. type="1" >
  5419. </productMenu>
  5420. <productMenu id="phone"
  5421. type="1" >
  5422. </productMenu>
  5423. <productMenu id="music"
  5424. type="1" >
  5425. </productMenu>
  5426. <productMenu id="fmradio"
  5427. type="1" >
  5428. </productMenu>
  5429. <productMenu id="deviceSetting"
  5430. type="1"
  5431. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5432. <productMenuURL version="1.5"
  5433. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5434. />
  5435. <productMenuURL version="1.1.1"
  5436. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5437. />
  5438. <productMenuURL version="1.0.3"
  5439. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5440. />
  5441. </productMenu>
  5442. <productMenu id="quickGuide"
  5443. type="0"
  5444. url=""
  5445. size="344KB" >
  5446. </productMenu>
  5447. <productMenu id="userGuide"
  5448. type="1"
  5449. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5450. size="3.41MB" >
  5451. </productMenu>
  5452. <productMenu id="connectGuide"
  5453. type="1"
  5454. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5455. size="1.12MB" >
  5456. </productMenu>
  5457. <productMenu id="volume"
  5458. type="11" >
  5459. </productMenu>
  5460. <productMenu id="battery"
  5461. type="1" >
  5462. </productMenu>
  5463. <productID id="3216"
  5464. />
  5465. <productGroupable type="0"
  5466. />
  5467. </product>
  5468. <product id="SRL_EXT"
  5469. name="SRL-EXT"
  5470. series="SRL"
  5471. latestVersion="1.7"
  5472. show = "1" >
  5473. <productMenu id="protocol"
  5474. type="2" >
  5475. </productMenu>
  5476. <productMenu id="alexa"
  5477. type="0" >
  5478. </productMenu>
  5479. <productMenu id="ota"
  5480. type="0" >
  5481. </productMenu>
  5482. <productMenu id="wa"
  5483. type="0" >
  5484. </productMenu>
  5485. <productMenu id="sip"
  5486. type="1" >
  5487. </productMenu>
  5488. <productMenu id="meshIntercom"
  5489. type="30" >
  5490. <productMenuType version="1.1.1"
  5491. type="20"
  5492. />
  5493. </productMenu>
  5494. <productMenu id="meshIntercom+"
  5495. type="3"
  5496. url="2" >
  5497. <productMenuType version="1.5.9"
  5498. type="2"
  5499. />
  5500. <productMenuURL version="1.1.1"
  5501. url="0"
  5502. />
  5503. </productMenu>
  5504. <productMenu id="waveIntercom"
  5505. type="1" >
  5506. <productMenuType version="1.6.9"
  5507. type="0"
  5508. />
  5509. </productMenu>
  5510. <productMenu id="bluetoothIntercom"
  5511. type="1" >
  5512. </productMenu>
  5513. <productMenu id="phone"
  5514. type="1" >
  5515. </productMenu>
  5516. <productMenu id="music"
  5517. type="1" >
  5518. </productMenu>
  5519. <productMenu id="fmradio"
  5520. type="1" >
  5521. </productMenu>
  5522. <productMenu id="deviceSetting"
  5523. type="1"
  5524. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5525. <productMenuURL version="1.5"
  5526. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5527. />
  5528. <productMenuURL version="1.1.1"
  5529. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5530. />
  5531. <productMenuURL version="1.0.3"
  5532. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5533. />
  5534. </productMenu>
  5535. <productMenu id="quickGuide"
  5536. type="0"
  5537. url=""
  5538. size="344KB" >
  5539. </productMenu>
  5540. <productMenu id="userGuide"
  5541. type="1"
  5542. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5543. size="3.41MB" >
  5544. </productMenu>
  5545. <productMenu id="connectGuide"
  5546. type="1"
  5547. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5548. size="1.12MB" >
  5549. </productMenu>
  5550. <productMenu id="volume"
  5551. type="11" >
  5552. </productMenu>
  5553. <productMenu id="battery"
  5554. type="1" >
  5555. </productMenu>
  5556. <productID id="3212"
  5557. />
  5558. <productGroupable type="0"
  5559. />
  5560. </product>
  5561. <product id="SRL2"
  5562. name="SRL2"
  5563. series="SRL"
  5564. latestVersion="1.0.9"
  5565. show = "1" >
  5566. <productMenu id="protocol"
  5567. type="0">
  5568. </productMenu>
  5569. <productMenu id="sip"
  5570. type="1" >
  5571. </productMenu>
  5572. <productMenu id="bluetoothIntercom"
  5573. type="1" >
  5574. </productMenu>
  5575. <productMenu id="intercomSetting"
  5576. type="1" >
  5577. </productMenu>
  5578. <productMenu id="phone"
  5579. type="2" >
  5580. </productMenu>
  5581. <productMenu id="fmradio"
  5582. type="3" >
  5583. </productMenu>
  5584. <productMenu id="deviceSetting"
  5585. type="1"
  5586. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5587. </productMenu>
  5588. <productMenu id="quickGuide"
  5589. type="1"
  5590. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5591. size="846KB" >
  5592. </productMenu>
  5593. <productMenu id="userGuide"
  5594. type="1"
  5595. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5596. size="1.18MB" >
  5597. </productMenu>
  5598. <productMenu id="connectGuide"
  5599. type="1"
  5600. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5601. size="1.12MB" >
  5602. </productMenu>
  5603. <productID id="4530"
  5604. />
  5605. <productGroupable type="1"
  5606. />
  5607. </product>
  5608. <product id="Neotec2"
  5609. name="SRL Neotec2"
  5610. series="SRL"
  5611. latestVersion="1.1.5"
  5612. show = "1" >
  5613. <productMenu id="protocol"
  5614. type="0">
  5615. </productMenu>
  5616. <productMenu id="sip"
  5617. type="1" >
  5618. </productMenu>
  5619. <productMenu id="bluetoothIntercom"
  5620. type="1" >
  5621. </productMenu>
  5622. <productMenu id="intercomSetting"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="phone"
  5626. type="2" >
  5627. </productMenu>
  5628. <productMenu id="fmradio"
  5629. type="3" >
  5630. </productMenu>
  5631. <productMenu id="deviceSetting"
  5632. type="1"
  5633. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5634. </productMenu>
  5635. <productMenu id="quickGuide"
  5636. type="0"
  5637. url=""
  5638. size="796KB" >
  5639. </productMenu>
  5640. <productMenu id="userGuide"
  5641. type="1"
  5642. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5643. size="1.90MB" >
  5644. </productMenu>
  5645. <productMenu id="connectGuide"
  5646. type="1"
  5647. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5648. size="1.12MB" >
  5649. </productMenu>
  5650. <productID id="4510"
  5651. />
  5652. <productGroupable type="1"
  5653. />
  5654. </product>
  5655. <product id="SPIDERST2ANC"
  5656. name="SPIDER ST2 ANC"
  5657. series="SPIDER"
  5658. latestVersion="0.5.1"
  5659. latestVersionVoicePrompt="0.2"
  5660. latestVersionMesh="0.8"
  5661. show = "-1" >
  5662. <productMenu id="protocol"
  5663. type="2" >
  5664. </productMenu>
  5665. <productMenu id="ota"
  5666. type="0" >
  5667. <otaPackages>
  5668. <package
  5669. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5670. size="2945812"
  5671. />
  5672. </otaPackages>
  5673. </productMenu>
  5674. <productMenu id="wa"
  5675. type="0" >
  5676. </productMenu>
  5677. <productMenu id="led"
  5678. type="1" >
  5679. </productMenu>
  5680. <productMenu id="meshIntercom"
  5681. type="30" >
  5682. </productMenu>
  5683. <productMenu id="fmradio"
  5684. type="1" >
  5685. </productMenu>
  5686. <productMenu id="phone"
  5687. type="1" >
  5688. </productMenu>
  5689. <productMenu id="music"
  5690. type="1" >
  5691. </productMenu>
  5692. <productMenu id="musicSharing"
  5693. type="0" >
  5694. </productMenu>
  5695. <productMenu id="deviceSetting"
  5696. type="1"
  5697. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5698. </productMenu>
  5699. <productMenu id="quickGuide"
  5700. type="1"
  5701. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5702. size="1.12MB" >
  5703. </productMenu>
  5704. <productMenu id="userGuide"
  5705. type="1"
  5706. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5707. size="2.0MB" >
  5708. </productMenu>
  5709. <productMenu id="videoGuide"
  5710. type="1"
  5711. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5712. size="3.41MB" >
  5713. </productMenu>
  5714. <productMenu id="volume"
  5715. type="12" >
  5716. </productMenu>
  5717. <productMenu id="battery"
  5718. type="1" >
  5719. </productMenu>
  5720. <productID id="6A00"
  5721. />
  5722. <productGroupable type="0"
  5723. />
  5724. </product>
  5725. <product id="SPIDER_ST1"
  5726. name="SPIDER ST1"
  5727. series="SPIDER"
  5728. latestVersion="2.5.1"
  5729. latestVersionVoicePrompt="1.3"
  5730. show = "1" >
  5731. <productMenu id="protocol"
  5732. type="2" >
  5733. </productMenu>
  5734. <productMenu id="alexa"
  5735. type="0" >
  5736. </productMenu>
  5737. <productMenu id="ota"
  5738. type="2" >
  5739. <productMenuType version="2.1.9"
  5740. type="0"
  5741. />
  5742. <otaPackages>
  5743. <package
  5744. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5.1-build2.img"
  5745. size="2945812"
  5746. />
  5747. </otaPackages>
  5748. </productMenu>
  5749. <productMenu id="wa"
  5750. type="0" >
  5751. </productMenu>
  5752. <productMenu id="meshIntercom"
  5753. type="30" >
  5754. <productMenuType version="2.1.1"
  5755. type="20"
  5756. />
  5757. </productMenu>
  5758. <productMenu id="meshIntercom+"
  5759. type="3"
  5760. url="2" >
  5761. <productMenuType version="2.2.9"
  5762. type="2"
  5763. />
  5764. <productMenuURL version="2.1.1"
  5765. url="0"
  5766. />
  5767. </productMenu>
  5768. <productMenu id="waveIntercom"
  5769. type="1" >
  5770. <productMenuType version="2.3.9"
  5771. type="0"
  5772. />
  5773. </productMenu>
  5774. <productMenu id="phone"
  5775. type="1" >
  5776. </productMenu>
  5777. <productMenu id="music"
  5778. type="1" >
  5779. </productMenu>
  5780. <productMenu id="musicSharing"
  5781. type="0" >
  5782. </productMenu>
  5783. <productMenu id="deviceSetting"
  5784. type="1"
  5785. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5786. <productMenuURL version="2.4.9"
  5787. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5788. />
  5789. <productMenuURL version="2.2.2"
  5790. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5791. />
  5792. <productMenuURL version="2.1.1"
  5793. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5794. />
  5795. </productMenu>
  5796. <productMenu id="quickGuide"
  5797. type="0"
  5798. url=""
  5799. size="1.12MB" >
  5800. </productMenu>
  5801. <productMenu id="userGuide"
  5802. type="1"
  5803. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5804. size="2.0MB" >
  5805. </productMenu>
  5806. <productMenu id="videoGuide"
  5807. type="1"
  5808. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5809. size="3.41MB" >
  5810. </productMenu>
  5811. <productMenu id="connectGuide"
  5812. type="1"
  5813. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5814. size="1.12MB" >
  5815. </productMenu>
  5816. <productMenu id="volume"
  5817. type="12" >
  5818. </productMenu>
  5819. <productMenu id="battery"
  5820. type="1" >
  5821. </productMenu>
  5822. <productID id="6800"
  5823. />
  5824. <productGroupable type="0"
  5825. />
  5826. </product>
  5827. <product id="SPIDER_ST1"
  5828. name="SPIDER ST1"
  5829. series="SPIDER"
  5830. latestVersion="1.2.2"
  5831. show = "-1" >
  5832. <productMenu id="protocol"
  5833. type="2" >
  5834. </productMenu>
  5835. <productMenu id="alexa"
  5836. type="0" >
  5837. </productMenu>
  5838. <productMenu id="ota"
  5839. type="0" >
  5840. </productMenu>
  5841. <productMenu id="wa"
  5842. type="0" >
  5843. </productMenu>
  5844. <productMenu id="meshIntercom"
  5845. type="20" >
  5846. </productMenu>
  5847. <productMenu id="phone"
  5848. type="1" >
  5849. </productMenu>
  5850. <productMenu id="music"
  5851. type="1" >
  5852. </productMenu>
  5853. <productMenu id="deviceSetting"
  5854. type="1"
  5855. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5856. </productMenu>
  5857. <productMenu id="quickGuide"
  5858. type="0"
  5859. url=""
  5860. size="1.12MB" >
  5861. </productMenu>
  5862. <productMenu id="userGuide"
  5863. type="1"
  5864. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5865. size="2.0MB" >
  5866. </productMenu>
  5867. <productMenu id="videoGuide"
  5868. type="1"
  5869. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5870. size="3.41MB" >
  5871. </productMenu>
  5872. <productMenu id="volume"
  5873. type="13" >
  5874. <productMenuType version="1.1.6"
  5875. type="14"/>
  5876. </productMenu>
  5877. <productMenu id="battery"
  5878. type="1" >
  5879. </productMenu>
  5880. <productID id="6510"
  5881. />
  5882. <productGroupable type="0"
  5883. />
  5884. </product>
  5885. <product id="SPIDER_RT1"
  5886. name="SPIDER RT1"
  5887. series="SPIDER"
  5888. latestVersion="2.5.1"
  5889. latestVersionVoicePrompt="1.3"
  5890. show = "1" >
  5891. <productMenu id="protocol"
  5892. type="2" >
  5893. </productMenu>
  5894. <productMenu id="alexa"
  5895. type="0" >
  5896. </productMenu>
  5897. <productMenu id="ota"
  5898. type="2" >
  5899. <productMenuType version="2.1.9"
  5900. type="0"
  5901. />
  5902. <otaPackages>
  5903. <package
  5904. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5.1-build2.img"
  5905. size="2945812"
  5906. />
  5907. </otaPackages>
  5908. </productMenu>
  5909. <productMenu id="wa"
  5910. type="0" >
  5911. </productMenu>
  5912. <productMenu id="meshIntercom"
  5913. type="30" >
  5914. <productMenuType version="2.1.1"
  5915. type="20"
  5916. />
  5917. </productMenu>
  5918. <productMenu id="meshIntercom+"
  5919. type="3"
  5920. url="2" >
  5921. <productMenuType version="2.2.9"
  5922. type="2"
  5923. />
  5924. <productMenuURL version="2.1.1"
  5925. url="0"
  5926. />
  5927. </productMenu>
  5928. <productMenu id="waveIntercom"
  5929. type="1" >
  5930. <productMenuType version="2.3.9"
  5931. type="0"
  5932. />
  5933. </productMenu>
  5934. <productMenu id="phone"
  5935. type="1" >
  5936. </productMenu>
  5937. <productMenu id="music"
  5938. type="1" >
  5939. </productMenu>
  5940. <productMenu id="musicSharing"
  5941. type="0" >
  5942. </productMenu>
  5943. <productMenu id="deviceSetting"
  5944. type="1"
  5945. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5946. <productMenuURL version="2.4.9"
  5947. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5948. />
  5949. <productMenuURL version="2.2.2"
  5950. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5951. />
  5952. <productMenuURL version="2.1.1"
  5953. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5954. />
  5955. </productMenu>
  5956. <productMenu id="quickGuide"
  5957. type="0"
  5958. url=""
  5959. size="1.12MB" >
  5960. </productMenu>
  5961. <productMenu id="userGuide"
  5962. type="1"
  5963. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5964. size="2.0MB" >
  5965. </productMenu>
  5966. <productMenu id="videoGuide"
  5967. type="1"
  5968. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5969. size="3.41MB" >
  5970. </productMenu>
  5971. <productMenu id="connectGuide"
  5972. type="1"
  5973. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5974. size="1.12MB" >
  5975. </productMenu>
  5976. <productMenu id="volume"
  5977. type="12" >
  5978. </productMenu>
  5979. <productMenu id="battery"
  5980. type="1" >
  5981. </productMenu>
  5982. <productID id="6810"
  5983. />
  5984. <productGroupable type="0"
  5985. />
  5986. </product>
  5987. <product id="SPIDER_RT1"
  5988. name="SPIDER RT1"
  5989. series="SPIDER"
  5990. latestVersion="1.2.2"
  5991. show = "-1" >
  5992. <productMenu id="protocol"
  5993. type="2" >
  5994. </productMenu>
  5995. <productMenu id="alexa"
  5996. type="0" >
  5997. </productMenu>
  5998. <productMenu id="ota"
  5999. type="0" >
  6000. </productMenu>
  6001. <productMenu id="wa"
  6002. type="0" >
  6003. </productMenu>
  6004. <productMenu id="meshIntercom"
  6005. type="20" >
  6006. </productMenu>
  6007. <productMenu id="phone"
  6008. type="1" >
  6009. </productMenu>
  6010. <productMenu id="music"
  6011. type="1" >
  6012. </productMenu>
  6013. <productMenu id="deviceSetting"
  6014. type="1"
  6015. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  6016. </productMenu>
  6017. <productMenu id="quickGuide"
  6018. type="0"
  6019. url=""
  6020. size="1.32MB" >
  6021. </productMenu>
  6022. <productMenu id="userGuide"
  6023. type="1"
  6024. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  6025. size="1.79MB" >
  6026. </productMenu>
  6027. <productMenu id="videoGuide"
  6028. type="1"
  6029. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  6030. size="3.41MB" >
  6031. </productMenu>
  6032. <productMenu id="volume"
  6033. type="13" >
  6034. <productMenuType version="1.1.6"
  6035. type="14"/>
  6036. </productMenu>
  6037. <productMenu id="battery"
  6038. type="1" >
  6039. </productMenu>
  6040. <productID id="6500"
  6041. />
  6042. <productGroupable type="0"
  6043. />
  6044. </product>
  6045. <product id="30K"
  6046. name="30K"
  6047. series="30"
  6048. latestVersion="4.5"
  6049. show = "1" >
  6050. <productMenu id="protocol"
  6051. type="2" >
  6052. </productMenu>
  6053. <productMenu id="alexa"
  6054. type="0" >
  6055. </productMenu>
  6056. <productMenu id="wa"
  6057. type="1" >
  6058. </productMenu>
  6059. <productMenu id="sip"
  6060. type="1" >
  6061. </productMenu>
  6062. <productMenu id="meshIntercom"
  6063. type="30" >
  6064. <productMenuType version="4.0.4"
  6065. type="20"
  6066. />
  6067. </productMenu>
  6068. <productMenu id="meshIntercom+"
  6069. type="3"
  6070. url="2" >
  6071. <productMenuType version="4.3.9"
  6072. type="2"
  6073. />
  6074. <productMenuURL version="4.0.4"
  6075. url="0"
  6076. />
  6077. </productMenu>
  6078. <productMenu id="waveIntercom"
  6079. type="1" >
  6080. <productMenuType version="4.4.9"
  6081. type="0"
  6082. />
  6083. </productMenu>
  6084. <productMenu id="bluetoothIntercom"
  6085. type="1" >
  6086. </productMenu>
  6087. <productMenu id="phone"
  6088. type="1" >
  6089. </productMenu>
  6090. <productMenu id="music"
  6091. type="1" >
  6092. </productMenu>
  6093. <productMenu id="fmradio"
  6094. type="1" >
  6095. </productMenu>
  6096. <productMenu id="deviceSetting"
  6097. type="1"
  6098. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  6099. <productMenuURL version="4.3"
  6100. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  6101. />
  6102. <productMenuURL version="4.2"
  6103. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  6104. />
  6105. <productMenuURL version="4.0.4"
  6106. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  6107. />
  6108. </productMenu>
  6109. <productMenu id="quickGuide"
  6110. type="0"
  6111. url=""
  6112. size="934KB" >
  6113. </productMenu>
  6114. <productMenu id="userGuide"
  6115. type="1"
  6116. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  6117. size="1.14MB" >
  6118. </productMenu>
  6119. <productMenu id="connectGuide"
  6120. type="1"
  6121. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  6122. size="1.12MB" >
  6123. </productMenu>
  6124. <productMenu id="volume"
  6125. type="11" >
  6126. </productMenu>
  6127. <productMenu id="battery"
  6128. type="1" >
  6129. </productMenu>
  6130. <productID id="3211"
  6131. />
  6132. <productGroupable type="0"
  6133. />
  6134. </product>
  6135. <product id="30K"
  6136. name="30K"
  6137. series="30"
  6138. latestVersion="3.5"
  6139. show = "-1" >
  6140. <productMenu id="protocol"
  6141. type="1"
  6142. url="0">
  6143. </productMenu>
  6144. <productMenu id="wa"
  6145. type="7" >
  6146. </productMenu>
  6147. <productMenu id="sip"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="meshIntercom"
  6151. type="20" >
  6152. <productMenuType version="2.9.9"
  6153. type="10"
  6154. />
  6155. </productMenu>
  6156. <productMenu id="meshIntercom+"
  6157. type="3"
  6158. url="2" >
  6159. <productMenuType version="3.4.9"
  6160. type="2"
  6161. />
  6162. <productMenuType version="2.9.9"
  6163. type="1"
  6164. />
  6165. <productMenuURL version="3.3.1"
  6166. url="0"
  6167. />
  6168. </productMenu>
  6169. <productMenu id="bluetoothIntercom"
  6170. type="1" >
  6171. </productMenu>
  6172. <productMenu id="phone"
  6173. type="1" >
  6174. </productMenu>
  6175. <productMenu id="music"
  6176. type="1" >
  6177. </productMenu>
  6178. <productMenu id="fmradio"
  6179. type="1" >
  6180. </productMenu>
  6181. <productMenu id="deviceSetting"
  6182. type="1"
  6183. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6184. <productMenuURL version="3.4.9"
  6185. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6186. />
  6187. <productMenuURL version="3.3.1"
  6188. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6189. />
  6190. <productMenuURL version="3.0.1"
  6191. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6192. />
  6193. <productMenuURL version="2.3.1"
  6194. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6195. />
  6196. <productMenuURL version="2.0"
  6197. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6198. />
  6199. <productMenuURL version="1.0.3"
  6200. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6201. />
  6202. </productMenu>
  6203. <productMenu id="quickGuide"
  6204. type="0"
  6205. url=""
  6206. size="1.06MB" >
  6207. </productMenu>
  6208. <productMenu id="userGuide"
  6209. type="1"
  6210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6211. size="3.15MB" >
  6212. </productMenu>
  6213. <productMenu id="volume"
  6214. type="1" >
  6215. </productMenu>
  6216. <productID id="3110"
  6217. />
  6218. <productGroupable type="0"
  6219. />
  6220. </product>
  6221. <product id="FURY"
  6222. name="FURY"
  6223. series="Helmet"
  6224. latestVersion="1.0"
  6225. show = "-1" >
  6226. <productMenu id="protocol"
  6227. type="2" >
  6228. </productMenu>
  6229. <productMenu id="alexa"
  6230. type="0" >
  6231. </productMenu>
  6232. <productMenu id="ota"
  6233. type="0" >
  6234. </productMenu>
  6235. <productMenu id="wa"
  6236. type="0" >
  6237. </productMenu>
  6238. <productMenu id="meshIntercom"
  6239. type="20" >
  6240. </productMenu>
  6241. <productMenu id="phone"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="music"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="fmradio"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="deviceSetting"
  6251. type="1"
  6252. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6253. </productMenu>
  6254. <productMenu id="quickGuide"
  6255. type="1"
  6256. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6257. size="1.12MB" >
  6258. </productMenu>
  6259. <productMenu id="userGuide"
  6260. type="1"
  6261. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6262. size="2.0MB" >
  6263. </productMenu>
  6264. <productMenu id="volume"
  6265. type="13" >
  6266. </productMenu>
  6267. <productMenu id="battery"
  6268. type="1" >
  6269. </productMenu>
  6270. <productID id="5552"
  6271. />
  6272. <productGroupable type="0"
  6273. />
  6274. </product>
  6275. <product id="MomentumM"
  6276. name="Momentum EVO"
  6277. series="Helmet"
  6278. latestVersion="2.1.2"
  6279. show = "1" >
  6280. <productMenu id="protocol"
  6281. type="1"
  6282. url="0">
  6283. </productMenu>
  6284. <productMenu id="wa"
  6285. type="3" >
  6286. </productMenu>
  6287. <productMenu id="sip"
  6288. type="1" >
  6289. </productMenu>
  6290. <productMenu id="meshIntercom"
  6291. type="20" >
  6292. <productMenuType version="1.9.9"
  6293. type="10"
  6294. />
  6295. </productMenu>
  6296. <productMenu id="bluetoothIntercom"
  6297. type="1" >
  6298. </productMenu>
  6299. <productMenu id="phone"
  6300. type="1" >
  6301. </productMenu>
  6302. <productMenu id="music"
  6303. type="1" >
  6304. </productMenu>
  6305. <productMenu id="fmradio"
  6306. type="1" >
  6307. </productMenu>
  6308. <productMenu id="deviceSetting"
  6309. type="1"
  6310. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6311. <productMenuURL version="1.0.1"
  6312. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6313. />
  6314. </productMenu>
  6315. <productMenu id="quickGuide"
  6316. type="1"
  6317. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6318. size="1.06MB" >
  6319. </productMenu>
  6320. <productMenu id="userGuide"
  6321. type="1"
  6322. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6323. size="3.15MB" >
  6324. </productMenu>
  6325. <productMenu id="connectGuide"
  6326. type="1"
  6327. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6328. size="1.12MB" >
  6329. </productMenu>
  6330. <productMenu id="volume"
  6331. type="2" >
  6332. </productMenu>
  6333. <productID id="3116"
  6334. />
  6335. <productGroupable type="0"
  6336. />
  6337. </product>
  6338. <product id="Momentum"
  6339. name="Momentum"
  6340. series="Helmet"
  6341. latestVersion="1.0.9"
  6342. show = "1" >
  6343. <productMenu id="protocol"
  6344. type="0">
  6345. </productMenu>
  6346. <productMenu id="sip"
  6347. type="1" >
  6348. </productMenu>
  6349. <productMenu id="bluetoothIntercom"
  6350. type="1" >
  6351. </productMenu>
  6352. <productMenu id="intercomSetting"
  6353. type="1" >
  6354. </productMenu>
  6355. <productMenu id="phone"
  6356. type="2" >
  6357. </productMenu>
  6358. <productMenu id="fmradio"
  6359. type="3" >
  6360. </productMenu>
  6361. <productMenu id="deviceSetting"
  6362. type="1"
  6363. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6364. </productMenu>
  6365. <productMenu id="quickGuide"
  6366. type="1"
  6367. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6368. size="796KB" >
  6369. </productMenu>
  6370. <productMenu id="userGuide"
  6371. type="1"
  6372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6373. size="1.90MB" >
  6374. </productMenu>
  6375. <productMenu id="connectGuide"
  6376. type="1"
  6377. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6378. size="1.12MB" >
  6379. </productMenu>
  6380. <productID id="4310"
  6381. />
  6382. <productGroupable type="1"
  6383. />
  6384. </product>
  6385. <product id="Momentum_Pro"
  6386. name="Momentum Pro"
  6387. series="Helmet"
  6388. latestVersion="1.0.6"
  6389. show = "1" >
  6390. <productMenu id="protocol"
  6391. type="0">
  6392. </productMenu>
  6393. <productMenu id="sip"
  6394. type="1" >
  6395. </productMenu>
  6396. <productMenu id="bluetoothIntercom"
  6397. type="1" >
  6398. </productMenu>
  6399. <productMenu id="intercomSetting"
  6400. type="1" >
  6401. </productMenu>
  6402. <productMenu id="phone"
  6403. type="2" >
  6404. </productMenu>
  6405. <productMenu id="fmradio"
  6406. type="3" >
  6407. </productMenu>
  6408. <productMenu id="deviceSetting"
  6409. type="1"
  6410. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6411. </productMenu>
  6412. <productMenu id="quickGuide"
  6413. type="1"
  6414. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6415. size="796KB" >
  6416. </productMenu>
  6417. <productMenu id="userGuide"
  6418. type="1"
  6419. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6420. size="1.90MB" >
  6421. </productMenu>
  6422. <productMenu id="connectGuide"
  6423. type="1"
  6424. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6425. size="1.12MB" >
  6426. </productMenu>
  6427. <productID id="4330"
  6428. />
  6429. <productGroupable type="1"
  6430. />
  6431. </product>
  6432. <product id="Momentum_INC"
  6433. name="Momentum INC"
  6434. series="Helmet"
  6435. latestVersion="1.0.7"
  6436. show = "1" >
  6437. <productMenu id="protocol"
  6438. type="0">
  6439. </productMenu>
  6440. <productMenu id="sip"
  6441. type="1" >
  6442. </productMenu>
  6443. <productMenu id="bluetoothIntercom"
  6444. type="1" >
  6445. </productMenu>
  6446. <productMenu id="intercomSetting"
  6447. type="1" >
  6448. </productMenu>
  6449. <productMenu id="phone"
  6450. type="2" >
  6451. </productMenu>
  6452. <productMenu id="fmradio"
  6453. type="3" >
  6454. </productMenu>
  6455. <productMenu id="deviceSetting"
  6456. type="1"
  6457. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6458. </productMenu>
  6459. <productMenu id="quickGuide"
  6460. type="1"
  6461. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6462. size="794KB" >
  6463. </productMenu>
  6464. <productMenu id="userGuide"
  6465. type="1"
  6466. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6467. size="1.53MB" >
  6468. </productMenu>
  6469. <productMenu id="connectGuide"
  6470. type="1"
  6471. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6472. size="1.12MB" >
  6473. </productMenu>
  6474. <productID id="4410"
  6475. />
  6476. <productGroupable type="1"
  6477. />
  6478. </product>
  6479. <product id="Momentum_INCP"
  6480. name="Momentum INC Pro"
  6481. series="Helmet"
  6482. latestVersion="1.0.4"
  6483. show = "1" >
  6484. <productMenu id="protocol"
  6485. type="0">
  6486. </productMenu>
  6487. <productMenu id="sip"
  6488. type="1" >
  6489. </productMenu>
  6490. <productMenu id="bluetoothIntercom"
  6491. type="1" >
  6492. </productMenu>
  6493. <productMenu id="intercomSetting"
  6494. type="1" >
  6495. </productMenu>
  6496. <productMenu id="phone"
  6497. type="2" >
  6498. </productMenu>
  6499. <productMenu id="fmradio"
  6500. type="3" >
  6501. </productMenu>
  6502. <productMenu id="deviceSetting"
  6503. type="1"
  6504. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6505. </productMenu>
  6506. <productMenu id="quickGuide"
  6507. type="1"
  6508. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6509. size="794KB" >
  6510. </productMenu>
  6511. <productMenu id="userGuide"
  6512. type="1"
  6513. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6514. size="1.53MB" >
  6515. </productMenu>
  6516. <productMenu id="connectGuide"
  6517. type="1"
  6518. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6519. size="1.12MB" >
  6520. </productMenu>
  6521. <productID id="4430"
  6522. />
  6523. <productGroupable type="1"
  6524. />
  6525. </product>
  6526. <product id="Momentum_Lite"
  6527. name="Momentum Lite"
  6528. series="Helmet"
  6529. latestVersion="2.0.3"
  6530. show = "1" >
  6531. <productMenu id="protocol"
  6532. type="0">
  6533. </productMenu>
  6534. <productMenu id="sip"
  6535. type="1" >
  6536. </productMenu>
  6537. <productMenu id="bluetoothIntercom"
  6538. type="1" >
  6539. </productMenu>
  6540. <productMenu id="phone"
  6541. type="2" >
  6542. </productMenu>
  6543. <productMenu id="fmradio"
  6544. type="3" >
  6545. </productMenu>
  6546. <productMenu id="deviceSetting"
  6547. type="1"
  6548. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6549. <productMenuURL version="1.1"
  6550. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6551. />
  6552. </productMenu>
  6553. <productMenu id="quickGuide"
  6554. type="1"
  6555. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6556. size="790KB" >
  6557. </productMenu>
  6558. <productMenu id="userGuide"
  6559. type="1"
  6560. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6561. size="1.42MB" >
  6562. </productMenu>
  6563. <productMenu id="connectGuide"
  6564. type="1"
  6565. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6566. size="1.12MB" >
  6567. </productMenu>
  6568. <productID id="5526"
  6569. />
  6570. <productGroupable type="0"
  6571. />
  6572. </product>
  6573. <product id="OUTRUSHM"
  6574. name="OUTRUSH M"
  6575. series="Helmet"
  6576. latestVersion="1.0"
  6577. show = "-1" >
  6578. <productMenu id="protocol"
  6579. type="2" >
  6580. </productMenu>
  6581. <productMenu id="alexa"
  6582. type="0" >
  6583. </productMenu>
  6584. <productMenu id="ota"
  6585. type="0" >
  6586. </productMenu>
  6587. <productMenu id="wa"
  6588. type="0" >
  6589. </productMenu>
  6590. <productMenu id="meshIntercom"
  6591. type="30" >
  6592. </productMenu>
  6593. <productMenu id="phone"
  6594. type="1" >
  6595. </productMenu>
  6596. <productMenu id="music"
  6597. type="1" >
  6598. </productMenu>
  6599. <productMenu id="fmradio"
  6600. type="1" >
  6601. </productMenu>
  6602. <productMenu id="deviceSetting"
  6603. type="1"
  6604. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6605. </productMenu>
  6606. <productMenu id="quickGuide"
  6607. type="1"
  6608. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6609. size="1.12MB" >
  6610. </productMenu>
  6611. <productMenu id="userGuide"
  6612. type="1"
  6613. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6614. size="2.0MB" >
  6615. </productMenu>
  6616. <productMenu id="volume"
  6617. type="13" >
  6618. </productMenu>
  6619. <productMenu id="battery"
  6620. type="1" >
  6621. </productMenu>
  6622. <productID id="5600"
  6623. />
  6624. <productGroupable type="0"
  6625. />
  6626. </product>
  6627. <product id="ProRideEVO"
  6628. name="ProRide EVO"
  6629. series="Helmet"
  6630. latestVersion="1.1.2"
  6631. show = "1" >
  6632. <productMenu id="protocol"
  6633. type="0">
  6634. </productMenu>
  6635. <productMenu id="sip"
  6636. type="1" >
  6637. </productMenu>
  6638. <productMenu id="bluetoothIntercom"
  6639. type="1" >
  6640. </productMenu>
  6641. <productMenu id="phone"
  6642. type="2" >
  6643. </productMenu>
  6644. <productMenu id="fmradio"
  6645. type="3" >
  6646. </productMenu>
  6647. <productMenu id="deviceSetting"
  6648. type="1"
  6649. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6650. </productMenu>
  6651. <productMenu id="userGuide"
  6652. type="1"
  6653. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6654. size="778KB" >
  6655. </productMenu>
  6656. <productMenu id="connectGuide"
  6657. type="1"
  6658. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6659. size="1.12MB" >
  6660. </productMenu>
  6661. <productID id="5426"
  6662. />
  6663. <productGroupable type="0"
  6664. />
  6665. </product>
  6666. <product id="OUTRUSHR"
  6667. name="OUTRUSH R"
  6668. series="Helmet"
  6669. latestVersion="2.1"
  6670. show = "1" >
  6671. <productMenu id="protocol"
  6672. type="3" >
  6673. </productMenu>
  6674. <productMenu id="sip"
  6675. type="1" >
  6676. </productMenu>
  6677. <productMenu id="bluetoothIntercom"
  6678. type="1" >
  6679. </productMenu>
  6680. <productMenu id="phone"
  6681. type="1" >
  6682. </productMenu>
  6683. <productMenu id="fmradio"
  6684. type="0" >
  6685. </productMenu>
  6686. <productMenu id="deviceSetting"
  6687. type="1"
  6688. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6689. </productMenu>
  6690. <productMenu id="userGuide"
  6691. type="1"
  6692. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6693. size="1.14MB" >
  6694. </productMenu>
  6695. <productMenu id="connectGuide"
  6696. type="1"
  6697. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6698. size="1.12MB" >
  6699. </productMenu>
  6700. <productID id="5440"
  6701. />
  6702. <productGroupable type="0"
  6703. />
  6704. </product>
  6705. <product id="OUTRUSHR"
  6706. name="OUTRUSH R"
  6707. series="Helmet"
  6708. latestVersion="1.1.4"
  6709. show = "-1" >
  6710. <productMenu id="protocol"
  6711. type="0">
  6712. </productMenu>
  6713. <productMenu id="sip"
  6714. type="1" >
  6715. </productMenu>
  6716. <productMenu id="bluetoothIntercom"
  6717. type="1" >
  6718. </productMenu>
  6719. <productMenu id="phone"
  6720. type="2" >
  6721. </productMenu>
  6722. <productMenu id="fmradio"
  6723. type="3" >
  6724. </productMenu>
  6725. <productMenu id="deviceSetting"
  6726. type="1"
  6727. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6728. </productMenu>
  6729. <productMenu id="userGuide"
  6730. type="1"
  6731. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6732. size="660KB" >
  6733. </productMenu>
  6734. <productMenu id="connectGuide"
  6735. type="1"
  6736. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6737. size="1.12MB" >
  6738. </productMenu>
  6739. <productID id="5424"
  6740. />
  6741. <productGroupable type="0"
  6742. />
  6743. </product>
  6744. <product id="OUTSTARS"
  6745. name="OUTSTAR S"
  6746. series="Helmet"
  6747. latestVersion="2.0.1"
  6748. show = "-1" >
  6749. <productMenu id="protocol"
  6750. type="3" >
  6751. </productMenu>
  6752. <productMenu id="sip"
  6753. type="1" >
  6754. </productMenu>
  6755. <productMenu id="bluetoothIntercom"
  6756. type="1" >
  6757. </productMenu>
  6758. <productMenu id="phone"
  6759. type="1" >
  6760. </productMenu>
  6761. <productMenu id="fmradio"
  6762. type="0" >
  6763. </productMenu>
  6764. <productMenu id="deviceSetting"
  6765. type="1"
  6766. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6767. </productMenu>
  6768. <productMenu id="userGuide"
  6769. type="0"
  6770. url=""
  6771. size="1.14MB" >
  6772. </productMenu>
  6773. <productID id="5443"
  6774. />
  6775. <productGroupable type="0"
  6776. />
  6777. </product>
  6778. <product id="OUTSTARS"
  6779. name="OUTSTAR S"
  6780. series="Helmet"
  6781. latestVersion="1.1.4"
  6782. show = "1" >
  6783. <productMenu id="protocol"
  6784. type="0">
  6785. </productMenu>
  6786. <productMenu id="sip"
  6787. type="1" >
  6788. </productMenu>
  6789. <productMenu id="bluetoothIntercom"
  6790. type="1" >
  6791. </productMenu>
  6792. <productMenu id="phone"
  6793. type="2" >
  6794. </productMenu>
  6795. <productMenu id="fmradio"
  6796. type="3" >
  6797. </productMenu>
  6798. <productMenu id="deviceSetting"
  6799. type="1"
  6800. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6801. </productMenu>
  6802. <productMenu id="quickGuide"
  6803. type="1"
  6804. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6805. size="643KB" >
  6806. </productMenu>
  6807. <productMenu id="userGuide"
  6808. type="1"
  6809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6810. size="1.15MB" >
  6811. </productMenu>
  6812. <productMenu id="connectGuide"
  6813. type="1"
  6814. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6815. size="1.12MB" >
  6816. </productMenu>
  6817. <productID id="5428"
  6818. />
  6819. <productGroupable type="0"
  6820. />
  6821. </product>
  6822. <product id="OUTRIDE"
  6823. name="OUTRIDE"
  6824. series="Helmet"
  6825. latestVersion="1.0.1"
  6826. show = "1" >
  6827. <productMenu id="protocol"
  6828. type="0">
  6829. </productMenu>
  6830. <productMenu id="sip"
  6831. type="1" >
  6832. </productMenu>
  6833. <productMenu id="bluetoothIntercom"
  6834. type="1" >
  6835. </productMenu>
  6836. <productMenu id="phone"
  6837. type="2" >
  6838. </productMenu>
  6839. <productMenu id="fmradio"
  6840. type="3" >
  6841. </productMenu>
  6842. <productMenu id="deviceSetting"
  6843. type="1"
  6844. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6845. </productMenu>
  6846. <productMenu id="quickGuide"
  6847. type="1"
  6848. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6849. size="643KB" >
  6850. </productMenu>
  6851. <productMenu id="userGuide"
  6852. type="1"
  6853. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6854. size="660KB" >
  6855. </productMenu>
  6856. <productMenu id="connectGuide"
  6857. type="1"
  6858. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6859. size="1.12MB" >
  6860. </productMenu>
  6861. <productID id="5432"
  6862. />
  6863. <productGroupable type="0"
  6864. />
  6865. </product>
  6866. <product id="OUTFORCE"
  6867. name="OUTFORCE"
  6868. series="Helmet"
  6869. latestVersion="1.0.1"
  6870. show = "1" >
  6871. <productMenu id="protocol"
  6872. type="0">
  6873. </productMenu>
  6874. <productMenu id="sip"
  6875. type="1" >
  6876. </productMenu>
  6877. <productMenu id="bluetoothIntercom"
  6878. type="1" >
  6879. </productMenu>
  6880. <productMenu id="phone"
  6881. type="2" >
  6882. </productMenu>
  6883. <productMenu id="fmradio"
  6884. type="3" >
  6885. </productMenu>
  6886. <productMenu id="deviceSetting"
  6887. type="1"
  6888. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6889. </productMenu>
  6890. <productMenu id="quickGuide"
  6891. type="1"
  6892. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6893. size="643KB" >
  6894. </productMenu>
  6895. <productMenu id="userGuide"
  6896. type="1"
  6897. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6898. size="660KB" >
  6899. </productMenu>
  6900. <productMenu id="connectGuide"
  6901. type="1"
  6902. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6903. size="1.12MB" >
  6904. </productMenu>
  6905. <productID id="5430"
  6906. />
  6907. <productGroupable type="0"
  6908. />
  6909. </product>
  6910. <product id="Rumba"
  6911. name="Rumba"
  6912. series="30"
  6913. latestVersion="2.0"
  6914. show = "-1" >
  6915. <productMenu id="protocol"
  6916. type="3" >
  6917. </productMenu>
  6918. <productMenu id="sip"
  6919. type="1" >
  6920. </productMenu>
  6921. <productMenu id="bluetoothIntercom"
  6922. type="1" >
  6923. </productMenu>
  6924. <productMenu id="deviceSetting"
  6925. type="1"
  6926. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6927. </productMenu>
  6928. <productMenu id="quickGuide"
  6929. type="1"
  6930. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6931. size="344KB" >
  6932. </productMenu>
  6933. <productMenu id="userGuide"
  6934. type="1"
  6935. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6936. size="1.14MB" >
  6937. </productMenu>
  6938. <productID id="6322"
  6939. />
  6940. <productGroupable type="0"
  6941. />
  6942. </product>
  6943. <product id="Savage"
  6944. name="Savage"
  6945. series="Helmet"
  6946. latestVersion="1.2.2"
  6947. show = "1" >
  6948. <productMenu id="protocol"
  6949. type="0">
  6950. </productMenu>
  6951. <productMenu id="sip"
  6952. type="1" >
  6953. </productMenu>
  6954. <productMenu id="bluetoothIntercom"
  6955. type="1" >
  6956. </productMenu>
  6957. <productMenu id="phone"
  6958. type="2" >
  6959. </productMenu>
  6960. <productMenu id="fmradio"
  6961. type="3" >
  6962. </productMenu>
  6963. <productMenu id="deviceSetting"
  6964. type="1"
  6965. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6966. <productMenuURL version="1.9"
  6967. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6968. />
  6969. <productMenuURL version="1.1"
  6970. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6971. />
  6972. </productMenu>
  6973. <productMenu id="quickGuide"
  6974. type="1"
  6975. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6976. size="796KB" >
  6977. </productMenu>
  6978. <productMenu id="userGuide"
  6979. type="1"
  6980. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6981. size="910KB" >
  6982. </productMenu>
  6983. <productMenu id="connectGuide"
  6984. type="1"
  6985. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6986. size="1.12MB" >
  6987. </productMenu>
  6988. <productID id="5550"
  6989. />
  6990. <productGroupable type="0"
  6991. />
  6992. </product>
  6993. <product id="SPECTER"
  6994. name="SPECTER"
  6995. series="Helmet"
  6996. latestVersion="1.0.7"
  6997. latestVersionVoicePrompt="1.5"
  6998. show = "1" >
  6999. <productMenu id="protocol"
  7000. type="2" >
  7001. </productMenu>
  7002. <productMenu id="ota"
  7003. type="2" >
  7004. <otaLanguages>
  7005. <otaLanguage
  7006. id="0"
  7007. name="English"
  7008. package="0"
  7009. />
  7010. <otaLanguage
  7011. id="0"
  7012. name="French"
  7013. package="1"
  7014. />
  7015. <otaLanguage
  7016. id="0"
  7017. name="Spanish"
  7018. package="2"
  7019. />
  7020. <otaLanguage
  7021. id="0"
  7022. name="Italian"
  7023. package="3"
  7024. />
  7025. <otaLanguage
  7026. id="0"
  7027. name="German"
  7028. package="4"
  7029. />
  7030. <otaLanguage
  7031. id="0"
  7032. name="Dutch"
  7033. package="5"
  7034. />
  7035. <otaLanguage
  7036. id="0"
  7037. name="Russian"
  7038. package="6"
  7039. />
  7040. <otaLanguage
  7041. id="0"
  7042. name="Chinese"
  7043. package="7"
  7044. />
  7045. <otaLanguage
  7046. id="0"
  7047. name="Korean"
  7048. package="8"
  7049. />
  7050. <otaLanguage
  7051. id="0"
  7052. name="Japanese"
  7053. package="9"
  7054. />
  7055. <otaLanguage
  7056. id="0"
  7057. name="Finnish"
  7058. package="10"
  7059. />
  7060. <otaLanguage
  7061. id="0"
  7062. name="Polish"
  7063. package="11"
  7064. />
  7065. </otaLanguages>
  7066. <otaPackages>
  7067. <package
  7068. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1.img"
  7069. size="5183988"
  7070. />
  7071. <package
  7072. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fr-FR.img"
  7073. size="5183988"
  7074. />
  7075. <package
  7076. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-es-ES.img"
  7077. size="5183988"
  7078. />
  7079. <package
  7080. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-it-IT.img"
  7081. size="5183988"
  7082. />
  7083. <package
  7084. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-de-DE.img"
  7085. size="5183988"
  7086. />
  7087. <package
  7088. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-nl-NL.img"
  7089. size="5183988"
  7090. />
  7091. <package
  7092. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ru-RU.img"
  7093. size="5183988"
  7094. />
  7095. <package
  7096. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-cmn-CN.img"
  7097. size="5183988"
  7098. />
  7099. <package
  7100. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ko-KR.img"
  7101. size="5183988"
  7102. />
  7103. <package
  7104. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-ja-JP.img"
  7105. size="5183988"
  7106. />
  7107. <package
  7108. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-fi-FI.img"
  7109. size="5183988"
  7110. />
  7111. <package
  7112. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.7-build1-pl-PL.img"
  7113. size="5183988"
  7114. />
  7115. </otaPackages>
  7116. </productMenu>
  7117. <productMenu id="wa"
  7118. type="0" >
  7119. </productMenu>
  7120. <productMenu id="led"
  7121. type="5" >
  7122. </productMenu>
  7123. <productMenu id="led+"
  7124. type="2"
  7125. url="1" >
  7126. </productMenu>
  7127. <productMenu id="meshIntercom+"
  7128. type="3"
  7129. url="2" >
  7130. </productMenu>
  7131. <productMenu id="waveIntercom"
  7132. type="1" >
  7133. </productMenu>
  7134. <productMenu id="fmradio"
  7135. type="0" >
  7136. </productMenu>
  7137. <productMenu id="phone"
  7138. type="1" >
  7139. </productMenu>
  7140. <productMenu id="music"
  7141. type="1" >
  7142. </productMenu>
  7143. <productMenu id="musicSharing"
  7144. type="0" >
  7145. </productMenu>
  7146. <productMenu id="deviceSetting"
  7147. type="1"
  7148. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7149. <productMenuURL version="1.0.4"
  7150. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7151. />
  7152. </productMenu>
  7153. <productMenu id="quickGuide"
  7154. type="0"
  7155. url=""
  7156. size="1.12MB" >
  7157. </productMenu>
  7158. <productMenu id="userGuide"
  7159. type="1"
  7160. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7161. size="2.0MB" >
  7162. </productMenu>
  7163. <productMenu id="videoGuide"
  7164. type="0"
  7165. url=""
  7166. size="3.41MB" >
  7167. </productMenu>
  7168. <productMenu id="volume"
  7169. type="16" >
  7170. </productMenu>
  7171. <productMenu id="volume+"
  7172. type="2"
  7173. url="0x6004" >
  7174. </productMenu>
  7175. <productMenu id="battery"
  7176. type="1" >
  7177. </productMenu>
  7178. <productID id="6A11"
  7179. />
  7180. <productGroupable type="0"
  7181. />
  7182. </product>
  7183. <product id="SPECTER"
  7184. name="SPECTER"
  7185. series="Helmet"
  7186. latestVersion="1.0.7"
  7187. latestVersionVoicePrompt="1.5"
  7188. show = "-1" >
  7189. <productMenu id="protocol"
  7190. type="2" >
  7191. </productMenu>
  7192. <productMenu id="ota"
  7193. type="2" >
  7194. <otaLanguages>
  7195. <otaLanguage
  7196. id="0"
  7197. name="English"
  7198. package="0"
  7199. />
  7200. <otaLanguage
  7201. id="0"
  7202. name="French"
  7203. package="1"
  7204. />
  7205. <otaLanguage
  7206. id="0"
  7207. name="Spanish"
  7208. package="2"
  7209. />
  7210. <otaLanguage
  7211. id="0"
  7212. name="Italian"
  7213. package="3"
  7214. />
  7215. <otaLanguage
  7216. id="0"
  7217. name="German"
  7218. package="4"
  7219. />
  7220. <otaLanguage
  7221. id="0"
  7222. name="Dutch"
  7223. package="5"
  7224. />
  7225. <otaLanguage
  7226. id="0"
  7227. name="Russian"
  7228. package="6"
  7229. />
  7230. <otaLanguage
  7231. id="0"
  7232. name="Chinese"
  7233. package="7"
  7234. />
  7235. <otaLanguage
  7236. id="0"
  7237. name="Korean"
  7238. package="8"
  7239. />
  7240. <otaLanguage
  7241. id="0"
  7242. name="Japanese"
  7243. package="9"
  7244. />
  7245. <otaLanguage
  7246. id="0"
  7247. name="Finnish"
  7248. package="10"
  7249. />
  7250. <otaLanguage
  7251. id="0"
  7252. name="Polish"
  7253. package="11"
  7254. />
  7255. </otaLanguages>
  7256. <otaPackages>
  7257. <package
  7258. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1.img"
  7259. size="5183988"
  7260. />
  7261. <package
  7262. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fr-FR.img"
  7263. size="5183988"
  7264. />
  7265. <package
  7266. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-es-ES.img"
  7267. size="5183988"
  7268. />
  7269. <package
  7270. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-it-IT.img"
  7271. size="5183988"
  7272. />
  7273. <package
  7274. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-de-DE.img"
  7275. size="5183988"
  7276. />
  7277. <package
  7278. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-nl-NL.img"
  7279. size="5183988"
  7280. />
  7281. <package
  7282. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ru-RU.img"
  7283. size="5183988"
  7284. />
  7285. <package
  7286. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-cmn-CN.img"
  7287. size="5183988"
  7288. />
  7289. <package
  7290. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ko-KR.img"
  7291. size="5183988"
  7292. />
  7293. <package
  7294. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-ja-JP.img"
  7295. size="5183988"
  7296. />
  7297. <package
  7298. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-fi-FI.img"
  7299. size="5183988"
  7300. />
  7301. <package
  7302. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.7-build1-pl-PL.img"
  7303. size="5183988"
  7304. />
  7305. </otaPackages>
  7306. </productMenu>
  7307. <productMenu id="wa"
  7308. type="0" >
  7309. </productMenu>
  7310. <productMenu id="led"
  7311. type="5" >
  7312. </productMenu>
  7313. <productMenu id="led+"
  7314. type="2"
  7315. url="1" >
  7316. </productMenu>
  7317. <productMenu id="meshIntercom+"
  7318. type="3"
  7319. url="2" >
  7320. </productMenu>
  7321. <productMenu id="waveIntercom"
  7322. type="1" >
  7323. </productMenu>
  7324. <productMenu id="fmradio"
  7325. type="0" >
  7326. </productMenu>
  7327. <productMenu id="phone"
  7328. type="1" >
  7329. </productMenu>
  7330. <productMenu id="music"
  7331. type="1" >
  7332. </productMenu>
  7333. <productMenu id="musicSharing"
  7334. type="0" >
  7335. </productMenu>
  7336. <productMenu id="deviceSetting"
  7337. type="1"
  7338. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" ><!--https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01-->
  7339. <productMenuURL version="1.0.4"
  7340. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7341. />
  7342. <productMenuURL version="1.0"
  7343. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7344. />
  7345. </productMenu>
  7346. <productMenu id="quickGuide"
  7347. type="0"
  7348. url=""
  7349. size="1.12MB" >
  7350. </productMenu>
  7351. <productMenu id="userGuide"
  7352. type="1"
  7353. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7354. size="2.0MB" >
  7355. </productMenu>
  7356. <productMenu id="videoGuide"
  7357. type="0"
  7358. url=""
  7359. size="3.41MB" >
  7360. </productMenu>
  7361. <productMenu id="volume"
  7362. type="16" >
  7363. </productMenu>
  7364. <productMenu id="volume+"
  7365. type="2"
  7366. url="0x6004" >
  7367. </productMenu>
  7368. <productMenu id="battery"
  7369. type="1" >
  7370. </productMenu>
  7371. <productID id="6A0A"
  7372. />
  7373. <productGroupable type="0"
  7374. />
  7375. </product>
  7376. <product id="OUTLANDER"
  7377. name="OUTLANDER"
  7378. series="Helmet"
  7379. latestVersion="1.0.7"
  7380. latestVersionVoicePrompt="1.5"
  7381. show = "-1" >
  7382. <productMenu id="protocol"
  7383. type="2" >
  7384. </productMenu>
  7385. <productMenu id="ota"
  7386. type="2" >
  7387. <otaLanguages>
  7388. <otaLanguage
  7389. id="0"
  7390. name="English"
  7391. package="0"
  7392. />
  7393. <otaLanguage
  7394. id="0"
  7395. name="French"
  7396. package="1"
  7397. />
  7398. <otaLanguage
  7399. id="0"
  7400. name="Spanish"
  7401. package="2"
  7402. />
  7403. <otaLanguage
  7404. id="0"
  7405. name="Italian"
  7406. package="3"
  7407. />
  7408. <otaLanguage
  7409. id="0"
  7410. name="German"
  7411. package="4"
  7412. />
  7413. <otaLanguage
  7414. id="0"
  7415. name="Dutch"
  7416. package="5"
  7417. />
  7418. <otaLanguage
  7419. id="0"
  7420. name="Russian"
  7421. package="6"
  7422. />
  7423. <otaLanguage
  7424. id="0"
  7425. name="Chinese"
  7426. package="7"
  7427. />
  7428. <otaLanguage
  7429. id="0"
  7430. name="Korean"
  7431. package="8"
  7432. />
  7433. <otaLanguage
  7434. id="0"
  7435. name="Japanese"
  7436. package="9"
  7437. />
  7438. <otaLanguage
  7439. id="0"
  7440. name="Finnish"
  7441. package="10"
  7442. />
  7443. <otaLanguage
  7444. id="0"
  7445. name="Polish"
  7446. package="11"
  7447. />
  7448. </otaLanguages>
  7449. <otaPackages>
  7450. <package
  7451. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1.img"
  7452. size="5183988"
  7453. />
  7454. <package
  7455. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fr-FR.img"
  7456. size="5183988"
  7457. />
  7458. <package
  7459. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-es-ES.img"
  7460. size="5183988"
  7461. />
  7462. <package
  7463. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-it-IT.img"
  7464. size="5183988"
  7465. />
  7466. <package
  7467. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-de-DE.img"
  7468. size="5183988"
  7469. />
  7470. <package
  7471. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-nl-NL.img"
  7472. size="5183988"
  7473. />
  7474. <package
  7475. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ru-RU.img"
  7476. size="5183988"
  7477. />
  7478. <package
  7479. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-cmn-CN.img"
  7480. size="5183988"
  7481. />
  7482. <package
  7483. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ko-KR.img"
  7484. size="5183988"
  7485. />
  7486. <package
  7487. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-ja-JP.img"
  7488. size="5183988"
  7489. />
  7490. <package
  7491. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-fi-FI.img"
  7492. size="5183988"
  7493. />
  7494. <package
  7495. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.7-build1-pl-PL.img"
  7496. size="5183988"
  7497. />
  7498. </otaPackages>
  7499. </productMenu>
  7500. <productMenu id="wa"
  7501. type="0" >
  7502. </productMenu>
  7503. <productMenu id="led"
  7504. type="5" >
  7505. </productMenu>
  7506. <productMenu id="led+"
  7507. type="2"
  7508. url="1" >
  7509. </productMenu>
  7510. <productMenu id="meshIntercom+"
  7511. type="3"
  7512. url="2" >
  7513. </productMenu>
  7514. <productMenu id="waveIntercom"
  7515. type="1" >
  7516. </productMenu>
  7517. <productMenu id="fmradio"
  7518. type="0" >
  7519. </productMenu>
  7520. <productMenu id="phone"
  7521. type="1" >
  7522. </productMenu>
  7523. <productMenu id="music"
  7524. type="1" >
  7525. </productMenu>
  7526. <productMenu id="musicSharing"
  7527. type="0" >
  7528. </productMenu>
  7529. <productMenu id="deviceSetting"
  7530. type="1"
  7531. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_04.xml" > <!--NS_OUTLANDER_05-->
  7532. <productMenuURL version="1.0.4"
  7533. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7534. />
  7535. </productMenu>
  7536. <productMenu id="quickGuide"
  7537. type="0"
  7538. url=""
  7539. size="1.12MB" >
  7540. </productMenu>
  7541. <productMenu id="userGuide"
  7542. type="1"
  7543. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7544. size="2.0MB" >
  7545. </productMenu>
  7546. <productMenu id="videoGuide"
  7547. type="0"
  7548. url=""
  7549. size="3.41MB" >
  7550. </productMenu>
  7551. <productMenu id="volume"
  7552. type="16" >
  7553. </productMenu>
  7554. <productMenu id="volume+"
  7555. type="2"
  7556. url="0x6004" >
  7557. </productMenu>
  7558. <productMenu id="battery"
  7559. type="1" >
  7560. </productMenu>
  7561. <productID id="6A05"
  7562. />
  7563. <productGroupable type="0"
  7564. />
  7565. </product>
  7566. <product id="OUTRUSH2"
  7567. name="OUTRUSH 2"
  7568. series="Helmet"
  7569. latestVersion="1.0.2"
  7570. latestVersionVoicePrompt="1.1"
  7571. show = "-1" >
  7572. <productMenu id="protocol"
  7573. type="2" >
  7574. </productMenu>
  7575. <productMenu id="alexa"
  7576. type="0" >
  7577. </productMenu>
  7578. <productMenu id="ota"
  7579. type="2" >
  7580. <otaPackages>
  7581. <package
  7582. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7583. size="2945812"
  7584. />
  7585. </otaPackages>
  7586. </productMenu>
  7587. <productMenu id="meshIntercom+"
  7588. type="3"
  7589. url="2" >
  7590. </productMenu>
  7591. <productMenu id="waveIntercom"
  7592. type="1" >
  7593. </productMenu>
  7594. <productMenu id="phone"
  7595. type="1" >
  7596. </productMenu>
  7597. <productMenu id="music"
  7598. type="1" >
  7599. </productMenu>
  7600. <productMenu id="musicSharing"
  7601. type="0" >
  7602. </productMenu>
  7603. <productMenu id="deviceSetting"
  7604. type="1"
  7605. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7606. <productMenuURL version="1.0"
  7607. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7608. />
  7609. </productMenu>
  7610. <productMenu id="quickGuide"
  7611. type="0"
  7612. url=""
  7613. size="1.12MB" >
  7614. </productMenu>
  7615. <productMenu id="userGuide"
  7616. type="1"
  7617. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  7618. size="2.0MB" >
  7619. </productMenu>
  7620. <productMenu id="volume"
  7621. type="12" >
  7622. </productMenu>
  7623. <productMenu id="battery"
  7624. type="1" >
  7625. </productMenu>
  7626. <productID id="684A"
  7627. />
  7628. <productGroupable type="0"
  7629. />
  7630. </product>
  7631. <product id="OUTSTAR2"
  7632. name="OUTSTAR 2"
  7633. series="Helmet"
  7634. latestVersion="1.0.1"
  7635. latestVersionVoicePrompt="1.1"
  7636. show = "-1" >
  7637. <productMenu id="protocol"
  7638. type="2" >
  7639. </productMenu>
  7640. <productMenu id="alexa"
  7641. type="0" >
  7642. </productMenu>
  7643. <productMenu id="ota"
  7644. type="2" >
  7645. <otaPackages>
  7646. <package
  7647. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7648. size="2945812"
  7649. />
  7650. </otaPackages>
  7651. </productMenu>
  7652. <productMenu id="meshIntercom+"
  7653. type="3"
  7654. url="2" >
  7655. </productMenu>
  7656. <productMenu id="waveIntercom"
  7657. type="1" >
  7658. </productMenu>
  7659. <productMenu id="phone"
  7660. type="1" >
  7661. </productMenu>
  7662. <productMenu id="music"
  7663. type="1" >
  7664. </productMenu>
  7665. <productMenu id="musicSharing"
  7666. type="0" >
  7667. </productMenu>
  7668. <productMenu id="deviceSetting"
  7669. type="1"
  7670. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7671. </productMenu>
  7672. <productMenu id="quickGuide"
  7673. type="0"
  7674. url=""
  7675. size="1.12MB" >
  7676. </productMenu>
  7677. <productMenu id="userGuide"
  7678. type="1"
  7679. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  7680. size="2.0MB" >
  7681. </productMenu>
  7682. <productMenu id="volume"
  7683. type="12" >
  7684. </productMenu>
  7685. <productMenu id="battery"
  7686. type="1" >
  7687. </productMenu>
  7688. <productID id="684B"
  7689. />
  7690. <productGroupable type="0"
  7691. />
  7692. </product>
  7693. <product id="SURGE"
  7694. name="SURGE"
  7695. series="Helmet"
  7696. latestVersion="1.2"
  7697. latestVersionVoicePrompt="1.3"
  7698. show = "1" >
  7699. <productMenu id="protocol"
  7700. type="2" >
  7701. </productMenu>
  7702. <productMenu id="alexa"
  7703. type="0" >
  7704. </productMenu>
  7705. <productMenu id="ota"
  7706. type="2" >
  7707. <otaPackages>
  7708. <package
  7709. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7710. size="2945812"
  7711. />
  7712. </otaPackages>
  7713. </productMenu>
  7714. <productMenu id="meshIntercom"
  7715. type="30" >
  7716. </productMenu>
  7717. <productMenu id="meshIntercom+"
  7718. type="3"
  7719. url="2" >
  7720. <productMenuType version="1.0.1"
  7721. type="2"
  7722. />
  7723. </productMenu>
  7724. <productMenu id="waveIntercom"
  7725. type="1" >
  7726. <productMenuType version="1.0.9"
  7727. type="0"
  7728. />
  7729. </productMenu>
  7730. <productMenu id="phone"
  7731. type="1" >
  7732. </productMenu>
  7733. <productMenu id="music"
  7734. type="1" >
  7735. </productMenu>
  7736. <productMenu id="musicSharing"
  7737. type="0" >
  7738. </productMenu>
  7739. <productMenu id="deviceSetting"
  7740. type="1"
  7741. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7742. <productMenuURL version="1.1.9"
  7743. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7744. />
  7745. <productMenuURL version="1.0.1"
  7746. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7747. />
  7748. </productMenu>
  7749. <productMenu id="quickGuide"
  7750. type="0"
  7751. url=""
  7752. size="1.12MB" >
  7753. </productMenu>
  7754. <productMenu id="userGuide"
  7755. type="1"
  7756. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7757. size="2.0MB" >
  7758. </productMenu>
  7759. <productMenu id="volume"
  7760. type="12" >
  7761. </productMenu>
  7762. <productMenu id="battery"
  7763. type="1" >
  7764. </productMenu>
  7765. <productID id="6840"
  7766. />
  7767. <productGroupable type="0"
  7768. />
  7769. </product>
  7770. <product id="Cavalry2"
  7771. name="Cavalry 2"
  7772. series="Helmet"
  7773. latestVersion="1.2"
  7774. latestVersionVoicePrompt="1.3"
  7775. show = "1" >
  7776. <productMenu id="protocol"
  7777. type="2" >
  7778. </productMenu>
  7779. <productMenu id="alexa"
  7780. type="0" >
  7781. </productMenu>
  7782. <productMenu id="ota"
  7783. type="2" >
  7784. <otaPackages>
  7785. <package
  7786. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7787. size="3144148"
  7788. />
  7789. </otaPackages>
  7790. </productMenu>
  7791. <productMenu id="wa"
  7792. type="0" >
  7793. </productMenu>
  7794. <productMenu id="meshIntercom"
  7795. type="30" >
  7796. </productMenu>
  7797. <productMenu id="meshIntercom+"
  7798. type="3"
  7799. url="2" >
  7800. <productMenuType version="1.0"
  7801. type="2"
  7802. />
  7803. </productMenu>
  7804. <productMenu id="waveIntercom"
  7805. type="1" >
  7806. <productMenuType version="1.0.9"
  7807. type="0"
  7808. />
  7809. </productMenu>
  7810. <productMenu id="phone"
  7811. type="1" >
  7812. </productMenu>
  7813. <productMenu id="music"
  7814. type="1" >
  7815. </productMenu>
  7816. <productMenu id="musicSharing"
  7817. type="0" >
  7818. </productMenu>
  7819. <productMenu id="deviceSetting"
  7820. type="1"
  7821. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7822. <productMenuURL version="1.1.9"
  7823. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7824. />
  7825. <productMenuURL version="1.0"
  7826. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7827. />
  7828. </productMenu>
  7829. <productMenu id="quickGuide"
  7830. type="0"
  7831. url=""
  7832. size="1.12MB" >
  7833. </productMenu>
  7834. <productMenu id="userGuide"
  7835. type="1"
  7836. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7837. size="2.0MB" >
  7838. </productMenu>
  7839. <productMenu id="connectGuide"
  7840. type="1"
  7841. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7842. size="1.12MB" >
  7843. </productMenu>
  7844. <productMenu id="volume"
  7845. type="12" >
  7846. </productMenu>
  7847. <productMenu id="battery"
  7848. type="1" >
  7849. </productMenu>
  7850. <productID id="6839"
  7851. />
  7852. <productGroupable type="0"
  7853. />
  7854. </product>
  7855. <product id="Cavalry"
  7856. name="Cavalry"
  7857. series="Helmet"
  7858. latestVersion="1.2.2"
  7859. show = "1" >
  7860. <productMenu id="protocol"
  7861. type="0">
  7862. </productMenu>
  7863. <productMenu id="sip"
  7864. type="1" >
  7865. </productMenu>
  7866. <productMenu id="bluetoothIntercom"
  7867. type="1" >
  7868. </productMenu>
  7869. <productMenu id="phone"
  7870. type="2" >
  7871. </productMenu>
  7872. <productMenu id="fmradio"
  7873. type="3" >
  7874. </productMenu>
  7875. <productMenu id="deviceSetting"
  7876. type="1"
  7877. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7878. <productMenuURL version="1.9"
  7879. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7880. />
  7881. <productMenuURL version="1.0.1"
  7882. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7883. />
  7884. </productMenu>
  7885. <productMenu id="quickGuide"
  7886. type="1"
  7887. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7888. size="795KB" >
  7889. </productMenu>
  7890. <productMenu id="userGuide"
  7891. type="1"
  7892. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7893. size="1.87MB" >
  7894. </productMenu>
  7895. <productMenu id="connectGuide"
  7896. type="1"
  7897. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7898. size="1.12MB" >
  7899. </productMenu>
  7900. <productID id="5524"
  7901. />
  7902. <productGroupable type="0"
  7903. />
  7904. </product>
  7905. <product id="Cavalry_Lite"
  7906. name="Cavalry Lite"
  7907. series="Helmet"
  7908. latestVersion="1.0.2"
  7909. show = "1" >
  7910. <productMenu id="protocol"
  7911. type="0">
  7912. </productMenu>
  7913. <productMenu id="sip"
  7914. type="1" >
  7915. </productMenu>
  7916. <productMenu id="bluetoothIntercom"
  7917. type="1" >
  7918. </productMenu>
  7919. <productMenu id="phone"
  7920. type="2" >
  7921. </productMenu>
  7922. <productMenu id="fmradio"
  7923. type="3" >
  7924. </productMenu>
  7925. <productMenu id="deviceSetting"
  7926. type="1"
  7927. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7928. </productMenu>
  7929. <productMenu id="userGuide"
  7930. type="1"
  7931. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7932. size="1.74MB" >
  7933. </productMenu>
  7934. <productMenu id="connectGuide"
  7935. type="1"
  7936. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7937. size="1.12MB" >
  7938. </productMenu>
  7939. <productID id="5536"
  7940. />
  7941. <productGroupable type="0"
  7942. />
  7943. </product>
  7944. <product id="VORTEX"
  7945. name="VORTEX"
  7946. series="VORTEX"
  7947. latestVersion="1.0"
  7948. show = "-1" >
  7949. <productMenu id="protocol"
  7950. type="2" >
  7951. </productMenu>
  7952. <productMenu id="sip"
  7953. type="1" >
  7954. </productMenu>
  7955. <productMenu id="bluetoothIntercom"
  7956. type="1" >
  7957. </productMenu>
  7958. <productMenu id="phone"
  7959. type="1" >
  7960. </productMenu>
  7961. <productMenu id="music"
  7962. type="1" >
  7963. </productMenu>
  7964. <productMenu id="fmradio"
  7965. type="1"
  7966. url="1" >
  7967. </productMenu>
  7968. <productMenu id="deviceSetting"
  7969. type="1"
  7970. url="https://api.sena.com/support/SenaNeoApp/VORTEX/NS_VORTEX_01.xml" >
  7971. </productMenu>
  7972. <productMenu id="quickGuide"
  7973. type="0"
  7974. url=""
  7975. size="934KB" >
  7976. </productMenu>
  7977. <productMenu id="userGuide"
  7978. type="1"
  7979. url=""
  7980. size="1.14MB" >
  7981. </productMenu>
  7982. <productMenu id="connectGuide"
  7983. type="0"
  7984. url=""
  7985. size="1.12MB" >
  7986. </productMenu>
  7987. <productMenu id="volume"
  7988. type="15" >
  7989. </productMenu>
  7990. <productID id="3451"
  7991. />
  7992. <productGroupable type="0"
  7993. />
  7994. </product>
  7995. <product id="SF4"
  7996. name="SF4"
  7997. series="SF"
  7998. latestVersion="1.1.5"
  7999. show = "-1" >
  8000. <productMenu id="protocol"
  8001. type="1"
  8002. url="3">
  8003. </productMenu>
  8004. <productMenu id="sip"
  8005. type="1" >
  8006. </productMenu>
  8007. <productMenu id="bluetoothIntercom"
  8008. type="1" >
  8009. </productMenu>
  8010. <productMenu id="phone"
  8011. type="1" >
  8012. </productMenu>
  8013. <productMenu id="music"
  8014. type="1" >
  8015. </productMenu>
  8016. <productMenu id="fmradio"
  8017. type="1" >
  8018. </productMenu>
  8019. <productMenu id="deviceSetting"
  8020. type="1"
  8021. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8022. <productMenuURL version="1.0.1"
  8023. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8024. />
  8025. </productMenu>
  8026. <productMenu id="quickGuide"
  8027. type="1"
  8028. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  8029. size="607KB" >
  8030. </productMenu>
  8031. <productMenu id="userGuide"
  8032. type="1"
  8033. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8034. size="1.91MB" >
  8035. </productMenu>
  8036. <productMenu id="volume"
  8037. type="4" >
  8038. </productMenu>
  8039. <productID id="5414"
  8040. />
  8041. <productGroupable type="0"
  8042. />
  8043. </product>
  8044. <product id="SF4"
  8045. name="SF4"
  8046. series="SF"
  8047. latestVersion="3.4.4"
  8048. show = "1" >
  8049. <productMenu id="protocol"
  8050. type="2" >
  8051. </productMenu>
  8052. <productMenu id="sip"
  8053. type="1" >
  8054. </productMenu>
  8055. <productMenu id="bluetoothIntercom"
  8056. type="1" >
  8057. </productMenu>
  8058. <productMenu id="phone"
  8059. type="1" >
  8060. </productMenu>
  8061. <productMenu id="music"
  8062. type="1" >
  8063. </productMenu>
  8064. <productMenu id="fmradio"
  8065. type="1" >
  8066. </productMenu>
  8067. <productMenu id="deviceSetting"
  8068. type="1"
  8069. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  8070. <productMenuURL version="3.0"
  8071. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  8072. />
  8073. </productMenu>
  8074. <productMenu id="quickGuide"
  8075. type="0"
  8076. url=""
  8077. size="934KB" >
  8078. </productMenu>
  8079. <productMenu id="userGuide"
  8080. type="1"
  8081. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8082. size="1.14MB" >
  8083. </productMenu>
  8084. <productMenu id="connectGuide"
  8085. type="1"
  8086. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8087. size="1.12MB" >
  8088. </productMenu>
  8089. <productMenu id="volume"
  8090. type="15" >
  8091. </productMenu>
  8092. <productID id="3370"
  8093. />
  8094. <productGroupable type="0"
  8095. />
  8096. </product>
  8097. <product id="SF2"
  8098. name="SF2"
  8099. series="SF"
  8100. latestVersion="1.2.1"
  8101. show = "-1" >
  8102. <productMenu id="protocol"
  8103. type="1"
  8104. url="2">
  8105. </productMenu>
  8106. <productMenu id="sip"
  8107. type="1" >
  8108. </productMenu>
  8109. <productMenu id="bluetoothIntercom"
  8110. type="1" >
  8111. </productMenu>
  8112. <productMenu id="phone"
  8113. type="1" >
  8114. </productMenu>
  8115. <productMenu id="music"
  8116. type="1" >
  8117. </productMenu>
  8118. <productMenu id="fmradio"
  8119. type="1" >
  8120. </productMenu>
  8121. <productMenu id="deviceSetting"
  8122. type="1"
  8123. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8124. <productMenuURL version="1.0.1"
  8125. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  8126. />
  8127. </productMenu>
  8128. <productMenu id="quickGuide"
  8129. type="1"
  8130. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  8131. size="607KB" >
  8132. </productMenu>
  8133. <productMenu id="userGuide"
  8134. type="1"
  8135. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8136. size="1.91MB" >
  8137. </productMenu>
  8138. <productMenu id="volume"
  8139. type="4" >
  8140. </productMenu>
  8141. <productID id="5412"
  8142. />
  8143. <productGroupable type="0"
  8144. />
  8145. </product>
  8146. <product id="SF2"
  8147. name="SF2"
  8148. series="SF"
  8149. latestVersion="3.3.4"
  8150. show = "1" >
  8151. <productMenu id="protocol"
  8152. type="2" >
  8153. </productMenu>
  8154. <productMenu id="sip"
  8155. type="1" >
  8156. </productMenu>
  8157. <productMenu id="bluetoothIntercom"
  8158. type="1" >
  8159. </productMenu>
  8160. <productMenu id="phone"
  8161. type="1" >
  8162. </productMenu>
  8163. <productMenu id="music"
  8164. type="1" >
  8165. </productMenu>
  8166. <productMenu id="fmradio"
  8167. type="0" >
  8168. </productMenu>
  8169. <productMenu id="deviceSetting"
  8170. type="1"
  8171. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8172. <productMenuURL version="3.0"
  8173. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8174. />
  8175. </productMenu>
  8176. <productMenu id="quickGuide"
  8177. type="0"
  8178. url=""
  8179. size="934KB" >
  8180. </productMenu>
  8181. <productMenu id="userGuide"
  8182. type="1"
  8183. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8184. size="1.14MB" >
  8185. </productMenu>
  8186. <productMenu id="connectGuide"
  8187. type="1"
  8188. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8189. size="1.12MB" >
  8190. </productMenu>
  8191. <productMenu id="volume"
  8192. type="15" >
  8193. </productMenu>
  8194. <productID id="3360"
  8195. />
  8196. <productGroupable type="0"
  8197. />
  8198. </product>
  8199. <product id="SF1"
  8200. name="SF1"
  8201. series="SF"
  8202. latestVersion="2.0.5"
  8203. show = "-1" >
  8204. <productMenu id="protocol"
  8205. type="1"
  8206. url="1">
  8207. </productMenu>
  8208. <productMenu id="sip"
  8209. type="1" >
  8210. </productMenu>
  8211. <productMenu id="bluetoothIntercom"
  8212. type="1" >
  8213. <productMenuType version="1.1"
  8214. type="0"
  8215. />
  8216. </productMenu>
  8217. <productMenu id="phone"
  8218. type="1" >
  8219. </productMenu>
  8220. <productMenu id="music"
  8221. type="1" >
  8222. </productMenu>
  8223. <productMenu id="deviceSetting"
  8224. type="1"
  8225. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8226. <productMenuURL version="1.1"
  8227. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8228. />
  8229. <productMenuURL version="1.0"
  8230. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8231. />
  8232. </productMenu>
  8233. <productMenu id="quickGuide"
  8234. type="1"
  8235. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8236. size="401KB" >
  8237. </productMenu>
  8238. <productMenu id="userGuide"
  8239. type="1"
  8240. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8241. size="1.91MB" >
  8242. </productMenu>
  8243. <productMenu id="volume"
  8244. type="3" >
  8245. </productMenu>
  8246. <productID id="5410"
  8247. />
  8248. <productGroupable type="0"
  8249. />
  8250. </product>
  8251. <product id="SF1"
  8252. name="SF1"
  8253. series="SF"
  8254. latestVersion="3.3.4"
  8255. show = "1" >
  8256. <productMenu id="protocol"
  8257. type="2" >
  8258. </productMenu>
  8259. <productMenu id="sip"
  8260. type="1" >
  8261. </productMenu>
  8262. <productMenu id="bluetoothIntercom"
  8263. type="1" >
  8264. </productMenu>
  8265. <productMenu id="phone"
  8266. type="1" >
  8267. </productMenu>
  8268. <productMenu id="music"
  8269. type="1" >
  8270. </productMenu>
  8271. <productMenu id="fmradio"
  8272. type="0" >
  8273. </productMenu>
  8274. <productMenu id="deviceSetting"
  8275. type="1"
  8276. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8277. <productMenuURL version="3.0"
  8278. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8279. />
  8280. </productMenu>
  8281. <productMenu id="quickGuide"
  8282. type="0"
  8283. url=""
  8284. size="934KB" >
  8285. </productMenu>
  8286. <productMenu id="userGuide"
  8287. type="1"
  8288. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8289. size="1.14MB" >
  8290. </productMenu>
  8291. <productMenu id="connectGuide"
  8292. type="1"
  8293. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8294. size="1.12MB" >
  8295. </productMenu>
  8296. <productMenu id="volume"
  8297. type="15" >
  8298. </productMenu>
  8299. <productID id="3350"
  8300. />
  8301. <productGroupable type="0"
  8302. />
  8303. </product>
  8304. <product id="SFR"
  8305. name="SFR"
  8306. series="SF"
  8307. latestVersion="1.1.1"
  8308. show = "1" >
  8309. <productMenu id="protocol"
  8310. type="1"
  8311. url="3">
  8312. </productMenu>
  8313. <productMenu id="sip"
  8314. type="1" >
  8315. </productMenu>
  8316. <productMenu id="bluetoothIntercom"
  8317. type="1" >
  8318. </productMenu>
  8319. <productMenu id="phone"
  8320. type="1" >
  8321. </productMenu>
  8322. <productMenu id="music"
  8323. type="1" >
  8324. </productMenu>
  8325. <productMenu id="fmradio"
  8326. type="1" >
  8327. </productMenu>
  8328. <productMenu id="deviceSetting"
  8329. type="1"
  8330. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8331. </productMenu>
  8332. <productMenu id="quickGuide"
  8333. type="1"
  8334. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8335. size="607KB" >
  8336. </productMenu>
  8337. <productMenu id="userGuide"
  8338. type="1"
  8339. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8340. size="1.91MB" >
  8341. </productMenu>
  8342. <productMenu id="volume"
  8343. type="4" >
  8344. </productMenu>
  8345. <productID id="5418"
  8346. />
  8347. <productGroupable type="0"
  8348. />
  8349. </product>
  8350. <product id="20S"
  8351. name="20S"
  8352. series="20"
  8353. latestVersion="2.2.3"
  8354. show = "1" >
  8355. <productMenu id="protocol"
  8356. type="0">
  8357. </productMenu>
  8358. <productMenu id="wa"
  8359. type="5" >
  8360. </productMenu>
  8361. <productMenu id="sip"
  8362. type="1" >
  8363. <productMenuType version="1.0"
  8364. type="0"
  8365. />
  8366. </productMenu>
  8367. <productMenu id="bluetoothIntercom"
  8368. type="1" >
  8369. <productMenuType version="1.0"
  8370. type="0"
  8371. />
  8372. </productMenu>
  8373. <productMenu id="intercomSetting"
  8374. type="1" >
  8375. </productMenu>
  8376. <productMenu id="phone"
  8377. type="2" >
  8378. </productMenu>
  8379. <productMenu id="fmradio"
  8380. type="3" >
  8381. </productMenu>
  8382. <productMenu id="deviceSetting"
  8383. type="1"
  8384. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8385. <productMenuURL version="2.0.2"
  8386. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8387. />
  8388. <productMenuURL version="1.5"
  8389. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8390. />
  8391. <productMenuURL version="1.4.1"
  8392. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8393. />
  8394. <productMenuURL version="1.1"
  8395. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8396. />
  8397. <productMenuURL version="1.0"
  8398. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8399. />
  8400. </productMenu>
  8401. <productMenu id="quickGuide"
  8402. type="0"
  8403. url=""
  8404. size="264KB" >
  8405. </productMenu>
  8406. <productMenu id="userGuide"
  8407. type="1"
  8408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8409. size="3.09MB" >
  8410. </productMenu>
  8411. <productMenu id="connectGuide"
  8412. type="1"
  8413. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8414. size="1.12MB" >
  8415. </productMenu>
  8416. <productID id="4210"
  8417. />
  8418. <productGroupable type="1"
  8419. />
  8420. </product>
  8421. <product id="20S_EVO"
  8422. name="20S EVO"
  8423. series="20"
  8424. latestVersion="2.2.3"
  8425. show = "1" >
  8426. <productMenu id="protocol"
  8427. type="0">
  8428. </productMenu>
  8429. <productMenu id="wa"
  8430. type="5" >
  8431. </productMenu>
  8432. <productMenu id="sip"
  8433. type="1" >
  8434. <productMenuType version="1.0"
  8435. type="0"
  8436. />
  8437. </productMenu>
  8438. <productMenu id="bluetoothIntercom"
  8439. type="1" >
  8440. <productMenuType version="1.0"
  8441. type="0"
  8442. />
  8443. </productMenu>
  8444. <productMenu id="intercomSetting"
  8445. type="1" >
  8446. </productMenu>
  8447. <productMenu id="phone"
  8448. type="2" >
  8449. </productMenu>
  8450. <productMenu id="fmradio"
  8451. type="3" >
  8452. </productMenu>
  8453. <productMenu id="deviceSetting"
  8454. type="1"
  8455. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8456. <productMenuURL version="2.0.2"
  8457. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8458. />
  8459. <productMenuURL version="1.5"
  8460. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8461. />
  8462. <productMenuURL version="1.4.1"
  8463. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8464. />
  8465. <productMenuURL version="1.1"
  8466. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8467. />
  8468. <productMenuURL version="1.0"
  8469. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8470. />
  8471. </productMenu>
  8472. <productMenu id="quickGuide"
  8473. type="0"
  8474. url=""
  8475. size="264KB" >
  8476. </productMenu>
  8477. <productMenu id="userGuide"
  8478. type="1"
  8479. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8480. size="3.09MB" >
  8481. </productMenu>
  8482. <productMenu id="connectGuide"
  8483. type="1"
  8484. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8485. size="1.12MB" >
  8486. </productMenu>
  8487. <productID id="4210"
  8488. />
  8489. <productProductKey key="16"
  8490. />
  8491. <productGroupable type="1"
  8492. />
  8493. </product>
  8494. <product id="10S"
  8495. name="10S"
  8496. series="10"
  8497. latestVersion="3.0.1"
  8498. show = "1" >
  8499. <productMenu id="protocol"
  8500. type="3" >
  8501. </productMenu>
  8502. <productMenu id="sip"
  8503. type="1" >
  8504. </productMenu>
  8505. <productMenu id="bluetoothIntercom"
  8506. type="1" >
  8507. </productMenu>
  8508. <productMenu id="phone"
  8509. type="1" >
  8510. </productMenu>
  8511. <productMenu id="deviceSetting"
  8512. type="1"
  8513. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8514. </productMenu>
  8515. <productMenu id="quickGuide"
  8516. type="1"
  8517. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8518. size="934KB" >
  8519. </productMenu>
  8520. <productMenu id="userGuide"
  8521. type="1"
  8522. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8523. size="1.14MB" >
  8524. </productMenu>
  8525. <productMenu id="connectGuide"
  8526. type="1"
  8527. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8528. size="1.12MB" >
  8529. </productMenu>
  8530. <productID id="3380"
  8531. />
  8532. <productGroupable type="0"
  8533. />
  8534. </product>
  8535. <product id="10S"
  8536. name="10S"
  8537. series="10"
  8538. latestVersion="2.1.1"
  8539. show = "-1" >
  8540. <productMenu id="protocol"
  8541. type="0">
  8542. </productMenu>
  8543. <productMenu id="sip"
  8544. type="1" >
  8545. </productMenu>
  8546. <productMenu id="bluetoothIntercom"
  8547. type="1" >
  8548. </productMenu>
  8549. <productMenu id="phone"
  8550. type="2" >
  8551. </productMenu>
  8552. <productMenu id="fmradio"
  8553. type="3" >
  8554. </productMenu>
  8555. <productMenu id="deviceSetting"
  8556. type="1"
  8557. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8558. <productMenuURL version="1.5"
  8559. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8560. />
  8561. <productMenuURL version="1.3.1"
  8562. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8563. />
  8564. </productMenu>
  8565. <productMenu id="quickGuide"
  8566. type="1"
  8567. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8568. size="310KB" >
  8569. </productMenu>
  8570. <productMenu id="userGuide"
  8571. type="1"
  8572. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8573. size="1.57MB" >
  8574. </productMenu>
  8575. <productID id="5530"
  8576. />
  8577. <productGroupable type="0"
  8578. />
  8579. </product>
  8580. <product id="Apex"
  8581. name="Apex"
  8582. series="Apex"
  8583. latestVersion="1.0"
  8584. latestVersionVoicePrompt="1.0"
  8585. show = "-1" >
  8586. <productMenu id="protocol"
  8587. type="2" >
  8588. </productMenu>
  8589. <productMenu id="ota"
  8590. type="0" >
  8591. <otaPackages>
  8592. <package
  8593. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8594. size="2945812"
  8595. />
  8596. </otaPackages>
  8597. </productMenu>
  8598. <productMenu id="sip"
  8599. type="1" >
  8600. </productMenu>
  8601. <productMenu id="bluetoothIntercom"
  8602. type="1" >
  8603. </productMenu>
  8604. <productMenu id="phone"
  8605. type="1" >
  8606. </productMenu>
  8607. <productMenu id="music"
  8608. type="1" >
  8609. </productMenu>
  8610. <productMenu id="fmradio"
  8611. type="1"
  8612. url="1" >
  8613. </productMenu>
  8614. <productMenu id="deviceSetting"
  8615. type="1"
  8616. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8617. </productMenu>
  8618. <productMenu id="quickGuide"
  8619. type="0"
  8620. url=""
  8621. size="934KB" >
  8622. </productMenu>
  8623. <productMenu id="userGuide"
  8624. type="1"
  8625. url=""
  8626. size="1.14MB" >
  8627. </productMenu>
  8628. <productMenu id="volume"
  8629. type="15" >
  8630. </productMenu>
  8631. <productID id="3452"
  8632. />
  8633. <productGroupable type="0"
  8634. />
  8635. </product>
  8636. <product id="ApexPlus"
  8637. name="Apex Plus"
  8638. series="Apex"
  8639. latestVersion="1.0"
  8640. latestVersionVoicePrompt="1.0"
  8641. show = "-1" >
  8642. <productMenu id="protocol"
  8643. type="2" >
  8644. </productMenu>
  8645. <productMenu id="ota"
  8646. type="0" >
  8647. <otaPackages>
  8648. <package
  8649. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8650. size="2945812"
  8651. />
  8652. </otaPackages>
  8653. </productMenu>
  8654. <productMenu id="sip"
  8655. type="1" >
  8656. </productMenu>
  8657. <productMenu id="bluetoothIntercom"
  8658. type="1" >
  8659. </productMenu>
  8660. <productMenu id="phone"
  8661. type="1" >
  8662. </productMenu>
  8663. <productMenu id="music"
  8664. type="1" >
  8665. </productMenu>
  8666. <productMenu id="fmradio"
  8667. type="1"
  8668. url="1" >
  8669. </productMenu>
  8670. <productMenu id="deviceSetting"
  8671. type="1"
  8672. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8673. </productMenu>
  8674. <productMenu id="quickGuide"
  8675. type="0"
  8676. url=""
  8677. size="934KB" >
  8678. </productMenu>
  8679. <productMenu id="userGuide"
  8680. type="1"
  8681. url=""
  8682. size="1.14MB" >
  8683. </productMenu>
  8684. <productMenu id="volume"
  8685. type="15" >
  8686. </productMenu>
  8687. <productID id="3453"
  8688. />
  8689. <productGroupable type="0"
  8690. />
  8691. </product>
  8692. <product id="10R2"
  8693. name="10R 2"
  8694. series="10"
  8695. latestVersion="0.9"
  8696. latestVersionVoicePrompt="1.1"
  8697. show = "-1" >
  8698. <productMenu id="protocol"
  8699. type="2" >
  8700. </productMenu>
  8701. <productMenu id="ota"
  8702. type="2" >
  8703. <otaPackages>
  8704. <package
  8705. url="https://api.sena.com/support/test/10R_2-v0.9-build0.img"
  8706. size="2945812"
  8707. />
  8708. </otaPackages>
  8709. </productMenu>
  8710. <productMenu id="sip"
  8711. type="1" >
  8712. </productMenu>
  8713. <productMenu id="bluetoothIntercom"
  8714. type="1" >
  8715. </productMenu>
  8716. <productMenu id="phone"
  8717. type="1" >
  8718. </productMenu>
  8719. <productMenu id="music"
  8720. type="1" >
  8721. </productMenu>
  8722. <productMenu id="fmradio"
  8723. type="1"
  8724. url="1" >
  8725. </productMenu>
  8726. <productMenu id="deviceSetting"
  8727. type="1"
  8728. url="https://api.sena.com/support/test/xml/NS_10R2_Onlytest.xml" >
  8729. </productMenu>
  8730. <productMenu id="quickGuide"
  8731. type="1"
  8732. url=""
  8733. size="934KB" >
  8734. </productMenu>
  8735. <productMenu id="userGuide"
  8736. type="0"
  8737. url=""
  8738. size="1.14MB" >
  8739. </productMenu>
  8740. <productMenu id="volume"
  8741. type="15" >
  8742. </productMenu>
  8743. <productID id="4000"
  8744. />
  8745. <productGroupable type="0"
  8746. />
  8747. </product>
  8748. <product id="10R"
  8749. name="10R"
  8750. series="10"
  8751. latestVersion="2.1.1"
  8752. show = "1" >
  8753. <productMenu id="protocol"
  8754. type="0">
  8755. </productMenu>
  8756. <productMenu id="sip"
  8757. type="1" >
  8758. <productMenuType version="1.0.2"
  8759. type="0"
  8760. />
  8761. </productMenu>
  8762. <productMenu id="bluetoothIntercom"
  8763. type="1" >
  8764. <productMenuType version="1.0.2"
  8765. type="0"
  8766. />
  8767. </productMenu>
  8768. <productMenu id="phone"
  8769. type="2" >
  8770. </productMenu>
  8771. <productMenu id="fmradio"
  8772. type="3" >
  8773. </productMenu>
  8774. <productMenu id="deviceSetting"
  8775. type="1"
  8776. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8777. <productMenuURL version="1.4"
  8778. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  8779. />
  8780. <productMenuURL version="1.2.1"
  8781. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  8782. />
  8783. <productMenuURL version="1.0.2"
  8784. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  8785. />
  8786. <productMenuURL version="1.0"
  8787. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  8788. />
  8789. </productMenu>
  8790. <productMenu id="quickGuide"
  8791. type="1"
  8792. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  8793. size="400KB" >
  8794. </productMenu>
  8795. <productMenu id="userGuide"
  8796. type="1"
  8797. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  8798. size="2.75MB" >
  8799. </productMenu>
  8800. <productMenu id="connectGuide"
  8801. type="1"
  8802. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8803. size="1.12MB" >
  8804. </productMenu>
  8805. <productID id="5520"
  8806. />
  8807. <productGroupable type="0"
  8808. />
  8809. </product>
  8810. <product id="10C_EVO"
  8811. name="10C EVO"
  8812. series="10"
  8813. latestVersion="1.7"
  8814. show = "1" >
  8815. <productMenu id="protocol"
  8816. type="0">
  8817. </productMenu>
  8818. <productMenu id="sip"
  8819. type="1" >
  8820. </productMenu>
  8821. <productMenu id="bluetoothIntercom"
  8822. type="1" >
  8823. </productMenu>
  8824. <productMenu id="phone"
  8825. type="2" >
  8826. </productMenu>
  8827. <productMenu id="fmradio"
  8828. type="3" >
  8829. </productMenu>
  8830. <productMenu id="deviceSetting"
  8831. type="1"
  8832. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  8833. <productMenuURL version="1.3.1"
  8834. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8835. />
  8836. </productMenu>
  8837. <productMenu id="quickGuide"
  8838. type="1"
  8839. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  8840. size="1.32MB" >
  8841. </productMenu>
  8842. <productMenu id="userGuide"
  8843. type="1"
  8844. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  8845. size="1.68MB" >
  8846. </productMenu>
  8847. <productMenu id="connectGuide"
  8848. type="1"
  8849. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8850. size="1.12MB" >
  8851. </productMenu>
  8852. <productID id="5570"
  8853. />
  8854. <productGroupable type="0"
  8855. />
  8856. </product>
  8857. <product id="10C_Pro"
  8858. name="10C Pro"
  8859. series="10"
  8860. latestVersion="2.7.1"
  8861. show = "1" >
  8862. <productMenu id="protocol"
  8863. type="0">
  8864. </productMenu>
  8865. <productMenu id="sip"
  8866. type="1" >
  8867. </productMenu>
  8868. <productMenu id="bluetoothIntercom"
  8869. type="1" >
  8870. </productMenu>
  8871. <productMenu id="phone"
  8872. type="2" >
  8873. </productMenu>
  8874. <productMenu id="fmradio"
  8875. type="3" >
  8876. </productMenu>
  8877. <productMenu id="deviceSetting"
  8878. type="1"
  8879. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  8880. <productMenuURL version="2.5.1"
  8881. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8882. />
  8883. <productMenuURL version="1.0"
  8884. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  8885. />
  8886. </productMenu>
  8887. <productMenu id="quickGuide"
  8888. type="1"
  8889. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  8890. size="651KB" >
  8891. </productMenu>
  8892. <productMenu id="userGuide"
  8893. type="1"
  8894. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  8895. size="2.34MB" >
  8896. </productMenu>
  8897. <productMenu id="connectGuide"
  8898. type="1"
  8899. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8900. size="1.12MB" >
  8901. </productMenu>
  8902. <productID id="5580"
  8903. />
  8904. <productGroupable type="0"
  8905. />
  8906. </product>
  8907. <product id="10C"
  8908. name="10C"
  8909. series="10"
  8910. latestVersion="3.0.4"
  8911. show = "1" >
  8912. <productMenu id="protocol"
  8913. type="0">
  8914. </productMenu>
  8915. <productMenu id="sip"
  8916. type="1" >
  8917. <productMenuType version="1.0.4"
  8918. type="0"
  8919. />
  8920. </productMenu>
  8921. <productMenu id="bluetoothIntercom"
  8922. type="1" >
  8923. <productMenuType version="1.0.4"
  8924. type="0"
  8925. />
  8926. </productMenu>
  8927. <productMenu id="phone"
  8928. type="2" >
  8929. </productMenu>
  8930. <productMenu id="fmradio"
  8931. type="3" >
  8932. </productMenu>
  8933. <productMenu id="deviceSetting"
  8934. type="1"
  8935. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  8936. <productMenuURL version="2.3"
  8937. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  8938. />
  8939. <productMenuURL version="2.1.1"
  8940. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  8941. />
  8942. <productMenuURL version="1.0.4"
  8943. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  8944. />
  8945. <productMenuURL version="1.0.2"
  8946. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  8947. />
  8948. </productMenu>
  8949. <productMenu id="quickGuide"
  8950. type="1"
  8951. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  8952. size="935KB" >
  8953. </productMenu>
  8954. <productMenu id="userGuide"
  8955. type="1"
  8956. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  8957. size="2.82MB" >
  8958. </productMenu>
  8959. <productMenu id="connectGuide"
  8960. type="1"
  8961. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8962. size="1.12MB" >
  8963. </productMenu>
  8964. <productID id="5510"
  8965. />
  8966. <productGroupable type="0"
  8967. />
  8968. </product>
  8969. <product id="10U_GT_AIR"
  8970. name="10U GT-Air"
  8971. series="10"
  8972. latestVersion="2.0.4"
  8973. show = "1" >
  8974. <productMenu id="protocol"
  8975. type="0">
  8976. </productMenu>
  8977. <productMenu id="sip"
  8978. type="1" >
  8979. <productMenuType version="1.0.2"
  8980. type="0"
  8981. />
  8982. </productMenu>
  8983. <productMenu id="bluetoothIntercom"
  8984. type="1" >
  8985. <productMenuType version="1.0.2"
  8986. type="0"
  8987. />
  8988. </productMenu>
  8989. <productMenu id="phone"
  8990. type="2" >
  8991. </productMenu>
  8992. <productMenu id="fmradio"
  8993. type="3" >
  8994. </productMenu>
  8995. <productMenu id="deviceSetting"
  8996. type="1"
  8997. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8998. <productMenuURL version="1.3.2"
  8999. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9000. />
  9001. <productMenuURL version="1.0.2"
  9002. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9003. />
  9004. </productMenu>
  9005. <productMenu id="quickGuide"
  9006. type="1"
  9007. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  9008. size="685KB" >
  9009. </productMenu>
  9010. <productMenu id="userGuide"
  9011. type="1"
  9012. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9013. size="684KB" >
  9014. </productMenu>
  9015. <productMenu id="connectGuide"
  9016. type="1"
  9017. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9018. size="1.12MB" >
  9019. </productMenu>
  9020. <productID id="5610"
  9021. />
  9022. <productGroupable type="0"
  9023. />
  9024. </product>
  9025. <product id="10U_NEOTEC"
  9026. name="10U Neotec"
  9027. series="10"
  9028. latestVersion="2.0.4"
  9029. show = "1" >
  9030. <productMenu id="protocol"
  9031. type="0">
  9032. </productMenu>
  9033. <productMenu id="sip"
  9034. type="1" >
  9035. <productMenuType version="1.0.2"
  9036. type="0"
  9037. />
  9038. </productMenu>
  9039. <productMenu id="bluetoothIntercom"
  9040. type="1" >
  9041. <productMenuType version="1.0.2"
  9042. type="0"
  9043. />
  9044. </productMenu>
  9045. <productMenu id="phone"
  9046. type="2" >
  9047. </productMenu>
  9048. <productMenu id="fmradio"
  9049. type="3" >
  9050. </productMenu>
  9051. <productMenu id="deviceSetting"
  9052. type="1"
  9053. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9054. <productMenuURL version="1.3.2"
  9055. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9056. />
  9057. <productMenuURL version="1.0.2"
  9058. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9059. />
  9060. </productMenu>
  9061. <productMenu id="quickGuide"
  9062. type="1"
  9063. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  9064. size="689KB" >
  9065. </productMenu>
  9066. <productMenu id="userGuide"
  9067. type="1"
  9068. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9069. size="684KB" >
  9070. </productMenu>
  9071. <productMenu id="connectGuide"
  9072. type="1"
  9073. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9074. size="1.12MB" >
  9075. </productMenu>
  9076. <productID id="5611"
  9077. />
  9078. <productGroupable type="0"
  9079. />
  9080. </product>
  9081. <product id="10U_J_CRUISE"
  9082. name="10U J-Cruise"
  9083. series="10"
  9084. latestVersion="2.0.4"
  9085. show = "1" >
  9086. <productMenu id="protocol"
  9087. type="0">
  9088. </productMenu>
  9089. <productMenu id="sip"
  9090. type="1" >
  9091. <productMenuType version="1.0.2"
  9092. type="0"
  9093. />
  9094. </productMenu>
  9095. <productMenu id="bluetoothIntercom"
  9096. type="1" >
  9097. <productMenuType version="1.0.2"
  9098. type="0"
  9099. />
  9100. </productMenu>
  9101. <productMenu id="phone"
  9102. type="2" >
  9103. </productMenu>
  9104. <productMenu id="fmradio"
  9105. type="3" >
  9106. </productMenu>
  9107. <productMenu id="deviceSetting"
  9108. type="1"
  9109. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9110. <productMenuURL version="1.3.2"
  9111. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9112. />
  9113. <productMenuURL version="1.0.2"
  9114. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9115. />
  9116. </productMenu>
  9117. <productMenu id="quickGuide"
  9118. type="1"
  9119. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  9120. size="686KB" >
  9121. </productMenu>
  9122. <productMenu id="userGuide"
  9123. type="1"
  9124. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9125. size="684KB" >
  9126. </productMenu>
  9127. <productMenu id="connectGuide"
  9128. type="1"
  9129. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9130. size="1.12MB" >
  9131. </productMenu>
  9132. <productID id="5612"
  9133. />
  9134. <productGroupable type="0"
  9135. />
  9136. </product>
  9137. <product id="10U_C3"
  9138. name="10U C3/C3Pro"
  9139. series="10"
  9140. latestVersion="2.0.4"
  9141. show = "1" >
  9142. <productMenu id="protocol"
  9143. type="0">
  9144. </productMenu>
  9145. <productMenu id="sip"
  9146. type="1" >
  9147. <productMenuType version="1.0.2"
  9148. type="0"
  9149. />
  9150. </productMenu>
  9151. <productMenu id="bluetoothIntercom"
  9152. type="1" >
  9153. <productMenuType version="1.0.2"
  9154. type="0"
  9155. />
  9156. </productMenu>
  9157. <productMenu id="phone"
  9158. type="2" >
  9159. </productMenu>
  9160. <productMenu id="fmradio"
  9161. type="3" >
  9162. </productMenu>
  9163. <productMenu id="deviceSetting"
  9164. type="1"
  9165. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9166. <productMenuURL version="1.3.2"
  9167. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9168. />
  9169. <productMenuURL version="1.0.2"
  9170. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9171. />
  9172. </productMenu>
  9173. <productMenu id="quickGuide"
  9174. type="1"
  9175. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  9176. size="199KB" >
  9177. </productMenu>
  9178. <productMenu id="userGuide"
  9179. type="1"
  9180. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9181. size="684KB" >
  9182. </productMenu>
  9183. <productMenu id="connectGuide"
  9184. type="1"
  9185. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9186. size="1.12MB" >
  9187. </productMenu>
  9188. <productID id="5620"
  9189. />
  9190. <productGroupable type="0"
  9191. />
  9192. </product>
  9193. <product id="10U_ARAI"
  9194. name="10U Arai"
  9195. series="10"
  9196. latestVersion="2.0.4"
  9197. show = "1" >
  9198. <productMenu id="protocol"
  9199. type="0">
  9200. </productMenu>
  9201. <productMenu id="sip"
  9202. type="1" >
  9203. <productMenuType version="1.0.2"
  9204. type="0"
  9205. />
  9206. </productMenu>
  9207. <productMenu id="bluetoothIntercom"
  9208. type="1" >
  9209. <productMenuType version="1.0.2"
  9210. type="0"
  9211. />
  9212. </productMenu>
  9213. <productMenu id="phone"
  9214. type="2" >
  9215. </productMenu>
  9216. <productMenu id="fmradio"
  9217. type="3" >
  9218. </productMenu>
  9219. <productMenu id="deviceSetting"
  9220. type="1"
  9221. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  9222. <productMenuURL version="1.3.2"
  9223. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  9224. />
  9225. <productMenuURL version="1.0.2"
  9226. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  9227. />
  9228. </productMenu>
  9229. <productMenu id="quickGuide"
  9230. type="1"
  9231. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  9232. size="689KB" >
  9233. </productMenu>
  9234. <productMenu id="userGuide"
  9235. type="1"
  9236. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  9237. size="684KB" >
  9238. </productMenu>
  9239. <productMenu id="connectGuide"
  9240. type="1"
  9241. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  9242. size="1.12MB" >
  9243. </productMenu>
  9244. <productID id="5621"
  9245. />
  9246. <productGroupable type="0"
  9247. />
  9248. </product>
  9249. <product id="10Upad"
  9250. name="10Upad"
  9251. series="10"
  9252. latestVersion="2.0.3"
  9253. show = "1" >
  9254. <productMenu id="protocol"
  9255. type="0">
  9256. </productMenu>
  9257. <productMenu id="sip"
  9258. type="1" >
  9259. </productMenu>
  9260. <productMenu id="bluetoothIntercom"
  9261. type="1" >
  9262. </productMenu>
  9263. <productMenu id="phone"
  9264. type="2" >
  9265. </productMenu>
  9266. <productMenu id="fmradio"
  9267. type="3" >
  9268. </productMenu>
  9269. <productMenu id="deviceSetting"
  9270. type="1"
  9271. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  9272. <productMenuURL version="1.0.3"
  9273. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  9274. />
  9275. </productMenu>
  9276. <productMenu id="quickGuide"
  9277. type="1"
  9278. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  9279. size="615KB" >
  9280. </productMenu>
  9281. <productMenu id="userGuide"
  9282. type="1"
  9283. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  9284. size="0.99MB" >
  9285. </productMenu>
  9286. <productMenu id="connectGuide"
  9287. type="1"
  9288. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  9289. size="1.12MB" >
  9290. </productMenu>
  9291. <productID id="6210"
  9292. />
  9293. <productGroupable type="0"
  9294. />
  9295. </product>
  9296. <product id="5S"
  9297. name="5S"
  9298. series="5"
  9299. latestVersion="2.2.1"
  9300. show = "1" >
  9301. <productMenu id="protocol"
  9302. type="3" >
  9303. </productMenu>
  9304. <productMenu id="sip"
  9305. type="1" >
  9306. </productMenu>
  9307. <productMenu id="bluetoothIntercom"
  9308. type="1" >
  9309. </productMenu>
  9310. <productMenu id="phone"
  9311. type="1" >
  9312. </productMenu>
  9313. <productMenu id="fmradio"
  9314. type="0" >
  9315. </productMenu>
  9316. <productMenu id="deviceSetting"
  9317. type="1"
  9318. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  9319. </productMenu>
  9320. <productMenu id="quickGuide"
  9321. type="0"
  9322. url=""
  9323. size="934KB" >
  9324. </productMenu>
  9325. <productMenu id="userGuide"
  9326. type="1"
  9327. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  9328. size="1.14MB" >
  9329. </productMenu>
  9330. <productMenu id="connectGuide"
  9331. type="1"
  9332. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  9333. size="1.12MB" >
  9334. </productMenu>
  9335. <productID id="5590"
  9336. />
  9337. <productGroupable type="0"
  9338. />
  9339. </product>
  9340. <product id="5S"
  9341. name="5S"
  9342. series="5"
  9343. latestVersion="1.2"
  9344. show = "-1" >
  9345. <productMenu id="protocol"
  9346. type="0">
  9347. </productMenu>
  9348. <productMenu id="sip"
  9349. type="1" >
  9350. </productMenu>
  9351. <productMenu id="bluetoothIntercom"
  9352. type="1" >
  9353. </productMenu>
  9354. <productMenu id="phone"
  9355. type="2" >
  9356. </productMenu>
  9357. <productMenu id="fmradio"
  9358. type="3" >
  9359. </productMenu>
  9360. <productMenu id="deviceSetting"
  9361. type="1"
  9362. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  9363. </productMenu>
  9364. <productMenu id="quickGuide"
  9365. type="0"
  9366. url=""
  9367. size="970KB" >
  9368. </productMenu>
  9369. <productMenu id="userGuide"
  9370. type="1"
  9371. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9372. size="1.26MB" >
  9373. </productMenu>
  9374. <productID id="5534"
  9375. />
  9376. <productGroupable type="0"
  9377. />
  9378. </product>
  9379. <product id="5S"
  9380. name="5S"
  9381. series="5"
  9382. latestVersion="3.0.1"
  9383. show = "-1" >
  9384. <productMenu id="protocol"
  9385. type="0">
  9386. </productMenu>
  9387. <productMenu id="sip"
  9388. type="1" >
  9389. </productMenu>
  9390. <productMenu id="bluetoothIntercom"
  9391. type="1" >
  9392. </productMenu>
  9393. <productMenu id="phone"
  9394. type="2" >
  9395. </productMenu>
  9396. <productMenu id="fmradio"
  9397. type="0" >
  9398. </productMenu>
  9399. <productMenu id="deviceSetting"
  9400. type="1"
  9401. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9402. </productMenu>
  9403. <productMenu id="quickGuide"
  9404. type="0"
  9405. url=""
  9406. size="970KB" >
  9407. </productMenu>
  9408. <productMenu id="userGuide"
  9409. type="1"
  9410. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9411. size="1.26MB" >
  9412. </productMenu>
  9413. <productID id="5538"
  9414. />
  9415. <productGroupable type="0"
  9416. />
  9417. </product>
  9418. <product id="3SPLUS"
  9419. name="3S PLUS"
  9420. series="3"
  9421. latestVersion="2.2"
  9422. show = "1" >
  9423. <productMenu id="protocol"
  9424. type="3" >
  9425. </productMenu>
  9426. <productMenu id="sip"
  9427. type="1" >
  9428. </productMenu>
  9429. <productMenu id="bluetoothIntercom"
  9430. type="1" >
  9431. </productMenu>
  9432. <productMenu id="deviceSetting"
  9433. type="1"
  9434. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9435. <productMenuURL version="2.2.1"
  9436. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9437. />
  9438. </productMenu>
  9439. <productMenu id="quickGuide"
  9440. type="1"
  9441. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9442. size="344KB" >
  9443. </productMenu>
  9444. <productMenu id="userGuide"
  9445. type="1"
  9446. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9447. size="1.14MB" >
  9448. </productMenu>
  9449. <productMenu id="connectGuide"
  9450. type="1"
  9451. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9452. size="1.12MB" >
  9453. </productMenu>
  9454. <productID id="4023"
  9455. />
  9456. <productGroupable type="0"
  9457. />
  9458. </product>
  9459. <product id="3SPLUS"
  9460. name="3S PLUS"
  9461. series="3"
  9462. latestVersion="1.1"
  9463. show = "-1" >
  9464. <productMenu id="protocol"
  9465. type="0">
  9466. </productMenu>
  9467. <productMenu id="sip"
  9468. type="1" >
  9469. </productMenu>
  9470. <productMenu id="bluetoothIntercom"
  9471. type="1" >
  9472. </productMenu>
  9473. <productMenu id="deviceSetting"
  9474. type="1"
  9475. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9476. </productMenu>
  9477. <productMenu id="quickGuide"
  9478. type="1"
  9479. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9480. size="842KB" >
  9481. </productMenu>
  9482. <productMenu id="userGuide"
  9483. type="1"
  9484. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9485. size="1.02MB" >
  9486. </productMenu>
  9487. <productID id="6320"
  9488. />
  9489. <productGroupable type="0"
  9490. />
  9491. </product>
  9492. <product id="AConnect"
  9493. name="Alpinestars A-Connect"
  9494. series="60"
  9495. latestVersion="1.0.2"
  9496. latestVersionMesh="0.19"
  9497. latestVersionVoicePrompt="1.6"
  9498. show = "-1" >
  9499. <productMenu id="protocol"
  9500. type="2" >
  9501. </productMenu>
  9502. <productMenu id="ota"
  9503. type="2" >
  9504. <otaLanguages>
  9505. <otaLanguage
  9506. id="0"
  9507. name="English"
  9508. package="0"
  9509. />
  9510. <otaLanguage
  9511. id="0"
  9512. name="French"
  9513. package="1"
  9514. />
  9515. <otaLanguage
  9516. id="0"
  9517. name="Spanish"
  9518. package="2"
  9519. />
  9520. <otaLanguage
  9521. id="0"
  9522. name="Italian"
  9523. package="3"
  9524. />
  9525. <otaLanguage
  9526. id="0"
  9527. name="German"
  9528. package="4"
  9529. />
  9530. <otaLanguage
  9531. id="0"
  9532. name="Dutch"
  9533. package="5"
  9534. />
  9535. <otaLanguage
  9536. id="0"
  9537. name="Russian"
  9538. package="6"
  9539. />
  9540. <otaLanguage
  9541. id="0"
  9542. name="Chinese"
  9543. package="7"
  9544. />
  9545. <otaLanguage
  9546. id="0"
  9547. name="Korean"
  9548. package="8"
  9549. />
  9550. <otaLanguage
  9551. id="0"
  9552. name="Japanese"
  9553. package="9"
  9554. />
  9555. <otaLanguage
  9556. id="0"
  9557. name="Finnish"
  9558. package="10"
  9559. />
  9560. <otaLanguage
  9561. id="0"
  9562. name="Polish"
  9563. package="11"
  9564. />
  9565. </otaLanguages>
  9566. <otaPackages>
  9567. <package
  9568. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2.img"
  9569. size="5183988"
  9570. />
  9571. <package
  9572. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fr-FR.img"
  9573. size="5183988"
  9574. />
  9575. <package
  9576. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-es-ES.img"
  9577. size="5183988"
  9578. />
  9579. <package
  9580. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-it-IT.img"
  9581. size="5183988"
  9582. />
  9583. <package
  9584. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-de-DE.img"
  9585. size="5183988"
  9586. />
  9587. <package
  9588. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-nl-NL.img"
  9589. size="5183988"
  9590. />
  9591. <package
  9592. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ru-RU.img"
  9593. size="5183988"
  9594. />
  9595. <package
  9596. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-cmn-CN.img"
  9597. size="5183988"
  9598. />
  9599. <package
  9600. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ko-KR.img"
  9601. size="5183988"
  9602. />
  9603. <package
  9604. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-ja-JP.img"
  9605. size="5183988"
  9606. />
  9607. <package
  9608. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-fi-FI.img"
  9609. size="5183988"
  9610. />
  9611. <package
  9612. url="https://api.sena.com/support/OTA/Motorcycles/ACONNECT/ALPINESTARS_A-CONNECT-v1.0.2-build2-pl-PL.img"
  9613. size="5183988"
  9614. />
  9615. </otaPackages>
  9616. </productMenu>
  9617. <productMenu id="sip"
  9618. type="1" >
  9619. </productMenu>
  9620. <productMenu id="illusion"
  9621. type="0" >
  9622. </productMenu>
  9623. <productMenu id="meshIntercom+"
  9624. type="3"
  9625. url="2" >
  9626. </productMenu>
  9627. <productMenu id="waveIntercom"
  9628. type="1" >
  9629. </productMenu>
  9630. <productMenu id="bluetoothIntercom"
  9631. type="1"
  9632. url="2" >
  9633. </productMenu>
  9634. <productMenu id="bluetoothIntercomGrouping"
  9635. type="0" >
  9636. </productMenu>
  9637. <productMenu id="fmradio"
  9638. type="1"
  9639. url="1" >
  9640. </productMenu>
  9641. <productMenu id="phone"
  9642. type="1" >
  9643. </productMenu>
  9644. <productMenu id="music"
  9645. type="1" >
  9646. </productMenu>
  9647. <productMenu id="musicSharing"
  9648. type="0" >
  9649. </productMenu>
  9650. <productMenu id="deviceSetting"
  9651. type="1"
  9652. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  9653. </productMenu>
  9654. <productMenu id="quickGuide"
  9655. type="0"
  9656. url=""
  9657. size="1.12MB" >
  9658. </productMenu>
  9659. <productMenu id="userGuide"
  9660. type="0"
  9661. url=""
  9662. size="2.0MB" >
  9663. </productMenu>
  9664. <productMenu id="videoGuide"
  9665. type="0"
  9666. url=""
  9667. size="3.41MB" >
  9668. </productMenu>
  9669. <productMenu id="volume"
  9670. type="16" >
  9671. </productMenu>
  9672. <productMenu id="volume+"
  9673. type="2"
  9674. url="0x6004" >
  9675. </productMenu>
  9676. <productMenu id="soundMode"
  9677. type="0" >
  9678. </productMenu>
  9679. <productMenu id="battery"
  9680. type="1" >
  9681. </productMenu>
  9682. <productID id="6A82"
  9683. />
  9684. <productGroupable type="0"
  9685. />
  9686. </product>
  9687. <product id="iCon"
  9688. name="iCon"
  9689. series="50"
  9690. latestVersion="1.2"
  9691. show = "0" >
  9692. <productMenu id="protocol"
  9693. type="2" >
  9694. </productMenu>
  9695. <productMenu id="alexa"
  9696. type="0" >
  9697. </productMenu>
  9698. <productMenu id="wa"
  9699. type="0" >
  9700. </productMenu>
  9701. <productMenu id="sip"
  9702. type="1" >
  9703. </productMenu>
  9704. <productMenu id="led"
  9705. type="3" >
  9706. </productMenu>
  9707. <productMenu id="meshIntercom"
  9708. type="20" >
  9709. </productMenu>
  9710. <productMenu id="meshIntercom+"
  9711. type="3"
  9712. url="0" >
  9713. <productMenuType version="1.0.9"
  9714. type="2"
  9715. />
  9716. </productMenu>
  9717. <productMenu id="bluetoothIntercom"
  9718. type="1" >
  9719. </productMenu>
  9720. <productMenu id="phone"
  9721. type="1" >
  9722. </productMenu>
  9723. <productMenu id="music"
  9724. type="1" >
  9725. </productMenu>
  9726. <productMenu id="fmradio"
  9727. type="1" >
  9728. </productMenu>
  9729. <productMenu id="deviceSetting"
  9730. type="1"
  9731. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  9732. <productMenuURL version="1.0.9"
  9733. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9734. />
  9735. </productMenu>
  9736. <productMenu id="quickGuide"
  9737. type="1"
  9738. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  9739. size="344KB" >
  9740. </productMenu>
  9741. <productMenu id="userGuide"
  9742. type="1"
  9743. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  9744. size="3.41MB" >
  9745. </productMenu>
  9746. <productMenu id="volume"
  9747. type="11" >
  9748. </productMenu>
  9749. <productMenu id="battery"
  9750. type="1" >
  9751. </productMenu>
  9752. <productID id="3900"
  9753. />
  9754. <productGroupable type="0"
  9755. />
  9756. </product>
  9757. <product id="ICONHelmLinkSL"
  9758. name="ICON HelmLink SL"
  9759. series="50"
  9760. latestVersion="1.0"
  9761. latestVersionVoicePrompt="1.6"
  9762. show = "-1" >
  9763. <productMenu id="protocol"
  9764. type="2" >
  9765. </productMenu>
  9766. <productMenu id="alexa"
  9767. type="0" >
  9768. </productMenu>
  9769. <productMenu id="ota"
  9770. type="0" >
  9771. <otaPackages>
  9772. <package
  9773. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  9774. size="2945812"
  9775. />
  9776. </otaPackages>
  9777. </productMenu>
  9778. <productMenu id="wa"
  9779. type="0" >
  9780. </productMenu>
  9781. <productMenu id="meshIntercom"
  9782. type="30" >
  9783. </productMenu>
  9784. <productMenu id="meshIntercom+"
  9785. type="3"
  9786. url="2" >
  9787. </productMenu>
  9788. <productMenu id="waveIntercom"
  9789. type="1" >
  9790. </productMenu>
  9791. <productMenu id="phone"
  9792. type="1" >
  9793. </productMenu>
  9794. <productMenu id="music"
  9795. type="1" >
  9796. </productMenu>
  9797. <productMenu id="musicSharing"
  9798. type="0" >
  9799. </productMenu>
  9800. <productMenu id="deviceSetting"
  9801. type="1"
  9802. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  9803. </productMenu>
  9804. <productMenu id="quickGuide"
  9805. type="0"
  9806. url=""
  9807. size="1.12MB" >
  9808. </productMenu>
  9809. <productMenu id="userGuide"
  9810. type="1"
  9811. url=""
  9812. size="2.0MB" >
  9813. </productMenu>
  9814. <productMenu id="volume"
  9815. type="12" >
  9816. </productMenu>
  9817. <productMenu id="battery"
  9818. type="1" >
  9819. </productMenu>
  9820. <productID id="6842"
  9821. />
  9822. <productGroupable type="0"
  9823. />
  9824. </product>
  9825. <product id="HD50S"
  9826. name="H-D Audio 50S"
  9827. series="50"
  9828. latestVersion="1.0.1"
  9829. show = "-1" >
  9830. <productMenu id="protocol"
  9831. type="2" >
  9832. </productMenu>
  9833. <productMenu id="alexa"
  9834. type="0" >
  9835. </productMenu>
  9836. <productMenu id="ota"
  9837. type="0"
  9838. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9839. size="1150234" >
  9840. </productMenu>
  9841. <productMenu id="wa"
  9842. type="1" >
  9843. </productMenu>
  9844. <productMenu id="sip"
  9845. type="1" >
  9846. </productMenu>
  9847. <productMenu id="meshIntercom"
  9848. type="20" >
  9849. </productMenu>
  9850. <productMenu id="meshIntercom+"
  9851. type="3"
  9852. url="0" >
  9853. <productMenuType version="1.0.9"
  9854. type="2"
  9855. />
  9856. </productMenu>
  9857. <productMenu id="bluetoothIntercom"
  9858. type="1" >
  9859. </productMenu>
  9860. <productMenu id="phone"
  9861. type="1" >
  9862. </productMenu>
  9863. <productMenu id="music"
  9864. type="1" >
  9865. </productMenu>
  9866. <productMenu id="fmradio"
  9867. type="1" >
  9868. </productMenu>
  9869. <productMenu id="deviceSetting"
  9870. type="1"
  9871. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9872. <productMenuURL version="1.0.9"
  9873. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9874. />
  9875. </productMenu>
  9876. <productMenu id="quickGuide"
  9877. type="1"
  9878. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9879. size="934KB" >
  9880. </productMenu>
  9881. <productMenu id="userGuide"
  9882. type="1"
  9883. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9884. size="1.14MB" >
  9885. </productMenu>
  9886. <productMenu id="volume"
  9887. type="11" >
  9888. </productMenu>
  9889. <productMenu id="battery"
  9890. type="1" >
  9891. </productMenu>
  9892. <productID id="3156"
  9893. />
  9894. <productGroupable type="0"
  9895. />
  9896. </product>
  9897. <product id="HD50S"
  9898. name="H-D Audio 50S"
  9899. series="50"
  9900. latestVersion="2.0.2"
  9901. show = "0" >
  9902. <productMenu id="protocol"
  9903. type="2" >
  9904. </productMenu>
  9905. <productMenu id="alexa"
  9906. type="0" >
  9907. </productMenu>
  9908. <productMenu id="ota"
  9909. type="0"
  9910. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9911. size="1150234" >
  9912. </productMenu>
  9913. <productMenu id="wa"
  9914. type="1" >
  9915. </productMenu>
  9916. <productMenu id="sip"
  9917. type="1" >
  9918. </productMenu>
  9919. <productMenu id="meshIntercom"
  9920. type="20" >
  9921. </productMenu>
  9922. <productMenu id="meshIntercom+"
  9923. type="3"
  9924. url="0" >
  9925. <productMenuType version="2.0.9"
  9926. type="2"
  9927. />
  9928. </productMenu>
  9929. <productMenu id="bluetoothIntercom"
  9930. type="1" >
  9931. </productMenu>
  9932. <productMenu id="phone"
  9933. type="1" >
  9934. </productMenu>
  9935. <productMenu id="music"
  9936. type="1" >
  9937. </productMenu>
  9938. <productMenu id="fmradio"
  9939. type="1" >
  9940. </productMenu>
  9941. <productMenu id="deviceSetting"
  9942. type="1"
  9943. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9944. <productMenuURL version="2.0.9"
  9945. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9946. />
  9947. </productMenu>
  9948. <productMenu id="quickGuide"
  9949. type="1"
  9950. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9951. size="934KB" >
  9952. </productMenu>
  9953. <productMenu id="userGuide"
  9954. type="1"
  9955. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9956. size="1.14MB" >
  9957. </productMenu>
  9958. <productMenu id="volume"
  9959. type="11" >
  9960. </productMenu>
  9961. <productMenu id="battery"
  9962. type="1" >
  9963. </productMenu>
  9964. <productID id="3213"
  9965. />
  9966. <productGroupable type="0"
  9967. />
  9968. </product>
  9969. <product id="HD50C"
  9970. name="H-D Audio 50C"
  9971. series="50"
  9972. latestVersion="1.0.1"
  9973. show = "0" >
  9974. <productMenu id="protocol"
  9975. type="2" >
  9976. </productMenu>
  9977. <productMenu id="ota"
  9978. type="0" >
  9979. </productMenu>
  9980. <productMenu id="wa"
  9981. type="1" >
  9982. </productMenu>
  9983. <productMenu id="sip"
  9984. type="1" >
  9985. </productMenu>
  9986. <productMenu id="meshIntercom"
  9987. type="20" >
  9988. </productMenu>
  9989. <productMenu id="meshIntercom+"
  9990. type="3"
  9991. url="0" >
  9992. <productMenuType version="1.0.9"
  9993. type="2"
  9994. />
  9995. </productMenu>
  9996. <productMenu id="bluetoothIntercom"
  9997. type="1" >
  9998. </productMenu>
  9999. <productMenu id="phone"
  10000. type="1" >
  10001. </productMenu>
  10002. <productMenu id="music"
  10003. type="1" >
  10004. </productMenu>
  10005. <productMenu id="fmradio"
  10006. type="1" >
  10007. </productMenu>
  10008. <productMenu id="deviceSetting"
  10009. type="1"
  10010. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  10011. <productMenuURL version="1.0.9"
  10012. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  10013. />
  10014. </productMenu>
  10015. <productMenu id="quickGuide"
  10016. type="1"
  10017. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10018. size="344KB" >
  10019. </productMenu>
  10020. <productMenu id="userGuide"
  10021. type="1"
  10022. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  10023. size="3.41MB" >
  10024. </productMenu>
  10025. <productMenu id="volume"
  10026. type="11" >
  10027. </productMenu>
  10028. <productMenu id="battery"
  10029. type="1" >
  10030. </productMenu>
  10031. <productID id="3240"
  10032. />
  10033. <productGroupable type="0"
  10034. />
  10035. </product>
  10036. <product id="HD50S"
  10037. name="FURY N04"
  10038. series="Helmet"
  10039. latestVersion="1.0"
  10040. show = "0" >
  10041. <productMenu id="protocol"
  10042. type="2" >
  10043. </productMenu>
  10044. <productMenu id="alexa"
  10045. type="0" >
  10046. </productMenu>
  10047. <productMenu id="ota"
  10048. type="0" >
  10049. </productMenu>
  10050. <productMenu id="wa"
  10051. type="0" >
  10052. </productMenu>
  10053. <productMenu id="meshIntercom"
  10054. type="20" >
  10055. </productMenu>
  10056. <productMenu id="meshIntercom+"
  10057. type="3"
  10058. url="0" >
  10059. <productMenuType version="1.0.9"
  10060. type="2"
  10061. />
  10062. </productMenu>
  10063. <productMenu id="phone"
  10064. type="1" >
  10065. </productMenu>
  10066. <productMenu id="music"
  10067. type="1" >
  10068. </productMenu>
  10069. <productMenu id="fmradio"
  10070. type="1" >
  10071. </productMenu>
  10072. <productMenu id="deviceSetting"
  10073. type="1"
  10074. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  10075. <productMenuURL version="1.0.9"
  10076. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  10077. />
  10078. </productMenu>
  10079. <productMenu id="quickGuide"
  10080. type="1"
  10081. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  10082. size="1.12MB" >
  10083. </productMenu>
  10084. <productMenu id="userGuide"
  10085. type="1"
  10086. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  10087. size="2.0MB" >
  10088. </productMenu>
  10089. <productMenu id="volume"
  10090. type="13" >
  10091. </productMenu>
  10092. <productMenu id="battery"
  10093. type="1" >
  10094. </productMenu>
  10095. <productID id="5553"
  10096. />
  10097. <productGroupable type="0"
  10098. />
  10099. </product>
  10100. <product id="XCOM3Pro"
  10101. name="X-COM3 Pro"
  10102. series="50"
  10103. latestVersion="1.1"
  10104. show = "0" >
  10105. <productMenu id="protocol"
  10106. type="2" >
  10107. </productMenu>
  10108. <productMenu id="alexa"
  10109. type="0" >
  10110. </productMenu>
  10111. <productMenu id="ota"
  10112. type="0" >
  10113. </productMenu>
  10114. <productMenu id="wa"
  10115. type="0" >
  10116. </productMenu>
  10117. <productMenu id="sip"
  10118. type="1" >
  10119. </productMenu>
  10120. <productMenu id="meshIntercom"
  10121. type="30" >
  10122. </productMenu>
  10123. <productMenu id="meshIntercom+"
  10124. type="3"
  10125. url="2" >
  10126. <productMenuType version="1.1"
  10127. type="2"
  10128. />
  10129. </productMenu>
  10130. <productMenu id="waveIntercom"
  10131. type="1" >
  10132. <productMenuType version="1.1"
  10133. type="0"
  10134. />
  10135. </productMenu>
  10136. <productMenu id="bluetoothIntercom"
  10137. type="1" >
  10138. </productMenu>
  10139. <productMenu id="phone"
  10140. type="1" >
  10141. </productMenu>
  10142. <productMenu id="music"
  10143. type="1" >
  10144. </productMenu>
  10145. <productMenu id="fmradio"
  10146. type="1" >
  10147. </productMenu>
  10148. <productMenu id="deviceSetting"
  10149. type="1"
  10150. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  10151. <productMenuURL version="1.1"
  10152. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  10153. />
  10154. </productMenu>
  10155. <productMenu id="quickGuide"
  10156. type="0"
  10157. url=""
  10158. size="344KB" >
  10159. </productMenu>
  10160. <productMenu id="userGuide"
  10161. type="1"
  10162. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  10163. size="3.41MB" >
  10164. </productMenu>
  10165. <productMenu id="volume"
  10166. type="11" >
  10167. </productMenu>
  10168. <productMenu id="battery"
  10169. type="1" >
  10170. </productMenu>
  10171. <productID id="321A"
  10172. />
  10173. <productGroupable type="0"
  10174. />
  10175. </product>
  10176. <product id="XCOM3"
  10177. name="X-COM3"
  10178. series="20"
  10179. latestVersion="1.0"
  10180. show = "0" >
  10181. <productMenu id="protocol"
  10182. type="2" >
  10183. </productMenu>
  10184. <productMenu id="sip"
  10185. type="1" >
  10186. </productMenu>
  10187. <productMenu id="bluetoothIntercom"
  10188. type="1" >
  10189. </productMenu>
  10190. <productMenu id="phone"
  10191. type="1" >
  10192. </productMenu>
  10193. <productMenu id="music"
  10194. type="1" >
  10195. </productMenu>
  10196. <productMenu id="fmradio"
  10197. type="1" >
  10198. </productMenu>
  10199. <productMenu id="deviceSetting"
  10200. type="1"
  10201. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  10202. </productMenu>
  10203. <productMenu id="quickGuide"
  10204. type="0"
  10205. url=""
  10206. size="934KB" >
  10207. </productMenu>
  10208. <productMenu id="userGuide"
  10209. type="1"
  10210. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  10211. size="1.14MB" >
  10212. </productMenu>
  10213. <productMenu id="volume"
  10214. type="15" >
  10215. </productMenu>
  10216. <productID id="3410"
  10217. />
  10218. <productGroupable type="0"
  10219. />
  10220. </product>
  10221. <product id="X-COM2"
  10222. name="X-COM2"
  10223. series="20"
  10224. latestVersion="1.0.5"
  10225. show = "0" >
  10226. <productMenu id="protocol"
  10227. type="0">
  10228. </productMenu>
  10229. <productMenu id="sip"
  10230. type="1" >
  10231. </productMenu>
  10232. <productMenu id="bluetoothIntercom"
  10233. type="1" >
  10234. </productMenu>
  10235. <productMenu id="intercomSetting"
  10236. type="1" >
  10237. </productMenu>
  10238. <productMenu id="phone"
  10239. type="2" >
  10240. </productMenu>
  10241. <productMenu id="fmradio"
  10242. type="3" >
  10243. </productMenu>
  10244. <productMenu id="deviceSetting"
  10245. type="1"
  10246. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  10247. </productMenu>
  10248. <productMenu id="quickGuide"
  10249. type="1"
  10250. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  10251. size="796KB" >
  10252. </productMenu>
  10253. <productMenu id="userGuide"
  10254. type="1"
  10255. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  10256. size="1.90MB" >
  10257. </productMenu>
  10258. <productID id="2030"
  10259. />
  10260. <productGroupable type="1"
  10261. />
  10262. </product>
  10263. <product id="AVAABC"
  10264. name="AVA ABC"
  10265. series="SPIDER"
  10266. latestVersion="1.0"
  10267. show = "0" >
  10268. <productMenu id="protocol"
  10269. type="2" >
  10270. </productMenu>
  10271. <productMenu id="alexa"
  10272. type="0" >
  10273. </productMenu>
  10274. <productMenu id="ota"
  10275. type="0" >
  10276. <productMenuType version="1.0"
  10277. type="0"
  10278. />
  10279. <otaPackages>
  10280. <package
  10281. url="https://api.sena.com/support/OTA/"
  10282. size="2945812"
  10283. />
  10284. </otaPackages>
  10285. </productMenu>
  10286. <productMenu id="wa"
  10287. type="0" >
  10288. </productMenu>
  10289. <productMenu id="meshIntercom"
  10290. type="30" >
  10291. <productMenuType version="1.0"
  10292. type="20"
  10293. />
  10294. </productMenu>
  10295. <productMenu id="meshIntercom+"
  10296. type="3"
  10297. url="2" >
  10298. <productMenuType version="1.0"
  10299. type="2"
  10300. />
  10301. <productMenuURL version="1.0"
  10302. url="0"
  10303. />
  10304. </productMenu>
  10305. <productMenu id="waveIntercom"
  10306. type="1" >
  10307. <productMenuType version="1.0"
  10308. type="0"
  10309. />
  10310. </productMenu>
  10311. <productMenu id="phone"
  10312. type="1" >
  10313. </productMenu>
  10314. <productMenu id="music"
  10315. type="1" >
  10316. </productMenu>
  10317. <productMenu id="musicSharing"
  10318. type="0" >
  10319. </productMenu>
  10320. <productMenu id="deviceSetting"
  10321. type="1"
  10322. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA_02.xml" >
  10323. <productMenuURL version="1.0"
  10324. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml"
  10325. />
  10326. </productMenu>
  10327. <productMenu id="quickGuide"
  10328. type="1"
  10329. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  10330. size="1.12MB" >
  10331. </productMenu>
  10332. <productMenu id="userGuide"
  10333. type="1"
  10334. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  10335. size="2.0MB" >
  10336. </productMenu>
  10337. <productMenu id="volume"
  10338. type="12" >
  10339. </productMenu>
  10340. <productMenu id="battery"
  10341. type="1" >
  10342. </productMenu>
  10343. <productID id="6808"
  10344. />
  10345. <productGroupable type="0"
  10346. />
  10347. </product>
  10348. <product id="ADVANCEProCOM2"
  10349. name="ADVANCE ProCOM 2"
  10350. series="Helmet"
  10351. latestVersion="0.5"
  10352. latestVersionVoicePrompt="0.3"
  10353. show = "-1" >
  10354. <productMenu id="protocol"
  10355. type="2" >
  10356. </productMenu>
  10357. <productMenu id="ota"
  10358. type="2" >
  10359. <otaLanguages>
  10360. <otaLanguage
  10361. id="0"
  10362. name="English"
  10363. package="0"
  10364. />
  10365. <otaLanguage
  10366. id="0"
  10367. name="French"
  10368. package="1"
  10369. />
  10370. <otaLanguage
  10371. id="0"
  10372. name="Spanish"
  10373. package="2"
  10374. />
  10375. <otaLanguage
  10376. id="0"
  10377. name="Italian"
  10378. package="3"
  10379. />
  10380. <otaLanguage
  10381. id="0"
  10382. name="German"
  10383. package="4"
  10384. />
  10385. <otaLanguage
  10386. id="0"
  10387. name="Dutch"
  10388. package="5"
  10389. />
  10390. <otaLanguage
  10391. id="0"
  10392. name="Russian"
  10393. package="6"
  10394. />
  10395. <otaLanguage
  10396. id="0"
  10397. name="Chinese"
  10398. package="7"
  10399. />
  10400. <otaLanguage
  10401. id="0"
  10402. name="Korean"
  10403. package="8"
  10404. />
  10405. <otaLanguage
  10406. id="0"
  10407. name="Japanese"
  10408. package="9"
  10409. />
  10410. <otaLanguage
  10411. id="0"
  10412. name="Finnish"
  10413. package="10"
  10414. />
  10415. <otaLanguage
  10416. id="0"
  10417. name="Polish"
  10418. package="11"
  10419. />
  10420. </otaLanguages>
  10421. <otaPackages>
  10422. <package
  10423. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10424. size="5183988"
  10425. />
  10426. <package
  10427. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10428. size="5183988"
  10429. />
  10430. <package
  10431. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10432. size="5183988"
  10433. />
  10434. <package
  10435. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10436. size="5183988"
  10437. />
  10438. <package
  10439. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10440. size="5183988"
  10441. />
  10442. <package
  10443. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10444. size="5183988"
  10445. />
  10446. <package
  10447. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10448. size="5183988"
  10449. />
  10450. <package
  10451. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10452. size="5183988"
  10453. />
  10454. <package
  10455. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10456. size="5183988"
  10457. />
  10458. <package
  10459. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10460. size="5183988"
  10461. />
  10462. <package
  10463. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10464. size="5183988"
  10465. />
  10466. <package
  10467. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10468. size="5183988"
  10469. />
  10470. </otaPackages>
  10471. </productMenu>
  10472. <productMenu id="wa"
  10473. type="0" >
  10474. </productMenu>
  10475. <productMenu id="meshIntercom"
  10476. type="30" >
  10477. </productMenu>
  10478. <productMenu id="meshIntercom+"
  10479. type="3"
  10480. url="2" >
  10481. </productMenu>
  10482. <productMenu id="waveIntercom"
  10483. type="1" >
  10484. </productMenu>
  10485. <productMenu id="fmradio"
  10486. type="1" >
  10487. </productMenu>
  10488. <productMenu id="phone"
  10489. type="0" >
  10490. </productMenu>
  10491. <productMenu id="music"
  10492. type="1" >
  10493. </productMenu>
  10494. <productMenu id="musicSharing"
  10495. type="0" >
  10496. </productMenu>
  10497. <productMenu id="deviceSetting"
  10498. type="1"
  10499. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10500. </productMenu>
  10501. <productMenu id="quickGuide"
  10502. type="0"
  10503. url=""
  10504. size="1.12MB" >
  10505. </productMenu>
  10506. <productMenu id="userGuide"
  10507. type="1"
  10508. url=""
  10509. size="2.0MB" >
  10510. </productMenu>
  10511. <productMenu id="videoGuide"
  10512. type="0"
  10513. url=""
  10514. size="3.41MB" >
  10515. </productMenu>
  10516. <productMenu id="connectGuide"
  10517. type="1"
  10518. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10519. size="1.12MB" >
  10520. </productMenu>
  10521. <productMenu id="volume"
  10522. type="16" >
  10523. </productMenu>
  10524. <productMenu id="battery"
  10525. type="1" >
  10526. </productMenu>
  10527. <productID id="6A85"
  10528. />
  10529. <productGroupable type="0"
  10530. />
  10531. </product>
  10532. <product id="Triumph_50S"
  10533. name="Triumph 50S"
  10534. series="50"
  10535. latestVersion="1.5"
  10536. show = "0" >
  10537. <productMenu id="protocol"
  10538. type="2" >
  10539. </productMenu>
  10540. <productMenu id="alexa"
  10541. type="0" >
  10542. </productMenu>
  10543. <productMenu id="ota"
  10544. type="0"
  10545. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10546. size="1150234" >
  10547. </productMenu>
  10548. <productMenu id="wa"
  10549. type="1" >
  10550. </productMenu>
  10551. <productMenu id="sip"
  10552. type="1" >
  10553. </productMenu>
  10554. <productMenu id="meshIntercom"
  10555. type="20" >
  10556. </productMenu>
  10557. <productMenu id="bluetoothIntercom"
  10558. type="1" >
  10559. </productMenu>
  10560. <productMenu id="meshIntercom+"
  10561. type="3"
  10562. url="2" >
  10563. <productMenuType version="1.2.9"
  10564. type="2"
  10565. />
  10566. <productMenuURL version="1.2.9"
  10567. url="0"
  10568. />
  10569. </productMenu>
  10570. <productMenu id="waveIntercom"
  10571. type="1" >
  10572. <productMenuType version="1.2.9"
  10573. type="0"
  10574. />
  10575. </productMenu>
  10576. <productMenu id="phone"
  10577. type="1" >
  10578. </productMenu>
  10579. <productMenu id="music"
  10580. type="1" >
  10581. </productMenu>
  10582. <productMenu id="fmradio"
  10583. type="1" >
  10584. </productMenu>
  10585. <productMenu id="deviceSetting"
  10586. type="1"
  10587. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10588. <productMenuURL version="1.2.9"
  10589. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10590. />
  10591. <productMenuURL version="1.0"
  10592. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10593. />
  10594. </productMenu>
  10595. <productMenu id="quickGuide"
  10596. type="1"
  10597. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10598. size="934KB" >
  10599. </productMenu>
  10600. <productMenu id="userGuide"
  10601. type="1"
  10602. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10603. size="1.14MB" >
  10604. </productMenu>
  10605. <productMenu id="volume"
  10606. type="11" >
  10607. </productMenu>
  10608. <productMenu id="battery"
  10609. type="1" >
  10610. </productMenu>
  10611. <productID id="3264"
  10612. />
  10613. <productGroupable type="0"
  10614. />
  10615. </product>
  10616. <product id="RE50S"
  10617. name="RE 50S"
  10618. series="50"
  10619. latestVersion="2.7"
  10620. show = "0" >
  10621. <productMenu id="protocol"
  10622. type="2" >
  10623. </productMenu>
  10624. <productMenu id="alexa"
  10625. type="0" >
  10626. </productMenu>
  10627. <productMenu id="ota"
  10628. type="0"
  10629. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10630. size="1150234" >
  10631. </productMenu>
  10632. <productMenu id="wa"
  10633. type="1" >
  10634. </productMenu>
  10635. <productMenu id="sip"
  10636. type="1" >
  10637. </productMenu>
  10638. <productMenu id="meshIntercom"
  10639. type="30" >
  10640. </productMenu>
  10641. <productMenu id="meshIntercom+"
  10642. type="3"
  10643. url="2" >
  10644. <productMenuType version="2.5"
  10645. type="2"
  10646. />
  10647. </productMenu>
  10648. <productMenu id="waveIntercom"
  10649. type="1" >
  10650. <productMenuType version="2.5"
  10651. type="0"
  10652. />
  10653. </productMenu>
  10654. <productMenu id="bluetoothIntercom"
  10655. type="1" >
  10656. </productMenu>
  10657. <productMenu id="phone"
  10658. type="1" >
  10659. </productMenu>
  10660. <productMenu id="music"
  10661. type="1" >
  10662. </productMenu>
  10663. <productMenu id="fmradio"
  10664. type="1" >
  10665. </productMenu>
  10666. <productMenu id="deviceSetting"
  10667. type="1"
  10668. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10669. <productMenuURL version="2.5.9"
  10670. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  10671. />
  10672. </productMenu>
  10673. <productMenu id="quickGuide"
  10674. type="1"
  10675. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  10676. size="934KB" >
  10677. </productMenu>
  10678. <productMenu id="userGuide"
  10679. type="1"
  10680. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  10681. size="1.14MB" >
  10682. </productMenu>
  10683. <productMenu id="videoGuide"
  10684. type="0"
  10685. url=""
  10686. size="3.41MB" >
  10687. </productMenu>
  10688. <productMenu id="volume"
  10689. type="11" >
  10690. </productMenu>
  10691. <productMenu id="battery"
  10692. type="1" >
  10693. </productMenu>
  10694. <productID id="321C"
  10695. />
  10696. <productGroupable type="0"
  10697. />
  10698. </product>
  10699. <product id="BMW_HELMET_II_U1"
  10700. name="BMW HELMET II U1"
  10701. series="50"
  10702. latestVersion="1.0"
  10703. show = "0" >
  10704. <productMenu id="protocol"
  10705. type="2" >
  10706. </productMenu>
  10707. <productMenu id="alexa"
  10708. type="0" >
  10709. </productMenu>
  10710. <productMenu id="sip"
  10711. type="1" >
  10712. </productMenu>
  10713. <productMenu id="meshIntercom"
  10714. type="20" >
  10715. </productMenu>
  10716. <productMenu id="bluetoothIntercom"
  10717. type="1" >
  10718. </productMenu>
  10719. <productMenu id="bluetoothIntercom2"
  10720. type="1" >
  10721. </productMenu>
  10722. <productMenu id="phone"
  10723. type="1" >
  10724. </productMenu>
  10725. <productMenu id="music"
  10726. type="1" >
  10727. </productMenu>
  10728. <productMenu id="fmradio"
  10729. type="1" >
  10730. </productMenu>
  10731. <productMenu id="deviceSetting"
  10732. type="1"
  10733. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  10734. </productMenu>
  10735. <productMenu id="quickGuide"
  10736. type="1"
  10737. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  10738. size="934KB" >
  10739. </productMenu>
  10740. <productMenu id="userGuide"
  10741. type="1"
  10742. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  10743. size="1.14MB" >
  10744. </productMenu>
  10745. <productMenu id="volume"
  10746. type="11" >
  10747. </productMenu>
  10748. <productMenu id="battery"
  10749. type="1" >
  10750. </productMenu>
  10751. <productID id="3260"
  10752. />
  10753. <productGroupable type="0"
  10754. />
  10755. </product>
  10756. <product id="OUTRUSHR"
  10757. name="CX935"
  10758. series="Helmet"
  10759. latestVersion="2.1"
  10760. show = "-1" >
  10761. <productMenu id="protocol"
  10762. type="3">
  10763. </productMenu>
  10764. <productMenu id="sip"
  10765. type="1" >
  10766. </productMenu>
  10767. <productMenu id="bluetoothIntercom"
  10768. type="1" >
  10769. </productMenu>
  10770. <productMenu id="phone"
  10771. type="1" >
  10772. </productMenu>
  10773. <productMenu id="fmradio"
  10774. type="0" >
  10775. </productMenu>
  10776. <productMenu id="deviceSetting"
  10777. type="1"
  10778. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  10779. </productMenu>
  10780. <productMenu id="userGuide"
  10781. type="1"
  10782. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  10783. size="660KB" >
  10784. </productMenu>
  10785. <productID id="5446"
  10786. />
  10787. <productGroupable type="0"
  10788. />
  10789. </product>
  10790. <product id="LSE_01"
  10791. name="LSE-01"
  10792. series="SF"
  10793. latestVersion="1.2.3"
  10794. show = "0" >
  10795. <productMenu id="protocol"
  10796. type="1"
  10797. url="3">
  10798. </productMenu>
  10799. <productMenu id="sip"
  10800. type="1" >
  10801. </productMenu>
  10802. <productMenu id="bluetoothIntercom"
  10803. type="1" >
  10804. </productMenu>
  10805. <productMenu id="phone"
  10806. type="1" >
  10807. </productMenu>
  10808. <productMenu id="music"
  10809. type="1" >
  10810. </productMenu>
  10811. <productMenu id="fmradio"
  10812. type="1" >
  10813. </productMenu>
  10814. <productMenu id="deviceSetting"
  10815. type="1"
  10816. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10817. <productMenuURL version="1.1"
  10818. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  10819. />
  10820. <productMenuURL version="1.0"
  10821. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  10822. />
  10823. </productMenu>
  10824. <productMenu id="quickGuide"
  10825. type="1"
  10826. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  10827. size="607KB" >
  10828. </productMenu>
  10829. <productMenu id="userGuide"
  10830. type="1"
  10831. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  10832. size="1.91MB" >
  10833. </productMenu>
  10834. <productMenu id="volume"
  10835. type="4" >
  10836. </productMenu>
  10837. <productID id="5416"
  10838. />
  10839. <productGroupable type="0"
  10840. />
  10841. </product>
  10842. <product id="AGV_ARK"
  10843. name="AGV ARK"
  10844. series="SF"
  10845. latestVersion="1.0.3"
  10846. show = "0" >
  10847. <productMenu id="protocol"
  10848. type="1"
  10849. url="3">
  10850. </productMenu>
  10851. <productMenu id="sip"
  10852. type="1" >
  10853. </productMenu>
  10854. <productMenu id="bluetoothIntercom"
  10855. type="1" >
  10856. </productMenu>
  10857. <productMenu id="phone"
  10858. type="1" >
  10859. </productMenu>
  10860. <productMenu id="music"
  10861. type="1" >
  10862. </productMenu>
  10863. <productMenu id="fmradio"
  10864. type="1" >
  10865. </productMenu>
  10866. <productMenu id="deviceSetting"
  10867. type="1"
  10868. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10869. </productMenu>
  10870. <productMenu id="quickGuide"
  10871. type="1"
  10872. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  10873. size="607KB" >
  10874. </productMenu>
  10875. <productMenu id="userGuide"
  10876. type="1"
  10877. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  10878. size="1.91MB" >
  10879. </productMenu>
  10880. <productMenu id="volume"
  10881. type="4" >
  10882. </productMenu>
  10883. <productID id="5420"
  10884. />
  10885. <productGroupable type="0"
  10886. />
  10887. </product>
  10888. <product id="KLIM_KRIOS"
  10889. name="KLIM Krios"
  10890. series="10"
  10891. latestVersion="1.1.2"
  10892. show = "0" >
  10893. <productMenu id="protocol"
  10894. type="0">
  10895. </productMenu>
  10896. <productMenu id="sip"
  10897. type="1" >
  10898. </productMenu>
  10899. <productMenu id="bluetoothIntercom"
  10900. type="1" >
  10901. </productMenu>
  10902. <productMenu id="phone"
  10903. type="2" >
  10904. </productMenu>
  10905. <productMenu id="fmradio"
  10906. type="3" >
  10907. </productMenu>
  10908. <productMenu id="deviceSetting"
  10909. type="1"
  10910. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  10911. <productMenuURL version="1.0"
  10912. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  10913. />
  10914. </productMenu>
  10915. <productMenu id="quickGuide"
  10916. type="1"
  10917. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  10918. size="649KB" >
  10919. </productMenu>
  10920. <productMenu id="userGuide"
  10921. type="1"
  10922. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  10923. size="1.43MB" >
  10924. </productMenu>
  10925. <productID id="5910"
  10926. />
  10927. <productGroupable type="0"
  10928. />
  10929. </product>
  10930. <product id="POLARIS_SLINGSHOT"
  10931. name="Polaris Slingshot"
  10932. series="10"
  10933. latestVersion="1.1.2"
  10934. show = "0" >
  10935. <productMenu id="protocol"
  10936. type="0">
  10937. </productMenu>
  10938. <productMenu id="sip"
  10939. type="1" >
  10940. </productMenu>
  10941. <productMenu id="bluetoothIntercom"
  10942. type="1" >
  10943. </productMenu>
  10944. <productMenu id="phone"
  10945. type="2" >
  10946. </productMenu>
  10947. <productMenu id="fmradio"
  10948. type="3" >
  10949. </productMenu>
  10950. <productMenu id="deviceSetting"
  10951. type="1"
  10952. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  10953. <productMenuURL version="1.0"
  10954. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  10955. />
  10956. </productMenu>
  10957. <productMenu id="quickGuide"
  10958. type="1"
  10959. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  10960. size="689KB" >
  10961. </productMenu>
  10962. <productMenu id="userGuide"
  10963. type="1"
  10964. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  10965. size="1.43MB" >
  10966. </productMenu>
  10967. <productID id="5920"
  10968. />
  10969. <productGroupable type="0"
  10970. />
  10971. </product>
  10972. <product id="DWO6"
  10973. name="SEDICI DWO6-PRO"
  10974. series="10"
  10975. latestVersion="1.0.2"
  10976. show = "0" >
  10977. <productMenu id="protocol"
  10978. type="0">
  10979. </productMenu>
  10980. <productMenu id="sip"
  10981. type="1" >
  10982. </productMenu>
  10983. <productMenu id="bluetoothIntercom"
  10984. type="1" >
  10985. </productMenu>
  10986. <productMenu id="phone"
  10987. type="2" >
  10988. </productMenu>
  10989. <productMenu id="fmradio"
  10990. type="3" >
  10991. </productMenu>
  10992. <productMenu id="deviceSetting"
  10993. type="1"
  10994. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10995. </productMenu>
  10996. <productMenu id="quickGuide"
  10997. type="1"
  10998. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  10999. size="529KB" >
  11000. </productMenu>
  11001. <productMenu id="userGuide"
  11002. type="1"
  11003. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  11004. size="4.09MB" >
  11005. </productMenu>
  11006. <productID id="6112"
  11007. />
  11008. <productGroupable type="0"
  11009. />
  11010. </product>
  11011. <product id="DWO6A"
  11012. name="SEDICI DWO-6"
  11013. series="10"
  11014. latestVersion="1.0.2"
  11015. show = "0" >
  11016. <productMenu id="protocol"
  11017. type="0">
  11018. </productMenu>
  11019. <productMenu id="sip"
  11020. type="1" >
  11021. </productMenu>
  11022. <productMenu id="bluetoothIntercom"
  11023. type="1" >
  11024. </productMenu>
  11025. <productMenu id="phone"
  11026. type="2" >
  11027. </productMenu>
  11028. <productMenu id="fmradio"
  11029. type="3" >
  11030. </productMenu>
  11031. <productMenu id="deviceSetting"
  11032. type="1"
  11033. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  11034. </productMenu>
  11035. <productMenu id="quickGuide"
  11036. type="1"
  11037. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  11038. size="522KB" >
  11039. </productMenu>
  11040. <productMenu id="userGuide"
  11041. type="1"
  11042. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  11043. size="2.71MB" >
  11044. </productMenu>
  11045. <productID id="6114"
  11046. />
  11047. <productGroupable type="0"
  11048. />
  11049. </product>
  11050. <product id="3SPLUS"
  11051. name="ZILL"
  11052. series="3"
  11053. latestVersion="1.0.4"
  11054. show = "0" >
  11055. <productMenu id="protocol"
  11056. type="0">
  11057. </productMenu>
  11058. <productMenu id="sip"
  11059. type="1" >
  11060. </productMenu>
  11061. <productMenu id="bluetoothIntercom"
  11062. type="1" >
  11063. </productMenu>
  11064. <productMenu id="deviceSetting"
  11065. type="1"
  11066. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  11067. </productMenu>
  11068. <productMenu id="quickGuide"
  11069. type="1"
  11070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  11071. size="842KB" >
  11072. </productMenu>
  11073. <productMenu id="userGuide"
  11074. type="1"
  11075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  11076. size="1.02MB" >
  11077. </productMenu>
  11078. <productID id="6335"
  11079. />
  11080. <productGroupable type="0"
  11081. />
  11082. </product>
  11083. <product id="HD50S"
  11084. name="Boom! Audio 30K"
  11085. series="30"
  11086. latestVersion="3.4"
  11087. show = "0" >
  11088. <productMenu id="protocol"
  11089. type="1"
  11090. url="0">
  11091. </productMenu>
  11092. <productMenu id="wa"
  11093. type="0" >
  11094. </productMenu>
  11095. <productMenu id="sip"
  11096. type="1" >
  11097. </productMenu>
  11098. <productMenu id="meshIntercom"
  11099. type="20" >
  11100. <productMenuType version="2.9.9"
  11101. type="10"
  11102. />
  11103. </productMenu>
  11104. <productMenu id="bluetoothIntercom"
  11105. type="1" >
  11106. </productMenu>
  11107. <productMenu id="phone"
  11108. type="1" >
  11109. </productMenu>
  11110. <productMenu id="music"
  11111. type="1" >
  11112. </productMenu>
  11113. <productMenu id="fmradio"
  11114. type="1" >
  11115. </productMenu>
  11116. <productMenu id="deviceSetting"
  11117. type="1"
  11118. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  11119. <productMenuURL version="3.2"
  11120. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  11121. />
  11122. <productMenuURL version="3.0"
  11123. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  11124. />
  11125. <productMenuURL version="2.2"
  11126. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11127. />
  11128. </productMenu>
  11129. <productMenu id="quickGuide"
  11130. type="1"
  11131. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11132. size="1.06MB" >
  11133. </productMenu>
  11134. <productMenu id="userGuide"
  11135. type="1"
  11136. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  11137. size="3.15MB" >
  11138. </productMenu>
  11139. <productMenu id="volume"
  11140. type="1" >
  11141. </productMenu>
  11142. <productID id="3112"
  11143. />
  11144. <productGroupable type="0"
  11145. />
  11146. </product>
  11147. <product id="HD50S"
  11148. name="Boom! Audio N02"
  11149. series="30"
  11150. latestVersion="3.1"
  11151. show = "0" >
  11152. <productMenu id="protocol"
  11153. type="1"
  11154. url="0">
  11155. </productMenu>
  11156. <productMenu id="wa"
  11157. type="2" >
  11158. </productMenu>
  11159. <productMenu id="sip"
  11160. type="1" >
  11161. </productMenu>
  11162. <productMenu id="meshIntercom"
  11163. type="20" >
  11164. <productMenuType version="2.9.9"
  11165. type="10"
  11166. />
  11167. </productMenu>
  11168. <productMenu id="bluetoothIntercom"
  11169. type="1" >
  11170. </productMenu>
  11171. <productMenu id="phone"
  11172. type="1" >
  11173. </productMenu>
  11174. <productMenu id="music"
  11175. type="1" >
  11176. </productMenu>
  11177. <productMenu id="fmradio"
  11178. type="1" >
  11179. </productMenu>
  11180. <productMenu id="deviceSetting"
  11181. type="1"
  11182. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  11183. <productMenuURL version="2.2"
  11184. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  11185. />
  11186. </productMenu>
  11187. <productMenu id="quickGuide"
  11188. type="1"
  11189. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  11190. size="1.06MB" >
  11191. </productMenu>
  11192. <productMenu id="userGuide"
  11193. type="1"
  11194. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  11195. size="3.15MB" >
  11196. </productMenu>
  11197. <productMenu id="volume"
  11198. type="2" >
  11199. </productMenu>
  11200. <productID id="3114"
  11201. />
  11202. <productGroupable type="0"
  11203. />
  11204. </product>
  11205. <product id="HD50S"
  11206. name="Boom Audio 20S"
  11207. series="50"
  11208. latestVersion="2.5.2"
  11209. show = "0" >
  11210. <productMenu id="protocol"
  11211. type="0">
  11212. </productMenu>
  11213. <productMenu id="sip"
  11214. type="1" >
  11215. <productMenuType version="1.0"
  11216. type="0"
  11217. />
  11218. </productMenu>
  11219. <productMenu id="bluetoothIntercom"
  11220. type="1" >
  11221. <productMenuType version="1.0"
  11222. type="0"
  11223. />
  11224. </productMenu>
  11225. <productMenu id="intercomSetting"
  11226. type="1" >
  11227. </productMenu>
  11228. <productMenu id="phone"
  11229. type="2" >
  11230. </productMenu>
  11231. <productMenu id="fmradio"
  11232. type="3" >
  11233. </productMenu>
  11234. <productMenu id="deviceSetting"
  11235. type="1"
  11236. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11237. <productMenuURL version="2.4"
  11238. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11239. />
  11240. <productMenuURL version="1.5"
  11241. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11242. />
  11243. <productMenuURL version="1.4.1"
  11244. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11245. />
  11246. <productMenuURL version="1.1"
  11247. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11248. />
  11249. <productMenuURL version="1.0"
  11250. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11251. />
  11252. </productMenu>
  11253. <productMenu id="quickGuide"
  11254. type="1"
  11255. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11256. size="264KB" >
  11257. </productMenu>
  11258. <productMenu id="userGuide"
  11259. type="1"
  11260. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11261. size="3.09MB" >
  11262. </productMenu>
  11263. <productMenu id="connectGuide"
  11264. type="1"
  11265. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  11266. size="1.12MB" >
  11267. </productMenu>
  11268. <productID id="4210"
  11269. />
  11270. <productProductKey key="11"
  11271. />
  11272. <productID id="4230"
  11273. />
  11274. <productProductKey key="11"
  11275. />
  11276. <productGroupable type="1"
  11277. />
  11278. </product>
  11279. <product id="HD50S"
  11280. name="Boom Audio 20S EVO"
  11281. series="50"
  11282. latestVersion="2.5.2"
  11283. show = "0" >
  11284. <productMenu id="protocol"
  11285. type="0">
  11286. </productMenu>
  11287. <productMenu id="sip"
  11288. type="1" >
  11289. <productMenuType version="1.0"
  11290. type="0"
  11291. />
  11292. </productMenu>
  11293. <productMenu id="bluetoothIntercom"
  11294. type="1" >
  11295. <productMenuType version="1.0"
  11296. type="0"
  11297. />
  11298. </productMenu>
  11299. <productMenu id="intercomSetting"
  11300. type="1" >
  11301. </productMenu>
  11302. <productMenu id="phone"
  11303. type="2" >
  11304. </productMenu>
  11305. <productMenu id="fmradio"
  11306. type="3" >
  11307. </productMenu>
  11308. <productMenu id="deviceSetting"
  11309. type="1"
  11310. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  11311. <productMenuURL version="2.4"
  11312. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  11313. />
  11314. <productMenuURL version="1.5"
  11315. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  11316. />
  11317. <productMenuURL version="1.4.1"
  11318. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  11319. />
  11320. <productMenuURL version="1.1"
  11321. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  11322. />
  11323. <productMenuURL version="1.0"
  11324. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  11325. />
  11326. </productMenu>
  11327. <productMenu id="quickGuide"
  11328. type="1"
  11329. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  11330. size="321KB" >
  11331. </productMenu>
  11332. <productMenu id="userGuide"
  11333. type="1"
  11334. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  11335. size="2.46MB" >
  11336. </productMenu>
  11337. <productID id="4230"
  11338. />
  11339. <productProductKey key="27"
  11340. />
  11341. <productGroupable type="1"
  11342. />
  11343. </product>
  11344. <product id="HD50S"
  11345. name="Boom! Audio 10S"
  11346. series="50"
  11347. latestVersion="1.1.3"
  11348. show = "0" >
  11349. <productMenu id="protocol"
  11350. type="0">
  11351. </productMenu>
  11352. <productMenu id="sip"
  11353. type="1" >
  11354. </productMenu>
  11355. <productMenu id="bluetoothIntercom"
  11356. type="1" >
  11357. </productMenu>
  11358. <productMenu id="phone"
  11359. type="2" >
  11360. </productMenu>
  11361. <productMenu id="fmradio"
  11362. type="3" >
  11363. </productMenu>
  11364. <productMenu id="deviceSetting"
  11365. type="1"
  11366. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  11367. </productMenu>
  11368. <productMenu id="quickGuide"
  11369. type="1"
  11370. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11371. size="538KB" >
  11372. </productMenu>
  11373. <productMenu id="userGuide"
  11374. type="1"
  11375. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  11376. size="1.55MB" >
  11377. </productMenu>
  11378. <productID id="5532"
  11379. />
  11380. <productGroupable type="0"
  11381. />
  11382. </product>
  11383. <product id="HD50S"
  11384. name="Boom! Audio N01 10R"
  11385. series="50"
  11386. latestVersion="1.1.3"
  11387. show = "0" >
  11388. <productMenu id="protocol"
  11389. type="0">
  11390. </productMenu>
  11391. <productMenu id="sip"
  11392. type="1" >
  11393. </productMenu>
  11394. <productMenu id="bluetoothIntercom"
  11395. type="1" >
  11396. </productMenu>
  11397. <productMenu id="phone"
  11398. type="2" >
  11399. </productMenu>
  11400. <productMenu id="fmradio"
  11401. type="3" >
  11402. </productMenu>
  11403. <productMenu id="deviceSetting"
  11404. type="1"
  11405. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11406. </productMenu>
  11407. <productMenu id="quickGuide"
  11408. type="1"
  11409. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11410. size="766KB" >
  11411. </productMenu>
  11412. <productMenu id="userGuide"
  11413. type="1"
  11414. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11415. size="1.45MB" >
  11416. </productMenu>
  11417. <productID id="5522"
  11418. />
  11419. <productGroupable type="0"
  11420. />
  11421. </product>
  11422. <product id="HD50S"
  11423. name="OUTRUSH-R N03"
  11424. series="50"
  11425. latestVersion="1.2.1"
  11426. show = "-1" >
  11427. <productMenu id="protocol"
  11428. type="0">
  11429. </productMenu>
  11430. <productMenu id="sip"
  11431. type="1" >
  11432. </productMenu>
  11433. <productMenu id="bluetoothIntercom"
  11434. type="1" >
  11435. </productMenu>
  11436. <productMenu id="phone"
  11437. type="2" >
  11438. </productMenu>
  11439. <productMenu id="fmradio"
  11440. type="3" >
  11441. </productMenu>
  11442. <productMenu id="deviceSetting"
  11443. type="1"
  11444. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11445. </productMenu>
  11446. <productMenu id="userGuide"
  11447. type="1"
  11448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11449. size="660KB" >
  11450. </productMenu>
  11451. <productID id="5434"
  11452. />
  11453. <productGroupable type="0"
  11454. />
  11455. </product>
  11456. <product id="HD50S"
  11457. name="OUTRUSH-R N03"
  11458. series="50"
  11459. latestVersion="2.0"
  11460. show = "0" >
  11461. <productMenu id="protocol"
  11462. type="3" >
  11463. </productMenu>
  11464. <productMenu id="sip"
  11465. type="1" >
  11466. </productMenu>
  11467. <productMenu id="bluetoothIntercom"
  11468. type="1" >
  11469. </productMenu>
  11470. <productMenu id="phone"
  11471. type="1" >
  11472. </productMenu>
  11473. <productMenu id="fmradio"
  11474. type="1" >
  11475. </productMenu>
  11476. <productMenu id="deviceSetting"
  11477. type="1"
  11478. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11479. </productMenu>
  11480. <productMenu id="userGuide"
  11481. type="1"
  11482. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11483. size="1.14MB" >
  11484. </productMenu>
  11485. <productID id="5441"
  11486. />
  11487. <productGroupable type="0"
  11488. />
  11489. </product>
  11490. <product id="5R"
  11491. name="5R"
  11492. series="5"
  11493. latestVersion="1.0.1"
  11494. show = "1" >
  11495. <productMenu id="protocol"
  11496. type="3" >
  11497. </productMenu>
  11498. <productMenu id="sip"
  11499. type="1" >
  11500. </productMenu>
  11501. <productMenu id="bluetoothIntercom"
  11502. type="1" >
  11503. </productMenu>
  11504. <productMenu id="phone"
  11505. type="1" >
  11506. </productMenu>
  11507. <productMenu id="fmradio"
  11508. type="1" >
  11509. </productMenu>
  11510. <productMenu id="deviceSetting"
  11511. type="1"
  11512. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11513. </productMenu>
  11514. <productMenu id="quickGuide"
  11515. type="0"
  11516. url=""
  11517. size="934KB" >
  11518. </productMenu>
  11519. <productMenu id="userGuide"
  11520. type="1"
  11521. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11522. size="1.14MB" >
  11523. </productMenu>
  11524. <productMenu id="connectGuide"
  11525. type="1"
  11526. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11527. size="1.12MB" >
  11528. </productMenu>
  11529. <productID id="5591"
  11530. />
  11531. <productGroupable type="0"
  11532. />
  11533. </product>
  11534. <product id="5R"
  11535. name="5R LITE"
  11536. series="5"
  11537. latestVersion="1.0.1"
  11538. show = "1" >
  11539. <productMenu id="protocol"
  11540. type="3" >
  11541. </productMenu>
  11542. <productMenu id="sip"
  11543. type="1" >
  11544. </productMenu>
  11545. <productMenu id="bluetoothIntercom"
  11546. type="1" >
  11547. </productMenu>
  11548. <productMenu id="phone"
  11549. type="1" >
  11550. </productMenu>
  11551. <productMenu id="fmradio"
  11552. type="1" >
  11553. </productMenu>
  11554. <productMenu id="deviceSetting"
  11555. type="1"
  11556. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11557. </productMenu>
  11558. <productMenu id="quickGuide"
  11559. type="0"
  11560. url=""
  11561. size="934KB" >
  11562. </productMenu>
  11563. <productMenu id="userGuide"
  11564. type="1"
  11565. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11566. size="1.14MB" >
  11567. </productMenu>
  11568. <productMenu id="connectGuide"
  11569. type="1"
  11570. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11571. size="1.12MB" >
  11572. </productMenu>
  11573. <productID id="5592"
  11574. />
  11575. <productGroupable type="0"
  11576. />
  11577. </product>
  11578. <product id="50RLE"
  11579. name="50R LE"
  11580. series="50"
  11581. latestVersion="1.1"
  11582. show = "0" >
  11583. <productMenu id="protocol"
  11584. type="2" >
  11585. </productMenu>
  11586. <productMenu id="alexa"
  11587. type="0" >
  11588. </productMenu>
  11589. <productMenu id="sip"
  11590. type="1" >
  11591. </productMenu>
  11592. <productMenu id="meshIntercom"
  11593. type="30" >
  11594. </productMenu>
  11595. <productMenu id="meshIntercom+"
  11596. type="3"
  11597. url="2" >
  11598. <productMenuType version="1.0.9"
  11599. type="2"
  11600. />
  11601. </productMenu>
  11602. <productMenu id="waveIntercom"
  11603. type="1" >
  11604. <productMenuType version="1.0.9"
  11605. type="0"
  11606. />
  11607. </productMenu>
  11608. <productMenu id="bluetoothIntercom"
  11609. type="1" >
  11610. </productMenu>
  11611. <productMenu id="phone"
  11612. type="1" >
  11613. </productMenu>
  11614. <productMenu id="music"
  11615. type="1" >
  11616. </productMenu>
  11617. <productMenu id="fmradio"
  11618. type="0" >
  11619. </productMenu>
  11620. <productMenu id="deviceSetting"
  11621. type="1"
  11622. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11623. <productMenuURL version="1.0.9"
  11624. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11625. />
  11626. </productMenu>
  11627. <productMenu id="quickGuide"
  11628. type="0"
  11629. url=""
  11630. size="344KB" >
  11631. </productMenu>
  11632. <productMenu id="userGuide"
  11633. type="0"
  11634. url=""
  11635. size="3.41MB" >
  11636. </productMenu>
  11637. <productMenu id="volume"
  11638. type="11" >
  11639. </productMenu>
  11640. <productMenu id="battery"
  11641. type="1" >
  11642. </productMenu>
  11643. <productID id="3223"
  11644. />
  11645. <productGroupable type="0"
  11646. />
  11647. </product>
  11648. <product id="5RLOUIS"
  11649. name="5R LOUIS EDITION"
  11650. series="5"
  11651. latestVersion="1.0"
  11652. show = "-1" >
  11653. <productMenu id="protocol"
  11654. type="3" >
  11655. </productMenu>
  11656. <productMenu id="sip"
  11657. type="1" >
  11658. </productMenu>
  11659. <productMenu id="bluetoothIntercom"
  11660. type="1" >
  11661. </productMenu>
  11662. <productMenu id="phone"
  11663. type="1" >
  11664. </productMenu>
  11665. <productMenu id="fmradio"
  11666. type="1" >
  11667. </productMenu>
  11668. <productMenu id="deviceSetting"
  11669. type="1"
  11670. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11671. </productMenu>
  11672. <productMenu id="quickGuide"
  11673. type="0"
  11674. url=""
  11675. size="934KB" >
  11676. </productMenu>
  11677. <productMenu id="userGuide"
  11678. type="0"
  11679. url=""
  11680. size="1.14MB" >
  11681. </productMenu>
  11682. <productID id="5597"
  11683. />
  11684. <productGroupable type="0"
  11685. />
  11686. </product>
  11687. <product id="5S"
  11688. name="Ridekont 5S"
  11689. series="5"
  11690. latestVersion="2.3"
  11691. show = "-1" >
  11692. <productMenu id="protocol"
  11693. type="3" >
  11694. </productMenu>
  11695. <productMenu id="sip"
  11696. type="1" >
  11697. </productMenu>
  11698. <productMenu id="bluetoothIntercom"
  11699. type="1" >
  11700. </productMenu>
  11701. <productMenu id="phone"
  11702. type="1" >
  11703. </productMenu>
  11704. <productMenu id="fmradio"
  11705. type="0" >
  11706. </productMenu>
  11707. <productMenu id="deviceSetting"
  11708. type="1"
  11709. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11710. </productMenu>
  11711. <productMenu id="quickGuide"
  11712. type="0"
  11713. url=""
  11714. size="934KB" >
  11715. </productMenu>
  11716. <productMenu id="userGuide"
  11717. type="1"
  11718. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11719. size="1.14MB" >
  11720. </productMenu>
  11721. <productID id="5589"
  11722. />
  11723. <productGroupable type="0"
  11724. />
  11725. </product>
  11726. <product id="5R"
  11727. name="Ridekont 5R"
  11728. series="5"
  11729. latestVersion="1.0"
  11730. show = "0" >
  11731. <productMenu id="protocol"
  11732. type="3" >
  11733. </productMenu>
  11734. <productMenu id="sip"
  11735. type="1" >
  11736. </productMenu>
  11737. <productMenu id="bluetoothIntercom"
  11738. type="1" >
  11739. </productMenu>
  11740. <productMenu id="phone"
  11741. type="1" >
  11742. </productMenu>
  11743. <productMenu id="fmradio"
  11744. type="1" >
  11745. </productMenu>
  11746. <productMenu id="deviceSetting"
  11747. type="1"
  11748. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11749. </productMenu>
  11750. <productMenu id="quickGuide"
  11751. type="1"
  11752. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  11753. size="934KB" >
  11754. </productMenu>
  11755. <productMenu id="userGuide"
  11756. type="1"
  11757. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  11758. size="1.14MB" >
  11759. </productMenu>
  11760. <productID id="5593"
  11761. />
  11762. <productGroupable type="0"
  11763. />
  11764. </product>
  11765. <product id="5R"
  11766. name="Ridekont 5R LITE"
  11767. series="5"
  11768. latestVersion="1.0"
  11769. show = "0" >
  11770. <productMenu id="protocol"
  11771. type="3" >
  11772. </productMenu>
  11773. <productMenu id="sip"
  11774. type="1" >
  11775. </productMenu>
  11776. <productMenu id="bluetoothIntercom"
  11777. type="1" >
  11778. </productMenu>
  11779. <productMenu id="phone"
  11780. type="1" >
  11781. </productMenu>
  11782. <productMenu id="fmradio"
  11783. type="1" >
  11784. </productMenu>
  11785. <productMenu id="deviceSetting"
  11786. type="1"
  11787. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11788. </productMenu>
  11789. <productMenu id="quickGuide"
  11790. type="0"
  11791. url=""
  11792. size="934KB" >
  11793. </productMenu>
  11794. <productMenu id="userGuide"
  11795. type="1"
  11796. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11797. size="1.14MB" >
  11798. </productMenu>
  11799. <productID id="5594"
  11800. />
  11801. <productGroupable type="0"
  11802. />
  11803. </product>
  11804. <product id="SA30"
  11805. name="SA30"
  11806. series="SA"
  11807. latestVersion="1.0"
  11808. latestVersionVoicePrompt="0.14"
  11809. show = "-1" >
  11810. <productMenu id="protocol"
  11811. type="2" >
  11812. </productMenu>
  11813. <productMenu id="ota"
  11814. type="2" >
  11815. <otaPackages>
  11816. <package
  11817. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0-build1.img"
  11818. size="3144148"
  11819. />
  11820. </otaPackages>
  11821. </productMenu>
  11822. <productMenu id="meshIntercom"
  11823. type="30" >
  11824. </productMenu>
  11825. <productMenu id="meshIntercom+"
  11826. type="3"
  11827. url="2" >
  11828. </productMenu>
  11829. <productMenu id="phone"
  11830. type="1" >
  11831. </productMenu>
  11832. <productMenu id="music"
  11833. type="1" >
  11834. </productMenu>
  11835. <productMenu id="musicSharing"
  11836. type="0" >
  11837. </productMenu>
  11838. <productMenu id="deviceSetting"
  11839. type="1"
  11840. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  11841. </productMenu>
  11842. <productMenu id="quickGuide"
  11843. type="0"
  11844. url=""
  11845. size="1.12MB" >
  11846. </productMenu>
  11847. <productMenu id="userGuide"
  11848. type="1"
  11849. url=""
  11850. size="2.0MB" >
  11851. </productMenu>
  11852. <productMenu id="videoGuide"
  11853. type="0"
  11854. url=""
  11855. size="3.41MB" >
  11856. </productMenu>
  11857. <productMenu id="volume"
  11858. type="12" >
  11859. </productMenu>
  11860. <productMenu id="battery"
  11861. type="1" >
  11862. </productMenu>
  11863. <productID id="6852"
  11864. />
  11865. <productGroupable type="0"
  11866. />
  11867. </product>
  11868. <product id="I30"
  11869. name="I30"
  11870. series="I"
  11871. latestVersion="1.0"
  11872. latestVersionVoicePrompt="0.1"
  11873. show = "-1" >
  11874. <productMenu id="protocol"
  11875. type="2" >
  11876. </productMenu>
  11877. <productMenu id="ota"
  11878. type="2" >
  11879. <otaPackages>
  11880. <package
  11881. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0-build0.img"
  11882. size="3144148"
  11883. />
  11884. </otaPackages>
  11885. </productMenu>
  11886. <productMenu id="meshIntercom"
  11887. type="30" >
  11888. </productMenu>
  11889. <productMenu id="meshIntercom+"
  11890. type="3"
  11891. url="2" >
  11892. </productMenu>
  11893. <productMenu id="phone"
  11894. type="1" >
  11895. </productMenu>
  11896. <productMenu id="music"
  11897. type="1" >
  11898. </productMenu>
  11899. <productMenu id="musicSharing"
  11900. type="0" >
  11901. </productMenu>
  11902. <productMenu id="deviceSetting"
  11903. type="1"
  11904. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  11905. </productMenu>
  11906. <productMenu id="quickGuide"
  11907. type="0"
  11908. url=""
  11909. size="1.12MB" >
  11910. </productMenu>
  11911. <productMenu id="userGuide"
  11912. type="1"
  11913. url=""
  11914. size="2.10MB" >
  11915. </productMenu>
  11916. <productMenu id="videoGuide"
  11917. type="0"
  11918. url=""
  11919. size="3.11MB" >
  11920. </productMenu>
  11921. <productMenu id="volume"
  11922. type="12" >
  11923. </productMenu>
  11924. <productMenu id="battery"
  11925. type="1" >
  11926. </productMenu>
  11927. <productID id="6853"
  11928. />
  11929. <productGroupable type="0"
  11930. />
  11931. </product>
  11932. <product id="C30"
  11933. name="SENA C30"
  11934. series="C"
  11935. latestVersion="1.2.1"
  11936. latestVersionVoicePrompt="0.13"
  11937. show = "1" >
  11938. <productMenu id="protocol"
  11939. type="2" >
  11940. </productMenu>
  11941. <productMenu id="alexa"
  11942. type="0" >
  11943. </productMenu>
  11944. <productMenu id="ota"
  11945. type="2" >
  11946. <otaPackages>
  11947. <package
  11948. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.2.1-build0.img"
  11949. size="3144148"
  11950. />
  11951. </otaPackages>
  11952. </productMenu>
  11953. <productMenu id="wa"
  11954. type="0" >
  11955. </productMenu>
  11956. <productMenu id="meshIntercom"
  11957. type="30" >
  11958. </productMenu>
  11959. <productMenu id="meshIntercom+"
  11960. type="3"
  11961. url="2" >
  11962. <productMenuType version="1.0.9"
  11963. type="2"
  11964. />
  11965. </productMenu>
  11966. <productMenu id="waveIntercom"
  11967. type="1" >
  11968. <productMenuType version="1.1.9"
  11969. type="0"
  11970. />
  11971. </productMenu>
  11972. <productMenu id="phone"
  11973. type="1" >
  11974. </productMenu>
  11975. <productMenu id="music"
  11976. type="1" >
  11977. </productMenu>
  11978. <productMenu id="musicSharing"
  11979. type="0" >
  11980. </productMenu>
  11981. <productMenu id="deviceSetting"
  11982. type="1"
  11983. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml" >
  11984. <productMenuURL version="1.1.3"
  11985. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml"
  11986. />
  11987. <productMenuURL version="1.0.9"
  11988. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  11989. />
  11990. </productMenu>
  11991. <productMenu id="quickGuide"
  11992. type="1"
  11993. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  11994. size="1.12MB" >
  11995. </productMenu>
  11996. <productMenu id="userGuide"
  11997. type="0"
  11998. url=""
  11999. size="2.0MB" >
  12000. </productMenu>
  12001. <productMenu id="videoGuide"
  12002. type="0"
  12003. url=""
  12004. size="3.41MB" >
  12005. </productMenu>
  12006. <productMenu id="volume"
  12007. type="12" >
  12008. </productMenu>
  12009. <productMenu id="battery"
  12010. type="1" >
  12011. </productMenu>
  12012. <productID id="683A"
  12013. />
  12014. <productGroupable type="0"
  12015. />
  12016. </product>
  12017. <product id="C20"
  12018. name="C20"
  12019. series="C"
  12020. latestVersion="1.0"
  12021. show = "1" >
  12022. <productMenu id="protocol"
  12023. type="3" >
  12024. </productMenu>
  12025. <productMenu id="sip"
  12026. type="1" >
  12027. </productMenu>
  12028. <productMenu id="bluetoothIntercom"
  12029. type="1" >
  12030. </productMenu>
  12031. <productMenu id="phone"
  12032. type="1" >
  12033. </productMenu>
  12034. <productMenu id="deviceSetting"
  12035. type="1"
  12036. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  12037. </productMenu>
  12038. <productMenu id="quickGuide"
  12039. type="1"
  12040. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  12041. size="934KB" >
  12042. </productMenu>
  12043. <productMenu id="userGuide"
  12044. type="1"
  12045. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  12046. size="1.14MB" >
  12047. </productMenu>
  12048. <productID id="3701"
  12049. />
  12050. <productGroupable type="0"
  12051. />
  12052. </product>
  12053. <product id="C10"
  12054. name="C10"
  12055. series="C"
  12056. latestVersion="1.4.4"
  12057. show = "1" >
  12058. <productMenu id="protocol"
  12059. type="3" >
  12060. </productMenu>
  12061. <productMenu id="sip"
  12062. type="1" >
  12063. </productMenu>
  12064. <productMenu id="bluetoothIntercom"
  12065. type="1" >
  12066. </productMenu>
  12067. <productMenu id="phone"
  12068. type="1" >
  12069. </productMenu>
  12070. <productMenu id="fmradio"
  12071. type="0" >
  12072. </productMenu>
  12073. <productMenu id="deviceSetting"
  12074. type="1"
  12075. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12076. </productMenu>
  12077. <productMenu id="userGuide"
  12078. type="1"
  12079. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  12080. size="1.14MB" >
  12081. </productMenu>
  12082. <productID id="5595"
  12083. />
  12084. <productGroupable type="0"
  12085. />
  12086. </product>
  12087. <product id="J30"
  12088. name="J30"
  12089. series="J"
  12090. latestVersion="1.2.1"
  12091. latestVersionVoicePrompt="0.13"
  12092. show = "0" >
  12093. <productMenu id="protocol"
  12094. type="2" >
  12095. </productMenu>
  12096. <productMenu id="alexa"
  12097. type="0" >
  12098. </productMenu>
  12099. <productMenu id="ota"
  12100. type="2" >
  12101. <otaPackages>
  12102. <package
  12103. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  12104. size="3144148"
  12105. />
  12106. </otaPackages>
  12107. </productMenu>
  12108. <productMenu id="wa"
  12109. type="0" >
  12110. </productMenu>
  12111. <productMenu id="meshIntercom"
  12112. type="30" >
  12113. </productMenu>
  12114. <productMenu id="meshIntercom+"
  12115. type="3"
  12116. url="2" >
  12117. <productMenuType version="1.0.9"
  12118. type="2"
  12119. />
  12120. </productMenu>
  12121. <productMenu id="waveIntercom"
  12122. type="1" >
  12123. <productMenuType version="1.1.9"
  12124. type="0"
  12125. />
  12126. </productMenu>
  12127. <productMenu id="phone"
  12128. type="1" >
  12129. </productMenu>
  12130. <productMenu id="music"
  12131. type="1" >
  12132. </productMenu>
  12133. <productMenu id="musicSharing"
  12134. type="0" >
  12135. </productMenu>
  12136. <productMenu id="deviceSetting"
  12137. type="1"
  12138. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  12139. <productMenuURL version="1.0.9"
  12140. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  12141. />
  12142. </productMenu>
  12143. <productMenu id="quickGuide"
  12144. type="0"
  12145. url=""
  12146. size="1.12MB" >
  12147. </productMenu>
  12148. <productMenu id="userGuide"
  12149. type="1"
  12150. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  12151. size="2.0MB" >
  12152. </productMenu>
  12153. <productMenu id="videoGuide"
  12154. type="0"
  12155. url=""
  12156. size="3.41MB" >
  12157. </productMenu>
  12158. <productMenu id="volume"
  12159. type="12" >
  12160. </productMenu>
  12161. <productMenu id="battery"
  12162. type="1" >
  12163. </productMenu>
  12164. <productID id="6848"
  12165. />
  12166. <productGroupable type="0"
  12167. />
  12168. </product>
  12169. <product id="J10"
  12170. name="J10"
  12171. series="5"
  12172. latestVersion="1.1.4"
  12173. show = "0" >
  12174. <productMenu id="protocol"
  12175. type="3" >
  12176. </productMenu>
  12177. <productMenu id="sip"
  12178. type="1" >
  12179. </productMenu>
  12180. <productMenu id="bluetoothIntercom"
  12181. type="1" >
  12182. </productMenu>
  12183. <productMenu id="phone"
  12184. type="1" >
  12185. </productMenu>
  12186. <productMenu id="fmradio"
  12187. type="0" >
  12188. </productMenu>
  12189. <productMenu id="deviceSetting"
  12190. type="1"
  12191. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  12192. </productMenu>
  12193. <productMenu id="userGuide"
  12194. type="1"
  12195. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  12196. size="1.14MB" >
  12197. </productMenu>
  12198. <productID id="5598"
  12199. />
  12200. <productGroupable type="0"
  12201. />
  12202. </product>
  12203. <product id="B20"
  12204. name="B20"
  12205. series="B"
  12206. latestVersion="1.1.1"
  12207. latestVersionVoicePrompt="0.13"
  12208. show = "0" >
  12209. <productMenu id="protocol"
  12210. type="2" >
  12211. </productMenu>
  12212. <productMenu id="alexa"
  12213. type="0" >
  12214. </productMenu>
  12215. <productMenu id="ota"
  12216. type="2" >
  12217. <otaPackages>
  12218. <package
  12219. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  12220. size="3144148"
  12221. />
  12222. </otaPackages>
  12223. </productMenu>
  12224. <productMenu id="wa"
  12225. type="0" >
  12226. </productMenu>
  12227. <productMenu id="meshIntercom"
  12228. type="30" >
  12229. </productMenu>
  12230. <productMenu id="phone"
  12231. type="1" >
  12232. </productMenu>
  12233. <productMenu id="music"
  12234. type="1" >
  12235. </productMenu>
  12236. <productMenu id="musicSharing"
  12237. type="0" >
  12238. </productMenu>
  12239. <productMenu id="deviceSetting"
  12240. type="1"
  12241. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  12242. <productMenuURL version="1.0.9"
  12243. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  12244. />
  12245. </productMenu>
  12246. <productMenu id="quickGuide"
  12247. type="0"
  12248. url=""
  12249. size="1.12MB" >
  12250. </productMenu>
  12251. <productMenu id="userGuide"
  12252. type="1"
  12253. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  12254. size="2.0MB" >
  12255. </productMenu>
  12256. <productMenu id="videoGuide"
  12257. type="0"
  12258. url=""
  12259. size="3.41MB" >
  12260. </productMenu>
  12261. <productMenu id="volume"
  12262. type="12" >
  12263. </productMenu>
  12264. <productMenu id="battery"
  12265. type="1" >
  12266. </productMenu>
  12267. <productID id="6847"
  12268. />
  12269. <productGroupable type="0"
  12270. />
  12271. </product>
  12272. <product id="B10"
  12273. name="B10"
  12274. series="5"
  12275. latestVersion="1.2.4"
  12276. show = "0" >
  12277. <productMenu id="protocol"
  12278. type="3" >
  12279. </productMenu>
  12280. <productMenu id="sip"
  12281. type="1" >
  12282. </productMenu>
  12283. <productMenu id="bluetoothIntercom"
  12284. type="1" >
  12285. </productMenu>
  12286. <productMenu id="phone"
  12287. type="1" >
  12288. </productMenu>
  12289. <productMenu id="fmradio"
  12290. type="0" >
  12291. </productMenu>
  12292. <productMenu id="deviceSetting"
  12293. type="1"
  12294. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  12295. </productMenu>
  12296. <productMenu id="userGuide"
  12297. type="1"
  12298. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  12299. size="1.14MB" >
  12300. </productMenu>
  12301. <productID id="5596"
  12302. />
  12303. <productGroupable type="0"
  12304. />
  12305. </product>
  12306. <product id="E30"
  12307. name="E30"
  12308. series="E"
  12309. latestVersion="1.1.1"
  12310. latestVersionVoicePrompt="0.13"
  12311. show = "0" >
  12312. <productMenu id="protocol"
  12313. type="2" >
  12314. </productMenu>
  12315. <productMenu id="alexa"
  12316. type="0" >
  12317. </productMenu>
  12318. <productMenu id="ota"
  12319. type="2" >
  12320. <otaPackages>
  12321. <package
  12322. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  12323. size="3144148"
  12324. />
  12325. </otaPackages>
  12326. </productMenu>
  12327. <productMenu id="wa"
  12328. type="0" >
  12329. </productMenu>
  12330. <productMenu id="meshIntercom"
  12331. type="30" >
  12332. </productMenu>
  12333. <productMenu id="meshIntercom+"
  12334. type="3"
  12335. url="2" >
  12336. </productMenu>
  12337. <productMenu id="waveIntercom"
  12338. type="1" >
  12339. <productMenuType version="1.0.9"
  12340. type="0"
  12341. />
  12342. </productMenu>
  12343. <productMenu id="phone"
  12344. type="1" >
  12345. </productMenu>
  12346. <productMenu id="music"
  12347. type="1" >
  12348. </productMenu>
  12349. <productMenu id="musicSharing"
  12350. type="0" >
  12351. </productMenu>
  12352. <productMenu id="deviceSetting"
  12353. type="1"
  12354. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  12355. </productMenu>
  12356. <productMenu id="quickGuide"
  12357. type="0"
  12358. url=""
  12359. size="1.12MB" >
  12360. </productMenu>
  12361. <productMenu id="userGuide"
  12362. type="1"
  12363. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  12364. size="2.0MB" >
  12365. </productMenu>
  12366. <productMenu id="videoGuide"
  12367. type="0"
  12368. url=""
  12369. size="3.41MB" >
  12370. </productMenu>
  12371. <productMenu id="volume"
  12372. type="12" >
  12373. </productMenu>
  12374. <productMenu id="battery"
  12375. type="1" >
  12376. </productMenu>
  12377. <productID id="6846"
  12378. />
  12379. <productGroupable type="0"
  12380. />
  12381. </product>
  12382. <product id="ACSRAM"
  12383. name="ACS-RAM"
  12384. series="ACS"
  12385. latestVersion="1.0.5"
  12386. show = "1" >
  12387. <productMenu id="protocol"
  12388. type="3" >
  12389. </productMenu>
  12390. <productMenu id="sip"
  12391. type="1" >
  12392. </productMenu>
  12393. <productMenu id="bluetoothIntercom"
  12394. type="1" >
  12395. </productMenu>
  12396. <productMenu id="deviceSetting"
  12397. type="1"
  12398. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  12399. </productMenu>
  12400. <productMenu id="quickGuide"
  12401. type="1"
  12402. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  12403. size="344KB" >
  12404. </productMenu>
  12405. <productMenu id="userGuide"
  12406. type="1"
  12407. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12408. size="1.14MB" >
  12409. </productMenu>
  12410. <productMenu id="connectGuide"
  12411. type="1"
  12412. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12413. size="1.12MB" >
  12414. </productMenu>
  12415. <productID id="3400"
  12416. />
  12417. <productGroupable type="0"
  12418. />
  12419. </product>
  12420. <product id="ACS10"
  12421. name="ACS10"
  12422. series="ACS"
  12423. latestVersion="1.0.2"
  12424. show = "1" >
  12425. <productMenu id="protocol"
  12426. type="0">
  12427. </productMenu>
  12428. <productMenu id="sip"
  12429. type="1" >
  12430. </productMenu>
  12431. <productMenu id="bluetoothIntercom"
  12432. type="1" >
  12433. </productMenu>
  12434. <productMenu id="phone"
  12435. type="2" >
  12436. </productMenu>
  12437. <productMenu id="deviceSetting"
  12438. type="1"
  12439. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12440. </productMenu>
  12441. <productMenu id="quickGuide"
  12442. type="1"
  12443. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12444. size="970KB" >
  12445. </productMenu>
  12446. <productMenu id="userGuide"
  12447. type="1"
  12448. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12449. size="1.26MB" >
  12450. </productMenu>
  12451. <productMenu id="connectGuide"
  12452. type="1"
  12453. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12454. size="1.12MB" >
  12455. </productMenu>
  12456. <productID id="3300"
  12457. />
  12458. <productGroupable type="0"
  12459. />
  12460. </product>
  12461. <product id="DWO7ProMesh"
  12462. name="DWO 7 Pro Mesh"
  12463. series="50"
  12464. latestVersion="1.1"
  12465. latestVersionVoicePrompt="0.9"
  12466. show = "0" >
  12467. <productMenu id="protocol"
  12468. type="2" >
  12469. </productMenu>
  12470. <productMenu id="alexa"
  12471. type="0" >
  12472. </productMenu>
  12473. <productMenu id="ota"
  12474. type="2" >
  12475. <otaPackages>
  12476. <package
  12477. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12478. size="2945812"
  12479. />
  12480. </otaPackages>
  12481. </productMenu>
  12482. <productMenu id="wa"
  12483. type="0" >
  12484. </productMenu>
  12485. <productMenu id="meshIntercom"
  12486. type="20" >
  12487. </productMenu>
  12488. <productMenu id="meshIntercom+"
  12489. type="3"
  12490. url="2" >
  12491. <productMenuType version="1.0.9"
  12492. type="2"
  12493. />
  12494. <productMenuURL version="2.1.1"
  12495. url="0"
  12496. />
  12497. </productMenu>
  12498. <productMenu id="waveIntercom"
  12499. type="1" >
  12500. <productMenuType version="1.0.9"
  12501. type="0"
  12502. />
  12503. </productMenu>
  12504. <productMenu id="phone"
  12505. type="1" >
  12506. </productMenu>
  12507. <productMenu id="music"
  12508. type="1" >
  12509. </productMenu>
  12510. <productMenu id="fmradio"
  12511. type="1" >
  12512. </productMenu>
  12513. <productMenu id="musicSharing"
  12514. type="0" >
  12515. </productMenu>
  12516. <productMenu id="deviceSetting"
  12517. type="1"
  12518. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12519. <productMenuURL version="1.0.9"
  12520. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12521. />
  12522. </productMenu>
  12523. <productMenu id="quickGuide"
  12524. type="1"
  12525. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12526. size="1.12MB" >
  12527. </productMenu>
  12528. <productMenu id="userGuide"
  12529. type="1"
  12530. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12531. size="2.0MB" >
  12532. </productMenu>
  12533. <productMenu id="volume"
  12534. type="12" >
  12535. </productMenu>
  12536. <productMenu id="battery"
  12537. type="1" >
  12538. </productMenu>
  12539. <productID id="6806"
  12540. />
  12541. <productGroupable type="0"
  12542. />
  12543. </product>
  12544. <product id="ERA1X"
  12545. name="ERA 1 X"
  12546. series="UCOM"
  12547. latestVersion="0.2.1"
  12548. latestVersionMesh="0.19"
  12549. latestVersionVoicePrompt="1.2"
  12550. show = "-1" >
  12551. <productMenu id="protocol"
  12552. type="2" >
  12553. </productMenu>
  12554. <productMenu id="ota"
  12555. type="2" >
  12556. <otaLanguages>
  12557. <otaLanguage
  12558. id="0"
  12559. name="English"
  12560. package="0"
  12561. />
  12562. <otaLanguage
  12563. id="0"
  12564. name="French"
  12565. package="1"
  12566. />
  12567. <otaLanguage
  12568. id="0"
  12569. name="Spanish"
  12570. package="2"
  12571. />
  12572. <otaLanguage
  12573. id="0"
  12574. name="Italian"
  12575. package="3"
  12576. />
  12577. <otaLanguage
  12578. id="0"
  12579. name="German"
  12580. package="4"
  12581. />
  12582. <otaLanguage
  12583. id="0"
  12584. name="Dutch"
  12585. package="5"
  12586. />
  12587. <otaLanguage
  12588. id="0"
  12589. name="Russian"
  12590. package="6"
  12591. />
  12592. <otaLanguage
  12593. id="0"
  12594. name="Chinese"
  12595. package="7"
  12596. />
  12597. <otaLanguage
  12598. id="0"
  12599. name="Korean"
  12600. package="8"
  12601. />
  12602. <otaLanguage
  12603. id="0"
  12604. name="Japanese"
  12605. package="9"
  12606. />
  12607. <otaLanguage
  12608. id="0"
  12609. name="Finnish"
  12610. package="10"
  12611. />
  12612. <otaLanguage
  12613. id="0"
  12614. name="Polish"
  12615. package="11"
  12616. />
  12617. <otaLanguage
  12618. id="0"
  12619. name="Czech"
  12620. package="12"
  12621. />
  12622. <otaLanguage
  12623. id="0"
  12624. name="Danish"
  12625. package="13"
  12626. />
  12627. <otaLanguage
  12628. id="0"
  12629. name="Norwegian"
  12630. package="14"
  12631. />
  12632. <otaLanguage
  12633. id="0"
  12634. name="Swedish"
  12635. package="15"
  12636. />
  12637. <otaLanguage
  12638. id="0"
  12639. name="Turkish"
  12640. package="16"
  12641. />
  12642. <otaLanguage
  12643. id="0"
  12644. name="Hungarian"
  12645. package="17"
  12646. />
  12647. <otaLanguage
  12648. id="0"
  12649. name="Portuguese"
  12650. package="18"
  12651. />
  12652. <otaLanguage
  12653. id="0"
  12654. name="Hebrew"
  12655. package="19"
  12656. />
  12657. <otaLanguage
  12658. id="0"
  12659. name="Greek"
  12660. package="20"
  12661. />
  12662. </otaLanguages>
  12663. <otaPackages>
  12664. <package
  12665. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  12666. size="5183988"
  12667. />
  12668. <package
  12669. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  12670. size="5183988"
  12671. />
  12672. <package
  12673. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  12674. size="5183988"
  12675. />
  12676. <package
  12677. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  12678. size="5183988"
  12679. />
  12680. <package
  12681. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  12682. size="5183988"
  12683. />
  12684. <package
  12685. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  12686. size="5183988"
  12687. />
  12688. <package
  12689. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  12690. size="5183988"
  12691. />
  12692. <package
  12693. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  12694. size="5183988"
  12695. />
  12696. <package
  12697. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  12698. size="5183988"
  12699. />
  12700. <package
  12701. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  12702. size="5183988"
  12703. />
  12704. <package
  12705. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  12706. size="5183988"
  12707. />
  12708. <package
  12709. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  12710. size="5183988"
  12711. />
  12712. <package
  12713. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  12714. size="5183988"
  12715. />
  12716. <package
  12717. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  12718. size="5183988"
  12719. />
  12720. <package
  12721. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  12722. size="5183988"
  12723. />
  12724. <package
  12725. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  12726. size="5183988"
  12727. />
  12728. <package
  12729. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  12730. size="5183988"
  12731. />
  12732. <package
  12733. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  12734. size="5183988"
  12735. />
  12736. <package
  12737. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  12738. size="5183988"
  12739. />
  12740. <package
  12741. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  12742. size="5183988"
  12743. />
  12744. <package
  12745. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  12746. size="5183988"
  12747. />
  12748. </otaPackages>
  12749. </productMenu>
  12750. <productMenu id="wa"
  12751. type="0" >
  12752. </productMenu>
  12753. <productMenu id="sip"
  12754. type="1" >
  12755. </productMenu>
  12756. <productMenu id="led"
  12757. type="0" >
  12758. </productMenu>
  12759. <productMenu id="illusion"
  12760. type="1" >
  12761. </productMenu>
  12762. <productMenu id="meshIntercom"
  12763. type="30" >
  12764. </productMenu>
  12765. <productMenu id="meshIntercom+"
  12766. type="3"
  12767. url="2" >
  12768. </productMenu>
  12769. <productMenu id="waveIntercom"
  12770. type="0" >
  12771. </productMenu>
  12772. <productMenu id="bluetoothIntercom"
  12773. type="1" >
  12774. </productMenu>
  12775. <productMenu id="bluetoothIntercomGrouping"
  12776. type="0" >
  12777. </productMenu>
  12778. <productMenu id="fmradio"
  12779. type="1"
  12780. url="1" >
  12781. </productMenu>
  12782. <productMenu id="phone"
  12783. type="1" >
  12784. </productMenu>
  12785. <productMenu id="music"
  12786. type="1" >
  12787. </productMenu>
  12788. <productMenu id="musicSharing"
  12789. type="0" >
  12790. </productMenu>
  12791. <productMenu id="deviceSetting"
  12792. type="1"
  12793. url="https://api.sena.com/support/CellularlineNeoApp/ERA1X/NS_ERA1X.xml" >
  12794. </productMenu>
  12795. <productMenu id="quickGuide"
  12796. type="0"
  12797. url=""
  12798. size="1.12MB" >
  12799. </productMenu>
  12800. <productMenu id="userGuide"
  12801. type="1"
  12802. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  12803. size="2.0MB" >
  12804. </productMenu>
  12805. <productMenu id="videoGuide"
  12806. type="0"
  12807. url=""
  12808. size="3.41MB" >
  12809. </productMenu>
  12810. <productMenu id="volume"
  12811. type="16" >
  12812. </productMenu>
  12813. <productMenu id="soundMode"
  12814. type="1" >
  12815. </productMenu>
  12816. <productMenu id="battery"
  12817. type="1" >
  12818. </productMenu>
  12819. <productID id="6A83"
  12820. />
  12821. <productGroupable type="0"
  12822. />
  12823. </product>
  12824. <product id="MeshStation"
  12825. name="Mesh Station"
  12826. series="50"
  12827. latestVersion="0.9"
  12828. show = "-1" >
  12829. <productMenu id="protocol"
  12830. type="2" >
  12831. </productMenu>
  12832. <productMenu id="meshIntercom"
  12833. type="20"
  12834. url="99" >
  12835. </productMenu>
  12836. <productID id="3161"
  12837. />
  12838. <productGroupable type="0"
  12839. />
  12840. </product>
  12841. </products>
  12842. </sna>