snm.xml 437 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437
  1. <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  2. <sna xmlns="http://www.sena.com/sna" date="20260024" appVer="2.14" iosAppVer="2.14" central="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="0.1"
  324. latestVersionMesh="0.19"
  325. latestVersionVoicePrompt="1.2"
  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.6"
  523. latestVersionMesh="1.2"
  524. latestVersionVoicePrompt="1.2"
  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.6-build0.img"
  596. size="5183988"
  597. />
  598. <package
  599. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-fr-FR.img"
  600. size="5183988"
  601. />
  602. <package
  603. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-es-ES.img"
  604. size="5183988"
  605. />
  606. <package
  607. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-it-IT.img"
  608. size="5183988"
  609. />
  610. <package
  611. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-de-DE.img"
  612. size="5183988"
  613. />
  614. <package
  615. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-nl-NL.img"
  616. size="5183988"
  617. />
  618. <package
  619. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-ru-RU.img"
  620. size="5183988"
  621. />
  622. <package
  623. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-cmn-CN.img"
  624. size="5183988"
  625. />
  626. <package
  627. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-ko-KR.img"
  628. size="5183988"
  629. />
  630. <package
  631. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-ja-JP.img"
  632. size="5183988"
  633. />
  634. <package
  635. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-build0-fi-FI.img"
  636. size="5183988"
  637. />
  638. <package
  639. url="https://api.sena.com/support/OTA/60S/60S_REV2-v1.2.6-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_09.xml" >
  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.6"
  735. latestVersionMesh="1.2"
  736. latestVersionVoicePrompt="1.2"
  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.6-build0.img"
  808. size="5183988"
  809. />
  810. <package
  811. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-fr-FR.img"
  812. size="5183988"
  813. />
  814. <package
  815. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-es-ES.img"
  816. size="5183988"
  817. />
  818. <package
  819. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-it-IT.img"
  820. size="5183988"
  821. />
  822. <package
  823. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-de-DE.img"
  824. size="5183988"
  825. />
  826. <package
  827. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-nl-NL.img"
  828. size="5183988"
  829. />
  830. <package
  831. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-ru-RU.img"
  832. size="5183988"
  833. />
  834. <package
  835. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-cmn-CN.img"
  836. size="5183988"
  837. />
  838. <package
  839. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-ko-KR.img"
  840. size="5183988"
  841. />
  842. <package
  843. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-ja-JP.img"
  844. size="5183988"
  845. />
  846. <package
  847. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-build0-fi-FI.img"
  848. size="5183988"
  849. />
  850. <package
  851. url="https://api.sena.com/support/OTA/60S/60S-v1.2.6-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_09.xml" >
  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.2"
  974. latestVersionMesh="1.2"
  975. latestVersionVoicePrompt="1.2"
  976. show = "-1" >
  977. <productMenu id="protocol"
  978. type="2" >
  979. </productMenu>
  980. <productMenu id="ota"
  981. type="0" >
  982. <otaLanguages>
  983. <otaLanguage
  984. id="0"
  985. name="English"
  986. package="0"
  987. />
  988. <otaLanguage
  989. id="0"
  990. name="Korean"
  991. package="1"
  992. />
  993. </otaLanguages>
  994. <otaPackages>
  995. <package
  996. url="https://api.sena.com/support/test/60R-v0.7-build0_en_US.img"
  997. size="5183988"
  998. />
  999. <package
  1000. url="https://api.sena.com/support/test/60R-v0.6.4-build0_kr_KR.img"
  1001. size="5183988"
  1002. />
  1003. </otaPackages>
  1004. </productMenu>
  1005. <productMenu id="wa"
  1006. type="0" >
  1007. </productMenu>
  1008. <productMenu id="sip"
  1009. type="1" >
  1010. </productMenu>
  1011. <productMenu id="led"
  1012. type="1" >
  1013. </productMenu>
  1014. <productMenu id="illusion"
  1015. type="1" >
  1016. </productMenu>
  1017. <productMenu id="meshIntercom"
  1018. type="30" >
  1019. </productMenu>
  1020. <productMenu id="bluetoothIntercom"
  1021. type="1" >
  1022. </productMenu>
  1023. <productMenu id="fmradio"
  1024. type="1"
  1025. url="1" >
  1026. </productMenu>
  1027. <productMenu id="phone"
  1028. type="1" >
  1029. </productMenu>
  1030. <productMenu id="music"
  1031. type="1" >
  1032. </productMenu>
  1033. <productMenu id="musicSharing"
  1034. type="0" >
  1035. </productMenu>
  1036. <productMenu id="deviceSetting"
  1037. type="1"
  1038. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  1039. </productMenu>
  1040. <productMenu id="quickGuide"
  1041. type="0"
  1042. url=""
  1043. size="1.12MB" >
  1044. </productMenu>
  1045. <productMenu id="userGuide"
  1046. type="0"
  1047. url=""
  1048. size="2.0MB" >
  1049. </productMenu>
  1050. <productMenu id="videoGuide"
  1051. type="0"
  1052. url=""
  1053. size="3.41MB" >
  1054. </productMenu>
  1055. <productMenu id="volume"
  1056. type="13" >
  1057. </productMenu>
  1058. <productMenu id="battery"
  1059. type="1" >
  1060. </productMenu>
  1061. <productID id="6A03"
  1062. />
  1063. <productGroupable type="0"
  1064. />
  1065. </product>
  1066. <product id="R35"
  1067. name="R35"
  1068. series="R"
  1069. latestVersion="1.0.3"
  1070. latestVersionVoicePrompt="1.2"
  1071. show = "-1" >
  1072. <productMenu id="protocol"
  1073. type="2" >
  1074. </productMenu>
  1075. <productMenu id="ota"
  1076. type="2" >
  1077. <otaLanguages>
  1078. <otaLanguage
  1079. id="0"
  1080. name="English"
  1081. package="0"
  1082. />
  1083. <otaLanguage
  1084. id="0"
  1085. name="Chinese"
  1086. package="1"
  1087. />
  1088. <otaLanguage
  1089. id="0"
  1090. name="Chinese Singapore"
  1091. package="2"
  1092. />
  1093. <otaLanguage
  1094. id="0"
  1095. name="Filipino"
  1096. package="3"
  1097. />
  1098. <otaLanguage
  1099. id="0"
  1100. name="Hebrew"
  1101. package="4"
  1102. />
  1103. <otaLanguage
  1104. id="0"
  1105. name="Hindi"
  1106. package="5"
  1107. />
  1108. <otaLanguage
  1109. id="0"
  1110. name="Indonesian"
  1111. package="6"
  1112. />
  1113. <otaLanguage
  1114. id="0"
  1115. name="Japanese"
  1116. package="7"
  1117. />
  1118. <otaLanguage
  1119. id="0"
  1120. name="Korean"
  1121. package="8"
  1122. />
  1123. <otaLanguage
  1124. id="0"
  1125. name="Malay"
  1126. package="9"
  1127. />
  1128. <otaLanguage
  1129. id="0"
  1130. name="Modern Standard Arabic"
  1131. package="10"
  1132. />
  1133. <otaLanguage
  1134. id="0"
  1135. name="Taiwanese"
  1136. package="11"
  1137. />
  1138. <otaLanguage
  1139. id="0"
  1140. name="Tamil"
  1141. package="12"
  1142. />
  1143. <otaLanguage
  1144. id="0"
  1145. name="Thai"
  1146. package="13"
  1147. />
  1148. <otaLanguage
  1149. id="0"
  1150. name="东北话"
  1151. package="14"
  1152. />
  1153. <otaLanguage
  1154. id="0"
  1155. name="广东话"
  1156. package="15"
  1157. />
  1158. <otaLanguage
  1159. id="0"
  1160. name="江浙沪"
  1161. package="16"
  1162. />
  1163. <otaLanguage
  1164. id="0"
  1165. name="四川话"
  1166. package="17"
  1167. />
  1168. <otaLanguage
  1169. id="0"
  1170. name="陕西话"
  1171. package="18"
  1172. />
  1173. </otaLanguages>
  1174. <otaPackages>
  1175. <package
  1176. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0.img"
  1177. size="5183988"
  1178. />
  1179. <package
  1180. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-cmn-CN.img"
  1181. size="5183988"
  1182. />
  1183. <package
  1184. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-cmn-SG.img"
  1185. size="5183988"
  1186. />
  1187. <package
  1188. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-tl-PH.img"
  1189. size="5183988"
  1190. />
  1191. <package
  1192. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-he-IL.img"
  1193. size="5183988"
  1194. />
  1195. <package
  1196. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-hi-IN.img"
  1197. size="5183988"
  1198. />
  1199. <package
  1200. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-id-ID.img"
  1201. size="5183988"
  1202. />
  1203. <package
  1204. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-ja-JP.img"
  1205. size="5183988"
  1206. />
  1207. <package
  1208. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-ko-KR.img"
  1209. size="5183988"
  1210. />
  1211. <package
  1212. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-ms-MY.img"
  1213. size="5183988"
  1214. />
  1215. <package
  1216. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-ar-XA.img"
  1217. size="5183988"
  1218. />
  1219. <package
  1220. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-nan-TW.img"
  1221. size="5183988"
  1222. />
  1223. <package
  1224. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-ta-IN.img"
  1225. size="5183988"
  1226. />
  1227. <package
  1228. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-th-TH.img"
  1229. size="5183988"
  1230. />
  1231. <package
  1232. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-zdb-CN.img"
  1233. size="5183988"
  1234. />
  1235. <package
  1236. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-yue-CN.img"
  1237. size="5183988"
  1238. />
  1239. <package
  1240. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-wuu-CN.img"
  1241. size="5183988"
  1242. />
  1243. <package
  1244. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-zsc-CN.img"
  1245. size="5183988"
  1246. />
  1247. <package
  1248. url="https://api.sena.com/support/OTA/Motorcycles/R35/R35-v1.0.3-build0-zsn-CN.img"
  1249. size="5183988"
  1250. />
  1251. </otaPackages>
  1252. </productMenu>
  1253. <productMenu id="sip"
  1254. type="1" >
  1255. </productMenu>
  1256. <productMenu id="illusion"
  1257. type="1" >
  1258. </productMenu>
  1259. <productMenu id="meshIntercom"
  1260. type="30" >
  1261. </productMenu>
  1262. <productMenu id="meshIntercom+"
  1263. type="3"
  1264. url="2" >
  1265. </productMenu>
  1266. <productMenu id="waveIntercom"
  1267. type="1" >
  1268. </productMenu>
  1269. <productMenu id="phone"
  1270. type="1" >
  1271. </productMenu>
  1272. <productMenu id="music"
  1273. type="1" >
  1274. </productMenu>
  1275. <productMenu id="musicSharing"
  1276. type="0" >
  1277. </productMenu>
  1278. <productMenu id="deviceSetting"
  1279. type="1"
  1280. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35_01.xml" >
  1281. <productMenuURL version="1.0.3"
  1282. url="https://api.sena.com/support/SenaNeoApp/R35/NS_R35.xml"
  1283. />
  1284. </productMenu>
  1285. <productMenu id="quickGuide"
  1286. type="0"
  1287. url=""
  1288. size="1.12MB" >
  1289. </productMenu>
  1290. <productMenu id="userGuide"
  1291. type="1"
  1292. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_R35_1.0.0_en_251229.pdf"
  1293. size="2.0MB" >
  1294. </productMenu>
  1295. <productMenu id="videoGuide"
  1296. type="0"
  1297. url=""
  1298. size="3.41MB" >
  1299. </productMenu>
  1300. <productMenu id="connectGuide"
  1301. type="0"
  1302. url=""
  1303. size="1.12MB" >
  1304. </productMenu>
  1305. <productMenu id="volume"
  1306. type="16" >
  1307. </productMenu>
  1308. <productMenu id="volume+"
  1309. type="2"
  1310. url="0x6004" >
  1311. </productMenu>
  1312. <productMenu id="soundMode"
  1313. type="0" >
  1314. </productMenu>
  1315. <productMenu id="battery"
  1316. type="1" >
  1317. </productMenu>
  1318. <productID id="6A06"
  1319. />
  1320. <productGroupable type="0"
  1321. />
  1322. </product>
  1323. <product id="COMP1"
  1324. name="BMW COM P1"
  1325. series="60"
  1326. latestVersion="1.0.6"
  1327. latestVersionMesh="0.19"
  1328. latestVersionVoicePrompt="1.0"
  1329. show = "-1" >
  1330. <productMenu id="protocol"
  1331. type="2" >
  1332. </productMenu>
  1333. <productMenu id="ota"
  1334. type="2" >
  1335. <otaLanguages>
  1336. <otaLanguage
  1337. id="0"
  1338. name="English"
  1339. package="0"
  1340. />
  1341. <otaLanguage
  1342. id="0"
  1343. name="French"
  1344. package="1"
  1345. />
  1346. <otaLanguage
  1347. id="0"
  1348. name="Spanish"
  1349. package="2"
  1350. />
  1351. <otaLanguage
  1352. id="0"
  1353. name="Italian"
  1354. package="3"
  1355. />
  1356. <otaLanguage
  1357. id="0"
  1358. name="German"
  1359. package="4"
  1360. />
  1361. <otaLanguage
  1362. id="0"
  1363. name="Dutch"
  1364. package="5"
  1365. />
  1366. <otaLanguage
  1367. id="0"
  1368. name="Russian"
  1369. package="6"
  1370. />
  1371. <otaLanguage
  1372. id="0"
  1373. name="Chinese"
  1374. package="7"
  1375. />
  1376. <otaLanguage
  1377. id="0"
  1378. name="Korean"
  1379. package="8"
  1380. />
  1381. <otaLanguage
  1382. id="0"
  1383. name="Japanese"
  1384. package="9"
  1385. />
  1386. <otaLanguage
  1387. id="0"
  1388. name="Finnish"
  1389. package="10"
  1390. />
  1391. </otaLanguages>
  1392. <otaPackages>
  1393. <package
  1394. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0.img"
  1395. size="5183988"
  1396. />
  1397. <package
  1398. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fr-FR.img"
  1399. size="5183988"
  1400. />
  1401. <package
  1402. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-es-ES.img"
  1403. size="5183988"
  1404. />
  1405. <package
  1406. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-it-IT.img"
  1407. size="5183988"
  1408. />
  1409. <package
  1410. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-de-DE.img"
  1411. size="5183988"
  1412. />
  1413. <package
  1414. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-nl-NL.img"
  1415. size="5183988"
  1416. />
  1417. <package
  1418. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ru-RU.img"
  1419. size="5183988"
  1420. />
  1421. <package
  1422. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-cmn-CN.img"
  1423. size="5183988"
  1424. />
  1425. <package
  1426. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ko-KR.img"
  1427. size="5183988"
  1428. />
  1429. <package
  1430. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-ja-JP.img"
  1431. size="5183988"
  1432. />
  1433. <package
  1434. url="https://api.sena.com/support/test/OTATest/COMP1/BMW_COM_P1-v1.0.6-build0-fi-FI.img"
  1435. size="5183988"
  1436. />
  1437. </otaPackages>
  1438. </productMenu>
  1439. <productMenu id="wa"
  1440. type="0" >
  1441. </productMenu>
  1442. <productMenu id="sip"
  1443. type="1" >
  1444. </productMenu>
  1445. <productMenu id="led"
  1446. type="0" >
  1447. </productMenu>
  1448. <productMenu id="illusion"
  1449. type="0" >
  1450. </productMenu>
  1451. <productMenu id="meshIntercom"
  1452. type="30" >
  1453. </productMenu>
  1454. <productMenu id="bluetoothIntercom"
  1455. type="1" >
  1456. </productMenu>
  1457. <productMenu id="bluetoothIntercomGrouping"
  1458. type="0" >
  1459. </productMenu>
  1460. <productMenu id="fmradio"
  1461. type="0" >
  1462. </productMenu>
  1463. <productMenu id="phone"
  1464. type="1" >
  1465. </productMenu>
  1466. <productMenu id="music"
  1467. type="1" >
  1468. </productMenu>
  1469. <productMenu id="musicSharing"
  1470. type="0" >
  1471. </productMenu>
  1472. <productMenu id="deviceSetting"
  1473. type="1"
  1474. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  1475. </productMenu>
  1476. <productMenu id="quickGuide"
  1477. type="0"
  1478. url=""
  1479. size="1.12MB" >
  1480. </productMenu>
  1481. <productMenu id="userGuide"
  1482. type="0"
  1483. url=""
  1484. size="2.0MB" >
  1485. </productMenu>
  1486. <productMenu id="videoGuide"
  1487. type="0"
  1488. url=""
  1489. size="3.41MB" >
  1490. </productMenu>
  1491. <productMenu id="volume"
  1492. type="16" >
  1493. </productMenu>
  1494. <productMenu id="battery"
  1495. type="1" >
  1496. </productMenu>
  1497. <productID id="6A80"
  1498. />
  1499. <productGroupable type="0"
  1500. />
  1501. </product>
  1502. <product id="50S"
  1503. name="50S"
  1504. series="50"
  1505. latestVersion="2.7.1"
  1506. show = "1" >
  1507. <productMenu id="protocol"
  1508. type="2" >
  1509. </productMenu>
  1510. <productMenu id="alexa"
  1511. type="0" >
  1512. </productMenu>
  1513. <productMenu id="ota"
  1514. type="0"
  1515. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1516. size="1150234" >
  1517. </productMenu>
  1518. <productMenu id="wa"
  1519. type="1" >
  1520. </productMenu>
  1521. <productMenu id="sip"
  1522. type="1" >
  1523. </productMenu>
  1524. <productMenu id="meshIntercom"
  1525. type="30" >
  1526. <productMenuType version="2.1.1"
  1527. type="20"
  1528. />
  1529. </productMenu>
  1530. <productMenu id="meshIntercom+"
  1531. type="3"
  1532. url="2" >
  1533. <productMenuType version="2.5.9"
  1534. type="2"
  1535. />
  1536. <productMenuURL version="2.1.1"
  1537. url="0"
  1538. />
  1539. </productMenu>
  1540. <productMenu id="waveIntercom"
  1541. type="1" >
  1542. <productMenuType version="2.6"
  1543. type="0"
  1544. />
  1545. </productMenu>
  1546. <productMenu id="bluetoothIntercom"
  1547. type="1" >
  1548. </productMenu>
  1549. <productMenu id="phone"
  1550. type="1" >
  1551. </productMenu>
  1552. <productMenu id="music"
  1553. type="1" >
  1554. </productMenu>
  1555. <productMenu id="fmradio"
  1556. type="1" >
  1557. </productMenu>
  1558. <productMenu id="deviceSetting"
  1559. type="1"
  1560. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1561. <productMenuURL version="2.5.9"
  1562. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1563. />
  1564. <productMenuURL version="2.1.1"
  1565. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1566. />
  1567. <productMenuURL version="2.0.3"
  1568. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1569. />
  1570. </productMenu>
  1571. <productMenu id="quickGuide"
  1572. type="0"
  1573. url=""
  1574. size="934KB" >
  1575. </productMenu>
  1576. <productMenu id="userGuide"
  1577. type="1"
  1578. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_2.8.1_en_250731.pdf"
  1579. size="1.14MB" >
  1580. </productMenu>
  1581. <productMenu id="videoGuide"
  1582. type="1"
  1583. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1584. size="3.41MB" >
  1585. </productMenu>
  1586. <productMenu id="connectGuide"
  1587. type="1"
  1588. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50s.json"
  1589. size="1.12MB" >
  1590. </productMenu>
  1591. <productMenu id="volume"
  1592. type="11" >
  1593. </productMenu>
  1594. <productMenu id="battery"
  1595. type="1" >
  1596. </productMenu>
  1597. <productID id="3210"
  1598. />
  1599. <productGroupable type="0"
  1600. />
  1601. </product>
  1602. <product id="50S"
  1603. name="50S"
  1604. series="50"
  1605. latestVersion="1.5.1"
  1606. show = "-1" >
  1607. <productMenu id="protocol"
  1608. type="2" >
  1609. </productMenu>
  1610. <productMenu id="alexa"
  1611. type="0" >
  1612. </productMenu>
  1613. <productMenu id="wa"
  1614. type="1" >
  1615. </productMenu>
  1616. <productMenu id="sip"
  1617. type="1" >
  1618. </productMenu>
  1619. <productMenu id="meshIntercom"
  1620. type="30" >
  1621. <productMenuType version="1.2.2"
  1622. type="20"
  1623. />
  1624. </productMenu>
  1625. <productMenu id="meshIntercom+"
  1626. type="3"
  1627. url="2" >
  1628. <productMenuType version="1.4.9"
  1629. type="2"
  1630. />
  1631. <productMenuURL version="1.2.2"
  1632. url="0"
  1633. />
  1634. </productMenu>
  1635. <productMenu id="waveIntercom"
  1636. type="1" >
  1637. <productMenuType version="1.3.9"
  1638. type="0"
  1639. />
  1640. </productMenu>
  1641. <productMenu id="bluetoothIntercom"
  1642. type="1" >
  1643. </productMenu>
  1644. <productMenu id="phone"
  1645. type="1" >
  1646. </productMenu>
  1647. <productMenu id="music"
  1648. type="1" >
  1649. </productMenu>
  1650. <productMenu id="fmradio"
  1651. type="1" >
  1652. </productMenu>
  1653. <productMenu id="deviceSetting"
  1654. type="1"
  1655. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1656. <productMenuURL version="1.4.9"
  1657. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1658. />
  1659. <productMenuURL version="1.3.9"
  1660. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1661. />
  1662. <productMenuURL version="1.2.2"
  1663. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1664. />
  1665. <productMenuURL version="1.1.1"
  1666. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1667. />
  1668. </productMenu>
  1669. <productMenu id="quickGuide"
  1670. type="0"
  1671. url=""
  1672. size="934KB" >
  1673. </productMenu>
  1674. <productMenu id="userGuide"
  1675. type="1"
  1676. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50S_1.9.2_en_250731.pdf"
  1677. size="1.14MB" >
  1678. </productMenu>
  1679. <productMenu id="videoGuide"
  1680. type="1"
  1681. url="https://www.youtube.com/watch?v=Uj1X00cwHlM&amp;list=PLXyK8lf8nIEymkdmRiz-OUBcPn1cxi9rx"
  1682. size="3.41MB" >
  1683. </productMenu>
  1684. <productMenu id="volume"
  1685. type="11" >
  1686. </productMenu>
  1687. <productMenu id="battery"
  1688. type="1" >
  1689. </productMenu>
  1690. <productID id="3132"
  1691. />
  1692. <productGroupable type="0"
  1693. />
  1694. </product>
  1695. <product id="50R"
  1696. name="50R"
  1697. series="50"
  1698. latestVersion="2.7"
  1699. show = "1" >
  1700. <productMenu id="protocol"
  1701. type="2" >
  1702. </productMenu>
  1703. <productMenu id="alexa"
  1704. type="0" >
  1705. </productMenu>
  1706. <productMenu id="ota"
  1707. type="0"
  1708. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  1709. size="1150234" >
  1710. </productMenu>
  1711. <productMenu id="wa"
  1712. type="1" >
  1713. </productMenu>
  1714. <productMenu id="sip"
  1715. type="1" >
  1716. </productMenu>
  1717. <productMenu id="meshIntercom"
  1718. type="30" >
  1719. <productMenuType version="2.1.1"
  1720. type="20"
  1721. />
  1722. </productMenu>
  1723. <productMenu id="meshIntercom+"
  1724. type="3"
  1725. url="2" >
  1726. <productMenuType version="2.5.9"
  1727. type="2"
  1728. />
  1729. <productMenuURL version="2.1.1"
  1730. url="0"
  1731. />
  1732. </productMenu>
  1733. <productMenu id="waveIntercom"
  1734. type="1" >
  1735. <productMenuType version="2.6"
  1736. type="0"
  1737. />
  1738. </productMenu>
  1739. <productMenu id="bluetoothIntercom"
  1740. type="1" >
  1741. </productMenu>
  1742. <productMenu id="phone"
  1743. type="1" >
  1744. </productMenu>
  1745. <productMenu id="music"
  1746. type="1" >
  1747. </productMenu>
  1748. <productMenu id="fmradio"
  1749. type="1" >
  1750. </productMenu>
  1751. <productMenu id="deviceSetting"
  1752. type="1"
  1753. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_11.xml" >
  1754. <productMenuURL version="2.5.9"
  1755. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1756. />
  1757. <productMenuURL version="2.1.1"
  1758. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1759. />
  1760. <productMenuURL version="2.0"
  1761. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1762. />
  1763. </productMenu>
  1764. <productMenu id="quickGuide"
  1765. type="0"
  1766. url=""
  1767. size="344KB" >
  1768. </productMenu>
  1769. <productMenu id="userGuide"
  1770. type="1"
  1771. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_2.7.1_en_250731.pdf"
  1772. size="3.41MB" >
  1773. </productMenu>
  1774. <productMenu id="videoGuide"
  1775. type="1"
  1776. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1777. size="3.41MB" >
  1778. </productMenu>
  1779. <productMenu id="connectGuide"
  1780. type="1"
  1781. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init_50r_250807.json"
  1782. size="1.12MB" >
  1783. </productMenu>
  1784. <productMenu id="volume"
  1785. type="11" >
  1786. </productMenu>
  1787. <productMenu id="battery"
  1788. type="1" >
  1789. </productMenu>
  1790. <productID id="3218"
  1791. />
  1792. <productGroupable type="0"
  1793. />
  1794. </product>
  1795. <product id="50R"
  1796. name="50R"
  1797. series="50"
  1798. latestVersion="1.5.1"
  1799. show = "-1" >
  1800. <productMenu id="protocol"
  1801. type="2" >
  1802. </productMenu>
  1803. <productMenu id="alexa"
  1804. type="0" >
  1805. </productMenu>
  1806. <productMenu id="wa"
  1807. type="1" >
  1808. </productMenu>
  1809. <productMenu id="sip"
  1810. type="1" >
  1811. </productMenu>
  1812. <productMenu id="meshIntercom"
  1813. type="30" >
  1814. <productMenuType version="1.2.2"
  1815. type="20"
  1816. />
  1817. </productMenu>
  1818. <productMenu id="meshIntercom+"
  1819. type="3"
  1820. url="2" >
  1821. <productMenuType version="1.4.9"
  1822. type="2"
  1823. />
  1824. <productMenuURL version="1.2.2"
  1825. url="0"
  1826. />
  1827. </productMenu>
  1828. <productMenu id="waveIntercom"
  1829. type="1" >
  1830. <productMenuType version="1.3.9"
  1831. type="0"
  1832. />
  1833. </productMenu>
  1834. <productMenu id="bluetoothIntercom"
  1835. type="1" >
  1836. </productMenu>
  1837. <productMenu id="phone"
  1838. type="1" >
  1839. </productMenu>
  1840. <productMenu id="music"
  1841. type="1" >
  1842. </productMenu>
  1843. <productMenu id="fmradio"
  1844. type="1" >
  1845. </productMenu>
  1846. <productMenu id="deviceSetting"
  1847. type="1"
  1848. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  1849. <productMenuURL version="1.4.9"
  1850. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_13.xml"
  1851. />
  1852. <productMenuURL version="1.3.9"
  1853. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  1854. />
  1855. <productMenuURL version="1.2.2"
  1856. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1857. />
  1858. <productMenuURL version="1.1.1"
  1859. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1860. />
  1861. </productMenu>
  1862. <productMenu id="quickGuide"
  1863. type="0"
  1864. url=""
  1865. size="344KB" >
  1866. </productMenu>
  1867. <productMenu id="userGuide"
  1868. type="1"
  1869. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50R_1.9.2_en_250731.pdf"
  1870. size="3.41MB" >
  1871. </productMenu>
  1872. <productMenu id="videoGuide"
  1873. type="1"
  1874. url="https://www.youtube.com/watch?v=bFqh5uCWzvY&amp;list=PLXyK8lf8nIEy9n9EILQwosdM3MzyldB3u"
  1875. size="3.41MB" >
  1876. </productMenu>
  1877. <productMenu id="volume"
  1878. type="11" >
  1879. </productMenu>
  1880. <productMenu id="battery"
  1881. type="1" >
  1882. </productMenu>
  1883. <productID id="3134"
  1884. />
  1885. <productGroupable type="0"
  1886. />
  1887. </product>
  1888. <product id="50C"
  1889. name="50C"
  1890. series="50"
  1891. latestVersion="1.4.3"
  1892. show = "1" >
  1893. <productMenu id="protocol"
  1894. type="2" >
  1895. </productMenu>
  1896. <productMenu id="ota"
  1897. type="0" >
  1898. </productMenu>
  1899. <productMenu id="wa"
  1900. type="1" >
  1901. </productMenu>
  1902. <productMenu id="sip"
  1903. type="1" >
  1904. </productMenu>
  1905. <productMenu id="meshIntercom"
  1906. type="30" >
  1907. <productMenuType version="1.1.1"
  1908. type="20"
  1909. />
  1910. </productMenu>
  1911. <productMenu id="meshIntercom+"
  1912. type="3"
  1913. url="2" >
  1914. <productMenuType version="1.3.9"
  1915. type="2"
  1916. />
  1917. <productMenuURL version="1.1.1"
  1918. url="0"
  1919. />
  1920. </productMenu>
  1921. <productMenu id="waveIntercom"
  1922. type="1" >
  1923. <productMenuType version="1.2.9"
  1924. type="0"
  1925. />
  1926. </productMenu>
  1927. <productMenu id="bluetoothIntercom"
  1928. type="1" >
  1929. </productMenu>
  1930. <productMenu id="phone"
  1931. type="1" >
  1932. </productMenu>
  1933. <productMenu id="music"
  1934. type="1" >
  1935. </productMenu>
  1936. <productMenu id="fmradio"
  1937. type="1" >
  1938. </productMenu>
  1939. <productMenu id="deviceSetting"
  1940. type="1"
  1941. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_04.xml" >
  1942. <productMenuURL version="1.3.9"
  1943. url="https://api.sena.com/support/SenaNeoApp/50C/NS_50C_02.xml"
  1944. />
  1945. <productMenuURL version="1.1.1"
  1946. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  1947. />
  1948. <productMenuURL version="1.0.1"
  1949. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  1950. />
  1951. </productMenu>
  1952. <productMenu id="quickGuide"
  1953. type="0"
  1954. url=""
  1955. size="344KB" >
  1956. </productMenu>
  1957. <productMenu id="userGuide"
  1958. type="1"
  1959. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_50C_1.6.1_en_250508.pdf"
  1960. size="3.41MB" >
  1961. </productMenu>
  1962. <productMenu id="connectGuide"
  1963. type="1"
  1964. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init_50c.json"
  1965. size="1.12MB" >
  1966. </productMenu>
  1967. <productMenu id="volume"
  1968. type="11" >
  1969. </productMenu>
  1970. <productMenu id="battery"
  1971. type="1" >
  1972. </productMenu>
  1973. <productID id="3232"
  1974. />
  1975. <productGroupable type="0"
  1976. />
  1977. </product>
  1978. <product id="PHANTOMXB"
  1979. name="PHANTOM XB"
  1980. series="Helmet"
  1981. latestVersion="1.2.4"
  1982. latestVersionVoicePrompt="1.2"
  1983. show = "-1" >
  1984. <productMenu id="protocol"
  1985. type="2" >
  1986. </productMenu>
  1987. <productMenu id="ota"
  1988. type="2" >
  1989. <otaLanguages>
  1990. <otaLanguage
  1991. id="0"
  1992. name="English"
  1993. package="0"
  1994. />
  1995. <otaLanguage
  1996. id="0"
  1997. name="French"
  1998. package="1"
  1999. />
  2000. <otaLanguage
  2001. id="0"
  2002. name="Spanish"
  2003. package="2"
  2004. />
  2005. <otaLanguage
  2006. id="0"
  2007. name="Italian"
  2008. package="3"
  2009. />
  2010. <otaLanguage
  2011. id="0"
  2012. name="German"
  2013. package="4"
  2014. />
  2015. <otaLanguage
  2016. id="0"
  2017. name="Dutch"
  2018. package="5"
  2019. />
  2020. <otaLanguage
  2021. id="0"
  2022. name="Russian"
  2023. package="6"
  2024. />
  2025. <otaLanguage
  2026. id="0"
  2027. name="Chinese"
  2028. package="7"
  2029. />
  2030. <otaLanguage
  2031. id="0"
  2032. name="Korean"
  2033. package="8"
  2034. />
  2035. <otaLanguage
  2036. id="0"
  2037. name="Japanese"
  2038. package="9"
  2039. />
  2040. <otaLanguage
  2041. id="0"
  2042. name="Finnish"
  2043. package="10"
  2044. />
  2045. <otaLanguage
  2046. id="0"
  2047. name="Polish"
  2048. package="11"
  2049. />
  2050. </otaLanguages>
  2051. <otaPackages>
  2052. <package
  2053. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0.img"
  2054. size="5183988"
  2055. />
  2056. <package
  2057. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-fr-FR.img"
  2058. size="5183988"
  2059. />
  2060. <package
  2061. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-es-ES.img"
  2062. size="5183988"
  2063. />
  2064. <package
  2065. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-it-IT.img"
  2066. size="5183988"
  2067. />
  2068. <package
  2069. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-de-DE.img"
  2070. size="5183988"
  2071. />
  2072. <package
  2073. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-nl-NL.img"
  2074. size="5183988"
  2075. />
  2076. <package
  2077. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-ru-RU.img"
  2078. size="5183988"
  2079. />
  2080. <package
  2081. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-cmn-CN.img"
  2082. size="5183988"
  2083. />
  2084. <package
  2085. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-ko-KR.img"
  2086. size="5183988"
  2087. />
  2088. <package
  2089. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-ja-JP.img"
  2090. size="5183988"
  2091. />
  2092. <package
  2093. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-fi-FI.img"
  2094. size="5183988"
  2095. />
  2096. <package
  2097. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB_REV2-v1.2.4-build0-pl-PL.img"
  2098. size="5183988"
  2099. />
  2100. </otaPackages>
  2101. </productMenu>
  2102. <productMenu id="wa"
  2103. type="0" >
  2104. </productMenu>
  2105. <productMenu id="led"
  2106. type="5" >
  2107. </productMenu>
  2108. <productMenu id="led+"
  2109. type="2"
  2110. url="1" >
  2111. </productMenu>
  2112. <productMenu id="meshIntercom"
  2113. type="30" >
  2114. </productMenu>
  2115. <productMenu id="meshIntercom+"
  2116. type="3"
  2117. url="2" >
  2118. </productMenu>
  2119. <productMenu id="waveIntercom"
  2120. type="1" >
  2121. </productMenu>
  2122. <productMenu id="fmradio"
  2123. type="0" >
  2124. </productMenu>
  2125. <productMenu id="phone"
  2126. type="1" >
  2127. </productMenu>
  2128. <productMenu id="music"
  2129. type="1" >
  2130. </productMenu>
  2131. <productMenu id="musicSharing"
  2132. type="0" >
  2133. </productMenu>
  2134. <productMenu id="deviceSetting"
  2135. type="1"
  2136. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2137. <productMenuURL version="1.2.4"
  2138. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2139. />
  2140. </productMenu>
  2141. <productMenu id="quickGuide"
  2142. type="0"
  2143. url=""
  2144. size="1.12MB" >
  2145. </productMenu>
  2146. <productMenu id="userGuide"
  2147. type="1"
  2148. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2149. size="2.0MB" >
  2150. </productMenu>
  2151. <productMenu id="videoGuide"
  2152. type="0"
  2153. url=""
  2154. size="3.41MB" >
  2155. </productMenu>
  2156. <productMenu id="volume"
  2157. type="16" >
  2158. </productMenu>
  2159. <productMenu id="volume+"
  2160. type="2"
  2161. url="0x6004" >
  2162. </productMenu>
  2163. <productMenu id="battery"
  2164. type="1" >
  2165. </productMenu>
  2166. <productID id="6A0F"
  2167. />
  2168. <productGroupable type="0"
  2169. />
  2170. </product>
  2171. <product id="PHANTOMXB"
  2172. name="PHANTOM XB"
  2173. series="Helmet"
  2174. latestVersion="1.2.4"
  2175. latestVersionVoicePrompt="1.2"
  2176. show = "-1" >
  2177. <productMenu id="protocol"
  2178. type="2" >
  2179. </productMenu>
  2180. <productMenu id="ota"
  2181. type="2" >
  2182. <otaLanguages>
  2183. <otaLanguage
  2184. id="0"
  2185. name="English"
  2186. package="0"
  2187. />
  2188. <otaLanguage
  2189. id="0"
  2190. name="French"
  2191. package="1"
  2192. />
  2193. <otaLanguage
  2194. id="0"
  2195. name="Spanish"
  2196. package="2"
  2197. />
  2198. <otaLanguage
  2199. id="0"
  2200. name="Italian"
  2201. package="3"
  2202. />
  2203. <otaLanguage
  2204. id="0"
  2205. name="German"
  2206. package="4"
  2207. />
  2208. <otaLanguage
  2209. id="0"
  2210. name="Dutch"
  2211. package="5"
  2212. />
  2213. <otaLanguage
  2214. id="0"
  2215. name="Russian"
  2216. package="6"
  2217. />
  2218. <otaLanguage
  2219. id="0"
  2220. name="Chinese"
  2221. package="7"
  2222. />
  2223. <otaLanguage
  2224. id="0"
  2225. name="Korean"
  2226. package="8"
  2227. />
  2228. <otaLanguage
  2229. id="0"
  2230. name="Japanese"
  2231. package="9"
  2232. />
  2233. <otaLanguage
  2234. id="0"
  2235. name="Finnish"
  2236. package="10"
  2237. />
  2238. <otaLanguage
  2239. id="0"
  2240. name="Polish"
  2241. package="11"
  2242. />
  2243. </otaLanguages>
  2244. <otaPackages>
  2245. <package
  2246. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0.img"
  2247. size="5183988"
  2248. />
  2249. <package
  2250. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-fr-FR.img"
  2251. size="5183988"
  2252. />
  2253. <package
  2254. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-es-ES.img"
  2255. size="5183988"
  2256. />
  2257. <package
  2258. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-it-IT.img"
  2259. size="5183988"
  2260. />
  2261. <package
  2262. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-de-DE.img"
  2263. size="5183988"
  2264. />
  2265. <package
  2266. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-nl-NL.img"
  2267. size="5183988"
  2268. />
  2269. <package
  2270. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-ru-RU.img"
  2271. size="5183988"
  2272. />
  2273. <package
  2274. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-cmn-CN.img"
  2275. size="5183988"
  2276. />
  2277. <package
  2278. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-ko-KR.img"
  2279. size="5183988"
  2280. />
  2281. <package
  2282. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-ja-JP.img"
  2283. size="5183988"
  2284. />
  2285. <package
  2286. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-fi-FI.img"
  2287. size="5183988"
  2288. />
  2289. <package
  2290. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_XB-v1.2.4-build0-pl-PL.img"
  2291. size="5183988"
  2292. />
  2293. </otaPackages>
  2294. </productMenu>
  2295. <productMenu id="wa"
  2296. type="0" >
  2297. </productMenu>
  2298. <productMenu id="led"
  2299. type="5" >
  2300. </productMenu>
  2301. <productMenu id="led+"
  2302. type="2"
  2303. url="1" >
  2304. </productMenu>
  2305. <productMenu id="meshIntercom"
  2306. type="30" >
  2307. </productMenu>
  2308. <productMenu id="meshIntercom+"
  2309. type="3"
  2310. url="2" >
  2311. </productMenu>
  2312. <productMenu id="waveIntercom"
  2313. type="1" >
  2314. </productMenu>
  2315. <productMenu id="fmradio"
  2316. type="0" >
  2317. </productMenu>
  2318. <productMenu id="phone"
  2319. type="1" >
  2320. </productMenu>
  2321. <productMenu id="music"
  2322. type="1" >
  2323. </productMenu>
  2324. <productMenu id="musicSharing"
  2325. type="0" >
  2326. </productMenu>
  2327. <productMenu id="deviceSetting"
  2328. type="1"
  2329. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2330. <productMenuURL version="1.2.4"
  2331. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2332. />
  2333. <productMenuURL version="1.2.1"
  2334. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  2335. />
  2336. </productMenu>
  2337. <productMenu id="quickGuide"
  2338. type="0"
  2339. url=""
  2340. size="1.12MB" >
  2341. </productMenu>
  2342. <productMenu id="userGuide"
  2343. type="1"
  2344. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  2345. size="2.0MB" >
  2346. </productMenu>
  2347. <productMenu id="videoGuide"
  2348. type="0"
  2349. url=""
  2350. size="3.41MB" >
  2351. </productMenu>
  2352. <productMenu id="volume"
  2353. type="16" >
  2354. </productMenu>
  2355. <productMenu id="volume+"
  2356. type="2"
  2357. url="0x6004" >
  2358. </productMenu>
  2359. <productMenu id="battery"
  2360. type="1" >
  2361. </productMenu>
  2362. <productID id="6A0C"
  2363. />
  2364. <productGroupable type="0"
  2365. />
  2366. </product>
  2367. <product id="PHANTOMKV"
  2368. name="PHANTOM KV"
  2369. series="Helmet"
  2370. latestVersion="1.2.2"
  2371. latestVersionVoicePrompt="1.0"
  2372. show = "-1" >
  2373. <productMenu id="protocol"
  2374. type="2" >
  2375. </productMenu>
  2376. <productMenu id="ota"
  2377. type="0" >
  2378. <otaLanguages>
  2379. <otaLanguage
  2380. id="0"
  2381. name="English"
  2382. package="0"
  2383. />
  2384. <otaLanguage
  2385. id="0"
  2386. name="French"
  2387. package="1"
  2388. />
  2389. <otaLanguage
  2390. id="0"
  2391. name="Spanish"
  2392. package="2"
  2393. />
  2394. <otaLanguage
  2395. id="0"
  2396. name="Italian"
  2397. package="3"
  2398. />
  2399. <otaLanguage
  2400. id="0"
  2401. name="German"
  2402. package="4"
  2403. />
  2404. <otaLanguage
  2405. id="0"
  2406. name="Dutch"
  2407. package="5"
  2408. />
  2409. <otaLanguage
  2410. id="0"
  2411. name="Russian"
  2412. package="6"
  2413. />
  2414. <otaLanguage
  2415. id="0"
  2416. name="Chinese"
  2417. package="7"
  2418. />
  2419. <otaLanguage
  2420. id="0"
  2421. name="Korean"
  2422. package="8"
  2423. />
  2424. <otaLanguage
  2425. id="0"
  2426. name="Japanese"
  2427. package="9"
  2428. />
  2429. <otaLanguage
  2430. id="0"
  2431. name="Finnish"
  2432. package="10"
  2433. />
  2434. <otaLanguage
  2435. id="0"
  2436. name="Polish"
  2437. package="11"
  2438. />
  2439. </otaLanguages>
  2440. <otaPackages>
  2441. <package
  2442. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0.img"
  2443. size="5183988"
  2444. />
  2445. <package
  2446. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fr-FR.img"
  2447. size="5183988"
  2448. />
  2449. <package
  2450. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-es-ES.img"
  2451. size="5183988"
  2452. />
  2453. <package
  2454. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-it-IT.img"
  2455. size="5183988"
  2456. />
  2457. <package
  2458. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-de-DE.img"
  2459. size="5183988"
  2460. />
  2461. <package
  2462. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-nl-NL.img"
  2463. size="5183988"
  2464. />
  2465. <package
  2466. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ru-RU.img"
  2467. size="5183988"
  2468. />
  2469. <package
  2470. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-cmn-CN.img"
  2471. size="5183988"
  2472. />
  2473. <package
  2474. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ko-KR.img"
  2475. size="5183988"
  2476. />
  2477. <package
  2478. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-ja-JP.img"
  2479. size="5183988"
  2480. />
  2481. <package
  2482. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-fi-FI.img"
  2483. size="5183988"
  2484. />
  2485. <package
  2486. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KVREV-v1.2-build0-pl-PL.img"
  2487. size="5183988"
  2488. />
  2489. </otaPackages>
  2490. </productMenu>
  2491. <productMenu id="wa"
  2492. type="0" >
  2493. </productMenu>
  2494. <productMenu id="led"
  2495. type="5" >
  2496. </productMenu>
  2497. <productMenu id="led+"
  2498. type="2"
  2499. url="1" >
  2500. </productMenu>
  2501. <productMenu id="meshIntercom"
  2502. type="30" >
  2503. </productMenu>
  2504. <productMenu id="meshIntercom+"
  2505. type="3"
  2506. url="2" >
  2507. </productMenu>
  2508. <productMenu id="waveIntercom"
  2509. type="1" >
  2510. </productMenu>
  2511. <productMenu id="fmradio"
  2512. type="0" >
  2513. </productMenu>
  2514. <productMenu id="phone"
  2515. type="1" >
  2516. </productMenu>
  2517. <productMenu id="music"
  2518. type="1" >
  2519. </productMenu>
  2520. <productMenu id="musicSharing"
  2521. type="0" >
  2522. </productMenu>
  2523. <productMenu id="deviceSetting"
  2524. type="1"
  2525. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2526. <productMenuURL version="1.2.4"
  2527. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2528. />
  2529. </productMenu>
  2530. <productMenu id="quickGuide"
  2531. type="0"
  2532. url=""
  2533. size="1.12MB" >
  2534. </productMenu>
  2535. <productMenu id="userGuide"
  2536. type="1"
  2537. url=""
  2538. size="2.0MB" >
  2539. </productMenu>
  2540. <productMenu id="videoGuide"
  2541. type="0"
  2542. url=""
  2543. size="3.41MB" >
  2544. </productMenu>
  2545. <productMenu id="volume"
  2546. type="16" >
  2547. </productMenu>
  2548. <productMenu id="volume+"
  2549. type="2"
  2550. url="0x6004" >
  2551. </productMenu>
  2552. <productMenu id="battery"
  2553. type="1" >
  2554. </productMenu>
  2555. <productID id="6A14"
  2556. />
  2557. <productGroupable type="0"
  2558. />
  2559. </product>
  2560. <product id="PHANTOMKV"
  2561. name="PHANTOM KV"
  2562. series="Helmet"
  2563. latestVersion="1.2.2"
  2564. latestVersionVoicePrompt="1.0"
  2565. show = "-1" >
  2566. <productMenu id="protocol"
  2567. type="2" >
  2568. </productMenu>
  2569. <productMenu id="ota"
  2570. type="0" >
  2571. <otaLanguages>
  2572. <otaLanguage
  2573. id="0"
  2574. name="English"
  2575. package="0"
  2576. />
  2577. <otaLanguage
  2578. id="0"
  2579. name="French"
  2580. package="1"
  2581. />
  2582. <otaLanguage
  2583. id="0"
  2584. name="Spanish"
  2585. package="2"
  2586. />
  2587. <otaLanguage
  2588. id="0"
  2589. name="Italian"
  2590. package="3"
  2591. />
  2592. <otaLanguage
  2593. id="0"
  2594. name="German"
  2595. package="4"
  2596. />
  2597. <otaLanguage
  2598. id="0"
  2599. name="Dutch"
  2600. package="5"
  2601. />
  2602. <otaLanguage
  2603. id="0"
  2604. name="Russian"
  2605. package="6"
  2606. />
  2607. <otaLanguage
  2608. id="0"
  2609. name="Chinese"
  2610. package="7"
  2611. />
  2612. <otaLanguage
  2613. id="0"
  2614. name="Korean"
  2615. package="8"
  2616. />
  2617. <otaLanguage
  2618. id="0"
  2619. name="Japanese"
  2620. package="9"
  2621. />
  2622. <otaLanguage
  2623. id="0"
  2624. name="Finnish"
  2625. package="10"
  2626. />
  2627. <otaLanguage
  2628. id="0"
  2629. name="Polish"
  2630. package="11"
  2631. />
  2632. </otaLanguages>
  2633. <otaPackages>
  2634. <package
  2635. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0.img"
  2636. size="5183988"
  2637. />
  2638. <package
  2639. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fr-FR.img"
  2640. size="5183988"
  2641. />
  2642. <package
  2643. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-es-ES.img"
  2644. size="5183988"
  2645. />
  2646. <package
  2647. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-it-IT.img"
  2648. size="5183988"
  2649. />
  2650. <package
  2651. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-de-DE.img"
  2652. size="5183988"
  2653. />
  2654. <package
  2655. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-nl-NL.img"
  2656. size="5183988"
  2657. />
  2658. <package
  2659. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ru-RU.img"
  2660. size="5183988"
  2661. />
  2662. <package
  2663. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-cmn-CN.img"
  2664. size="5183988"
  2665. />
  2666. <package
  2667. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ko-KR.img"
  2668. size="5183988"
  2669. />
  2670. <package
  2671. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-ja-JP.img"
  2672. size="5183988"
  2673. />
  2674. <package
  2675. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-fi-FI.img"
  2676. size="5183988"
  2677. />
  2678. <package
  2679. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_KV-v1.2-build0-pl-PL.img"
  2680. size="5183988"
  2681. />
  2682. </otaPackages>
  2683. </productMenu>
  2684. <productMenu id="wa"
  2685. type="0" >
  2686. </productMenu>
  2687. <productMenu id="led"
  2688. type="5" >
  2689. </productMenu>
  2690. <productMenu id="led+"
  2691. type="2"
  2692. url="1" >
  2693. </productMenu>
  2694. <productMenu id="meshIntercom"
  2695. type="30" >
  2696. </productMenu>
  2697. <productMenu id="meshIntercom+"
  2698. type="3"
  2699. url="2" >
  2700. </productMenu>
  2701. <productMenu id="waveIntercom"
  2702. type="1" >
  2703. </productMenu>
  2704. <productMenu id="fmradio"
  2705. type="0" >
  2706. </productMenu>
  2707. <productMenu id="phone"
  2708. type="1" >
  2709. </productMenu>
  2710. <productMenu id="music"
  2711. type="1" >
  2712. </productMenu>
  2713. <productMenu id="musicSharing"
  2714. type="0" >
  2715. </productMenu>
  2716. <productMenu id="deviceSetting"
  2717. type="1"
  2718. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  2719. <productMenuURL version="1.2.4"
  2720. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  2721. />
  2722. </productMenu>
  2723. <productMenu id="quickGuide"
  2724. type="0"
  2725. url=""
  2726. size="1.12MB" >
  2727. </productMenu>
  2728. <productMenu id="userGuide"
  2729. type="1"
  2730. url=""
  2731. size="2.0MB" >
  2732. </productMenu>
  2733. <productMenu id="videoGuide"
  2734. type="0"
  2735. url=""
  2736. size="3.41MB" >
  2737. </productMenu>
  2738. <productMenu id="volume"
  2739. type="16" >
  2740. </productMenu>
  2741. <productMenu id="volume+"
  2742. type="2"
  2743. url="0x6004" >
  2744. </productMenu>
  2745. <productMenu id="battery"
  2746. type="1" >
  2747. </productMenu>
  2748. <productID id="6A13"
  2749. />
  2750. <productGroupable type="0"
  2751. />
  2752. </product>
  2753. <product id="PHANTOMCamera"
  2754. name="PHANTOM Camera"
  2755. series="Helmet"
  2756. latestVersion="1.0"
  2757. latestVersionVoicePrompt="0.4"
  2758. show = "-1" >
  2759. <productMenu id="protocol"
  2760. type="2" >
  2761. </productMenu>
  2762. <productMenu id="ota"
  2763. type="3" >
  2764. <otaLanguages>
  2765. <otaLanguage
  2766. id="0"
  2767. name="English"
  2768. package="0"
  2769. />
  2770. <otaLanguage
  2771. id="0"
  2772. name="French"
  2773. package="1"
  2774. />
  2775. <otaLanguage
  2776. id="0"
  2777. name="Spanish"
  2778. package="2"
  2779. />
  2780. <otaLanguage
  2781. id="0"
  2782. name="Italian"
  2783. package="3"
  2784. />
  2785. <otaLanguage
  2786. id="0"
  2787. name="German"
  2788. package="4"
  2789. />
  2790. <otaLanguage
  2791. id="0"
  2792. name="Dutch"
  2793. package="5"
  2794. />
  2795. <otaLanguage
  2796. id="0"
  2797. name="Russian"
  2798. package="6"
  2799. />
  2800. <otaLanguage
  2801. id="0"
  2802. name="Chinese"
  2803. package="7"
  2804. />
  2805. <otaLanguage
  2806. id="0"
  2807. name="Korean"
  2808. package="8"
  2809. />
  2810. <otaLanguage
  2811. id="0"
  2812. name="Japanese"
  2813. package="9"
  2814. />
  2815. <otaLanguage
  2816. id="0"
  2817. name="Finnish"
  2818. package="10"
  2819. />
  2820. <otaLanguage
  2821. id="0"
  2822. name="Polish"
  2823. package="11"
  2824. />
  2825. </otaLanguages>
  2826. <otaPackages>
  2827. <package
  2828. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0.img"
  2829. size="5183988"
  2830. />
  2831. <package
  2832. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fr-FR.img"
  2833. size="5183988"
  2834. />
  2835. <package
  2836. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-es-ES.img"
  2837. size="5183988"
  2838. />
  2839. <package
  2840. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-it-IT.img"
  2841. size="5183988"
  2842. />
  2843. <package
  2844. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-de-DE.img"
  2845. size="5183988"
  2846. />
  2847. <package
  2848. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-nl-NL.img"
  2849. size="5183988"
  2850. />
  2851. <package
  2852. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ru-RU.img"
  2853. size="5183988"
  2854. />
  2855. <package
  2856. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-cmn-CN.img"
  2857. size="5183988"
  2858. />
  2859. <package
  2860. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ko-KR.img"
  2861. size="5183988"
  2862. />
  2863. <package
  2864. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-ja-JP.img"
  2865. size="5183988"
  2866. />
  2867. <package
  2868. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-fi-FI.img"
  2869. size="5183988"
  2870. />
  2871. <package
  2872. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_CameraREV-v1.2-build0-pl-PL.img"
  2873. size="5183988"
  2874. />
  2875. </otaPackages>
  2876. </productMenu>
  2877. <productMenu id="wa"
  2878. type="0" >
  2879. </productMenu>
  2880. <productMenu id="led"
  2881. type="5" >
  2882. </productMenu>
  2883. <productMenu id="led+"
  2884. type="2"
  2885. url="1" >
  2886. </productMenu>
  2887. <productMenu id="meshIntercom"
  2888. type="30" >
  2889. </productMenu>
  2890. <productMenu id="meshIntercom+"
  2891. type="3"
  2892. url="2" >
  2893. </productMenu>
  2894. <productMenu id="waveIntercom"
  2895. type="1" >
  2896. </productMenu>
  2897. <productMenu id="fmradio"
  2898. type="0" >
  2899. </productMenu>
  2900. <productMenu id="phone"
  2901. type="1" >
  2902. </productMenu>
  2903. <productMenu id="music"
  2904. type="1" >
  2905. </productMenu>
  2906. <productMenu id="musicSharing"
  2907. type="0" >
  2908. </productMenu>
  2909. <productMenu id="deviceSetting"
  2910. type="1"
  2911. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  2912. </productMenu>
  2913. <productMenu id="quickGuide"
  2914. type="0"
  2915. url=""
  2916. size="1.12MB" >
  2917. </productMenu>
  2918. <productMenu id="userGuide"
  2919. type="1"
  2920. url=""
  2921. size="2.0MB" >
  2922. </productMenu>
  2923. <productMenu id="videoGuide"
  2924. type="0"
  2925. url=""
  2926. size="3.41MB" >
  2927. </productMenu>
  2928. <productMenu id="volume"
  2929. type="16" >
  2930. </productMenu>
  2931. <productMenu id="battery"
  2932. type="1" >
  2933. </productMenu>
  2934. <productID id="6A10"
  2935. />
  2936. <productGroupable type="0"
  2937. />
  2938. </product>
  2939. <product id="PHANTOMCamera"
  2940. name="PHANTOM Camera"
  2941. series="Helmet"
  2942. latestVersion="0.9"
  2943. latestVersionVoicePrompt="0.3"
  2944. show = "-1" >
  2945. <productMenu id="protocol"
  2946. type="2" >
  2947. </productMenu>
  2948. <productMenu id="ota"
  2949. type="3" >
  2950. <otaLanguages>
  2951. <otaLanguage
  2952. id="0"
  2953. name="English"
  2954. package="0"
  2955. />
  2956. <otaLanguage
  2957. id="0"
  2958. name="French"
  2959. package="1"
  2960. />
  2961. <otaLanguage
  2962. id="0"
  2963. name="Spanish"
  2964. package="2"
  2965. />
  2966. <otaLanguage
  2967. id="0"
  2968. name="Italian"
  2969. package="3"
  2970. />
  2971. <otaLanguage
  2972. id="0"
  2973. name="German"
  2974. package="4"
  2975. />
  2976. <otaLanguage
  2977. id="0"
  2978. name="Dutch"
  2979. package="5"
  2980. />
  2981. <otaLanguage
  2982. id="0"
  2983. name="Russian"
  2984. package="6"
  2985. />
  2986. <otaLanguage
  2987. id="0"
  2988. name="Chinese"
  2989. package="7"
  2990. />
  2991. <otaLanguage
  2992. id="0"
  2993. name="Korean"
  2994. package="8"
  2995. />
  2996. <otaLanguage
  2997. id="0"
  2998. name="Japanese"
  2999. package="9"
  3000. />
  3001. <otaLanguage
  3002. id="0"
  3003. name="Finnish"
  3004. package="10"
  3005. />
  3006. <otaLanguage
  3007. id="0"
  3008. name="Polish"
  3009. package="11"
  3010. />
  3011. </otaLanguages>
  3012. <otaPackages>
  3013. <package
  3014. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0.img"
  3015. size="5183988"
  3016. />
  3017. <package
  3018. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fr-FR.img"
  3019. size="5183988"
  3020. />
  3021. <package
  3022. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-es-ES.img"
  3023. size="5183988"
  3024. />
  3025. <package
  3026. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-it-IT.img"
  3027. size="5183988"
  3028. />
  3029. <package
  3030. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-de-DE.img"
  3031. size="5183988"
  3032. />
  3033. <package
  3034. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-nl-NL.img"
  3035. size="5183988"
  3036. />
  3037. <package
  3038. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ru-RU.img"
  3039. size="5183988"
  3040. />
  3041. <package
  3042. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-cmn-CN.img"
  3043. size="5183988"
  3044. />
  3045. <package
  3046. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ko-KR.img"
  3047. size="5183988"
  3048. />
  3049. <package
  3050. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-ja-JP.img"
  3051. size="5183988"
  3052. />
  3053. <package
  3054. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-fi-FI.img"
  3055. size="5183988"
  3056. />
  3057. <package
  3058. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMXB/PHANTOM_Camera-v1.2-build0-pl-PL.img"
  3059. size="5183988"
  3060. />
  3061. </otaPackages>
  3062. </productMenu>
  3063. <productMenu id="wa"
  3064. type="0" >
  3065. </productMenu>
  3066. <productMenu id="led"
  3067. type="5" >
  3068. </productMenu>
  3069. <productMenu id="led+"
  3070. type="2"
  3071. url="1" >
  3072. </productMenu>
  3073. <productMenu id="meshIntercom"
  3074. type="30" >
  3075. </productMenu>
  3076. <productMenu id="meshIntercom+"
  3077. type="3"
  3078. url="2" >
  3079. </productMenu>
  3080. <productMenu id="waveIntercom"
  3081. type="1" >
  3082. </productMenu>
  3083. <productMenu id="fmradio"
  3084. type="0" >
  3085. </productMenu>
  3086. <productMenu id="phone"
  3087. type="1" >
  3088. </productMenu>
  3089. <productMenu id="music"
  3090. type="1" >
  3091. </productMenu>
  3092. <productMenu id="musicSharing"
  3093. type="0" >
  3094. </productMenu>
  3095. <productMenu id="deviceSetting"
  3096. type="1"
  3097. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  3098. </productMenu>
  3099. <productMenu id="quickGuide"
  3100. type="0"
  3101. url=""
  3102. size="1.12MB" >
  3103. </productMenu>
  3104. <productMenu id="userGuide"
  3105. type="1"
  3106. url=""
  3107. size="2.0MB" >
  3108. </productMenu>
  3109. <productMenu id="videoGuide"
  3110. type="0"
  3111. url=""
  3112. size="3.41MB" >
  3113. </productMenu>
  3114. <productMenu id="volume"
  3115. type="16" >
  3116. </productMenu>
  3117. <productMenu id="battery"
  3118. type="1" >
  3119. </productMenu>
  3120. <productID id="6A09"
  3121. />
  3122. <productGroupable type="0"
  3123. />
  3124. </product>
  3125. <product id="PHANTOM"
  3126. name="PHANTOM ANC"
  3127. series="Helmet"
  3128. latestVersion="1.2.4"
  3129. latestVersionVoicePrompt="1.2"
  3130. show = "1" >
  3131. <productMenu id="protocol"
  3132. type="2" >
  3133. </productMenu>
  3134. <productMenu id="ota"
  3135. type="2" >
  3136. <productMenuType version="0.6.9"
  3137. type="0"
  3138. />
  3139. <otaLanguages>
  3140. <otaLanguage
  3141. id="0"
  3142. name="English"
  3143. package="0"
  3144. />
  3145. <otaLanguage
  3146. id="0"
  3147. name="French"
  3148. package="1"
  3149. />
  3150. <otaLanguage
  3151. id="0"
  3152. name="Spanish"
  3153. package="2"
  3154. />
  3155. <otaLanguage
  3156. id="0"
  3157. name="Italian"
  3158. package="3"
  3159. />
  3160. <otaLanguage
  3161. id="0"
  3162. name="German"
  3163. package="4"
  3164. />
  3165. <otaLanguage
  3166. id="0"
  3167. name="Dutch"
  3168. package="5"
  3169. />
  3170. <otaLanguage
  3171. id="0"
  3172. name="Russian"
  3173. package="6"
  3174. />
  3175. <otaLanguage
  3176. id="0"
  3177. name="Chinese"
  3178. package="7"
  3179. />
  3180. <otaLanguage
  3181. id="0"
  3182. name="Korean"
  3183. package="8"
  3184. />
  3185. <otaLanguage
  3186. id="0"
  3187. name="Japanese"
  3188. package="9"
  3189. />
  3190. <otaLanguage
  3191. id="0"
  3192. name="Finnish"
  3193. package="10"
  3194. />
  3195. <otaLanguage
  3196. id="0"
  3197. name="Polish"
  3198. package="11"
  3199. />
  3200. </otaLanguages>
  3201. <otaPackages>
  3202. <package
  3203. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0.img"
  3204. size="5183988"
  3205. />
  3206. <package
  3207. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-fr-FR.img"
  3208. size="5183988"
  3209. />
  3210. <package
  3211. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-es-ES.img"
  3212. size="5183988"
  3213. />
  3214. <package
  3215. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-it-IT.img"
  3216. size="5183988"
  3217. />
  3218. <package
  3219. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-de-DE.img"
  3220. size="5183988"
  3221. />
  3222. <package
  3223. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-nl-NL.img"
  3224. size="5183988"
  3225. />
  3226. <package
  3227. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-ru-RU.img"
  3228. size="5183988"
  3229. />
  3230. <package
  3231. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-cmn-CN.img"
  3232. size="5183988"
  3233. />
  3234. <package
  3235. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-ko-KR.img"
  3236. size="5183988"
  3237. />
  3238. <package
  3239. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-ja-JP.img"
  3240. size="5183988"
  3241. />
  3242. <package
  3243. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-fi-FI.img"
  3244. size="5183988"
  3245. />
  3246. <package
  3247. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC-v1.2.4-build0-pl-PL.img"
  3248. size="5183988"
  3249. />
  3250. </otaPackages>
  3251. </productMenu>
  3252. <productMenu id="wa"
  3253. type="0" >
  3254. </productMenu>
  3255. <productMenu id="led"
  3256. type="5" >
  3257. </productMenu>
  3258. <productMenu id="led+"
  3259. type="2"
  3260. url="1" >
  3261. </productMenu>
  3262. <productMenu id="meshIntercom"
  3263. type="30" >
  3264. </productMenu>
  3265. <productMenu id="meshIntercom+"
  3266. type="3"
  3267. url="2" >
  3268. <productMenuURL version="1.0.4"
  3269. url="10"
  3270. />
  3271. </productMenu>
  3272. <productMenu id="waveIntercom"
  3273. type="1" >
  3274. <productMenuType version="1.0.9"
  3275. type="0"
  3276. />
  3277. </productMenu>
  3278. <productMenu id="fmradio"
  3279. type="0" >
  3280. </productMenu>
  3281. <productMenu id="phone"
  3282. type="1" >
  3283. </productMenu>
  3284. <productMenu id="music"
  3285. type="1" >
  3286. </productMenu>
  3287. <productMenu id="musicSharing"
  3288. type="0" >
  3289. </productMenu>
  3290. <productMenu id="deviceSetting"
  3291. type="1"
  3292. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  3293. <productMenuURL version="1.2.4"
  3294. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3295. />
  3296. <productMenuURL version="1.2.1"
  3297. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3298. />
  3299. <productMenuURL version="1.1.2"
  3300. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_05.xml"
  3301. />
  3302. <productMenuURL version="1.0.4"
  3303. url="https://api.sena.com/support/SenaNeoApp/PHANTOMANC/NS_PHANTOM_ANC_01.xml"
  3304. />
  3305. </productMenu>
  3306. <productMenu id="quickGuide"
  3307. type="0"
  3308. url=""
  3309. size="1.12MB" >
  3310. </productMenu>
  3311. <productMenu id="userGuide"
  3312. type="1"
  3313. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3314. size="2.0MB" >
  3315. </productMenu>
  3316. <productMenu id="videoGuide"
  3317. type="0"
  3318. url=""
  3319. size="3.41MB" >
  3320. </productMenu>
  3321. <productMenu id="volume"
  3322. type="16" >
  3323. </productMenu>
  3324. <productMenu id="volume+"
  3325. type="2"
  3326. url="0x6004" >
  3327. </productMenu>
  3328. <productMenu id="soundMode"
  3329. type="1" >
  3330. <productMenuType version="0.9.11"
  3331. type="0"
  3332. />
  3333. </productMenu>
  3334. <productMenu id="battery"
  3335. type="1" >
  3336. </productMenu>
  3337. <productID id="6A01"
  3338. />
  3339. <productGroupable type="0"
  3340. />
  3341. </product>
  3342. <product id="PHANTOM"
  3343. name="PHANTOM ANC"
  3344. series="Helmet"
  3345. latestVersion="1.2.4"
  3346. latestVersionVoicePrompt="1.2"
  3347. show = "-1" >
  3348. <productMenu id="protocol"
  3349. type="2" >
  3350. </productMenu>
  3351. <productMenu id="ota"
  3352. type="2" >
  3353. <otaLanguages>
  3354. <otaLanguage
  3355. id="0"
  3356. name="English"
  3357. package="0"
  3358. />
  3359. <otaLanguage
  3360. id="0"
  3361. name="French"
  3362. package="1"
  3363. />
  3364. <otaLanguage
  3365. id="0"
  3366. name="Spanish"
  3367. package="2"
  3368. />
  3369. <otaLanguage
  3370. id="0"
  3371. name="Italian"
  3372. package="3"
  3373. />
  3374. <otaLanguage
  3375. id="0"
  3376. name="German"
  3377. package="4"
  3378. />
  3379. <otaLanguage
  3380. id="0"
  3381. name="Dutch"
  3382. package="5"
  3383. />
  3384. <otaLanguage
  3385. id="0"
  3386. name="Russian"
  3387. package="6"
  3388. />
  3389. <otaLanguage
  3390. id="0"
  3391. name="Chinese"
  3392. package="7"
  3393. />
  3394. <otaLanguage
  3395. id="0"
  3396. name="Korean"
  3397. package="8"
  3398. />
  3399. <otaLanguage
  3400. id="0"
  3401. name="Japanese"
  3402. package="9"
  3403. />
  3404. <otaLanguage
  3405. id="0"
  3406. name="Finnish"
  3407. package="10"
  3408. />
  3409. <otaLanguage
  3410. id="0"
  3411. name="Polish"
  3412. package="11"
  3413. />
  3414. </otaLanguages>
  3415. <otaPackages>
  3416. <package
  3417. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0.img"
  3418. size="5183988"
  3419. />
  3420. <package
  3421. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-fr-FR.img"
  3422. size="5183988"
  3423. />
  3424. <package
  3425. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-es-ES.img"
  3426. size="5183988"
  3427. />
  3428. <package
  3429. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-it-IT.img"
  3430. size="5183988"
  3431. />
  3432. <package
  3433. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-de-DE.img"
  3434. size="5183988"
  3435. />
  3436. <package
  3437. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-nl-NL.img"
  3438. size="5183988"
  3439. />
  3440. <package
  3441. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-ru-RU.img"
  3442. size="5183988"
  3443. />
  3444. <package
  3445. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-cmn-CN.img"
  3446. size="5183988"
  3447. />
  3448. <package
  3449. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-ko-KR.img"
  3450. size="5183988"
  3451. />
  3452. <package
  3453. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-ja-JP.img"
  3454. size="5183988"
  3455. />
  3456. <package
  3457. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-fi-FI.img"
  3458. size="5183988"
  3459. />
  3460. <package
  3461. url="https://api.sena.com/support/OTA/Motorcycles/PHANTOMANC/PHANTOM_ANC_REV2-v1.2.4-build0-pl-PL.img"
  3462. size="5183988"
  3463. />
  3464. </otaPackages>
  3465. </productMenu>
  3466. <productMenu id="led"
  3467. type="5" >
  3468. </productMenu>
  3469. <productMenu id="led+"
  3470. type="2"
  3471. url="1" >
  3472. </productMenu>
  3473. <productMenu id="meshIntercom"
  3474. type="30" >
  3475. </productMenu>
  3476. <productMenu id="meshIntercom+"
  3477. type="3"
  3478. url="2" >
  3479. </productMenu>
  3480. <productMenu id="waveIntercom"
  3481. type="1" >
  3482. </productMenu>
  3483. <productMenu id="fmradio"
  3484. type="0" >
  3485. </productMenu>
  3486. <productMenu id="phone"
  3487. type="1" >
  3488. </productMenu>
  3489. <productMenu id="music"
  3490. type="1" >
  3491. </productMenu>
  3492. <productMenu id="musicSharing"
  3493. type="0" >
  3494. </productMenu>
  3495. <productMenu id="deviceSetting"
  3496. type="1"
  3497. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  3498. <productMenuURL version="1.2.4"
  3499. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3500. />
  3501. </productMenu>
  3502. <productMenu id="quickGuide"
  3503. type="0"
  3504. url=""
  3505. size="1.12MB" >
  3506. </productMenu>
  3507. <productMenu id="userGuide"
  3508. type="1"
  3509. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3510. size="2.0MB" >
  3511. </productMenu>
  3512. <productMenu id="videoGuide"
  3513. type="0"
  3514. url=""
  3515. size="3.41MB" >
  3516. </productMenu>
  3517. <productMenu id="volume"
  3518. type="16" >
  3519. </productMenu>
  3520. <productMenu id="volume+"
  3521. type="2"
  3522. url="0x6004" >
  3523. </productMenu>
  3524. <productMenu id="soundMode"
  3525. type="1" >
  3526. </productMenu>
  3527. <productMenu id="battery"
  3528. type="1" >
  3529. </productMenu>
  3530. <productID id="6A19"
  3531. />
  3532. <productGroupable type="0"
  3533. />
  3534. </product>
  3535. <product id="PHANTOM"
  3536. name="PHANTOM"
  3537. series="Helmet"
  3538. latestVersion="1.2.4"
  3539. latestVersionVoicePrompt="1.2"
  3540. show = "-1" >
  3541. <productMenu id="protocol"
  3542. type="2" >
  3543. </productMenu>
  3544. <productMenu id="ota"
  3545. type="2" >
  3546. <otaLanguages>
  3547. <otaLanguage
  3548. id="0"
  3549. name="English"
  3550. package="0"
  3551. />
  3552. <otaLanguage
  3553. id="0"
  3554. name="French"
  3555. package="1"
  3556. />
  3557. <otaLanguage
  3558. id="0"
  3559. name="Spanish"
  3560. package="2"
  3561. />
  3562. <otaLanguage
  3563. id="0"
  3564. name="Italian"
  3565. package="3"
  3566. />
  3567. <otaLanguage
  3568. id="0"
  3569. name="German"
  3570. package="4"
  3571. />
  3572. <otaLanguage
  3573. id="0"
  3574. name="Dutch"
  3575. package="5"
  3576. />
  3577. <otaLanguage
  3578. id="0"
  3579. name="Russian"
  3580. package="6"
  3581. />
  3582. <otaLanguage
  3583. id="0"
  3584. name="Chinese"
  3585. package="7"
  3586. />
  3587. <otaLanguage
  3588. id="0"
  3589. name="Korean"
  3590. package="8"
  3591. />
  3592. <otaLanguage
  3593. id="0"
  3594. name="Japanese"
  3595. package="9"
  3596. />
  3597. <otaLanguage
  3598. id="0"
  3599. name="Finnish"
  3600. package="10"
  3601. />
  3602. <otaLanguage
  3603. id="0"
  3604. name="Polish"
  3605. package="11"
  3606. />
  3607. </otaLanguages>
  3608. <otaPackages>
  3609. <package
  3610. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0.img"
  3611. size="5183988"
  3612. />
  3613. <package
  3614. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-fr-FR.img"
  3615. size="5183988"
  3616. />
  3617. <package
  3618. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-es-ES.img"
  3619. size="5183988"
  3620. />
  3621. <package
  3622. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-it-IT.img"
  3623. size="5183988"
  3624. />
  3625. <package
  3626. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-de-DE.img"
  3627. size="5183988"
  3628. />
  3629. <package
  3630. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-nl-NL.img"
  3631. size="5183988"
  3632. />
  3633. <package
  3634. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-ru-RU.img"
  3635. size="5183988"
  3636. />
  3637. <package
  3638. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-cmn-CN.img"
  3639. size="5183988"
  3640. />
  3641. <package
  3642. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-ko-KR.img"
  3643. size="5183988"
  3644. />
  3645. <package
  3646. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-ja-JP.img"
  3647. size="5183988"
  3648. />
  3649. <package
  3650. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-fi-FI.img"
  3651. size="5183988"
  3652. />
  3653. <package
  3654. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM_REV2-v1.2.4-build0-pl-PL.img"
  3655. size="5183988"
  3656. />
  3657. </otaPackages>
  3658. </productMenu>
  3659. <productMenu id="wa"
  3660. type="0" >
  3661. </productMenu>
  3662. <productMenu id="led"
  3663. type="5" >
  3664. </productMenu>
  3665. <productMenu id="led+"
  3666. type="2"
  3667. url="1" >
  3668. </productMenu>
  3669. <productMenu id="meshIntercom"
  3670. type="30" >
  3671. </productMenu>
  3672. <productMenu id="meshIntercom+"
  3673. type="3"
  3674. url="2" >
  3675. </productMenu>
  3676. <productMenu id="waveIntercom"
  3677. type="1" >
  3678. </productMenu>
  3679. <productMenu id="fmradio"
  3680. type="0" >
  3681. </productMenu>
  3682. <productMenu id="phone"
  3683. type="1" >
  3684. </productMenu>
  3685. <productMenu id="music"
  3686. type="1" >
  3687. </productMenu>
  3688. <productMenu id="musicSharing"
  3689. type="0" >
  3690. </productMenu>
  3691. <productMenu id="deviceSetting"
  3692. type="1"
  3693. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  3694. <productMenuURL version="1.2.4"
  3695. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3696. />
  3697. </productMenu>
  3698. <productMenu id="quickGuide"
  3699. type="0"
  3700. url=""
  3701. size="1.52MB" >
  3702. </productMenu>
  3703. <productMenu id="userGuide"
  3704. type="1"
  3705. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3706. size="2.01MB" >
  3707. </productMenu>
  3708. <productMenu id="videoGuide"
  3709. type="0"
  3710. url=""
  3711. size="3.46MB" >
  3712. </productMenu>
  3713. <productMenu id="connectGuide"
  3714. type="1"
  3715. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3716. size="1.1MB" >
  3717. </productMenu>
  3718. <productMenu id="volume"
  3719. type="16" >
  3720. </productMenu>
  3721. <productMenu id="volume+"
  3722. type="2"
  3723. url="0x6004" >
  3724. </productMenu>
  3725. <productMenu id="battery"
  3726. type="1" >
  3727. </productMenu>
  3728. <productID id="6A0E"
  3729. />
  3730. <productGroupable type="0"
  3731. />
  3732. </product>
  3733. <product id="PHANTOM"
  3734. name="PHANTOM"
  3735. series="Helmet"
  3736. latestVersion="1.2.4"
  3737. latestVersionVoicePrompt="1.2"
  3738. show = "1" >
  3739. <productMenu id="protocol"
  3740. type="2" >
  3741. </productMenu>
  3742. <productMenu id="ota"
  3743. type="2" >
  3744. <otaLanguages>
  3745. <otaLanguage
  3746. id="0"
  3747. name="English"
  3748. package="0"
  3749. />
  3750. <otaLanguage
  3751. id="0"
  3752. name="French"
  3753. package="1"
  3754. />
  3755. <otaLanguage
  3756. id="0"
  3757. name="Spanish"
  3758. package="2"
  3759. />
  3760. <otaLanguage
  3761. id="0"
  3762. name="Italian"
  3763. package="3"
  3764. />
  3765. <otaLanguage
  3766. id="0"
  3767. name="German"
  3768. package="4"
  3769. />
  3770. <otaLanguage
  3771. id="0"
  3772. name="Dutch"
  3773. package="5"
  3774. />
  3775. <otaLanguage
  3776. id="0"
  3777. name="Russian"
  3778. package="6"
  3779. />
  3780. <otaLanguage
  3781. id="0"
  3782. name="Chinese"
  3783. package="7"
  3784. />
  3785. <otaLanguage
  3786. id="0"
  3787. name="Korean"
  3788. package="8"
  3789. />
  3790. <otaLanguage
  3791. id="0"
  3792. name="Japanese"
  3793. package="9"
  3794. />
  3795. <otaLanguage
  3796. id="0"
  3797. name="Finnish"
  3798. package="10"
  3799. />
  3800. <otaLanguage
  3801. id="0"
  3802. name="Polish"
  3803. package="11"
  3804. />
  3805. </otaLanguages>
  3806. <otaPackages>
  3807. <package
  3808. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0.img"
  3809. size="5183988"
  3810. />
  3811. <package
  3812. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-fr-FR.img"
  3813. size="5183988"
  3814. />
  3815. <package
  3816. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-es-ES.img"
  3817. size="5183988"
  3818. />
  3819. <package
  3820. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-it-IT.img"
  3821. size="5183988"
  3822. />
  3823. <package
  3824. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-de-DE.img"
  3825. size="5183988"
  3826. />
  3827. <package
  3828. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-nl-NL.img"
  3829. size="5183988"
  3830. />
  3831. <package
  3832. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-ru-RU.img"
  3833. size="5183988"
  3834. />
  3835. <package
  3836. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-cmn-CN.img"
  3837. size="5183988"
  3838. />
  3839. <package
  3840. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-ko-KR.img"
  3841. size="5183988"
  3842. />
  3843. <package
  3844. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-ja-JP.img"
  3845. size="5183988"
  3846. />
  3847. <package
  3848. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-fi-FI.img"
  3849. size="5183988"
  3850. />
  3851. <package
  3852. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v1.2.4-build0-pl-PL.img"
  3853. size="5183988"
  3854. />
  3855. </otaPackages>
  3856. </productMenu>
  3857. <productMenu id="wa"
  3858. type="0" >
  3859. </productMenu>
  3860. <productMenu id="led"
  3861. type="5" >
  3862. <productMenuType version="1.0.1"
  3863. type="4"
  3864. />
  3865. </productMenu>
  3866. <productMenu id="led+"
  3867. type="2"
  3868. url="1" >
  3869. <productMenuType version="1.0.1"
  3870. type="-1"
  3871. />
  3872. </productMenu>
  3873. <productMenu id="meshIntercom"
  3874. type="30" >
  3875. </productMenu>
  3876. <productMenu id="meshIntercom+"
  3877. type="3"
  3878. url="2" >
  3879. <productMenuURL version="1.0.4"
  3880. url="10"
  3881. />
  3882. </productMenu>
  3883. <productMenu id="waveIntercom"
  3884. type="1" >
  3885. <productMenuType version="1.0.9"
  3886. type="0"
  3887. />
  3888. </productMenu>
  3889. <productMenu id="fmradio"
  3890. type="0" >
  3891. </productMenu>
  3892. <productMenu id="phone"
  3893. type="1" >
  3894. </productMenu>
  3895. <productMenu id="music"
  3896. type="1" >
  3897. </productMenu>
  3898. <productMenu id="musicSharing"
  3899. type="0" >
  3900. </productMenu>
  3901. <productMenu id="deviceSetting"
  3902. type="1"
  3903. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_10.xml" >
  3904. <productMenuURL version="1.2.4"
  3905. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  3906. />
  3907. <productMenuURL version="1.2.1"
  3908. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  3909. />
  3910. <productMenuURL version="1.0.4"
  3911. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_02.xml"
  3912. />
  3913. <productMenuURL version="1.0.1"
  3914. url="https://api.sena.com/support/test/xml/NS_PHANTOM_Test_11.xml"
  3915. />
  3916. </productMenu>
  3917. <productMenu id="quickGuide"
  3918. type="0"
  3919. url=""
  3920. size="1.12MB" >
  3921. </productMenu>
  3922. <productMenu id="userGuide"
  3923. type="1"
  3924. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_PHANTOM_Series_1.1.0_en_251001.pdf"
  3925. size="2.0MB" >
  3926. </productMenu>
  3927. <productMenu id="videoGuide"
  3928. type="0"
  3929. url=""
  3930. size="3.41MB" >
  3931. </productMenu>
  3932. <productMenu id="connectGuide"
  3933. type="1"
  3934. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  3935. size="1.12MB" >
  3936. </productMenu>
  3937. <productMenu id="volume"
  3938. type="16" >
  3939. <productMenuType version="1.0"
  3940. type="13"
  3941. />
  3942. </productMenu>
  3943. <productMenu id="volume+"
  3944. type="2"
  3945. url="0x6004" >
  3946. </productMenu>
  3947. <productMenu id="battery"
  3948. type="1" >
  3949. </productMenu>
  3950. <productID id="6A04"
  3951. />
  3952. <productGroupable type="0"
  3953. />
  3954. </product>
  3955. <product id="PHANTOMEasyLink"
  3956. name="PHANTOM EasyLink"
  3957. series="Helmet"
  3958. latestVersion="0.1"
  3959. latestVersionVoicePrompt="1.2"
  3960. show = "-1" >
  3961. <productMenu id="protocol"
  3962. type="2" >
  3963. </productMenu>
  3964. <productMenu id="ota"
  3965. type="0" >
  3966. <otaLanguages>
  3967. <otaLanguage
  3968. id="0"
  3969. name="English"
  3970. package="0"
  3971. />
  3972. <otaLanguage
  3973. id="0"
  3974. name="French"
  3975. package="1"
  3976. />
  3977. <otaLanguage
  3978. id="0"
  3979. name="Spanish"
  3980. package="2"
  3981. />
  3982. <otaLanguage
  3983. id="0"
  3984. name="Italian"
  3985. package="3"
  3986. />
  3987. <otaLanguage
  3988. id="0"
  3989. name="German"
  3990. package="4"
  3991. />
  3992. <otaLanguage
  3993. id="0"
  3994. name="Dutch"
  3995. package="5"
  3996. />
  3997. <otaLanguage
  3998. id="0"
  3999. name="Russian"
  4000. package="6"
  4001. />
  4002. <otaLanguage
  4003. id="0"
  4004. name="Chinese"
  4005. package="7"
  4006. />
  4007. <otaLanguage
  4008. id="0"
  4009. name="Korean"
  4010. package="8"
  4011. />
  4012. <otaLanguage
  4013. id="0"
  4014. name="Japanese"
  4015. package="9"
  4016. />
  4017. <otaLanguage
  4018. id="0"
  4019. name="Finnish"
  4020. package="10"
  4021. />
  4022. <otaLanguage
  4023. id="0"
  4024. name="Polish"
  4025. package="11"
  4026. />
  4027. </otaLanguages>
  4028. <otaPackages>
  4029. <package
  4030. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1.img"
  4031. size="5183988"
  4032. />
  4033. <package
  4034. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fr-FR.img"
  4035. size="5183988"
  4036. />
  4037. <package
  4038. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-es-ES.img"
  4039. size="5183988"
  4040. />
  4041. <package
  4042. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-it-IT.img"
  4043. size="5183988"
  4044. />
  4045. <package
  4046. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-de-DE.img"
  4047. size="5183988"
  4048. />
  4049. <package
  4050. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-nl-NL.img"
  4051. size="5183988"
  4052. />
  4053. <package
  4054. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ru-RU.img"
  4055. size="5183988"
  4056. />
  4057. <package
  4058. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-cmn-CN.img"
  4059. size="5183988"
  4060. />
  4061. <package
  4062. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ko-KR.img"
  4063. size="5183988"
  4064. />
  4065. <package
  4066. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-ja-JP.img"
  4067. size="5183988"
  4068. />
  4069. <package
  4070. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-fi-FI.img"
  4071. size="5183988"
  4072. />
  4073. <package
  4074. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOMeasy-v1.2.2-build1-pl-PL.img"
  4075. size="5183988"
  4076. />
  4077. </otaPackages>
  4078. </productMenu>
  4079. <productMenu id="meshIntercom"
  4080. type="30" >
  4081. </productMenu>
  4082. <productMenu id="meshIntercom+"
  4083. type="3"
  4084. url="2" >
  4085. </productMenu>
  4086. <productMenu id="waveIntercom"
  4087. type="1" >
  4088. </productMenu>
  4089. <productMenu id="fmradio"
  4090. type="0" >
  4091. </productMenu>
  4092. <productMenu id="phone"
  4093. type="1" >
  4094. </productMenu>
  4095. <productMenu id="music"
  4096. type="1" >
  4097. </productMenu>
  4098. <productMenu id="musicSharing"
  4099. type="0" >
  4100. </productMenu>
  4101. <productMenu id="deviceSetting"
  4102. type="1"
  4103. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml" >
  4104. </productMenu>
  4105. <productMenu id="quickGuide"
  4106. type="0"
  4107. url=""
  4108. size="1.12MB" >
  4109. </productMenu>
  4110. <productMenu id="userGuide"
  4111. type="1"
  4112. url=""
  4113. size="2.0MB" >
  4114. </productMenu>
  4115. <productMenu id="videoGuide"
  4116. type="0"
  4117. url=""
  4118. size="3.41MB" >
  4119. </productMenu>
  4120. <productMenu id="connectGuide"
  4121. type="0"
  4122. url=""
  4123. size="1.12MB" >
  4124. </productMenu>
  4125. <productMenu id="volume"
  4126. type="16" >
  4127. </productMenu>
  4128. <productMenu id="battery"
  4129. type="1" >
  4130. </productMenu>
  4131. <productID id="6A18"
  4132. />
  4133. <productGroupable type="0"
  4134. />
  4135. </product>
  4136. <product id="SPIDERXSlim"
  4137. name="SPIDER X Slim"
  4138. series="SPIDER"
  4139. latestVersion="0.9"
  4140. latestVersionVoicePrompt="1.2"
  4141. show = "-1" >
  4142. <productMenu id="protocol"
  4143. type="2" >
  4144. </productMenu>
  4145. <productMenu id="ota"
  4146. type="2" >
  4147. <otaLanguages>
  4148. <otaLanguage
  4149. id="0"
  4150. name="English"
  4151. package="0"
  4152. />
  4153. <otaLanguage
  4154. id="0"
  4155. name="French"
  4156. package="1"
  4157. />
  4158. <otaLanguage
  4159. id="0"
  4160. name="Spanish"
  4161. package="2"
  4162. />
  4163. <otaLanguage
  4164. id="0"
  4165. name="Italian"
  4166. package="3"
  4167. />
  4168. <otaLanguage
  4169. id="0"
  4170. name="German"
  4171. package="4"
  4172. />
  4173. <otaLanguage
  4174. id="0"
  4175. name="Dutch"
  4176. package="5"
  4177. />
  4178. <otaLanguage
  4179. id="0"
  4180. name="Russian"
  4181. package="6"
  4182. />
  4183. <otaLanguage
  4184. id="0"
  4185. name="Chinese"
  4186. package="7"
  4187. />
  4188. <otaLanguage
  4189. id="0"
  4190. name="Korean"
  4191. package="8"
  4192. />
  4193. <otaLanguage
  4194. id="0"
  4195. name="Japanese"
  4196. package="9"
  4197. />
  4198. <otaLanguage
  4199. id="0"
  4200. name="Finnish"
  4201. package="10"
  4202. />
  4203. <otaLanguage
  4204. id="0"
  4205. name="Polish"
  4206. package="11"
  4207. />
  4208. </otaLanguages>
  4209. <otaPackages>
  4210. <package
  4211. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0.img"
  4212. size="5183988"
  4213. />
  4214. <package
  4215. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fr-FR.img"
  4216. size="5183988"
  4217. />
  4218. <package
  4219. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-es-ES.img"
  4220. size="5183988"
  4221. />
  4222. <package
  4223. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-it-IT.img"
  4224. size="5183988"
  4225. />
  4226. <package
  4227. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-de-DE.img"
  4228. size="5183988"
  4229. />
  4230. <package
  4231. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-nl-NL.img"
  4232. size="5183988"
  4233. />
  4234. <package
  4235. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ru-RU.img"
  4236. size="5183988"
  4237. />
  4238. <package
  4239. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-cmn-CN.img"
  4240. size="5183988"
  4241. />
  4242. <package
  4243. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ko-KR.img"
  4244. size="5183988"
  4245. />
  4246. <package
  4247. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-ja-JP.img"
  4248. size="5183988"
  4249. />
  4250. <package
  4251. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-fi-FI.img"
  4252. size="5183988"
  4253. />
  4254. <package
  4255. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SPIDERXSlim/SPIDER_X_Slim-v0.9-build0-pl-PL.img"
  4256. size="5183988"
  4257. />
  4258. </otaPackages>
  4259. </productMenu>
  4260. <productMenu id="meshIntercom"
  4261. type="30" >
  4262. </productMenu>
  4263. <productMenu id="meshIntercom+"
  4264. type="3"
  4265. url="2" >
  4266. </productMenu>
  4267. <productMenu id="waveIntercom"
  4268. type="1" >
  4269. </productMenu>
  4270. <productMenu id="fmradio"
  4271. type="1"
  4272. url="1" >
  4273. </productMenu>
  4274. <productMenu id="phone"
  4275. type="1" >
  4276. </productMenu>
  4277. <productMenu id="music"
  4278. type="1" >
  4279. </productMenu>
  4280. <productMenu id="musicSharing"
  4281. type="0" >
  4282. </productMenu>
  4283. <productMenu id="deviceSetting"
  4284. type="1"
  4285. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4286. </productMenu>
  4287. <productMenu id="quickGuide"
  4288. type="0"
  4289. url=""
  4290. size="1.12MB" >
  4291. </productMenu>
  4292. <productMenu id="userGuide"
  4293. type="1"
  4294. url=""
  4295. size="2.0MB" >
  4296. </productMenu>
  4297. <productMenu id="videoGuide"
  4298. type="0"
  4299. url=""
  4300. size="3.41MB" >
  4301. </productMenu>
  4302. <productMenu id="volume"
  4303. type="16" >
  4304. </productMenu>
  4305. <productMenu id="volume+"
  4306. type="2"
  4307. url="0x6004" >
  4308. </productMenu>
  4309. <productMenu id="battery"
  4310. type="1" >
  4311. </productMenu>
  4312. <productID id="6A07"
  4313. />
  4314. <productGroupable type="0"
  4315. />
  4316. </product>
  4317. <product id="XFITM"
  4318. name="X-FIT M"
  4319. series="SPIDER"
  4320. latestVersion="0.1.11"
  4321. latestVersionVoicePrompt="1.1"
  4322. show = "-1" >
  4323. <productMenu id="protocol"
  4324. type="2" >
  4325. </productMenu>
  4326. <productMenu id="ota"
  4327. type="0" >
  4328. <otaLanguages>
  4329. <otaLanguage
  4330. id="0"
  4331. name="English"
  4332. package="0"
  4333. />
  4334. <otaLanguage
  4335. id="0"
  4336. name="French"
  4337. package="1"
  4338. />
  4339. <otaLanguage
  4340. id="0"
  4341. name="Spanish"
  4342. package="2"
  4343. />
  4344. <otaLanguage
  4345. id="0"
  4346. name="Italian"
  4347. package="3"
  4348. />
  4349. <otaLanguage
  4350. id="0"
  4351. name="German"
  4352. package="4"
  4353. />
  4354. <otaLanguage
  4355. id="0"
  4356. name="Dutch"
  4357. package="5"
  4358. />
  4359. <otaLanguage
  4360. id="0"
  4361. name="Russian"
  4362. package="6"
  4363. />
  4364. <otaLanguage
  4365. id="0"
  4366. name="Chinese"
  4367. package="7"
  4368. />
  4369. <otaLanguage
  4370. id="0"
  4371. name="Korean"
  4372. package="8"
  4373. />
  4374. <otaLanguage
  4375. id="0"
  4376. name="Japanese"
  4377. package="9"
  4378. />
  4379. <otaLanguage
  4380. id="0"
  4381. name="Finnish"
  4382. package="10"
  4383. />
  4384. <otaLanguage
  4385. id="0"
  4386. name="Polish"
  4387. package="11"
  4388. />
  4389. </otaLanguages>
  4390. <otaPackages>
  4391. <package
  4392. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0.img"
  4393. size="5183988"
  4394. />
  4395. <package
  4396. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fr-FR.img"
  4397. size="5183988"
  4398. />
  4399. <package
  4400. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-es-ES.img"
  4401. size="5183988"
  4402. />
  4403. <package
  4404. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-it-IT.img"
  4405. size="5183988"
  4406. />
  4407. <package
  4408. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-de-DE.img"
  4409. size="5183988"
  4410. />
  4411. <package
  4412. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-nl-NL.img"
  4413. size="5183988"
  4414. />
  4415. <package
  4416. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ru-RU.img"
  4417. size="5183988"
  4418. />
  4419. <package
  4420. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-cmn-CN.img"
  4421. size="5183988"
  4422. />
  4423. <package
  4424. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ko-KR.img"
  4425. size="5183988"
  4426. />
  4427. <package
  4428. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-ja-JP.img"
  4429. size="5183988"
  4430. />
  4431. <package
  4432. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-fi-FI.img"
  4433. size="5183988"
  4434. />
  4435. <package
  4436. url="https://api.sena.com/support/OTA/PHANTOM/XFITM-v2.0-build0-pl-PL.img"
  4437. size="5183988"
  4438. />
  4439. </otaPackages>
  4440. </productMenu>
  4441. <productMenu id="meshIntercom"
  4442. type="30" >
  4443. </productMenu>
  4444. <productMenu id="meshIntercom+"
  4445. type="3"
  4446. url="2" >
  4447. </productMenu>
  4448. <productMenu id="waveIntercom"
  4449. type="1" >
  4450. </productMenu>
  4451. <productMenu id="fmradio"
  4452. type="1"
  4453. url="1" >
  4454. </productMenu>
  4455. <productMenu id="phone"
  4456. type="1" >
  4457. </productMenu>
  4458. <productMenu id="music"
  4459. type="1" >
  4460. </productMenu>
  4461. <productMenu id="musicSharing"
  4462. type="0" >
  4463. </productMenu>
  4464. <productMenu id="deviceSetting"
  4465. type="1"
  4466. url="https://api.sena.com/support/SenaNeoApp/SPIDERSlim/NS_SPIDERSlim.xml" >
  4467. </productMenu>
  4468. <productMenu id="quickGuide"
  4469. type="0"
  4470. url=""
  4471. size="1.12MB" >
  4472. </productMenu>
  4473. <productMenu id="userGuide"
  4474. type="1"
  4475. url=""
  4476. size="2.0MB" >
  4477. </productMenu>
  4478. <productMenu id="videoGuide"
  4479. type="0"
  4480. url=""
  4481. size="3.41MB" >
  4482. </productMenu>
  4483. <productMenu id="volume"
  4484. type="16" >
  4485. </productMenu>
  4486. <productMenu id="volume+"
  4487. type="2"
  4488. url="0x6004" >
  4489. </productMenu>
  4490. <productMenu id="battery"
  4491. type="1" >
  4492. </productMenu>
  4493. <productID id="6A17"
  4494. />
  4495. <productGroupable type="0"
  4496. />
  4497. </product>
  4498. <product id="VORTEXMESH"
  4499. name="VORTEX MESH"
  4500. series="Helmet"
  4501. latestVersion="0.1.11"
  4502. latestVersionVoicePrompt="1.1"
  4503. show = "-1" >
  4504. <productMenu id="protocol"
  4505. type="2" >
  4506. </productMenu>
  4507. <productMenu id="ota"
  4508. type="0" >
  4509. <otaLanguages>
  4510. <otaLanguage
  4511. id="0"
  4512. name="English"
  4513. package="0"
  4514. />
  4515. <otaLanguage
  4516. id="0"
  4517. name="French"
  4518. package="1"
  4519. />
  4520. <otaLanguage
  4521. id="0"
  4522. name="Spanish"
  4523. package="2"
  4524. />
  4525. <otaLanguage
  4526. id="0"
  4527. name="Italian"
  4528. package="3"
  4529. />
  4530. <otaLanguage
  4531. id="0"
  4532. name="German"
  4533. package="4"
  4534. />
  4535. <otaLanguage
  4536. id="0"
  4537. name="Dutch"
  4538. package="5"
  4539. />
  4540. <otaLanguage
  4541. id="0"
  4542. name="Russian"
  4543. package="6"
  4544. />
  4545. <otaLanguage
  4546. id="0"
  4547. name="Chinese"
  4548. package="7"
  4549. />
  4550. <otaLanguage
  4551. id="0"
  4552. name="Korean"
  4553. package="8"
  4554. />
  4555. <otaLanguage
  4556. id="0"
  4557. name="Japanese"
  4558. package="9"
  4559. />
  4560. <otaLanguage
  4561. id="0"
  4562. name="Finnish"
  4563. package="10"
  4564. />
  4565. <otaLanguage
  4566. id="0"
  4567. name="Polish"
  4568. package="11"
  4569. />
  4570. </otaLanguages>
  4571. <otaPackages>
  4572. <package
  4573. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0.img"
  4574. size="5183988"
  4575. />
  4576. <package
  4577. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fr-FR.img"
  4578. size="5183988"
  4579. />
  4580. <package
  4581. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-es-ES.img"
  4582. size="5183988"
  4583. />
  4584. <package
  4585. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-it-IT.img"
  4586. size="5183988"
  4587. />
  4588. <package
  4589. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-de-DE.img"
  4590. size="5183988"
  4591. />
  4592. <package
  4593. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-nl-NL.img"
  4594. size="5183988"
  4595. />
  4596. <package
  4597. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ru-RU.img"
  4598. size="5183988"
  4599. />
  4600. <package
  4601. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-cmn-CN.img"
  4602. size="5183988"
  4603. />
  4604. <package
  4605. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ko-KR.img"
  4606. size="5183988"
  4607. />
  4608. <package
  4609. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-ja-JP.img"
  4610. size="5183988"
  4611. />
  4612. <package
  4613. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-fi-FI.img"
  4614. size="5183988"
  4615. />
  4616. <package
  4617. url="https://api.sena.com/support/OTA/PHANTOM/PHANTOM-v2-build0-pl-PL.img"
  4618. size="5183988"
  4619. />
  4620. </otaPackages>
  4621. </productMenu>
  4622. <productMenu id="wa"
  4623. type="0" >
  4624. </productMenu>
  4625. <productMenu id="led"
  4626. type="5" >
  4627. </productMenu>
  4628. <productMenu id="led+"
  4629. type="2"
  4630. url="1" >
  4631. </productMenu>
  4632. <productMenu id="meshIntercom"
  4633. type="30" >
  4634. </productMenu>
  4635. <productMenu id="meshIntercom+"
  4636. type="3"
  4637. url="2" >
  4638. </productMenu>
  4639. <productMenu id="waveIntercom"
  4640. type="1" >
  4641. </productMenu>
  4642. <productMenu id="fmradio"
  4643. type="0" >
  4644. </productMenu>
  4645. <productMenu id="phone"
  4646. type="1" >
  4647. </productMenu>
  4648. <productMenu id="music"
  4649. type="1" >
  4650. </productMenu>
  4651. <productMenu id="musicSharing"
  4652. type="0" >
  4653. </productMenu>
  4654. <productMenu id="deviceSetting"
  4655. type="1"
  4656. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml" >
  4657. </productMenu>
  4658. <productMenu id="quickGuide"
  4659. type="0"
  4660. url=""
  4661. size="1.12MB" >
  4662. </productMenu>
  4663. <productMenu id="userGuide"
  4664. type="1"
  4665. url=""
  4666. size="2.0MB" >
  4667. </productMenu>
  4668. <productMenu id="videoGuide"
  4669. type="0"
  4670. url=""
  4671. size="3.41MB" >
  4672. </productMenu>
  4673. <productMenu id="volume"
  4674. type="16" >
  4675. </productMenu>
  4676. <productMenu id="battery"
  4677. type="1" >
  4678. </productMenu>
  4679. <productID id="6A12"
  4680. />
  4681. <productGroupable type="0"
  4682. />
  4683. </product>
  4684. <product id="Impulse"
  4685. name="Impulse"
  4686. series="Helmet"
  4687. latestVersion="1.4.1"
  4688. show = "1" >
  4689. <productMenu id="protocol"
  4690. type="2" >
  4691. </productMenu>
  4692. <productMenu id="alexa"
  4693. type="0" >
  4694. </productMenu>
  4695. <productMenu id="ota"
  4696. type="0" >
  4697. </productMenu>
  4698. <productMenu id="wa"
  4699. type="24" >
  4700. </productMenu>
  4701. <productMenu id="manager"
  4702. type="0" >
  4703. </productMenu>
  4704. <productMenu id="sip"
  4705. type="1" >
  4706. </productMenu>
  4707. <productMenu id="led"
  4708. type="1" >
  4709. <productMenuType version="1.0.1"
  4710. type="2"
  4711. />
  4712. <productMenuType version="1.0"
  4713. type="1"
  4714. />
  4715. </productMenu>
  4716. <productMenu id="meshIntercom"
  4717. type="30" >
  4718. <productMenuType version="1.1.1"
  4719. type="20"
  4720. />
  4721. </productMenu>
  4722. <productMenu id="meshIntercom+"
  4723. type="3"
  4724. url="2" >
  4725. <productMenuType version="1.3.9"
  4726. type="2"
  4727. />
  4728. <productMenuURL version="1.1.1"
  4729. url="0"
  4730. />
  4731. </productMenu>
  4732. <productMenu id="waveIntercom"
  4733. type="1" >
  4734. <productMenuType version="1.3.9"
  4735. type="0"
  4736. />
  4737. </productMenu>
  4738. <productMenu id="bluetoothIntercom"
  4739. type="1" >
  4740. </productMenu>
  4741. <productMenu id="phone"
  4742. type="1" >
  4743. </productMenu>
  4744. <productMenu id="music"
  4745. type="1" >
  4746. </productMenu>
  4747. <productMenu id="fmradio"
  4748. type="1" >
  4749. </productMenu>
  4750. <productMenu id="deviceSetting"
  4751. type="1"
  4752. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4753. <productMenuURL version="1.3.9"
  4754. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4755. />
  4756. <productMenuURL version="1.1.1"
  4757. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4758. />
  4759. <productMenuURL version="1.0.4"
  4760. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4761. />
  4762. </productMenu>
  4763. <productMenu id="quickGuide"
  4764. type="0"
  4765. url=""
  4766. size="344KB" >
  4767. </productMenu>
  4768. <productMenu id="userGuide"
  4769. type="1"
  4770. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_IMPULSE_1.9.1_en_250731.pdf"
  4771. size="3.41MB" >
  4772. </productMenu>
  4773. <productMenu id="connectGuide"
  4774. type="1"
  4775. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4776. size="1.12MB" >
  4777. </productMenu>
  4778. <productMenu id="volume"
  4779. type="11" >
  4780. </productMenu>
  4781. <productMenu id="battery"
  4782. type="1" >
  4783. </productMenu>
  4784. <productID id="3148"
  4785. />
  4786. <productGroupable type="0"
  4787. />
  4788. </product>
  4789. <product id="Impulse"
  4790. name="Impulse"
  4791. series="Helmet"
  4792. latestVersion="2.0"
  4793. show = "-1" >
  4794. <productMenu id="protocol"
  4795. type="2" >
  4796. </productMenu>
  4797. <productMenu id="alexa"
  4798. type="0" >
  4799. </productMenu>
  4800. <productMenu id="ota"
  4801. type="0" >
  4802. </productMenu>
  4803. <productMenu id="wa"
  4804. type="8" >
  4805. </productMenu>
  4806. <productMenu id="manager"
  4807. type="0" >
  4808. </productMenu>
  4809. <productMenu id="sip"
  4810. type="1" >
  4811. </productMenu>
  4812. <productMenu id="led"
  4813. type="3" >
  4814. </productMenu>
  4815. <productMenu id="meshIntercom"
  4816. type="20" >
  4817. </productMenu>
  4818. <productMenu id="bluetoothIntercom"
  4819. type="1" >
  4820. </productMenu>
  4821. <productMenu id="phone"
  4822. type="1" >
  4823. </productMenu>
  4824. <productMenu id="music"
  4825. type="1" >
  4826. </productMenu>
  4827. <productMenu id="fmradio"
  4828. type="1" >
  4829. </productMenu>
  4830. <productMenu id="deviceSetting"
  4831. type="1"
  4832. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml" >
  4833. </productMenu>
  4834. <productMenu id="quickGuide"
  4835. type="1"
  4836. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_IMPULSE_1.4.0_en_230424.pdf"
  4837. size="344KB" >
  4838. </productMenu>
  4839. <productMenu id="userGuide"
  4840. type="1"
  4841. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_IMPULSE_1.7.0_en_230424.pdf"
  4842. size="3.41MB" >
  4843. </productMenu>
  4844. <productMenu id="volume"
  4845. type="11" >
  4846. </productMenu>
  4847. <productMenu id="battery"
  4848. type="1" >
  4849. </productMenu>
  4850. <productID id="3221"
  4851. />
  4852. <productGroupable type="0"
  4853. />
  4854. </product>
  4855. <product id="Stryker"
  4856. name="Stryker"
  4857. series="Helmet"
  4858. latestVersion="1.4.1"
  4859. show = "1" >
  4860. <productMenu id="protocol"
  4861. type="2" >
  4862. </productMenu>
  4863. <productMenu id="alexa"
  4864. type="0" >
  4865. </productMenu>
  4866. <productMenu id="ota"
  4867. type="0" >
  4868. </productMenu>
  4869. <productMenu id="wa"
  4870. type="40" >
  4871. </productMenu>
  4872. <productMenu id="manager"
  4873. type="0" >
  4874. </productMenu>
  4875. <productMenu id="sip"
  4876. type="1" >
  4877. </productMenu>
  4878. <productMenu id="led"
  4879. type="1" >
  4880. <productMenuType version="1.0.1"
  4881. type="2"
  4882. />
  4883. <productMenuType version="1.0"
  4884. type="1"
  4885. />
  4886. </productMenu>
  4887. <productMenu id="meshIntercom"
  4888. type="30" >
  4889. <productMenuType version="1.1.1"
  4890. type="20"
  4891. />
  4892. </productMenu>
  4893. <productMenu id="meshIntercom+"
  4894. type="3"
  4895. url="2" >
  4896. <productMenuType version="1.3.9"
  4897. type="2"
  4898. />
  4899. <productMenuURL version="1.1.1"
  4900. url="0"
  4901. />
  4902. </productMenu>
  4903. <productMenu id="waveIntercom"
  4904. type="1" >
  4905. <productMenuType version="1.2.9"
  4906. type="0"
  4907. />
  4908. </productMenu>
  4909. <productMenu id="bluetoothIntercom"
  4910. type="1" >
  4911. </productMenu>
  4912. <productMenu id="phone"
  4913. type="1" >
  4914. </productMenu>
  4915. <productMenu id="music"
  4916. type="1" >
  4917. </productMenu>
  4918. <productMenu id="fmradio"
  4919. type="1" >
  4920. </productMenu>
  4921. <productMenu id="deviceSetting"
  4922. type="1"
  4923. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_06.xml" >
  4924. <productMenuURL version="1.3.9"
  4925. url="https://api.sena.com/support/SenaNeoApp/Impulse/NS_IMPULSE_05.xml"
  4926. />
  4927. <productMenuURL version="1.1.1"
  4928. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_03_HKAudio.xml"
  4929. />
  4930. <productMenuURL version="1.0.4"
  4931. url="https://api.sena.com/support/SenaNeoApp/50/NS_IMPULSE_02.xml"
  4932. />
  4933. </productMenu>
  4934. <productMenu id="quickGuide"
  4935. type="0"
  4936. url=""
  4937. size="344KB" >
  4938. </productMenu>
  4939. <productMenu id="userGuide"
  4940. type="1"
  4941. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_STRYKER_1.7.1_en_250731.pdf"
  4942. size="3.41MB" >
  4943. </productMenu>
  4944. <productMenu id="connectGuide"
  4945. type="1"
  4946. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  4947. size="1.12MB" >
  4948. </productMenu>
  4949. <productMenu id="volume"
  4950. type="11" >
  4951. </productMenu>
  4952. <productMenu id="battery"
  4953. type="1" >
  4954. </productMenu>
  4955. <productID id="3154"
  4956. />
  4957. <productGroupable type="0"
  4958. />
  4959. </product>
  4960. <product id="SRL3Plus"
  4961. name="SRL3 Plus"
  4962. series="60"
  4963. latestVersion="0.9.5"
  4964. latestVersionMesh="0.19"
  4965. latestVersionVoicePrompt="1.2"
  4966. show = "-1" >
  4967. <productMenu id="protocol"
  4968. type="2" >
  4969. </productMenu>
  4970. <productMenu id="ota"
  4971. type="2" >
  4972. <otaLanguages>
  4973. <otaLanguage
  4974. id="0"
  4975. name="English"
  4976. package="0"
  4977. />
  4978. <otaLanguage
  4979. id="0"
  4980. name="French"
  4981. package="1"
  4982. />
  4983. <otaLanguage
  4984. id="0"
  4985. name="Spanish"
  4986. package="2"
  4987. />
  4988. <otaLanguage
  4989. id="0"
  4990. name="Italian"
  4991. package="3"
  4992. />
  4993. <otaLanguage
  4994. id="0"
  4995. name="German"
  4996. package="4"
  4997. />
  4998. <otaLanguage
  4999. id="0"
  5000. name="Dutch"
  5001. package="5"
  5002. />
  5003. <otaLanguage
  5004. id="0"
  5005. name="Russian"
  5006. package="6"
  5007. />
  5008. <otaLanguage
  5009. id="0"
  5010. name="Chinese"
  5011. package="7"
  5012. />
  5013. <otaLanguage
  5014. id="0"
  5015. name="Korean"
  5016. package="8"
  5017. />
  5018. <otaLanguage
  5019. id="0"
  5020. name="Japanese"
  5021. package="9"
  5022. />
  5023. <otaLanguage
  5024. id="0"
  5025. name="Finnish"
  5026. package="10"
  5027. />
  5028. </otaLanguages>
  5029. <otaPackages>
  5030. <package
  5031. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0.img"
  5032. size="5183988"
  5033. />
  5034. <package
  5035. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fr-FR.img"
  5036. size="5183988"
  5037. />
  5038. <package
  5039. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-es-ES.img"
  5040. size="5183988"
  5041. />
  5042. <package
  5043. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-it-IT.img"
  5044. size="5183988"
  5045. />
  5046. <package
  5047. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-de-DE.img"
  5048. size="5183988"
  5049. />
  5050. <package
  5051. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-nl-NL.img"
  5052. size="5183988"
  5053. />
  5054. <package
  5055. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ru-RU.img"
  5056. size="5183988"
  5057. />
  5058. <package
  5059. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-cmn-CN.img"
  5060. size="5183988"
  5061. />
  5062. <package
  5063. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ko-KR.img"
  5064. size="5183988"
  5065. />
  5066. <package
  5067. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-ja-JP.img"
  5068. size="5183988"
  5069. />
  5070. <package
  5071. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/SRL3Plus/SRL3_Plus-v0.9.5-build0-fi-FI.img"
  5072. size="5183988"
  5073. />
  5074. </otaPackages>
  5075. </productMenu>
  5076. <productMenu id="sip"
  5077. type="1" >
  5078. </productMenu>
  5079. <productMenu id="illusion"
  5080. type="1" >
  5081. </productMenu>
  5082. <productMenu id="meshIntercom+"
  5083. type="3"
  5084. url="2" >
  5085. </productMenu>
  5086. <productMenu id="waveIntercom"
  5087. type="1" >
  5088. </productMenu>
  5089. <productMenu id="bluetoothIntercom"
  5090. type="1"
  5091. url="2" >
  5092. </productMenu>
  5093. <productMenu id="bluetoothIntercomGrouping"
  5094. type="0" >
  5095. </productMenu>
  5096. <productMenu id="fmradio"
  5097. type="1"
  5098. url="1" >
  5099. </productMenu>
  5100. <productMenu id="phone"
  5101. type="1" >
  5102. </productMenu>
  5103. <productMenu id="music"
  5104. type="1" >
  5105. </productMenu>
  5106. <productMenu id="musicSharing"
  5107. type="0" >
  5108. </productMenu>
  5109. <productMenu id="deviceSetting"
  5110. type="1"
  5111. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_03.xml" >
  5112. </productMenu>
  5113. <productMenu id="quickGuide"
  5114. type="0"
  5115. url=""
  5116. size="1.12MB" >
  5117. </productMenu>
  5118. <productMenu id="userGuide"
  5119. type="0"
  5120. url=""
  5121. size="2.0MB" >
  5122. </productMenu>
  5123. <productMenu id="videoGuide"
  5124. type="0"
  5125. url=""
  5126. size="3.41MB" >
  5127. </productMenu>
  5128. <productMenu id="volume"
  5129. type="16" >
  5130. </productMenu>
  5131. <productMenu id="soundMode"
  5132. type="1" >
  5133. </productMenu>
  5134. <productMenu id="battery"
  5135. type="1" >
  5136. </productMenu>
  5137. <productID id="6A08"
  5138. />
  5139. <productGroupable type="0"
  5140. />
  5141. </product>
  5142. <product id="SRL3"
  5143. name="SRL3"
  5144. series="SRL"
  5145. latestVersion="1.5"
  5146. show = "1" >
  5147. <productMenu id="protocol"
  5148. type="2" >
  5149. </productMenu>
  5150. <productMenu id="alexa"
  5151. type="0" >
  5152. </productMenu>
  5153. <productMenu id="ota"
  5154. type="0" >
  5155. </productMenu>
  5156. <productMenu id="wa"
  5157. type="1" >
  5158. </productMenu>
  5159. <productMenu id="sip"
  5160. type="1" >
  5161. </productMenu>
  5162. <productMenu id="meshIntercom"
  5163. type="30" >
  5164. </productMenu>
  5165. <productMenu id="meshIntercom+"
  5166. type="3"
  5167. url="2" >
  5168. <productMenuType version="1.3.9"
  5169. type="2"
  5170. />
  5171. </productMenu>
  5172. <productMenu id="waveIntercom"
  5173. type="1" >
  5174. <productMenuType version="1.4.9"
  5175. type="0"
  5176. />
  5177. </productMenu>
  5178. <productMenu id="bluetoothIntercom"
  5179. type="1" >
  5180. </productMenu>
  5181. <productMenu id="phone"
  5182. type="1" >
  5183. </productMenu>
  5184. <productMenu id="music"
  5185. type="1" >
  5186. </productMenu>
  5187. <productMenu id="fmradio"
  5188. type="1" >
  5189. </productMenu>
  5190. <productMenu id="deviceSetting"
  5191. type="1"
  5192. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5193. <productMenuURL version="1.3"
  5194. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5195. />
  5196. </productMenu>
  5197. <productMenu id="quickGuide"
  5198. type="0"
  5199. url=""
  5200. size="344KB" >
  5201. </productMenu>
  5202. <productMenu id="userGuide"
  5203. type="1"
  5204. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL3_1.3.0_en_250822.pdf"
  5205. size="3.41MB" >
  5206. </productMenu>
  5207. <productMenu id="connectGuide"
  5208. type="1"
  5209. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5210. size="1.12MB" >
  5211. </productMenu>
  5212. <productMenu id="volume"
  5213. type="11" >
  5214. </productMenu>
  5215. <productMenu id="battery"
  5216. type="1" >
  5217. </productMenu>
  5218. <productID id="3219"
  5219. />
  5220. <productGroupable type="0"
  5221. />
  5222. </product>
  5223. <product id="SRL_Mesh"
  5224. name="SRL-Mesh"
  5225. series="SRL"
  5226. latestVersion="1.7"
  5227. show = "1" >
  5228. <productMenu id="protocol"
  5229. type="2" >
  5230. </productMenu>
  5231. <productMenu id="alexa"
  5232. type="0" >
  5233. </productMenu>
  5234. <productMenu id="ota"
  5235. type="0" >
  5236. </productMenu>
  5237. <productMenu id="wa"
  5238. type="1" >
  5239. </productMenu>
  5240. <productMenu id="sip"
  5241. type="1" >
  5242. </productMenu>
  5243. <productMenu id="meshIntercom"
  5244. type="30" >
  5245. <productMenuType version="1.1.1"
  5246. type="20"
  5247. />
  5248. </productMenu>
  5249. <productMenu id="meshIntercom+"
  5250. type="3"
  5251. url="2" >
  5252. <productMenuType version="1.5.9"
  5253. type="2"
  5254. />
  5255. <productMenuURL version="1.1.1"
  5256. url="0"
  5257. />
  5258. </productMenu>
  5259. <productMenu id="waveIntercom"
  5260. type="1" >
  5261. <productMenuType version="1.6.9"
  5262. type="0"
  5263. />
  5264. </productMenu>
  5265. <productMenu id="bluetoothIntercom"
  5266. type="1" >
  5267. </productMenu>
  5268. <productMenu id="phone"
  5269. type="1" >
  5270. </productMenu>
  5271. <productMenu id="music"
  5272. type="1" >
  5273. </productMenu>
  5274. <productMenu id="fmradio"
  5275. type="1" >
  5276. </productMenu>
  5277. <productMenu id="deviceSetting"
  5278. type="1"
  5279. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5280. <productMenuURL version="1.5"
  5281. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5282. />
  5283. <productMenuURL version="1.1.1"
  5284. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5285. />
  5286. <productMenuURL version="1.0.3"
  5287. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5288. />
  5289. </productMenu>
  5290. <productMenu id="quickGuide"
  5291. type="0"
  5292. url=""
  5293. size="344KB" >
  5294. </productMenu>
  5295. <productMenu id="userGuide"
  5296. type="1"
  5297. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-Mesh_1.6.0_en_250822.pdf"
  5298. size="3.41MB" >
  5299. </productMenu>
  5300. <productMenu id="connectGuide"
  5301. type="1"
  5302. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5303. size="1.12MB" >
  5304. </productMenu>
  5305. <productMenu id="volume"
  5306. type="11" >
  5307. </productMenu>
  5308. <productMenu id="battery"
  5309. type="1" >
  5310. </productMenu>
  5311. <productID id="3216"
  5312. />
  5313. <productGroupable type="0"
  5314. />
  5315. </product>
  5316. <product id="SRL_EXT"
  5317. name="SRL-EXT"
  5318. series="SRL"
  5319. latestVersion="1.7"
  5320. show = "1" >
  5321. <productMenu id="protocol"
  5322. type="2" >
  5323. </productMenu>
  5324. <productMenu id="alexa"
  5325. type="0" >
  5326. </productMenu>
  5327. <productMenu id="ota"
  5328. type="0" >
  5329. </productMenu>
  5330. <productMenu id="wa"
  5331. type="0" >
  5332. </productMenu>
  5333. <productMenu id="sip"
  5334. type="1" >
  5335. </productMenu>
  5336. <productMenu id="meshIntercom"
  5337. type="30" >
  5338. <productMenuType version="1.1.1"
  5339. type="20"
  5340. />
  5341. </productMenu>
  5342. <productMenu id="meshIntercom+"
  5343. type="3"
  5344. url="2" >
  5345. <productMenuType version="1.5.9"
  5346. type="2"
  5347. />
  5348. <productMenuURL version="1.1.1"
  5349. url="0"
  5350. />
  5351. </productMenu>
  5352. <productMenu id="waveIntercom"
  5353. type="1" >
  5354. <productMenuType version="1.6.9"
  5355. type="0"
  5356. />
  5357. </productMenu>
  5358. <productMenu id="bluetoothIntercom"
  5359. type="1" >
  5360. </productMenu>
  5361. <productMenu id="phone"
  5362. type="1" >
  5363. </productMenu>
  5364. <productMenu id="music"
  5365. type="1" >
  5366. </productMenu>
  5367. <productMenu id="fmradio"
  5368. type="1" >
  5369. </productMenu>
  5370. <productMenu id="deviceSetting"
  5371. type="1"
  5372. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  5373. <productMenuURL version="1.5"
  5374. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_08.xml"
  5375. />
  5376. <productMenuURL version="1.1.1"
  5377. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  5378. />
  5379. <productMenuURL version="1.0.3"
  5380. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  5381. />
  5382. </productMenu>
  5383. <productMenu id="quickGuide"
  5384. type="0"
  5385. url=""
  5386. size="344KB" >
  5387. </productMenu>
  5388. <productMenu id="userGuide"
  5389. type="1"
  5390. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SRL-EXT_1.6.0_en_250822.pdf"
  5391. size="3.41MB" >
  5392. </productMenu>
  5393. <productMenu id="connectGuide"
  5394. type="1"
  5395. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  5396. size="1.12MB" >
  5397. </productMenu>
  5398. <productMenu id="volume"
  5399. type="11" >
  5400. </productMenu>
  5401. <productMenu id="battery"
  5402. type="1" >
  5403. </productMenu>
  5404. <productID id="3212"
  5405. />
  5406. <productGroupable type="0"
  5407. />
  5408. </product>
  5409. <product id="SRL2"
  5410. name="SRL2"
  5411. series="SRL"
  5412. latestVersion="1.0.9"
  5413. show = "1" >
  5414. <productMenu id="protocol"
  5415. type="0">
  5416. </productMenu>
  5417. <productMenu id="sip"
  5418. type="1" >
  5419. </productMenu>
  5420. <productMenu id="bluetoothIntercom"
  5421. type="1" >
  5422. </productMenu>
  5423. <productMenu id="intercomSetting"
  5424. type="1" >
  5425. </productMenu>
  5426. <productMenu id="phone"
  5427. type="2" >
  5428. </productMenu>
  5429. <productMenu id="fmradio"
  5430. type="3" >
  5431. </productMenu>
  5432. <productMenu id="deviceSetting"
  5433. type="1"
  5434. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5435. </productMenu>
  5436. <productMenu id="quickGuide"
  5437. type="1"
  5438. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SRL2_1.2.0_en_240207.pdf"
  5439. size="846KB" >
  5440. </productMenu>
  5441. <productMenu id="userGuide"
  5442. type="1"
  5443. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL2_1.1.0_en_220922.pdf"
  5444. size="1.18MB" >
  5445. </productMenu>
  5446. <productMenu id="connectGuide"
  5447. type="1"
  5448. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5449. size="1.12MB" >
  5450. </productMenu>
  5451. <productID id="4530"
  5452. />
  5453. <productGroupable type="1"
  5454. />
  5455. </product>
  5456. <product id="Neotec2"
  5457. name="SRL Neotec2"
  5458. series="SRL"
  5459. latestVersion="1.1.5"
  5460. show = "1" >
  5461. <productMenu id="protocol"
  5462. type="0">
  5463. </productMenu>
  5464. <productMenu id="sip"
  5465. type="1" >
  5466. </productMenu>
  5467. <productMenu id="bluetoothIntercom"
  5468. type="1" >
  5469. </productMenu>
  5470. <productMenu id="intercomSetting"
  5471. type="1" >
  5472. </productMenu>
  5473. <productMenu id="phone"
  5474. type="2" >
  5475. </productMenu>
  5476. <productMenu id="fmradio"
  5477. type="3" >
  5478. </productMenu>
  5479. <productMenu id="deviceSetting"
  5480. type="1"
  5481. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  5482. </productMenu>
  5483. <productMenu id="quickGuide"
  5484. type="0"
  5485. url=""
  5486. size="796KB" >
  5487. </productMenu>
  5488. <productMenu id="userGuide"
  5489. type="1"
  5490. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SRL_for_Shoei_Neotec2_1.1.1_en_250227.pdf"
  5491. size="1.90MB" >
  5492. </productMenu>
  5493. <productMenu id="connectGuide"
  5494. type="1"
  5495. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  5496. size="1.12MB" >
  5497. </productMenu>
  5498. <productID id="4510"
  5499. />
  5500. <productGroupable type="1"
  5501. />
  5502. </product>
  5503. <product id="SPIDERST2ANC"
  5504. name="SPIDER ST2 ANC"
  5505. series="SPIDER"
  5506. latestVersion="0.5.1"
  5507. latestVersionVoicePrompt="0.2"
  5508. latestVersionMesh="0.8"
  5509. show = "-1" >
  5510. <productMenu id="protocol"
  5511. type="2" >
  5512. </productMenu>
  5513. <productMenu id="ota"
  5514. type="0" >
  5515. <otaPackages>
  5516. <package
  5517. url="https://api.sena.com/support/test/60R-v0.5.1-build0_OTA.img"
  5518. size="2945812"
  5519. />
  5520. </otaPackages>
  5521. </productMenu>
  5522. <productMenu id="wa"
  5523. type="0" >
  5524. </productMenu>
  5525. <productMenu id="led"
  5526. type="1" >
  5527. </productMenu>
  5528. <productMenu id="meshIntercom"
  5529. type="30" >
  5530. </productMenu>
  5531. <productMenu id="fmradio"
  5532. type="1" >
  5533. </productMenu>
  5534. <productMenu id="phone"
  5535. type="1" >
  5536. </productMenu>
  5537. <productMenu id="music"
  5538. type="1" >
  5539. </productMenu>
  5540. <productMenu id="musicSharing"
  5541. type="0" >
  5542. </productMenu>
  5543. <productMenu id="deviceSetting"
  5544. type="1"
  5545. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_09.xml" >
  5546. </productMenu>
  5547. <productMenu id="quickGuide"
  5548. type="1"
  5549. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SPIDER_ST1_2.3.0_en_231205.pdf"
  5550. size="1.12MB" >
  5551. </productMenu>
  5552. <productMenu id="userGuide"
  5553. type="1"
  5554. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_2.5.0_en_231204.pdf"
  5555. size="2.0MB" >
  5556. </productMenu>
  5557. <productMenu id="videoGuide"
  5558. type="1"
  5559. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5560. size="3.41MB" >
  5561. </productMenu>
  5562. <productMenu id="volume"
  5563. type="12" >
  5564. </productMenu>
  5565. <productMenu id="battery"
  5566. type="1" >
  5567. </productMenu>
  5568. <productID id="6A00"
  5569. />
  5570. <productGroupable type="0"
  5571. />
  5572. </product>
  5573. <product id="SPIDER_ST1"
  5574. name="SPIDER ST1"
  5575. series="SPIDER"
  5576. latestVersion="2.5.1"
  5577. latestVersionVoicePrompt="1.3"
  5578. show = "1" >
  5579. <productMenu id="protocol"
  5580. type="2" >
  5581. </productMenu>
  5582. <productMenu id="alexa"
  5583. type="0" >
  5584. </productMenu>
  5585. <productMenu id="ota"
  5586. type="2" >
  5587. <productMenuType version="2.1.9"
  5588. type="0"
  5589. />
  5590. <otaPackages>
  5591. <package
  5592. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_ST1-v2.5.1-build2.img"
  5593. size="2945812"
  5594. />
  5595. </otaPackages>
  5596. </productMenu>
  5597. <productMenu id="wa"
  5598. type="0" >
  5599. </productMenu>
  5600. <productMenu id="meshIntercom"
  5601. type="30" >
  5602. <productMenuType version="2.1.1"
  5603. type="20"
  5604. />
  5605. </productMenu>
  5606. <productMenu id="meshIntercom+"
  5607. type="3"
  5608. url="2" >
  5609. <productMenuType version="2.2.9"
  5610. type="2"
  5611. />
  5612. <productMenuURL version="2.1.1"
  5613. url="0"
  5614. />
  5615. </productMenu>
  5616. <productMenu id="waveIntercom"
  5617. type="1" >
  5618. <productMenuType version="2.3.9"
  5619. type="0"
  5620. />
  5621. </productMenu>
  5622. <productMenu id="phone"
  5623. type="1" >
  5624. </productMenu>
  5625. <productMenu id="music"
  5626. type="1" >
  5627. </productMenu>
  5628. <productMenu id="musicSharing"
  5629. type="0" >
  5630. </productMenu>
  5631. <productMenu id="deviceSetting"
  5632. type="1"
  5633. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5634. <productMenuURL version="2.4.9"
  5635. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5636. />
  5637. <productMenuURL version="2.2.2"
  5638. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5639. />
  5640. <productMenuURL version="2.1.1"
  5641. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5642. />
  5643. </productMenu>
  5644. <productMenu id="quickGuide"
  5645. type="0"
  5646. url=""
  5647. size="1.12MB" >
  5648. </productMenu>
  5649. <productMenu id="userGuide"
  5650. type="1"
  5651. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_ST1_2.7.2_en_250327.pdf"
  5652. size="2.0MB" >
  5653. </productMenu>
  5654. <productMenu id="videoGuide"
  5655. type="1"
  5656. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5657. size="3.41MB" >
  5658. </productMenu>
  5659. <productMenu id="connectGuide"
  5660. type="1"
  5661. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5662. size="1.12MB" >
  5663. </productMenu>
  5664. <productMenu id="volume"
  5665. type="12" >
  5666. </productMenu>
  5667. <productMenu id="battery"
  5668. type="1" >
  5669. </productMenu>
  5670. <productID id="6800"
  5671. />
  5672. <productGroupable type="0"
  5673. />
  5674. </product>
  5675. <product id="SPIDER_ST1"
  5676. name="SPIDER ST1"
  5677. series="SPIDER"
  5678. latestVersion="1.2.2"
  5679. show = "-1" >
  5680. <productMenu id="protocol"
  5681. type="2" >
  5682. </productMenu>
  5683. <productMenu id="alexa"
  5684. type="0" >
  5685. </productMenu>
  5686. <productMenu id="ota"
  5687. type="0" >
  5688. </productMenu>
  5689. <productMenu id="wa"
  5690. type="0" >
  5691. </productMenu>
  5692. <productMenu id="meshIntercom"
  5693. type="20" >
  5694. </productMenu>
  5695. <productMenu id="phone"
  5696. type="1" >
  5697. </productMenu>
  5698. <productMenu id="music"
  5699. type="1" >
  5700. </productMenu>
  5701. <productMenu id="deviceSetting"
  5702. type="1"
  5703. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5704. </productMenu>
  5705. <productMenu id="quickGuide"
  5706. type="0"
  5707. url=""
  5708. size="1.12MB" >
  5709. </productMenu>
  5710. <productMenu id="userGuide"
  5711. type="1"
  5712. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_ST1_1.3.0_en_250326.pdf"
  5713. size="2.0MB" >
  5714. </productMenu>
  5715. <productMenu id="videoGuide"
  5716. type="1"
  5717. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5718. size="3.41MB" >
  5719. </productMenu>
  5720. <productMenu id="volume"
  5721. type="13" >
  5722. <productMenuType version="1.1.6"
  5723. type="14"/>
  5724. </productMenu>
  5725. <productMenu id="battery"
  5726. type="1" >
  5727. </productMenu>
  5728. <productID id="6510"
  5729. />
  5730. <productGroupable type="0"
  5731. />
  5732. </product>
  5733. <product id="SPIDER_RT1"
  5734. name="SPIDER RT1"
  5735. series="SPIDER"
  5736. latestVersion="2.5.1"
  5737. latestVersionVoicePrompt="1.3"
  5738. show = "1" >
  5739. <productMenu id="protocol"
  5740. type="2" >
  5741. </productMenu>
  5742. <productMenu id="alexa"
  5743. type="0" >
  5744. </productMenu>
  5745. <productMenu id="ota"
  5746. type="2" >
  5747. <productMenuType version="2.1.9"
  5748. type="0"
  5749. />
  5750. <otaPackages>
  5751. <package
  5752. url="https://api.sena.com/support/OTA/SPIDER/SPIDER_RT1-v2.5.1-build2.img"
  5753. size="2945812"
  5754. />
  5755. </otaPackages>
  5756. </productMenu>
  5757. <productMenu id="wa"
  5758. type="0" >
  5759. </productMenu>
  5760. <productMenu id="meshIntercom"
  5761. type="30" >
  5762. <productMenuType version="2.1.1"
  5763. type="20"
  5764. />
  5765. </productMenu>
  5766. <productMenu id="meshIntercom+"
  5767. type="3"
  5768. url="2" >
  5769. <productMenuType version="2.2.9"
  5770. type="2"
  5771. />
  5772. <productMenuURL version="2.1.1"
  5773. url="0"
  5774. />
  5775. </productMenu>
  5776. <productMenu id="waveIntercom"
  5777. type="1" >
  5778. <productMenuType version="2.3.9"
  5779. type="0"
  5780. />
  5781. </productMenu>
  5782. <productMenu id="phone"
  5783. type="1" >
  5784. </productMenu>
  5785. <productMenu id="music"
  5786. type="1" >
  5787. </productMenu>
  5788. <productMenu id="musicSharing"
  5789. type="0" >
  5790. </productMenu>
  5791. <productMenu id="deviceSetting"
  5792. type="1"
  5793. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  5794. <productMenuURL version="2.4.9"
  5795. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_04.xml"
  5796. />
  5797. <productMenuURL version="2.2.2"
  5798. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  5799. />
  5800. <productMenuURL version="2.1.1"
  5801. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_01.xml"
  5802. />
  5803. </productMenu>
  5804. <productMenu id="quickGuide"
  5805. type="0"
  5806. url=""
  5807. size="1.12MB" >
  5808. </productMenu>
  5809. <productMenu id="userGuide"
  5810. type="1"
  5811. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPIDER_RT1_2.6.2_en_250325.pdf"
  5812. size="2.0MB" >
  5813. </productMenu>
  5814. <productMenu id="videoGuide"
  5815. type="1"
  5816. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5817. size="3.41MB" >
  5818. </productMenu>
  5819. <productMenu id="connectGuide"
  5820. type="1"
  5821. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  5822. size="1.12MB" >
  5823. </productMenu>
  5824. <productMenu id="volume"
  5825. type="12" >
  5826. </productMenu>
  5827. <productMenu id="battery"
  5828. type="1" >
  5829. </productMenu>
  5830. <productID id="6810"
  5831. />
  5832. <productGroupable type="0"
  5833. />
  5834. </product>
  5835. <product id="SPIDER_RT1"
  5836. name="SPIDER RT1"
  5837. series="SPIDER"
  5838. latestVersion="1.2.2"
  5839. show = "-1" >
  5840. <productMenu id="protocol"
  5841. type="2" >
  5842. </productMenu>
  5843. <productMenu id="alexa"
  5844. type="0" >
  5845. </productMenu>
  5846. <productMenu id="ota"
  5847. type="0" >
  5848. </productMenu>
  5849. <productMenu id="wa"
  5850. type="0" >
  5851. </productMenu>
  5852. <productMenu id="meshIntercom"
  5853. type="20" >
  5854. </productMenu>
  5855. <productMenu id="phone"
  5856. type="1" >
  5857. </productMenu>
  5858. <productMenu id="music"
  5859. type="1" >
  5860. </productMenu>
  5861. <productMenu id="deviceSetting"
  5862. type="1"
  5863. url="https://api.sena.com/support/SenaNeoApp/50/NS_SPIDER_02.xml" >
  5864. </productMenu>
  5865. <productMenu id="quickGuide"
  5866. type="0"
  5867. url=""
  5868. size="1.32MB" >
  5869. </productMenu>
  5870. <productMenu id="userGuide"
  5871. type="1"
  5872. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SPIDER_RT1_1.3.0_en_250324.pdf"
  5873. size="1.79MB" >
  5874. </productMenu>
  5875. <productMenu id="videoGuide"
  5876. type="1"
  5877. url="https://youtube.com/playlist?list=PLXyK8lf8nIEymd8MqvwUz-YjKCQQhgxST"
  5878. size="3.41MB" >
  5879. </productMenu>
  5880. <productMenu id="volume"
  5881. type="13" >
  5882. <productMenuType version="1.1.6"
  5883. type="14"/>
  5884. </productMenu>
  5885. <productMenu id="battery"
  5886. type="1" >
  5887. </productMenu>
  5888. <productID id="6500"
  5889. />
  5890. <productGroupable type="0"
  5891. />
  5892. </product>
  5893. <product id="30K"
  5894. name="30K"
  5895. series="30"
  5896. latestVersion="4.5"
  5897. show = "1" >
  5898. <productMenu id="protocol"
  5899. type="2" >
  5900. </productMenu>
  5901. <productMenu id="alexa"
  5902. type="0" >
  5903. </productMenu>
  5904. <productMenu id="wa"
  5905. type="1" >
  5906. </productMenu>
  5907. <productMenu id="sip"
  5908. type="1" >
  5909. </productMenu>
  5910. <productMenu id="meshIntercom"
  5911. type="30" >
  5912. <productMenuType version="4.0.4"
  5913. type="20"
  5914. />
  5915. </productMenu>
  5916. <productMenu id="meshIntercom+"
  5917. type="3"
  5918. url="2" >
  5919. <productMenuType version="4.3.9"
  5920. type="2"
  5921. />
  5922. <productMenuURL version="4.0.4"
  5923. url="0"
  5924. />
  5925. </productMenu>
  5926. <productMenu id="waveIntercom"
  5927. type="1" >
  5928. <productMenuType version="4.4.9"
  5929. type="0"
  5930. />
  5931. </productMenu>
  5932. <productMenu id="bluetoothIntercom"
  5933. type="1" >
  5934. </productMenu>
  5935. <productMenu id="phone"
  5936. type="1" >
  5937. </productMenu>
  5938. <productMenu id="music"
  5939. type="1" >
  5940. </productMenu>
  5941. <productMenu id="fmradio"
  5942. type="1" >
  5943. </productMenu>
  5944. <productMenu id="deviceSetting"
  5945. type="1"
  5946. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_04.xml" >
  5947. <productMenuURL version="4.3"
  5948. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_03.xml"
  5949. />
  5950. <productMenuURL version="4.2"
  5951. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2_02.xml"
  5952. />
  5953. <productMenuURL version="4.0.4"
  5954. url="https://api.sena.com/support/SenaNeoApp/30K/NS_30KV2.xml"
  5955. />
  5956. </productMenu>
  5957. <productMenu id="quickGuide"
  5958. type="0"
  5959. url=""
  5960. size="934KB" >
  5961. </productMenu>
  5962. <productMenu id="userGuide"
  5963. type="1"
  5964. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_30K_4.4.1_en_250331.pdf"
  5965. size="1.14MB" >
  5966. </productMenu>
  5967. <productMenu id="connectGuide"
  5968. type="1"
  5969. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  5970. size="1.12MB" >
  5971. </productMenu>
  5972. <productMenu id="volume"
  5973. type="11" >
  5974. </productMenu>
  5975. <productMenu id="battery"
  5976. type="1" >
  5977. </productMenu>
  5978. <productID id="3211"
  5979. />
  5980. <productGroupable type="0"
  5981. />
  5982. </product>
  5983. <product id="30K"
  5984. name="30K"
  5985. series="30"
  5986. latestVersion="3.5"
  5987. show = "-1" >
  5988. <productMenu id="protocol"
  5989. type="1"
  5990. url="0">
  5991. </productMenu>
  5992. <productMenu id="wa"
  5993. type="7" >
  5994. </productMenu>
  5995. <productMenu id="sip"
  5996. type="1" >
  5997. </productMenu>
  5998. <productMenu id="meshIntercom"
  5999. type="20" >
  6000. <productMenuType version="2.9.9"
  6001. type="10"
  6002. />
  6003. </productMenu>
  6004. <productMenu id="meshIntercom+"
  6005. type="3"
  6006. url="2" >
  6007. <productMenuType version="3.4.9"
  6008. type="2"
  6009. />
  6010. <productMenuType version="2.9.9"
  6011. type="1"
  6012. />
  6013. <productMenuURL version="3.3.1"
  6014. url="0"
  6015. />
  6016. </productMenu>
  6017. <productMenu id="bluetoothIntercom"
  6018. type="1" >
  6019. </productMenu>
  6020. <productMenu id="phone"
  6021. type="1" >
  6022. </productMenu>
  6023. <productMenu id="music"
  6024. type="1" >
  6025. </productMenu>
  6026. <productMenu id="fmradio"
  6027. type="1" >
  6028. </productMenu>
  6029. <productMenu id="deviceSetting"
  6030. type="1"
  6031. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_04.xml">
  6032. <productMenuURL version="3.4.9"
  6033. url="https://api.sena.com/support/SenaNeoApp/30K/DSup_30K_01.xml"
  6034. />
  6035. <productMenuURL version="3.3.1"
  6036. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_HS_v0302fm.xml"
  6037. />
  6038. <productMenuURL version="3.0.1"
  6039. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml"
  6040. />
  6041. <productMenuURL version="2.3.1"
  6042. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0201.xml"
  6043. />
  6044. <productMenuURL version="2.0"
  6045. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  6046. />
  6047. <productMenuURL version="1.0.3"
  6048. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K.xml"
  6049. />
  6050. </productMenu>
  6051. <productMenu id="quickGuide"
  6052. type="0"
  6053. url=""
  6054. size="1.06MB" >
  6055. </productMenu>
  6056. <productMenu id="userGuide"
  6057. type="1"
  6058. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_30K_3.4.1_en_250328.pdf"
  6059. size="3.15MB" >
  6060. </productMenu>
  6061. <productMenu id="volume"
  6062. type="1" >
  6063. </productMenu>
  6064. <productID id="3110"
  6065. />
  6066. <productGroupable type="0"
  6067. />
  6068. </product>
  6069. <product id="FURY"
  6070. name="FURY"
  6071. series="Helmet"
  6072. latestVersion="1.0"
  6073. show = "-1" >
  6074. <productMenu id="protocol"
  6075. type="2" >
  6076. </productMenu>
  6077. <productMenu id="alexa"
  6078. type="0" >
  6079. </productMenu>
  6080. <productMenu id="ota"
  6081. type="0" >
  6082. </productMenu>
  6083. <productMenu id="wa"
  6084. type="0" >
  6085. </productMenu>
  6086. <productMenu id="meshIntercom"
  6087. type="20" >
  6088. </productMenu>
  6089. <productMenu id="phone"
  6090. type="1" >
  6091. </productMenu>
  6092. <productMenu id="music"
  6093. type="1" >
  6094. </productMenu>
  6095. <productMenu id="fmradio"
  6096. type="1" >
  6097. </productMenu>
  6098. <productMenu id="deviceSetting"
  6099. type="1"
  6100. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml" >
  6101. </productMenu>
  6102. <productMenu id="quickGuide"
  6103. type="1"
  6104. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6105. size="1.12MB" >
  6106. </productMenu>
  6107. <productMenu id="userGuide"
  6108. type="1"
  6109. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6110. size="2.0MB" >
  6111. </productMenu>
  6112. <productMenu id="volume"
  6113. type="13" >
  6114. </productMenu>
  6115. <productMenu id="battery"
  6116. type="1" >
  6117. </productMenu>
  6118. <productID id="5552"
  6119. />
  6120. <productGroupable type="0"
  6121. />
  6122. </product>
  6123. <product id="MomentumM"
  6124. name="Momentum EVO"
  6125. series="Helmet"
  6126. latestVersion="2.1.2"
  6127. show = "1" >
  6128. <productMenu id="protocol"
  6129. type="1"
  6130. url="0">
  6131. </productMenu>
  6132. <productMenu id="wa"
  6133. type="3" >
  6134. </productMenu>
  6135. <productMenu id="sip"
  6136. type="1" >
  6137. </productMenu>
  6138. <productMenu id="meshIntercom"
  6139. type="20" >
  6140. <productMenuType version="1.9.9"
  6141. type="10"
  6142. />
  6143. </productMenu>
  6144. <productMenu id="bluetoothIntercom"
  6145. type="1" >
  6146. </productMenu>
  6147. <productMenu id="phone"
  6148. type="1" >
  6149. </productMenu>
  6150. <productMenu id="music"
  6151. type="1" >
  6152. </productMenu>
  6153. <productMenu id="fmradio"
  6154. type="1" >
  6155. </productMenu>
  6156. <productMenu id="deviceSetting"
  6157. type="1"
  6158. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0204.xml">
  6159. <productMenuURL version="1.0.1"
  6160. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_vp_v0201.xml"
  6161. />
  6162. </productMenu>
  6163. <productMenu id="quickGuide"
  6164. type="1"
  6165. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_MOMENTUM_EVO_2.0.1_en_200507_D00144.pdf"
  6166. size="1.06MB" >
  6167. </productMenu>
  6168. <productMenu id="userGuide"
  6169. type="1"
  6170. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_MOMENTUM_EVO_2.0.1_en_200507.pdf"
  6171. size="3.15MB" >
  6172. </productMenu>
  6173. <productMenu id="connectGuide"
  6174. type="1"
  6175. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10.json"
  6176. size="1.12MB" >
  6177. </productMenu>
  6178. <productMenu id="volume"
  6179. type="2" >
  6180. </productMenu>
  6181. <productID id="3116"
  6182. />
  6183. <productGroupable type="0"
  6184. />
  6185. </product>
  6186. <product id="Momentum"
  6187. name="Momentum"
  6188. series="Helmet"
  6189. latestVersion="1.0.9"
  6190. show = "1" >
  6191. <productMenu id="protocol"
  6192. type="0">
  6193. </productMenu>
  6194. <productMenu id="sip"
  6195. type="1" >
  6196. </productMenu>
  6197. <productMenu id="bluetoothIntercom"
  6198. type="1" >
  6199. </productMenu>
  6200. <productMenu id="intercomSetting"
  6201. type="1" >
  6202. </productMenu>
  6203. <productMenu id="phone"
  6204. type="2" >
  6205. </productMenu>
  6206. <productMenu id="fmradio"
  6207. type="3" >
  6208. </productMenu>
  6209. <productMenu id="deviceSetting"
  6210. type="1"
  6211. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6212. </productMenu>
  6213. <productMenu id="quickGuide"
  6214. type="1"
  6215. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_02.pdf"
  6216. size="796KB" >
  6217. </productMenu>
  6218. <productMenu id="userGuide"
  6219. type="1"
  6220. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_v1.0_03.pdf"
  6221. size="1.90MB" >
  6222. </productMenu>
  6223. <productMenu id="connectGuide"
  6224. type="1"
  6225. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6226. size="1.12MB" >
  6227. </productMenu>
  6228. <productID id="4310"
  6229. />
  6230. <productGroupable type="1"
  6231. />
  6232. </product>
  6233. <product id="Momentum_Pro"
  6234. name="Momentum Pro"
  6235. series="Helmet"
  6236. latestVersion="1.0.6"
  6237. show = "1" >
  6238. <productMenu id="protocol"
  6239. type="0">
  6240. </productMenu>
  6241. <productMenu id="sip"
  6242. type="1" >
  6243. </productMenu>
  6244. <productMenu id="bluetoothIntercom"
  6245. type="1" >
  6246. </productMenu>
  6247. <productMenu id="intercomSetting"
  6248. type="1" >
  6249. </productMenu>
  6250. <productMenu id="phone"
  6251. type="2" >
  6252. </productMenu>
  6253. <productMenu id="fmradio"
  6254. type="3" >
  6255. </productMenu>
  6256. <productMenu id="deviceSetting"
  6257. type="1"
  6258. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  6259. </productMenu>
  6260. <productMenu id="quickGuide"
  6261. type="1"
  6262. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Pro_02.pdf"
  6263. size="796KB" >
  6264. </productMenu>
  6265. <productMenu id="userGuide"
  6266. type="1"
  6267. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Pro_v1.0_03.pdf"
  6268. size="1.90MB" >
  6269. </productMenu>
  6270. <productMenu id="connectGuide"
  6271. type="1"
  6272. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6273. size="1.12MB" >
  6274. </productMenu>
  6275. <productID id="4330"
  6276. />
  6277. <productGroupable type="1"
  6278. />
  6279. </product>
  6280. <product id="Momentum_INC"
  6281. name="Momentum INC"
  6282. series="Helmet"
  6283. latestVersion="1.0.7"
  6284. show = "1" >
  6285. <productMenu id="protocol"
  6286. type="0">
  6287. </productMenu>
  6288. <productMenu id="sip"
  6289. type="1" >
  6290. </productMenu>
  6291. <productMenu id="bluetoothIntercom"
  6292. type="1" >
  6293. </productMenu>
  6294. <productMenu id="intercomSetting"
  6295. type="1" >
  6296. </productMenu>
  6297. <productMenu id="phone"
  6298. type="2" >
  6299. </productMenu>
  6300. <productMenu id="fmradio"
  6301. type="3" >
  6302. </productMenu>
  6303. <productMenu id="deviceSetting"
  6304. type="1"
  6305. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6306. </productMenu>
  6307. <productMenu id="quickGuide"
  6308. type="1"
  6309. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_02.pdf"
  6310. size="794KB" >
  6311. </productMenu>
  6312. <productMenu id="userGuide"
  6313. type="1"
  6314. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_v1.0_03.pdf"
  6315. size="1.53MB" >
  6316. </productMenu>
  6317. <productMenu id="connectGuide"
  6318. type="1"
  6319. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6320. size="1.12MB" >
  6321. </productMenu>
  6322. <productID id="4410"
  6323. />
  6324. <productGroupable type="1"
  6325. />
  6326. </product>
  6327. <product id="Momentum_INCP"
  6328. name="Momentum INC Pro"
  6329. series="Helmet"
  6330. latestVersion="1.0.4"
  6331. show = "1" >
  6332. <productMenu id="protocol"
  6333. type="0">
  6334. </productMenu>
  6335. <productMenu id="sip"
  6336. type="1" >
  6337. </productMenu>
  6338. <productMenu id="bluetoothIntercom"
  6339. type="1" >
  6340. </productMenu>
  6341. <productMenu id="intercomSetting"
  6342. type="1" >
  6343. </productMenu>
  6344. <productMenu id="phone"
  6345. type="2" >
  6346. </productMenu>
  6347. <productMenu id="fmradio"
  6348. type="3" >
  6349. </productMenu>
  6350. <productMenu id="deviceSetting"
  6351. type="1"
  6352. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_INC.xml" >
  6353. </productMenu>
  6354. <productMenu id="quickGuide"
  6355. type="1"
  6356. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_INC_Pro_02.pdf"
  6357. size="794KB" >
  6358. </productMenu>
  6359. <productMenu id="userGuide"
  6360. type="1"
  6361. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_INC_Pro_v1.0_03.pdf"
  6362. size="1.53MB" >
  6363. </productMenu>
  6364. <productMenu id="connectGuide"
  6365. type="1"
  6366. url="https://api.sena.com/support/ConnectGuide/pluscenter_center12plus1.json"
  6367. size="1.12MB" >
  6368. </productMenu>
  6369. <productID id="4430"
  6370. />
  6371. <productGroupable type="1"
  6372. />
  6373. </product>
  6374. <product id="Momentum_Lite"
  6375. name="Momentum Lite"
  6376. series="Helmet"
  6377. latestVersion="2.0.3"
  6378. show = "1" >
  6379. <productMenu id="protocol"
  6380. type="0">
  6381. </productMenu>
  6382. <productMenu id="sip"
  6383. type="1" >
  6384. </productMenu>
  6385. <productMenu id="bluetoothIntercom"
  6386. type="1" >
  6387. </productMenu>
  6388. <productMenu id="phone"
  6389. type="2" >
  6390. </productMenu>
  6391. <productMenu id="fmradio"
  6392. type="3" >
  6393. </productMenu>
  6394. <productMenu id="deviceSetting"
  6395. type="1"
  6396. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  6397. <productMenuURL version="1.1"
  6398. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum_Lite.xml"
  6399. />
  6400. </productMenu>
  6401. <productMenu id="quickGuide"
  6402. type="1"
  6403. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Momentum_Lite_02.pdf"
  6404. size="790KB" >
  6405. </productMenu>
  6406. <productMenu id="userGuide"
  6407. type="1"
  6408. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Momentum_Lite_v2.0_01.pdf"
  6409. size="1.42MB" >
  6410. </productMenu>
  6411. <productMenu id="connectGuide"
  6412. type="1"
  6413. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  6414. size="1.12MB" >
  6415. </productMenu>
  6416. <productID id="5526"
  6417. />
  6418. <productGroupable type="0"
  6419. />
  6420. </product>
  6421. <product id="OUTRUSHM"
  6422. name="OUTRUSH M"
  6423. series="Helmet"
  6424. latestVersion="1.0"
  6425. show = "-1" >
  6426. <productMenu id="protocol"
  6427. type="2" >
  6428. </productMenu>
  6429. <productMenu id="alexa"
  6430. type="0" >
  6431. </productMenu>
  6432. <productMenu id="ota"
  6433. type="0" >
  6434. </productMenu>
  6435. <productMenu id="wa"
  6436. type="0" >
  6437. </productMenu>
  6438. <productMenu id="meshIntercom"
  6439. type="30" >
  6440. </productMenu>
  6441. <productMenu id="phone"
  6442. type="1" >
  6443. </productMenu>
  6444. <productMenu id="music"
  6445. type="1" >
  6446. </productMenu>
  6447. <productMenu id="fmradio"
  6448. type="1" >
  6449. </productMenu>
  6450. <productMenu id="deviceSetting"
  6451. type="1"
  6452. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHM/NS_OUTRUSHM_01.xml" >
  6453. </productMenu>
  6454. <productMenu id="quickGuide"
  6455. type="1"
  6456. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_FURY_1.0.0_en_220819.pdf"
  6457. size="1.12MB" >
  6458. </productMenu>
  6459. <productMenu id="userGuide"
  6460. type="1"
  6461. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_FURY_1.0.0_en_220822.pdf"
  6462. size="2.0MB" >
  6463. </productMenu>
  6464. <productMenu id="volume"
  6465. type="13" >
  6466. </productMenu>
  6467. <productMenu id="battery"
  6468. type="1" >
  6469. </productMenu>
  6470. <productID id="5600"
  6471. />
  6472. <productGroupable type="0"
  6473. />
  6474. </product>
  6475. <product id="ProRideEVO"
  6476. name="ProRide EVO"
  6477. series="Helmet"
  6478. latestVersion="1.1.2"
  6479. show = "1" >
  6480. <productMenu id="protocol"
  6481. type="0">
  6482. </productMenu>
  6483. <productMenu id="sip"
  6484. type="1" >
  6485. </productMenu>
  6486. <productMenu id="bluetoothIntercom"
  6487. type="1" >
  6488. </productMenu>
  6489. <productMenu id="phone"
  6490. type="2" >
  6491. </productMenu>
  6492. <productMenu id="fmradio"
  6493. type="3" >
  6494. </productMenu>
  6495. <productMenu id="deviceSetting"
  6496. type="1"
  6497. url="https://api.sena.com/support/SenaUtility/ProRide/DS_ProRideEVO_fm.xml" >
  6498. </productMenu>
  6499. <productMenu id="userGuide"
  6500. type="1"
  6501. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ProRide_EVO_1.0.0_kr_LK03(App).pdf"
  6502. size="778KB" >
  6503. </productMenu>
  6504. <productMenu id="connectGuide"
  6505. type="1"
  6506. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6507. size="1.12MB" >
  6508. </productMenu>
  6509. <productID id="5426"
  6510. />
  6511. <productGroupable type="0"
  6512. />
  6513. </product>
  6514. <product id="OUTRUSHR"
  6515. name="OUTRUSH R"
  6516. series="Helmet"
  6517. latestVersion="2.1"
  6518. show = "1" >
  6519. <productMenu id="protocol"
  6520. type="3" >
  6521. </productMenu>
  6522. <productMenu id="sip"
  6523. type="1" >
  6524. </productMenu>
  6525. <productMenu id="bluetoothIntercom"
  6526. type="1" >
  6527. </productMenu>
  6528. <productMenu id="phone"
  6529. type="1" >
  6530. </productMenu>
  6531. <productMenu id="fmradio"
  6532. type="0" >
  6533. </productMenu>
  6534. <productMenu id="deviceSetting"
  6535. type="1"
  6536. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6537. </productMenu>
  6538. <productMenu id="userGuide"
  6539. type="1"
  6540. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_2.0.0_en_250116.pdf"
  6541. size="1.14MB" >
  6542. </productMenu>
  6543. <productMenu id="connectGuide"
  6544. type="1"
  6545. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6546. size="1.12MB" >
  6547. </productMenu>
  6548. <productID id="5440"
  6549. />
  6550. <productGroupable type="0"
  6551. />
  6552. </product>
  6553. <product id="OUTRUSHR"
  6554. name="OUTRUSH R"
  6555. series="Helmet"
  6556. latestVersion="1.1.4"
  6557. show = "-1" >
  6558. <productMenu id="protocol"
  6559. type="0">
  6560. </productMenu>
  6561. <productMenu id="sip"
  6562. type="1" >
  6563. </productMenu>
  6564. <productMenu id="bluetoothIntercom"
  6565. type="1" >
  6566. </productMenu>
  6567. <productMenu id="phone"
  6568. type="2" >
  6569. </productMenu>
  6570. <productMenu id="fmradio"
  6571. type="3" >
  6572. </productMenu>
  6573. <productMenu id="deviceSetting"
  6574. type="1"
  6575. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  6576. </productMenu>
  6577. <productMenu id="userGuide"
  6578. type="1"
  6579. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  6580. size="660KB" >
  6581. </productMenu>
  6582. <productMenu id="connectGuide"
  6583. type="1"
  6584. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6585. size="1.12MB" >
  6586. </productMenu>
  6587. <productID id="5424"
  6588. />
  6589. <productGroupable type="0"
  6590. />
  6591. </product>
  6592. <product id="OUTSTARS"
  6593. name="OUTSTAR S"
  6594. series="Helmet"
  6595. latestVersion="2.0.1"
  6596. show = "-1" >
  6597. <productMenu id="protocol"
  6598. type="3" >
  6599. </productMenu>
  6600. <productMenu id="sip"
  6601. type="1" >
  6602. </productMenu>
  6603. <productMenu id="bluetoothIntercom"
  6604. type="1" >
  6605. </productMenu>
  6606. <productMenu id="phone"
  6607. type="1" >
  6608. </productMenu>
  6609. <productMenu id="fmradio"
  6610. type="0" >
  6611. </productMenu>
  6612. <productMenu id="deviceSetting"
  6613. type="1"
  6614. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  6615. </productMenu>
  6616. <productMenu id="userGuide"
  6617. type="0"
  6618. url=""
  6619. size="1.14MB" >
  6620. </productMenu>
  6621. <productID id="5443"
  6622. />
  6623. <productGroupable type="0"
  6624. />
  6625. </product>
  6626. <product id="OUTSTARS"
  6627. name="OUTSTAR S"
  6628. series="Helmet"
  6629. latestVersion="1.1.4"
  6630. show = "1" >
  6631. <productMenu id="protocol"
  6632. type="0">
  6633. </productMenu>
  6634. <productMenu id="sip"
  6635. type="1" >
  6636. </productMenu>
  6637. <productMenu id="bluetoothIntercom"
  6638. type="1" >
  6639. </productMenu>
  6640. <productMenu id="phone"
  6641. type="2" >
  6642. </productMenu>
  6643. <productMenu id="fmradio"
  6644. type="3" >
  6645. </productMenu>
  6646. <productMenu id="deviceSetting"
  6647. type="1"
  6648. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6649. </productMenu>
  6650. <productMenu id="quickGuide"
  6651. type="1"
  6652. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6653. size="643KB" >
  6654. </productMenu>
  6655. <productMenu id="userGuide"
  6656. type="1"
  6657. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTSTAR_S_1.2.0_en_230704.pdf"
  6658. size="1.15MB" >
  6659. </productMenu>
  6660. <productMenu id="connectGuide"
  6661. type="1"
  6662. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6663. size="1.12MB" >
  6664. </productMenu>
  6665. <productID id="5428"
  6666. />
  6667. <productGroupable type="0"
  6668. />
  6669. </product>
  6670. <product id="OUTRIDE"
  6671. name="OUTRIDE"
  6672. series="Helmet"
  6673. latestVersion="1.0.1"
  6674. show = "1" >
  6675. <productMenu id="protocol"
  6676. type="0">
  6677. </productMenu>
  6678. <productMenu id="sip"
  6679. type="1" >
  6680. </productMenu>
  6681. <productMenu id="bluetoothIntercom"
  6682. type="1" >
  6683. </productMenu>
  6684. <productMenu id="phone"
  6685. type="2" >
  6686. </productMenu>
  6687. <productMenu id="fmradio"
  6688. type="3" >
  6689. </productMenu>
  6690. <productMenu id="deviceSetting"
  6691. type="1"
  6692. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6693. </productMenu>
  6694. <productMenu id="quickGuide"
  6695. type="1"
  6696. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6697. size="643KB" >
  6698. </productMenu>
  6699. <productMenu id="userGuide"
  6700. type="1"
  6701. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRIDE_1.1.1_en_240524.pdf"
  6702. size="660KB" >
  6703. </productMenu>
  6704. <productMenu id="connectGuide"
  6705. type="1"
  6706. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6707. size="1.12MB" >
  6708. </productMenu>
  6709. <productID id="5432"
  6710. />
  6711. <productGroupable type="0"
  6712. />
  6713. </product>
  6714. <product id="OUTFORCE"
  6715. name="OUTFORCE"
  6716. series="Helmet"
  6717. latestVersion="1.0.1"
  6718. show = "1" >
  6719. <productMenu id="protocol"
  6720. type="0">
  6721. </productMenu>
  6722. <productMenu id="sip"
  6723. type="1" >
  6724. </productMenu>
  6725. <productMenu id="bluetoothIntercom"
  6726. type="1" >
  6727. </productMenu>
  6728. <productMenu id="phone"
  6729. type="2" >
  6730. </productMenu>
  6731. <productMenu id="fmradio"
  6732. type="3" >
  6733. </productMenu>
  6734. <productMenu id="deviceSetting"
  6735. type="1"
  6736. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTSTARS.xml" >
  6737. </productMenu>
  6738. <productMenu id="quickGuide"
  6739. type="1"
  6740. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6741. size="643KB" >
  6742. </productMenu>
  6743. <productMenu id="userGuide"
  6744. type="1"
  6745. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTFORCE_1.1.1_en_240524.pdf"
  6746. size="660KB" >
  6747. </productMenu>
  6748. <productMenu id="connectGuide"
  6749. type="1"
  6750. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  6751. size="1.12MB" >
  6752. </productMenu>
  6753. <productID id="5430"
  6754. />
  6755. <productGroupable type="0"
  6756. />
  6757. </product>
  6758. <product id="Rumba"
  6759. name="Rumba"
  6760. series="30"
  6761. latestVersion="2.0"
  6762. show = "-1" >
  6763. <productMenu id="protocol"
  6764. type="3" >
  6765. </productMenu>
  6766. <productMenu id="sip"
  6767. type="1" >
  6768. </productMenu>
  6769. <productMenu id="bluetoothIntercom"
  6770. type="1" >
  6771. </productMenu>
  6772. <productMenu id="deviceSetting"
  6773. type="1"
  6774. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml" >
  6775. </productMenu>
  6776. <productMenu id="quickGuide"
  6777. type="1"
  6778. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_RUMBA_1.0.0_en_201006.pdf"
  6779. size="344KB" >
  6780. </productMenu>
  6781. <productMenu id="userGuide"
  6782. type="1"
  6783. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Rumba_1.0.0_en_201007.pdf"
  6784. size="1.14MB" >
  6785. </productMenu>
  6786. <productID id="6322"
  6787. />
  6788. <productGroupable type="0"
  6789. />
  6790. </product>
  6791. <product id="Savage"
  6792. name="Savage"
  6793. series="Helmet"
  6794. latestVersion="1.2.2"
  6795. show = "1" >
  6796. <productMenu id="protocol"
  6797. type="0">
  6798. </productMenu>
  6799. <productMenu id="sip"
  6800. type="1" >
  6801. </productMenu>
  6802. <productMenu id="bluetoothIntercom"
  6803. type="1" >
  6804. </productMenu>
  6805. <productMenu id="phone"
  6806. type="2" >
  6807. </productMenu>
  6808. <productMenu id="fmradio"
  6809. type="3" >
  6810. </productMenu>
  6811. <productMenu id="deviceSetting"
  6812. type="1"
  6813. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0200.xml" >
  6814. <productMenuURL version="1.9"
  6815. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage_v0102.xml"
  6816. />
  6817. <productMenuURL version="1.1"
  6818. url="https://api.sena.com/support/SenaUtility/Savage/DS_Savage.xml"
  6819. />
  6820. </productMenu>
  6821. <productMenu id="quickGuide"
  6822. type="1"
  6823. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Savage_01.pdf"
  6824. size="796KB" >
  6825. </productMenu>
  6826. <productMenu id="userGuide"
  6827. type="1"
  6828. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_Savage_v1.2_01.pdf"
  6829. size="910KB" >
  6830. </productMenu>
  6831. <productMenu id="connectGuide"
  6832. type="1"
  6833. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  6834. size="1.12MB" >
  6835. </productMenu>
  6836. <productID id="5550"
  6837. />
  6838. <productGroupable type="0"
  6839. />
  6840. </product>
  6841. <product id="SPECTER"
  6842. name="SPECTER"
  6843. series="Helmet"
  6844. latestVersion="1.0.4"
  6845. latestVersionVoicePrompt="1.2"
  6846. show = "-1" >
  6847. <productMenu id="protocol"
  6848. type="2" >
  6849. </productMenu>
  6850. <productMenu id="ota"
  6851. type="2" >
  6852. <otaLanguages>
  6853. <otaLanguage
  6854. id="0"
  6855. name="English"
  6856. package="0"
  6857. />
  6858. <otaLanguage
  6859. id="0"
  6860. name="French"
  6861. package="1"
  6862. />
  6863. <otaLanguage
  6864. id="0"
  6865. name="Spanish"
  6866. package="2"
  6867. />
  6868. <otaLanguage
  6869. id="0"
  6870. name="Italian"
  6871. package="3"
  6872. />
  6873. <otaLanguage
  6874. id="0"
  6875. name="German"
  6876. package="4"
  6877. />
  6878. <otaLanguage
  6879. id="0"
  6880. name="Dutch"
  6881. package="5"
  6882. />
  6883. <otaLanguage
  6884. id="0"
  6885. name="Russian"
  6886. package="6"
  6887. />
  6888. <otaLanguage
  6889. id="0"
  6890. name="Chinese"
  6891. package="7"
  6892. />
  6893. <otaLanguage
  6894. id="0"
  6895. name="Korean"
  6896. package="8"
  6897. />
  6898. <otaLanguage
  6899. id="0"
  6900. name="Japanese"
  6901. package="9"
  6902. />
  6903. <otaLanguage
  6904. id="0"
  6905. name="Finnish"
  6906. package="10"
  6907. />
  6908. <otaLanguage
  6909. id="0"
  6910. name="Polish"
  6911. package="11"
  6912. />
  6913. </otaLanguages>
  6914. <otaPackages>
  6915. <package
  6916. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0.img"
  6917. size="5183988"
  6918. />
  6919. <package
  6920. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-fr-FR.img"
  6921. size="5183988"
  6922. />
  6923. <package
  6924. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-es-ES.img"
  6925. size="5183988"
  6926. />
  6927. <package
  6928. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-it-IT.img"
  6929. size="5183988"
  6930. />
  6931. <package
  6932. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-de-DE.img"
  6933. size="5183988"
  6934. />
  6935. <package
  6936. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-nl-NL.img"
  6937. size="5183988"
  6938. />
  6939. <package
  6940. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-ru-RU.img"
  6941. size="5183988"
  6942. />
  6943. <package
  6944. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-cmn-CN.img"
  6945. size="5183988"
  6946. />
  6947. <package
  6948. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-ko-KR.img"
  6949. size="5183988"
  6950. />
  6951. <package
  6952. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-ja-JP.img"
  6953. size="5183988"
  6954. />
  6955. <package
  6956. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-fi-FI.img"
  6957. size="5183988"
  6958. />
  6959. <package
  6960. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER_REV2-v1.0.4-build0-pl-PL.img"
  6961. size="5183988"
  6962. />
  6963. </otaPackages>
  6964. </productMenu>
  6965. <productMenu id="wa"
  6966. type="0" >
  6967. </productMenu>
  6968. <productMenu id="led"
  6969. type="5" >
  6970. </productMenu>
  6971. <productMenu id="led+"
  6972. type="2"
  6973. url="1" >
  6974. </productMenu>
  6975. <productMenu id="meshIntercom+"
  6976. type="3"
  6977. url="2" >
  6978. </productMenu>
  6979. <productMenu id="waveIntercom"
  6980. type="1" >
  6981. </productMenu>
  6982. <productMenu id="fmradio"
  6983. type="0" >
  6984. </productMenu>
  6985. <productMenu id="phone"
  6986. type="1" >
  6987. </productMenu>
  6988. <productMenu id="music"
  6989. type="1" >
  6990. </productMenu>
  6991. <productMenu id="musicSharing"
  6992. type="0" >
  6993. </productMenu>
  6994. <productMenu id="deviceSetting"
  6995. type="1"
  6996. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  6997. <productMenuURL version="1.0.4"
  6998. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  6999. />
  7000. </productMenu>
  7001. <productMenu id="quickGuide"
  7002. type="0"
  7003. url=""
  7004. size="1.12MB" >
  7005. </productMenu>
  7006. <productMenu id="userGuide"
  7007. type="1"
  7008. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7009. size="2.0MB" >
  7010. </productMenu>
  7011. <productMenu id="videoGuide"
  7012. type="0"
  7013. url=""
  7014. size="3.41MB" >
  7015. </productMenu>
  7016. <productMenu id="volume"
  7017. type="16" >
  7018. </productMenu>
  7019. <productMenu id="volume+"
  7020. type="2"
  7021. url="0x6004" >
  7022. </productMenu>
  7023. <productMenu id="battery"
  7024. type="1" >
  7025. </productMenu>
  7026. <productID id="6A11"
  7027. />
  7028. <productGroupable type="0"
  7029. />
  7030. </product>
  7031. <product id="SPECTER"
  7032. name="SPECTER"
  7033. series="Helmet"
  7034. latestVersion="1.0.4"
  7035. latestVersionVoicePrompt="1.2"
  7036. show = "-1" >
  7037. <productMenu id="protocol"
  7038. type="2" >
  7039. </productMenu>
  7040. <productMenu id="ota"
  7041. type="2" >
  7042. <otaLanguages>
  7043. <otaLanguage
  7044. id="0"
  7045. name="English"
  7046. package="0"
  7047. />
  7048. <otaLanguage
  7049. id="0"
  7050. name="French"
  7051. package="1"
  7052. />
  7053. <otaLanguage
  7054. id="0"
  7055. name="Spanish"
  7056. package="2"
  7057. />
  7058. <otaLanguage
  7059. id="0"
  7060. name="Italian"
  7061. package="3"
  7062. />
  7063. <otaLanguage
  7064. id="0"
  7065. name="German"
  7066. package="4"
  7067. />
  7068. <otaLanguage
  7069. id="0"
  7070. name="Dutch"
  7071. package="5"
  7072. />
  7073. <otaLanguage
  7074. id="0"
  7075. name="Russian"
  7076. package="6"
  7077. />
  7078. <otaLanguage
  7079. id="0"
  7080. name="Chinese"
  7081. package="7"
  7082. />
  7083. <otaLanguage
  7084. id="0"
  7085. name="Korean"
  7086. package="8"
  7087. />
  7088. <otaLanguage
  7089. id="0"
  7090. name="Japanese"
  7091. package="9"
  7092. />
  7093. <otaLanguage
  7094. id="0"
  7095. name="Finnish"
  7096. package="10"
  7097. />
  7098. <otaLanguage
  7099. id="0"
  7100. name="Polish"
  7101. package="11"
  7102. />
  7103. </otaLanguages>
  7104. <otaPackages>
  7105. <package
  7106. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0.img"
  7107. size="5183988"
  7108. />
  7109. <package
  7110. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-fr-FR.img"
  7111. size="5183988"
  7112. />
  7113. <package
  7114. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-es-ES.img"
  7115. size="5183988"
  7116. />
  7117. <package
  7118. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-it-IT.img"
  7119. size="5183988"
  7120. />
  7121. <package
  7122. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-de-DE.img"
  7123. size="5183988"
  7124. />
  7125. <package
  7126. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-nl-NL.img"
  7127. size="5183988"
  7128. />
  7129. <package
  7130. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-ru-RU.img"
  7131. size="5183988"
  7132. />
  7133. <package
  7134. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-cmn-CN.img"
  7135. size="5183988"
  7136. />
  7137. <package
  7138. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-ko-KR.img"
  7139. size="5183988"
  7140. />
  7141. <package
  7142. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-ja-JP.img"
  7143. size="5183988"
  7144. />
  7145. <package
  7146. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-fi-FI.img"
  7147. size="5183988"
  7148. />
  7149. <package
  7150. url="https://api.sena.com/support/OTA/Motorcycles/SPECTOR/SPECTER-v1.0.4-build0-pl-PL.img"
  7151. size="5183988"
  7152. />
  7153. </otaPackages>
  7154. </productMenu>
  7155. <productMenu id="wa"
  7156. type="0" >
  7157. </productMenu>
  7158. <productMenu id="led"
  7159. type="5" >
  7160. </productMenu>
  7161. <productMenu id="led+"
  7162. type="2"
  7163. url="1" >
  7164. </productMenu>
  7165. <productMenu id="meshIntercom+"
  7166. type="3"
  7167. url="2" >
  7168. </productMenu>
  7169. <productMenu id="waveIntercom"
  7170. type="1" >
  7171. </productMenu>
  7172. <productMenu id="fmradio"
  7173. type="0" >
  7174. </productMenu>
  7175. <productMenu id="phone"
  7176. type="1" >
  7177. </productMenu>
  7178. <productMenu id="music"
  7179. type="1" >
  7180. </productMenu>
  7181. <productMenu id="musicSharing"
  7182. type="0" >
  7183. </productMenu>
  7184. <productMenu id="deviceSetting"
  7185. type="1"
  7186. url="https://api.sena.com/support/SenaNeoApp/SPECTER/NS_SPECTER_01.xml" >
  7187. <productMenuURL version="1.0.4"
  7188. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_07.xml"
  7189. />
  7190. <productMenuURL version="1.0"
  7191. url="https://api.sena.com/support/SenaNeoApp/PHANTOM/NS_PHANTOM_06.xml"
  7192. />
  7193. </productMenu>
  7194. <productMenu id="quickGuide"
  7195. type="0"
  7196. url=""
  7197. size="1.12MB" >
  7198. </productMenu>
  7199. <productMenu id="userGuide"
  7200. type="1"
  7201. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SPECTER_1.0.0_en_251201.pdf"
  7202. size="2.0MB" >
  7203. </productMenu>
  7204. <productMenu id="videoGuide"
  7205. type="0"
  7206. url=""
  7207. size="3.41MB" >
  7208. </productMenu>
  7209. <productMenu id="volume"
  7210. type="16" >
  7211. </productMenu>
  7212. <productMenu id="volume+"
  7213. type="2"
  7214. url="0x6004" >
  7215. </productMenu>
  7216. <productMenu id="battery"
  7217. type="1" >
  7218. </productMenu>
  7219. <productID id="6A0A"
  7220. />
  7221. <productGroupable type="0"
  7222. />
  7223. </product>
  7224. <product id="OUTLANDER"
  7225. name="OUTLANDER"
  7226. series="Helmet"
  7227. latestVersion="1.0.4"
  7228. latestVersionVoicePrompt="1.2"
  7229. show = "-1" >
  7230. <productMenu id="protocol"
  7231. type="2" >
  7232. </productMenu>
  7233. <productMenu id="ota"
  7234. type="2" >
  7235. <otaLanguages>
  7236. <otaLanguage
  7237. id="0"
  7238. name="English"
  7239. package="0"
  7240. />
  7241. <otaLanguage
  7242. id="0"
  7243. name="French"
  7244. package="1"
  7245. />
  7246. <otaLanguage
  7247. id="0"
  7248. name="Spanish"
  7249. package="2"
  7250. />
  7251. <otaLanguage
  7252. id="0"
  7253. name="Italian"
  7254. package="3"
  7255. />
  7256. <otaLanguage
  7257. id="0"
  7258. name="German"
  7259. package="4"
  7260. />
  7261. <otaLanguage
  7262. id="0"
  7263. name="Dutch"
  7264. package="5"
  7265. />
  7266. <otaLanguage
  7267. id="0"
  7268. name="Russian"
  7269. package="6"
  7270. />
  7271. <otaLanguage
  7272. id="0"
  7273. name="Chinese"
  7274. package="7"
  7275. />
  7276. <otaLanguage
  7277. id="0"
  7278. name="Korean"
  7279. package="8"
  7280. />
  7281. <otaLanguage
  7282. id="0"
  7283. name="Japanese"
  7284. package="9"
  7285. />
  7286. <otaLanguage
  7287. id="0"
  7288. name="Finnish"
  7289. package="10"
  7290. />
  7291. <otaLanguage
  7292. id="0"
  7293. name="Polish"
  7294. package="11"
  7295. />
  7296. </otaLanguages>
  7297. <otaPackages>
  7298. <package
  7299. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0.img"
  7300. size="5183988"
  7301. />
  7302. <package
  7303. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-fr-FR.img"
  7304. size="5183988"
  7305. />
  7306. <package
  7307. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-es-ES.img"
  7308. size="5183988"
  7309. />
  7310. <package
  7311. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-it-IT.img"
  7312. size="5183988"
  7313. />
  7314. <package
  7315. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-de-DE.img"
  7316. size="5183988"
  7317. />
  7318. <package
  7319. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-nl-NL.img"
  7320. size="5183988"
  7321. />
  7322. <package
  7323. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-ru-RU.img"
  7324. size="5183988"
  7325. />
  7326. <package
  7327. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-cmn-CN.img"
  7328. size="5183988"
  7329. />
  7330. <package
  7331. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-ko-KR.img"
  7332. size="5183988"
  7333. />
  7334. <package
  7335. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-ja-JP.img"
  7336. size="5183988"
  7337. />
  7338. <package
  7339. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-fi-FI.img"
  7340. size="5183988"
  7341. />
  7342. <package
  7343. url="https://api.sena.com/support/OTA/Motorcycles/OUTLANDER/OUTLANDER-v1.0.4-build0-pl-PL.img"
  7344. size="5183988"
  7345. />
  7346. </otaPackages>
  7347. </productMenu>
  7348. <productMenu id="wa"
  7349. type="0" >
  7350. </productMenu>
  7351. <productMenu id="led"
  7352. type="5" >
  7353. </productMenu>
  7354. <productMenu id="led+"
  7355. type="2"
  7356. url="1" >
  7357. </productMenu>
  7358. <productMenu id="meshIntercom+"
  7359. type="3"
  7360. url="2" >
  7361. </productMenu>
  7362. <productMenu id="waveIntercom"
  7363. type="1" >
  7364. </productMenu>
  7365. <productMenu id="fmradio"
  7366. type="0" >
  7367. </productMenu>
  7368. <productMenu id="phone"
  7369. type="1" >
  7370. </productMenu>
  7371. <productMenu id="music"
  7372. type="1" >
  7373. </productMenu>
  7374. <productMenu id="musicSharing"
  7375. type="0" >
  7376. </productMenu>
  7377. <productMenu id="deviceSetting"
  7378. type="1"
  7379. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_04.xml" >
  7380. <productMenuURL version="1.0.4"
  7381. url="https://api.sena.com/support/SenaNeoApp/OUTLANDER/NS_OUTLANDER_01.xml"
  7382. />
  7383. </productMenu>
  7384. <productMenu id="quickGuide"
  7385. type="0"
  7386. url=""
  7387. size="1.12MB" >
  7388. </productMenu>
  7389. <productMenu id="userGuide"
  7390. type="1"
  7391. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTLANDER_1.0.0_en_251210.pdf"
  7392. size="2.0MB" >
  7393. </productMenu>
  7394. <productMenu id="videoGuide"
  7395. type="0"
  7396. url=""
  7397. size="3.41MB" >
  7398. </productMenu>
  7399. <productMenu id="volume"
  7400. type="16" >
  7401. </productMenu>
  7402. <productMenu id="volume+"
  7403. type="2"
  7404. url="0x6004" >
  7405. </productMenu>
  7406. <productMenu id="battery"
  7407. type="1" >
  7408. </productMenu>
  7409. <productID id="6A05"
  7410. />
  7411. <productGroupable type="0"
  7412. />
  7413. </product>
  7414. <product id="OUTRUSH2"
  7415. name="OUTRUSH 2"
  7416. series="Helmet"
  7417. latestVersion="1.0.2"
  7418. latestVersionVoicePrompt="1.1"
  7419. show = "-1" >
  7420. <productMenu id="protocol"
  7421. type="2" >
  7422. </productMenu>
  7423. <productMenu id="alexa"
  7424. type="0" >
  7425. </productMenu>
  7426. <productMenu id="ota"
  7427. type="2" >
  7428. <otaPackages>
  7429. <package
  7430. url="https://api.sena.com/support/OTA/OUTRUSH2/OUTRUSH_2-v1.0.2-build0.img"
  7431. size="2945812"
  7432. />
  7433. </otaPackages>
  7434. </productMenu>
  7435. <productMenu id="meshIntercom+"
  7436. type="3"
  7437. url="2" >
  7438. </productMenu>
  7439. <productMenu id="waveIntercom"
  7440. type="1" >
  7441. </productMenu>
  7442. <productMenu id="phone"
  7443. type="1" >
  7444. </productMenu>
  7445. <productMenu id="music"
  7446. type="1" >
  7447. </productMenu>
  7448. <productMenu id="musicSharing"
  7449. type="0" >
  7450. </productMenu>
  7451. <productMenu id="deviceSetting"
  7452. type="1"
  7453. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7454. <productMenuURL version="1.0"
  7455. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_01.xml"
  7456. />
  7457. </productMenu>
  7458. <productMenu id="quickGuide"
  7459. type="0"
  7460. url=""
  7461. size="1.12MB" >
  7462. </productMenu>
  7463. <productMenu id="userGuide"
  7464. type="1"
  7465. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_2_1.0.0_en_250730.pdf"
  7466. size="2.0MB" >
  7467. </productMenu>
  7468. <productMenu id="volume"
  7469. type="12" >
  7470. </productMenu>
  7471. <productMenu id="battery"
  7472. type="1" >
  7473. </productMenu>
  7474. <productID id="684A"
  7475. />
  7476. <productGroupable type="0"
  7477. />
  7478. </product>
  7479. <product id="OUTSTAR2"
  7480. name="OUTSTAR 2"
  7481. series="Helmet"
  7482. latestVersion="1.0.1"
  7483. latestVersionVoicePrompt="1.1"
  7484. show = "-1" >
  7485. <productMenu id="protocol"
  7486. type="2" >
  7487. </productMenu>
  7488. <productMenu id="alexa"
  7489. type="0" >
  7490. </productMenu>
  7491. <productMenu id="ota"
  7492. type="2" >
  7493. <otaPackages>
  7494. <package
  7495. url="https://api.sena.com/support/OTA/Motorcycles/OUTSTAR2/OUTSTAR_2-v1.0.1-build0.img"
  7496. size="2945812"
  7497. />
  7498. </otaPackages>
  7499. </productMenu>
  7500. <productMenu id="meshIntercom+"
  7501. type="3"
  7502. url="2" >
  7503. </productMenu>
  7504. <productMenu id="waveIntercom"
  7505. type="1" >
  7506. </productMenu>
  7507. <productMenu id="phone"
  7508. type="1" >
  7509. </productMenu>
  7510. <productMenu id="music"
  7511. type="1" >
  7512. </productMenu>
  7513. <productMenu id="musicSharing"
  7514. type="0" >
  7515. </productMenu>
  7516. <productMenu id="deviceSetting"
  7517. type="1"
  7518. url="https://api.sena.com/support/SenaNeoApp/OUTRUSH2/NS_OUTRUSH2_AIROHA_03.xml" >
  7519. </productMenu>
  7520. <productMenu id="quickGuide"
  7521. type="0"
  7522. url=""
  7523. size="1.12MB" >
  7524. </productMenu>
  7525. <productMenu id="userGuide"
  7526. type="1"
  7527. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTSTAR_2_1.0.0_en_250903.pdf"
  7528. size="2.0MB" >
  7529. </productMenu>
  7530. <productMenu id="volume"
  7531. type="12" >
  7532. </productMenu>
  7533. <productMenu id="battery"
  7534. type="1" >
  7535. </productMenu>
  7536. <productID id="684B"
  7537. />
  7538. <productGroupable type="0"
  7539. />
  7540. </product>
  7541. <product id="SURGE"
  7542. name="SURGE"
  7543. series="Helmet"
  7544. latestVersion="1.2"
  7545. latestVersionVoicePrompt="1.3"
  7546. show = "1" >
  7547. <productMenu id="protocol"
  7548. type="2" >
  7549. </productMenu>
  7550. <productMenu id="alexa"
  7551. type="0" >
  7552. </productMenu>
  7553. <productMenu id="ota"
  7554. type="2" >
  7555. <otaPackages>
  7556. <package
  7557. url="https://api.sena.com/support/OTA/SURGE/SURGE-v1.2-build0.img"
  7558. size="2945812"
  7559. />
  7560. </otaPackages>
  7561. </productMenu>
  7562. <productMenu id="meshIntercom"
  7563. type="30" >
  7564. </productMenu>
  7565. <productMenu id="meshIntercom+"
  7566. type="3"
  7567. url="2" >
  7568. <productMenuType version="1.0.1"
  7569. type="2"
  7570. />
  7571. </productMenu>
  7572. <productMenu id="waveIntercom"
  7573. type="1" >
  7574. <productMenuType version="1.0.9"
  7575. type="0"
  7576. />
  7577. </productMenu>
  7578. <productMenu id="phone"
  7579. type="1" >
  7580. </productMenu>
  7581. <productMenu id="music"
  7582. type="1" >
  7583. </productMenu>
  7584. <productMenu id="musicSharing"
  7585. type="0" >
  7586. </productMenu>
  7587. <productMenu id="deviceSetting"
  7588. type="1"
  7589. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA_01.xml" >
  7590. <productMenuURL version="1.1.9"
  7591. url="https://api.sena.com/support/SenaNeoApp/SURGE/NS_SURGE_AIROHA.xml"
  7592. />
  7593. <productMenuURL version="1.0.1"
  7594. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_03.xml"
  7595. />
  7596. </productMenu>
  7597. <productMenu id="quickGuide"
  7598. type="0"
  7599. url=""
  7600. size="1.12MB" >
  7601. </productMenu>
  7602. <productMenu id="userGuide"
  7603. type="1"
  7604. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_SURGE_1.1.1_en_251014.pdf"
  7605. size="2.0MB" >
  7606. </productMenu>
  7607. <productMenu id="volume"
  7608. type="12" >
  7609. </productMenu>
  7610. <productMenu id="battery"
  7611. type="1" >
  7612. </productMenu>
  7613. <productID id="6840"
  7614. />
  7615. <productGroupable type="0"
  7616. />
  7617. </product>
  7618. <product id="Cavalry2"
  7619. name="Cavalry 2"
  7620. series="Helmet"
  7621. latestVersion="1.2"
  7622. latestVersionVoicePrompt="1.3"
  7623. show = "1" >
  7624. <productMenu id="protocol"
  7625. type="2" >
  7626. </productMenu>
  7627. <productMenu id="alexa"
  7628. type="0" >
  7629. </productMenu>
  7630. <productMenu id="ota"
  7631. type="2" >
  7632. <otaPackages>
  7633. <package
  7634. url="https://api.sena.com/support/OTA/Cavalry2/CAVALRY_2-v1.2-build0.img"
  7635. size="3144148"
  7636. />
  7637. </otaPackages>
  7638. </productMenu>
  7639. <productMenu id="wa"
  7640. type="0" >
  7641. </productMenu>
  7642. <productMenu id="meshIntercom"
  7643. type="30" >
  7644. </productMenu>
  7645. <productMenu id="meshIntercom+"
  7646. type="3"
  7647. url="2" >
  7648. <productMenuType version="1.0"
  7649. type="2"
  7650. />
  7651. </productMenu>
  7652. <productMenu id="waveIntercom"
  7653. type="1" >
  7654. <productMenuType version="1.0.9"
  7655. type="0"
  7656. />
  7657. </productMenu>
  7658. <productMenu id="phone"
  7659. type="1" >
  7660. </productMenu>
  7661. <productMenu id="music"
  7662. type="1" >
  7663. </productMenu>
  7664. <productMenu id="musicSharing"
  7665. type="0" >
  7666. </productMenu>
  7667. <productMenu id="deviceSetting"
  7668. type="1"
  7669. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_04.xml" >
  7670. <productMenuURL version="1.1.9"
  7671. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA_03.xml"
  7672. />
  7673. <productMenuURL version="1.0"
  7674. url="https://api.sena.com/support/SenaNeoApp/CavalryM/NS_CavalryM_AIROHA.xml"
  7675. />
  7676. </productMenu>
  7677. <productMenu id="quickGuide"
  7678. type="0"
  7679. url=""
  7680. size="1.12MB" >
  7681. </productMenu>
  7682. <productMenu id="userGuide"
  7683. type="1"
  7684. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_CAVALRY_2_1.2.1_en_251013.pdf"
  7685. size="2.0MB" >
  7686. </productMenu>
  7687. <productMenu id="connectGuide"
  7688. type="1"
  7689. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init.json"
  7690. size="1.12MB" >
  7691. </productMenu>
  7692. <productMenu id="volume"
  7693. type="12" >
  7694. </productMenu>
  7695. <productMenu id="battery"
  7696. type="1" >
  7697. </productMenu>
  7698. <productID id="6839"
  7699. />
  7700. <productGroupable type="0"
  7701. />
  7702. </product>
  7703. <product id="Cavalry"
  7704. name="Cavalry"
  7705. series="Helmet"
  7706. latestVersion="1.2.2"
  7707. show = "1" >
  7708. <productMenu id="protocol"
  7709. type="0">
  7710. </productMenu>
  7711. <productMenu id="sip"
  7712. type="1" >
  7713. </productMenu>
  7714. <productMenu id="bluetoothIntercom"
  7715. type="1" >
  7716. </productMenu>
  7717. <productMenu id="phone"
  7718. type="2" >
  7719. </productMenu>
  7720. <productMenu id="fmradio"
  7721. type="3" >
  7722. </productMenu>
  7723. <productMenu id="deviceSetting"
  7724. type="1"
  7725. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry_v0200.xml" >
  7726. <productMenuURL version="1.9"
  7727. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml"
  7728. />
  7729. <productMenuURL version="1.0.1"
  7730. url="https://api.sena.com/support/SenaUtility/Cavalry/DeviceSetting_Cavalry.xml"
  7731. />
  7732. </productMenu>
  7733. <productMenu id="quickGuide"
  7734. type="1"
  7735. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_Cavalry_01.pdf"
  7736. size="795KB" >
  7737. </productMenu>
  7738. <productMenu id="userGuide"
  7739. type="1"
  7740. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_v1.1_01.pdf"
  7741. size="1.87MB" >
  7742. </productMenu>
  7743. <productMenu id="connectGuide"
  7744. type="1"
  7745. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7746. size="1.12MB" >
  7747. </productMenu>
  7748. <productID id="5524"
  7749. />
  7750. <productGroupable type="0"
  7751. />
  7752. </product>
  7753. <product id="Cavalry_Lite"
  7754. name="Cavalry Lite"
  7755. series="Helmet"
  7756. latestVersion="1.0.2"
  7757. show = "1" >
  7758. <productMenu id="protocol"
  7759. type="0">
  7760. </productMenu>
  7761. <productMenu id="sip"
  7762. type="1" >
  7763. </productMenu>
  7764. <productMenu id="bluetoothIntercom"
  7765. type="1" >
  7766. </productMenu>
  7767. <productMenu id="phone"
  7768. type="2" >
  7769. </productMenu>
  7770. <productMenu id="fmradio"
  7771. type="3" >
  7772. </productMenu>
  7773. <productMenu id="deviceSetting"
  7774. type="1"
  7775. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  7776. </productMenu>
  7777. <productMenu id="userGuide"
  7778. type="1"
  7779. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Cavalry_Lite_v1.0_01.pdf"
  7780. size="1.74MB" >
  7781. </productMenu>
  7782. <productMenu id="connectGuide"
  7783. type="1"
  7784. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  7785. size="1.12MB" >
  7786. </productMenu>
  7787. <productID id="5536"
  7788. />
  7789. <productGroupable type="0"
  7790. />
  7791. </product>
  7792. <product id="SF4"
  7793. name="SF4"
  7794. series="SF"
  7795. latestVersion="1.1.5"
  7796. show = "-1" >
  7797. <productMenu id="protocol"
  7798. type="1"
  7799. url="3">
  7800. </productMenu>
  7801. <productMenu id="sip"
  7802. type="1" >
  7803. </productMenu>
  7804. <productMenu id="bluetoothIntercom"
  7805. type="1" >
  7806. </productMenu>
  7807. <productMenu id="phone"
  7808. type="1" >
  7809. </productMenu>
  7810. <productMenu id="music"
  7811. type="1" >
  7812. </productMenu>
  7813. <productMenu id="fmradio"
  7814. type="1" >
  7815. </productMenu>
  7816. <productMenu id="deviceSetting"
  7817. type="1"
  7818. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7819. <productMenuURL version="1.0.1"
  7820. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7821. />
  7822. </productMenu>
  7823. <productMenu id="quickGuide"
  7824. type="1"
  7825. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF4_1.2.0_en_230704.pdf"
  7826. size="607KB" >
  7827. </productMenu>
  7828. <productMenu id="userGuide"
  7829. type="1"
  7830. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7831. size="1.91MB" >
  7832. </productMenu>
  7833. <productMenu id="volume"
  7834. type="4" >
  7835. </productMenu>
  7836. <productID id="5414"
  7837. />
  7838. <productGroupable type="0"
  7839. />
  7840. </product>
  7841. <product id="SF4"
  7842. name="SF4"
  7843. series="SF"
  7844. latestVersion="3.4.4"
  7845. show = "1" >
  7846. <productMenu id="protocol"
  7847. type="2" >
  7848. </productMenu>
  7849. <productMenu id="sip"
  7850. type="1" >
  7851. </productMenu>
  7852. <productMenu id="bluetoothIntercom"
  7853. type="1" >
  7854. </productMenu>
  7855. <productMenu id="phone"
  7856. type="1" >
  7857. </productMenu>
  7858. <productMenu id="music"
  7859. type="1" >
  7860. </productMenu>
  7861. <productMenu id="fmradio"
  7862. type="1" >
  7863. </productMenu>
  7864. <productMenu id="deviceSetting"
  7865. type="1"
  7866. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_01.xml" >
  7867. <productMenuURL version="3.0"
  7868. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF4_BY.xml"
  7869. />
  7870. </productMenu>
  7871. <productMenu id="quickGuide"
  7872. type="0"
  7873. url=""
  7874. size="934KB" >
  7875. </productMenu>
  7876. <productMenu id="userGuide"
  7877. type="1"
  7878. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7879. size="1.14MB" >
  7880. </productMenu>
  7881. <productMenu id="connectGuide"
  7882. type="1"
  7883. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7884. size="1.12MB" >
  7885. </productMenu>
  7886. <productMenu id="volume"
  7887. type="15" >
  7888. </productMenu>
  7889. <productID id="3370"
  7890. />
  7891. <productGroupable type="0"
  7892. />
  7893. </product>
  7894. <product id="SF2"
  7895. name="SF2"
  7896. series="SF"
  7897. latestVersion="1.2.1"
  7898. show = "-1" >
  7899. <productMenu id="protocol"
  7900. type="1"
  7901. url="2">
  7902. </productMenu>
  7903. <productMenu id="sip"
  7904. type="1" >
  7905. </productMenu>
  7906. <productMenu id="bluetoothIntercom"
  7907. type="1" >
  7908. </productMenu>
  7909. <productMenu id="phone"
  7910. type="1" >
  7911. </productMenu>
  7912. <productMenu id="music"
  7913. type="1" >
  7914. </productMenu>
  7915. <productMenu id="fmradio"
  7916. type="1" >
  7917. </productMenu>
  7918. <productMenu id="deviceSetting"
  7919. type="1"
  7920. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  7921. <productMenuURL version="1.0.1"
  7922. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  7923. />
  7924. </productMenu>
  7925. <productMenu id="quickGuide"
  7926. type="1"
  7927. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF2_1.3.0_en_230704.pdf"
  7928. size="607KB" >
  7929. </productMenu>
  7930. <productMenu id="userGuide"
  7931. type="1"
  7932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  7933. size="1.91MB" >
  7934. </productMenu>
  7935. <productMenu id="volume"
  7936. type="4" >
  7937. </productMenu>
  7938. <productID id="5412"
  7939. />
  7940. <productGroupable type="0"
  7941. />
  7942. </product>
  7943. <product id="SF2"
  7944. name="SF2"
  7945. series="SF"
  7946. latestVersion="3.3.4"
  7947. show = "1" >
  7948. <productMenu id="protocol"
  7949. type="2" >
  7950. </productMenu>
  7951. <productMenu id="sip"
  7952. type="1" >
  7953. </productMenu>
  7954. <productMenu id="bluetoothIntercom"
  7955. type="1" >
  7956. </productMenu>
  7957. <productMenu id="phone"
  7958. type="1" >
  7959. </productMenu>
  7960. <productMenu id="music"
  7961. type="1" >
  7962. </productMenu>
  7963. <productMenu id="fmradio"
  7964. type="0" >
  7965. </productMenu>
  7966. <productMenu id="deviceSetting"
  7967. type="1"
  7968. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  7969. <productMenuURL version="3.0"
  7970. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  7971. />
  7972. </productMenu>
  7973. <productMenu id="quickGuide"
  7974. type="0"
  7975. url=""
  7976. size="934KB" >
  7977. </productMenu>
  7978. <productMenu id="userGuide"
  7979. type="1"
  7980. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  7981. size="1.14MB" >
  7982. </productMenu>
  7983. <productMenu id="connectGuide"
  7984. type="1"
  7985. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  7986. size="1.12MB" >
  7987. </productMenu>
  7988. <productMenu id="volume"
  7989. type="15" >
  7990. </productMenu>
  7991. <productID id="3360"
  7992. />
  7993. <productGroupable type="0"
  7994. />
  7995. </product>
  7996. <product id="SF1"
  7997. name="SF1"
  7998. series="SF"
  7999. latestVersion="2.0.5"
  8000. show = "-1" >
  8001. <productMenu id="protocol"
  8002. type="1"
  8003. url="1">
  8004. </productMenu>
  8005. <productMenu id="sip"
  8006. type="1" >
  8007. </productMenu>
  8008. <productMenu id="bluetoothIntercom"
  8009. type="1" >
  8010. <productMenuType version="1.1"
  8011. type="0"
  8012. />
  8013. </productMenu>
  8014. <productMenu id="phone"
  8015. type="1" >
  8016. </productMenu>
  8017. <productMenu id="music"
  8018. type="1" >
  8019. </productMenu>
  8020. <productMenu id="deviceSetting"
  8021. type="1"
  8022. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0200.xml">
  8023. <productMenuURL version="1.1"
  8024. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1_v0101n.xml"
  8025. />
  8026. <productMenuURL version="1.0"
  8027. url="https://api.sena.com/support/SenaUtility/SF1/DSup_SF1.xml"
  8028. />
  8029. </productMenu>
  8030. <productMenu id="quickGuide"
  8031. type="1"
  8032. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SF1_2.2.0_en_230704.pdf"
  8033. size="401KB" >
  8034. </productMenu>
  8035. <productMenu id="userGuide"
  8036. type="1"
  8037. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_2.4.0_en_250102.pdf"
  8038. size="1.91MB" >
  8039. </productMenu>
  8040. <productMenu id="volume"
  8041. type="3" >
  8042. </productMenu>
  8043. <productID id="5410"
  8044. />
  8045. <productGroupable type="0"
  8046. />
  8047. </product>
  8048. <product id="SF1"
  8049. name="SF1"
  8050. series="SF"
  8051. latestVersion="3.3.4"
  8052. show = "1" >
  8053. <productMenu id="protocol"
  8054. type="2" >
  8055. </productMenu>
  8056. <productMenu id="sip"
  8057. type="1" >
  8058. </productMenu>
  8059. <productMenu id="bluetoothIntercom"
  8060. type="1" >
  8061. </productMenu>
  8062. <productMenu id="phone"
  8063. type="1" >
  8064. </productMenu>
  8065. <productMenu id="music"
  8066. type="1" >
  8067. </productMenu>
  8068. <productMenu id="fmradio"
  8069. type="0" >
  8070. </productMenu>
  8071. <productMenu id="deviceSetting"
  8072. type="1"
  8073. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_01.xml" >
  8074. <productMenuURL version="3.0"
  8075. url="https://api.sena.com/support/SenaNeoApp/QCCSF/NS_QCCSF2_BY.xml"
  8076. />
  8077. </productMenu>
  8078. <productMenu id="quickGuide"
  8079. type="0"
  8080. url=""
  8081. size="934KB" >
  8082. </productMenu>
  8083. <productMenu id="userGuide"
  8084. type="1"
  8085. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SF_Series_3.4.0_en_250407.pdf"
  8086. size="1.14MB" >
  8087. </productMenu>
  8088. <productMenu id="connectGuide"
  8089. type="1"
  8090. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1_init.json"
  8091. size="1.12MB" >
  8092. </productMenu>
  8093. <productMenu id="volume"
  8094. type="15" >
  8095. </productMenu>
  8096. <productID id="3350"
  8097. />
  8098. <productGroupable type="0"
  8099. />
  8100. </product>
  8101. <product id="SFR"
  8102. name="SFR"
  8103. series="SF"
  8104. latestVersion="1.1.1"
  8105. show = "1" >
  8106. <productMenu id="protocol"
  8107. type="1"
  8108. url="3">
  8109. </productMenu>
  8110. <productMenu id="sip"
  8111. type="1" >
  8112. </productMenu>
  8113. <productMenu id="bluetoothIntercom"
  8114. type="1" >
  8115. </productMenu>
  8116. <productMenu id="phone"
  8117. type="1" >
  8118. </productMenu>
  8119. <productMenu id="music"
  8120. type="1" >
  8121. </productMenu>
  8122. <productMenu id="fmradio"
  8123. type="1" >
  8124. </productMenu>
  8125. <productMenu id="deviceSetting"
  8126. type="1"
  8127. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  8128. </productMenu>
  8129. <productMenu id="quickGuide"
  8130. type="1"
  8131. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_SFR_1.3.0_en_230710.pdf"
  8132. size="607KB" >
  8133. </productMenu>
  8134. <productMenu id="userGuide"
  8135. type="1"
  8136. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_SFR_1.3.0_en_230710.pdf"
  8137. size="1.91MB" >
  8138. </productMenu>
  8139. <productMenu id="volume"
  8140. type="4" >
  8141. </productMenu>
  8142. <productID id="5418"
  8143. />
  8144. <productGroupable type="0"
  8145. />
  8146. </product>
  8147. <product id="20S"
  8148. name="20S"
  8149. series="20"
  8150. latestVersion="2.2.3"
  8151. show = "1" >
  8152. <productMenu id="protocol"
  8153. type="0">
  8154. </productMenu>
  8155. <productMenu id="wa"
  8156. type="5" >
  8157. </productMenu>
  8158. <productMenu id="sip"
  8159. type="1" >
  8160. <productMenuType version="1.0"
  8161. type="0"
  8162. />
  8163. </productMenu>
  8164. <productMenu id="bluetoothIntercom"
  8165. type="1" >
  8166. <productMenuType version="1.0"
  8167. type="0"
  8168. />
  8169. </productMenu>
  8170. <productMenu id="intercomSetting"
  8171. type="1" >
  8172. </productMenu>
  8173. <productMenu id="phone"
  8174. type="2" >
  8175. </productMenu>
  8176. <productMenu id="fmradio"
  8177. type="3" >
  8178. </productMenu>
  8179. <productMenu id="deviceSetting"
  8180. type="1"
  8181. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8182. <productMenuURL version="2.0.2"
  8183. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8184. />
  8185. <productMenuURL version="1.5"
  8186. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8187. />
  8188. <productMenuURL version="1.4.1"
  8189. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8190. />
  8191. <productMenuURL version="1.1"
  8192. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8193. />
  8194. <productMenuURL version="1.0"
  8195. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8196. />
  8197. </productMenu>
  8198. <productMenu id="quickGuide"
  8199. type="0"
  8200. url=""
  8201. size="264KB" >
  8202. </productMenu>
  8203. <productMenu id="userGuide"
  8204. type="1"
  8205. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8206. size="3.09MB" >
  8207. </productMenu>
  8208. <productMenu id="connectGuide"
  8209. type="1"
  8210. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8211. size="1.12MB" >
  8212. </productMenu>
  8213. <productID id="4210"
  8214. />
  8215. <productGroupable type="1"
  8216. />
  8217. </product>
  8218. <product id="20S_EVO"
  8219. name="20S EVO"
  8220. series="20"
  8221. latestVersion="2.2.3"
  8222. show = "1" >
  8223. <productMenu id="protocol"
  8224. type="0">
  8225. </productMenu>
  8226. <productMenu id="wa"
  8227. type="5" >
  8228. </productMenu>
  8229. <productMenu id="sip"
  8230. type="1" >
  8231. <productMenuType version="1.0"
  8232. type="0"
  8233. />
  8234. </productMenu>
  8235. <productMenu id="bluetoothIntercom"
  8236. type="1" >
  8237. <productMenuType version="1.0"
  8238. type="0"
  8239. />
  8240. </productMenu>
  8241. <productMenu id="intercomSetting"
  8242. type="1" >
  8243. </productMenu>
  8244. <productMenu id="phone"
  8245. type="2" >
  8246. </productMenu>
  8247. <productMenu id="fmradio"
  8248. type="3" >
  8249. </productMenu>
  8250. <productMenu id="deviceSetting"
  8251. type="1"
  8252. url="https://api.sena.com/support/SenaUtility/20S/DS_20S_v0211fm.xml" >
  8253. <productMenuURL version="2.0.2"
  8254. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  8255. />
  8256. <productMenuURL version="1.5"
  8257. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  8258. />
  8259. <productMenuURL version="1.4.1"
  8260. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  8261. />
  8262. <productMenuURL version="1.1"
  8263. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  8264. />
  8265. <productMenuURL version="1.0"
  8266. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  8267. />
  8268. </productMenu>
  8269. <productMenu id="quickGuide"
  8270. type="0"
  8271. url=""
  8272. size="264KB" >
  8273. </productMenu>
  8274. <productMenu id="userGuide"
  8275. type="1"
  8276. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_20S_EVO_1.4.2_en_250123.pdf"
  8277. size="3.09MB" >
  8278. </productMenu>
  8279. <productMenu id="connectGuide"
  8280. type="1"
  8281. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8282. size="1.12MB" >
  8283. </productMenu>
  8284. <productID id="4210"
  8285. />
  8286. <productProductKey key="16"
  8287. />
  8288. <productGroupable type="1"
  8289. />
  8290. </product>
  8291. <product id="10S"
  8292. name="10S"
  8293. series="10"
  8294. latestVersion="3.0.1"
  8295. show = "1" >
  8296. <productMenu id="protocol"
  8297. type="3" >
  8298. </productMenu>
  8299. <productMenu id="sip"
  8300. type="1" >
  8301. </productMenu>
  8302. <productMenu id="bluetoothIntercom"
  8303. type="1" >
  8304. </productMenu>
  8305. <productMenu id="phone"
  8306. type="1" >
  8307. </productMenu>
  8308. <productMenu id="deviceSetting"
  8309. type="1"
  8310. url="https://api.sena.com/support/SenaNeoApp/QCC10S/NS_QCCS10S.xml" >
  8311. </productMenu>
  8312. <productMenu id="quickGuide"
  8313. type="1"
  8314. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_2.0.0_en_230623.pdf"
  8315. size="934KB" >
  8316. </productMenu>
  8317. <productMenu id="userGuide"
  8318. type="1"
  8319. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_3.1.0_en_250103.pdf"
  8320. size="1.14MB" >
  8321. </productMenu>
  8322. <productMenu id="connectGuide"
  8323. type="1"
  8324. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_init.json"
  8325. size="1.12MB" >
  8326. </productMenu>
  8327. <productID id="3380"
  8328. />
  8329. <productGroupable type="0"
  8330. />
  8331. </product>
  8332. <product id="10S"
  8333. name="10S"
  8334. series="10"
  8335. latestVersion="2.1.1"
  8336. show = "-1" >
  8337. <productMenu id="protocol"
  8338. type="0">
  8339. </productMenu>
  8340. <productMenu id="sip"
  8341. type="1" >
  8342. </productMenu>
  8343. <productMenu id="bluetoothIntercom"
  8344. type="1" >
  8345. </productMenu>
  8346. <productMenu id="phone"
  8347. type="2" >
  8348. </productMenu>
  8349. <productMenu id="fmradio"
  8350. type="3" >
  8351. </productMenu>
  8352. <productMenu id="deviceSetting"
  8353. type="1"
  8354. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0200fm.xml" >
  8355. <productMenuURL version="1.5"
  8356. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml"
  8357. />
  8358. <productMenuURL version="1.3.1"
  8359. url="https://api.sena.com/support/SenaUtility/10S/DeviceSetting_10S.xml"
  8360. />
  8361. </productMenu>
  8362. <productMenu id="quickGuide"
  8363. type="1"
  8364. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10S_1.4.0_en_230623.pdf"
  8365. size="310KB" >
  8366. </productMenu>
  8367. <productMenu id="userGuide"
  8368. type="1"
  8369. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10S_2.4.0_en_250103.pdf"
  8370. size="1.57MB" >
  8371. </productMenu>
  8372. <productID id="5530"
  8373. />
  8374. <productGroupable type="0"
  8375. />
  8376. </product>
  8377. <product id="10R"
  8378. name="10R"
  8379. series="10"
  8380. latestVersion="2.1.1"
  8381. show = "1" >
  8382. <productMenu id="protocol"
  8383. type="0">
  8384. </productMenu>
  8385. <productMenu id="sip"
  8386. type="1" >
  8387. <productMenuType version="1.0.2"
  8388. type="0"
  8389. />
  8390. </productMenu>
  8391. <productMenu id="bluetoothIntercom"
  8392. type="1" >
  8393. <productMenuType version="1.0.2"
  8394. type="0"
  8395. />
  8396. </productMenu>
  8397. <productMenu id="phone"
  8398. type="2" >
  8399. </productMenu>
  8400. <productMenu id="fmradio"
  8401. type="3" >
  8402. </productMenu>
  8403. <productMenu id="deviceSetting"
  8404. type="1"
  8405. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  8406. <productMenuURL version="1.4"
  8407. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0103.xml"
  8408. />
  8409. <productMenuURL version="1.2.1"
  8410. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0101.xml"
  8411. />
  8412. <productMenuURL version="1.0.2"
  8413. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R_v0100_1.xml"
  8414. />
  8415. <productMenuURL version="1.0"
  8416. url="https://api.sena.com/support/SenaUtility/10R/DeviceSetting_10R.xml"
  8417. />
  8418. </productMenu>
  8419. <productMenu id="quickGuide"
  8420. type="1"
  8421. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10R_no_HR_1.4.0_en_221006.pdf"
  8422. size="400KB" >
  8423. </productMenu>
  8424. <productMenu id="userGuide"
  8425. type="1"
  8426. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10R_no_HR_2.2.0_en_221006.pdf"
  8427. size="2.75MB" >
  8428. </productMenu>
  8429. <productMenu id="connectGuide"
  8430. type="1"
  8431. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8432. size="1.12MB" >
  8433. </productMenu>
  8434. <productID id="5520"
  8435. />
  8436. <productGroupable type="0"
  8437. />
  8438. </product>
  8439. <product id="10C_EVO"
  8440. name="10C EVO"
  8441. series="10"
  8442. latestVersion="1.7"
  8443. show = "1" >
  8444. <productMenu id="protocol"
  8445. type="0">
  8446. </productMenu>
  8447. <productMenu id="sip"
  8448. type="1" >
  8449. </productMenu>
  8450. <productMenu id="bluetoothIntercom"
  8451. type="1" >
  8452. </productMenu>
  8453. <productMenu id="phone"
  8454. type="2" >
  8455. </productMenu>
  8456. <productMenu id="fmradio"
  8457. type="3" >
  8458. </productMenu>
  8459. <productMenu id="deviceSetting"
  8460. type="1"
  8461. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_EVO_v0105fm.xml" >
  8462. <productMenuURL version="1.3.1"
  8463. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8464. />
  8465. </productMenu>
  8466. <productMenu id="quickGuide"
  8467. type="1"
  8468. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10C_EVO_1.3.0_en_221020.pdf"
  8469. size="1.32MB" >
  8470. </productMenu>
  8471. <productMenu id="userGuide"
  8472. type="1"
  8473. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10C_EVO_1.4.0_en_221020.pdf"
  8474. size="1.68MB" >
  8475. </productMenu>
  8476. <productMenu id="connectGuide"
  8477. type="1"
  8478. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8479. size="1.12MB" >
  8480. </productMenu>
  8481. <productID id="5570"
  8482. />
  8483. <productGroupable type="0"
  8484. />
  8485. </product>
  8486. <product id="10C_Pro"
  8487. name="10C Pro"
  8488. series="10"
  8489. latestVersion="2.7.1"
  8490. show = "1" >
  8491. <productMenu id="protocol"
  8492. type="0">
  8493. </productMenu>
  8494. <productMenu id="sip"
  8495. type="1" >
  8496. </productMenu>
  8497. <productMenu id="bluetoothIntercom"
  8498. type="1" >
  8499. </productMenu>
  8500. <productMenu id="phone"
  8501. type="2" >
  8502. </productMenu>
  8503. <productMenu id="fmradio"
  8504. type="3" >
  8505. </productMenu>
  8506. <productMenu id="deviceSetting"
  8507. type="1"
  8508. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0205.xml" >
  8509. <productMenuURL version="2.5.1"
  8510. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro_v0200o.xml"
  8511. />
  8512. <productMenuURL version="1.0"
  8513. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_Pro.xml"
  8514. />
  8515. </productMenu>
  8516. <productMenu id="quickGuide"
  8517. type="1"
  8518. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_Pro_02.pdf"
  8519. size="651KB" >
  8520. </productMenu>
  8521. <productMenu id="userGuide"
  8522. type="1"
  8523. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_Pro_v2.1_01.pdf"
  8524. size="2.34MB" >
  8525. </productMenu>
  8526. <productMenu id="connectGuide"
  8527. type="1"
  8528. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8529. size="1.12MB" >
  8530. </productMenu>
  8531. <productID id="5580"
  8532. />
  8533. <productGroupable type="0"
  8534. />
  8535. </product>
  8536. <product id="10C"
  8537. name="10C"
  8538. series="10"
  8539. latestVersion="3.0.4"
  8540. show = "1" >
  8541. <productMenu id="protocol"
  8542. type="0">
  8543. </productMenu>
  8544. <productMenu id="sip"
  8545. type="1" >
  8546. <productMenuType version="1.0.4"
  8547. type="0"
  8548. />
  8549. </productMenu>
  8550. <productMenu id="bluetoothIntercom"
  8551. type="1" >
  8552. <productMenuType version="1.0.4"
  8553. type="0"
  8554. />
  8555. </productMenu>
  8556. <productMenu id="phone"
  8557. type="2" >
  8558. </productMenu>
  8559. <productMenu id="fmradio"
  8560. type="3" >
  8561. </productMenu>
  8562. <productMenu id="deviceSetting"
  8563. type="1"
  8564. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0300_2.xml" >
  8565. <productMenuURL version="2.3"
  8566. url="https://api.sena.com/support/SenaUtility/10C/DS_10C_v0202.xml"
  8567. />
  8568. <productMenuURL version="2.1.1"
  8569. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0200.xml"
  8570. />
  8571. <productMenuURL version="1.0.4"
  8572. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C_v0100_3.xml"
  8573. />
  8574. <productMenuURL version="1.0.2"
  8575. url="https://api.sena.com/support/SenaUtility/10C/DeviceSetting_10C.xml"
  8576. />
  8577. </productMenu>
  8578. <productMenu id="quickGuide"
  8579. type="1"
  8580. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10C_04.pdf"
  8581. size="935KB" >
  8582. </productMenu>
  8583. <productMenu id="userGuide"
  8584. type="1"
  8585. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10C_v3.0_01.pdf"
  8586. size="2.82MB" >
  8587. </productMenu>
  8588. <productMenu id="connectGuide"
  8589. type="1"
  8590. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  8591. size="1.12MB" >
  8592. </productMenu>
  8593. <productID id="5510"
  8594. />
  8595. <productGroupable type="0"
  8596. />
  8597. </product>
  8598. <product id="10U_GT_AIR"
  8599. name="10U GT-Air"
  8600. series="10"
  8601. latestVersion="2.0.4"
  8602. show = "1" >
  8603. <productMenu id="protocol"
  8604. type="0">
  8605. </productMenu>
  8606. <productMenu id="sip"
  8607. type="1" >
  8608. <productMenuType version="1.0.2"
  8609. type="0"
  8610. />
  8611. </productMenu>
  8612. <productMenu id="bluetoothIntercom"
  8613. type="1" >
  8614. <productMenuType version="1.0.2"
  8615. type="0"
  8616. />
  8617. </productMenu>
  8618. <productMenu id="phone"
  8619. type="2" >
  8620. </productMenu>
  8621. <productMenu id="fmradio"
  8622. type="3" >
  8623. </productMenu>
  8624. <productMenu id="deviceSetting"
  8625. type="1"
  8626. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8627. <productMenuURL version="1.3.2"
  8628. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8629. />
  8630. <productMenuURL version="1.0.2"
  8631. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8632. />
  8633. </productMenu>
  8634. <productMenu id="quickGuide"
  8635. type="1"
  8636. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_GT-Air_04.pdf"
  8637. size="685KB" >
  8638. </productMenu>
  8639. <productMenu id="userGuide"
  8640. type="1"
  8641. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8642. size="684KB" >
  8643. </productMenu>
  8644. <productMenu id="connectGuide"
  8645. type="1"
  8646. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8647. size="1.12MB" >
  8648. </productMenu>
  8649. <productID id="5610"
  8650. />
  8651. <productGroupable type="0"
  8652. />
  8653. </product>
  8654. <product id="10U_NEOTEC"
  8655. name="10U Neotec"
  8656. series="10"
  8657. latestVersion="2.0.4"
  8658. show = "1" >
  8659. <productMenu id="protocol"
  8660. type="0">
  8661. </productMenu>
  8662. <productMenu id="sip"
  8663. type="1" >
  8664. <productMenuType version="1.0.2"
  8665. type="0"
  8666. />
  8667. </productMenu>
  8668. <productMenu id="bluetoothIntercom"
  8669. type="1" >
  8670. <productMenuType version="1.0.2"
  8671. type="0"
  8672. />
  8673. </productMenu>
  8674. <productMenu id="phone"
  8675. type="2" >
  8676. </productMenu>
  8677. <productMenu id="fmradio"
  8678. type="3" >
  8679. </productMenu>
  8680. <productMenu id="deviceSetting"
  8681. type="1"
  8682. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8683. <productMenuURL version="1.3.2"
  8684. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8685. />
  8686. <productMenuURL version="1.0.2"
  8687. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8688. />
  8689. </productMenu>
  8690. <productMenu id="quickGuide"
  8691. type="1"
  8692. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Shoei_Neotec_04.pdf"
  8693. size="689KB" >
  8694. </productMenu>
  8695. <productMenu id="userGuide"
  8696. type="1"
  8697. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8698. size="684KB" >
  8699. </productMenu>
  8700. <productMenu id="connectGuide"
  8701. type="1"
  8702. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8703. size="1.12MB" >
  8704. </productMenu>
  8705. <productID id="5611"
  8706. />
  8707. <productGroupable type="0"
  8708. />
  8709. </product>
  8710. <product id="10U_J_CRUISE"
  8711. name="10U J-Cruise"
  8712. series="10"
  8713. latestVersion="2.0.4"
  8714. show = "1" >
  8715. <productMenu id="protocol"
  8716. type="0">
  8717. </productMenu>
  8718. <productMenu id="sip"
  8719. type="1" >
  8720. <productMenuType version="1.0.2"
  8721. type="0"
  8722. />
  8723. </productMenu>
  8724. <productMenu id="bluetoothIntercom"
  8725. type="1" >
  8726. <productMenuType version="1.0.2"
  8727. type="0"
  8728. />
  8729. </productMenu>
  8730. <productMenu id="phone"
  8731. type="2" >
  8732. </productMenu>
  8733. <productMenu id="fmradio"
  8734. type="3" >
  8735. </productMenu>
  8736. <productMenu id="deviceSetting"
  8737. type="1"
  8738. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8739. <productMenuURL version="1.3.2"
  8740. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8741. />
  8742. <productMenuURL version="1.0.2"
  8743. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8744. />
  8745. </productMenu>
  8746. <productMenu id="quickGuide"
  8747. type="1"
  8748. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_J-Cruise_04.pdf"
  8749. size="686KB" >
  8750. </productMenu>
  8751. <productMenu id="userGuide"
  8752. type="1"
  8753. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8754. size="684KB" >
  8755. </productMenu>
  8756. <productMenu id="connectGuide"
  8757. type="1"
  8758. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8759. size="1.12MB" >
  8760. </productMenu>
  8761. <productID id="5612"
  8762. />
  8763. <productGroupable type="0"
  8764. />
  8765. </product>
  8766. <product id="10U_C3"
  8767. name="10U C3/C3Pro"
  8768. series="10"
  8769. latestVersion="2.0.4"
  8770. show = "1" >
  8771. <productMenu id="protocol"
  8772. type="0">
  8773. </productMenu>
  8774. <productMenu id="sip"
  8775. type="1" >
  8776. <productMenuType version="1.0.2"
  8777. type="0"
  8778. />
  8779. </productMenu>
  8780. <productMenu id="bluetoothIntercom"
  8781. type="1" >
  8782. <productMenuType version="1.0.2"
  8783. type="0"
  8784. />
  8785. </productMenu>
  8786. <productMenu id="phone"
  8787. type="2" >
  8788. </productMenu>
  8789. <productMenu id="fmradio"
  8790. type="3" >
  8791. </productMenu>
  8792. <productMenu id="deviceSetting"
  8793. type="1"
  8794. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8795. <productMenuURL version="1.3.2"
  8796. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8797. />
  8798. <productMenuURL version="1.0.2"
  8799. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8800. />
  8801. </productMenu>
  8802. <productMenu id="quickGuide"
  8803. type="1"
  8804. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Schuberth_C3_or_C3Pro_03.pdf"
  8805. size="199KB" >
  8806. </productMenu>
  8807. <productMenu id="userGuide"
  8808. type="1"
  8809. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8810. size="684KB" >
  8811. </productMenu>
  8812. <productMenu id="connectGuide"
  8813. type="1"
  8814. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8815. size="1.12MB" >
  8816. </productMenu>
  8817. <productID id="5620"
  8818. />
  8819. <productGroupable type="0"
  8820. />
  8821. </product>
  8822. <product id="10U_ARAI"
  8823. name="10U Arai"
  8824. series="10"
  8825. latestVersion="2.0.4"
  8826. show = "1" >
  8827. <productMenu id="protocol"
  8828. type="0">
  8829. </productMenu>
  8830. <productMenu id="sip"
  8831. type="1" >
  8832. <productMenuType version="1.0.2"
  8833. type="0"
  8834. />
  8835. </productMenu>
  8836. <productMenu id="bluetoothIntercom"
  8837. type="1" >
  8838. <productMenuType version="1.0.2"
  8839. type="0"
  8840. />
  8841. </productMenu>
  8842. <productMenu id="phone"
  8843. type="2" >
  8844. </productMenu>
  8845. <productMenu id="fmradio"
  8846. type="3" >
  8847. </productMenu>
  8848. <productMenu id="deviceSetting"
  8849. type="1"
  8850. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0200.xml" >
  8851. <productMenuURL version="1.3.2"
  8852. url="https://api.sena.com/support/SenaUtility/10U/DS_10U_v0101.xml"
  8853. />
  8854. <productMenuURL version="1.0.2"
  8855. url="https://api.sena.com/support/SenaUtility/10U/DS_10U.xml"
  8856. />
  8857. </productMenu>
  8858. <productMenu id="quickGuide"
  8859. type="1"
  8860. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_10U_for_Arai(RC4)_2.1.0_en_221020.pdf"
  8861. size="689KB" >
  8862. </productMenu>
  8863. <productMenu id="userGuide"
  8864. type="1"
  8865. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_10U(RC4)_2.2.0_en_221020.pdf"
  8866. size="684KB" >
  8867. </productMenu>
  8868. <productMenu id="connectGuide"
  8869. type="1"
  8870. url="https://api.sena.com/support/ConnectGuide/plusminus_minus12.json"
  8871. size="1.12MB" >
  8872. </productMenu>
  8873. <productID id="5621"
  8874. />
  8875. <productGroupable type="0"
  8876. />
  8877. </product>
  8878. <product id="10Upad"
  8879. name="10Upad"
  8880. series="10"
  8881. latestVersion="2.0.3"
  8882. show = "1" >
  8883. <productMenu id="protocol"
  8884. type="0">
  8885. </productMenu>
  8886. <productMenu id="sip"
  8887. type="1" >
  8888. </productMenu>
  8889. <productMenu id="bluetoothIntercom"
  8890. type="1" >
  8891. </productMenu>
  8892. <productMenu id="phone"
  8893. type="2" >
  8894. </productMenu>
  8895. <productMenu id="fmradio"
  8896. type="3" >
  8897. </productMenu>
  8898. <productMenu id="deviceSetting"
  8899. type="1"
  8900. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad_v0200.xml" >
  8901. <productMenuURL version="1.0.3"
  8902. url="https://api.sena.com/support/SenaUtility/10Upad/DS_10Upad.xml"
  8903. />
  8904. </productMenu>
  8905. <productMenu id="quickGuide"
  8906. type="1"
  8907. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10Upad_03.pdf"
  8908. size="615KB" >
  8909. </productMenu>
  8910. <productMenu id="userGuide"
  8911. type="1"
  8912. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10Upad_v2.0_01.pdf"
  8913. size="0.99MB" >
  8914. </productMenu>
  8915. <productMenu id="connectGuide"
  8916. type="1"
  8917. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10plus1.json"
  8918. size="1.12MB" >
  8919. </productMenu>
  8920. <productID id="6210"
  8921. />
  8922. <productGroupable type="0"
  8923. />
  8924. </product>
  8925. <product id="5S"
  8926. name="5S"
  8927. series="5"
  8928. latestVersion="2.2.1"
  8929. show = "1" >
  8930. <productMenu id="protocol"
  8931. type="3" >
  8932. </productMenu>
  8933. <productMenu id="sip"
  8934. type="1" >
  8935. </productMenu>
  8936. <productMenu id="bluetoothIntercom"
  8937. type="1" >
  8938. </productMenu>
  8939. <productMenu id="phone"
  8940. type="1" >
  8941. </productMenu>
  8942. <productMenu id="fmradio"
  8943. type="0" >
  8944. </productMenu>
  8945. <productMenu id="deviceSetting"
  8946. type="1"
  8947. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  8948. </productMenu>
  8949. <productMenu id="quickGuide"
  8950. type="0"
  8951. url=""
  8952. size="934KB" >
  8953. </productMenu>
  8954. <productMenu id="userGuide"
  8955. type="1"
  8956. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  8957. size="1.14MB" >
  8958. </productMenu>
  8959. <productMenu id="connectGuide"
  8960. type="1"
  8961. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5_lcd_init.json"
  8962. size="1.12MB" >
  8963. </productMenu>
  8964. <productID id="5590"
  8965. />
  8966. <productGroupable type="0"
  8967. />
  8968. </product>
  8969. <product id="5S"
  8970. name="5S"
  8971. series="5"
  8972. latestVersion="1.2"
  8973. show = "-1" >
  8974. <productMenu id="protocol"
  8975. type="0">
  8976. </productMenu>
  8977. <productMenu id="sip"
  8978. type="1" >
  8979. </productMenu>
  8980. <productMenu id="bluetoothIntercom"
  8981. type="1" >
  8982. </productMenu>
  8983. <productMenu id="phone"
  8984. type="2" >
  8985. </productMenu>
  8986. <productMenu id="fmradio"
  8987. type="0" >
  8988. </productMenu>
  8989. <productMenu id="deviceSetting"
  8990. type="1"
  8991. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_fm_01.xml" >
  8992. </productMenu>
  8993. <productMenu id="quickGuide"
  8994. type="0"
  8995. url=""
  8996. size="970KB" >
  8997. </productMenu>
  8998. <productMenu id="userGuide"
  8999. type="1"
  9000. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_1.3.0_en_250114.pdf"
  9001. size="1.26MB" >
  9002. </productMenu>
  9003. <productID id="5534"
  9004. />
  9005. <productGroupable type="0"
  9006. />
  9007. </product>
  9008. <product id="5S"
  9009. name="5S"
  9010. series="5"
  9011. latestVersion="3.0.1"
  9012. show = "-1" >
  9013. <productMenu id="protocol"
  9014. type="0">
  9015. </productMenu>
  9016. <productMenu id="sip"
  9017. type="1" >
  9018. </productMenu>
  9019. <productMenu id="bluetoothIntercom"
  9020. type="1" >
  9021. </productMenu>
  9022. <productMenu id="phone"
  9023. type="2" >
  9024. </productMenu>
  9025. <productMenu id="fmradio"
  9026. type="0" >
  9027. </productMenu>
  9028. <productMenu id="deviceSetting"
  9029. type="1"
  9030. url="https://api.sena.com/support/SenaNeoApp/5S/DS_5S_v30.xml" >
  9031. </productMenu>
  9032. <productMenu id="quickGuide"
  9033. type="0"
  9034. url=""
  9035. size="970KB" >
  9036. </productMenu>
  9037. <productMenu id="userGuide"
  9038. type="1"
  9039. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_3.1.0_en_250114.pdf"
  9040. size="1.26MB" >
  9041. </productMenu>
  9042. <productID id="5538"
  9043. />
  9044. <productGroupable type="0"
  9045. />
  9046. </product>
  9047. <product id="3SPLUS"
  9048. name="3S PLUS"
  9049. series="3"
  9050. latestVersion="2.2"
  9051. show = "1" >
  9052. <productMenu id="protocol"
  9053. type="3" >
  9054. </productMenu>
  9055. <productMenu id="sip"
  9056. type="1" >
  9057. </productMenu>
  9058. <productMenu id="bluetoothIntercom"
  9059. type="1" >
  9060. </productMenu>
  9061. <productMenu id="deviceSetting"
  9062. type="1"
  9063. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S_02.xml" >
  9064. <productMenuURL version="2.2.1"
  9065. url="https://api.sena.com/support/SenaNeoApp/3S/NS_QCC3S.xml"
  9066. />
  9067. </productMenu>
  9068. <productMenu id="quickGuide"
  9069. type="1"
  9070. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9071. size="344KB" >
  9072. </productMenu>
  9073. <productMenu id="userGuide"
  9074. type="1"
  9075. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_2.4.0_en_241224.pdf"
  9076. size="1.14MB" >
  9077. </productMenu>
  9078. <productMenu id="connectGuide"
  9079. type="1"
  9080. url="https://api.sena.com/support/ConnectGuide/plusminus_plus5_init.json"
  9081. size="1.12MB" >
  9082. </productMenu>
  9083. <productID id="4023"
  9084. />
  9085. <productGroupable type="0"
  9086. />
  9087. </product>
  9088. <product id="3SPLUS"
  9089. name="3S PLUS"
  9090. series="3"
  9091. latestVersion="1.1"
  9092. show = "-1" >
  9093. <productMenu id="protocol"
  9094. type="0">
  9095. </productMenu>
  9096. <productMenu id="sip"
  9097. type="1" >
  9098. </productMenu>
  9099. <productMenu id="bluetoothIntercom"
  9100. type="1" >
  9101. </productMenu>
  9102. <productMenu id="deviceSetting"
  9103. type="1"
  9104. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  9105. </productMenu>
  9106. <productMenu id="quickGuide"
  9107. type="1"
  9108. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  9109. size="842KB" >
  9110. </productMenu>
  9111. <productMenu id="userGuide"
  9112. type="1"
  9113. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.2.0_en_241226.pdf"
  9114. size="1.02MB" >
  9115. </productMenu>
  9116. <productID id="6320"
  9117. />
  9118. <productGroupable type="0"
  9119. />
  9120. </product>
  9121. <product id="AConnect"
  9122. name="Alpinestars A-Connect"
  9123. series="60"
  9124. latestVersion="0.9.5"
  9125. latestVersionMesh="0.19"
  9126. latestVersionVoicePrompt="1.2"
  9127. show = "-1" >
  9128. <productMenu id="protocol"
  9129. type="2" >
  9130. </productMenu>
  9131. <productMenu id="ota"
  9132. type="0" >
  9133. <otaLanguages>
  9134. <otaLanguage
  9135. id="0"
  9136. name="English"
  9137. package="0"
  9138. />
  9139. <otaLanguage
  9140. id="0"
  9141. name="French"
  9142. package="1"
  9143. />
  9144. <otaLanguage
  9145. id="0"
  9146. name="Spanish"
  9147. package="2"
  9148. />
  9149. <otaLanguage
  9150. id="0"
  9151. name="Italian"
  9152. package="3"
  9153. />
  9154. <otaLanguage
  9155. id="0"
  9156. name="German"
  9157. package="4"
  9158. />
  9159. <otaLanguage
  9160. id="0"
  9161. name="Dutch"
  9162. package="5"
  9163. />
  9164. <otaLanguage
  9165. id="0"
  9166. name="Russian"
  9167. package="6"
  9168. />
  9169. <otaLanguage
  9170. id="0"
  9171. name="Chinese"
  9172. package="7"
  9173. />
  9174. <otaLanguage
  9175. id="0"
  9176. name="Korean"
  9177. package="8"
  9178. />
  9179. <otaLanguage
  9180. id="0"
  9181. name="Japanese"
  9182. package="9"
  9183. />
  9184. <otaLanguage
  9185. id="0"
  9186. name="Finnish"
  9187. package="10"
  9188. />
  9189. <otaLanguage
  9190. id="0"
  9191. name="Polish"
  9192. package="11"
  9193. />
  9194. </otaLanguages>
  9195. <otaPackages>
  9196. <package
  9197. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0.img"
  9198. size="5183988"
  9199. />
  9200. <package
  9201. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-fr-FR.img"
  9202. size="5183988"
  9203. />
  9204. <package
  9205. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-es-ES.img"
  9206. size="5183988"
  9207. />
  9208. <package
  9209. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-it-IT.img"
  9210. size="5183988"
  9211. />
  9212. <package
  9213. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-de-DE.img"
  9214. size="5183988"
  9215. />
  9216. <package
  9217. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-nl-NL.img"
  9218. size="5183988"
  9219. />
  9220. <package
  9221. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ru-RU.img"
  9222. size="5183988"
  9223. />
  9224. <package
  9225. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-cmn-CN.img"
  9226. size="5183988"
  9227. />
  9228. <package
  9229. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ko-KR.img"
  9230. size="5183988"
  9231. />
  9232. <package
  9233. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-ja-JP.img"
  9234. size="5183988"
  9235. />
  9236. <package
  9237. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-fi-FI.img"
  9238. size="5183988"
  9239. />
  9240. <package
  9241. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/AConnect-v0.9.5-build0-pl-PL.img"
  9242. size="5183988"
  9243. />
  9244. </otaPackages>
  9245. </productMenu>
  9246. <productMenu id="sip"
  9247. type="1" >
  9248. </productMenu>
  9249. <productMenu id="illusion"
  9250. type="0" >
  9251. </productMenu>
  9252. <productMenu id="meshIntercom+"
  9253. type="3"
  9254. url="2" >
  9255. </productMenu>
  9256. <productMenu id="waveIntercom"
  9257. type="1" >
  9258. </productMenu>
  9259. <productMenu id="bluetoothIntercom"
  9260. type="1"
  9261. url="2" >
  9262. </productMenu>
  9263. <productMenu id="bluetoothIntercomGrouping"
  9264. type="0" >
  9265. </productMenu>
  9266. <productMenu id="fmradio"
  9267. type="1"
  9268. url="1" >
  9269. </productMenu>
  9270. <productMenu id="phone"
  9271. type="1" >
  9272. </productMenu>
  9273. <productMenu id="music"
  9274. type="1" >
  9275. </productMenu>
  9276. <productMenu id="musicSharing"
  9277. type="0" >
  9278. </productMenu>
  9279. <productMenu id="deviceSetting"
  9280. type="1"
  9281. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_04_Auto.xml" >
  9282. </productMenu>
  9283. <productMenu id="quickGuide"
  9284. type="0"
  9285. url=""
  9286. size="1.12MB" >
  9287. </productMenu>
  9288. <productMenu id="userGuide"
  9289. type="0"
  9290. url=""
  9291. size="2.0MB" >
  9292. </productMenu>
  9293. <productMenu id="videoGuide"
  9294. type="0"
  9295. url=""
  9296. size="3.41MB" >
  9297. </productMenu>
  9298. <productMenu id="volume"
  9299. type="16" >
  9300. </productMenu>
  9301. <productMenu id="volume+"
  9302. type="2"
  9303. url="0x6004" >
  9304. </productMenu>
  9305. <productMenu id="soundMode"
  9306. type="1" >
  9307. </productMenu>
  9308. <productMenu id="battery"
  9309. type="1" >
  9310. </productMenu>
  9311. <productID id="6A82"
  9312. />
  9313. <productGroupable type="0"
  9314. />
  9315. </product>
  9316. <product id="iCon"
  9317. name="iCon"
  9318. series="50"
  9319. latestVersion="1.2"
  9320. show = "0" >
  9321. <productMenu id="protocol"
  9322. type="2" >
  9323. </productMenu>
  9324. <productMenu id="alexa"
  9325. type="0" >
  9326. </productMenu>
  9327. <productMenu id="wa"
  9328. type="0" >
  9329. </productMenu>
  9330. <productMenu id="sip"
  9331. type="1" >
  9332. </productMenu>
  9333. <productMenu id="led"
  9334. type="3" >
  9335. </productMenu>
  9336. <productMenu id="meshIntercom"
  9337. type="20" >
  9338. </productMenu>
  9339. <productMenu id="meshIntercom+"
  9340. type="3"
  9341. url="0" >
  9342. <productMenuType version="1.0.9"
  9343. type="2"
  9344. />
  9345. </productMenu>
  9346. <productMenu id="bluetoothIntercom"
  9347. type="1" >
  9348. </productMenu>
  9349. <productMenu id="phone"
  9350. type="1" >
  9351. </productMenu>
  9352. <productMenu id="music"
  9353. type="1" >
  9354. </productMenu>
  9355. <productMenu id="fmradio"
  9356. type="1" >
  9357. </productMenu>
  9358. <productMenu id="deviceSetting"
  9359. type="1"
  9360. url="https://api.sena.com/support/SenaNeoApp/ICON/NS_ICON.xml" >
  9361. <productMenuURL version="1.0.9"
  9362. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  9363. />
  9364. </productMenu>
  9365. <productMenu id="quickGuide"
  9366. type="1"
  9367. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_HelmLink_1.0.0_en_220830.pdf"
  9368. size="344KB" >
  9369. </productMenu>
  9370. <productMenu id="userGuide"
  9371. type="1"
  9372. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_HelmLink_1.1.0_en_250915.pdf"
  9373. size="3.41MB" >
  9374. </productMenu>
  9375. <productMenu id="volume"
  9376. type="11" >
  9377. </productMenu>
  9378. <productMenu id="battery"
  9379. type="1" >
  9380. </productMenu>
  9381. <productID id="3900"
  9382. />
  9383. <productGroupable type="0"
  9384. />
  9385. </product>
  9386. <product id="ICONHELMLINKLITE"
  9387. name="ICON HELMLINK LITE"
  9388. series="50"
  9389. latestVersion="0.9"
  9390. latestVersionVoicePrompt="1.6"
  9391. show = "-1" >
  9392. <productMenu id="protocol"
  9393. type="2" >
  9394. </productMenu>
  9395. <productMenu id="alexa"
  9396. type="0" >
  9397. </productMenu>
  9398. <productMenu id="ota"
  9399. type="2" >
  9400. <otaPackages>
  9401. <package
  9402. url="https://api.sena.com/support/test/OTATest/MotorcyclesApp/ICON_HELMLINK_SL-v0.9-build0.img"
  9403. size="2945812"
  9404. />
  9405. </otaPackages>
  9406. </productMenu>
  9407. <productMenu id="wa"
  9408. type="0" >
  9409. </productMenu>
  9410. <productMenu id="meshIntercom"
  9411. type="30" >
  9412. </productMenu>
  9413. <productMenu id="meshIntercom+"
  9414. type="3"
  9415. url="2" >
  9416. </productMenu>
  9417. <productMenu id="waveIntercom"
  9418. type="1" >
  9419. </productMenu>
  9420. <productMenu id="phone"
  9421. type="1" >
  9422. </productMenu>
  9423. <productMenu id="music"
  9424. type="1" >
  9425. </productMenu>
  9426. <productMenu id="musicSharing"
  9427. type="0" >
  9428. </productMenu>
  9429. <productMenu id="deviceSetting"
  9430. type="1"
  9431. url="https://api.sena.com/support/SenaNeoApp/Airoha/NS_SPIDER_AIROHA_05.xml" >
  9432. </productMenu>
  9433. <productMenu id="quickGuide"
  9434. type="0"
  9435. url=""
  9436. size="1.12MB" >
  9437. </productMenu>
  9438. <productMenu id="userGuide"
  9439. type="1"
  9440. url=""
  9441. size="2.0MB" >
  9442. </productMenu>
  9443. <productMenu id="volume"
  9444. type="12" >
  9445. </productMenu>
  9446. <productMenu id="battery"
  9447. type="1" >
  9448. </productMenu>
  9449. <productID id="6842"
  9450. />
  9451. <productGroupable type="0"
  9452. />
  9453. </product>
  9454. <product id="HD50S"
  9455. name="H-D Audio 50S"
  9456. series="50"
  9457. latestVersion="1.0.1"
  9458. show = "-1" >
  9459. <productMenu id="protocol"
  9460. type="2" >
  9461. </productMenu>
  9462. <productMenu id="alexa"
  9463. type="0" >
  9464. </productMenu>
  9465. <productMenu id="ota"
  9466. type="0"
  9467. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9468. size="1150234" >
  9469. </productMenu>
  9470. <productMenu id="wa"
  9471. type="1" >
  9472. </productMenu>
  9473. <productMenu id="sip"
  9474. type="1" >
  9475. </productMenu>
  9476. <productMenu id="meshIntercom"
  9477. type="20" >
  9478. </productMenu>
  9479. <productMenu id="meshIntercom+"
  9480. type="3"
  9481. url="0" >
  9482. <productMenuType version="1.0.9"
  9483. type="2"
  9484. />
  9485. </productMenu>
  9486. <productMenu id="bluetoothIntercom"
  9487. type="1" >
  9488. </productMenu>
  9489. <productMenu id="phone"
  9490. type="1" >
  9491. </productMenu>
  9492. <productMenu id="music"
  9493. type="1" >
  9494. </productMenu>
  9495. <productMenu id="fmradio"
  9496. type="1" >
  9497. </productMenu>
  9498. <productMenu id="deviceSetting"
  9499. type="1"
  9500. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9501. <productMenuURL version="1.0.9"
  9502. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9503. />
  9504. </productMenu>
  9505. <productMenu id="quickGuide"
  9506. type="1"
  9507. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9508. size="934KB" >
  9509. </productMenu>
  9510. <productMenu id="userGuide"
  9511. type="1"
  9512. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_1.1.0_en_220509.pdf"
  9513. size="1.14MB" >
  9514. </productMenu>
  9515. <productMenu id="volume"
  9516. type="11" >
  9517. </productMenu>
  9518. <productMenu id="battery"
  9519. type="1" >
  9520. </productMenu>
  9521. <productID id="3156"
  9522. />
  9523. <productGroupable type="0"
  9524. />
  9525. </product>
  9526. <product id="HD50S"
  9527. name="H-D Audio 50S"
  9528. series="50"
  9529. latestVersion="2.0.2"
  9530. show = "0" >
  9531. <productMenu id="protocol"
  9532. type="2" >
  9533. </productMenu>
  9534. <productMenu id="alexa"
  9535. type="0" >
  9536. </productMenu>
  9537. <productMenu id="ota"
  9538. type="0"
  9539. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  9540. size="1150234" >
  9541. </productMenu>
  9542. <productMenu id="wa"
  9543. type="1" >
  9544. </productMenu>
  9545. <productMenu id="sip"
  9546. type="1" >
  9547. </productMenu>
  9548. <productMenu id="meshIntercom"
  9549. type="20" >
  9550. </productMenu>
  9551. <productMenu id="meshIntercom+"
  9552. type="3"
  9553. url="0" >
  9554. <productMenuType version="2.0.9"
  9555. type="2"
  9556. />
  9557. </productMenu>
  9558. <productMenu id="bluetoothIntercom"
  9559. type="1" >
  9560. </productMenu>
  9561. <productMenu id="phone"
  9562. type="1" >
  9563. </productMenu>
  9564. <productMenu id="music"
  9565. type="1" >
  9566. </productMenu>
  9567. <productMenu id="fmradio"
  9568. type="1" >
  9569. </productMenu>
  9570. <productMenu id="deviceSetting"
  9571. type="1"
  9572. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9573. <productMenuURL version="2.0.9"
  9574. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9575. />
  9576. </productMenu>
  9577. <productMenu id="quickGuide"
  9578. type="1"
  9579. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9580. size="934KB" >
  9581. </productMenu>
  9582. <productMenu id="userGuide"
  9583. type="1"
  9584. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_Harley-Davidson_Audio_50S_2.0.0_en_220701.pdf"
  9585. size="1.14MB" >
  9586. </productMenu>
  9587. <productMenu id="volume"
  9588. type="11" >
  9589. </productMenu>
  9590. <productMenu id="battery"
  9591. type="1" >
  9592. </productMenu>
  9593. <productID id="3213"
  9594. />
  9595. <productGroupable type="0"
  9596. />
  9597. </product>
  9598. <product id="HD50C"
  9599. name="H-D Audio 50C"
  9600. series="50"
  9601. latestVersion="1.0.1"
  9602. show = "0" >
  9603. <productMenu id="protocol"
  9604. type="2" >
  9605. </productMenu>
  9606. <productMenu id="ota"
  9607. type="0" >
  9608. </productMenu>
  9609. <productMenu id="wa"
  9610. type="1" >
  9611. </productMenu>
  9612. <productMenu id="sip"
  9613. type="1" >
  9614. </productMenu>
  9615. <productMenu id="meshIntercom"
  9616. type="20" >
  9617. </productMenu>
  9618. <productMenu id="meshIntercom+"
  9619. type="3"
  9620. url="0" >
  9621. <productMenuType version="1.0.9"
  9622. type="2"
  9623. />
  9624. </productMenu>
  9625. <productMenu id="bluetoothIntercom"
  9626. type="1" >
  9627. </productMenu>
  9628. <productMenu id="phone"
  9629. type="1" >
  9630. </productMenu>
  9631. <productMenu id="music"
  9632. type="1" >
  9633. </productMenu>
  9634. <productMenu id="fmradio"
  9635. type="1" >
  9636. </productMenu>
  9637. <productMenu id="deviceSetting"
  9638. type="1"
  9639. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_03.xml" >
  9640. <productMenuURL version="1.0.9"
  9641. url="https://api.sena.com/support/SenaNeoApp/HD50/NS_HD50_02.xml"
  9642. />
  9643. </productMenu>
  9644. <productMenu id="quickGuide"
  9645. type="1"
  9646. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  9647. size="344KB" >
  9648. </productMenu>
  9649. <productMenu id="userGuide"
  9650. type="1"
  9651. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Harley-Davidson_Audio_50C_1.1.0_en_220329.pdf"
  9652. size="3.41MB" >
  9653. </productMenu>
  9654. <productMenu id="volume"
  9655. type="11" >
  9656. </productMenu>
  9657. <productMenu id="battery"
  9658. type="1" >
  9659. </productMenu>
  9660. <productID id="3240"
  9661. />
  9662. <productGroupable type="0"
  9663. />
  9664. </product>
  9665. <product id="HD50S"
  9666. name="FURY N04"
  9667. series="Helmet"
  9668. latestVersion="1.0"
  9669. show = "0" >
  9670. <productMenu id="protocol"
  9671. type="2" >
  9672. </productMenu>
  9673. <productMenu id="alexa"
  9674. type="0" >
  9675. </productMenu>
  9676. <productMenu id="ota"
  9677. type="0" >
  9678. </productMenu>
  9679. <productMenu id="wa"
  9680. type="0" >
  9681. </productMenu>
  9682. <productMenu id="meshIntercom"
  9683. type="20" >
  9684. </productMenu>
  9685. <productMenu id="meshIntercom+"
  9686. type="3"
  9687. url="0" >
  9688. <productMenuType version="1.0.9"
  9689. type="2"
  9690. />
  9691. </productMenu>
  9692. <productMenu id="phone"
  9693. type="1" >
  9694. </productMenu>
  9695. <productMenu id="music"
  9696. type="1" >
  9697. </productMenu>
  9698. <productMenu id="fmradio"
  9699. type="1" >
  9700. </productMenu>
  9701. <productMenu id="deviceSetting"
  9702. type="1"
  9703. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_02.xml" >
  9704. <productMenuURL version="1.0.9"
  9705. url="https://api.sena.com/support/SenaNeoApp/FURY/NS_FURY_01.xml"
  9706. />
  9707. </productMenu>
  9708. <productMenu id="quickGuide"
  9709. type="1"
  9710. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_FURY_N04_1.0.1_en_230712.pdf"
  9711. size="1.12MB" >
  9712. </productMenu>
  9713. <productMenu id="userGuide"
  9714. type="1"
  9715. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_FURY_N04_1.0.0_en_220907.pdf"
  9716. size="2.0MB" >
  9717. </productMenu>
  9718. <productMenu id="volume"
  9719. type="13" >
  9720. </productMenu>
  9721. <productMenu id="battery"
  9722. type="1" >
  9723. </productMenu>
  9724. <productID id="5553"
  9725. />
  9726. <productGroupable type="0"
  9727. />
  9728. </product>
  9729. <product id="XCOM3Pro"
  9730. name="X-COM3 Pro"
  9731. series="50"
  9732. latestVersion="1.1"
  9733. show = "0" >
  9734. <productMenu id="protocol"
  9735. type="2" >
  9736. </productMenu>
  9737. <productMenu id="alexa"
  9738. type="0" >
  9739. </productMenu>
  9740. <productMenu id="ota"
  9741. type="0" >
  9742. </productMenu>
  9743. <productMenu id="wa"
  9744. type="0" >
  9745. </productMenu>
  9746. <productMenu id="sip"
  9747. type="1" >
  9748. </productMenu>
  9749. <productMenu id="meshIntercom"
  9750. type="30" >
  9751. </productMenu>
  9752. <productMenu id="meshIntercom+"
  9753. type="3"
  9754. url="2" >
  9755. <productMenuType version="1.1"
  9756. type="2"
  9757. />
  9758. </productMenu>
  9759. <productMenu id="waveIntercom"
  9760. type="1" >
  9761. <productMenuType version="1.1"
  9762. type="0"
  9763. />
  9764. </productMenu>
  9765. <productMenu id="bluetoothIntercom"
  9766. type="1" >
  9767. </productMenu>
  9768. <productMenu id="phone"
  9769. type="1" >
  9770. </productMenu>
  9771. <productMenu id="music"
  9772. type="1" >
  9773. </productMenu>
  9774. <productMenu id="fmradio"
  9775. type="1" >
  9776. </productMenu>
  9777. <productMenu id="deviceSetting"
  9778. type="1"
  9779. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_06.xml" >
  9780. <productMenuURL version="1.1"
  9781. url="https://api.sena.com/support/SenaNeoApp/XCOM3PRO/NS_XCOM3PRO_03.xml"
  9782. />
  9783. </productMenu>
  9784. <productMenu id="quickGuide"
  9785. type="0"
  9786. url=""
  9787. size="344KB" >
  9788. </productMenu>
  9789. <productMenu id="userGuide"
  9790. type="1"
  9791. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_Pro_1.1.0_en_240819.pdf"
  9792. size="3.41MB" >
  9793. </productMenu>
  9794. <productMenu id="volume"
  9795. type="11" >
  9796. </productMenu>
  9797. <productMenu id="battery"
  9798. type="1" >
  9799. </productMenu>
  9800. <productID id="321A"
  9801. />
  9802. <productGroupable type="0"
  9803. />
  9804. </product>
  9805. <product id="XCOM3"
  9806. name="X-COM3"
  9807. series="20"
  9808. latestVersion="1.0"
  9809. show = "0" >
  9810. <productMenu id="protocol"
  9811. type="2" >
  9812. </productMenu>
  9813. <productMenu id="sip"
  9814. type="1" >
  9815. </productMenu>
  9816. <productMenu id="bluetoothIntercom"
  9817. type="1" >
  9818. </productMenu>
  9819. <productMenu id="phone"
  9820. type="1" >
  9821. </productMenu>
  9822. <productMenu id="music"
  9823. type="1" >
  9824. </productMenu>
  9825. <productMenu id="fmradio"
  9826. type="1" >
  9827. </productMenu>
  9828. <productMenu id="deviceSetting"
  9829. type="1"
  9830. url="https://api.sena.com/support/SenaNeoApp/XCOM3/NS_QCCXCOM3.xml" >
  9831. </productMenu>
  9832. <productMenu id="quickGuide"
  9833. type="0"
  9834. url=""
  9835. size="934KB" >
  9836. </productMenu>
  9837. <productMenu id="userGuide"
  9838. type="1"
  9839. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_X-Com_3_1.0.0_en_231229.pdf"
  9840. size="1.14MB" >
  9841. </productMenu>
  9842. <productMenu id="volume"
  9843. type="15" >
  9844. </productMenu>
  9845. <productID id="3410"
  9846. />
  9847. <productGroupable type="0"
  9848. />
  9849. </product>
  9850. <product id="X-COM2"
  9851. name="X-COM2"
  9852. series="20"
  9853. latestVersion="1.0.5"
  9854. show = "0" >
  9855. <productMenu id="protocol"
  9856. type="0">
  9857. </productMenu>
  9858. <productMenu id="sip"
  9859. type="1" >
  9860. </productMenu>
  9861. <productMenu id="bluetoothIntercom"
  9862. type="1" >
  9863. </productMenu>
  9864. <productMenu id="intercomSetting"
  9865. type="1" >
  9866. </productMenu>
  9867. <productMenu id="phone"
  9868. type="2" >
  9869. </productMenu>
  9870. <productMenu id="fmradio"
  9871. type="3" >
  9872. </productMenu>
  9873. <productMenu id="deviceSetting"
  9874. type="1"
  9875. url="https://api.sena.com/support/SenaUtility/Momentum/DS_Momentum.xml" >
  9876. </productMenu>
  9877. <productMenu id="quickGuide"
  9878. type="1"
  9879. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Nexx_X-COM2_02.pdf"
  9880. size="796KB" >
  9881. </productMenu>
  9882. <productMenu id="userGuide"
  9883. type="1"
  9884. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Nexx_X-COM2_v1.0_02.pdf"
  9885. size="1.90MB" >
  9886. </productMenu>
  9887. <productID id="2030"
  9888. />
  9889. <productGroupable type="1"
  9890. />
  9891. </product>
  9892. <product id="AVAABC"
  9893. name="AVA ABC"
  9894. series="SPIDER"
  9895. latestVersion="1.0"
  9896. show = "0" >
  9897. <productMenu id="protocol"
  9898. type="2" >
  9899. </productMenu>
  9900. <productMenu id="alexa"
  9901. type="0" >
  9902. </productMenu>
  9903. <productMenu id="ota"
  9904. type="0" >
  9905. </productMenu>
  9906. <productMenu id="wa"
  9907. type="0" >
  9908. </productMenu>
  9909. <productMenu id="meshIntercom"
  9910. type="20" >
  9911. </productMenu>
  9912. <productMenu id="phone"
  9913. type="1" >
  9914. </productMenu>
  9915. <productMenu id="music"
  9916. type="1" >
  9917. </productMenu>
  9918. <productMenu id="musicSharing"
  9919. type="0" >
  9920. </productMenu>
  9921. <productMenu id="deviceSetting"
  9922. type="1"
  9923. url="https://api.sena.com/support/SenaNeoApp/AVA/NS_AVA_AIROHA.xml" >
  9924. </productMenu>
  9925. <productMenu id="quickGuide"
  9926. type="1"
  9927. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ABC_1.0.0_en_230315.pdf"
  9928. size="1.12MB" >
  9929. </productMenu>
  9930. <productMenu id="userGuide"
  9931. type="1"
  9932. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ABC_1.0.0_en_230315.pdf"
  9933. size="2.0MB" >
  9934. </productMenu>
  9935. <productMenu id="volume"
  9936. type="12" >
  9937. </productMenu>
  9938. <productMenu id="battery"
  9939. type="1" >
  9940. </productMenu>
  9941. <productID id="6808"
  9942. />
  9943. <productGroupable type="0"
  9944. />
  9945. </product>
  9946. <product id="ADVANCEProCOM2"
  9947. name="ADVANCE ProCOM 2"
  9948. series="Helmet"
  9949. latestVersion="0.5"
  9950. latestVersionVoicePrompt="0.3"
  9951. show = "-1" >
  9952. <productMenu id="protocol"
  9953. type="2" >
  9954. </productMenu>
  9955. <productMenu id="ota"
  9956. type="2" >
  9957. <otaLanguages>
  9958. <otaLanguage
  9959. id="0"
  9960. name="English"
  9961. package="0"
  9962. />
  9963. <otaLanguage
  9964. id="0"
  9965. name="French"
  9966. package="1"
  9967. />
  9968. <otaLanguage
  9969. id="0"
  9970. name="Spanish"
  9971. package="2"
  9972. />
  9973. <otaLanguage
  9974. id="0"
  9975. name="Italian"
  9976. package="3"
  9977. />
  9978. <otaLanguage
  9979. id="0"
  9980. name="German"
  9981. package="4"
  9982. />
  9983. <otaLanguage
  9984. id="0"
  9985. name="Dutch"
  9986. package="5"
  9987. />
  9988. <otaLanguage
  9989. id="0"
  9990. name="Russian"
  9991. package="6"
  9992. />
  9993. <otaLanguage
  9994. id="0"
  9995. name="Chinese"
  9996. package="7"
  9997. />
  9998. <otaLanguage
  9999. id="0"
  10000. name="Korean"
  10001. package="8"
  10002. />
  10003. <otaLanguage
  10004. id="0"
  10005. name="Japanese"
  10006. package="9"
  10007. />
  10008. <otaLanguage
  10009. id="0"
  10010. name="Finnish"
  10011. package="10"
  10012. />
  10013. <otaLanguage
  10014. id="0"
  10015. name="Polish"
  10016. package="11"
  10017. />
  10018. </otaLanguages>
  10019. <otaPackages>
  10020. <package
  10021. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0.img"
  10022. size="5183988"
  10023. />
  10024. <package
  10025. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fr-FR.img"
  10026. size="5183988"
  10027. />
  10028. <package
  10029. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-es-ES.img"
  10030. size="5183988"
  10031. />
  10032. <package
  10033. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-it-IT.img"
  10034. size="5183988"
  10035. />
  10036. <package
  10037. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-de-DE.img"
  10038. size="5183988"
  10039. />
  10040. <package
  10041. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-nl-NL.img"
  10042. size="5183988"
  10043. />
  10044. <package
  10045. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ru-RU.img"
  10046. size="5183988"
  10047. />
  10048. <package
  10049. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-cmn-CN.img"
  10050. size="5183988"
  10051. />
  10052. <package
  10053. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ko-KR.img"
  10054. size="5183988"
  10055. />
  10056. <package
  10057. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-ja-JP.img"
  10058. size="5183988"
  10059. />
  10060. <package
  10061. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-fi-FI.img"
  10062. size="5183988"
  10063. />
  10064. <package
  10065. url="https://api.sena.com/support/test/OTATest/STIHL/ADVANCE_ProCOM2-v0.5-build0-pl-PL.img"
  10066. size="5183988"
  10067. />
  10068. </otaPackages>
  10069. </productMenu>
  10070. <productMenu id="wa"
  10071. type="0" >
  10072. </productMenu>
  10073. <productMenu id="meshIntercom"
  10074. type="30" >
  10075. </productMenu>
  10076. <productMenu id="meshIntercom+"
  10077. type="3"
  10078. url="2" >
  10079. </productMenu>
  10080. <productMenu id="waveIntercom"
  10081. type="1" >
  10082. </productMenu>
  10083. <productMenu id="fmradio"
  10084. type="1" >
  10085. </productMenu>
  10086. <productMenu id="phone"
  10087. type="0" >
  10088. </productMenu>
  10089. <productMenu id="music"
  10090. type="1" >
  10091. </productMenu>
  10092. <productMenu id="musicSharing"
  10093. type="0" >
  10094. </productMenu>
  10095. <productMenu id="deviceSetting"
  10096. type="1"
  10097. url="https://api.sena.com/support/test/xml/NS_PROCOM_AIROHA_Test.xml" >
  10098. </productMenu>
  10099. <productMenu id="quickGuide"
  10100. type="0"
  10101. url=""
  10102. size="1.12MB" >
  10103. </productMenu>
  10104. <productMenu id="userGuide"
  10105. type="1"
  10106. url=""
  10107. size="2.0MB" >
  10108. </productMenu>
  10109. <productMenu id="videoGuide"
  10110. type="0"
  10111. url=""
  10112. size="3.41MB" >
  10113. </productMenu>
  10114. <productMenu id="connectGuide"
  10115. type="1"
  10116. url="https://api.sena.com/support/ConnectGuide/pluscenter_center5_init_phantom.json"
  10117. size="1.12MB" >
  10118. </productMenu>
  10119. <productMenu id="volume"
  10120. type="16" >
  10121. </productMenu>
  10122. <productMenu id="battery"
  10123. type="1" >
  10124. </productMenu>
  10125. <productID id="6A85"
  10126. />
  10127. <productGroupable type="0"
  10128. />
  10129. </product>
  10130. <product id="Triumph_50S"
  10131. name="Triumph 50S"
  10132. series="50"
  10133. latestVersion="1.5"
  10134. show = "0" >
  10135. <productMenu id="protocol"
  10136. type="2" >
  10137. </productMenu>
  10138. <productMenu id="alexa"
  10139. type="0" >
  10140. </productMenu>
  10141. <productMenu id="ota"
  10142. type="0"
  10143. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10144. size="1150234" >
  10145. </productMenu>
  10146. <productMenu id="wa"
  10147. type="1" >
  10148. </productMenu>
  10149. <productMenu id="sip"
  10150. type="1" >
  10151. </productMenu>
  10152. <productMenu id="meshIntercom"
  10153. type="20" >
  10154. </productMenu>
  10155. <productMenu id="bluetoothIntercom"
  10156. type="1" >
  10157. </productMenu>
  10158. <productMenu id="meshIntercom+"
  10159. type="3"
  10160. url="2" >
  10161. <productMenuType version="1.2.9"
  10162. type="2"
  10163. />
  10164. <productMenuURL version="1.2.9"
  10165. url="0"
  10166. />
  10167. </productMenu>
  10168. <productMenu id="waveIntercom"
  10169. type="1" >
  10170. <productMenuType version="1.2.9"
  10171. type="0"
  10172. />
  10173. </productMenu>
  10174. <productMenu id="phone"
  10175. type="1" >
  10176. </productMenu>
  10177. <productMenu id="music"
  10178. type="1" >
  10179. </productMenu>
  10180. <productMenu id="fmradio"
  10181. type="1" >
  10182. </productMenu>
  10183. <productMenu id="deviceSetting"
  10184. type="1"
  10185. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10186. <productMenuURL version="1.2.9"
  10187. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_06_HKAudio.xml"
  10188. />
  10189. <productMenuURL version="1.0"
  10190. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_03.xml"
  10191. />
  10192. </productMenu>
  10193. <productMenu id="quickGuide"
  10194. type="1"
  10195. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_Triumph_50S_1.3.0_en_220111.pdf"
  10196. size="934KB" >
  10197. </productMenu>
  10198. <productMenu id="userGuide"
  10199. type="1"
  10200. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Triumph_50S_1.6.0_us_250529.pdf"
  10201. size="1.14MB" >
  10202. </productMenu>
  10203. <productMenu id="volume"
  10204. type="11" >
  10205. </productMenu>
  10206. <productMenu id="battery"
  10207. type="1" >
  10208. </productMenu>
  10209. <productID id="3264"
  10210. />
  10211. <productGroupable type="0"
  10212. />
  10213. </product>
  10214. <product id="RE50S"
  10215. name="RE 50S"
  10216. series="50"
  10217. latestVersion="2.7"
  10218. show = "0" >
  10219. <productMenu id="protocol"
  10220. type="2" >
  10221. </productMenu>
  10222. <productMenu id="alexa"
  10223. type="0" >
  10224. </productMenu>
  10225. <productMenu id="ota"
  10226. type="0"
  10227. url="https://api.sena.com/support/bmwgw/BMW_GW_v1.0_24_29_18.img"
  10228. size="1150234" >
  10229. </productMenu>
  10230. <productMenu id="wa"
  10231. type="1" >
  10232. </productMenu>
  10233. <productMenu id="sip"
  10234. type="1" >
  10235. </productMenu>
  10236. <productMenu id="meshIntercom"
  10237. type="30" >
  10238. </productMenu>
  10239. <productMenu id="meshIntercom+"
  10240. type="3"
  10241. url="2" >
  10242. <productMenuType version="2.5"
  10243. type="2"
  10244. />
  10245. </productMenu>
  10246. <productMenu id="waveIntercom"
  10247. type="1" >
  10248. <productMenuType version="2.5"
  10249. type="0"
  10250. />
  10251. </productMenu>
  10252. <productMenu id="bluetoothIntercom"
  10253. type="1" >
  10254. </productMenu>
  10255. <productMenu id="phone"
  10256. type="1" >
  10257. </productMenu>
  10258. <productMenu id="music"
  10259. type="1" >
  10260. </productMenu>
  10261. <productMenu id="fmradio"
  10262. type="1" >
  10263. </productMenu>
  10264. <productMenu id="deviceSetting"
  10265. type="1"
  10266. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_14.xml" >
  10267. <productMenuURL version="2.5.9"
  10268. url="https://api.sena.com/support/SenaNeoApp/50/NS_50_09.xml"
  10269. />
  10270. </productMenu>
  10271. <productMenu id="quickGuide"
  10272. type="1"
  10273. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_RoyalEnfield_50S_2.3.0_en_240625.pdf"
  10274. size="934KB" >
  10275. </productMenu>
  10276. <productMenu id="userGuide"
  10277. type="1"
  10278. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_RoyalEnfield_50S_2.8.0_en_250522.pdf"
  10279. size="1.14MB" >
  10280. </productMenu>
  10281. <productMenu id="videoGuide"
  10282. type="0"
  10283. url=""
  10284. size="3.41MB" >
  10285. </productMenu>
  10286. <productMenu id="volume"
  10287. type="11" >
  10288. </productMenu>
  10289. <productMenu id="battery"
  10290. type="1" >
  10291. </productMenu>
  10292. <productID id="321C"
  10293. />
  10294. <productGroupable type="0"
  10295. />
  10296. </product>
  10297. <product id="BMW_HELMET_II_U1"
  10298. name="BMW HELMET II U1"
  10299. series="50"
  10300. latestVersion="1.0"
  10301. show = "0" >
  10302. <productMenu id="protocol"
  10303. type="2" >
  10304. </productMenu>
  10305. <productMenu id="alexa"
  10306. type="0" >
  10307. </productMenu>
  10308. <productMenu id="sip"
  10309. type="1" >
  10310. </productMenu>
  10311. <productMenu id="meshIntercom"
  10312. type="20" >
  10313. </productMenu>
  10314. <productMenu id="bluetoothIntercom"
  10315. type="1" >
  10316. </productMenu>
  10317. <productMenu id="bluetoothIntercom2"
  10318. type="1" >
  10319. </productMenu>
  10320. <productMenu id="phone"
  10321. type="1" >
  10322. </productMenu>
  10323. <productMenu id="music"
  10324. type="1" >
  10325. </productMenu>
  10326. <productMenu id="fmradio"
  10327. type="1" >
  10328. </productMenu>
  10329. <productMenu id="deviceSetting"
  10330. type="1"
  10331. url="https://api.sena.com/support/bmwComU1/BMW_HELMET_II_U1/NS_BMW_HELMET_II_U1.xml" >
  10332. </productMenu>
  10333. <productMenu id="quickGuide"
  10334. type="1"
  10335. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_50S_03.pdf"
  10336. size="934KB" >
  10337. </productMenu>
  10338. <productMenu id="userGuide"
  10339. type="1"
  10340. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_50S_1.2.0_en_200910.pdf"
  10341. size="1.14MB" >
  10342. </productMenu>
  10343. <productMenu id="volume"
  10344. type="11" >
  10345. </productMenu>
  10346. <productMenu id="battery"
  10347. type="1" >
  10348. </productMenu>
  10349. <productID id="3260"
  10350. />
  10351. <productGroupable type="0"
  10352. />
  10353. </product>
  10354. <product id="OUTRUSHR"
  10355. name="CX935"
  10356. series="Helmet"
  10357. latestVersion="2.1"
  10358. show = "-1" >
  10359. <productMenu id="protocol"
  10360. type="3">
  10361. </productMenu>
  10362. <productMenu id="sip"
  10363. type="1" >
  10364. </productMenu>
  10365. <productMenu id="bluetoothIntercom"
  10366. type="1" >
  10367. </productMenu>
  10368. <productMenu id="phone"
  10369. type="1" >
  10370. </productMenu>
  10371. <productMenu id="fmradio"
  10372. type="0" >
  10373. </productMenu>
  10374. <productMenu id="deviceSetting"
  10375. type="1"
  10376. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR_02.xml" >
  10377. </productMenu>
  10378. <productMenu id="userGuide"
  10379. type="1"
  10380. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_OUTRUSH_R_1.3.0_en_250120.pdf"
  10381. size="660KB" >
  10382. </productMenu>
  10383. <productID id="5446"
  10384. />
  10385. <productGroupable type="0"
  10386. />
  10387. </product>
  10388. <product id="LSE_01"
  10389. name="LSE-01"
  10390. series="SF"
  10391. latestVersion="1.2.3"
  10392. show = "0" >
  10393. <productMenu id="protocol"
  10394. type="1"
  10395. url="3">
  10396. </productMenu>
  10397. <productMenu id="sip"
  10398. type="1" >
  10399. </productMenu>
  10400. <productMenu id="bluetoothIntercom"
  10401. type="1" >
  10402. </productMenu>
  10403. <productMenu id="phone"
  10404. type="1" >
  10405. </productMenu>
  10406. <productMenu id="music"
  10407. type="1" >
  10408. </productMenu>
  10409. <productMenu id="fmradio"
  10410. type="1" >
  10411. </productMenu>
  10412. <productMenu id="deviceSetting"
  10413. type="1"
  10414. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10415. <productMenuURL version="1.1"
  10416. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4.xml"
  10417. />
  10418. <productMenuURL version="1.0"
  10419. url="https://api.sena.com/support/SenaUtility/LSE-01/DSup_LSE-01.xml"
  10420. />
  10421. </productMenu>
  10422. <productMenu id="quickGuide"
  10423. type="1"
  10424. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Louis_LSE-01_1.1.0_en_230512.pdf"
  10425. size="607KB" >
  10426. </productMenu>
  10427. <productMenu id="userGuide"
  10428. type="1"
  10429. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Louis_LSE-01_1.2.0_en_230512.pdf"
  10430. size="1.91MB" >
  10431. </productMenu>
  10432. <productMenu id="volume"
  10433. type="4" >
  10434. </productMenu>
  10435. <productID id="5416"
  10436. />
  10437. <productGroupable type="0"
  10438. />
  10439. </product>
  10440. <product id="AGV_ARK"
  10441. name="AGV ARK"
  10442. series="SF"
  10443. latestVersion="1.0.3"
  10444. show = "0" >
  10445. <productMenu id="protocol"
  10446. type="1"
  10447. url="3">
  10448. </productMenu>
  10449. <productMenu id="sip"
  10450. type="1" >
  10451. </productMenu>
  10452. <productMenu id="bluetoothIntercom"
  10453. type="1" >
  10454. </productMenu>
  10455. <productMenu id="phone"
  10456. type="1" >
  10457. </productMenu>
  10458. <productMenu id="music"
  10459. type="1" >
  10460. </productMenu>
  10461. <productMenu id="fmradio"
  10462. type="1" >
  10463. </productMenu>
  10464. <productMenu id="deviceSetting"
  10465. type="1"
  10466. url="https://api.sena.com/support/SenaUtility/SF4/DSup_SF4_v0101fm.xml">
  10467. </productMenu>
  10468. <productMenu id="quickGuide"
  10469. type="1"
  10470. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ARK_1.1.0_en_230511_D00131.pdf"
  10471. size="607KB" >
  10472. </productMenu>
  10473. <productMenu id="userGuide"
  10474. type="1"
  10475. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ARK_1.1.0_en_230511.pdf"
  10476. size="1.91MB" >
  10477. </productMenu>
  10478. <productMenu id="volume"
  10479. type="4" >
  10480. </productMenu>
  10481. <productID id="5420"
  10482. />
  10483. <productGroupable type="0"
  10484. />
  10485. </product>
  10486. <product id="KLIM_KRIOS"
  10487. name="KLIM Krios"
  10488. series="10"
  10489. latestVersion="1.1.2"
  10490. show = "0" >
  10491. <productMenu id="protocol"
  10492. type="0">
  10493. </productMenu>
  10494. <productMenu id="sip"
  10495. type="1" >
  10496. </productMenu>
  10497. <productMenu id="bluetoothIntercom"
  10498. type="1" >
  10499. </productMenu>
  10500. <productMenu id="phone"
  10501. type="2" >
  10502. </productMenu>
  10503. <productMenu id="fmradio"
  10504. type="3" >
  10505. </productMenu>
  10506. <productMenu id="deviceSetting"
  10507. type="1"
  10508. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DS_KLIM_v0101.xml" >
  10509. <productMenuURL version="1.0"
  10510. url="https://api.sena.com/support/SenaUtility/KLIM_KRIOS/DeviceSetting_KLIM_KRIOS.xml"
  10511. />
  10512. </productMenu>
  10513. <productMenu id="quickGuide"
  10514. type="1"
  10515. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Krios_02.pdf"
  10516. size="649KB" >
  10517. </productMenu>
  10518. <productMenu id="userGuide"
  10519. type="1"
  10520. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Krios_v1.1_02.pdf"
  10521. size="1.43MB" >
  10522. </productMenu>
  10523. <productID id="5910"
  10524. />
  10525. <productGroupable type="0"
  10526. />
  10527. </product>
  10528. <product id="POLARIS_SLINGSHOT"
  10529. name="Polaris Slingshot"
  10530. series="10"
  10531. latestVersion="1.1.2"
  10532. show = "0" >
  10533. <productMenu id="protocol"
  10534. type="0">
  10535. </productMenu>
  10536. <productMenu id="sip"
  10537. type="1" >
  10538. </productMenu>
  10539. <productMenu id="bluetoothIntercom"
  10540. type="1" >
  10541. </productMenu>
  10542. <productMenu id="phone"
  10543. type="2" >
  10544. </productMenu>
  10545. <productMenu id="fmradio"
  10546. type="3" >
  10547. </productMenu>
  10548. <productMenu id="deviceSetting"
  10549. type="1"
  10550. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DS_POLARIS_v0101.xml" >
  10551. <productMenuURL version="1.0"
  10552. url="https://api.sena.com/support/SenaUtility/POLARIS_SLINGSHOT/DeviceSetting_POLARIS_SLINGSHOT.xml"
  10553. />
  10554. </productMenu>
  10555. <productMenu id="quickGuide"
  10556. type="1"
  10557. url="https://firmware.sena.com/senabluetoothmanager/QuickGuide_Sena_10U_for_Polaris_01.pdf"
  10558. size="689KB" >
  10559. </productMenu>
  10560. <productMenu id="userGuide"
  10561. type="1"
  10562. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Sena_10U_for_Polaris_v1.1_01.pdf"
  10563. size="1.43MB" >
  10564. </productMenu>
  10565. <productID id="5920"
  10566. />
  10567. <productGroupable type="0"
  10568. />
  10569. </product>
  10570. <product id="DWO6"
  10571. name="SEDICI DWO6-PRO"
  10572. series="10"
  10573. latestVersion="1.0.2"
  10574. show = "0" >
  10575. <productMenu id="protocol"
  10576. type="0">
  10577. </productMenu>
  10578. <productMenu id="sip"
  10579. type="1" >
  10580. </productMenu>
  10581. <productMenu id="bluetoothIntercom"
  10582. type="1" >
  10583. </productMenu>
  10584. <productMenu id="phone"
  10585. type="2" >
  10586. </productMenu>
  10587. <productMenu id="fmradio"
  10588. type="3" >
  10589. </productMenu>
  10590. <productMenu id="deviceSetting"
  10591. type="1"
  10592. url="https://api.sena.com/support/SenaUtility/10R/DS_10R_v0200fm.xml" >
  10593. </productMenu>
  10594. <productMenu id="quickGuide"
  10595. type="1"
  10596. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  10597. size="529KB" >
  10598. </productMenu>
  10599. <productMenu id="userGuide"
  10600. type="1"
  10601. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_PRO_1.1.0_en_230510.pdf"
  10602. size="4.09MB" >
  10603. </productMenu>
  10604. <productID id="6112"
  10605. />
  10606. <productGroupable type="0"
  10607. />
  10608. </product>
  10609. <product id="DWO6A"
  10610. name="SEDICI DWO-6"
  10611. series="10"
  10612. latestVersion="1.0.2"
  10613. show = "0" >
  10614. <productMenu id="protocol"
  10615. type="0">
  10616. </productMenu>
  10617. <productMenu id="sip"
  10618. type="1" >
  10619. </productMenu>
  10620. <productMenu id="bluetoothIntercom"
  10621. type="1" >
  10622. </productMenu>
  10623. <productMenu id="phone"
  10624. type="2" >
  10625. </productMenu>
  10626. <productMenu id="fmradio"
  10627. type="3" >
  10628. </productMenu>
  10629. <productMenu id="deviceSetting"
  10630. type="1"
  10631. url="https://api.sena.com/support/SenaUtility/DWO6/DS_DWO6A.xml" >
  10632. </productMenu>
  10633. <productMenu id="quickGuide"
  10634. type="1"
  10635. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO-6_1.1.0_en_230509.pdf"
  10636. size="522KB" >
  10637. </productMenu>
  10638. <productMenu id="userGuide"
  10639. type="1"
  10640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO-6_1.1.0_en_230504.pdf"
  10641. size="2.71MB" >
  10642. </productMenu>
  10643. <productID id="6114"
  10644. />
  10645. <productGroupable type="0"
  10646. />
  10647. </product>
  10648. <product id="3SPLUS"
  10649. name="ZILL"
  10650. series="3"
  10651. latestVersion="1.0.4"
  10652. show = "0" >
  10653. <productMenu id="protocol"
  10654. type="0">
  10655. </productMenu>
  10656. <productMenu id="sip"
  10657. type="1" >
  10658. </productMenu>
  10659. <productMenu id="bluetoothIntercom"
  10660. type="1" >
  10661. </productMenu>
  10662. <productMenu id="deviceSetting"
  10663. type="1"
  10664. url="https://api.sena.com/support/SenaUtility/3SPLUS/DS_3SPLUS_2.xml" >
  10665. </productMenu>
  10666. <productMenu id="quickGuide"
  10667. type="1"
  10668. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_3S_PLUS_2.1.0_en_230623.pdf"
  10669. size="842KB" >
  10670. </productMenu>
  10671. <productMenu id="userGuide"
  10672. type="1"
  10673. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_3S_PLUS_1.1.0_en_230623.pdf"
  10674. size="1.02MB" >
  10675. </productMenu>
  10676. <productID id="6335"
  10677. />
  10678. <productGroupable type="0"
  10679. />
  10680. </product>
  10681. <product id="HD50S"
  10682. name="Boom! Audio 30K"
  10683. series="30"
  10684. latestVersion="3.4"
  10685. show = "0" >
  10686. <productMenu id="protocol"
  10687. type="1"
  10688. url="0">
  10689. </productMenu>
  10690. <productMenu id="wa"
  10691. type="0" >
  10692. </productMenu>
  10693. <productMenu id="sip"
  10694. type="1" >
  10695. </productMenu>
  10696. <productMenu id="meshIntercom"
  10697. type="20" >
  10698. <productMenuType version="2.9.9"
  10699. type="10"
  10700. />
  10701. </productMenu>
  10702. <productMenu id="bluetoothIntercom"
  10703. type="1" >
  10704. </productMenu>
  10705. <productMenu id="phone"
  10706. type="1" >
  10707. </productMenu>
  10708. <productMenu id="music"
  10709. type="1" >
  10710. </productMenu>
  10711. <productMenu id="fmradio"
  10712. type="1" >
  10713. </productMenu>
  10714. <productMenu id="deviceSetting"
  10715. type="1"
  10716. url="https://api.sena.com/support/SenaNeoApp/30K/NS_HD30K_v0303.xml">
  10717. <productMenuURL version="3.2"
  10718. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0301.xml"
  10719. />
  10720. <productMenuURL version="3.0"
  10721. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml"
  10722. />
  10723. <productMenuURL version="2.2"
  10724. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  10725. />
  10726. </productMenu>
  10727. <productMenu id="quickGuide"
  10728. type="1"
  10729. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  10730. size="1.06MB" >
  10731. </productMenu>
  10732. <productMenu id="userGuide"
  10733. type="1"
  10734. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_30K_2.2.0_en_220906.pdf"
  10735. size="3.15MB" >
  10736. </productMenu>
  10737. <productMenu id="volume"
  10738. type="1" >
  10739. </productMenu>
  10740. <productID id="3112"
  10741. />
  10742. <productGroupable type="0"
  10743. />
  10744. </product>
  10745. <product id="HD50S"
  10746. name="Boom! Audio N02"
  10747. series="30"
  10748. latestVersion="3.1"
  10749. show = "0" >
  10750. <productMenu id="protocol"
  10751. type="1"
  10752. url="0">
  10753. </productMenu>
  10754. <productMenu id="wa"
  10755. type="2" >
  10756. </productMenu>
  10757. <productMenu id="sip"
  10758. type="1" >
  10759. </productMenu>
  10760. <productMenu id="meshIntercom"
  10761. type="20" >
  10762. <productMenuType version="2.9.9"
  10763. type="10"
  10764. />
  10765. </productMenu>
  10766. <productMenu id="bluetoothIntercom"
  10767. type="1" >
  10768. </productMenu>
  10769. <productMenu id="phone"
  10770. type="1" >
  10771. </productMenu>
  10772. <productMenu id="music"
  10773. type="1" >
  10774. </productMenu>
  10775. <productMenu id="fmradio"
  10776. type="1" >
  10777. </productMenu>
  10778. <productMenu id="deviceSetting"
  10779. type="1"
  10780. url="https://api.sena.com/support/SenaUtility/30K/DSup_HD30K_v0300.xml">
  10781. <productMenuURL version="2.2"
  10782. url="https://api.sena.com/support/SenaUtility/30K/DSup_30K_v0101.xml"
  10783. />
  10784. </productMenu>
  10785. <productMenu id="quickGuide"
  10786. type="1"
  10787. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N02_2.2.0_en_220906.pdf"
  10788. size="1.06MB" >
  10789. </productMenu>
  10790. <productMenu id="userGuide"
  10791. type="1"
  10792. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N02_2.2.0_en_220906.pdf"
  10793. size="3.15MB" >
  10794. </productMenu>
  10795. <productMenu id="volume"
  10796. type="2" >
  10797. </productMenu>
  10798. <productID id="3114"
  10799. />
  10800. <productGroupable type="0"
  10801. />
  10802. </product>
  10803. <product id="HD50S"
  10804. name="Boom Audio 20S"
  10805. series="50"
  10806. latestVersion="2.5.2"
  10807. show = "0" >
  10808. <productMenu id="protocol"
  10809. type="0">
  10810. </productMenu>
  10811. <productMenu id="sip"
  10812. type="1" >
  10813. <productMenuType version="1.0"
  10814. type="0"
  10815. />
  10816. </productMenu>
  10817. <productMenu id="bluetoothIntercom"
  10818. type="1" >
  10819. <productMenuType version="1.0"
  10820. type="0"
  10821. />
  10822. </productMenu>
  10823. <productMenu id="intercomSetting"
  10824. type="1" >
  10825. </productMenu>
  10826. <productMenu id="phone"
  10827. type="2" >
  10828. </productMenu>
  10829. <productMenu id="fmradio"
  10830. type="3" >
  10831. </productMenu>
  10832. <productMenu id="deviceSetting"
  10833. type="1"
  10834. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  10835. <productMenuURL version="2.4"
  10836. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  10837. />
  10838. <productMenuURL version="1.5"
  10839. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  10840. />
  10841. <productMenuURL version="1.4.1"
  10842. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  10843. />
  10844. <productMenuURL version="1.1"
  10845. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  10846. />
  10847. <productMenuURL version="1.0"
  10848. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  10849. />
  10850. </productMenu>
  10851. <productMenu id="quickGuide"
  10852. type="1"
  10853. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  10854. size="264KB" >
  10855. </productMenu>
  10856. <productMenu id="userGuide"
  10857. type="1"
  10858. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  10859. size="3.09MB" >
  10860. </productMenu>
  10861. <productMenu id="connectGuide"
  10862. type="1"
  10863. url="https://api.sena.com/support/ConnectGuide/jogphone_phone5.json"
  10864. size="1.12MB" >
  10865. </productMenu>
  10866. <productID id="4210"
  10867. />
  10868. <productProductKey key="11"
  10869. />
  10870. <productID id="4230"
  10871. />
  10872. <productProductKey key="11"
  10873. />
  10874. <productGroupable type="1"
  10875. />
  10876. </product>
  10877. <product id="HD50S"
  10878. name="Boom Audio 20S EVO"
  10879. series="50"
  10880. latestVersion="2.5.2"
  10881. show = "0" >
  10882. <productMenu id="protocol"
  10883. type="0">
  10884. </productMenu>
  10885. <productMenu id="sip"
  10886. type="1" >
  10887. <productMenuType version="1.0"
  10888. type="0"
  10889. />
  10890. </productMenu>
  10891. <productMenu id="bluetoothIntercom"
  10892. type="1" >
  10893. <productMenuType version="1.0"
  10894. type="0"
  10895. />
  10896. </productMenu>
  10897. <productMenu id="intercomSetting"
  10898. type="1" >
  10899. </productMenu>
  10900. <productMenu id="phone"
  10901. type="2" >
  10902. </productMenu>
  10903. <productMenu id="fmradio"
  10904. type="3" >
  10905. </productMenu>
  10906. <productMenu id="deviceSetting"
  10907. type="1"
  10908. url="https://api.sena.com/support/SenaNeoApp/20S/NS_HD20S_0205_01.xml" >
  10909. <productMenuURL version="2.4"
  10910. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0106_iaos.xml"
  10911. />
  10912. <productMenuURL version="1.5"
  10913. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0105_iaos.xml"
  10914. />
  10915. <productMenuURL version="1.4.1"
  10916. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0102_2_iaos.xml"
  10917. />
  10918. <productMenuURL version="1.1"
  10919. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S_v0101.xml"
  10920. />
  10921. <productMenuURL version="1.0"
  10922. url="https://api.sena.com/support/SenaUtility/20S/DeviceSetting_20S.xml"
  10923. />
  10924. </productMenu>
  10925. <productMenu id="quickGuide"
  10926. type="1"
  10927. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_Boom!_Audio_20S_EVO_1.9.0_en_220906.pdf"
  10928. size="321KB" >
  10929. </productMenu>
  10930. <productMenu id="userGuide"
  10931. type="1"
  10932. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_Boom!_Audio_20S_EVO_1.3.0_en_220906.pdf"
  10933. size="2.46MB" >
  10934. </productMenu>
  10935. <productID id="4230"
  10936. />
  10937. <productProductKey key="27"
  10938. />
  10939. <productGroupable type="1"
  10940. />
  10941. </product>
  10942. <product id="HD50S"
  10943. name="Boom! Audio 10S"
  10944. series="50"
  10945. latestVersion="1.1.3"
  10946. show = "0" >
  10947. <productMenu id="protocol"
  10948. type="0">
  10949. </productMenu>
  10950. <productMenu id="sip"
  10951. type="1" >
  10952. </productMenu>
  10953. <productMenu id="bluetoothIntercom"
  10954. type="1" >
  10955. </productMenu>
  10956. <productMenu id="phone"
  10957. type="2" >
  10958. </productMenu>
  10959. <productMenu id="fmradio"
  10960. type="3" >
  10961. </productMenu>
  10962. <productMenu id="deviceSetting"
  10963. type="1"
  10964. url="https://api.sena.com/support/SenaUtility/10S/DS_10S_v0104.xml" >
  10965. </productMenu>
  10966. <productMenu id="quickGuide"
  10967. type="1"
  10968. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  10969. size="538KB" >
  10970. </productMenu>
  10971. <productMenu id="userGuide"
  10972. type="1"
  10973. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_Boom!_Audio_10S_1.2.0_en_220906.pdf"
  10974. size="1.55MB" >
  10975. </productMenu>
  10976. <productID id="5532"
  10977. />
  10978. <productGroupable type="0"
  10979. />
  10980. </product>
  10981. <product id="HD50S"
  10982. name="Boom! Audio N01 10R"
  10983. series="50"
  10984. latestVersion="1.1.3"
  10985. show = "0" >
  10986. <productMenu id="protocol"
  10987. type="0">
  10988. </productMenu>
  10989. <productMenu id="sip"
  10990. type="1" >
  10991. </productMenu>
  10992. <productMenu id="bluetoothIntercom"
  10993. type="1" >
  10994. </productMenu>
  10995. <productMenu id="phone"
  10996. type="2" >
  10997. </productMenu>
  10998. <productMenu id="fmradio"
  10999. type="3" >
  11000. </productMenu>
  11001. <productMenu id="deviceSetting"
  11002. type="1"
  11003. url="https://api.sena.com/support/SenaUtility/Cavalry/DS_Cavalry.xml" >
  11004. </productMenu>
  11005. <productMenu id="quickGuide"
  11006. type="1"
  11007. url="https://www.sena.com/downloads/software/senabluetoothmanager/QuickStartGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11008. size="766KB" >
  11009. </productMenu>
  11010. <productMenu id="userGuide"
  11011. type="1"
  11012. url="https://www.sena.com/downloads/software/senabluetoothmanager/UsersGuide_HD-N01_10R_1.2.0_en_220906.pdf"
  11013. size="1.45MB" >
  11014. </productMenu>
  11015. <productID id="5522"
  11016. />
  11017. <productGroupable type="0"
  11018. />
  11019. </product>
  11020. <product id="HD50S"
  11021. name="OUTRUSH-R N03"
  11022. series="50"
  11023. latestVersion="1.2.1"
  11024. show = "-1" >
  11025. <productMenu id="protocol"
  11026. type="0">
  11027. </productMenu>
  11028. <productMenu id="sip"
  11029. type="1" >
  11030. </productMenu>
  11031. <productMenu id="bluetoothIntercom"
  11032. type="1" >
  11033. </productMenu>
  11034. <productMenu id="phone"
  11035. type="2" >
  11036. </productMenu>
  11037. <productMenu id="fmradio"
  11038. type="3" >
  11039. </productMenu>
  11040. <productMenu id="deviceSetting"
  11041. type="1"
  11042. url="https://api.sena.com/support/SenaUtility/OUTRUSH/DS_OUTRUSHR_fm.xml" >
  11043. </productMenu>
  11044. <productMenu id="userGuide"
  11045. type="1"
  11046. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_1.2.0_en_220906.pdf"
  11047. size="660KB" >
  11048. </productMenu>
  11049. <productID id="5434"
  11050. />
  11051. <productGroupable type="0"
  11052. />
  11053. </product>
  11054. <product id="HD50S"
  11055. name="OUTRUSH-R N03"
  11056. series="50"
  11057. latestVersion="2.0"
  11058. show = "0" >
  11059. <productMenu id="protocol"
  11060. type="3" >
  11061. </productMenu>
  11062. <productMenu id="sip"
  11063. type="1" >
  11064. </productMenu>
  11065. <productMenu id="bluetoothIntercom"
  11066. type="1" >
  11067. </productMenu>
  11068. <productMenu id="phone"
  11069. type="1" >
  11070. </productMenu>
  11071. <productMenu id="fmradio"
  11072. type="1" >
  11073. </productMenu>
  11074. <productMenu id="deviceSetting"
  11075. type="1"
  11076. url="https://api.sena.com/support/SenaNeoApp/QCCOUTRUSHR/NS_QCCOUTRUSHR.xml" >
  11077. </productMenu>
  11078. <productMenu id="userGuide"
  11079. type="1"
  11080. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_OUTRUSH-R_N03_2.0.0_en_230417.pdf"
  11081. size="1.14MB" >
  11082. </productMenu>
  11083. <productID id="5441"
  11084. />
  11085. <productGroupable type="0"
  11086. />
  11087. </product>
  11088. <product id="5R"
  11089. name="5R"
  11090. series="5"
  11091. latestVersion="1.0.1"
  11092. show = "1" >
  11093. <productMenu id="protocol"
  11094. type="3" >
  11095. </productMenu>
  11096. <productMenu id="sip"
  11097. type="1" >
  11098. </productMenu>
  11099. <productMenu id="bluetoothIntercom"
  11100. type="1" >
  11101. </productMenu>
  11102. <productMenu id="phone"
  11103. type="1" >
  11104. </productMenu>
  11105. <productMenu id="fmradio"
  11106. type="1" >
  11107. </productMenu>
  11108. <productMenu id="deviceSetting"
  11109. type="1"
  11110. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11111. </productMenu>
  11112. <productMenu id="quickGuide"
  11113. type="0"
  11114. url=""
  11115. size="934KB" >
  11116. </productMenu>
  11117. <productMenu id="userGuide"
  11118. type="1"
  11119. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_1.1.1_en_250211.pdf"
  11120. size="1.14MB" >
  11121. </productMenu>
  11122. <productMenu id="connectGuide"
  11123. type="1"
  11124. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11125. size="1.12MB" >
  11126. </productMenu>
  11127. <productID id="5591"
  11128. />
  11129. <productGroupable type="0"
  11130. />
  11131. </product>
  11132. <product id="5R"
  11133. name="5R LITE"
  11134. series="5"
  11135. latestVersion="1.0.1"
  11136. show = "1" >
  11137. <productMenu id="protocol"
  11138. type="3" >
  11139. </productMenu>
  11140. <productMenu id="sip"
  11141. type="1" >
  11142. </productMenu>
  11143. <productMenu id="bluetoothIntercom"
  11144. type="1" >
  11145. </productMenu>
  11146. <productMenu id="phone"
  11147. type="1" >
  11148. </productMenu>
  11149. <productMenu id="fmradio"
  11150. type="1" >
  11151. </productMenu>
  11152. <productMenu id="deviceSetting"
  11153. type="1"
  11154. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11155. </productMenu>
  11156. <productMenu id="quickGuide"
  11157. type="0"
  11158. url=""
  11159. size="934KB" >
  11160. </productMenu>
  11161. <productMenu id="userGuide"
  11162. type="1"
  11163. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11164. size="1.14MB" >
  11165. </productMenu>
  11166. <productMenu id="connectGuide"
  11167. type="1"
  11168. url="https://api.sena.com/support/ConnectGuide/plusminus_multi10plus1_lcd_init.json"
  11169. size="1.12MB" >
  11170. </productMenu>
  11171. <productID id="5592"
  11172. />
  11173. <productGroupable type="0"
  11174. />
  11175. </product>
  11176. <product id="50RLE"
  11177. name="50R LE"
  11178. series="50"
  11179. latestVersion="1.1"
  11180. show = "0" >
  11181. <productMenu id="protocol"
  11182. type="2" >
  11183. </productMenu>
  11184. <productMenu id="alexa"
  11185. type="0" >
  11186. </productMenu>
  11187. <productMenu id="sip"
  11188. type="1" >
  11189. </productMenu>
  11190. <productMenu id="meshIntercom"
  11191. type="30" >
  11192. </productMenu>
  11193. <productMenu id="meshIntercom+"
  11194. type="3"
  11195. url="2" >
  11196. <productMenuType version="1.0.9"
  11197. type="2"
  11198. />
  11199. </productMenu>
  11200. <productMenu id="waveIntercom"
  11201. type="1" >
  11202. <productMenuType version="1.0.9"
  11203. type="0"
  11204. />
  11205. </productMenu>
  11206. <productMenu id="bluetoothIntercom"
  11207. type="1" >
  11208. </productMenu>
  11209. <productMenu id="phone"
  11210. type="1" >
  11211. </productMenu>
  11212. <productMenu id="music"
  11213. type="1" >
  11214. </productMenu>
  11215. <productMenu id="fmradio"
  11216. type="0" >
  11217. </productMenu>
  11218. <productMenu id="deviceSetting"
  11219. type="1"
  11220. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_03.xml" >
  11221. <productMenuURL version="1.0.9"
  11222. url="https://api.sena.com/support/SenaNeoApp/50RLE/NS_50RLE_01.xml"
  11223. />
  11224. </productMenu>
  11225. <productMenu id="quickGuide"
  11226. type="0"
  11227. url=""
  11228. size="344KB" >
  11229. </productMenu>
  11230. <productMenu id="userGuide"
  11231. type="0"
  11232. url=""
  11233. size="3.41MB" >
  11234. </productMenu>
  11235. <productMenu id="volume"
  11236. type="11" >
  11237. </productMenu>
  11238. <productMenu id="battery"
  11239. type="1" >
  11240. </productMenu>
  11241. <productID id="3223"
  11242. />
  11243. <productGroupable type="0"
  11244. />
  11245. </product>
  11246. <product id="5RLOUIS"
  11247. name="5R LOUIS EDITION"
  11248. series="5"
  11249. latestVersion="1.0"
  11250. show = "-1" >
  11251. <productMenu id="protocol"
  11252. type="3" >
  11253. </productMenu>
  11254. <productMenu id="sip"
  11255. type="1" >
  11256. </productMenu>
  11257. <productMenu id="bluetoothIntercom"
  11258. type="1" >
  11259. </productMenu>
  11260. <productMenu id="phone"
  11261. type="1" >
  11262. </productMenu>
  11263. <productMenu id="fmradio"
  11264. type="1" >
  11265. </productMenu>
  11266. <productMenu id="deviceSetting"
  11267. type="1"
  11268. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11269. </productMenu>
  11270. <productMenu id="quickGuide"
  11271. type="0"
  11272. url=""
  11273. size="934KB" >
  11274. </productMenu>
  11275. <productMenu id="userGuide"
  11276. type="0"
  11277. url=""
  11278. size="1.14MB" >
  11279. </productMenu>
  11280. <productID id="5597"
  11281. />
  11282. <productGroupable type="0"
  11283. />
  11284. </product>
  11285. <product id="5S"
  11286. name="Ridekont 5S"
  11287. series="5"
  11288. latestVersion="2.3"
  11289. show = "-1" >
  11290. <productMenu id="protocol"
  11291. type="3" >
  11292. </productMenu>
  11293. <productMenu id="sip"
  11294. type="1" >
  11295. </productMenu>
  11296. <productMenu id="bluetoothIntercom"
  11297. type="1" >
  11298. </productMenu>
  11299. <productMenu id="phone"
  11300. type="1" >
  11301. </productMenu>
  11302. <productMenu id="fmradio"
  11303. type="0" >
  11304. </productMenu>
  11305. <productMenu id="deviceSetting"
  11306. type="1"
  11307. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11308. </productMenu>
  11309. <productMenu id="quickGuide"
  11310. type="0"
  11311. url=""
  11312. size="934KB" >
  11313. </productMenu>
  11314. <productMenu id="userGuide"
  11315. type="1"
  11316. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5S_2.3.0_en_250114.pdf"
  11317. size="1.14MB" >
  11318. </productMenu>
  11319. <productID id="5589"
  11320. />
  11321. <productGroupable type="0"
  11322. />
  11323. </product>
  11324. <product id="5R"
  11325. name="Ridekont 5R"
  11326. series="5"
  11327. latestVersion="1.0"
  11328. show = "0" >
  11329. <productMenu id="protocol"
  11330. type="3" >
  11331. </productMenu>
  11332. <productMenu id="sip"
  11333. type="1" >
  11334. </productMenu>
  11335. <productMenu id="bluetoothIntercom"
  11336. type="1" >
  11337. </productMenu>
  11338. <productMenu id="phone"
  11339. type="1" >
  11340. </productMenu>
  11341. <productMenu id="fmradio"
  11342. type="1" >
  11343. </productMenu>
  11344. <productMenu id="deviceSetting"
  11345. type="1"
  11346. url="https://api.sena.com/support/SenaNeoApp/5S/NS_QCC5S_BY_3.xml" >
  11347. </productMenu>
  11348. <productMenu id="quickGuide"
  11349. type="1"
  11350. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_5R_1.0.0_en_220511.pdf"
  11351. size="934KB" >
  11352. </productMenu>
  11353. <productMenu id="userGuide"
  11354. type="1"
  11355. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_5R_1.0.2_en_230106.pdf"
  11356. size="1.14MB" >
  11357. </productMenu>
  11358. <productID id="5593"
  11359. />
  11360. <productGroupable type="0"
  11361. />
  11362. </product>
  11363. <product id="5R"
  11364. name="Ridekont 5R LITE"
  11365. series="5"
  11366. latestVersion="1.0"
  11367. show = "0" >
  11368. <productMenu id="protocol"
  11369. type="3" >
  11370. </productMenu>
  11371. <productMenu id="sip"
  11372. type="1" >
  11373. </productMenu>
  11374. <productMenu id="bluetoothIntercom"
  11375. type="1" >
  11376. </productMenu>
  11377. <productMenu id="phone"
  11378. type="1" >
  11379. </productMenu>
  11380. <productMenu id="fmradio"
  11381. type="1" >
  11382. </productMenu>
  11383. <productMenu id="deviceSetting"
  11384. type="1"
  11385. url="https://api.sena.com/support/SenaNeoApp/QCC5RLITE/NS_QCC5RLITE_01.xml" >
  11386. </productMenu>
  11387. <productMenu id="quickGuide"
  11388. type="0"
  11389. url=""
  11390. size="934KB" >
  11391. </productMenu>
  11392. <productMenu id="userGuide"
  11393. type="1"
  11394. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_5R_LITE_1.1.0_en_241230.pdf"
  11395. size="1.14MB" >
  11396. </productMenu>
  11397. <productID id="5594"
  11398. />
  11399. <productGroupable type="0"
  11400. />
  11401. </product>
  11402. <product id="SA30"
  11403. name="SA30"
  11404. series="SA"
  11405. latestVersion="1.0"
  11406. latestVersionVoicePrompt="0.14"
  11407. show = "-1" >
  11408. <productMenu id="protocol"
  11409. type="2" >
  11410. </productMenu>
  11411. <productMenu id="ota"
  11412. type="2" >
  11413. <otaPackages>
  11414. <package
  11415. url="https://api.sena.com/support/OTA/Motorcycles/SA30/SENA_SA30-v1.0-build1.img"
  11416. size="3144148"
  11417. />
  11418. </otaPackages>
  11419. </productMenu>
  11420. <productMenu id="meshIntercom"
  11421. type="30" >
  11422. </productMenu>
  11423. <productMenu id="meshIntercom+"
  11424. type="3"
  11425. url="2" >
  11426. </productMenu>
  11427. <productMenu id="phone"
  11428. type="1" >
  11429. </productMenu>
  11430. <productMenu id="music"
  11431. type="1" >
  11432. </productMenu>
  11433. <productMenu id="musicSharing"
  11434. type="0" >
  11435. </productMenu>
  11436. <productMenu id="deviceSetting"
  11437. type="1"
  11438. url="https://api.sena.com/support/SenaNeoApp/SA30/NS_SA30_AIROHA.xml" >
  11439. </productMenu>
  11440. <productMenu id="quickGuide"
  11441. type="0"
  11442. url=""
  11443. size="1.12MB" >
  11444. </productMenu>
  11445. <productMenu id="userGuide"
  11446. type="1"
  11447. url=""
  11448. size="2.0MB" >
  11449. </productMenu>
  11450. <productMenu id="videoGuide"
  11451. type="0"
  11452. url=""
  11453. size="3.41MB" >
  11454. </productMenu>
  11455. <productMenu id="volume"
  11456. type="12" >
  11457. </productMenu>
  11458. <productMenu id="battery"
  11459. type="1" >
  11460. </productMenu>
  11461. <productID id="6852"
  11462. />
  11463. <productGroupable type="0"
  11464. />
  11465. </product>
  11466. <product id="I30"
  11467. name="I30"
  11468. series="I"
  11469. latestVersion="1.0"
  11470. latestVersionVoicePrompt="0.1"
  11471. show = "-1" >
  11472. <productMenu id="protocol"
  11473. type="2" >
  11474. </productMenu>
  11475. <productMenu id="ota"
  11476. type="2" >
  11477. <otaPackages>
  11478. <package
  11479. url="https://api.sena.com/support/OTA/Motorcycles/I30/SENA_I30-v1.0-build0.img"
  11480. size="3144148"
  11481. />
  11482. </otaPackages>
  11483. </productMenu>
  11484. <productMenu id="meshIntercom"
  11485. type="30" >
  11486. </productMenu>
  11487. <productMenu id="meshIntercom+"
  11488. type="3"
  11489. url="2" >
  11490. </productMenu>
  11491. <productMenu id="phone"
  11492. type="1" >
  11493. </productMenu>
  11494. <productMenu id="music"
  11495. type="1" >
  11496. </productMenu>
  11497. <productMenu id="musicSharing"
  11498. type="0" >
  11499. </productMenu>
  11500. <productMenu id="deviceSetting"
  11501. type="1"
  11502. url="https://api.sena.com/support/SenaNeoApp/I30/NS_I30_AIROHA.xml" >
  11503. </productMenu>
  11504. <productMenu id="quickGuide"
  11505. type="0"
  11506. url=""
  11507. size="1.12MB" >
  11508. </productMenu>
  11509. <productMenu id="userGuide"
  11510. type="1"
  11511. url=""
  11512. size="2.10MB" >
  11513. </productMenu>
  11514. <productMenu id="videoGuide"
  11515. type="0"
  11516. url=""
  11517. size="3.11MB" >
  11518. </productMenu>
  11519. <productMenu id="volume"
  11520. type="12" >
  11521. </productMenu>
  11522. <productMenu id="battery"
  11523. type="1" >
  11524. </productMenu>
  11525. <productID id="6853"
  11526. />
  11527. <productGroupable type="0"
  11528. />
  11529. </product>
  11530. <product id="C30"
  11531. name="SENA C30"
  11532. series="C"
  11533. latestVersion="1.2"
  11534. latestVersionVoicePrompt="0.11"
  11535. show = "1" >
  11536. <productMenu id="protocol"
  11537. type="2" >
  11538. </productMenu>
  11539. <productMenu id="alexa"
  11540. type="0" >
  11541. </productMenu>
  11542. <productMenu id="ota"
  11543. type="2" >
  11544. <otaPackages>
  11545. <package
  11546. url="https://api.sena.com/support/OTA/C30/SENA_C30-v1.2-build0.img"
  11547. size="3144148"
  11548. />
  11549. </otaPackages>
  11550. </productMenu>
  11551. <productMenu id="wa"
  11552. type="0" >
  11553. </productMenu>
  11554. <productMenu id="meshIntercom"
  11555. type="30" >
  11556. </productMenu>
  11557. <productMenu id="meshIntercom+"
  11558. type="3"
  11559. url="2" >
  11560. <productMenuType version="1.0.9"
  11561. type="2"
  11562. />
  11563. </productMenu>
  11564. <productMenu id="waveIntercom"
  11565. type="1" >
  11566. <productMenuType version="1.1.9"
  11567. type="0"
  11568. />
  11569. </productMenu>
  11570. <productMenu id="phone"
  11571. type="1" >
  11572. </productMenu>
  11573. <productMenu id="music"
  11574. type="1" >
  11575. </productMenu>
  11576. <productMenu id="musicSharing"
  11577. type="0" >
  11578. </productMenu>
  11579. <productMenu id="deviceSetting"
  11580. type="1"
  11581. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_07_zh_rCN.xml" >
  11582. <productMenuURL version="1.0.9"
  11583. url="https://api.sena.com/support/SenaNeoApp/C30/NS_C30_AIROHA_05_zh_rCN.xml"
  11584. />
  11585. </productMenu>
  11586. <productMenu id="quickGuide"
  11587. type="1"
  11588. url="https://firmware.sena.com/senabluetoothmanager/C30.pdf"
  11589. size="1.12MB" >
  11590. </productMenu>
  11591. <productMenu id="userGuide"
  11592. type="0"
  11593. url=""
  11594. size="2.0MB" >
  11595. </productMenu>
  11596. <productMenu id="videoGuide"
  11597. type="0"
  11598. url=""
  11599. size="3.41MB" >
  11600. </productMenu>
  11601. <productMenu id="volume"
  11602. type="12" >
  11603. </productMenu>
  11604. <productMenu id="battery"
  11605. type="1" >
  11606. </productMenu>
  11607. <productID id="683A"
  11608. />
  11609. <productGroupable type="0"
  11610. />
  11611. </product>
  11612. <product id="C20"
  11613. name="C20"
  11614. series="C"
  11615. latestVersion="1.0"
  11616. show = "1" >
  11617. <productMenu id="protocol"
  11618. type="3" >
  11619. </productMenu>
  11620. <productMenu id="sip"
  11621. type="1" >
  11622. </productMenu>
  11623. <productMenu id="bluetoothIntercom"
  11624. type="1" >
  11625. </productMenu>
  11626. <productMenu id="phone"
  11627. type="1" >
  11628. </productMenu>
  11629. <productMenu id="deviceSetting"
  11630. type="1"
  11631. url="https://api.sena.com/support/SenaNeoApp/C20/NS_QCCSC20.xml" >
  11632. </productMenu>
  11633. <productMenu id="quickGuide"
  11634. type="1"
  11635. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_C20_1.0.0_sc_231004.pdf"
  11636. size="934KB" >
  11637. </productMenu>
  11638. <productMenu id="userGuide"
  11639. type="1"
  11640. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_C20_1.0.0_sc_231004.pdf"
  11641. size="1.14MB" >
  11642. </productMenu>
  11643. <productID id="3701"
  11644. />
  11645. <productGroupable type="0"
  11646. />
  11647. </product>
  11648. <product id="C10"
  11649. name="C10"
  11650. series="C"
  11651. latestVersion="1.4.4"
  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="0" >
  11667. </productMenu>
  11668. <productMenu id="deviceSetting"
  11669. type="1"
  11670. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  11671. </productMenu>
  11672. <productMenu id="userGuide"
  11673. type="1"
  11674. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_C10_1.2.0_sc_250321.pdf"
  11675. size="1.14MB" >
  11676. </productMenu>
  11677. <productID id="5595"
  11678. />
  11679. <productGroupable type="0"
  11680. />
  11681. </product>
  11682. <product id="J30"
  11683. name="J30"
  11684. series="J"
  11685. latestVersion="1.2.1"
  11686. latestVersionVoicePrompt="0.13"
  11687. show = "0" >
  11688. <productMenu id="protocol"
  11689. type="2" >
  11690. </productMenu>
  11691. <productMenu id="alexa"
  11692. type="0" >
  11693. </productMenu>
  11694. <productMenu id="ota"
  11695. type="2" >
  11696. <otaPackages>
  11697. <package
  11698. url="https://api.sena.com/support/OTA/J30/SENA_J30-v1.2.1-build0.img"
  11699. size="3144148"
  11700. />
  11701. </otaPackages>
  11702. </productMenu>
  11703. <productMenu id="wa"
  11704. type="0" >
  11705. </productMenu>
  11706. <productMenu id="meshIntercom"
  11707. type="30" >
  11708. </productMenu>
  11709. <productMenu id="meshIntercom+"
  11710. type="3"
  11711. url="2" >
  11712. <productMenuType version="1.0.9"
  11713. type="2"
  11714. />
  11715. </productMenu>
  11716. <productMenu id="waveIntercom"
  11717. type="1" >
  11718. <productMenuType version="1.1.9"
  11719. type="0"
  11720. />
  11721. </productMenu>
  11722. <productMenu id="phone"
  11723. type="1" >
  11724. </productMenu>
  11725. <productMenu id="music"
  11726. type="1" >
  11727. </productMenu>
  11728. <productMenu id="musicSharing"
  11729. type="0" >
  11730. </productMenu>
  11731. <productMenu id="deviceSetting"
  11732. type="1"
  11733. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_01_ja.xml" >
  11734. <productMenuURL version="1.0.9"
  11735. url="https://api.sena.com/support/SenaNeoApp/J30/NS_J30_AIROHA_ja.xml"
  11736. />
  11737. </productMenu>
  11738. <productMenu id="quickGuide"
  11739. type="0"
  11740. url=""
  11741. size="1.12MB" >
  11742. </productMenu>
  11743. <productMenu id="userGuide"
  11744. type="1"
  11745. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J30_1.1.0_jp_250402.pdf"
  11746. size="2.0MB" >
  11747. </productMenu>
  11748. <productMenu id="videoGuide"
  11749. type="0"
  11750. url=""
  11751. size="3.41MB" >
  11752. </productMenu>
  11753. <productMenu id="volume"
  11754. type="12" >
  11755. </productMenu>
  11756. <productMenu id="battery"
  11757. type="1" >
  11758. </productMenu>
  11759. <productID id="6848"
  11760. />
  11761. <productGroupable type="0"
  11762. />
  11763. </product>
  11764. <product id="J10"
  11765. name="J10"
  11766. series="5"
  11767. latestVersion="1.1.4"
  11768. show = "0" >
  11769. <productMenu id="protocol"
  11770. type="3" >
  11771. </productMenu>
  11772. <productMenu id="sip"
  11773. type="1" >
  11774. </productMenu>
  11775. <productMenu id="bluetoothIntercom"
  11776. type="1" >
  11777. </productMenu>
  11778. <productMenu id="phone"
  11779. type="1" >
  11780. </productMenu>
  11781. <productMenu id="fmradio"
  11782. type="0" >
  11783. </productMenu>
  11784. <productMenu id="deviceSetting"
  11785. type="1"
  11786. url="https://api.sena.com/support/SenaNeoApp/C10/NS_C10_01.xml" >
  11787. </productMenu>
  11788. <productMenu id="userGuide"
  11789. type="1"
  11790. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_J10_1.1.0_jp_250320.pdf"
  11791. size="1.14MB" >
  11792. </productMenu>
  11793. <productID id="5598"
  11794. />
  11795. <productGroupable type="0"
  11796. />
  11797. </product>
  11798. <product id="B20"
  11799. name="B20"
  11800. series="B"
  11801. latestVersion="1.1.1"
  11802. latestVersionVoicePrompt="0.13"
  11803. show = "0" >
  11804. <productMenu id="protocol"
  11805. type="2" >
  11806. </productMenu>
  11807. <productMenu id="alexa"
  11808. type="0" >
  11809. </productMenu>
  11810. <productMenu id="ota"
  11811. type="2" >
  11812. <otaPackages>
  11813. <package
  11814. url="https://api.sena.com/support/OTA/B20/SENA_B20-v1.1.1-build0.img"
  11815. size="3144148"
  11816. />
  11817. </otaPackages>
  11818. </productMenu>
  11819. <productMenu id="wa"
  11820. type="0" >
  11821. </productMenu>
  11822. <productMenu id="meshIntercom"
  11823. type="30" >
  11824. </productMenu>
  11825. <productMenu id="phone"
  11826. type="1" >
  11827. </productMenu>
  11828. <productMenu id="music"
  11829. type="1" >
  11830. </productMenu>
  11831. <productMenu id="musicSharing"
  11832. type="0" >
  11833. </productMenu>
  11834. <productMenu id="deviceSetting"
  11835. type="1"
  11836. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_02.xml" >
  11837. <productMenuURL version="1.0.9"
  11838. url="https://api.sena.com/support/SenaNeoApp/B20/NS_B20_AIROHA_01.xml"
  11839. />
  11840. </productMenu>
  11841. <productMenu id="quickGuide"
  11842. type="0"
  11843. url=""
  11844. size="1.12MB" >
  11845. </productMenu>
  11846. <productMenu id="userGuide"
  11847. type="1"
  11848. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_B20_1.0.0_en_241213.pdf"
  11849. size="2.0MB" >
  11850. </productMenu>
  11851. <productMenu id="videoGuide"
  11852. type="0"
  11853. url=""
  11854. size="3.41MB" >
  11855. </productMenu>
  11856. <productMenu id="volume"
  11857. type="12" >
  11858. </productMenu>
  11859. <productMenu id="battery"
  11860. type="1" >
  11861. </productMenu>
  11862. <productID id="6847"
  11863. />
  11864. <productGroupable type="0"
  11865. />
  11866. </product>
  11867. <product id="B10"
  11868. name="B10"
  11869. series="5"
  11870. latestVersion="1.2.4"
  11871. show = "0" >
  11872. <productMenu id="protocol"
  11873. type="3" >
  11874. </productMenu>
  11875. <productMenu id="sip"
  11876. type="1" >
  11877. </productMenu>
  11878. <productMenu id="bluetoothIntercom"
  11879. type="1" >
  11880. </productMenu>
  11881. <productMenu id="phone"
  11882. type="1" >
  11883. </productMenu>
  11884. <productMenu id="fmradio"
  11885. type="0" >
  11886. </productMenu>
  11887. <productMenu id="deviceSetting"
  11888. type="1"
  11889. url="https://api.sena.com/support/SenaNeoApp/B10/NS_B10_01.xml" >
  11890. </productMenu>
  11891. <productMenu id="userGuide"
  11892. type="1"
  11893. url="https://firmware.sena.com/senabluetoothmanager/Indian_UserGuide_B10_1.2.0_en_250320.pdf"
  11894. size="1.14MB" >
  11895. </productMenu>
  11896. <productID id="5596"
  11897. />
  11898. <productGroupable type="0"
  11899. />
  11900. </product>
  11901. <product id="E30"
  11902. name="E30"
  11903. series="E"
  11904. latestVersion="1.1.1"
  11905. latestVersionVoicePrompt="0.13"
  11906. show = "0" >
  11907. <productMenu id="protocol"
  11908. type="2" >
  11909. </productMenu>
  11910. <productMenu id="alexa"
  11911. type="0" >
  11912. </productMenu>
  11913. <productMenu id="ota"
  11914. type="2" >
  11915. <otaPackages>
  11916. <package
  11917. url="https://api.sena.com/support/OTA/E30/SENA_E30-v1.1.1-build0.img"
  11918. size="3144148"
  11919. />
  11920. </otaPackages>
  11921. </productMenu>
  11922. <productMenu id="wa"
  11923. type="0" >
  11924. </productMenu>
  11925. <productMenu id="meshIntercom"
  11926. type="30" >
  11927. </productMenu>
  11928. <productMenu id="meshIntercom+"
  11929. type="3"
  11930. url="2" >
  11931. </productMenu>
  11932. <productMenu id="waveIntercom"
  11933. type="1" >
  11934. <productMenuType version="1.0.9"
  11935. type="0"
  11936. />
  11937. </productMenu>
  11938. <productMenu id="phone"
  11939. type="1" >
  11940. </productMenu>
  11941. <productMenu id="music"
  11942. type="1" >
  11943. </productMenu>
  11944. <productMenu id="musicSharing"
  11945. type="0" >
  11946. </productMenu>
  11947. <productMenu id="deviceSetting"
  11948. type="1"
  11949. url="https://api.sena.com/support/SenaNeoApp/E30/NS_E30_AIROHA_03.xml" >
  11950. </productMenu>
  11951. <productMenu id="quickGuide"
  11952. type="0"
  11953. url=""
  11954. size="1.12MB" >
  11955. </productMenu>
  11956. <productMenu id="userGuide"
  11957. type="1"
  11958. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_E30_1.0.0_sc_250110.pdf"
  11959. size="2.0MB" >
  11960. </productMenu>
  11961. <productMenu id="videoGuide"
  11962. type="0"
  11963. url=""
  11964. size="3.41MB" >
  11965. </productMenu>
  11966. <productMenu id="volume"
  11967. type="12" >
  11968. </productMenu>
  11969. <productMenu id="battery"
  11970. type="1" >
  11971. </productMenu>
  11972. <productID id="6846"
  11973. />
  11974. <productGroupable type="0"
  11975. />
  11976. </product>
  11977. <product id="ACSRAM"
  11978. name="ACS-RAM"
  11979. series="ACS"
  11980. latestVersion="1.0.5"
  11981. show = "1" >
  11982. <productMenu id="protocol"
  11983. type="3" >
  11984. </productMenu>
  11985. <productMenu id="sip"
  11986. type="1" >
  11987. </productMenu>
  11988. <productMenu id="bluetoothIntercom"
  11989. type="1" >
  11990. </productMenu>
  11991. <productMenu id="deviceSetting"
  11992. type="1"
  11993. url="https://api.sena.com/support/SenaNeoApp/ACSRAM/NS_ACSRAM.xml" >
  11994. </productMenu>
  11995. <productMenu id="quickGuide"
  11996. type="1"
  11997. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_app_ACS-RAM_1.0.0_en_220422.pdf"
  11998. size="344KB" >
  11999. </productMenu>
  12000. <productMenu id="userGuide"
  12001. type="1"
  12002. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_app_ACS-RAM_1.0.0_en_220518.pdf"
  12003. size="1.14MB" >
  12004. </productMenu>
  12005. <productMenu id="connectGuide"
  12006. type="1"
  12007. url="https://api.sena.com/support/ConnectGuide/plusminus_center10plus1_init.json"
  12008. size="1.12MB" >
  12009. </productMenu>
  12010. <productID id="3400"
  12011. />
  12012. <productGroupable type="0"
  12013. />
  12014. </product>
  12015. <product id="ACS10"
  12016. name="ACS10"
  12017. series="ACS"
  12018. latestVersion="1.0.2"
  12019. show = "1" >
  12020. <productMenu id="protocol"
  12021. type="0">
  12022. </productMenu>
  12023. <productMenu id="sip"
  12024. type="1" >
  12025. </productMenu>
  12026. <productMenu id="bluetoothIntercom"
  12027. type="1" >
  12028. </productMenu>
  12029. <productMenu id="phone"
  12030. type="2" >
  12031. </productMenu>
  12032. <productMenu id="deviceSetting"
  12033. type="1"
  12034. url="https://api.sena.com/support/SenaUtility/ACS10/DS_ACS10.xml" >
  12035. </productMenu>
  12036. <productMenu id="quickGuide"
  12037. type="1"
  12038. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_ACS10_1.1.0_en_221020.pdf"
  12039. size="970KB" >
  12040. </productMenu>
  12041. <productMenu id="userGuide"
  12042. type="1"
  12043. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_ACS10_1.1.0_en_221020.pdf"
  12044. size="1.26MB" >
  12045. </productMenu>
  12046. <productMenu id="connectGuide"
  12047. type="1"
  12048. url="https://api.sena.com/support/ConnectGuide/pluscenter_center10_init.json"
  12049. size="1.12MB" >
  12050. </productMenu>
  12051. <productID id="3300"
  12052. />
  12053. <productGroupable type="0"
  12054. />
  12055. </product>
  12056. <product id="DWO7ProMesh"
  12057. name="DWO 7 Pro Mesh"
  12058. series="50"
  12059. latestVersion="1.1"
  12060. latestVersionVoicePrompt="0.9"
  12061. show = "0" >
  12062. <productMenu id="protocol"
  12063. type="2" >
  12064. </productMenu>
  12065. <productMenu id="alexa"
  12066. type="0" >
  12067. </productMenu>
  12068. <productMenu id="ota"
  12069. type="2" >
  12070. <otaPackages>
  12071. <package
  12072. url="https://api.sena.com/support/OTA/DWO7ProMesh/SEDICI_DWO_7_PRO_MESH-v1.1-build1.img"
  12073. size="2945812"
  12074. />
  12075. </otaPackages>
  12076. </productMenu>
  12077. <productMenu id="wa"
  12078. type="0" >
  12079. </productMenu>
  12080. <productMenu id="meshIntercom"
  12081. type="20" >
  12082. </productMenu>
  12083. <productMenu id="meshIntercom+"
  12084. type="3"
  12085. url="2" >
  12086. <productMenuType version="1.0.9"
  12087. type="2"
  12088. />
  12089. <productMenuURL version="2.1.1"
  12090. url="0"
  12091. />
  12092. </productMenu>
  12093. <productMenu id="waveIntercom"
  12094. type="1" >
  12095. <productMenuType version="1.0.9"
  12096. type="0"
  12097. />
  12098. </productMenu>
  12099. <productMenu id="phone"
  12100. type="1" >
  12101. </productMenu>
  12102. <productMenu id="music"
  12103. type="1" >
  12104. </productMenu>
  12105. <productMenu id="fmradio"
  12106. type="1" >
  12107. </productMenu>
  12108. <productMenu id="musicSharing"
  12109. type="0" >
  12110. </productMenu>
  12111. <productMenu id="deviceSetting"
  12112. type="1"
  12113. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA_04.xml" >
  12114. <productMenuURL version="1.0.9"
  12115. url="https://api.sena.com/support/SenaNeoApp/DWO7ProMesh/NS_DWO7ProMesh_AIROHA.xml"
  12116. />
  12117. </productMenu>
  12118. <productMenu id="quickGuide"
  12119. type="1"
  12120. url="https://firmware.sena.com/senabluetoothmanager/QuickStartGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12121. size="1.12MB" >
  12122. </productMenu>
  12123. <productMenu id="userGuide"
  12124. type="1"
  12125. url="https://firmware.sena.com/senabluetoothmanager/UsersGuide_DWO_7_PRO_MESH_1.3.0_en_250311.pdf"
  12126. size="2.0MB" >
  12127. </productMenu>
  12128. <productMenu id="volume"
  12129. type="12" >
  12130. </productMenu>
  12131. <productMenu id="battery"
  12132. type="1" >
  12133. </productMenu>
  12134. <productID id="6806"
  12135. />
  12136. <productGroupable type="0"
  12137. />
  12138. </product>
  12139. <product id="ERA1X"
  12140. name="ERA 1 X"
  12141. series="UCOM"
  12142. latestVersion="0.2.1"
  12143. latestVersionMesh="0.19"
  12144. latestVersionVoicePrompt="1.2"
  12145. show = "-1" >
  12146. <productMenu id="protocol"
  12147. type="2" >
  12148. </productMenu>
  12149. <productMenu id="ota"
  12150. type="2" >
  12151. <otaLanguages>
  12152. <otaLanguage
  12153. id="0"
  12154. name="English"
  12155. package="0"
  12156. />
  12157. <otaLanguage
  12158. id="0"
  12159. name="French"
  12160. package="1"
  12161. />
  12162. <otaLanguage
  12163. id="0"
  12164. name="Spanish"
  12165. package="2"
  12166. />
  12167. <otaLanguage
  12168. id="0"
  12169. name="Italian"
  12170. package="3"
  12171. />
  12172. <otaLanguage
  12173. id="0"
  12174. name="German"
  12175. package="4"
  12176. />
  12177. <otaLanguage
  12178. id="0"
  12179. name="Dutch"
  12180. package="5"
  12181. />
  12182. <otaLanguage
  12183. id="0"
  12184. name="Russian"
  12185. package="6"
  12186. />
  12187. <otaLanguage
  12188. id="0"
  12189. name="Chinese"
  12190. package="7"
  12191. />
  12192. <otaLanguage
  12193. id="0"
  12194. name="Korean"
  12195. package="8"
  12196. />
  12197. <otaLanguage
  12198. id="0"
  12199. name="Japanese"
  12200. package="9"
  12201. />
  12202. <otaLanguage
  12203. id="0"
  12204. name="Finnish"
  12205. package="10"
  12206. />
  12207. <otaLanguage
  12208. id="0"
  12209. name="Polish"
  12210. package="11"
  12211. />
  12212. <otaLanguage
  12213. id="0"
  12214. name="Czech"
  12215. package="12"
  12216. />
  12217. <otaLanguage
  12218. id="0"
  12219. name="Danish"
  12220. package="13"
  12221. />
  12222. <otaLanguage
  12223. id="0"
  12224. name="Norwegian"
  12225. package="14"
  12226. />
  12227. <otaLanguage
  12228. id="0"
  12229. name="Swedish"
  12230. package="15"
  12231. />
  12232. <otaLanguage
  12233. id="0"
  12234. name="Turkish"
  12235. package="16"
  12236. />
  12237. <otaLanguage
  12238. id="0"
  12239. name="Hungarian"
  12240. package="17"
  12241. />
  12242. <otaLanguage
  12243. id="0"
  12244. name="Portuguese"
  12245. package="18"
  12246. />
  12247. <otaLanguage
  12248. id="0"
  12249. name="Hebrew"
  12250. package="19"
  12251. />
  12252. <otaLanguage
  12253. id="0"
  12254. name="Greek"
  12255. package="20"
  12256. />
  12257. </otaLanguages>
  12258. <otaPackages>
  12259. <package
  12260. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0.img"
  12261. size="5183988"
  12262. />
  12263. <package
  12264. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fr-FR.img"
  12265. size="5183988"
  12266. />
  12267. <package
  12268. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-es-ES.img"
  12269. size="5183988"
  12270. />
  12271. <package
  12272. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-it-IT.img"
  12273. size="5183988"
  12274. />
  12275. <package
  12276. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-de-DE.img"
  12277. size="5183988"
  12278. />
  12279. <package
  12280. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nl-NL.img"
  12281. size="5183988"
  12282. />
  12283. <package
  12284. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ru-RU.img"
  12285. size="5183988"
  12286. />
  12287. <package
  12288. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cmn-CN.img"
  12289. size="5183988"
  12290. />
  12291. <package
  12292. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ko-KR.img"
  12293. size="5183988"
  12294. />
  12295. <package
  12296. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-ja-JP.img"
  12297. size="5183988"
  12298. />
  12299. <package
  12300. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-fi-FI.img"
  12301. size="5183988"
  12302. />
  12303. <package
  12304. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pl-PL.img"
  12305. size="5183988"
  12306. />
  12307. <package
  12308. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-cs-CZ.img"
  12309. size="5183988"
  12310. />
  12311. <package
  12312. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-da-DK.img"
  12313. size="5183988"
  12314. />
  12315. <package
  12316. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-nb-NO.img"
  12317. size="5183988"
  12318. />
  12319. <package
  12320. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-sv-SE.img"
  12321. size="5183988"
  12322. />
  12323. <package
  12324. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-tr-TR.img"
  12325. size="5183988"
  12326. />
  12327. <package
  12328. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-hu-HU.img"
  12329. size="5183988"
  12330. />
  12331. <package
  12332. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-pt-PT.img"
  12333. size="5183988"
  12334. />
  12335. <package
  12336. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-he-IL.img"
  12337. size="5183988"
  12338. />
  12339. <package
  12340. url="https://api.sena.com/support/test/OTATest/Unite/ERA1X/CELLULARLINE_ERA_1_X-v0.2.1-build0-el-GR.img"
  12341. size="5183988"
  12342. />
  12343. </otaPackages>
  12344. </productMenu>
  12345. <productMenu id="wa"
  12346. type="0" >
  12347. </productMenu>
  12348. <productMenu id="sip"
  12349. type="1" >
  12350. </productMenu>
  12351. <productMenu id="led"
  12352. type="0" >
  12353. </productMenu>
  12354. <productMenu id="illusion"
  12355. type="1" >
  12356. </productMenu>
  12357. <productMenu id="meshIntercom"
  12358. type="30" >
  12359. </productMenu>
  12360. <productMenu id="meshIntercom+"
  12361. type="3"
  12362. url="2" >
  12363. </productMenu>
  12364. <productMenu id="waveIntercom"
  12365. type="0" >
  12366. </productMenu>
  12367. <productMenu id="bluetoothIntercom"
  12368. type="1" >
  12369. </productMenu>
  12370. <productMenu id="bluetoothIntercomGrouping"
  12371. type="0" >
  12372. </productMenu>
  12373. <productMenu id="fmradio"
  12374. type="1"
  12375. url="1" >
  12376. </productMenu>
  12377. <productMenu id="phone"
  12378. type="1" >
  12379. </productMenu>
  12380. <productMenu id="music"
  12381. type="1" >
  12382. </productMenu>
  12383. <productMenu id="musicSharing"
  12384. type="0" >
  12385. </productMenu>
  12386. <productMenu id="deviceSetting"
  12387. type="1"
  12388. url="https://api.sena.com/support/SenaNeoApp/60/NS_60_02.xml" >
  12389. </productMenu>
  12390. <productMenu id="quickGuide"
  12391. type="0"
  12392. url=""
  12393. size="1.12MB" >
  12394. </productMenu>
  12395. <productMenu id="userGuide"
  12396. type="1"
  12397. url="https://firmware.sena.com/senabluetoothmanager/UserGuide_60S_1.1.1_en_250314.pdf"
  12398. size="2.0MB" >
  12399. </productMenu>
  12400. <productMenu id="videoGuide"
  12401. type="0"
  12402. url=""
  12403. size="3.41MB" >
  12404. </productMenu>
  12405. <productMenu id="volume"
  12406. type="16" >
  12407. </productMenu>
  12408. <productMenu id="soundMode"
  12409. type="1" >
  12410. </productMenu>
  12411. <productMenu id="battery"
  12412. type="1" >
  12413. </productMenu>
  12414. <productID id="6A83"
  12415. />
  12416. <productGroupable type="0"
  12417. />
  12418. </product>
  12419. <product id="MeshStation"
  12420. name="Mesh Station"
  12421. series="50"
  12422. latestVersion="0.9"
  12423. show = "-1" >
  12424. <productMenu id="protocol"
  12425. type="2" >
  12426. </productMenu>
  12427. <productMenu id="meshIntercom"
  12428. type="20"
  12429. url="99" >
  12430. </productMenu>
  12431. <productID id="3161"
  12432. />
  12433. <productGroupable type="0"
  12434. />
  12435. </product>
  12436. </products>
  12437. </sna>